From 5d6827950779e2fcfad394311d8c1f1d4d3de14e Mon Sep 17 00:00:00 2001 From: Rajendra Adhikari Date: Sun, 16 Jun 2024 22:17:10 -0500 Subject: [PATCH 01/21] Initial measure draft --- measures/LoadFlexibility/LICENSE.md | 1 + measures/LoadFlexibility/docs/.gitkeep | 0 measures/LoadFlexibility/measure.py | 157 + measures/LoadFlexibility/measure.xml | 78 + measures/LoadFlexibility/resources.pth | 1 + .../LoadFlexibility/resources/__init__.py | 0 .../resources/create_setpoint_schedules.rb | 116 + .../LoadFlexibility/resources/input_helper.py | 227 + .../LoadFlexibility/resources/setpoint.py | 44 + .../resources/setpoint_helper.py | 8 + .../LoadFlexibility/resources/xml_helper.py | 25 + .../LoadFlexibility/tests/example_model.osm | 8077 +++++++++++++++++ .../tests/test_load_flexibility.py | 123 + measures/LoadFlexibility/tests/xml_helper.py | 146 + 14 files changed, 9003 insertions(+) create mode 100644 measures/LoadFlexibility/LICENSE.md create mode 100644 measures/LoadFlexibility/docs/.gitkeep create mode 100644 measures/LoadFlexibility/measure.py create mode 100644 measures/LoadFlexibility/measure.xml create mode 100644 measures/LoadFlexibility/resources.pth create mode 100644 measures/LoadFlexibility/resources/__init__.py create mode 100644 measures/LoadFlexibility/resources/create_setpoint_schedules.rb create mode 100644 measures/LoadFlexibility/resources/input_helper.py create mode 100644 measures/LoadFlexibility/resources/setpoint.py create mode 100644 measures/LoadFlexibility/resources/setpoint_helper.py create mode 100644 measures/LoadFlexibility/resources/xml_helper.py create mode 100644 measures/LoadFlexibility/tests/example_model.osm create mode 100644 measures/LoadFlexibility/tests/test_load_flexibility.py create mode 100644 measures/LoadFlexibility/tests/xml_helper.py diff --git a/measures/LoadFlexibility/LICENSE.md b/measures/LoadFlexibility/LICENSE.md new file mode 100644 index 0000000000..d6a0c69d32 --- /dev/null +++ b/measures/LoadFlexibility/LICENSE.md @@ -0,0 +1 @@ +Insert your license here \ No newline at end of file diff --git a/measures/LoadFlexibility/docs/.gitkeep b/measures/LoadFlexibility/docs/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/measures/LoadFlexibility/measure.py b/measures/LoadFlexibility/measure.py new file mode 100644 index 0000000000..4490a943d8 --- /dev/null +++ b/measures/LoadFlexibility/measure.py @@ -0,0 +1,157 @@ +"""insert your copyright here. + +# see the URL below for information on how to write OpenStudio measures +# http://nrel.github.io/OpenStudio-user-documentation/reference/measure_writing_guide/ +""" + +import typing +import openstudio +import debugpy +from pathlib import Path +import os +import json +import subprocess +import dataclasses +import xml.etree.ElementTree as ET +import sys + + +if os.environ.get('DEBUGPY', '') == 'true': + debugpy.listen(5694, in_process_debug_adapter=True) + print("Waiting for debugger attach") + debugpy.wait_for_client() + +RESOURCES_DIR = Path(__file__).parent / "resources" +sys.path.insert(0, str(RESOURCES_DIR)) +from setpoint import modify_all_setpoints +from input_helper import OffsetType, RelativeOffsetData, AbsoluteOffsetData, ALL_MEASURE_ARGS +from xml_helper import HPXML +from setpoint_helper import HVACSetpoints +sys.path.pop(0) + + +class LoadFlexibility(openstudio.measure.ModelMeasure): + """A Residential Load Flexibility measure.""" + + def name(self): + """Returns the human readable name. + + Measure name should be the title case of the class name. + The measure name is the first contact a user has with the measure; + it is also shared throughout the measure workflow, visible in the OpenStudio Application, + PAT, Server Management Consoles, and in output reports. + As such, measure names should clearly describe the measure's function, + while remaining general in nature + """ + return "LoadFlexibility" + + def description(self): + """Human readable description. + + The measure description is intended for a general audience and should not assume + that the reader is familiar with the design and construction practices suggested by the measure. + """ + return "A measure to apply load shifting / shedding to a building based on various user arguments." + + def modeler_description(self): + """Human readable description of modeling approach. + + The modeler description is intended for the energy modeler using the measure. + It should explain the measure's intent, and include any requirements about + how the baseline model must be set up, major assumptions made by the measure, + and relevant citations or references to applicable modeling resources + """ + return "This applies a load shifting / shedding strategy to a building." + + def arguments(self, model: typing.Optional[openstudio.model.Model] = None): + """Prepares user arguments for the measure. + Measure arguments define which -- if any -- input parameters the user may set before running the measure. + """ + args = openstudio.measure.OSArgumentVector() + for arg in ALL_MEASURE_ARGS: + args.append(arg.getOSArgument()) + + return args + + def get_hpxml_path(self, runner: openstudio.measure.OSRunner): + workflow_json = json.loads(str(runner.workflow())) + hpxml_path = [step['arguments']['hpxml_path'] for step in workflow_json['steps'] + if 'HPXMLtoOpenStudio' in step['measure_dir_name']][0] + return hpxml_path + + def get_setpoint_csv(self, setpoint: HVACSetpoints): + header = 'heating_setpoint,cooling_setpoint' + vals = '\n'.join([','.join([str(v) for v in val_pair]) + for val_pair in zip(setpoint.heating_setpoint, setpoint.cooling_setpoint)]) + return f"{header}\n{vals}" + + def process_arguments(self, runner, arg_dict: dict, passed_arg: set): + if arg_dict['offset_type'] == OffsetType.absolute: + relative_offset_fields = set(f.name for f in dataclasses.fields(RelativeOffsetData)) + if intersect_args := passed_arg & relative_offset_fields: + runner.registerWargning(f"These inputs are ignored ({intersect_args}) since offset type is absolute.") + return False + if arg_dict['offset_type'] == OffsetType.relative: + absolute_offset_fields = set(f.name for f in dataclasses.fields(AbsoluteOffsetData)) + if intersect_args := passed_arg & absolute_offset_fields: + runner.registerError(f"These inputs are ignored ({intersect_args}) since offset type is relative.") + return False + + for arg in ALL_MEASURE_ARGS: + arg.set_val(arg_dict[arg.name]) + + def run( + self, + model: openstudio.model.Model, + runner: openstudio.measure.OSRunner, + user_arguments: openstudio.measure.OSArgumentMap, + ): + """Defines what happens when the measure is run.""" + super().run(model, runner, user_arguments) # Do **NOT** remove this line + + if not (runner.validateUserArguments(self.arguments(model), user_arguments)): + return False + + runner.registerInfo("Starting LoadFlexibility") + arg_dict = runner.getArgumentValues(self.arguments(model), user_arguments) + passed_args = {arg_name for arg_name, arg_value in dict(user_arguments).items() if arg_value.hasValue()} + self.process_arguments(runner, arg_dict, passed_args) # sets the values of the arguments in the dataclasses + + osw_path = str(runner.workflow().oswPath().get()) + + hpxml_path = self.get_hpxml_path(runner) + result = subprocess.run(["openstudio", f"{RESOURCES_DIR}/create_setpoint_schedules.rb", + hpxml_path, osw_path], + capture_output=True) + setpoints = [HVACSetpoints(**setpoint) for setpoint in json.loads(result.stdout) + ] # [{"heating setpoint": [], "cooling setpoint": []}] + if result.returncode != 0: + runner.registerError(f"Failed to run create_setpoint_schedules.rb : {result.stderr}") + return False + + modify_all_setpoints(runner, setpoints) + hpxml = HPXML(hpxml_path) + doc_buildings = hpxml.findall("Building") + for (indx, building) in enumerate(doc_buildings): + doc_building_id = building.find("ns:BuildingID", hpxml.ns).get('id') + output_csv_name = f"hvac_setpoint_schedule_{doc_building_id}.csv" + output_csv_path = Path(hpxml_path).parent / output_csv_name + setpoint_dict = setpoints[indx] + with open(output_csv_path, 'w', newline='') as f: + f.write(self.get_setpoint_csv(setpoint_dict)) + extension = hpxml.create_elements_as_needed(building, ['BuildingDetails', 'BuildingSummary', 'extension']) + + existing_schedules = hpxml.findall('SchedulesFilePath', extension) + for schedule in existing_schedules: + if schedule.text == str(output_csv_path): + break + else: + schedule_path = ET.SubElement(extension, 'SchedulesFilePath') + schedule_path.text = str(output_csv_path) + + hpxml.tree.write(hpxml_path, xml_declaration=True, encoding='utf-8') + return True + + +# register the measure to be used by the application +LoadFlexibility().registerWithApplication() diff --git a/measures/LoadFlexibility/measure.xml b/measures/LoadFlexibility/measure.xml new file mode 100644 index 0000000000..e730fb2cae --- /dev/null +++ b/measures/LoadFlexibility/measure.xml @@ -0,0 +1,78 @@ + + + 3.1 + load_flexibility + 76047a89-6572-46b1-81a9-6800cff63e48 + 74b8fa96-1cd8-4853-b83b-4e835e2f1e79 + 2024-04-23T22:54:45Z + BCF2C799 + LoadFlexibility + LoadFlexibility + A measure to apply load shifting / shedding to a building + This applies a load shifting / shedding strategy to a building. + + + offset + Offset amount (deg F) + How much offset to apply to the HVAC schedule in degree fahrenheit + Double + true + false + 2 + + + + + + Envelope.Fenestration + + + + Measure Type + ModelMeasure + string + + + Measure Language + Python + string + + + + + LICENSE.md + md + license + CD7F5672 + + + .gitkeep + gitkeep + doc + 00000000 + + + + OpenStudio + 3.8.0 + 3.8.0 + + measure.py + py + script + 244DC979 + + + example_model.osm + osm + test + 53D14E69 + + + test_load_flexibility.py + py + test + 5F37BD52 + + + diff --git a/measures/LoadFlexibility/resources.pth b/measures/LoadFlexibility/resources.pth new file mode 100644 index 0000000000..fc47808528 --- /dev/null +++ b/measures/LoadFlexibility/resources.pth @@ -0,0 +1 @@ +resources \ No newline at end of file diff --git a/measures/LoadFlexibility/resources/__init__.py b/measures/LoadFlexibility/resources/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/measures/LoadFlexibility/resources/create_setpoint_schedules.rb b/measures/LoadFlexibility/resources/create_setpoint_schedules.rb new file mode 100644 index 0000000000..83138c562b --- /dev/null +++ b/measures/LoadFlexibility/resources/create_setpoint_schedules.rb @@ -0,0 +1,116 @@ +require 'openstudio' +require_relative '../../../resources/hpxml-measures/HPXMLtoOpenStudio/resources/meta_measure' +require_relative '../../../resources/hpxml-measures/HPXMLtoOpenStudio/resources/constants' +require 'openstudio' +require 'pathname' +require 'oga' +require 'json' + +Dir["#{File.dirname(__FILE__)}/../../../resources/hpxml-measures/BuildResidentialScheduleFile/resources/*.rb"].each do |resource_file| + require resource_file +end +Dir["#{File.dirname(__FILE__)}/../../../resources/hpxml-measures/HPXMLtoOpenStudio/resources/*.rb"].each do |resource_file| + next if resource_file.include? 'minitest_helper.rb' + require resource_file +end + +class SetpointScheduleGenerator + + def initialize(hpxml, hpxml_path, workflow_path, building_index) + @hpxml_path = hpxml_path + @hpxml = hpxml + @hpxml_bldg = @hpxml.buildings[building_index] + @epw_path = Location.get_epw_path(@hpxml_bldg, @hpxml_path) + @epw_file = OpenStudio::EpwFile.new(@epw_path) + @sim_year = Location.get_sim_calendar_year(@hpxml.header.sim_calendar_year, @epw_file) + @total_days_in_year = Constants.NumDaysInYear(@sim_year) + @sim_start_day = DateTime.new(@sim_year, 1, 1) + @workflow_json = OpenStudio::WorkflowJSON.new(workflow_path) + @runner = OpenStudio::Measure::OSRunner.new(@workflow_json) + @weather = WeatherProcess.new(epw_path: @epw_path, runner: @runner, hpxml: @hpxml) + @minutes_per_step = @hpxml.header.timestep + @steps_in_day = 24 * 60 / @minutes_per_step + end + + + def get_heating_cooling_setpoint_schedule() + @runner.registerInfo("Creating heating and cooling setpoint schedules for building #{@hpxml_path}") + clg_weekday_setpoints, clg_weekend_setpoints, htg_weekday_setpoints, htg_weekend_setpoints = get_heating_cooling_weekday_weekend_setpoints + + heating_setpoints = [] + cooling_setpoints = [] + + @total_days_in_year.times do |day| + today = @sim_start_day + day + day_of_week = today.wday + if [0, 6].include?(day_of_week) + heating_setpoint_sch = htg_weekend_setpoints + cooling_setpoint_sch = clg_weekend_setpoints + else + heating_setpoint_sch = htg_weekday_setpoints + cooling_setpoint_sch = clg_weekday_setpoints + end + @steps_in_day.times do |step| + hour = (step * @minutes_per_step) / 60 + heating_setpoints << heating_setpoint_sch[day][hour] + cooling_setpoints << cooling_setpoint_sch[day][hour] + end + end + return {"heating_setpoint": heating_setpoints, "cooling_setpoint": cooling_setpoints} + end + + def c2f(setpoint_sch) + setpoint_sch.map { |i| i.map { |j| UnitConversions.convert(j, 'C', 'F') } } + end + + def get_heating_cooling_weekday_weekend_setpoints + hvac_control = @hpxml_bldg.hvac_controls[0] + has_ceiling_fan = (@hpxml_bldg.ceiling_fans.size > 0) + cooling_days, heating_days = get_heating_cooling_days(hvac_control) + hvac_control = @hpxml_bldg.hvac_controls[0] + htg_weekday_setpoints, htg_weekend_setpoints = HVAC.get_heating_setpoints(hvac_control, @sim_year) + clg_weekday_setpoints, clg_weekend_setpoints = HVAC.get_cooling_setpoints(hvac_control, has_ceiling_fan, @sim_year, @weather) + + htg_weekday_setpoints, htg_weekend_setpoints, clg_weekday_setpoints, clg_weekend_setpoints = HVAC.create_setpoint_schedules(@runner, heating_days, cooling_days, htg_weekday_setpoints, htg_weekend_setpoints, clg_weekday_setpoints, clg_weekend_setpoints, @sim_year) + return c2f(clg_weekday_setpoints), c2f(clg_weekend_setpoints), c2f(htg_weekday_setpoints), c2f(htg_weekend_setpoints) + end + + def get_heating_cooling_days(hvac_control) + htg_start_month = hvac_control.seasons_heating_begin_month || 1 + htg_start_day = hvac_control.seasons_heating_begin_day || 1 + htg_end_month = hvac_control.seasons_heating_end_month || 12 + htg_end_day = hvac_control.seasons_heating_end_day || 31 + clg_start_month = hvac_control.seasons_cooling_begin_month || 1 + clg_start_day = hvac_control.seasons_cooling_begin_day || 1 + clg_end_month = hvac_control.seasons_cooling_end_month || 12 + clg_end_day = hvac_control.seasons_cooling_end_day || 31 + heating_days = Schedule.get_daily_season(@sim_year, htg_start_month, htg_start_day, htg_end_month, htg_end_day) + cooling_days = Schedule.get_daily_season(@sim_year, clg_start_month, clg_start_day, clg_end_month, clg_end_day) + return cooling_days, heating_days + end + + def main(hpxml_path) + hpxml = HPXML.new(hpxml_path: hpxml_path) + sf = SchedulesFile.new(schedules_paths: hpxml.buildings[0].header.schedules_filepaths, + year: @year, + output_path: @tmp_schedule_file_path) + + end +end + +if ARGV.empty? + raise "Usage: ruby create_setpoint_schedules.rb " + exit +end + +hpxml_path = ARGV[0] +workflow_path = ARGV[1] +hpxml = HPXML.new(hpxml_path: hpxml_path) +num_buildings = hpxml.buildings.size +setpoint_array = [] +num_buildings.times do |building_index| + generator = SetpointScheduleGenerator.new(hpxml, hpxml_path, workflow_path, building_index) + setpoints = generator.get_heating_cooling_setpoint_schedule + setpoint_array << setpoints +end +puts(setpoint_array.to_json) diff --git a/measures/LoadFlexibility/resources/input_helper.py b/measures/LoadFlexibility/resources/input_helper.py new file mode 100644 index 0000000000..1fd5739df4 --- /dev/null +++ b/measures/LoadFlexibility/resources/input_helper.py @@ -0,0 +1,227 @@ +from dataclasses import dataclass, field +import openstudio +from typing import Optional +from typing import TypeVar, Generic, List +T = TypeVar('T') + + +class OffsetType: + relative: str = 'relative' + absolute: str = 'absolute' + + +@dataclass(frozen=True) +class Argument(Generic[T]): + name: str + type: type + displayname: Optional[str] = None + description: Optional[str] = None + required: bool = False + modelDependent: bool = False + choices: tuple = field(default_factory=tuple) + default: Optional[T] = None + val: Optional[T] = None + + def getOSArgument(self): + arg_type = self.type + if arg_type is tuple: + os_arg = openstudio.measure.OSArgument.makeChoiceArgument( + self.name, self.choices, self.required, self.modelDependent) + elif arg_type is int: + os_arg = openstudio.measure.OSArgument.makeIntegerArgument(self.name, self.required, self.modelDependent) + elif arg_type is float: + os_arg = openstudio.measure.OSArgument.makeDoubleArgument(self.name, self.required, self.modelDependent) + elif arg_type is str: + os_arg = openstudio.measure.OSArgument.makeStringArgument(self.name, self.required, self.modelDependent) + elif arg_type is bool: + os_arg = openstudio.measure.OSArgument.makeBoolArgument(self.name, self.required, self.modelDependent) + else: + raise ValueError(f"Unexpected field type {arg_type}") + + if self.displayname: + os_arg.setDisplayName(self.displayname) + if self.description: + os_arg.setDescription(self.description) + if self.default: + os_arg.setDefaultValue(self.default) + return os_arg + + def set_val(self, val): + if self.val is not None: + raise ValueError(f"Value can only be set once. Current value is {self.val}") + self.__dict__['val'] = val + return self.val + + +@dataclass(frozen=True) +class __OffsetTypeData: + offset_type: Argument[str] = Argument( + name='offset_type', + type=tuple, + displayname="Setpoint offset type", + description="Whether to apply the demand response setpoints relative to the default setpoints" + " or as absolute values.", + required=True, + choices=(OffsetType.relative, OffsetType.absolute), + default=OffsetType.relative + ) + + +# Create an instance of the class. +# This is the only instance that should be created and is used everywhere the module is imported. +OffsetTypeData = __OffsetTypeData() + + +@dataclass(frozen=True) +class __RelativeOffsetData: + heating_pre_peak_offset: Argument[int] = Argument( + name='heating_pre_peak_offset', + type=int, + default=4, + displayname="Heating Pre-Peak Offset (deg F)", + description="How much offset to apply to the heating schedule in degree fahrenheit before the peak. Only used" + " if offset type is relative." + ) + heating_on_peak_offset: Argument[int] = Argument( + name='heating_on_peak_offset', + type=int, + default=4, + displayname="Heating On-Peak Offset (deg F)", + description="How much offset to apply to the heating schedule in degree fahrenheit on the peak. Only used" + " if offset type is relative." + ) + heating_max: Argument[int] = Argument( + name='heating_max', + type=int, + default=80, + displayname="Heating Max Setpoint (deg F)", + description="The maximum heating setpoint in degree fahrenheit offsets should honor. Only used if offset" + " type is relative." + ) + heating_min: Argument[int] = Argument( + name='heating_min', + type=int, + default=55, + displayname="Heating Min Setpoint (deg F)", + description="The minimum heating setpoint in degree fahrenheit that offsets should honor. Only used if" + " offset type is relative." + ) + cooling_pre_peak_offset: Argument[int] = Argument( + name='cooling_pre_peak_offset', + type=int, + default=4, + displayname="Cooling Pre-Peak Offset (deg F)", + description="How much offset to apply to the cooling schedule in degree fahrenheit before the peak." + " Only used if offset type is relative." + ) + cooling_on_peak_offset: Argument[int] = Argument( + name='cooling_on_peak_offset', + type=int, + default=4, + displayname="Cooling On-Peak Offset (deg F)", + description="How much offset to apply to the cooling schedule in degree fahrenheit on the peak." + " Only used if offset type is relative." + ) + cooling_max: Argument[int] = Argument( + name='cooling_max', + type=int, + default=80, + displayname="Cooling Max Setpoint (deg F)", + description="The maximum cooling setpoint in degree fahrenheit offsets should honor. Only used" + " if offset type is relative." + ) + cooling_min: Argument[int] = Argument( + name='cooling_min', + type=int, + default=60, + displayname="Cooling Min Setpoint (deg F)", + description="The minimum cooling setpoint in degree fahrenheit that offsets should honor." + " Only used if offset type is relative." + ) + + +RelativeOffsetData = __RelativeOffsetData() + + +@dataclass(frozen=True) +class __AbsoluteOffsetData: + heating_on_peak_setpoint: Argument[int] = Argument( + name='heating_on_peak_setpoint', + type=int, + default=55, + displayname="Heating On-Peak Setpoint (deg F)", + description="The heating setpoint in degree fahrenheit on the peak. Only used if offset type is absolute." + ) + heating_pre_peak_setpoint: Argument[int] = Argument( + name='heating_pre_peak_setpoint', + type=int, + default=80, + displayname="Heating Pre-Peak Setpoint (deg F)", + description="The heating setpoint in degree fahrenheit before the peak. Only used if offset type is absolute." + ) + cooling_on_peak_setpoint: Argument[int] = Argument( + name='cooling_on_peak_setpoint', + type=int, + default=80, + displayname="Cooling On-Peak Setpoint (deg F)", + description="The cooling setpoint in degree fahrenheit on the peak. Only used if offset type is absolute." + ) + cooling_pre_peak_setpoint: Argument[int] = Argument( + name='cooling_pre_peak_setpoint', + type=int, + default=60, + displayname="Cooling Pre-Peak Setpoint (deg F)", + description="The cooling setpoint in degree fahrenheit before the peak. Only used if offset type is absolute." + ) + + +AbsoluteOffsetData = __AbsoluteOffsetData() + + +@dataclass(frozen=True) +class __OffsetTimingData: + heating_pre_peak_duration: Argument[int] = Argument( + name='heating_pre_peak_duration', + type=int, + default=4, + displayname="Heating Pre-Peak Duration (hours)", + description="The duration of the pre-peak period in hours." + ) + cooling_pre_peak_duration: Argument[int] = Argument( + name='cooling_pre_peak_duration', + type=int, + default=4, + displayname="Cooling Pre-Peak Duration (hours)", + description="The duration of the pre-peak period in hours." + ) + heating_on_peak_duration: Argument[int] = Argument( + name='heating_on_peak_duration', + type=int, + default=4, + displayname="Heating On-Peak Duration (hours)", + description="The duration of the on-peak period in hours." + ) + cooling_on_peak_duration: Argument[int] = Argument( + name='cooling_on_peak_duration', + type=int, + default=4, + displayname="Cooling On-Peak Duration (hours)", + description="The duration of the on-peak period in hours." + ) + + +OffsetTimingData = __OffsetTimingData() + + +def get_args(cls) -> List[Argument]: + return [field.default for field in cls.__dataclass_fields__.values()] + + +ALL_MEASURE_ARGS = get_args(OffsetTypeData) +ALL_MEASURE_ARGS += get_args(RelativeOffsetData) +ALL_MEASURE_ARGS += get_args(AbsoluteOffsetData) +ALL_MEASURE_ARGS += get_args(OffsetTimingData) +# absolute_offset_fields = get_dataclass_info(AbsoluteOffsetData) +# offset_timing_fields = get_dataclass_info(OffsetTimingData) + +# all_offset_fields = {**relative_offset_fields, **absolute_offset_fields, **offset_timing_fields} diff --git a/measures/LoadFlexibility/resources/setpoint.py b/measures/LoadFlexibility/resources/setpoint.py new file mode 100644 index 0000000000..98e908f311 --- /dev/null +++ b/measures/LoadFlexibility/resources/setpoint.py @@ -0,0 +1,44 @@ +from input_helper import OffsetTypeData, OffsetTimingData, RelativeOffsetData, AbsoluteOffsetData +from typing import List +from setpoint_helper import HVACSetpoints + + +def modify_setpoints(runner, setpoints: HVACSetpoints): + pass + + +def modify_all_setpoints(runner, multiple_setpoints: List[HVACSetpoints]): + """Modify setpoints based on user arguments.""" + runner.registerInfo("Modifying setpoints ...") + runner.registerInfo("Values got are") + runner.registerInfo(f"{OffsetTypeData.offset_type.name}={OffsetTypeData.offset_type.val}") + runner.registerInfo(f"{RelativeOffsetData.heating_on_peak_offset.name}=" + f"{RelativeOffsetData.heating_on_peak_offset.val}") + runner.registerInfo(f"{RelativeOffsetData.cooling_on_peak_offset.name}=" + f"{RelativeOffsetData.cooling_on_peak_offset.val}") + runner.registerInfo(f"{RelativeOffsetData.heating_pre_peak_offset.name}=" + f"{RelativeOffsetData.heating_pre_peak_offset.val}") + runner.registerInfo(f"{RelativeOffsetData.cooling_pre_peak_offset.name}=" + f"{RelativeOffsetData.cooling_pre_peak_offset.val}") + runner.registerInfo(f"{OffsetTimingData.heating_on_peak_duration.name}=" + f"{OffsetTimingData.heating_on_peak_duration.val}") + runner.registerInfo(f"{OffsetTimingData.cooling_on_peak_duration.name}=" + f"{OffsetTimingData.cooling_on_peak_duration.val}") + runner.registerInfo(f"{OffsetTimingData.heating_pre_peak_duration.name}=" + f"{OffsetTimingData.heating_pre_peak_duration.val}") + runner.registerInfo(f"{OffsetTimingData.cooling_pre_peak_duration.name}=" + f"{OffsetTimingData.cooling_pre_peak_duration.val}") + runner.registerInfo(f"{AbsoluteOffsetData.cooling_on_peak_setpoint.name}=" + f"{AbsoluteOffsetData.cooling_on_peak_setpoint.val}") + runner.registerInfo(f"{AbsoluteOffsetData.cooling_pre_peak_setpoint.name}=" + f"{AbsoluteOffsetData.cooling_pre_peak_setpoint.val}") + runner.registerInfo(f"{AbsoluteOffsetData.heating_on_peak_setpoint.name}=" + f"{AbsoluteOffsetData.heating_on_peak_setpoint.val}") + runner.registerInfo(f"{AbsoluteOffsetData.heating_pre_peak_setpoint.name}=" + f"{AbsoluteOffsetData.heating_pre_peak_setpoint.val}") + # Modify the setpoint using above data + modified_setpoints = [] + for setpoints in multiple_setpoints: + # Modify the setpoints + modified_setpoints.append(modify_setpoints(runner, setpoints=setpoints)) + return True diff --git a/measures/LoadFlexibility/resources/setpoint_helper.py b/measures/LoadFlexibility/resources/setpoint_helper.py new file mode 100644 index 0000000000..9353f96489 --- /dev/null +++ b/measures/LoadFlexibility/resources/setpoint_helper.py @@ -0,0 +1,8 @@ +from typing import List +from dataclasses import dataclass + + +@dataclass(frozen=True) +class HVACSetpoints: + heating_setpoint: List[float] + cooling_setpoint: List[float] diff --git a/measures/LoadFlexibility/resources/xml_helper.py b/measures/LoadFlexibility/resources/xml_helper.py new file mode 100644 index 0000000000..a5ce216b6e --- /dev/null +++ b/measures/LoadFlexibility/resources/xml_helper.py @@ -0,0 +1,25 @@ +import xml.etree.ElementTree as ET + + +class HPXML: + def __init__(self, xml_path) -> None: + self.tree = ET.parse(xml_path) + self.root = self.tree.getroot() + self.namespace_uri = self.root.tag.split('{')[1].split('}')[0] + self.ns = {'ns': self.namespace_uri} + ET.register_namespace('', self.namespace_uri) + + def findall(self, element_name, parent=None): + if parent is None: + return self.root.findall(f"ns:{element_name}", self.ns) + else: + return parent.findall(f"ns:{element_name}", self.ns) + + def create_elements_as_needed(self, parent, element_names): + current_parent = parent + for element_name in element_names: + element = current_parent.find(f"ns:{element_name}", self.ns) + if element is None: + element = ET.SubElement(current_parent, f"ns:{element_name}") + current_parent = element + return current_parent diff --git a/measures/LoadFlexibility/tests/example_model.osm b/measures/LoadFlexibility/tests/example_model.osm new file mode 100644 index 0000000000..0bd6b18d6e --- /dev/null +++ b/measures/LoadFlexibility/tests/example_model.osm @@ -0,0 +1,8077 @@ + +OS:Version, + {f19c731b-418b-4769-bbe8-2634b34ddb76}, !- Handle + 1.13.0; !- Version Identifier + +OS:SpaceType, + {d83c9d8c-b4ea-4352-92bc-43a5e8551039}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ1-3, !- Name + , !- Default Construction Set Name + {3f64b7db-745b-40b0-bb02-6ec871a396ef}, !- Default Schedule Set Name + {d1e86687-6885-4070-81da-3a576f17ff5c}, !- Group Rendering Name + {67f2822d-9200-410d-bad4-ca1adb4cbb77}, !- Design Specification Outdoor Air Object Name + Office, !- Standards Building Type + BreakRoom; !- Standards Space Type + +OS:Rendering:Color, + {d1e86687-6885-4070-81da-3a576f17ff5c}, !- Handle + Rendering Color 1, !- Name + 230, !- Rendering Red Value + 157, !- Rendering Green Value + 120; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {3f64b7db-745b-40b0-bb02-6ec871a396ef}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ1-3 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name + {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name + {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {2be0344f-10c3-4095-86fd-81db27963ad5}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ1-3 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 11.6250232500465, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {8d653251-85b6-4f77-81d6-0d1ce4ea7ee7}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ1-3 Lights, !- Name + {2be0344f-10c3-4095-86fd-81db27963ad5}, !- Lights Definition Name + {d83c9d8c-b4ea-4352-92bc-43a5e8551039}; !- Space or SpaceType Name + +OS:Schedule:Ruleset, + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, ! Handle + Office Bldg Light, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + {f4b4f1e1-6a43-44bd-a8f2-a74c513199be}, ! Default Day Schedule Name + {c390a85c-d5e7-4c2d-8853-58583d31d4e3}, ! Summer Design Day Schedule Name + {dd4723de-ece6-49f1-b48c-4ca52d8c8360}; ! Winter Design Day Schedule Name + +OS:ScheduleTypeLimits, + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Handle + Fraction, ! Name + 0, ! Lower Limit Value + 1, ! Upper Limit Value + CONTINUOUS; ! Numeric Type + +OS:Schedule:Day, + {f4b4f1e1-6a43-44bd-a8f2-a74c513199be}, ! Handle + Office Bldg Light Default Schedule, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 5, !- Hour 1 + 0, !- Minute 1 + 0.05, !- Value Until Time 1 + 7, !- Hour 2 + 0, !- Minute 2 + 0.1, !- Value Until Time 2 + 8, !- Hour 3 + 0, !- Minute 3 + 0.3, !- Value Until Time 3 + 17, !- Hour 4 + 0, !- Minute 4 + 0.9, !- Value Until Time 4 + 18, !- Hour 5 + 0, !- Minute 5 + 0.7, !- Value Until Time 5 + 20, !- Hour 6 + 0, !- Minute 6 + 0.5, !- Value Until Time 6 + 22, !- Hour 7 + 0, !- Minute 7 + 0.3, !- Value Until Time 7 + 23, !- Hour 8 + 0, !- Minute 8 + 0.1, !- Value Until Time 8 + 24, !- Hour 9 + 0, !- Minute 9 + 0.05; !- Value Until Time 9 + +OS:Schedule:Day, + {c390a85c-d5e7-4c2d-8853-58583d31d4e3}, ! Handle + Office Bldg Light Summer Design Day, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 1; ! Value Until Time 1 + +OS:Schedule:Day, + {dd4723de-ece6-49f1-b48c-4ca52d8c8360}, ! Handle + Office Bldg Light Winter Design Day, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {101bb6fc-d0fc-4dd5-b953-30be7362193e}, ! Handle + Office Bldg Light Rule 1, ! Name + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, ! Schedule Ruleset Name + 0, ! Rule Order + {cab9d70e-56fd-4a11-b93a-30526ba080c7}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {cab9d70e-56fd-4a11-b93a-30526ba080c7}, ! Handle + Office Bldg Light Rule 1 Day Schedule, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.050000000000000003; ! Value Until Time 1 + +OS:Schedule:Rule, + {e5799452-8d36-4739-a94b-184f22c15de0}, ! Handle + Office Bldg Light Rule 2, ! Name + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, ! Schedule Ruleset Name + 1, ! Rule Order + {fd34a36a-f6bf-4a3e-b174-248c7bf8388a}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {fd34a36a-f6bf-4a3e-b174-248c7bf8388a}, ! Handle + Office Bldg Light Rule 2 Day Schedule, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 0.050000000000000003, ! Value Until Time 1 + 8, ! Hour 2 + 0, ! Minute 2 + 0.10000000000000001, ! Value Until Time 2 + 14, ! Hour 3 + 0, ! Minute 3 + 0.5, ! Value Until Time 3 + 17, ! Hour 4 + 0, ! Minute 4 + 0.14999999999999999, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0.050000000000000003; ! Value Until Time 5 + +OS:DesignSpecification:OutdoorAir, + {67f2822d-9200-410d-bad4-ca1adb4cbb77}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ1-3 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.007079211648, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {c42e1fab-f69a-49d5-a2c9-f14f1259af26}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ1-3 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.538195520835486, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {33239cd1-ad9a-4eea-84a8-7128e0617789}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ1-3 People, !- Name + {c42e1fab-f69a-49d5-a2c9-f14f1259af26}, !- People Definition Name + {d83c9d8c-b4ea-4352-92bc-43a5e8551039}; !- Space or SpaceType Name + +OS:Schedule:Ruleset, + {be0538a4-3720-422e-85be-2e617795d558}, ! Handle + Office Misc Occ, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + {a76a9245-12f3-412e-b0b5-34665289bf21}, ! Default Day Schedule Name + {a40809b5-8df2-4f21-a9ee-da939f1e5f66}, ! Summer Design Day Schedule Name + {3393a682-e262-4bec-b7cf-fd6eec115ebc}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {a76a9245-12f3-412e-b0b5-34665289bf21}, ! Handle + Office Bldg Occ Default Schedule 1, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 7, !- Hour 2 + 0, !- Minute 2 + 0.100000001490116, !- Value Until Time 2 + 8, !- Hour 3 + 0, !- Minute 3 + 0.200000002980232, !- Value Until Time 3 + 20, !- Hour 4 + 0, !- Minute 4 + 0.400000005960464, !- Value Until Time 4 + 22, !- Hour 5 + 0, !- Minute 5 + 0.100000001490116, !- Value Until Time 5 + 24, !- Hour 6 + 0, !- Minute 6 + 0.0500000007450581; !- Value Until Time 6 + +OS:Schedule:Day, + {a40809b5-8df2-4f21-a9ee-da939f1e5f66}, ! Handle + Office Bldg Occ Summer Design Day 1, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 22, ! Hour 2 + 0, ! Minute 2 + 1, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 0.050000000000000003; ! Value Until Time 3 + +OS:Schedule:Day, + {3393a682-e262-4bec-b7cf-fd6eec115ebc}, ! Handle + Office Bldg Occ Winter Design Day 1, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {3ca2483c-714c-4d0d-8b7c-5f4a9c2b67c5}, ! Handle + Office Misc Occ Rule 1, ! Name + {be0538a4-3720-422e-85be-2e617795d558}, ! Schedule Ruleset Name + 0, ! Rule Order + {f56ad6ba-e3fe-4664-91d5-6e3a524b6815}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {f56ad6ba-e3fe-4664-91d5-6e3a524b6815}, ! Handle + Office Bldg Occ Rule 1 Day Schedule 1, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {05c99778-2bec-4bcf-b23a-afcb3628f061}, ! Handle + Office Misc Occ Rule 2, ! Name + {be0538a4-3720-422e-85be-2e617795d558}, ! Schedule Ruleset Name + 1, ! Rule Order + {50794c08-f7a3-4592-ab7e-021599b65e8f}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {50794c08-f7a3-4592-ab7e-021599b65e8f}, ! Handle + Office Bldg Occ Rule 2 Day Schedule 1, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 8, !- Hour 2 + 0, !- Minute 2 + 0.100000001490116, !- Value Until Time 2 + 14, !- Hour 3 + 0, !- Minute 3 + 0.25, !- Value Until Time 3 + 17, !- Hour 4 + 0, !- Minute 4 + 0.100000001490116, !- Value Until Time 4 + 24, !- Hour 5 + 0, !- Minute 5 + 0; !- Value Until Time 5 + +OS:Schedule:Ruleset, + {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, ! Handle + Office Activity, ! Name + {65bf6a03-1758-4903-8383-db583a09d8f8}, ! Schedule Type Limits Name + {3327af75-d065-4569-8f41-90aaaadb46d9}, ! Default Day Schedule Name + {82481ab0-fa29-4f90-b6c0-269200534d1a}, ! Summer Design Day Schedule Name + {ce7a9c35-95ca-4940-ae5d-8bb25d884027}; ! Winter Design Day Schedule Name + +OS:ScheduleTypeLimits, + {65bf6a03-1758-4903-8383-db583a09d8f8}, !- Handle + ActivityLevel, !- Name + 0, !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + ActivityLevel; !- Unit Type + +OS:Schedule:Day, + {3327af75-d065-4569-8f41-90aaaadb46d9}, ! Handle + Office Activity Default Schedule, ! Name + {65bf6a03-1758-4903-8383-db583a09d8f8}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 132; !- Value Until Time 1 + +OS:Schedule:Day, + {82481ab0-fa29-4f90-b6c0-269200534d1a}, ! Handle + Office Activity Summer Design Day, ! Name + {65bf6a03-1758-4903-8383-db583a09d8f8}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 132; !- Value Until Time 1 + +OS:Schedule:Day, + {ce7a9c35-95ca-4940-ae5d-8bb25d884027}, ! Handle + Office Activity Winter Design Day, ! Name + {65bf6a03-1758-4903-8383-db583a09d8f8}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 132; !- Value Until Time 1 + +OS:SpaceInfiltration:DesignFlowRate, + {d11f3814-047f-4553-8741-be6dbd4a756d}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ1-3 Infiltration, !- Name + {d83c9d8c-b4ea-4352-92bc-43a5e8551039}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:Schedule:Ruleset, + {5071fc8f-2a43-420e-b853-89de3fd548e0}, ! Handle + Office Infil Quarter On, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + {2fb80237-329a-4845-a30d-3df8432f42db}, ! Default Day Schedule Name + {5d5af512-8749-48a6-8cab-1e94e2186c8a}, ! Summer Design Day Schedule Name + {2ad01453-6707-4358-a39d-e8f66d6a2d27}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {2fb80237-329a-4845-a30d-3df8432f42db}, ! Handle + Office Infil Quarter On Default Schedule, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 22, !- Hour 2 + 0, !- Minute 2 + 0.25, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 1; !- Value Until Time 3 + +OS:Schedule:Day, + {5d5af512-8749-48a6-8cab-1e94e2186c8a}, ! Handle + Office Infil Quarter On Summer Design Day, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 1, ! Value Until Time 1 + 22, ! Hour 2 + 0, ! Minute 2 + 0.25, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 1; ! Value Until Time 3 + +OS:Schedule:Day, + {2ad01453-6707-4358-a39d-e8f66d6a2d27}, ! Handle + Office Infil Quarter On Winter Design Day, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 1, ! Value Until Time 1 + 18, ! Hour 2 + 0, ! Minute 2 + 0.25, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 1; ! Value Until Time 3 + +OS:Schedule:Rule, + {4574f359-1b04-4a98-ab13-df5e80f66af0}, ! Handle + Office Infil Quarter On Rule 1, ! Name + {5071fc8f-2a43-420e-b853-89de3fd548e0}, ! Schedule Ruleset Name + 0, ! Rule Order + {3790040e-9ea2-4dc8-aa07-8c3be9362217}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {3790040e-9ea2-4dc8-aa07-8c3be9362217}, ! Handle + Office Infil Quarter On Rule 1 Day Schedule, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 1; ! Value Until Time 1 + +OS:Schedule:Rule, + {dffe30c1-3c56-49c5-a8f7-647f7d37a109}, ! Handle + Office Infil Quarter On Rule 2, ! Name + {5071fc8f-2a43-420e-b853-89de3fd548e0}, ! Schedule Ruleset Name + 1, ! Rule Order + {f8525cc5-5d39-46fb-83d8-d6d96f5d4e03}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {f8525cc5-5d39-46fb-83d8-d6d96f5d4e03}, ! Handle + Office Infil Quarter On Rule 2 Day Schedule, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 1, ! Value Until Time 1 + 18, ! Hour 2 + 0, ! Minute 2 + 0.25, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 1; ! Value Until Time 3 + +OS:ElectricEquipment:Definition, + {67250caf-92b5-4b98-bf98-90620f2922e7}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ1-3 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 48.0070404585254, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {077ed202-9856-487a-81f9-2b33f6ef021d}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ1-3 Electric Equipment, !- Name + {67250caf-92b5-4b98-bf98-90620f2922e7}, !- Electric Equipment Definition Name + {d83c9d8c-b4ea-4352-92bc-43a5e8551039}; !- Space or SpaceType Name + +OS:Schedule:Ruleset, + {d4102340-9627-4371-b8f6-a3790caa5373}, ! Handle + Office Bldg Equip, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + {977dd248-68d1-44ba-89cd-75118b7f5432}, ! Default Day Schedule Name + {c29d5462-6e30-488d-a879-41ed4219dda7}, ! Summer Design Day Schedule Name + {d3bffa7b-808a-4d48-99c4-616283b390aa}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {977dd248-68d1-44ba-89cd-75118b7f5432}, ! Handle + Office Bldg Equip Default Schedule, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0.4, !- Value Until Time 1 + 12, !- Hour 2 + 0, !- Minute 2 + 0.9, !- Value Until Time 2 + 13, !- Hour 3 + 0, !- Minute 3 + 0.8, !- Value Until Time 3 + 17, !- Hour 4 + 0, !- Minute 4 + 0.9, !- Value Until Time 4 + 18, !- Hour 5 + 0, !- Minute 5 + 0.8, !- Value Until Time 5 + 20, !- Hour 6 + 0, !- Minute 6 + 0.6, !- Value Until Time 6 + 22, !- Hour 7 + 0, !- Minute 7 + 0.5, !- Value Until Time 7 + 24, !- Hour 8 + 0, !- Minute 8 + 0.4; !- Value Until Time 8 + +OS:Schedule:Day, + {c29d5462-6e30-488d-a879-41ed4219dda7}, ! Handle + Office Bldg Equip Summer Design Day, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 1; ! Value Until Time 1 + +OS:Schedule:Day, + {d3bffa7b-808a-4d48-99c4-616283b390aa}, ! Handle + Office Bldg Equip Winter Design Day, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {bce5d209-6925-4d7c-8dc5-3f357b764d6c}, ! Handle + Office Bldg Equip Rule 1, ! Name + {d4102340-9627-4371-b8f6-a3790caa5373}, ! Schedule Ruleset Name + 0, ! Rule Order + {c875931d-86d6-4764-8e77-22d1cb7198ce}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {c875931d-86d6-4764-8e77-22d1cb7198ce}, ! Handle + Office Bldg Equip Rule 1 Day Schedule, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.29999999999999999; ! Value Until Time 1 + +OS:Schedule:Rule, + {1949d113-007e-43de-9be2-ba191485735a}, ! Handle + Office Bldg Equip Rule 2, ! Name + {d4102340-9627-4371-b8f6-a3790caa5373}, ! Schedule Ruleset Name + 1, ! Rule Order + {c7512454-4834-46fa-a2d6-7cc7e929e54c}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {c7512454-4834-46fa-a2d6-7cc7e929e54c}, ! Handle + Office Bldg Equip Rule 2 Day Schedule, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 0.29999999999999999, ! Value Until Time 1 + 8, ! Hour 2 + 0, ! Minute 2 + 0.40000000000000002, ! Value Until Time 2 + 14, ! Hour 3 + 0, ! Minute 3 + 0.5, ! Value Until Time 3 + 17, ! Hour 4 + 0, ! Minute 4 + 0.34999999999999998, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0.29999999999999999; ! Value Until Time 5 + +OS:ThermostatSetpoint:DualSetpoint, + {57716514-0d5c-4f76-8108-73a8ef55c74a}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ1-3 Thermostat, !- Name + {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name + {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name + +OS:Schedule:Ruleset, + {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, ! Handle + Medium Office HtgSetp, ! Name + {12c61fd1-4fe2-4b95-9432-26b57b327856}, ! Schedule Type Limits Name + {9b279567-fd7d-4e61-887c-70dc28a870a8}, ! Default Day Schedule Name + {12714e17-5b17-4314-81e6-d4b74d680da0}, ! Summer Design Day Schedule Name + {f9920323-552d-4d1f-bda1-6b0c461a87ca}; ! Winter Design Day Schedule Name + +OS:ScheduleTypeLimits, + {12c61fd1-4fe2-4b95-9432-26b57b327856}, !- Handle + Temperature 36, !- Name + , !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + Temperature; !- Unit Type + +OS:Schedule:Day, + {9b279567-fd7d-4e61-887c-70dc28a870a8}, ! Handle + Medium Office HtgSetp Default Schedule, ! Name + {12c61fd1-4fe2-4b95-9432-26b57b327856}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 15.6, !- Value Until Time 1 + 22, !- Hour 2 + 0, !- Minute 2 + 21, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 15.6; !- Value Until Time 3 + +OS:Schedule:Day, + {12714e17-5b17-4314-81e6-d4b74d680da0}, ! Handle + Medium Office HtgSetp Summer Design Day, ! Name + {12c61fd1-4fe2-4b95-9432-26b57b327856}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 15.6; ! Value Until Time 1 + +OS:Schedule:Day, + {f9920323-552d-4d1f-bda1-6b0c461a87ca}, ! Handle + Medium Office HtgSetp Winter Design Day, ! Name + {12c61fd1-4fe2-4b95-9432-26b57b327856}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 21; ! Value Until Time 1 + +OS:Schedule:Rule, + {868baa5f-da01-445a-994f-6c6787547ea5}, ! Handle + Medium Office HtgSetp Rule 1, ! Name + {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, ! Schedule Ruleset Name + 0, ! Rule Order + {cac0b919-4885-4c58-9a65-b12cf242f6c9}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {cac0b919-4885-4c58-9a65-b12cf242f6c9}, ! Handle + Medium Office HtgSetp Rule 1 Day Schedule, ! Name + {12c61fd1-4fe2-4b95-9432-26b57b327856}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 15.6; ! Value Until Time 1 + +OS:Schedule:Rule, + {0641d0ff-4231-421a-9389-7b82524a19ba}, ! Handle + Medium Office HtgSetp Rule 2, ! Name + {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, ! Schedule Ruleset Name + 1, ! Rule Order + {32df9b1b-e2bc-432f-a592-8f7e6e83b032}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {32df9b1b-e2bc-432f-a592-8f7e6e83b032}, ! Handle + Medium Office HtgSetp Rule 2 Day Schedule, ! Name + {12c61fd1-4fe2-4b95-9432-26b57b327856}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 15.6, ! Value Until Time 1 + 18, ! Hour 2 + 0, ! Minute 2 + 21, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 15.6; ! Value Until Time 3 + +OS:Schedule:Ruleset, + {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}, ! Handle + Medium Office ClgSetp, ! Name + {7e87320c-a0b8-49c9-bbc8-d0b2f472ac54}, ! Schedule Type Limits Name + {5ab5938a-bfd8-4751-92be-cee36c4f1856}, ! Default Day Schedule Name + {240b0752-5119-4ee3-9c27-ad5cfe8f7244}, ! Summer Design Day Schedule Name + {7bbe1afc-37e4-452d-8136-77be3d751f5f}; ! Winter Design Day Schedule Name + +OS:ScheduleTypeLimits, + {7e87320c-a0b8-49c9-bbc8-d0b2f472ac54}, !- Handle + Temperature 37, !- Name + , !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + Temperature; !- Unit Type + +OS:Schedule:Day, + {5ab5938a-bfd8-4751-92be-cee36c4f1856}, ! Handle + Medium Office ClgSetp Default Schedule, ! Name + {7e87320c-a0b8-49c9-bbc8-d0b2f472ac54}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 26.7, !- Value Until Time 1 + 22, !- Hour 2 + 0, !- Minute 2 + 24, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 26.7; !- Value Until Time 3 + +OS:Schedule:Day, + {240b0752-5119-4ee3-9c27-ad5cfe8f7244}, ! Handle + Medium Office ClgSetp Summer Design Day, ! Name + {7e87320c-a0b8-49c9-bbc8-d0b2f472ac54}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 26.699999999999999, ! Value Until Time 1 + 22, ! Hour 2 + 0, ! Minute 2 + 24, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 26.699999999999999; ! Value Until Time 3 + +OS:Schedule:Day, + {7bbe1afc-37e4-452d-8136-77be3d751f5f}, ! Handle + Medium Office ClgSetp Winter Design Day, ! Name + {7e87320c-a0b8-49c9-bbc8-d0b2f472ac54}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 26.699999999999999; ! Value Until Time 1 + +OS:Schedule:Rule, + {68812eb9-619d-47e2-bd4b-4e3b8987011c}, ! Handle + Medium Office ClgSetp Rule 1, ! Name + {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}, ! Schedule Ruleset Name + 0, ! Rule Order + {78b34901-136a-4662-8a58-694b3d6974cc}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {78b34901-136a-4662-8a58-694b3d6974cc}, ! Handle + Medium Office ClgSetp Rule 1 Day Schedule, ! Name + {7e87320c-a0b8-49c9-bbc8-d0b2f472ac54}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 26.699999999999999; ! Value Until Time 1 + +OS:Schedule:Rule, + {0b596ac5-df32-47fa-8cdd-b434dd223a94}, ! Handle + Medium Office ClgSetp Rule 2, ! Name + {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}, ! Schedule Ruleset Name + 1, ! Rule Order + {be610421-800e-4a9c-9a30-e22099e6d5c7}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {be610421-800e-4a9c-9a30-e22099e6d5c7}, ! Handle + Medium Office ClgSetp Rule 2 Day Schedule, ! Name + {7e87320c-a0b8-49c9-bbc8-d0b2f472ac54}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 26.699999999999999, ! Value Until Time 1 + 18, ! Hour 2 + 0, ! Minute 2 + 24, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 26.699999999999999; ! Value Until Time 3 + +OS:SpaceType, + {3c12e344-f3c2-46e8-94cc-aa11adda3228}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ1-3, !- Name + , !- Default Construction Set Name + {9b9fb4b7-7437-423f-a42a-1e1800e6055c}, !- Default Schedule Set Name + {a57916a4-2d44-41b9-a1e1-917f01e6e980}, !- Group Rendering Name + {f46c6550-abd3-4dc9-b2fd-3521e6458afe}, !- Design Specification Outdoor Air Object Name + Office, !- Standards Building Type + ClosedOffice; !- Standards Space Type + +OS:Rendering:Color, + {a57916a4-2d44-41b9-a1e1-917f01e6e980}, !- Handle + Rendering Color 2, !- Name + 120, !- Rendering Red Value + 230, !- Rendering Green Value + 199; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {9b9fb4b7-7437-423f-a42a-1e1800e6055c}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ1-3 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {3f7fc9e5-6ce2-4b91-9fc6-85d1867c2216}, !- Number of People Schedule Name + {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name + {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {06799bf2-e498-4941-a66b-f78cb208dc67}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ1-3 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.6562713125426, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {f1628569-1691-49f0-9348-f92fa25bb1b6}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ1-3 Lights, !- Name + {06799bf2-e498-4941-a66b-f78cb208dc67}, !- Lights Definition Name + {3c12e344-f3c2-46e8-94cc-aa11adda3228}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {f46c6550-abd3-4dc9-b2fd-3521e6458afe}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ1-3 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {6e7c5923-7c0d-48b7-9a3f-216e3e766b71}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ1-3 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0511285744793712, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {5c410b4a-537a-47b7-b730-dc303931c19c}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ1-3 People, !- Name + {6e7c5923-7c0d-48b7-9a3f-216e3e766b71}, !- People Definition Name + {3c12e344-f3c2-46e8-94cc-aa11adda3228}; !- Space or SpaceType Name + +OS:Schedule:Ruleset, + {3f7fc9e5-6ce2-4b91-9fc6-85d1867c2216}, ! Handle + Office Work Occ, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + {8c6f6e65-d0d1-46da-8dc4-e578841c0855}, ! Default Day Schedule Name + {27e84094-894f-40a3-b576-abd36362f44e}, ! Summer Design Day Schedule Name + {a4028ad4-4ce3-47fe-bea5-e1572f850788}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {8c6f6e65-d0d1-46da-8dc4-e578841c0855}, ! Handle + Office Bldg Occ Default Schedule, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 7, !- Hour 2 + 0, !- Minute 2 + 0.100000001490116, !- Value Until Time 2 + 8, !- Hour 3 + 0, !- Minute 3 + 0.200000002980232, !- Value Until Time 3 + 12, !- Hour 4 + 0, !- Minute 4 + 0.850000023841858, !- Value Until Time 4 + 13, !- Hour 5 + 0, !- Minute 5 + 0.5, !- Value Until Time 5 + 17, !- Hour 6 + 0, !- Minute 6 + 0.850000023841858, !- Value Until Time 6 + 18, !- Hour 7 + 0, !- Minute 7 + 0.699999988079071, !- Value Until Time 7 + 20, !- Hour 8 + 0, !- Minute 8 + 0.400000005960464, !- Value Until Time 8 + 22, !- Hour 9 + 0, !- Minute 9 + 0.100000001490116, !- Value Until Time 9 + 24, !- Hour 10 + 0, !- Minute 10 + 0.0500000007450581; !- Value Until Time 10 + +OS:Schedule:Day, + {27e84094-894f-40a3-b576-abd36362f44e}, ! Handle + Office Bldg Occ Summer Design Day, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 22, ! Hour 2 + 0, ! Minute 2 + 1, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 0.050000000000000003; ! Value Until Time 3 + +OS:Schedule:Day, + {a4028ad4-4ce3-47fe-bea5-e1572f850788}, ! Handle + Office Bldg Occ Winter Design Day, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {e25b5fd5-a9e4-4894-a08b-fc27dee95ca0}, ! Handle + Office Work Occ Rule 1, ! Name + {3f7fc9e5-6ce2-4b91-9fc6-85d1867c2216}, ! Schedule Ruleset Name + 0, ! Rule Order + {e88a91fc-80e1-4d72-8871-1b61226fab13}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {e88a91fc-80e1-4d72-8871-1b61226fab13}, ! Handle + Office Bldg Occ Rule 1 Day Schedule, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {692294cd-2074-417d-bc31-c3d45f3473c8}, ! Handle + Office Work Occ Rule 2, ! Name + {3f7fc9e5-6ce2-4b91-9fc6-85d1867c2216}, ! Schedule Ruleset Name + 1, ! Rule Order + {6b9e68ef-76e4-4389-ba51-34613aee0e9e}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {6b9e68ef-76e4-4389-ba51-34613aee0e9e}, ! Handle + Office Bldg Occ Rule 2 Day Schedule, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 8, !- Hour 2 + 0, !- Minute 2 + 0.100000001490116, !- Value Until Time 2 + 14, !- Hour 3 + 0, !- Minute 3 + 0.400000005960464, !- Value Until Time 3 + 17, !- Hour 4 + 0, !- Minute 4 + 0.100000001490116, !- Value Until Time 4 + 24, !- Hour 5 + 0, !- Minute 5 + 0; !- Value Until Time 5 + +OS:SpaceInfiltration:DesignFlowRate, + {238b2c42-2ac7-458f-861b-9b2e338631c9}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ1-3 Infiltration, !- Name + {3c12e344-f3c2-46e8-94cc-aa11adda3228}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {5e1004b6-95f1-43ca-b770-059ae9545327}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ1-3 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 6.88890266669422, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {bb93da29-6686-468f-b8e1-c0e981827eae}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ1-3 Electric Equipment, !- Name + {5e1004b6-95f1-43ca-b770-059ae9545327}, !- Electric Equipment Definition Name + {3c12e344-f3c2-46e8-94cc-aa11adda3228}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {b27de14f-0cdf-4395-80f3-859d49e9b403}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ1-3 Thermostat, !- Name + {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name + {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {47604387-8748-48ff-835b-5f4e110a8059}, !- Handle + 189.1-2009 - Office - Conference - CZ1-3, !- Name + , !- Default Construction Set Name + {e3b81960-34e9-43e9-802b-72dc932ec324}, !- Default Schedule Set Name + {ec05571d-f09e-46c5-830e-02e7c83716e2}, !- Group Rendering Name + {a1ac4f23-b7fd-439b-9144-9025bbf81b99}, !- Design Specification Outdoor Air Object Name + Office, !- Standards Building Type + Conference; !- Standards Space Type + +OS:Rendering:Color, + {ec05571d-f09e-46c5-830e-02e7c83716e2}, !- Handle + Rendering Color 3, !- Name + 230, !- Rendering Red Value + 196, !- Rendering Green Value + 120; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {e3b81960-34e9-43e9-802b-72dc932ec324}, !- Handle + 189.1-2009 - Office - Conference - CZ1-3 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name + {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name + {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {7c05f735-2072-4b8c-946d-b7cd8119ee11}, !- Handle + 189.1-2009 - Office - Conference - CZ1-3 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 12.5937751875504, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {277ed265-0401-47f6-8de3-56cb05b9fea5}, !- Handle + 189.1-2009 - Office - Conference - CZ1-3 Lights, !- Name + {7c05f735-2072-4b8c-946d-b7cd8119ee11}, !- Lights Definition Name + {47604387-8748-48ff-835b-5f4e110a8059}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {a1ac4f23-b7fd-439b-9144-9025bbf81b99}, !- Handle + 189.1-2009 - Office - Conference - CZ1-3 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {1e057bcd-e909-4141-b7ac-844fc9c736b0}, !- Handle + 189.1-2009 - Office - Conference - CZ1-3 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.538195520835486, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {8e273f12-7404-4658-8039-d1b0d9e7d0e1}, !- Handle + 189.1-2009 - Office - Conference - CZ1-3 People, !- Name + {1e057bcd-e909-4141-b7ac-844fc9c736b0}, !- People Definition Name + {47604387-8748-48ff-835b-5f4e110a8059}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {de1ea70d-57dc-4928-a47f-57f514ec3603}, !- Handle + 189.1-2009 - Office - Conference - CZ1-3 Infiltration, !- Name + {47604387-8748-48ff-835b-5f4e110a8059}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {24acb6cb-ad2a-44b2-b01a-335e7395daae}, !- Handle + 189.1-2009 - Office - Conference - CZ1-3 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 3.9826468541826, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {980641d4-cbda-4a28-868d-304978627e4f}, !- Handle + 189.1-2009 - Office - Conference - CZ1-3 Electric Equipment, !- Name + {24acb6cb-ad2a-44b2-b01a-335e7395daae}, !- Electric Equipment Definition Name + {47604387-8748-48ff-835b-5f4e110a8059}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {9c5a236d-b8fa-4e61-a6d6-5ef82442b61b}, !- Handle + 189.1-2009 - Office - Conference - CZ1-3 Thermostat, !- Name + {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name + {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {911f473e-1c50-43ba-b507-1b4167677ea0}, !- Handle + 189.1-2009 - Office - Corridor - CZ1-3, !- Name + , !- Default Construction Set Name + {60152e25-975f-42e9-a93e-854a20be3577}, !- Default Schedule Set Name + {9637cafc-bc8f-40aa-8756-39cbbba37ac4}, !- Group Rendering Name + {43c2eb8f-ca41-472d-a661-37d29e1aa470}, !- Design Specification Outdoor Air Object Name + Office, !- Standards Building Type + Corridor; !- Standards Space Type + +OS:Rendering:Color, + {9637cafc-bc8f-40aa-8756-39cbbba37ac4}, !- Handle + Rendering Color 4, !- Name + 169, !- Rendering Red Value + 31, !- Rendering Green Value + 31; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {60152e25-975f-42e9-a93e-854a20be3577}, !- Handle + 189.1-2009 - Office - Corridor - CZ1-3 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {3f7fc9e5-6ce2-4b91-9fc6-85d1867c2216}, !- Number of People Schedule Name + {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name + {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {61d53d0d-2d54-4a69-926d-aeb7fd47d282}, !- Handle + 189.1-2009 - Office - Corridor - CZ1-3 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 4.84375968751938, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {97345961-c39c-4800-be47-fd365cf09579}, !- Handle + 189.1-2009 - Office - Corridor - CZ1-3 Lights, !- Name + {61d53d0d-2d54-4a69-926d-aeb7fd47d282}, !- Lights Definition Name + {911f473e-1c50-43ba-b507-1b4167677ea0}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {43c2eb8f-ca41-472d-a661-37d29e1aa470}, !- Handle + 189.1-2009 - Office - Corridor - CZ1-3 Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {15f0501f-443a-40f6-846f-5720de6f91e8}, !- Handle + 189.1-2009 - Office - Corridor - CZ1-3 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0107639104167097, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {7f505a51-9e01-4f8c-ae6b-eb3a985187f9}, !- Handle + 189.1-2009 - Office - Corridor - CZ1-3 People, !- Name + {15f0501f-443a-40f6-846f-5720de6f91e8}, !- People Definition Name + {911f473e-1c50-43ba-b507-1b4167677ea0}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {d288d3ec-bb21-459b-96e3-62f849faafec}, !- Handle + 189.1-2009 - Office - Corridor - CZ1-3 Infiltration, !- Name + {911f473e-1c50-43ba-b507-1b4167677ea0}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {3e9e4b9d-78ea-42f5-87ca-c1ec4f4990f2}, !- Handle + 189.1-2009 - Office - Corridor - CZ1-3 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 1.72222566667356, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {f21b9dab-a69e-476b-96be-93f1f5fee1c6}, !- Handle + 189.1-2009 - Office - Corridor - CZ1-3 Electric Equipment, !- Name + {3e9e4b9d-78ea-42f5-87ca-c1ec4f4990f2}, !- Electric Equipment Definition Name + {911f473e-1c50-43ba-b507-1b4167677ea0}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {52549264-a360-4f7a-971d-ec4f2499546a}, !- Handle + 189.1-2009 - Office - Corridor - CZ1-3 Thermostat, !- Name + {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name + {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {c35a045e-a8b7-4634-a314-0f2c9fd21361}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ1-3, !- Name + , !- Default Construction Set Name + {7034f523-a923-4bff-bcec-e836877b0d3b}, !- Default Schedule Set Name + {8a8c0cb1-8336-469c-bca4-e17997f803bb}, !- Group Rendering Name + {69d02fbd-3b65-4514-8330-355612e92de3}, !- Design Specification Outdoor Air Object Name + Office, !- Standards Building Type + Elec/MechRoom; !- Standards Space Type + +OS:Rendering:Color, + {8a8c0cb1-8336-469c-bca4-e17997f803bb}, !- Handle + Rendering Color 5, !- Name + 41, !- Rendering Red Value + 31, !- Rendering Green Value + 169; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {7034f523-a923-4bff-bcec-e836877b0d3b}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ1-3 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + , !- Number of People Schedule Name + , !- People Activity Level Schedule Name + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name + {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {db4f58dd-4414-4c10-8481-b5fdd7610a22}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ1-3 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 14.5312790625581, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {8de70c6d-3c20-4a5a-95f3-70ab2a37759d}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ1-3 Lights, !- Name + {db4f58dd-4414-4c10-8481-b5fdd7610a22}, !- Lights Definition Name + {c35a045e-a8b7-4634-a314-0f2c9fd21361}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {69d02fbd-3b65-4514-8330-355612e92de3}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ1-3 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:SpaceInfiltration:DesignFlowRate, + {6e96cbfa-7560-4e78-aa8c-239431fd271e}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ1-3 Infiltration, !- Name + {c35a045e-a8b7-4634-a314-0f2c9fd21361}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {bfdd4c3c-95fa-4c2d-8597-8431da48afda}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ1-3 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 2.90625581251162, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {b17982ba-d5dd-42bf-8d61-12b8c10eee84}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ1-3 Electric Equipment, !- Name + {bfdd4c3c-95fa-4c2d-8597-8431da48afda}, !- Electric Equipment Definition Name + {c35a045e-a8b7-4634-a314-0f2c9fd21361}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {f8635cc8-deee-4e85-815b-ff7f42668c83}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ1-3 Thermostat, !- Name + {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name + {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {b904fa71-fec8-4e29-89a1-d0386138c5a6}, !- Handle + 189.1-2009 - Office - IT_Room - CZ1-3, !- Name + , !- Default Construction Set Name + {ba84ee14-7d89-4e59-8d59-625209be8ce9}, !- Default Schedule Set Name + {20b4e546-0bb5-45c4-b8f0-ba4246a49c01}, !- Group Rendering Name + {2f4b0680-26b1-4103-9f70-412db3ebdfbe}, !- Design Specification Outdoor Air Object Name + Office, !- Standards Building Type + IT_Room; !- Standards Space Type + +OS:Rendering:Color, + {20b4e546-0bb5-45c4-b8f0-ba4246a49c01}, !- Handle + Rendering Color 6, !- Name + 41, !- Rendering Red Value + 31, !- Rendering Green Value + 169; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {ba84ee14-7d89-4e59-8d59-625209be8ce9}, !- Handle + 189.1-2009 - Office - IT_Room - CZ1-3 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name + {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name + {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {a6747de8-6448-4e86-abde-d12da5652867}, !- Handle + 189.1-2009 - Office - IT_Room - CZ1-3 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.6562713125426, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {1c9042b5-d85b-4aa1-b403-f1f57ffa5e80}, !- Handle + 189.1-2009 - Office - IT_Room - CZ1-3 Lights, !- Name + {a6747de8-6448-4e86-abde-d12da5652867}, !- Lights Definition Name + {b904fa71-fec8-4e29-89a1-d0386138c5a6}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {2f4b0680-26b1-4103-9f70-412db3ebdfbe}, !- Handle + 189.1-2009 - Office - IT_Room - CZ1-3 Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {ad090db3-4049-4090-9b2d-581dd03ae523}, !- Handle + 189.1-2009 - Office - IT_Room - CZ1-3 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0538195520835486, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {0e08e98a-89ff-440c-98ff-477b7c3fbca4}, !- Handle + 189.1-2009 - Office - IT_Room - CZ1-3 People, !- Name + {ad090db3-4049-4090-9b2d-581dd03ae523}, !- People Definition Name + {b904fa71-fec8-4e29-89a1-d0386138c5a6}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {f3738484-ddae-4171-9149-4056023e0061}, !- Handle + 189.1-2009 - Office - IT_Room - CZ1-3 Infiltration, !- Name + {b904fa71-fec8-4e29-89a1-d0386138c5a6}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {2d5fe187-829f-4492-a2a6-f83bc2f40cec}, !- Handle + 189.1-2009 - Office - IT_Room - CZ1-3 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 16.7917002500672, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {d754310d-f9d1-4b56-8a61-4d2a167b0f57}, !- Handle + 189.1-2009 - Office - IT_Room - CZ1-3 Electric Equipment, !- Name + {2d5fe187-829f-4492-a2a6-f83bc2f40cec}, !- Electric Equipment Definition Name + {b904fa71-fec8-4e29-89a1-d0386138c5a6}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {7669758f-56e6-4440-9266-ef142961841f}, !- Handle + 189.1-2009 - Office - IT_Room - CZ1-3 Thermostat, !- Name + {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name + {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {1afa8972-0451-45b3-8dda-3a3a776e008b}, !- Handle + 189.1-2009 - Office - Lobby - CZ1-3, !- Name + , !- Default Construction Set Name + {e0c21456-bd44-4237-8936-486557ac00f6}, !- Default Schedule Set Name + {0e5a132c-e7c3-4583-ad5a-cf0bf0fe2d03}, !- Group Rendering Name + {f648ca0a-523e-4cd1-9141-0b84b7a81954}, !- Design Specification Outdoor Air Object Name + Office, !- Standards Building Type + Lobby; !- Standards Space Type + +OS:Rendering:Color, + {0e5a132c-e7c3-4583-ad5a-cf0bf0fe2d03}, !- Handle + Rendering Color 7, !- Name + 230, !- Rendering Red Value + 157, !- Rendering Green Value + 120; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {e0c21456-bd44-4237-8936-486557ac00f6}, !- Handle + 189.1-2009 - Office - Lobby - CZ1-3 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name + {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name + {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {aa532c04-012a-4860-ab4d-2c03c2c7fa04}, !- Handle + 189.1-2009 - Office - Lobby - CZ1-3 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 12.5937751875504, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {28cb410d-135d-49f1-b23c-6218793a6744}, !- Handle + 189.1-2009 - Office - Lobby - CZ1-3 Lights, !- Name + {aa532c04-012a-4860-ab4d-2c03c2c7fa04}, !- Lights Definition Name + {1afa8972-0451-45b3-8dda-3a3a776e008b}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {f648ca0a-523e-4cd1-9141-0b84b7a81954}, !- Handle + 189.1-2009 - Office - Lobby - CZ1-3 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.007079211648, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {91f1c38f-68a1-4305-b70a-a3e1fbc3f83a}, !- Handle + 189.1-2009 - Office - Lobby - CZ1-3 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.107639104167097, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {c9c2acc5-e4d4-49b4-9a7e-94cae06ac406}, !- Handle + 189.1-2009 - Office - Lobby - CZ1-3 People, !- Name + {91f1c38f-68a1-4305-b70a-a3e1fbc3f83a}, !- People Definition Name + {1afa8972-0451-45b3-8dda-3a3a776e008b}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {61535505-edb5-4881-9380-6ceb9c94ccaa}, !- Handle + 189.1-2009 - Office - Lobby - CZ1-3 Infiltration, !- Name + {1afa8972-0451-45b3-8dda-3a3a776e008b}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {d64c15fd-a2f8-4262-81e5-ab028c6506a1}, !- Handle + 189.1-2009 - Office - Lobby - CZ1-3 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 0.753473729169681, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {9bdcf653-9208-444f-abd4-40bc6d797f8a}, !- Handle + 189.1-2009 - Office - Lobby - CZ1-3 Electric Equipment, !- Name + {d64c15fd-a2f8-4262-81e5-ab028c6506a1}, !- Electric Equipment Definition Name + {1afa8972-0451-45b3-8dda-3a3a776e008b}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {f63de19d-9cf2-4162-bf2f-bdb7fddc1b7d}, !- Handle + 189.1-2009 - Office - Lobby - CZ1-3 Thermostat, !- Name + {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name + {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {be8c0991-a26a-4dda-ae53-b3249804ebf9}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ1-3, !- Name + , !- Default Construction Set Name + {036543da-4144-409d-981b-4ddf12ce677e}, !- Default Schedule Set Name + {e1b28003-ba15-4183-b5d9-585f72709eff}, !- Group Rendering Name + {f57d4115-03b8-4303-b205-42221bda4210}, !- Design Specification Outdoor Air Object Name + Office, !- Standards Building Type + OpenOffice; !- Standards Space Type + +OS:Rendering:Color, + {e1b28003-ba15-4183-b5d9-585f72709eff}, !- Handle + Rendering Color 8, !- Name + 120, !- Rendering Red Value + 230, !- Rendering Green Value + 199; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {036543da-4144-409d-981b-4ddf12ce677e}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ1-3 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {3f7fc9e5-6ce2-4b91-9fc6-85d1867c2216}, !- Number of People Schedule Name + {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name + {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {6c9d9254-9bb8-426a-af9b-3677316cf238}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ1-3 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.6562713125426, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {1b233aa2-884a-4b12-bd88-76092f6d2267}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ1-3 Lights, !- Name + {6c9d9254-9bb8-426a-af9b-3677316cf238}, !- Lights Definition Name + {be8c0991-a26a-4dda-ae53-b3249804ebf9}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {f57d4115-03b8-4303-b205-42221bda4210}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ1-3 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {0e75bef1-0c07-4d0b-822d-d2df7c6f1111}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ1-3 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.056510529687726, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {30d60591-72de-4494-afc4-000c9be76f8b}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ1-3 People, !- Name + {0e75bef1-0c07-4d0b-822d-d2df7c6f1111}, !- People Definition Name + {be8c0991-a26a-4dda-ae53-b3249804ebf9}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {ef0be415-7a7a-4be9-895a-fefe67ce5d3e}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ1-3 Infiltration, !- Name + {be8c0991-a26a-4dda-ae53-b3249804ebf9}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {6b2d3c23-bd59-4857-b849-eaf6b4a64e2f}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ1-3 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 7.6423763958639, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {1e0e1e3c-6473-41c2-ace8-efda06663fe0}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ1-3 Electric Equipment, !- Name + {6b2d3c23-bd59-4857-b849-eaf6b4a64e2f}, !- Electric Equipment Definition Name + {be8c0991-a26a-4dda-ae53-b3249804ebf9}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {b88ada7e-5b66-4c29-8b49-7f9040c59933}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ1-3 Thermostat, !- Name + {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name + {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name + +OS:Building, + {f73b031c-bb31-4fa0-ad96-2e9846c4d752}, !- Handle + Building 1, !- Name + , !- Building Sector Type + , !- North Axis {deg} + , !- Nominal Floor to Floor Height {m} + {ad9972e4-489e-404e-841e-c9bbd72d0111}, !- Space Type Name + {58749418-1c83-496b-94e6-80aa0fd3ac39}, !- Default Construction Set Name + , !- Default Schedule Set Name + , !- Standards Number of Stories + , !- Standards Number of Above Ground Stories + , !- Standards Building Type + , !- Standards Number of Living Units + , !- Relocatable + ; !- Nominal Floor to Ceiling Height {m} + +OS:SpaceType, + {c0190c37-61e0-43b8-b980-313f616f75af}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ1-3, !- Name + , !- Default Construction Set Name + {7b266719-acd7-491e-9cdb-d0f00a5dfec4}, !- Default Schedule Set Name + {061734ce-19f4-4c27-a203-4b67b00d47ac}, !- Group Rendering Name + {107e2dcf-081d-47d9-b8b0-921f5279392b}, !- Design Specification Outdoor Air Object Name + Office, !- Standards Building Type + PrintRoom; !- Standards Space Type + +OS:Rendering:Color, + {061734ce-19f4-4c27-a203-4b67b00d47ac}, !- Handle + Rendering Color 9, !- Name + 41, !- Rendering Red Value + 31, !- Rendering Green Value + 169; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {7b266719-acd7-491e-9cdb-d0f00a5dfec4}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ1-3 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name + {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name + {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {7a23b936-59e3-4314-9b52-3944ebdea4dc}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ1-3 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.6562713125426, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {1979f9cd-f801-4f74-b848-c88f17dc5b44}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ1-3 Lights, !- Name + {7a23b936-59e3-4314-9b52-3944ebdea4dc}, !- Lights Definition Name + {c0190c37-61e0-43b8-b980-313f616f75af}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {107e2dcf-081d-47d9-b8b0-921f5279392b}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ1-3 Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {1e43b6dd-36da-4525-88ab-833e4310a5da}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ1-3 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.107639104167097, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {673d36c1-b361-47e7-9007-e4e91432cb81}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ1-3 People, !- Name + {1e43b6dd-36da-4525-88ab-833e4310a5da}, !- People Definition Name + {c0190c37-61e0-43b8-b980-313f616f75af}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {e520996e-cb4e-4946-ae4e-12637ab956f9}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ1-3 Infiltration, !- Name + {c0190c37-61e0-43b8-b980-313f616f75af}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {174d96d7-8543-478a-a5f4-76314ad6b67f}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ1-3 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 30.0313100626201, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {13850150-ad18-438c-906d-18f8cabcbdf5}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ1-3 Electric Equipment, !- Name + {174d96d7-8543-478a-a5f4-76314ad6b67f}, !- Electric Equipment Definition Name + {c0190c37-61e0-43b8-b980-313f616f75af}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {cb7fb571-b062-476f-8b81-9ee2aa7be729}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ1-3 Thermostat, !- Name + {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name + {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {a818abd3-e1c5-4d15-9f17-96bb76777e4b}, !- Handle + 189.1-2009 - Office - Restroom - CZ1-3, !- Name + , !- Default Construction Set Name + {2cb74439-6b94-4bdb-bc70-0ca10c0d3b2e}, !- Default Schedule Set Name + {e64f5cb7-2c3d-45a9-84a6-367125f15aff}, !- Group Rendering Name + {65cf1445-a2aa-42ad-9ff8-c4b30ec4e53d}, !- Design Specification Outdoor Air Object Name + Office, !- Standards Building Type + Restroom; !- Standards Space Type + +OS:Rendering:Color, + {e64f5cb7-2c3d-45a9-84a6-367125f15aff}, !- Handle + Rendering Color 10, !- Name + 169, !- Rendering Red Value + 169, !- Rendering Green Value + 31; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {2cb74439-6b94-4bdb-bc70-0ca10c0d3b2e}, !- Handle + 189.1-2009 - Office - Restroom - CZ1-3 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name + {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name + {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {16c83f7f-a90c-43cd-99b3-fe5b6f146132}, !- Handle + 189.1-2009 - Office - Restroom - CZ1-3 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 8.71876743753488, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {3120c45b-328a-43ca-b763-11e879fb3a84}, !- Handle + 189.1-2009 - Office - Restroom - CZ1-3 Lights, !- Name + {16c83f7f-a90c-43cd-99b3-fe5b6f146132}, !- Lights Definition Name + {a818abd3-e1c5-4d15-9f17-96bb76777e4b}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {65cf1445-a2aa-42ad-9ff8-c4b30ec4e53d}, !- Handle + 189.1-2009 - Office - Restroom - CZ1-3 Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.0048768, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {134d060a-3bfc-40bd-bda0-b77a4720c9c2}, !- Handle + 189.1-2009 - Office - Restroom - CZ1-3 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.107639104167097, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {4bd834f4-5ae4-4146-8dbd-c600ee119692}, !- Handle + 189.1-2009 - Office - Restroom - CZ1-3 People, !- Name + {134d060a-3bfc-40bd-bda0-b77a4720c9c2}, !- People Definition Name + {a818abd3-e1c5-4d15-9f17-96bb76777e4b}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {6d0ceae2-80c3-45c0-a634-2929c8a56678}, !- Handle + 189.1-2009 - Office - Restroom - CZ1-3 Infiltration, !- Name + {a818abd3-e1c5-4d15-9f17-96bb76777e4b}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {6330081f-04c2-429c-adff-1624fc497cd6}, !- Handle + 189.1-2009 - Office - Restroom - CZ1-3 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 0.753473729169681, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {569209c0-ef8b-44f5-9f86-048af1de9fa7}, !- Handle + 189.1-2009 - Office - Restroom - CZ1-3 Electric Equipment, !- Name + {6330081f-04c2-429c-adff-1624fc497cd6}, !- Electric Equipment Definition Name + {a818abd3-e1c5-4d15-9f17-96bb76777e4b}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {36f7e68a-a20c-471b-b929-d4756cba022f}, !- Handle + 189.1-2009 - Office - Restroom - CZ1-3 Thermostat, !- Name + {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name + {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {531dd228-de8a-4d34-9988-9ac8d77877a0}, !- Handle + 189.1-2009 - Office - Stair - CZ1-3, !- Name + , !- Default Construction Set Name + {63837c20-3153-4ace-86c9-1d8bf8b43d7a}, !- Default Schedule Set Name + {d956b768-7de2-4589-97c3-e0178f40b773}, !- Group Rendering Name + {65e99483-2d7e-4ca8-9e0d-a7914f938f56}, !- Design Specification Outdoor Air Object Name + Office, !- Standards Building Type + Stair; !- Standards Space Type + +OS:Rendering:Color, + {d956b768-7de2-4589-97c3-e0178f40b773}, !- Handle + Rendering Color 11, !- Name + 230, !- Rendering Red Value + 157, !- Rendering Green Value + 120; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {63837c20-3153-4ace-86c9-1d8bf8b43d7a}, !- Handle + 189.1-2009 - Office - Stair - CZ1-3 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + , !- Number of People Schedule Name + , !- People Activity Level Schedule Name + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name + , !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {b70563e1-7e2b-4c90-b280-61fcf401da4c}, !- Handle + 189.1-2009 - Office - Stair - CZ1-3 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 5.81251162502325, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {3637974c-a21a-4d9a-9a86-de0b34a41576}, !- Handle + 189.1-2009 - Office - Stair - CZ1-3 Lights, !- Name + {b70563e1-7e2b-4c90-b280-61fcf401da4c}, !- Lights Definition Name + {531dd228-de8a-4d34-9988-9ac8d77877a0}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {65e99483-2d7e-4ca8-9e0d-a7914f938f56}, !- Handle + 189.1-2009 - Office - Stair - CZ1-3 Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:SpaceInfiltration:DesignFlowRate, + {b55008d6-57ec-4a59-853d-dc295ea83be3}, !- Handle + 189.1-2009 - Office - Stair - CZ1-3 Infiltration, !- Name + {531dd228-de8a-4d34-9988-9ac8d77877a0}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ThermostatSetpoint:DualSetpoint, + {8f2a6abe-ef82-4cf6-9a19-42526787c24e}, !- Handle + 189.1-2009 - Office - Stair - CZ1-3 Thermostat, !- Name + {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name + {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {355570b9-3696-4442-903b-449be8ccf16a}, !- Handle + 189.1-2009 - Office - Storage - CZ1-3, !- Name + , !- Default Construction Set Name + {c81d9947-159d-4809-8a7f-ae3bb2fe95fa}, !- Default Schedule Set Name + {40564289-28c7-4fd8-b822-fe7139d1f5bf}, !- Group Rendering Name + {99330741-43bc-49e4-9991-d6cf4a0ba4aa}, !- Design Specification Outdoor Air Object Name + Office, !- Standards Building Type + Storage; !- Standards Space Type + +OS:Rendering:Color, + {40564289-28c7-4fd8-b822-fe7139d1f5bf}, !- Handle + Rendering Color 12, !- Name + 120, !- Rendering Red Value + 149, !- Rendering Green Value + 230; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {c81d9947-159d-4809-8a7f-ae3bb2fe95fa}, !- Handle + 189.1-2009 - Office - Storage - CZ1-3 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + , !- Number of People Schedule Name + , !- People Activity Level Schedule Name + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name + , !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {373b8d0f-41c3-4c11-97ad-74ff4084e752}, !- Handle + 189.1-2009 - Office - Storage - CZ1-3 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.750015500031, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {99c236b6-e588-4c3f-ae8e-98f257807e7c}, !- Handle + 189.1-2009 - Office - Storage - CZ1-3 Lights, !- Name + {373b8d0f-41c3-4c11-97ad-74ff4084e752}, !- Lights Definition Name + {355570b9-3696-4442-903b-449be8ccf16a}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {99330741-43bc-49e4-9991-d6cf4a0ba4aa}, !- Handle + 189.1-2009 - Office - Storage - CZ1-3 Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:SpaceInfiltration:DesignFlowRate, + {76e2e858-0e95-49d7-a5bd-46ff2e7bf75b}, !- Handle + 189.1-2009 - Office - Storage - CZ1-3 Infiltration, !- Name + {355570b9-3696-4442-903b-449be8ccf16a}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ThermostatSetpoint:DualSetpoint, + {f8e65471-7105-4908-ae0b-ec42ae5587b5}, !- Handle + 189.1-2009 - Office - Storage - CZ1-3 Thermostat, !- Name + {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name + {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {bcd867f1-c57c-4206-9b38-1c7e254a4143}, !- Handle + 189.1-2009 - Office - Vending - CZ1-3, !- Name + , !- Default Construction Set Name + {c044c52f-9474-4ba2-9f45-7069de4c6b87}, !- Default Schedule Set Name + {cf88ad3d-58c9-452c-88c4-ac7ea371f930}, !- Group Rendering Name + {6dbe4189-6232-4d6e-9ac9-63d6e0ee9668}, !- Design Specification Outdoor Air Object Name + Office, !- Standards Building Type + Vending; !- Standards Space Type + +OS:Rendering:Color, + {cf88ad3d-58c9-452c-88c4-ac7ea371f930}, !- Handle + Rendering Color 13, !- Name + 230, !- Rendering Red Value + 157, !- Rendering Green Value + 120; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {c044c52f-9474-4ba2-9f45-7069de4c6b87}, !- Handle + 189.1-2009 - Office - Vending - CZ1-3 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name + {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name + {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {dba49d56-ae67-469f-bd99-1ea63a8e50b2}, !- Handle + 189.1-2009 - Office - Vending - CZ1-3 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 4.84375968751938, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {57f0532e-f17a-45d3-879e-193fae9dc176}, !- Handle + 189.1-2009 - Office - Vending - CZ1-3 Lights, !- Name + {dba49d56-ae67-469f-bd99-1ea63a8e50b2}, !- Lights Definition Name + {bcd867f1-c57c-4206-9b38-1c7e254a4143}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {6dbe4189-6232-4d6e-9ac9-63d6e0ee9668}, !- Handle + 189.1-2009 - Office - Vending - CZ1-3 Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {b2bafb87-d4df-471b-9770-b0d82b64b0df}, !- Handle + 189.1-2009 - Office - Vending - CZ1-3 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0107639104167097, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {d9509edb-bd80-4225-9ee6-523bf74d5bee}, !- Handle + 189.1-2009 - Office - Vending - CZ1-3 People, !- Name + {b2bafb87-d4df-471b-9770-b0d82b64b0df}, !- People Definition Name + {bcd867f1-c57c-4206-9b38-1c7e254a4143}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {426c18b5-7d3a-4579-b2a8-8e385458dd11}, !- Handle + 189.1-2009 - Office - Vending - CZ1-3 Infiltration, !- Name + {bcd867f1-c57c-4206-9b38-1c7e254a4143}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {4c5550a6-4da3-4490-ac94-170d7b86c60a}, !- Handle + 189.1-2009 - Office - Vending - CZ1-3 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 41.4410551043324, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {cecff4bf-5467-4b34-a941-9654b489181d}, !- Handle + 189.1-2009 - Office - Vending - CZ1-3 Electric Equipment, !- Name + {4c5550a6-4da3-4490-ac94-170d7b86c60a}, !- Electric Equipment Definition Name + {bcd867f1-c57c-4206-9b38-1c7e254a4143}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {de4444a1-34f5-4cf5-ac22-7469b7be466d}, !- Handle + 189.1-2009 - Office - Vending - CZ1-3 Thermostat, !- Name + {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name + {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {4a0f0aee-7d95-4341-825c-8f70d1309b6b}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3, !- Name + , !- Default Construction Set Name + {39feaf8a-6d16-4e68-9b8c-db2038aff03f}, !- Default Schedule Set Name + {6fc91438-7cba-42dc-a37d-48434d3c06ca}, !- Group Rendering Name + {b1c52cb5-3326-4b43-a12f-f30cb1ac3119}, !- Design Specification Outdoor Air Object Name + Office, !- Standards Building Type + WholeBuilding - Lg Office; !- Standards Space Type + +OS:Rendering:Color, + {6fc91438-7cba-42dc-a37d-48434d3c06ca}, !- Handle + Rendering Color 14, !- Name + 120, !- Rendering Red Value + 230, !- Rendering Green Value + 199; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {39feaf8a-6d16-4e68-9b8c-db2038aff03f}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {ee654552-7290-4128-a647-073eff68ebb6}, !- Number of People Schedule Name + {264acba7-523a-484e-8e51-ae85870ba167}, !- People Activity Level Schedule Name + {3ce9efa4-e219-47f8-a14a-7affd9c11d70}, !- Lighting Schedule Name + {6197bef3-80c6-4043-b8a4-b9cd96652248}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {e0eb0ae2-9b39-46b2-b9f9-f7879620c44e}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {58b2159f-d857-497e-ae6a-2e8bd3520ef8}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.68751937503875, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {63218795-4f24-43ea-9e63-a6d83e1e86a3}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 Lights, !- Name + {58b2159f-d857-497e-ae6a-2e8bd3520ef8}, !- Lights Definition Name + {4a0f0aee-7d95-4341-825c-8f70d1309b6b}; !- Space or SpaceType Name + +OS:Schedule:Ruleset, + {3ce9efa4-e219-47f8-a14a-7affd9c11d70}, ! Handle + Large Office Bldg Light, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + {8beabbf7-6dca-4a90-862d-6bcb3322b518}, ! Default Day Schedule Name + {7c11b08d-b72b-496a-be17-e15d5503376c}, ! Summer Design Day Schedule Name + {7a49ad88-01c4-44be-b068-fb81639cb5a0}; ! Winter Design Day Schedule Name + +OS:ScheduleTypeLimits, + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, !- Handle + Fractional, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + Continuous; !- Numeric Type + +OS:Schedule:Day, + {8beabbf7-6dca-4a90-862d-6bcb3322b518}, ! Handle + Large Office Bldg Light Default Schedule, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 5, !- Hour 1 + 0, !- Minute 1 + 0.05, !- Value Until Time 1 + 7, !- Hour 2 + 0, !- Minute 2 + 0.1, !- Value Until Time 2 + 8, !- Hour 3 + 0, !- Minute 3 + 0.3, !- Value Until Time 3 + 17, !- Hour 4 + 0, !- Minute 4 + 0.9, !- Value Until Time 4 + 18, !- Hour 5 + 0, !- Minute 5 + 0.7, !- Value Until Time 5 + 20, !- Hour 6 + 0, !- Minute 6 + 0.5, !- Value Until Time 6 + 22, !- Hour 7 + 0, !- Minute 7 + 0.3, !- Value Until Time 7 + 23, !- Hour 8 + 0, !- Minute 8 + 0.1, !- Value Until Time 8 + 24, !- Hour 9 + 0, !- Minute 9 + 0.05; !- Value Until Time 9 + +OS:Schedule:Day, + {7c11b08d-b72b-496a-be17-e15d5503376c}, ! Handle + Large Office Bldg Light Summer Design Day, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 1; ! Value Until Time 1 + +OS:Schedule:Day, + {7a49ad88-01c4-44be-b068-fb81639cb5a0}, ! Handle + Large Office Bldg Light Winter Design Day, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {5d2442a3-7cb6-411b-a86e-540208ced37c}, ! Handle + Large Office Bldg Light Rule 1, ! Name + {3ce9efa4-e219-47f8-a14a-7affd9c11d70}, ! Schedule Ruleset Name + 0, ! Rule Order + {b3d180ee-23b9-40fa-8e2f-5a9ee8a0d777}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {b3d180ee-23b9-40fa-8e2f-5a9ee8a0d777}, ! Handle + Large Office Bldg Light Rule 1 Day Schedule, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.050000000000000003; ! Value Until Time 1 + +OS:Schedule:Rule, + {91e4e221-38d2-42cf-bbac-5d4e5f7fa888}, ! Handle + Large Office Bldg Light Rule 2, ! Name + {3ce9efa4-e219-47f8-a14a-7affd9c11d70}, ! Schedule Ruleset Name + 1, ! Rule Order + {4ad2aa5c-62f4-4785-9ee9-2c7475032049}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {4ad2aa5c-62f4-4785-9ee9-2c7475032049}, ! Handle + Large Office Bldg Light Rule 2 Day Schedule, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 0.050000000000000003, ! Value Until Time 1 + 8, ! Hour 2 + 0, ! Minute 2 + 0.10000000000000001, ! Value Until Time 2 + 14, ! Hour 3 + 0, ! Minute 3 + 0.5, ! Value Until Time 3 + 17, ! Hour 4 + 0, ! Minute 4 + 0.14999999999999999, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0.050000000000000003; ! Value Until Time 5 + +OS:DesignSpecification:OutdoorAir, + {b1c52cb5-3326-4b43-a12f-f30cb1ac3119}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {2e56af89-445a-4423-b5f8-13463d65edc8}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0538195520835486, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {4615604a-bd1a-474d-91be-9f075c13bd9a}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 People, !- Name + {2e56af89-445a-4423-b5f8-13463d65edc8}, !- People Definition Name + {4a0f0aee-7d95-4341-825c-8f70d1309b6b}; !- Space or SpaceType Name + +OS:Schedule:Ruleset, + {ee654552-7290-4128-a647-073eff68ebb6}, ! Handle + Large Office Bldg Occ, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + {4a4adc75-c27b-4422-94cd-d8d22f2166ed}, ! Default Day Schedule Name + {cb8636f6-4882-43e8-ae4a-15479a71f2bb}, ! Summer Design Day Schedule Name + {580aadb6-816a-4308-bb19-fc0c3724acd2}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {4a4adc75-c27b-4422-94cd-d8d22f2166ed}, ! Handle + Large Office Bldg Occ Default Schedule, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 7, !- Hour 2 + 0, !- Minute 2 + 0.1, !- Value Until Time 2 + 8, !- Hour 3 + 0, !- Minute 3 + 0.2, !- Value Until Time 3 + 12, !- Hour 4 + 0, !- Minute 4 + 0.95, !- Value Until Time 4 + 13, !- Hour 5 + 0, !- Minute 5 + 0.5, !- Value Until Time 5 + 17, !- Hour 6 + 0, !- Minute 6 + 0.95, !- Value Until Time 6 + 18, !- Hour 7 + 0, !- Minute 7 + 0.7, !- Value Until Time 7 + 20, !- Hour 8 + 0, !- Minute 8 + 0.4, !- Value Until Time 8 + 22, !- Hour 9 + 0, !- Minute 9 + 0.1, !- Value Until Time 9 + 24, !- Hour 10 + 0, !- Minute 10 + 0.05; !- Value Until Time 10 + +OS:Schedule:Day, + {cb8636f6-4882-43e8-ae4a-15479a71f2bb}, ! Handle + Large Office Bldg Occ Summer Design Day, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 22, ! Hour 2 + 0, ! Minute 2 + 1, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 0.050000000000000003; ! Value Until Time 3 + +OS:Schedule:Day, + {580aadb6-816a-4308-bb19-fc0c3724acd2}, ! Handle + Large Office Bldg Occ Winter Design Day, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {37f5d46d-389f-4543-b8e4-84f4c2e10716}, ! Handle + Large Office Bldg Occ Rule 1, ! Name + {ee654552-7290-4128-a647-073eff68ebb6}, ! Schedule Ruleset Name + 0, ! Rule Order + {122eaad1-5e72-4d01-a13d-d4a41ab5fe0b}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {122eaad1-5e72-4d01-a13d-d4a41ab5fe0b}, ! Handle + Large Office Bldg Occ Rule 1 Day Schedule, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {9ffe8f16-2513-43ec-8c59-17bafcf21414}, ! Handle + Large Office Bldg Occ Rule 2, ! Name + {ee654552-7290-4128-a647-073eff68ebb6}, ! Schedule Ruleset Name + 1, ! Rule Order + {cfce9f13-ba32-46c6-824f-a45f943e2d0c}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {cfce9f13-ba32-46c6-824f-a45f943e2d0c}, ! Handle + Large Office Bldg Occ Rule 2 Day Schedule, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 8, ! Hour 2 + 0, ! Minute 2 + 0.10000000000000001, ! Value Until Time 2 + 14, ! Hour 3 + 0, ! Minute 3 + 0.5, ! Value Until Time 3 + 17, ! Hour 4 + 0, ! Minute 4 + 0.10000000000000001, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0; ! Value Until Time 5 + +OS:Schedule:Ruleset, + {264acba7-523a-484e-8e51-ae85870ba167}, ! Handle + Large Office Activity, ! Name + {d29d6f61-dbb6-43a0-8e80-994bfb4a73b2}, ! Schedule Type Limits Name + {0a6d9e60-3fca-4618-b0de-820e8f6767da}, ! Default Day Schedule Name + {642af5d3-2b0f-4b01-95b7-7698f50934d0}, ! Summer Design Day Schedule Name + {5490c47e-82ae-4901-8434-0b12bb9436ba}; ! Winter Design Day Schedule Name + +OS:ScheduleTypeLimits, + {d29d6f61-dbb6-43a0-8e80-994bfb4a73b2}, !- Handle + ActivityLevel 5, !- Name + 0, !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + ActivityLevel; !- Unit Type + +OS:Schedule:Day, + {0a6d9e60-3fca-4618-b0de-820e8f6767da}, ! Handle + Large Office Activity Default Schedule, ! Name + {d29d6f61-dbb6-43a0-8e80-994bfb4a73b2}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 120; !- Value Until Time 1 + +OS:Schedule:Day, + {642af5d3-2b0f-4b01-95b7-7698f50934d0}, ! Handle + Large Office Activity Summer Design Day, ! Name + {d29d6f61-dbb6-43a0-8e80-994bfb4a73b2}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 120; ! Value Until Time 1 + +OS:Schedule:Day, + {5490c47e-82ae-4901-8434-0b12bb9436ba}, ! Handle + Large Office Activity Winter Design Day, ! Name + {d29d6f61-dbb6-43a0-8e80-994bfb4a73b2}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 120; ! Value Until Time 1 + +OS:SpaceInfiltration:DesignFlowRate, + {90014069-9853-4f75-becd-f17e7166df17}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 Infiltration, !- Name + {4a0f0aee-7d95-4341-825c-8f70d1309b6b}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:Schedule:Ruleset, + {e0eb0ae2-9b39-46b2-b9f9-f7879620c44e}, ! Handle + Large Office Infil Quarter On, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + {bfe29145-2fb3-4f01-b73d-12fd1bf40b9a}, ! Default Day Schedule Name + {9a0c3c4d-8b77-40e3-8b42-8886655c3c85}, ! Summer Design Day Schedule Name + {694259ab-6cad-41eb-8340-268853e99403}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {bfe29145-2fb3-4f01-b73d-12fd1bf40b9a}, ! Handle + Large Office Infil Quarter On Default Schedule, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 22, !- Hour 2 + 0, !- Minute 2 + 0.25, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 1; !- Value Until Time 3 + +OS:Schedule:Day, + {9a0c3c4d-8b77-40e3-8b42-8886655c3c85}, ! Handle + Large Office Infil Quarter On Summer Design Day, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 1, ! Value Until Time 1 + 22, ! Hour 2 + 0, ! Minute 2 + 0.25, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 1; ! Value Until Time 3 + +OS:Schedule:Day, + {694259ab-6cad-41eb-8340-268853e99403}, ! Handle + Large Office Infil Quarter On Winter Design Day, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 1, ! Value Until Time 1 + 18, ! Hour 2 + 0, ! Minute 2 + 0.25, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 1; ! Value Until Time 3 + +OS:Schedule:Rule, + {6bcd70a7-2c48-43af-b1d9-a1d8959caf3f}, ! Handle + Large Office Infil Quarter On Rule 1, ! Name + {e0eb0ae2-9b39-46b2-b9f9-f7879620c44e}, ! Schedule Ruleset Name + 0, ! Rule Order + {8bb9de2a-85df-481a-9982-4f45f1766e8f}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {8bb9de2a-85df-481a-9982-4f45f1766e8f}, ! Handle + Large Office Infil Quarter On Rule 1 Day Schedule, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 1; ! Value Until Time 1 + +OS:Schedule:Rule, + {342d2dd4-2b6e-46cd-a552-c5fd1e99b43f}, ! Handle + Large Office Infil Quarter On Rule 2, ! Name + {e0eb0ae2-9b39-46b2-b9f9-f7879620c44e}, ! Schedule Ruleset Name + 1, ! Rule Order + {97d9dc0f-3a5d-411e-9d06-beb04225a941}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {97d9dc0f-3a5d-411e-9d06-beb04225a941}, ! Handle + Large Office Infil Quarter On Rule 2 Day Schedule, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 1, ! Value Until Time 1 + 18, ! Hour 2 + 0, ! Minute 2 + 0.25, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 1; ! Value Until Time 3 + +OS:ElectricEquipment:Definition, + {148a4383-6613-4cb0-810d-92a639475c5c}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 5.81251412763851, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {896f52d4-b30e-46c3-b809-17a91eb06105}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 Electric Equipment, !- Name + {148a4383-6613-4cb0-810d-92a639475c5c}, !- Electric Equipment Definition Name + {4a0f0aee-7d95-4341-825c-8f70d1309b6b}; !- Space or SpaceType Name + +OS:Schedule:Ruleset, + {6197bef3-80c6-4043-b8a4-b9cd96652248}, ! Handle + Large Office Bldg Equip, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + {ed62044d-4125-40d6-bde0-2da08536ab6d}, ! Default Day Schedule Name + {0f2b252a-8a0f-40ba-98fa-718bfa268645}, ! Summer Design Day Schedule Name + {0a7a35c9-9c2a-4545-bda6-215062948ca8}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {ed62044d-4125-40d6-bde0-2da08536ab6d}, ! Handle + Large Office Bldg Equip Default Schedule, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0.4, !- Value Until Time 1 + 12, !- Hour 2 + 0, !- Minute 2 + 0.9, !- Value Until Time 2 + 13, !- Hour 3 + 0, !- Minute 3 + 0.8, !- Value Until Time 3 + 17, !- Hour 4 + 0, !- Minute 4 + 0.9, !- Value Until Time 4 + 18, !- Hour 5 + 0, !- Minute 5 + 0.8, !- Value Until Time 5 + 20, !- Hour 6 + 0, !- Minute 6 + 0.6, !- Value Until Time 6 + 22, !- Hour 7 + 0, !- Minute 7 + 0.5, !- Value Until Time 7 + 24, !- Hour 8 + 0, !- Minute 8 + 0.4; !- Value Until Time 8 + +OS:Schedule:Day, + {0f2b252a-8a0f-40ba-98fa-718bfa268645}, ! Handle + Large Office Bldg Equip Summer Design Day, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 1; ! Value Until Time 1 + +OS:Schedule:Day, + {0a7a35c9-9c2a-4545-bda6-215062948ca8}, ! Handle + Large Office Bldg Equip Winter Design Day, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {15242b3b-46fd-486a-bb69-10058bd0409e}, ! Handle + Large Office Bldg Equip Rule 1, ! Name + {6197bef3-80c6-4043-b8a4-b9cd96652248}, ! Schedule Ruleset Name + 0, ! Rule Order + {4aec23a1-f64b-4f3b-a101-c2dd9519312d}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {4aec23a1-f64b-4f3b-a101-c2dd9519312d}, ! Handle + Large Office Bldg Equip Rule 1 Day Schedule, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.29999999999999999; ! Value Until Time 1 + +OS:Schedule:Rule, + {01ed547e-670b-40a5-85bb-225ebec0397e}, ! Handle + Large Office Bldg Equip Rule 2, ! Name + {6197bef3-80c6-4043-b8a4-b9cd96652248}, ! Schedule Ruleset Name + 1, ! Rule Order + {377d7cca-12eb-4a14-b460-434fb8eebbed}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {377d7cca-12eb-4a14-b460-434fb8eebbed}, ! Handle + Large Office Bldg Equip Rule 2 Day Schedule, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 0.29999999999999999, ! Value Until Time 1 + 8, ! Hour 2 + 0, ! Minute 2 + 0.40000000000000002, ! Value Until Time 2 + 14, ! Hour 3 + 0, ! Minute 3 + 0.5, ! Value Until Time 3 + 17, ! Hour 4 + 0, ! Minute 4 + 0.34999999999999998, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0.29999999999999999; ! Value Until Time 5 + +OS:ThermostatSetpoint:DualSetpoint, + {2e5bfd45-be53-46a2-a1be-badb1d1f9ae8}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 Thermostat, !- Name + {e1c00ef5-f530-4453-a67b-ca54f0ae084f}, !- Heating Setpoint Temperature Schedule Name + {205b7ba7-36bf-4caa-b304-f7da82550d15}; !- Cooling Setpoint Temperature Schedule Name + +OS:Schedule:Ruleset, + {e1c00ef5-f530-4453-a67b-ca54f0ae084f}, ! Handle + Large Office HtgSetp, ! Name + {81589aa3-85f3-4555-b92c-d10e45fa9ee1}, ! Schedule Type Limits Name + {c03c043f-e445-4419-b05d-8448115b3bab}, ! Default Day Schedule Name + {a9f892cb-c9f4-4a21-b2b3-875ef1466bf3}, ! Summer Design Day Schedule Name + {77fb46ee-722d-4b5a-b718-ceafddc8aabf}; ! Winter Design Day Schedule Name + +OS:ScheduleTypeLimits, + {81589aa3-85f3-4555-b92c-d10e45fa9ee1}, !- Handle + Temperature 3, !- Name + , !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + Temperature; !- Unit Type + +OS:Schedule:Day, + {c03c043f-e445-4419-b05d-8448115b3bab}, ! Handle + Large Office HtgSetp Default Schedule, ! Name + {81589aa3-85f3-4555-b92c-d10e45fa9ee1}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 15.6, !- Value Until Time 1 + 22, !- Hour 2 + 0, !- Minute 2 + 21, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 15.6; !- Value Until Time 3 + +OS:Schedule:Day, + {a9f892cb-c9f4-4a21-b2b3-875ef1466bf3}, ! Handle + Large Office HtgSetp Summer Design Day, ! Name + {81589aa3-85f3-4555-b92c-d10e45fa9ee1}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 15.6; ! Value Until Time 1 + +OS:Schedule:Day, + {77fb46ee-722d-4b5a-b718-ceafddc8aabf}, ! Handle + Large Office HtgSetp Winter Design Day, ! Name + {81589aa3-85f3-4555-b92c-d10e45fa9ee1}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 21; ! Value Until Time 1 + +OS:Schedule:Rule, + {4f682768-9ffb-4e7c-9e74-78813fdc32a0}, ! Handle + Large Office HtgSetp Rule 1, ! Name + {e1c00ef5-f530-4453-a67b-ca54f0ae084f}, ! Schedule Ruleset Name + 0, ! Rule Order + {7545c1d3-7c27-431a-bcf9-cb0c76a60e37}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {7545c1d3-7c27-431a-bcf9-cb0c76a60e37}, ! Handle + Large Office HtgSetp Rule 1 Day Schedule, ! Name + {81589aa3-85f3-4555-b92c-d10e45fa9ee1}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 15.6; ! Value Until Time 1 + +OS:Schedule:Rule, + {f80fc661-2858-4988-ada5-e6c492332983}, ! Handle + Large Office HtgSetp Rule 2, ! Name + {e1c00ef5-f530-4453-a67b-ca54f0ae084f}, ! Schedule Ruleset Name + 1, ! Rule Order + {3d9b97da-f484-4675-9996-0cfe5e0f120e}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {3d9b97da-f484-4675-9996-0cfe5e0f120e}, ! Handle + Large Office HtgSetp Rule 2 Day Schedule, ! Name + {81589aa3-85f3-4555-b92c-d10e45fa9ee1}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 15.6, ! Value Until Time 1 + 18, ! Hour 2 + 0, ! Minute 2 + 21, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 15.6; ! Value Until Time 3 + +OS:Schedule:Ruleset, + {205b7ba7-36bf-4caa-b304-f7da82550d15}, ! Handle + Large Office ClgSetp, ! Name + {088565a9-dd39-48f6-99d3-bfe5073149c2}, ! Schedule Type Limits Name + {bdb46914-0540-45a5-b513-ee6f82b41886}, ! Default Day Schedule Name + {4109675b-2e2f-446b-873f-f694dae16827}, ! Summer Design Day Schedule Name + {30c08a39-528f-426d-bc84-48cf54111147}; ! Winter Design Day Schedule Name + +OS:ScheduleTypeLimits, + {088565a9-dd39-48f6-99d3-bfe5073149c2}, !- Handle + Temperature 5, !- Name + , !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + Temperature; !- Unit Type + +OS:Schedule:Day, + {bdb46914-0540-45a5-b513-ee6f82b41886}, ! Handle + Large Office ClgSetp Default Schedule, ! Name + {088565a9-dd39-48f6-99d3-bfe5073149c2}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 26.7, !- Value Until Time 1 + 22, !- Hour 2 + 0, !- Minute 2 + 24, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 26.7; !- Value Until Time 3 + +OS:Schedule:Day, + {4109675b-2e2f-446b-873f-f694dae16827}, ! Handle + Large Office ClgSetp Summer Design Day, ! Name + {088565a9-dd39-48f6-99d3-bfe5073149c2}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 26.699999999999999, ! Value Until Time 1 + 22, ! Hour 2 + 0, ! Minute 2 + 24, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 26.699999999999999; ! Value Until Time 3 + +OS:Schedule:Day, + {30c08a39-528f-426d-bc84-48cf54111147}, ! Handle + Large Office ClgSetp Winter Design Day, ! Name + {088565a9-dd39-48f6-99d3-bfe5073149c2}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 26.699999999999999; ! Value Until Time 1 + +OS:Schedule:Rule, + {37df0d56-4bba-4227-8d69-9607a686014f}, ! Handle + Large Office ClgSetp Rule 1, ! Name + {205b7ba7-36bf-4caa-b304-f7da82550d15}, ! Schedule Ruleset Name + 0, ! Rule Order + {cd196b78-7b8b-429f-b96a-688c4ac8a99a}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {cd196b78-7b8b-429f-b96a-688c4ac8a99a}, ! Handle + Large Office ClgSetp Rule 1 Day Schedule, ! Name + {088565a9-dd39-48f6-99d3-bfe5073149c2}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 26.699999999999999; ! Value Until Time 1 + +OS:Schedule:Rule, + {ccb2ba27-b2d6-4f5f-b02b-091c4def877f}, ! Handle + Large Office ClgSetp Rule 2, ! Name + {205b7ba7-36bf-4caa-b304-f7da82550d15}, ! Schedule Ruleset Name + 1, ! Rule Order + {279ad10c-a720-45f0-80eb-18bb3e37607b}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {279ad10c-a720-45f0-80eb-18bb3e37607b}, ! Handle + Large Office ClgSetp Rule 2 Day Schedule, ! Name + {088565a9-dd39-48f6-99d3-bfe5073149c2}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 26.699999999999999, ! Value Until Time 1 + 18, ! Hour 2 + 0, ! Minute 2 + 24, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 26.699999999999999; ! Value Until Time 3 + +OS:SpaceType, + {f1a5c162-f322-4c79-ba15-e43020514289}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3, !- Name + , !- Default Construction Set Name + {f97da1fb-3578-4a67-9933-d2891cb549b6}, !- Default Schedule Set Name + {03e06c9d-a4bc-49de-952a-4329faa7fb71}, !- Group Rendering Name + {8f13e24f-0968-430b-82b1-c5e41da9fafa}, !- Design Specification Outdoor Air Object Name + Office, !- Standards Building Type + WholeBuilding - Md Office; !- Standards Space Type + +OS:Rendering:Color, + {03e06c9d-a4bc-49de-952a-4329faa7fb71}, !- Handle + Rendering Color 15, !- Name + 120, !- Rendering Red Value + 230, !- Rendering Green Value + 199; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {f97da1fb-3578-4a67-9933-d2891cb549b6}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {c46af6b1-d997-440b-a480-2b785127791c}, !- Number of People Schedule Name + {4401923f-7369-4704-af97-5f02eccc07c4}, !- People Activity Level Schedule Name + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name + {e7df833e-4db6-469d-ad96-14b52ff0ceef}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {4b35ab56-cec3-45c0-bd82-7c7c88e72873}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {813e77fb-5ac1-47f6-a5e0-d9a9cd3db4a9}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.68751937503875, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {a5f0d2c1-e014-479a-8f1b-3ebac3e265e4}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 Lights, !- Name + {813e77fb-5ac1-47f6-a5e0-d9a9cd3db4a9}, !- Lights Definition Name + {f1a5c162-f322-4c79-ba15-e43020514289}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {8f13e24f-0968-430b-82b1-c5e41da9fafa}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {d2de25c6-7190-4247-bdb6-aa1580eb569f}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0538195520835486, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {58a62980-ba6f-4bad-9e5d-fdacc8096f52}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 People, !- Name + {d2de25c6-7190-4247-bdb6-aa1580eb569f}, !- People Definition Name + {f1a5c162-f322-4c79-ba15-e43020514289}; !- Space or SpaceType Name + +OS:Schedule:Ruleset, + {c46af6b1-d997-440b-a480-2b785127791c}, ! Handle + Medium Office Bldg Occ, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + {d9d54295-ecf9-49ea-9cd5-35741ee7140f}, ! Default Day Schedule Name + {2d82484a-7ded-4ae3-b82b-fe668b91bc37}, ! Summer Design Day Schedule Name + {4c00a96b-09d5-4658-89ef-d9ef0898a2d4}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {d9d54295-ecf9-49ea-9cd5-35741ee7140f}, ! Handle + Medium Office Bldg Occ Default Schedule, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 7, !- Hour 2 + 0, !- Minute 2 + 0.1, !- Value Until Time 2 + 8, !- Hour 3 + 0, !- Minute 3 + 0.2, !- Value Until Time 3 + 12, !- Hour 4 + 0, !- Minute 4 + 0.95, !- Value Until Time 4 + 13, !- Hour 5 + 0, !- Minute 5 + 0.5, !- Value Until Time 5 + 17, !- Hour 6 + 0, !- Minute 6 + 0.95, !- Value Until Time 6 + 18, !- Hour 7 + 0, !- Minute 7 + 0.7, !- Value Until Time 7 + 20, !- Hour 8 + 0, !- Minute 8 + 0.4, !- Value Until Time 8 + 22, !- Hour 9 + 0, !- Minute 9 + 0.1, !- Value Until Time 9 + 24, !- Hour 10 + 0, !- Minute 10 + 0.05; !- Value Until Time 10 + +OS:Schedule:Day, + {2d82484a-7ded-4ae3-b82b-fe668b91bc37}, ! Handle + Medium Office Bldg Occ Summer Design Day, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 22, ! Hour 2 + 0, ! Minute 2 + 1, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 0.050000000000000003; ! Value Until Time 3 + +OS:Schedule:Day, + {4c00a96b-09d5-4658-89ef-d9ef0898a2d4}, ! Handle + Medium Office Bldg Occ Winter Design Day, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {7b4107cc-3c92-4323-a753-015efc68bcc2}, ! Handle + Medium Office Bldg Occ Rule 1, ! Name + {c46af6b1-d997-440b-a480-2b785127791c}, ! Schedule Ruleset Name + 0, ! Rule Order + {0ef53acd-53bb-4684-9657-b3c697aefcf1}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {0ef53acd-53bb-4684-9657-b3c697aefcf1}, ! Handle + Medium Office Bldg Occ Rule 1 Day Schedule, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {4d201951-02b0-433c-8e17-deb2b0409886}, ! Handle + Medium Office Bldg Occ Rule 2, ! Name + {c46af6b1-d997-440b-a480-2b785127791c}, ! Schedule Ruleset Name + 1, ! Rule Order + {cf6e8c44-7d5c-4f2c-9a53-1b2a7113c47c}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {cf6e8c44-7d5c-4f2c-9a53-1b2a7113c47c}, ! Handle + Medium Office Bldg Occ Rule 2 Day Schedule, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 8, ! Hour 2 + 0, ! Minute 2 + 0.10000000000000001, ! Value Until Time 2 + 14, ! Hour 3 + 0, ! Minute 3 + 0.5, ! Value Until Time 3 + 17, ! Hour 4 + 0, ! Minute 4 + 0.10000000000000001, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0; ! Value Until Time 5 + +OS:Schedule:Ruleset, + {4401923f-7369-4704-af97-5f02eccc07c4}, ! Handle + Medium Office Activity, ! Name + {95269861-8fab-46f9-aa04-a6e9bad28f6a}, ! Schedule Type Limits Name + {bb81c5f0-bf9a-4988-98c4-eb4a990d7a88}, ! Default Day Schedule Name + {f3b095b2-bfff-494c-896b-85a436510b0b}, ! Summer Design Day Schedule Name + {d26b3326-27cf-44ae-b92e-698b3492b9c3}; ! Winter Design Day Schedule Name + +OS:ScheduleTypeLimits, + {95269861-8fab-46f9-aa04-a6e9bad28f6a}, !- Handle + ActivityLevel 13, !- Name + 0, !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + ActivityLevel; !- Unit Type + +OS:Schedule:Day, + {bb81c5f0-bf9a-4988-98c4-eb4a990d7a88}, ! Handle + Medium Office Activity Default Schedule, ! Name + {95269861-8fab-46f9-aa04-a6e9bad28f6a}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 120; !- Value Until Time 1 + +OS:Schedule:Day, + {f3b095b2-bfff-494c-896b-85a436510b0b}, ! Handle + Medium Office Activity Summer Design Day, ! Name + {95269861-8fab-46f9-aa04-a6e9bad28f6a}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 120; ! Value Until Time 1 + +OS:Schedule:Day, + {d26b3326-27cf-44ae-b92e-698b3492b9c3}, ! Handle + Medium Office Activity Winter Design Day, ! Name + {95269861-8fab-46f9-aa04-a6e9bad28f6a}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 120; ! Value Until Time 1 + +OS:SpaceInfiltration:DesignFlowRate, + {eeedf250-2cf8-460c-88a9-6a3cf6835b8d}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 Infiltration, !- Name + {f1a5c162-f322-4c79-ba15-e43020514289}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:Schedule:Ruleset, + {4b35ab56-cec3-45c0-bd82-7c7c88e72873}, ! Handle + Medium Office Infil Quarter On, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + {d5c45924-8436-4010-89ab-1d4be1c9229b}, ! Default Day Schedule Name + {5cb8e672-ec1d-411a-ad66-83bef8bf8004}, ! Summer Design Day Schedule Name + {61bdc9d6-0f05-4ca1-a38c-fa71dcd32b8f}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {d5c45924-8436-4010-89ab-1d4be1c9229b}, ! Handle + Medium Office Infil Quarter On Default Schedule, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 22, !- Hour 2 + 0, !- Minute 2 + 0.25, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 1; !- Value Until Time 3 + +OS:Schedule:Day, + {5cb8e672-ec1d-411a-ad66-83bef8bf8004}, ! Handle + Medium Office Infil Quarter On Summer Design Day, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 1, ! Value Until Time 1 + 22, ! Hour 2 + 0, ! Minute 2 + 0.25, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 1; ! Value Until Time 3 + +OS:Schedule:Day, + {61bdc9d6-0f05-4ca1-a38c-fa71dcd32b8f}, ! Handle + Medium Office Infil Quarter On Winter Design Day, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 1, ! Value Until Time 1 + 18, ! Hour 2 + 0, ! Minute 2 + 0.25, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 1; ! Value Until Time 3 + +OS:Schedule:Rule, + {61abaf03-1521-4e72-a32f-0622572b46df}, ! Handle + Medium Office Infil Quarter On Rule 1, ! Name + {4b35ab56-cec3-45c0-bd82-7c7c88e72873}, ! Schedule Ruleset Name + 0, ! Rule Order + {b837180a-0538-4830-8423-56d718ec2cf7}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {b837180a-0538-4830-8423-56d718ec2cf7}, ! Handle + Medium Office Infil Quarter On Rule 1 Day Schedule, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 1; ! Value Until Time 1 + +OS:Schedule:Rule, + {bf208a98-b7ef-4dbb-957d-53cf720abf70}, ! Handle + Medium Office Infil Quarter On Rule 2, ! Name + {4b35ab56-cec3-45c0-bd82-7c7c88e72873}, ! Schedule Ruleset Name + 1, ! Rule Order + {7efacb04-6850-495e-afb7-9d56ea083b53}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {7efacb04-6850-495e-afb7-9d56ea083b53}, ! Handle + Medium Office Infil Quarter On Rule 2 Day Schedule, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 1, ! Value Until Time 1 + 18, ! Hour 2 + 0, ! Minute 2 + 0.25, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 1; ! Value Until Time 3 + +OS:ElectricEquipment:Definition, + {08d105c1-a5c4-43eb-872f-8bd123ea9720}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 5.81251162502325, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {92bed684-e409-4e09-8f9b-036a79bdc3c6}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 Electric Equipment, !- Name + {08d105c1-a5c4-43eb-872f-8bd123ea9720}, !- Electric Equipment Definition Name + {f1a5c162-f322-4c79-ba15-e43020514289}; !- Space or SpaceType Name + +OS:Schedule:Ruleset, + {e7df833e-4db6-469d-ad96-14b52ff0ceef}, ! Handle + Medium Office Bldg Equip, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + {6ea54946-7d6f-4908-b7bb-972893f935bf}, ! Default Day Schedule Name + {a70a63ce-a586-4a33-ac0e-5bff458a02ad}, ! Summer Design Day Schedule Name + {8d89ff2d-74de-4adc-a2b6-5ed38545666a}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {6ea54946-7d6f-4908-b7bb-972893f935bf}, ! Handle + Medium Office Bldg Equip Default Schedule, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0.4, !- Value Until Time 1 + 12, !- Hour 2 + 0, !- Minute 2 + 0.9, !- Value Until Time 2 + 13, !- Hour 3 + 0, !- Minute 3 + 0.8, !- Value Until Time 3 + 17, !- Hour 4 + 0, !- Minute 4 + 0.9, !- Value Until Time 4 + 18, !- Hour 5 + 0, !- Minute 5 + 0.8, !- Value Until Time 5 + 20, !- Hour 6 + 0, !- Minute 6 + 0.6, !- Value Until Time 6 + 22, !- Hour 7 + 0, !- Minute 7 + 0.5, !- Value Until Time 7 + 24, !- Hour 8 + 0, !- Minute 8 + 0.4; !- Value Until Time 8 + +OS:Schedule:Day, + {a70a63ce-a586-4a33-ac0e-5bff458a02ad}, ! Handle + Medium Office Bldg Equip Summer Design Day, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 1; ! Value Until Time 1 + +OS:Schedule:Day, + {8d89ff2d-74de-4adc-a2b6-5ed38545666a}, ! Handle + Medium Office Bldg Equip Winter Design Day, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {f0c7f526-21ef-4f5e-8c3d-b4e15c5fdad7}, ! Handle + Medium Office Bldg Equip Rule 1, ! Name + {e7df833e-4db6-469d-ad96-14b52ff0ceef}, ! Schedule Ruleset Name + 0, ! Rule Order + {f7fadf05-492e-4735-94c5-ffdf9f951db8}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {f7fadf05-492e-4735-94c5-ffdf9f951db8}, ! Handle + Medium Office Bldg Equip Rule 1 Day Schedule, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.29999999999999999; ! Value Until Time 1 + +OS:Schedule:Rule, + {4faf6bd3-ebb1-47fb-8f59-6dfe65f49500}, ! Handle + Medium Office Bldg Equip Rule 2, ! Name + {e7df833e-4db6-469d-ad96-14b52ff0ceef}, ! Schedule Ruleset Name + 1, ! Rule Order + {b8836416-9204-431d-857d-b99235588cc6}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {b8836416-9204-431d-857d-b99235588cc6}, ! Handle + Medium Office Bldg Equip Rule 2 Day Schedule, ! Name + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 0.29999999999999999, ! Value Until Time 1 + 8, ! Hour 2 + 0, ! Minute 2 + 0.40000000000000002, ! Value Until Time 2 + 14, ! Hour 3 + 0, ! Minute 3 + 0.5, ! Value Until Time 3 + 17, ! Hour 4 + 0, ! Minute 4 + 0.34999999999999998, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0.29999999999999999; ! Value Until Time 5 + +OS:ThermostatSetpoint:DualSetpoint, + {6c8f1b66-79b0-4494-bb62-0e6ab336934b}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 Thermostat, !- Name + {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name + {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {e1cc070f-9032-474a-a692-fe55745caa04}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3, !- Name + , !- Default Construction Set Name + {d32f1055-150c-4db0-85e7-cd8d80091a97}, !- Default Schedule Set Name + {acb4804a-6b98-49bc-8337-c128f3c2ea30}, !- Group Rendering Name + {6410e886-4201-485e-a1a7-5fa1c8b6bdf4}, !- Design Specification Outdoor Air Object Name + Office, !- Standards Building Type + WholeBuilding - Sm Office; !- Standards Space Type + +OS:Rendering:Color, + {acb4804a-6b98-49bc-8337-c128f3c2ea30}, !- Handle + Rendering Color 16, !- Name + 120, !- Rendering Red Value + 230, !- Rendering Green Value + 199; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {d32f1055-150c-4db0-85e7-cd8d80091a97}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {7db91015-b01f-42c8-b02c-a13d4ed39198}, !- Number of People Schedule Name + {67a55331-2096-4c9b-981a-b63f113d0dd9}, !- People Activity Level Schedule Name + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name + {a51b8fe3-0466-410b-a880-21be07500a52}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {cb7cb752-a33a-400e-97f3-836bf023796e}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {71df8542-c73a-4a75-96b3-2049ec201c3b}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.68751937503875, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {453c5932-0aee-459f-ac1d-0563be79832e}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 Lights, !- Name + {71df8542-c73a-4a75-96b3-2049ec201c3b}, !- Lights Definition Name + {e1cc070f-9032-474a-a692-fe55745caa04}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {6410e886-4201-485e-a1a7-5fa1c8b6bdf4}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {7accfcbc-2a91-4f56-8250-c9c73d4bce14}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0538195520835486, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {d10bfc0d-d823-4de2-8ad6-a13acf3eb5e9}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 People, !- Name + {7accfcbc-2a91-4f56-8250-c9c73d4bce14}, !- People Definition Name + {e1cc070f-9032-474a-a692-fe55745caa04}; !- Space or SpaceType Name + +OS:Schedule:Ruleset, + {7db91015-b01f-42c8-b02c-a13d4ed39198}, ! Handle + Small Office Bldg Occ, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + {64ea2dea-f719-4e4c-a22e-42f9227b7d02}, ! Default Day Schedule Name + {e2d1be96-983f-479c-9168-bb31f678aa45}, ! Summer Design Day Schedule Name + {e3787dc6-53c0-4b7e-928b-6123952b9fc2}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {64ea2dea-f719-4e4c-a22e-42f9227b7d02}, ! Handle + Small Office Bldg Occ Default Schedule, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 7, !- Hour 2 + 0, !- Minute 2 + 0.1, !- Value Until Time 2 + 8, !- Hour 3 + 0, !- Minute 3 + 0.2, !- Value Until Time 3 + 12, !- Hour 4 + 0, !- Minute 4 + 0.95, !- Value Until Time 4 + 13, !- Hour 5 + 0, !- Minute 5 + 0.5, !- Value Until Time 5 + 17, !- Hour 6 + 0, !- Minute 6 + 0.95, !- Value Until Time 6 + 18, !- Hour 7 + 0, !- Minute 7 + 0.3, !- Value Until Time 7 + 20, !- Hour 8 + 0, !- Minute 8 + 0.1, !- Value Until Time 8 + 24, !- Hour 9 + 0, !- Minute 9 + 0.05; !- Value Until Time 9 + +OS:Schedule:Day, + {e2d1be96-983f-479c-9168-bb31f678aa45}, ! Handle + Small Office Bldg Occ Summer Design Day, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 22, ! Hour 2 + 0, ! Minute 2 + 1, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 0.050000000000000003; ! Value Until Time 3 + +OS:Schedule:Day, + {e3787dc6-53c0-4b7e-928b-6123952b9fc2}, ! Handle + Small Office Bldg Occ Winter Design Day, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {f5e8f265-336a-4040-bc3d-908d04e76726}, ! Handle + Small Office Bldg Occ Rule 1, ! Name + {7db91015-b01f-42c8-b02c-a13d4ed39198}, ! Schedule Ruleset Name + 0, ! Rule Order + {b1de6bcd-f86b-4e51-81b1-8ae3ed668c97}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {b1de6bcd-f86b-4e51-81b1-8ae3ed668c97}, ! Handle + Small Office Bldg Occ Rule 1 Day Schedule, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {1ac935c1-7df7-46c6-a2c5-b2a40bc3fc36}, ! Handle + Small Office Bldg Occ Rule 2, ! Name + {7db91015-b01f-42c8-b02c-a13d4ed39198}, ! Schedule Ruleset Name + 1, ! Rule Order + {d529f022-9fba-4103-af27-c2084aba44c4}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {d529f022-9fba-4103-af27-c2084aba44c4}, ! Handle + Small Office Bldg Occ Rule 2 Day Schedule, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 8, ! Hour 2 + 0, ! Minute 2 + 0.10000000000000001, ! Value Until Time 2 + 12, ! Hour 3 + 0, ! Minute 3 + 0.29999999999999999, ! Value Until Time 3 + 17, ! Hour 4 + 0, ! Minute 4 + 0.10000000000000001, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0; ! Value Until Time 5 + +OS:Schedule:Ruleset, + {67a55331-2096-4c9b-981a-b63f113d0dd9}, ! Handle + Small Office Activity, ! Name + {ab8bd902-d0dc-41a0-936a-32afa4684057}, ! Schedule Type Limits Name + {12ff5327-86b6-42bd-9d53-941110babe19}, ! Default Day Schedule Name + {be5e67a8-5b36-4ac3-9813-2ebd31fec570}, ! Summer Design Day Schedule Name + {bae73b41-e18c-4183-82f3-dc5b3daf6b5a}; ! Winter Design Day Schedule Name + +OS:ScheduleTypeLimits, + {ab8bd902-d0dc-41a0-936a-32afa4684057}, !- Handle + ActivityLevel 12, !- Name + 0, !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + ActivityLevel; !- Unit Type + +OS:Schedule:Day, + {12ff5327-86b6-42bd-9d53-941110babe19}, ! Handle + Small Office Activity Default Schedule, ! Name + {ab8bd902-d0dc-41a0-936a-32afa4684057}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 120; !- Value Until Time 1 + +OS:Schedule:Day, + {be5e67a8-5b36-4ac3-9813-2ebd31fec570}, ! Handle + Small Office Activity Summer Design Day, ! Name + {ab8bd902-d0dc-41a0-936a-32afa4684057}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 120; ! Value Until Time 1 + +OS:Schedule:Day, + {bae73b41-e18c-4183-82f3-dc5b3daf6b5a}, ! Handle + Small Office Activity Winter Design Day, ! Name + {ab8bd902-d0dc-41a0-936a-32afa4684057}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 120; ! Value Until Time 1 + +OS:SpaceInfiltration:DesignFlowRate, + {1e027a7c-c27f-4a3d-8cdf-0828601a4f05}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 Infiltration, !- Name + {e1cc070f-9032-474a-a692-fe55745caa04}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:Schedule:Ruleset, + {cb7cb752-a33a-400e-97f3-836bf023796e}, ! Handle + Small Office Infil Quarter On, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + {d279bd44-f26f-41f0-8003-e761ea50936f}, ! Default Day Schedule Name + {c9e55356-07d8-4e95-afd6-6122ba003888}, ! Summer Design Day Schedule Name + {50252ab7-6356-4d3c-9744-8fc09c4b9fdf}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {d279bd44-f26f-41f0-8003-e761ea50936f}, ! Handle + Small Office Infil Quarter On Default Schedule, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 22, !- Hour 2 + 0, !- Minute 2 + 0.25, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 1; !- Value Until Time 3 + +OS:Schedule:Day, + {c9e55356-07d8-4e95-afd6-6122ba003888}, ! Handle + Small Office Infil Quarter On Summer Design Day, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 1, ! Value Until Time 1 + 22, ! Hour 2 + 0, ! Minute 2 + 0.25, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 1; ! Value Until Time 3 + +OS:Schedule:Day, + {50252ab7-6356-4d3c-9744-8fc09c4b9fdf}, ! Handle + Small Office Infil Quarter On Winter Design Day, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 1, ! Value Until Time 1 + 18, ! Hour 2 + 0, ! Minute 2 + 0.25, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 1; ! Value Until Time 3 + +OS:Schedule:Rule, + {3e76f500-a8e5-4299-95bc-7ccf11473b72}, ! Handle + Small Office Infil Quarter On Rule 1, ! Name + {cb7cb752-a33a-400e-97f3-836bf023796e}, ! Schedule Ruleset Name + 0, ! Rule Order + {f6330e6d-8c0a-4094-9d12-908c60826bc6}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {f6330e6d-8c0a-4094-9d12-908c60826bc6}, ! Handle + Small Office Infil Quarter On Rule 1 Day Schedule, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 1; ! Value Until Time 1 + +OS:Schedule:Rule, + {6f8f3c1b-5f33-40ba-b7d5-604c0832baea}, ! Handle + Small Office Infil Quarter On Rule 2, ! Name + {cb7cb752-a33a-400e-97f3-836bf023796e}, ! Schedule Ruleset Name + 1, ! Rule Order + {2ea3f1d7-fe3f-4de0-a16d-449692029526}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {2ea3f1d7-fe3f-4de0-a16d-449692029526}, ! Handle + Small Office Infil Quarter On Rule 2 Day Schedule, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 1, ! Value Until Time 1 + 18, ! Hour 2 + 0, ! Minute 2 + 0.25, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 1; ! Value Until Time 3 + +OS:ElectricEquipment:Definition, + {39f1a8d8-4466-4a00-8eb7-ffec43b67ef7}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 5.81251162502325, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {37b7d99c-9391-4952-b185-a511e62b7beb}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 Electric Equipment, !- Name + {39f1a8d8-4466-4a00-8eb7-ffec43b67ef7}, !- Electric Equipment Definition Name + {e1cc070f-9032-474a-a692-fe55745caa04}; !- Space or SpaceType Name + +OS:Schedule:Ruleset, + {a51b8fe3-0466-410b-a880-21be07500a52}, ! Handle + Small Office Bldg Equip, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + {fc46d799-962b-42da-810e-397f7b1e88d7}, ! Default Day Schedule Name + {177d4d57-9a9d-40c4-9f25-385bc5794113}, ! Summer Design Day Schedule Name + {d16b57c0-830a-4c5a-b229-8bb90eafd907}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {fc46d799-962b-42da-810e-397f7b1e88d7}, ! Handle + Small Office Bldg Equip Default Schedule, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0.4, !- Value Until Time 1 + 12, !- Hour 2 + 0, !- Minute 2 + 0.9, !- Value Until Time 2 + 13, !- Hour 3 + 0, !- Minute 3 + 0.8, !- Value Until Time 3 + 17, !- Hour 4 + 0, !- Minute 4 + 0.9, !- Value Until Time 4 + 18, !- Hour 5 + 0, !- Minute 5 + 0.5, !- Value Until Time 5 + 24, !- Hour 6 + 0, !- Minute 6 + 0.4; !- Value Until Time 6 + +OS:Schedule:Day, + {177d4d57-9a9d-40c4-9f25-385bc5794113}, ! Handle + Small Office Bldg Equip Summer Design Day, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 1; ! Value Until Time 1 + +OS:Schedule:Day, + {d16b57c0-830a-4c5a-b229-8bb90eafd907}, ! Handle + Small Office Bldg Equip Winter Design Day, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {b33de88d-7022-4f25-b0bc-864df53b8778}, ! Handle + Small Office Bldg Equip Rule 1, ! Name + {a51b8fe3-0466-410b-a880-21be07500a52}, ! Schedule Ruleset Name + 0, ! Rule Order + {ba6246a8-76d6-4116-8b88-5393a3f4104e}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {ba6246a8-76d6-4116-8b88-5393a3f4104e}, ! Handle + Small Office Bldg Equip Rule 1 Day Schedule, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.29999999999999999; ! Value Until Time 1 + +OS:Schedule:Rule, + {d64a5d87-6660-4767-a721-b98c22ca221a}, ! Handle + Small Office Bldg Equip Rule 2, ! Name + {a51b8fe3-0466-410b-a880-21be07500a52}, ! Schedule Ruleset Name + 1, ! Rule Order + {b024c0a2-4dc6-48a1-b95e-6727cd4eda93}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {b024c0a2-4dc6-48a1-b95e-6727cd4eda93}, ! Handle + Small Office Bldg Equip Rule 2 Day Schedule, ! Name + {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 0.29999999999999999, ! Value Until Time 1 + 8, ! Hour 2 + 0, ! Minute 2 + 0.40000000000000002, ! Value Until Time 2 + 12, ! Hour 3 + 0, ! Minute 3 + 0.5, ! Value Until Time 3 + 17, ! Hour 4 + 0, ! Minute 4 + 0.34999999999999998, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0.29999999999999999; ! Value Until Time 5 + +OS:ThermostatSetpoint:DualSetpoint, + {0488857a-ac36-457e-bf08-09bfa412ba46}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 Thermostat, !- Name + {a8fc5971-56bf-485f-a8b6-fc00357a220a}, !- Heating Setpoint Temperature Schedule Name + {8334d03b-d787-4c01-a860-2e97c980572e}; !- Cooling Setpoint Temperature Schedule Name + +OS:Schedule:Ruleset, + {a8fc5971-56bf-485f-a8b6-fc00357a220a}, ! Handle + Small Office HtgSetp, ! Name + {0e9a66b1-0d84-4b86-b6d1-08ec793ba821}, ! Schedule Type Limits Name + {3c698c69-ef20-4c49-99b7-b7aad45c31e8}, ! Default Day Schedule Name + {65e5c54a-b6f3-4826-8e5d-f77bf7a35635}, ! Summer Design Day Schedule Name + {f78827e4-d6c5-4edc-ad35-a64fdbeb2a7f}; ! Winter Design Day Schedule Name + +OS:ScheduleTypeLimits, + {0e9a66b1-0d84-4b86-b6d1-08ec793ba821}, !- Handle + Temperature 11, !- Name + , !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + Temperature; !- Unit Type + +OS:Schedule:Day, + {3c698c69-ef20-4c49-99b7-b7aad45c31e8}, ! Handle + Small Office HtgSetp Default Schedule, ! Name + {0e9a66b1-0d84-4b86-b6d1-08ec793ba821}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 15.6, !- Value Until Time 1 + 22, !- Hour 2 + 0, !- Minute 2 + 21, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 15.6; !- Value Until Time 3 + +OS:Schedule:Day, + {65e5c54a-b6f3-4826-8e5d-f77bf7a35635}, ! Handle + Small Office HtgSetp Summer Design Day, ! Name + {0e9a66b1-0d84-4b86-b6d1-08ec793ba821}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 15.6; ! Value Until Time 1 + +OS:Schedule:Day, + {f78827e4-d6c5-4edc-ad35-a64fdbeb2a7f}, ! Handle + Small Office HtgSetp Winter Design Day, ! Name + {0e9a66b1-0d84-4b86-b6d1-08ec793ba821}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 21; ! Value Until Time 1 + +OS:Schedule:Rule, + {59307f1f-95bc-49ae-b50e-42836a04e0cc}, ! Handle + Small Office HtgSetp Rule 1, ! Name + {a8fc5971-56bf-485f-a8b6-fc00357a220a}, ! Schedule Ruleset Name + 0, ! Rule Order + {8d0c0dcb-4ca1-4665-8d1d-bfe46b893abe}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {8d0c0dcb-4ca1-4665-8d1d-bfe46b893abe}, ! Handle + Small Office HtgSetp Rule 1 Day Schedule, ! Name + {0e9a66b1-0d84-4b86-b6d1-08ec793ba821}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 15.6; ! Value Until Time 1 + +OS:Schedule:Rule, + {9847a62b-fb76-4ab8-9344-f3f532928c11}, ! Handle + Small Office HtgSetp Rule 2, ! Name + {a8fc5971-56bf-485f-a8b6-fc00357a220a}, ! Schedule Ruleset Name + 1, ! Rule Order + {4824a431-a6af-44cb-9a95-88a95f2c6cec}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {4824a431-a6af-44cb-9a95-88a95f2c6cec}, ! Handle + Small Office HtgSetp Rule 2 Day Schedule, ! Name + {0e9a66b1-0d84-4b86-b6d1-08ec793ba821}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 15.6, ! Value Until Time 1 + 18, ! Hour 2 + 0, ! Minute 2 + 21, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 15.6; ! Value Until Time 3 + +OS:Schedule:Ruleset, + {8334d03b-d787-4c01-a860-2e97c980572e}, ! Handle + Small Office ClgSetp, ! Name + {c998de07-a854-476f-88ee-694f57ede232}, ! Schedule Type Limits Name + {153c8010-6388-42f7-a3b9-45ffa21b21cf}, ! Default Day Schedule Name + {5fb8bca9-2863-48e1-aa3f-84e58ae39852}, ! Summer Design Day Schedule Name + {2103cebf-d42f-4cd2-b503-7600479676a2}; ! Winter Design Day Schedule Name + +OS:ScheduleTypeLimits, + {c998de07-a854-476f-88ee-694f57ede232}, !- Handle + Temperature 4, !- Name + , !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + Temperature; !- Unit Type + +OS:Schedule:Day, + {153c8010-6388-42f7-a3b9-45ffa21b21cf}, ! Handle + Small Office ClgSetp Default Schedule, ! Name + {c998de07-a854-476f-88ee-694f57ede232}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 26.7, !- Value Until Time 1 + 22, !- Hour 2 + 0, !- Minute 2 + 24, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 26.7; !- Value Until Time 3 + +OS:Schedule:Day, + {5fb8bca9-2863-48e1-aa3f-84e58ae39852}, ! Handle + Small Office ClgSetp Summer Design Day, ! Name + {c998de07-a854-476f-88ee-694f57ede232}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 26.699999999999999, ! Value Until Time 1 + 22, ! Hour 2 + 0, ! Minute 2 + 24, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 26.699999999999999; ! Value Until Time 3 + +OS:Schedule:Day, + {2103cebf-d42f-4cd2-b503-7600479676a2}, ! Handle + Small Office ClgSetp Winter Design Day, ! Name + {c998de07-a854-476f-88ee-694f57ede232}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 26.699999999999999; ! Value Until Time 1 + +OS:Schedule:Rule, + {40345165-334a-485e-87cf-103e70023132}, ! Handle + Small Office ClgSetp Rule 1, ! Name + {8334d03b-d787-4c01-a860-2e97c980572e}, ! Schedule Ruleset Name + 0, ! Rule Order + {d1455230-b62b-4375-80ca-cc36c3183857}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {d1455230-b62b-4375-80ca-cc36c3183857}, ! Handle + Small Office ClgSetp Rule 1 Day Schedule, ! Name + {c998de07-a854-476f-88ee-694f57ede232}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 26.699999999999999; ! Value Until Time 1 + +OS:Schedule:Rule, + {0972da99-d044-41cb-8d26-0439235fb34a}, ! Handle + Small Office ClgSetp Rule 2, ! Name + {8334d03b-d787-4c01-a860-2e97c980572e}, ! Schedule Ruleset Name + 1, ! Rule Order + {81a56e50-b627-419b-920e-d3cef807b9f8}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {81a56e50-b627-419b-920e-d3cef807b9f8}, ! Handle + Small Office ClgSetp Rule 2 Day Schedule, ! Name + {c998de07-a854-476f-88ee-694f57ede232}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 26.699999999999999, ! Value Until Time 1 + 18, ! Hour 2 + 0, ! Minute 2 + 24, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 26.699999999999999; ! Value Until Time 3 + +OS:SpaceType, + {6fcac478-58b9-4f2f-ab61-2fdf78ed207a}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ4-8, !- Name + , !- Default Construction Set Name + {0b0d7d0e-8e0c-4d73-bbd0-4d262ac73220}, !- Default Schedule Set Name + {99b31bfd-0d42-45f4-a0d8-d4817aca24ae}, !- Group Rendering Name + {f6d5ea3e-58cf-41e5-81fb-02117411a981}, !- Design Specification Outdoor Air Object Name + Office, !- Standards Building Type + BreakRoom; !- Standards Space Type + +OS:Rendering:Color, + {99b31bfd-0d42-45f4-a0d8-d4817aca24ae}, !- Handle + Rendering Color 17, !- Name + 230, !- Rendering Red Value + 157, !- Rendering Green Value + 120; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {0b0d7d0e-8e0c-4d73-bbd0-4d262ac73220}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ4-8 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name + {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name + {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {9d2a2115-85c5-438b-b32c-a4a858d8161a}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ4-8 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 11.6250232500465, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {4a230733-41f5-4ca6-96e0-5e44748f7df4}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ4-8 Lights, !- Name + {9d2a2115-85c5-438b-b32c-a4a858d8161a}, !- Lights Definition Name + {6fcac478-58b9-4f2f-ab61-2fdf78ed207a}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {f6d5ea3e-58cf-41e5-81fb-02117411a981}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ4-8 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.007079211648, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {23d096cd-2bb1-423d-b1c8-baf5526ef2a6}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ4-8 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.538195520835486, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {5a10a8e5-74eb-41b6-8300-8c614f3cd681}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ4-8 People, !- Name + {23d096cd-2bb1-423d-b1c8-baf5526ef2a6}, !- People Definition Name + {6fcac478-58b9-4f2f-ab61-2fdf78ed207a}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {6eb84b2f-973d-476e-b524-53b69c751752}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ4-8 Infiltration, !- Name + {6fcac478-58b9-4f2f-ab61-2fdf78ed207a}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {5b57df41-243c-46ff-9790-d9497bd8edf0}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ4-8 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 48.0070404585254, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {e641d016-e7d6-4890-957c-3de2b21a699a}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ4-8 Electric Equipment, !- Name + {5b57df41-243c-46ff-9790-d9497bd8edf0}, !- Electric Equipment Definition Name + {6fcac478-58b9-4f2f-ab61-2fdf78ed207a}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {92dbe6d3-c9b9-43fc-90c3-a06b5ec93169}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ4-8 Thermostat, !- Name + {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name + {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {ac0a78a9-f73e-43b0-b8ae-e687babd2992}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ4-8, !- Name + , !- Default Construction Set Name + {45d37156-65d2-4044-abc0-329c2491e0be}, !- Default Schedule Set Name + {6dc82c65-0965-48c5-9394-1f57bef18075}, !- Group Rendering Name + {2cbf38dd-78ec-43cf-9455-8dba2eee1857}, !- Design Specification Outdoor Air Object Name + Office, !- Standards Building Type + ClosedOffice; !- Standards Space Type + +OS:Rendering:Color, + {6dc82c65-0965-48c5-9394-1f57bef18075}, !- Handle + Rendering Color 18, !- Name + 120, !- Rendering Red Value + 230, !- Rendering Green Value + 199; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {45d37156-65d2-4044-abc0-329c2491e0be}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ4-8 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {3f7fc9e5-6ce2-4b91-9fc6-85d1867c2216}, !- Number of People Schedule Name + {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name + {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {f855eb4f-a401-4c05-9693-85547aab5919}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ4-8 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.6562713125426, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {e6b87a14-1e18-49c7-85c2-84f072c938b2}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ4-8 Lights, !- Name + {f855eb4f-a401-4c05-9693-85547aab5919}, !- Lights Definition Name + {ac0a78a9-f73e-43b0-b8ae-e687babd2992}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {2cbf38dd-78ec-43cf-9455-8dba2eee1857}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ4-8 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {2a7bd42c-841d-4013-b4e7-019f52823262}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ4-8 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0511285744793712, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {283ae026-2477-4529-bb38-02c7e6065076}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ4-8 People, !- Name + {2a7bd42c-841d-4013-b4e7-019f52823262}, !- People Definition Name + {ac0a78a9-f73e-43b0-b8ae-e687babd2992}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {b655059c-3ce9-4b49-a0db-160442a03540}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ4-8 Infiltration, !- Name + {ac0a78a9-f73e-43b0-b8ae-e687babd2992}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {56de10a1-c355-43cc-8c70-789938bd1248}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ4-8 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 6.88890266669422, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {0f379c88-6f89-4030-bc79-090ef24b986e}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ4-8 Electric Equipment, !- Name + {56de10a1-c355-43cc-8c70-789938bd1248}, !- Electric Equipment Definition Name + {ac0a78a9-f73e-43b0-b8ae-e687babd2992}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {6b3eff15-c2f8-4f87-9fe3-6f7c3004ea5f}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ4-8 Thermostat, !- Name + {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name + {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {b9bdae74-1b30-442c-a7ed-69d06b515457}, !- Handle + 189.1-2009 - Office - Conference - CZ4-8, !- Name + , !- Default Construction Set Name + {e6c39dce-80ca-4ed4-a781-b5e18baff696}, !- Default Schedule Set Name + {202e2808-fe0a-49ec-8437-4c794472a9a0}, !- Group Rendering Name + {b8c9a3c5-53fb-4331-9614-87a518236f35}, !- Design Specification Outdoor Air Object Name + Office, !- Standards Building Type + Conference; !- Standards Space Type + +OS:Rendering:Color, + {202e2808-fe0a-49ec-8437-4c794472a9a0}, !- Handle + Rendering Color 19, !- Name + 230, !- Rendering Red Value + 196, !- Rendering Green Value + 120; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {e6c39dce-80ca-4ed4-a781-b5e18baff696}, !- Handle + 189.1-2009 - Office - Conference - CZ4-8 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name + {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name + {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {bcc996df-46dd-45ba-abe0-69433df53594}, !- Handle + 189.1-2009 - Office - Conference - CZ4-8 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 12.5937751875504, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {86c2e905-536c-4838-bf48-8aa4aebef755}, !- Handle + 189.1-2009 - Office - Conference - CZ4-8 Lights, !- Name + {bcc996df-46dd-45ba-abe0-69433df53594}, !- Lights Definition Name + {b9bdae74-1b30-442c-a7ed-69d06b515457}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {b8c9a3c5-53fb-4331-9614-87a518236f35}, !- Handle + 189.1-2009 - Office - Conference - CZ4-8 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {f07defcd-cf7a-424b-a3f5-c1672133261e}, !- Handle + 189.1-2009 - Office - Conference - CZ4-8 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.538195520835486, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {884b2aa3-62fe-4d6a-b8ec-c19497fc7da8}, !- Handle + 189.1-2009 - Office - Conference - CZ4-8 People, !- Name + {f07defcd-cf7a-424b-a3f5-c1672133261e}, !- People Definition Name + {b9bdae74-1b30-442c-a7ed-69d06b515457}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {23919b1f-4940-4b68-b1a0-5e68c2d5b78d}, !- Handle + 189.1-2009 - Office - Conference - CZ4-8 Infiltration, !- Name + {b9bdae74-1b30-442c-a7ed-69d06b515457}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {aca91e63-a266-464d-b600-e89b347c9d95}, !- Handle + 189.1-2009 - Office - Conference - CZ4-8 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 3.9826468541826, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {7ecb1b95-ffa4-4c84-b1e4-cf8c033ce8f7}, !- Handle + 189.1-2009 - Office - Conference - CZ4-8 Electric Equipment, !- Name + {aca91e63-a266-464d-b600-e89b347c9d95}, !- Electric Equipment Definition Name + {b9bdae74-1b30-442c-a7ed-69d06b515457}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {541fa24b-ddf2-4edf-83d9-2bed06917add}, !- Handle + 189.1-2009 - Office - Conference - CZ4-8 Thermostat, !- Name + {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name + {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {7150cb23-2c41-4569-8cb3-ed7c1cd4f2f7}, !- Handle + 189.1-2009 - Office - Corridor - CZ4-8, !- Name + , !- Default Construction Set Name + {666e2765-a8cc-4272-9029-54b416bb2610}, !- Default Schedule Set Name + {340eeae9-9587-4e04-b7fe-21214fa0042c}, !- Group Rendering Name + {fd69f378-0e94-4fdd-a231-f37cf315cc66}, !- Design Specification Outdoor Air Object Name + Office, !- Standards Building Type + Corridor; !- Standards Space Type + +OS:Rendering:Color, + {340eeae9-9587-4e04-b7fe-21214fa0042c}, !- Handle + Rendering Color 20, !- Name + 169, !- Rendering Red Value + 31, !- Rendering Green Value + 31; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {666e2765-a8cc-4272-9029-54b416bb2610}, !- Handle + 189.1-2009 - Office - Corridor - CZ4-8 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {3f7fc9e5-6ce2-4b91-9fc6-85d1867c2216}, !- Number of People Schedule Name + {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name + {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {a6e7a355-270c-45fb-9c56-5f4a3452110c}, !- Handle + 189.1-2009 - Office - Corridor - CZ4-8 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 4.84375968751938, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {fed0a7aa-9bc2-4d98-bc74-465b35a409d4}, !- Handle + 189.1-2009 - Office - Corridor - CZ4-8 Lights, !- Name + {a6e7a355-270c-45fb-9c56-5f4a3452110c}, !- Lights Definition Name + {7150cb23-2c41-4569-8cb3-ed7c1cd4f2f7}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {fd69f378-0e94-4fdd-a231-f37cf315cc66}, !- Handle + 189.1-2009 - Office - Corridor - CZ4-8 Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {cb9b3da7-3eea-4d6e-9db1-01acf0825dcd}, !- Handle + 189.1-2009 - Office - Corridor - CZ4-8 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0107639104167097, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {42ce457e-2d95-4fe6-9cda-f5042dea1c96}, !- Handle + 189.1-2009 - Office - Corridor - CZ4-8 People, !- Name + {cb9b3da7-3eea-4d6e-9db1-01acf0825dcd}, !- People Definition Name + {7150cb23-2c41-4569-8cb3-ed7c1cd4f2f7}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {ca37d410-b9c7-4e62-b5ca-b87627a332cc}, !- Handle + 189.1-2009 - Office - Corridor - CZ4-8 Infiltration, !- Name + {7150cb23-2c41-4569-8cb3-ed7c1cd4f2f7}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {3c280509-8b4d-4af3-aac1-fa15404f8b6d}, !- Handle + 189.1-2009 - Office - Corridor - CZ4-8 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 1.72222566667356, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {01d044ce-7e19-4288-a75a-77fc975d40d4}, !- Handle + 189.1-2009 - Office - Corridor - CZ4-8 Electric Equipment, !- Name + {3c280509-8b4d-4af3-aac1-fa15404f8b6d}, !- Electric Equipment Definition Name + {7150cb23-2c41-4569-8cb3-ed7c1cd4f2f7}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {3bdf0199-3196-4d00-9272-a3b137675d31}, !- Handle + 189.1-2009 - Office - Corridor - CZ4-8 Thermostat, !- Name + {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name + {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {ae0eddf0-a1d4-45c0-89c1-4f32cd232444}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ4-8, !- Name + , !- Default Construction Set Name + {4390b43b-ded0-461f-b061-f042bc13f91f}, !- Default Schedule Set Name + {09cc0a44-bde3-4ae8-97d5-6973b620eb23}, !- Group Rendering Name + {1fbee130-5b8b-41c4-b2e5-a35b678e1a1c}, !- Design Specification Outdoor Air Object Name + Office, !- Standards Building Type + Elec/MechRoom; !- Standards Space Type + +OS:Rendering:Color, + {09cc0a44-bde3-4ae8-97d5-6973b620eb23}, !- Handle + Rendering Color 21, !- Name + 41, !- Rendering Red Value + 31, !- Rendering Green Value + 169; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {4390b43b-ded0-461f-b061-f042bc13f91f}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ4-8 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + , !- Number of People Schedule Name + , !- People Activity Level Schedule Name + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name + {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {0d6e7075-d80b-44ae-9ee6-0b2ad52b1548}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ4-8 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 14.5312790625581, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {d0fd0a9a-f35d-4f92-b9b5-cc437f048b81}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ4-8 Lights, !- Name + {0d6e7075-d80b-44ae-9ee6-0b2ad52b1548}, !- Lights Definition Name + {ae0eddf0-a1d4-45c0-89c1-4f32cd232444}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {1fbee130-5b8b-41c4-b2e5-a35b678e1a1c}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ4-8 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:SpaceInfiltration:DesignFlowRate, + {5886568b-d637-4e9b-b7c1-0d6b0bcc8fc9}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ4-8 Infiltration, !- Name + {ae0eddf0-a1d4-45c0-89c1-4f32cd232444}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {08047a8f-2dc9-4514-aa3a-dcd71c961969}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ4-8 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 2.90625581251162, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {2d527502-0ea9-4d22-9420-1faee6f46df3}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ4-8 Electric Equipment, !- Name + {08047a8f-2dc9-4514-aa3a-dcd71c961969}, !- Electric Equipment Definition Name + {ae0eddf0-a1d4-45c0-89c1-4f32cd232444}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {bc8bbc76-ab44-4992-ad1d-80d2dbc7e77e}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ4-8 Thermostat, !- Name + {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name + {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {25788573-0369-4919-952e-9f4a8d287a07}, !- Handle + 189.1-2009 - Office - IT_Room - CZ4-8, !- Name + , !- Default Construction Set Name + {a77ae8b7-4aa2-41f7-b5a6-8856ba6e1aa9}, !- Default Schedule Set Name + {03a758bb-e62a-48b9-97b4-e7c9725503de}, !- Group Rendering Name + {c78ecc49-33c1-4baa-8f4a-3a3d4e3253e7}, !- Design Specification Outdoor Air Object Name + Office, !- Standards Building Type + IT_Room; !- Standards Space Type + +OS:Rendering:Color, + {03a758bb-e62a-48b9-97b4-e7c9725503de}, !- Handle + Rendering Color 22, !- Name + 41, !- Rendering Red Value + 31, !- Rendering Green Value + 169; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {a77ae8b7-4aa2-41f7-b5a6-8856ba6e1aa9}, !- Handle + 189.1-2009 - Office - IT_Room - CZ4-8 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name + {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name + {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {b22a9e34-087b-427c-b758-a0124a25cdc5}, !- Handle + 189.1-2009 - Office - IT_Room - CZ4-8 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.6562713125426, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {9d45cbfa-f2ce-4490-bfe6-9ea2b0ef403d}, !- Handle + 189.1-2009 - Office - IT_Room - CZ4-8 Lights, !- Name + {b22a9e34-087b-427c-b758-a0124a25cdc5}, !- Lights Definition Name + {25788573-0369-4919-952e-9f4a8d287a07}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {c78ecc49-33c1-4baa-8f4a-3a3d4e3253e7}, !- Handle + 189.1-2009 - Office - IT_Room - CZ4-8 Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {a0c943ca-3fd3-4a76-8558-4194a944b98d}, !- Handle + 189.1-2009 - Office - IT_Room - CZ4-8 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0538195520835486, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {0e12ef15-0acb-4a55-95a0-2260cf7ad1a8}, !- Handle + 189.1-2009 - Office - IT_Room - CZ4-8 People, !- Name + {a0c943ca-3fd3-4a76-8558-4194a944b98d}, !- People Definition Name + {25788573-0369-4919-952e-9f4a8d287a07}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {06f80535-6c1b-4be5-8e24-e2f246b425c8}, !- Handle + 189.1-2009 - Office - IT_Room - CZ4-8 Infiltration, !- Name + {25788573-0369-4919-952e-9f4a8d287a07}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {75c6e605-824f-4e54-8dd0-f27abb35f641}, !- Handle + 189.1-2009 - Office - IT_Room - CZ4-8 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 16.7917002500672, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {23c00582-f748-4c1b-916b-1fa5c7686d7d}, !- Handle + 189.1-2009 - Office - IT_Room - CZ4-8 Electric Equipment, !- Name + {75c6e605-824f-4e54-8dd0-f27abb35f641}, !- Electric Equipment Definition Name + {25788573-0369-4919-952e-9f4a8d287a07}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {d067df76-cf76-4cf6-aa35-0cbb12b8656a}, !- Handle + 189.1-2009 - Office - IT_Room - CZ4-8 Thermostat, !- Name + {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name + {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {12b0b8db-f33b-4234-a2c9-ba750ae671ef}, !- Handle + 189.1-2009 - Office - Lobby - CZ4-8, !- Name + , !- Default Construction Set Name + {69f043ea-7f0a-4f57-a9b9-d557929fc49e}, !- Default Schedule Set Name + {74dc8dad-959b-491c-a50a-9af6ecd0a669}, !- Group Rendering Name + {dbdfd940-1c36-4bd0-afb4-880a785c5e6f}, !- Design Specification Outdoor Air Object Name + Office, !- Standards Building Type + Lobby; !- Standards Space Type + +OS:Rendering:Color, + {74dc8dad-959b-491c-a50a-9af6ecd0a669}, !- Handle + Rendering Color 23, !- Name + 230, !- Rendering Red Value + 157, !- Rendering Green Value + 120; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {69f043ea-7f0a-4f57-a9b9-d557929fc49e}, !- Handle + 189.1-2009 - Office - Lobby - CZ4-8 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name + {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name + {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {f8e9e766-9250-4cfa-86f6-1216a4564dfb}, !- Handle + 189.1-2009 - Office - Lobby - CZ4-8 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 12.5937751875504, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {44ac18e1-7275-4b3a-b218-7e2e176f1a73}, !- Handle + 189.1-2009 - Office - Lobby - CZ4-8 Lights, !- Name + {f8e9e766-9250-4cfa-86f6-1216a4564dfb}, !- Lights Definition Name + {12b0b8db-f33b-4234-a2c9-ba750ae671ef}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {dbdfd940-1c36-4bd0-afb4-880a785c5e6f}, !- Handle + 189.1-2009 - Office - Lobby - CZ4-8 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.007079211648, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {7e4b36df-78b6-45fb-a861-8e35ddce0df9}, !- Handle + 189.1-2009 - Office - Lobby - CZ4-8 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.107639104167097, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {d1894ae1-fe0a-4638-8df5-d20ee93f1533}, !- Handle + 189.1-2009 - Office - Lobby - CZ4-8 People, !- Name + {7e4b36df-78b6-45fb-a861-8e35ddce0df9}, !- People Definition Name + {12b0b8db-f33b-4234-a2c9-ba750ae671ef}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {d815095f-6e93-44e7-9812-f55b6c2aef2e}, !- Handle + 189.1-2009 - Office - Lobby - CZ4-8 Infiltration, !- Name + {12b0b8db-f33b-4234-a2c9-ba750ae671ef}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {e8a069db-d0db-4d2f-8265-790a7831bafa}, !- Handle + 189.1-2009 - Office - Lobby - CZ4-8 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 0.753473729169681, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {24778cfb-5eee-4ddc-902b-a11bb0bfef66}, !- Handle + 189.1-2009 - Office - Lobby - CZ4-8 Electric Equipment, !- Name + {e8a069db-d0db-4d2f-8265-790a7831bafa}, !- Electric Equipment Definition Name + {12b0b8db-f33b-4234-a2c9-ba750ae671ef}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {3fabcd0e-e1a5-4e00-9e23-9e19d5c555d9}, !- Handle + 189.1-2009 - Office - Lobby - CZ4-8 Thermostat, !- Name + {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name + {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {ad9972e4-489e-404e-841e-c9bbd72d0111}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ4-8, !- Name + , !- Default Construction Set Name + {67cfc28b-9f66-4e18-8b2c-25a2ff33fd11}, !- Default Schedule Set Name + {ede0a72d-692f-411e-898f-ccb1f783c262}, !- Group Rendering Name + {f4a649b7-7f7c-4bc5-9b02-e4e1aa4803e9}, !- Design Specification Outdoor Air Object Name + Office, !- Standards Building Type + OpenOffice; !- Standards Space Type + +OS:Rendering:Color, + {ede0a72d-692f-411e-898f-ccb1f783c262}, !- Handle + Rendering Color 24, !- Name + 120, !- Rendering Red Value + 230, !- Rendering Green Value + 199; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {67cfc28b-9f66-4e18-8b2c-25a2ff33fd11}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ4-8 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {3f7fc9e5-6ce2-4b91-9fc6-85d1867c2216}, !- Number of People Schedule Name + {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name + {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {18a52544-7daa-4972-9e7f-9e27c5a4cd66}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ4-8 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.6562713125426, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {a396c5cc-c22f-42c9-be8e-af3d54d54456}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ4-8 Lights, !- Name + {18a52544-7daa-4972-9e7f-9e27c5a4cd66}, !- Lights Definition Name + {ad9972e4-489e-404e-841e-c9bbd72d0111}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {f4a649b7-7f7c-4bc5-9b02-e4e1aa4803e9}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ4-8 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {22b512ed-ce73-4779-9d6d-34a5d817a868}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ4-8 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.056510529687726, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {6b5422a3-490d-4e08-a37c-480ec55d22f6}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ4-8 People, !- Name + {22b512ed-ce73-4779-9d6d-34a5d817a868}, !- People Definition Name + {ad9972e4-489e-404e-841e-c9bbd72d0111}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {9f99f28a-55da-49b7-9354-17ccfd3b33e0}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ4-8 Infiltration, !- Name + {ad9972e4-489e-404e-841e-c9bbd72d0111}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {95fc5eef-d77d-4616-917f-974b5dabab66}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ4-8 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 7.6423763958639, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {8470e1c3-c0bc-4712-81bc-3382735de5cb}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ4-8 Electric Equipment, !- Name + {95fc5eef-d77d-4616-917f-974b5dabab66}, !- Electric Equipment Definition Name + {ad9972e4-489e-404e-841e-c9bbd72d0111}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {847f379b-0ddb-4308-a125-44b06cceb0c0}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ4-8 Thermostat, !- Name + {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name + {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {af24e503-88ef-4f50-95c1-1d393388f2d4}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ4-8, !- Name + , !- Default Construction Set Name + {01dc8eb4-a4fa-4aaf-8d75-b7cfd75648a4}, !- Default Schedule Set Name + {b7fe6f07-3ac4-4ca1-9186-5c7889d7b3da}, !- Group Rendering Name + {6c78e848-e562-4461-b538-4e3e3c4e848c}, !- Design Specification Outdoor Air Object Name + Office, !- Standards Building Type + PrintRoom; !- Standards Space Type + +OS:Rendering:Color, + {b7fe6f07-3ac4-4ca1-9186-5c7889d7b3da}, !- Handle + Rendering Color 25, !- Name + 41, !- Rendering Red Value + 31, !- Rendering Green Value + 169; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {01dc8eb4-a4fa-4aaf-8d75-b7cfd75648a4}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ4-8 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name + {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name + {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {abbc193f-2c53-49ff-8e03-589edefce026}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ4-8 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.6562713125426, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {c7396387-ee02-4cbd-bb73-db5af92230bf}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ4-8 Lights, !- Name + {abbc193f-2c53-49ff-8e03-589edefce026}, !- Lights Definition Name + {af24e503-88ef-4f50-95c1-1d393388f2d4}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {6c78e848-e562-4461-b538-4e3e3c4e848c}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ4-8 Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {4cbb660a-8380-44eb-bc35-245838f929e8}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ4-8 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.107639104167097, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {89b76b4c-73be-47ed-9bf0-d29a5d09beee}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ4-8 People, !- Name + {4cbb660a-8380-44eb-bc35-245838f929e8}, !- People Definition Name + {af24e503-88ef-4f50-95c1-1d393388f2d4}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {68e0ada3-23ed-42e8-881a-ad68ae78ba59}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ4-8 Infiltration, !- Name + {af24e503-88ef-4f50-95c1-1d393388f2d4}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {cd6a7fd7-b08c-4cbb-9ce5-8ddc886a6124}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ4-8 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 30.0313100626201, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {47ea6833-7452-423c-b11a-cdcdc6e894f7}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ4-8 Electric Equipment, !- Name + {cd6a7fd7-b08c-4cbb-9ce5-8ddc886a6124}, !- Electric Equipment Definition Name + {af24e503-88ef-4f50-95c1-1d393388f2d4}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {9a24efdb-aaf9-4caf-8ef9-e063f557395c}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ4-8 Thermostat, !- Name + {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name + {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {8bff2199-45e8-4a71-b5fd-ede3fae4f6ff}, !- Handle + 189.1-2009 - Office - Restroom - CZ4-8, !- Name + , !- Default Construction Set Name + {e66e0cc6-efb5-4211-818f-1431a0e70233}, !- Default Schedule Set Name + {719a1449-7853-4161-927b-bdb7f01806ed}, !- Group Rendering Name + {1aeb672d-5c17-4118-b3f0-dfbc58007e1f}, !- Design Specification Outdoor Air Object Name + Office, !- Standards Building Type + Restroom; !- Standards Space Type + +OS:Rendering:Color, + {719a1449-7853-4161-927b-bdb7f01806ed}, !- Handle + Rendering Color 26, !- Name + 169, !- Rendering Red Value + 169, !- Rendering Green Value + 31; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {e66e0cc6-efb5-4211-818f-1431a0e70233}, !- Handle + 189.1-2009 - Office - Restroom - CZ4-8 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name + {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name + {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {d607f8dd-35e4-4a28-bcbe-31e09c118ae0}, !- Handle + 189.1-2009 - Office - Restroom - CZ4-8 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 8.71876743753488, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {369dc730-3d03-40c8-8ea1-7783c58a58ef}, !- Handle + 189.1-2009 - Office - Restroom - CZ4-8 Lights, !- Name + {d607f8dd-35e4-4a28-bcbe-31e09c118ae0}, !- Lights Definition Name + {8bff2199-45e8-4a71-b5fd-ede3fae4f6ff}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {1aeb672d-5c17-4118-b3f0-dfbc58007e1f}, !- Handle + 189.1-2009 - Office - Restroom - CZ4-8 Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.0048768, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {8e492d6d-50ee-4026-a23a-6327d28aa1a3}, !- Handle + 189.1-2009 - Office - Restroom - CZ4-8 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.107639104167097, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {de991af8-6b18-4490-9be9-307feba43cd2}, !- Handle + 189.1-2009 - Office - Restroom - CZ4-8 People, !- Name + {8e492d6d-50ee-4026-a23a-6327d28aa1a3}, !- People Definition Name + {8bff2199-45e8-4a71-b5fd-ede3fae4f6ff}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {efad6973-728f-404e-84ce-bf89300a55cd}, !- Handle + 189.1-2009 - Office - Restroom - CZ4-8 Infiltration, !- Name + {8bff2199-45e8-4a71-b5fd-ede3fae4f6ff}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {c817a3b9-a026-4a06-82cf-32d30b4ef116}, !- Handle + 189.1-2009 - Office - Restroom - CZ4-8 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 0.753473729169681, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {36815876-83bd-4fa7-ad65-9cfc31a60c5d}, !- Handle + 189.1-2009 - Office - Restroom - CZ4-8 Electric Equipment, !- Name + {c817a3b9-a026-4a06-82cf-32d30b4ef116}, !- Electric Equipment Definition Name + {8bff2199-45e8-4a71-b5fd-ede3fae4f6ff}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {ec97771e-4971-46b0-91e9-3785d44f364f}, !- Handle + 189.1-2009 - Office - Restroom - CZ4-8 Thermostat, !- Name + {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name + {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {6cfd0d19-c82c-444b-b844-b898e9ccb38b}, !- Handle + 189.1-2009 - Office - Stair - CZ4-8, !- Name + , !- Default Construction Set Name + {1d7040c9-cc51-49e9-bced-99919b77079e}, !- Default Schedule Set Name + {6f557e2a-06b2-4e96-bd62-f7b1f6d0b22c}, !- Group Rendering Name + {06eb26bf-daae-4d7b-802f-f14f4973bffc}, !- Design Specification Outdoor Air Object Name + Office, !- Standards Building Type + Stair; !- Standards Space Type + +OS:Rendering:Color, + {6f557e2a-06b2-4e96-bd62-f7b1f6d0b22c}, !- Handle + Rendering Color 27, !- Name + 230, !- Rendering Red Value + 157, !- Rendering Green Value + 120; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {1d7040c9-cc51-49e9-bced-99919b77079e}, !- Handle + 189.1-2009 - Office - Stair - CZ4-8 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + , !- Number of People Schedule Name + , !- People Activity Level Schedule Name + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name + , !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {2783b7ad-e79e-4709-93a0-76d9b15480cb}, !- Handle + 189.1-2009 - Office - Stair - CZ4-8 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 5.81251162502325, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {086e0aa7-9716-40a1-ad9a-9e539b32999b}, !- Handle + 189.1-2009 - Office - Stair - CZ4-8 Lights, !- Name + {2783b7ad-e79e-4709-93a0-76d9b15480cb}, !- Lights Definition Name + {6cfd0d19-c82c-444b-b844-b898e9ccb38b}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {06eb26bf-daae-4d7b-802f-f14f4973bffc}, !- Handle + 189.1-2009 - Office - Stair - CZ4-8 Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:SpaceInfiltration:DesignFlowRate, + {2584ae7a-711d-473c-96df-a3bb8f824179}, !- Handle + 189.1-2009 - Office - Stair - CZ4-8 Infiltration, !- Name + {6cfd0d19-c82c-444b-b844-b898e9ccb38b}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ThermostatSetpoint:DualSetpoint, + {e23342a6-14bf-4244-a12e-b8f3f6c04563}, !- Handle + 189.1-2009 - Office - Stair - CZ4-8 Thermostat, !- Name + {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name + {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {d0c52a2e-468a-4dde-bcb0-4952606e371d}, !- Handle + 189.1-2009 - Office - Storage - CZ4-8, !- Name + , !- Default Construction Set Name + {67b9c134-6af2-4034-8be9-99c918290f72}, !- Default Schedule Set Name + {e5e5daee-9c0f-481c-8a95-52831d130704}, !- Group Rendering Name + {891b5948-4e38-4554-a2f6-43f94ec5ae02}, !- Design Specification Outdoor Air Object Name + Office, !- Standards Building Type + Storage; !- Standards Space Type + +OS:Rendering:Color, + {e5e5daee-9c0f-481c-8a95-52831d130704}, !- Handle + Rendering Color 28, !- Name + 120, !- Rendering Red Value + 149, !- Rendering Green Value + 230; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {67b9c134-6af2-4034-8be9-99c918290f72}, !- Handle + 189.1-2009 - Office - Storage - CZ4-8 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + , !- Number of People Schedule Name + , !- People Activity Level Schedule Name + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name + , !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {a3530ea6-39e7-4538-9866-287cb9025bf1}, !- Handle + 189.1-2009 - Office - Storage - CZ4-8 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.750015500031, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {f096f7ac-09c0-4f85-8905-690dca9182e1}, !- Handle + 189.1-2009 - Office - Storage - CZ4-8 Lights, !- Name + {a3530ea6-39e7-4538-9866-287cb9025bf1}, !- Lights Definition Name + {d0c52a2e-468a-4dde-bcb0-4952606e371d}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {891b5948-4e38-4554-a2f6-43f94ec5ae02}, !- Handle + 189.1-2009 - Office - Storage - CZ4-8 Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:SpaceInfiltration:DesignFlowRate, + {a7ac93a3-1fc2-4daa-82df-d9b5ba2a505e}, !- Handle + 189.1-2009 - Office - Storage - CZ4-8 Infiltration, !- Name + {d0c52a2e-468a-4dde-bcb0-4952606e371d}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ThermostatSetpoint:DualSetpoint, + {6ae2b2b8-720b-4eaf-8895-80b1f0753cad}, !- Handle + 189.1-2009 - Office - Storage - CZ4-8 Thermostat, !- Name + {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name + {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {badb4787-4e03-483b-a5d9-81df836430d2}, !- Handle + 189.1-2009 - Office - Vending - CZ4-8, !- Name + , !- Default Construction Set Name + {6dfba6f2-b96a-492d-b774-c4c720d68d2b}, !- Default Schedule Set Name + {76d6f7c9-7ceb-45e9-8a19-835ab84a952b}, !- Group Rendering Name + {0f1e8aef-c843-4ab6-b548-4c72c5fef55a}, !- Design Specification Outdoor Air Object Name + Office, !- Standards Building Type + Vending; !- Standards Space Type + +OS:Rendering:Color, + {76d6f7c9-7ceb-45e9-8a19-835ab84a952b}, !- Handle + Rendering Color 29, !- Name + 230, !- Rendering Red Value + 157, !- Rendering Green Value + 120; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {6dfba6f2-b96a-492d-b774-c4c720d68d2b}, !- Handle + 189.1-2009 - Office - Vending - CZ4-8 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name + {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name + {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {d8b3e03e-2d32-4c27-b42a-dd840c225670}, !- Handle + 189.1-2009 - Office - Vending - CZ4-8 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 4.84375968751938, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {40216c47-a5be-4b81-9ebe-654734752677}, !- Handle + 189.1-2009 - Office - Vending - CZ4-8 Lights, !- Name + {d8b3e03e-2d32-4c27-b42a-dd840c225670}, !- Lights Definition Name + {badb4787-4e03-483b-a5d9-81df836430d2}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {0f1e8aef-c843-4ab6-b548-4c72c5fef55a}, !- Handle + 189.1-2009 - Office - Vending - CZ4-8 Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {f760ff07-53a3-4162-8890-9d0990ffc17f}, !- Handle + 189.1-2009 - Office - Vending - CZ4-8 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0107639104167097, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {281a8e29-5aab-4167-83d6-3d9fe2313cd8}, !- Handle + 189.1-2009 - Office - Vending - CZ4-8 People, !- Name + {f760ff07-53a3-4162-8890-9d0990ffc17f}, !- People Definition Name + {badb4787-4e03-483b-a5d9-81df836430d2}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {b9453158-d790-4fab-b5ae-0e40fc0505ce}, !- Handle + 189.1-2009 - Office - Vending - CZ4-8 Infiltration, !- Name + {badb4787-4e03-483b-a5d9-81df836430d2}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {bbac7541-8a86-4bd8-963a-8f9a28f77e61}, !- Handle + 189.1-2009 - Office - Vending - CZ4-8 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 41.4410551043324, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {eddb3a2b-a77b-4511-9cb5-b14f74a42d15}, !- Handle + 189.1-2009 - Office - Vending - CZ4-8 Electric Equipment, !- Name + {bbac7541-8a86-4bd8-963a-8f9a28f77e61}, !- Electric Equipment Definition Name + {badb4787-4e03-483b-a5d9-81df836430d2}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {6c78a447-312c-4c28-b3aa-6da71f9cf8d3}, !- Handle + 189.1-2009 - Office - Vending - CZ4-8 Thermostat, !- Name + {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name + {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {968bcc4c-fd98-438b-b61b-5f81da1d8956}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8, !- Name + , !- Default Construction Set Name + {b9bfde29-315f-4eb8-bf9a-46a78dff4fac}, !- Default Schedule Set Name + {a76d196b-e761-4493-8631-b48b5e34c13c}, !- Group Rendering Name + {243951cc-1d54-4682-88de-92f00facb5d4}, !- Design Specification Outdoor Air Object Name + Office, !- Standards Building Type + WholeBuilding - Lg Office; !- Standards Space Type + +OS:Rendering:Color, + {a76d196b-e761-4493-8631-b48b5e34c13c}, !- Handle + Rendering Color 30, !- Name + 120, !- Rendering Red Value + 230, !- Rendering Green Value + 199; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {b9bfde29-315f-4eb8-bf9a-46a78dff4fac}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {ee654552-7290-4128-a647-073eff68ebb6}, !- Number of People Schedule Name + {264acba7-523a-484e-8e51-ae85870ba167}, !- People Activity Level Schedule Name + {3ce9efa4-e219-47f8-a14a-7affd9c11d70}, !- Lighting Schedule Name + {6197bef3-80c6-4043-b8a4-b9cd96652248}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {e0eb0ae2-9b39-46b2-b9f9-f7879620c44e}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {aa22ac73-8979-4986-b736-acbd0777b85c}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.68751937503875, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {b303525b-5f5d-4c4d-b9b8-65dd3f84b284}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 Lights, !- Name + {aa22ac73-8979-4986-b736-acbd0777b85c}, !- Lights Definition Name + {968bcc4c-fd98-438b-b61b-5f81da1d8956}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {243951cc-1d54-4682-88de-92f00facb5d4}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {9d7eb10a-2add-4a6a-a03e-056a6b1ae96b}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0538195520835486, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {03f6b94b-31fa-4bf8-8d80-15daaf19f543}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 People, !- Name + {9d7eb10a-2add-4a6a-a03e-056a6b1ae96b}, !- People Definition Name + {968bcc4c-fd98-438b-b61b-5f81da1d8956}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {78e4e1af-4f99-4e7e-a352-e31956fd36bf}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 Infiltration, !- Name + {968bcc4c-fd98-438b-b61b-5f81da1d8956}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {76753a4b-a553-4dd0-802b-90b0d1a1d966}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 5.81251412763851, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {2b65f72d-8ebb-4261-9f95-737986f7c212}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 Electric Equipment, !- Name + {76753a4b-a553-4dd0-802b-90b0d1a1d966}, !- Electric Equipment Definition Name + {968bcc4c-fd98-438b-b61b-5f81da1d8956}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {2829a6a3-d557-49c2-883a-6f3c5888d3dc}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 Thermostat, !- Name + {e1c00ef5-f530-4453-a67b-ca54f0ae084f}, !- Heating Setpoint Temperature Schedule Name + {205b7ba7-36bf-4caa-b304-f7da82550d15}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {e43c6330-829b-403f-9ef7-6b119710b699}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8, !- Name + , !- Default Construction Set Name + {172a4339-c515-4808-9bf0-cd607a6b94aa}, !- Default Schedule Set Name + {d962ce0f-1f09-4520-8086-d251309638ff}, !- Group Rendering Name + {3157c89d-76b6-49f9-b874-c887b361d5a2}, !- Design Specification Outdoor Air Object Name + Office, !- Standards Building Type + WholeBuilding - Md Office; !- Standards Space Type + +OS:Rendering:Color, + {d962ce0f-1f09-4520-8086-d251309638ff}, !- Handle + Rendering Color 31, !- Name + 120, !- Rendering Red Value + 230, !- Rendering Green Value + 199; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {172a4339-c515-4808-9bf0-cd607a6b94aa}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {c46af6b1-d997-440b-a480-2b785127791c}, !- Number of People Schedule Name + {4401923f-7369-4704-af97-5f02eccc07c4}, !- People Activity Level Schedule Name + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name + {e7df833e-4db6-469d-ad96-14b52ff0ceef}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {4b35ab56-cec3-45c0-bd82-7c7c88e72873}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {dfa9825e-f1b4-468b-b1e4-5c934b4e8532}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.68751937503875, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {3f8dcdaf-a8d7-44f4-9031-8174616a0a98}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 Lights, !- Name + {dfa9825e-f1b4-468b-b1e4-5c934b4e8532}, !- Lights Definition Name + {e43c6330-829b-403f-9ef7-6b119710b699}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {3157c89d-76b6-49f9-b874-c887b361d5a2}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {795edcf3-25aa-491d-a678-58d2ca199b9b}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0538195520835486, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {3c49975f-c212-45d2-acc5-def109da8abd}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 People, !- Name + {795edcf3-25aa-491d-a678-58d2ca199b9b}, !- People Definition Name + {e43c6330-829b-403f-9ef7-6b119710b699}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {df024ec1-be72-4029-a6ce-a7a769ef9e4d}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 Infiltration, !- Name + {e43c6330-829b-403f-9ef7-6b119710b699}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {538b53f1-6409-45f7-aab7-31348cfbeb43}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 5.81251162502325, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {d39e66d5-58ca-4811-aff8-b5c8352cd6ce}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 Electric Equipment, !- Name + {538b53f1-6409-45f7-aab7-31348cfbeb43}, !- Electric Equipment Definition Name + {e43c6330-829b-403f-9ef7-6b119710b699}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {125be356-b9df-4681-bbaa-d4c8cacde878}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 Thermostat, !- Name + {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name + {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {af544d5a-8953-43ac-a2f2-b7ebb1e82e3a}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8, !- Name + , !- Default Construction Set Name + {6784963e-ba4d-4175-87dd-b5831f929d87}, !- Default Schedule Set Name + {2fd05332-007b-4350-8fd3-4733ddca3f69}, !- Group Rendering Name + {22c007c1-ce62-40f2-8ab0-14c6a644baf2}, !- Design Specification Outdoor Air Object Name + Office, !- Standards Building Type + WholeBuilding - Sm Office; !- Standards Space Type + +OS:Rendering:Color, + {2fd05332-007b-4350-8fd3-4733ddca3f69}, !- Handle + Rendering Color 32, !- Name + 120, !- Rendering Red Value + 230, !- Rendering Green Value + 199; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {6784963e-ba4d-4175-87dd-b5831f929d87}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {7db91015-b01f-42c8-b02c-a13d4ed39198}, !- Number of People Schedule Name + {67a55331-2096-4c9b-981a-b63f113d0dd9}, !- People Activity Level Schedule Name + {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name + {a51b8fe3-0466-410b-a880-21be07500a52}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {cb7cb752-a33a-400e-97f3-836bf023796e}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {c5b24316-59b0-434d-bbd1-d9024a57a7f8}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.68751937503875, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {ee01b7ab-7d60-4088-8e4b-98136df7f22f}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 Lights, !- Name + {c5b24316-59b0-434d-bbd1-d9024a57a7f8}, !- Lights Definition Name + {af544d5a-8953-43ac-a2f2-b7ebb1e82e3a}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {22c007c1-ce62-40f2-8ab0-14c6a644baf2}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {c97216c8-66f4-458c-95f4-2ede85764002}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0538195520835486, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {adf7594e-c7bc-44e3-8611-369b76c12e69}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 People, !- Name + {c97216c8-66f4-458c-95f4-2ede85764002}, !- People Definition Name + {af544d5a-8953-43ac-a2f2-b7ebb1e82e3a}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {181313d1-1146-4ec1-a3a2-fbbeceebc667}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 Infiltration, !- Name + {af544d5a-8953-43ac-a2f2-b7ebb1e82e3a}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {f65d6b4d-82ed-4ebf-bc2d-60f944322d6e}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 5.81251162502325, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {b623d4f8-3118-49ac-bc0d-3c98d880b97c}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 Electric Equipment, !- Name + {f65d6b4d-82ed-4ebf-bc2d-60f944322d6e}, !- Electric Equipment Definition Name + {af544d5a-8953-43ac-a2f2-b7ebb1e82e3a}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {7d3d60df-38bd-402a-8cc6-cb780862d808}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 Thermostat, !- Name + {a8fc5971-56bf-485f-a8b6-fc00357a220a}, !- Heating Setpoint Temperature Schedule Name + {8334d03b-d787-4c01-a860-2e97c980572e}; !- Cooling Setpoint Temperature Schedule Name + +OS:DefaultConstructionSet, + {4526526b-2bc4-45b3-b597-da3d92ad09a1}, !- Handle + 189.1-2009 - CZ1 - Office, !- Name + {94698301-6b84-4a6f-8b78-75bca600fb17}, !- Default Exterior Surface Constructions Name + {30976b66-935b-4753-a4c5-4dde3dad9985}, !- Default Interior Surface Constructions Name + {a0baf7b0-7330-421a-9c8c-7addd1712d20}, !- Default Ground Contact Surface Constructions Name + {8c8dde84-fcf4-4c1e-ace0-a8bff3aee1ab}, !- Default Exterior SubSurface Constructions Name + {af21604d-d2d4-48d6-ad7c-2a2dbef9e849}, !- Default Interior SubSurface Constructions Name + {ead91c2f-4359-42f5-b36e-9a36c9253598}, !- Interior Partition Construction Name + , !- Space Shading Construction Name + , !- Building Shading Construction Name + ; !- Site Shading Construction Name + +OS:DefaultSurfaceConstructions, + {94698301-6b84-4a6f-8b78-75bca600fb17}, !- Handle + Default Surface Constructions 1, !- Name + {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name + {c79253de-386e-46f7-8631-b7bc0fd326fd}, !- Wall Construction Name + {94f9c7d5-7c2c-4130-9083-b2afb613c345}; !- Roof Ceiling Construction Name + +OS:Construction, + {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Handle + ExtSlabCarpet 4in ClimateZone 1-8, !- Name + {46dc58c7-b8ea-415a-8606-35a0b11fe039}, !- Surface Rendering Name + {b0084fcb-96e4-4ea6-8b82-68ce2789bc5d}, !- Layer 1 + {778222fb-2d70-4bd3-87aa-e0e7025f46d9}; !- Layer 2 + +OS:StandardsInformation:Construction, + {be48e1b7-5a23-4b52-b581-d47874f332d0}, !- Handle + {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Construction Name + ExteriorFloor, !- Intended Surface Type + ; !- Standards Construction Type + +OS:Material, + {b0084fcb-96e4-4ea6-8b82-68ce2789bc5d}, !- Handle + MAT-CC05 4 HW CONCRETE, !- Name + Rough, !- Roughness + 0.1016, !- Thickness {m} + 1.311, !- Conductivity {W/m-K} + 2240, !- Density {kg/m3} + 836.800000000001, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.85, !- Solar Absorptance + 0.85; !- Visible Absorptance + +OS:Material:NoMass, + {778222fb-2d70-4bd3-87aa-e0e7025f46d9}, !- Handle + CP02 CARPET PAD, !- Name + Smooth, !- Roughness + 0.1, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.8, !- Solar Absorptance + 0.8; !- Visible Absorptance + +OS:Construction, + {c79253de-386e-46f7-8631-b7bc0fd326fd}, !- Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 1, !- Name + {636bc1bd-3423-4cbd-a7ac-cd596f301582}, !- Surface Rendering Name + {56962c43-17db-4226-8ddc-220e96c9d631}, !- Layer 1 + {4cc6a40e-03a3-48aa-95cb-72a4e9afb846}, !- Layer 2 + {35df83f0-9c9a-4bd0-867b-e4f56f2d21e0}, !- Layer 3 + {b6d8e415-7411-437a-ac2c-78a8b90db9d2}; !- Layer 4 + +OS:StandardsInformation:Construction, + {c35bdbe1-9364-40c4-a088-3593de04f1fd}, !- Handle + {c79253de-386e-46f7-8631-b7bc0fd326fd}, !- Construction Name + ExteriorWall, !- Intended Surface Type + Mass; !- Standards Construction Type + +OS:Material, + {56962c43-17db-4226-8ddc-220e96c9d631}, !- Handle + 1IN Stucco, !- Name + Smooth, !- Roughness + 0.0253, !- Thickness {m} + 0.691799999999999, !- Conductivity {W/m-K} + 1858, !- Density {kg/m3} + 836.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.92, !- Solar Absorptance + 0.92; !- Visible Absorptance + +OS:Material, + {4cc6a40e-03a3-48aa-95cb-72a4e9afb846}, !- Handle + 8IN Concrete HW, !- Name + MediumRough, !- Roughness + 0.2033, !- Thickness {m} + 1.72959999999999, !- Conductivity {W/m-K} + 2242.99999999999, !- Density {kg/m3} + 836.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.65, !- Solar Absorptance + 0.65; !- Visible Absorptance + +OS:Material, + {35df83f0-9c9a-4bd0-867b-e4f56f2d21e0}, !- Handle + Wall Insulation [31], !- Name + MediumRough, !- Roughness + 0.0337000000000001, !- Thickness {m} + 0.0432, !- Conductivity {W/m-K} + 91, !- Density {kg/m3} + 836.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.5, !- Solar Absorptance + 0.5; !- Visible Absorptance + +OS:Material, + {b6d8e415-7411-437a-ac2c-78a8b90db9d2}, !- Handle + 1/2IN Gypsum, !- Name + Smooth, !- Roughness + 0.0127, !- Thickness {m} + 0.16, !- Conductivity {W/m-K} + 784.9, !- Density {kg/m3} + 830.000000000001, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.4, !- Solar Absorptance + 0.4; !- Visible Absorptance + +OS:Construction, + {94f9c7d5-7c2c-4130-9083-b2afb613c345}, !- Handle + ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 1, !- Name + {71ceef6d-12d0-4e82-89ca-e3101fac6664}, !- Surface Rendering Name + {6710a532-69d6-4fff-84fd-c78074630b20}, !- Layer 1 + {87585ab0-524e-4577-85fa-ca9d328a544b}, !- Layer 2 + {14035dbf-33ad-4b63-a0f4-bc09dc3e2743}; !- Layer 3 + +OS:StandardsInformation:Construction, + {8077a8bc-469c-4708-9d1e-1a587be91ef0}, !- Handle + {94f9c7d5-7c2c-4130-9083-b2afb613c345}, !- Construction Name + ExteriorRoof, !- Intended Surface Type + IEAD; !- Standards Construction Type + +OS:Material, + {6710a532-69d6-4fff-84fd-c78074630b20}, !- Handle + Roof Membrane, !- Name + VeryRough, !- Roughness + 0.0095, !- Thickness {m} + 0.16, !- Conductivity {W/m-K} + 1121.29, !- Density {kg/m3} + 1460, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material, + {87585ab0-524e-4577-85fa-ca9d328a544b}, !- Handle + Roof Insulation [18], !- Name + MediumRough, !- Roughness + 0.1693, !- Thickness {m} + 0.049, !- Conductivity {W/m-K} + 265, !- Density {kg/m3} + 836.800000000001, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material, + {14035dbf-33ad-4b63-a0f4-bc09dc3e2743}, !- Handle + Metal Decking, !- Name + MediumSmooth, !- Roughness + 0.0015, !- Thickness {m} + 45.006, !- Conductivity {W/m-K} + 7680, !- Density {kg/m3} + 418.4, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.6, !- Solar Absorptance + 0.6; !- Visible Absorptance + +OS:DefaultSurfaceConstructions, + {30976b66-935b-4753-a4c5-4dde3dad9985}, !- Handle + Default Surface Constructions 2, !- Name + {4ee71df9-85c1-4a24-9be8-bee433f9e015}, !- Floor Construction Name + {7ea68359-ad75-4d6c-8862-e2965b9ee3ab}, !- Wall Construction Name + {edd9ecd3-4290-4d56-b5a9-ef02bf102418}; !- Roof Ceiling Construction Name + +OS:Construction, + {4ee71df9-85c1-4a24-9be8-bee433f9e015}, !- Handle + Interior Floor, !- Name + {04a70558-9b0a-4809-8c15-d7f1882136f8}, !- Surface Rendering Name + {9732ca82-5b07-4b63-b379-a76d13f9d0d2}, !- Layer 1 + {c7326da9-9b42-4f08-b9c2-710e29f1df68}, !- Layer 2 + {5b28cd98-6ada-46e3-ab5c-8ce18c82e2e4}; !- Layer 3 + +OS:StandardsInformation:Construction, + {663cbab6-e62e-4117-aefb-5a2c9b9cd1b3}, !- Handle + {4ee71df9-85c1-4a24-9be8-bee433f9e015}, !- Construction Name + InteriorFloor, !- Intended Surface Type + ; !- Standards Construction Type + +OS:Material, + {9732ca82-5b07-4b63-b379-a76d13f9d0d2}, !- Handle + F16 Acoustic tile, !- Name + MediumSmooth, !- Roughness + 0.0191, !- Thickness {m} + 0.06, !- Conductivity {W/m-K} + 368, !- Density {kg/m3} + 590.000000000002, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.3, !- Solar Absorptance + 0.3; !- Visible Absorptance + +OS:Material:AirGap, + {c7326da9-9b42-4f08-b9c2-710e29f1df68}, !- Handle + F05 Ceiling air space resistance, !- Name + 0.18; !- Thermal Resistance {m2-K/W} + +OS:Material, + {5b28cd98-6ada-46e3-ab5c-8ce18c82e2e4}, !- Handle + M11 100mm lightweight concrete, !- Name + MediumRough, !- Roughness + 0.1016, !- Thickness {m} + 0.53, !- Conductivity {W/m-K} + 1280, !- Density {kg/m3} + 840.000000000002, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.5, !- Solar Absorptance + 0.5; !- Visible Absorptance + +OS:Construction, + {7ea68359-ad75-4d6c-8862-e2965b9ee3ab}, !- Handle + Interior Wall, !- Name + {24055de0-4136-450a-bc8d-d8ee32c93212}, !- Surface Rendering Name + {2dde63ec-8c12-47e9-a694-a5c55907b2a7}, !- Layer 1 + {205d1797-4786-41aa-bb49-c62de03322d9}, !- Layer 2 + {2dde63ec-8c12-47e9-a694-a5c55907b2a7}; !- Layer 3 + +OS:StandardsInformation:Construction, + {bf9c6bdf-1d79-4160-843a-67a65bd63099}, !- Handle + {7ea68359-ad75-4d6c-8862-e2965b9ee3ab}, !- Construction Name + InteriorWall, !- Intended Surface Type + ; !- Standards Construction Type + +OS:Material, + {2dde63ec-8c12-47e9-a694-a5c55907b2a7}, !- Handle + G01a 19mm gypsum board, !- Name + MediumSmooth, !- Roughness + 0.019, !- Thickness {m} + 0.16, !- Conductivity {W/m-K} + 800, !- Density {kg/m3} + 1090, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.4, !- Solar Absorptance + 0.4; !- Visible Absorptance + +OS:Material:AirGap, + {205d1797-4786-41aa-bb49-c62de03322d9}, !- Handle + F04 Wall air space resistance, !- Name + 0.15; !- Thermal Resistance {m2-K/W} + +OS:Construction, + {edd9ecd3-4290-4d56-b5a9-ef02bf102418}, !- Handle + Interior Ceiling, !- Name + {778e8a0a-a11f-4cdc-b209-ca9fa58a7fd7}, !- Surface Rendering Name + {5b28cd98-6ada-46e3-ab5c-8ce18c82e2e4}, !- Layer 1 + {c7326da9-9b42-4f08-b9c2-710e29f1df68}, !- Layer 2 + {9732ca82-5b07-4b63-b379-a76d13f9d0d2}; !- Layer 3 + +OS:StandardsInformation:Construction, + {ebe3b12b-5ab0-4ea3-a460-6d15ad1d838c}, !- Handle + {edd9ecd3-4290-4d56-b5a9-ef02bf102418}, !- Construction Name + InteriorCeiling, !- Intended Surface Type + ; !- Standards Construction Type + +OS:DefaultSurfaceConstructions, + {a0baf7b0-7330-421a-9c8c-7addd1712d20}, !- Handle + Default Surface Constructions 3, !- Name + {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name + {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Wall Construction Name + {78a5e5c5-806e-400a-a800-196f73e1d063}; !- Roof Ceiling Construction Name + +OS:DefaultSubSurfaceConstructions, + {8c8dde84-fcf4-4c1e-ace0-a8bff3aee1ab}, !- Handle + Default Sub Surface Constructions 1, !- Name + {0644291c-bb2c-4d3e-8d12-d9bf784b59f3}, !- Fixed Window Construction Name + {0644291c-bb2c-4d3e-8d12-d9bf784b59f3}, !- Operable Window Construction Name + {f16a7fb7-d40d-43c5-9ad7-3bfe84654a03}, !- Door Construction Name + , !- Glass Door Construction Name + , !- Overhead Door Construction Name + , !- Skylight Construction Name + {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Tubular Daylight Dome Construction Name + {ae4fa780-ed05-42e8-925d-8cfdef96ee27}; !- Tubular Daylight Diffuser Construction Name + +OS:Construction, + {0644291c-bb2c-4d3e-8d12-d9bf784b59f3}, !- Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 1, !- Name + {c2c680d2-f325-40ed-95af-d91b806f1ec6}, !- Surface Rendering Name + {7504c39d-35b9-46a8-af6b-598ea9efbc00}; !- Layer 1 + +OS:StandardsInformation:Construction, + {2f79b030-385e-4a8e-9611-a6086da78f3b}, !- Handle + {0644291c-bb2c-4d3e-8d12-d9bf784b59f3}, !- Construction Name + ExteriorWindow, !- Intended Surface Type + ; !- Standards Construction Type + +OS:WindowMaterial:Glazing, + {7504c39d-35b9-46a8-af6b-598ea9efbc00}, !- Handle + Theoretical Glass [167], !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00299999999999999, !- Thickness {m} + 0.2374, !- Solar Transmittance at Normal Incidence + 0.7126, !- Front Side Solar Reflectance at Normal Incidence + 0, !- Back Side Solar Reflectance at Normal Incidence + 0.2512, !- Visible Transmittance at Normal Incidence + 0.6988, !- Front Side Visible Reflectance at Normal Incidence + 0, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.985, !- Front Side Infrared Hemispherical Emissivity + 0.985, !- Back Side Infrared Hemispherical Emissivity + 2.1073, !- Conductivity {W/m-K} + 1, !- Dirt Correction Factor for Solar and Visible Transmittance + No; !- Solar Diffusing + +OS:Construction, + {f16a7fb7-d40d-43c5-9ad7-3bfe84654a03}, !- Handle + Exterior Door, !- Name + {e86c4cfc-a78a-4674-ba86-da0778391d75}, !- Surface Rendering Name + {c6e9c62f-1f07-4a3e-9b2c-2831b69154d4}, !- Layer 1 + {ae918277-1c95-4bfe-88be-0a83ad1a7f17}; !- Layer 2 + +OS:StandardsInformation:Construction, + {8360869b-2b70-474f-bade-2c09b27cfba6}, !- Handle + {f16a7fb7-d40d-43c5-9ad7-3bfe84654a03}, !- Construction Name + ExteriorDoor, !- Intended Surface Type + ; !- Standards Construction Type + +OS:Material, + {c6e9c62f-1f07-4a3e-9b2c-2831b69154d4}, !- Handle + F08 Metal surface, !- Name + Smooth, !- Roughness + 0.0008, !- Thickness {m} + 45.2800000000001, !- Conductivity {W/m-K} + 7823.99999999999, !- Density {kg/m3} + 500, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material, + {ae918277-1c95-4bfe-88be-0a83ad1a7f17}, !- Handle + I01 25mm insulation board, !- Name + MediumRough, !- Roughness + 0.0254, !- Thickness {m} + 0.03, !- Conductivity {W/m-K} + 43, !- Density {kg/m3} + 1210, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.6, !- Solar Absorptance + 0.6; !- Visible Absorptance + +OS:Construction, + {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Handle + Interior Window, !- Name + {17a12f4b-94a3-4b11-aee4-8fdfaca5c4df}, !- Surface Rendering Name + {572356bb-0c24-49d0-b480-38deaae93b50}; !- Layer 1 + +OS:StandardsInformation:Construction, + {4fba2562-eb53-42df-a812-1a96a11e00db}, !- Handle + {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Construction Name + InteriorWindow, !- Intended Surface Type + ; !- Standards Construction Type + +OS:WindowMaterial:Glazing, + {572356bb-0c24-49d0-b480-38deaae93b50}, !- Handle + Clear 3mm, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00299999999999999, !- Thickness {m} + 0.837, !- Solar Transmittance at Normal Incidence + 0.075, !- Front Side Solar Reflectance at Normal Incidence + 0, !- Back Side Solar Reflectance at Normal Incidence + 0.898, !- Visible Transmittance at Normal Incidence + 0.081, !- Front Side Visible Reflectance at Normal Incidence + 0, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9, !- Conductivity {W/m-K} + 1, !- Dirt Correction Factor for Solar and Visible Transmittance + No; !- Solar Diffusing + +OS:DefaultSubSurfaceConstructions, + {af21604d-d2d4-48d6-ad7c-2a2dbef9e849}, !- Handle + Default Sub Surface Constructions 2, !- Name + {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Fixed Window Construction Name + {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Operable Window Construction Name + {ffeb525e-fabf-4359-8b2f-bec6d1975f7c}, !- Door Construction Name + , !- Glass Door Construction Name + , !- Overhead Door Construction Name + , !- Skylight Construction Name + , !- Tubular Daylight Dome Construction Name + ; !- Tubular Daylight Diffuser Construction Name + +OS:Construction, + {ffeb525e-fabf-4359-8b2f-bec6d1975f7c}, !- Handle + Interior Door, !- Name + {ccf8d0cb-0b4e-4bde-b89e-93647118a409}, !- Surface Rendering Name + {ae50953e-1941-4cdc-9cd9-2741ffa65317}; !- Layer 1 + +OS:StandardsInformation:Construction, + {4762d527-aeec-484d-9813-4b846d1e2743}, !- Handle + {ffeb525e-fabf-4359-8b2f-bec6d1975f7c}, !- Construction Name + InteriorDoor, !- Intended Surface Type + ; !- Standards Construction Type + +OS:Material, + {ae50953e-1941-4cdc-9cd9-2741ffa65317}, !- Handle + G05 25mm wood, !- Name + MediumSmooth, !- Roughness + 0.0254, !- Thickness {m} + 0.15, !- Conductivity {W/m-K} + 608, !- Density {kg/m3} + 1630, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.5, !- Solar Absorptance + 0.5; !- Visible Absorptance + +OS:Construction, + {ead91c2f-4359-42f5-b36e-9a36c9253598}, !- Handle + Interior Partition, !- Name + {62e34ae8-ba70-4da1-925b-57bf2c7ef24b}, !- Surface Rendering Name + {ae50953e-1941-4cdc-9cd9-2741ffa65317}; !- Layer 1 + +OS:StandardsInformation:Construction, + {bbf8ba28-8bef-42c1-b5d6-7469584234ea}, !- Handle + {ead91c2f-4359-42f5-b36e-9a36c9253598}, !- Construction Name + InteriorPartition, !- Intended Surface Type + ; !- Standards Construction Type + +OS:DefaultConstructionSet, + {687d05db-8053-4a94-b114-53e0716a9896}, !- Handle + 189.1-2009 - CZ2 - Office, !- Name + {8edba1bd-b329-4c83-a9b8-09990e95b65e}, !- Default Exterior Surface Constructions Name + {e18c1749-b591-41fb-9e64-177679114054}, !- Default Interior Surface Constructions Name + {69098a8f-01d4-41f8-97e8-f3616bf95c30}, !- Default Ground Contact Surface Constructions Name + {26c0a2ac-6869-41a8-85e0-493990988654}, !- Default Exterior SubSurface Constructions Name + {31e1c75d-6ff4-480b-8189-458ca9a5f35c}, !- Default Interior SubSurface Constructions Name + {ead91c2f-4359-42f5-b36e-9a36c9253598}, !- Interior Partition Construction Name + , !- Space Shading Construction Name + , !- Building Shading Construction Name + ; !- Site Shading Construction Name + +OS:DefaultSurfaceConstructions, + {8edba1bd-b329-4c83-a9b8-09990e95b65e}, !- Handle + Default Surface Constructions 4, !- Name + {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name + {99407b2e-49f5-4dd2-a138-e5f57ad89854}, !- Wall Construction Name + {6e592600-ac13-4db1-bf26-a5a95984aa4d}; !- Roof Ceiling Construction Name + +OS:Construction, + {99407b2e-49f5-4dd2-a138-e5f57ad89854}, !- Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 2, !- Name + {d9de7cbd-050f-4e61-8f9b-075aa1df65bb}, !- Surface Rendering Name + {56962c43-17db-4226-8ddc-220e96c9d631}, !- Layer 1 + {4cc6a40e-03a3-48aa-95cb-72a4e9afb846}, !- Layer 2 + {9aee91bc-9ebe-405c-8a50-5030bc542822}, !- Layer 3 + {b6d8e415-7411-437a-ac2c-78a8b90db9d2}; !- Layer 4 + +OS:StandardsInformation:Construction, + {85ebc66f-75e7-41c3-b466-fe2b2df44e89}, !- Handle + {99407b2e-49f5-4dd2-a138-e5f57ad89854}, !- Construction Name + ExteriorWall, !- Intended Surface Type + Mass; !- Standards Construction Type + +OS:Material, + {9aee91bc-9ebe-405c-8a50-5030bc542822}, !- Handle + Wall Insulation [35], !- Name + MediumRough, !- Roughness + 0.0452, !- Thickness {m} + 0.0432, !- Conductivity {W/m-K} + 91, !- Density {kg/m3} + 836.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.5, !- Solar Absorptance + 0.5; !- Visible Absorptance + +OS:Construction, + {6e592600-ac13-4db1-bf26-a5a95984aa4d}, !- Handle + ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 2-5, !- Name + {1931b433-ad5c-43ae-8248-796522c09dae}, !- Surface Rendering Name + {6710a532-69d6-4fff-84fd-c78074630b20}, !- Layer 1 + {5dcafaa7-3d40-49db-9ee5-cc3b2bb2278c}, !- Layer 2 + {14035dbf-33ad-4b63-a0f4-bc09dc3e2743}; !- Layer 3 + +OS:StandardsInformation:Construction, + {27c0d4ca-5cef-498b-bf78-a2e0e38f4e08}, !- Handle + {6e592600-ac13-4db1-bf26-a5a95984aa4d}, !- Construction Name + ExteriorRoof, !- Intended Surface Type + IEAD; !- Standards Construction Type + +OS:Material, + {5dcafaa7-3d40-49db-9ee5-cc3b2bb2278c}, !- Handle + Roof Insulation [21], !- Name + MediumRough, !- Roughness + 0.2105, !- Thickness {m} + 0.049, !- Conductivity {W/m-K} + 265, !- Density {kg/m3} + 836.800000000001, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:DefaultSurfaceConstructions, + {e18c1749-b591-41fb-9e64-177679114054}, !- Handle + Default Surface Constructions 5, !- Name + {4ee71df9-85c1-4a24-9be8-bee433f9e015}, !- Floor Construction Name + {7ea68359-ad75-4d6c-8862-e2965b9ee3ab}, !- Wall Construction Name + {edd9ecd3-4290-4d56-b5a9-ef02bf102418}; !- Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {69098a8f-01d4-41f8-97e8-f3616bf95c30}, !- Handle + Default Surface Constructions 6, !- Name + {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name + {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Wall Construction Name + {78a5e5c5-806e-400a-a800-196f73e1d063}; !- Roof Ceiling Construction Name + +OS:DefaultSubSurfaceConstructions, + {26c0a2ac-6869-41a8-85e0-493990988654}, !- Handle + Default Sub Surface Constructions 3, !- Name + {7a0f32f0-ed41-4458-b35f-782d54c4cf3c}, !- Fixed Window Construction Name + {7a0f32f0-ed41-4458-b35f-782d54c4cf3c}, !- Operable Window Construction Name + {f16a7fb7-d40d-43c5-9ad7-3bfe84654a03}, !- Door Construction Name + , !- Glass Door Construction Name + , !- Overhead Door Construction Name + , !- Skylight Construction Name + {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Tubular Daylight Dome Construction Name + {ae4fa780-ed05-42e8-925d-8cfdef96ee27}; !- Tubular Daylight Diffuser Construction Name + +OS:Construction, + {7a0f32f0-ed41-4458-b35f-782d54c4cf3c}, !- Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 2, !- Name + {fa64966f-7624-43ea-a584-54dd0654c4fa}, !- Surface Rendering Name + {0df6dfac-0759-43e9-8314-9539c41eefda}; !- Layer 1 + +OS:StandardsInformation:Construction, + {56d08b42-76df-4617-82fc-10413928e30e}, !- Handle + {7a0f32f0-ed41-4458-b35f-782d54c4cf3c}, !- Construction Name + ExteriorWindow, !- Intended Surface Type + ; !- Standards Construction Type + +OS:WindowMaterial:Glazing, + {0df6dfac-0759-43e9-8314-9539c41eefda}, !- Handle + Theoretical Glass [197], !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00299999999999999, !- Thickness {m} + 0.2349, !- Solar Transmittance at Normal Incidence + 0.7151, !- Front Side Solar Reflectance at Normal Incidence + 0, !- Back Side Solar Reflectance at Normal Incidence + 0.2512, !- Visible Transmittance at Normal Incidence + 0.6988, !- Front Side Visible Reflectance at Normal Incidence + 0, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.9, !- Front Side Infrared Hemispherical Emissivity + 0.9, !- Back Side Infrared Hemispherical Emissivity + 0.0415, !- Conductivity {W/m-K} + 1, !- Dirt Correction Factor for Solar and Visible Transmittance + No; !- Solar Diffusing + +OS:DefaultSubSurfaceConstructions, + {31e1c75d-6ff4-480b-8189-458ca9a5f35c}, !- Handle + Default Sub Surface Constructions 4, !- Name + {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Fixed Window Construction Name + {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Operable Window Construction Name + {ffeb525e-fabf-4359-8b2f-bec6d1975f7c}, !- Door Construction Name + , !- Glass Door Construction Name + , !- Overhead Door Construction Name + , !- Skylight Construction Name + , !- Tubular Daylight Dome Construction Name + ; !- Tubular Daylight Diffuser Construction Name + +OS:DefaultConstructionSet, + {3506f604-9b28-4c01-8fc6-87fabe876a1b}, !- Handle + 189.1-2009 - CZ3 - Office, !- Name + {79cccbfe-3f49-4acb-bdf2-e7139171fa8f}, !- Default Exterior Surface Constructions Name + {d2c070d0-e055-4eab-91fe-70399799fd2c}, !- Default Interior Surface Constructions Name + {8e86a490-adb3-49ef-8ad5-5a0e28d39cf9}, !- Default Ground Contact Surface Constructions Name + {8e17c840-44c6-43f4-81f8-12f4bcac2369}, !- Default Exterior SubSurface Constructions Name + {2e3cc8bd-5113-4870-b568-af600af67faa}, !- Default Interior SubSurface Constructions Name + {ead91c2f-4359-42f5-b36e-9a36c9253598}, !- Interior Partition Construction Name + , !- Space Shading Construction Name + , !- Building Shading Construction Name + ; !- Site Shading Construction Name + +OS:DefaultSurfaceConstructions, + {79cccbfe-3f49-4acb-bdf2-e7139171fa8f}, !- Handle + Default Surface Constructions 7, !- Name + {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name + {dd95d8d1-cb40-4462-b3ef-6d971a9babc7}, !- Wall Construction Name + {6e592600-ac13-4db1-bf26-a5a95984aa4d}; !- Roof Ceiling Construction Name + +OS:Construction, + {dd95d8d1-cb40-4462-b3ef-6d971a9babc7}, !- Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 3, !- Name + {460f8255-5f86-432f-a773-d413b7d383bc}, !- Surface Rendering Name + {56962c43-17db-4226-8ddc-220e96c9d631}, !- Layer 1 + {4cc6a40e-03a3-48aa-95cb-72a4e9afb846}, !- Layer 2 + {0237a258-22d1-4ebf-9808-109d59b975c9}, !- Layer 3 + {b6d8e415-7411-437a-ac2c-78a8b90db9d2}; !- Layer 4 + +OS:StandardsInformation:Construction, + {467ca491-6c1d-4847-a1dd-a5fe4331f049}, !- Handle + {dd95d8d1-cb40-4462-b3ef-6d971a9babc7}, !- Construction Name + ExteriorWall, !- Intended Surface Type + Mass; !- Standards Construction Type + +OS:Material, + {0237a258-22d1-4ebf-9808-109d59b975c9}, !- Handle + Wall Insulation [36], !- Name + MediumRough, !- Roughness + 0.0565999999999999, !- Thickness {m} + 0.0432, !- Conductivity {W/m-K} + 91, !- Density {kg/m3} + 836.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.5, !- Solar Absorptance + 0.5; !- Visible Absorptance + +OS:DefaultSurfaceConstructions, + {d2c070d0-e055-4eab-91fe-70399799fd2c}, !- Handle + Default Surface Constructions 8, !- Name + {4ee71df9-85c1-4a24-9be8-bee433f9e015}, !- Floor Construction Name + {7ea68359-ad75-4d6c-8862-e2965b9ee3ab}, !- Wall Construction Name + {edd9ecd3-4290-4d56-b5a9-ef02bf102418}; !- Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {8e86a490-adb3-49ef-8ad5-5a0e28d39cf9}, !- Handle + Default Surface Constructions 9, !- Name + {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name + {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Wall Construction Name + {78a5e5c5-806e-400a-a800-196f73e1d063}; !- Roof Ceiling Construction Name + +OS:DefaultSubSurfaceConstructions, + {8e17c840-44c6-43f4-81f8-12f4bcac2369}, !- Handle + Default Sub Surface Constructions 5, !- Name + {253b4c5e-eec6-44ee-a66e-86e873e08a61}, !- Fixed Window Construction Name + {253b4c5e-eec6-44ee-a66e-86e873e08a61}, !- Operable Window Construction Name + {f16a7fb7-d40d-43c5-9ad7-3bfe84654a03}, !- Door Construction Name + , !- Glass Door Construction Name + , !- Overhead Door Construction Name + , !- Skylight Construction Name + {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Tubular Daylight Dome Construction Name + {ae4fa780-ed05-42e8-925d-8cfdef96ee27}; !- Tubular Daylight Diffuser Construction Name + +OS:Construction, + {253b4c5e-eec6-44ee-a66e-86e873e08a61}, !- Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 3, !- Name + {8f9423e5-3ed6-4351-be9e-dbbdd330b500}, !- Surface Rendering Name + {64d8cad3-3a12-4843-92ce-a114da8ac461}; !- Layer 1 + +OS:StandardsInformation:Construction, + {61f36c91-69cb-4354-9f7e-cfa1cb96b197}, !- Handle + {253b4c5e-eec6-44ee-a66e-86e873e08a61}, !- Construction Name + ExteriorWindow, !- Intended Surface Type + ; !- Standards Construction Type + +OS:WindowMaterial:Glazing, + {64d8cad3-3a12-4843-92ce-a114da8ac461}, !- Handle + Theoretical Glass [202], !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00299999999999999, !- Thickness {m} + 0.2325, !- Solar Transmittance at Normal Incidence + 0.7175, !- Front Side Solar Reflectance at Normal Incidence + 0, !- Back Side Solar Reflectance at Normal Incidence + 0.3192, !- Visible Transmittance at Normal Incidence + 0.6308, !- Front Side Visible Reflectance at Normal Incidence + 0, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.9, !- Front Side Infrared Hemispherical Emissivity + 0.9, !- Back Side Infrared Hemispherical Emissivity + 0.0192, !- Conductivity {W/m-K} + 1, !- Dirt Correction Factor for Solar and Visible Transmittance + No; !- Solar Diffusing + +OS:DefaultSubSurfaceConstructions, + {2e3cc8bd-5113-4870-b568-af600af67faa}, !- Handle + Default Sub Surface Constructions 6, !- Name + {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Fixed Window Construction Name + {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Operable Window Construction Name + {ffeb525e-fabf-4359-8b2f-bec6d1975f7c}, !- Door Construction Name + , !- Glass Door Construction Name + , !- Overhead Door Construction Name + , !- Skylight Construction Name + , !- Tubular Daylight Dome Construction Name + ; !- Tubular Daylight Diffuser Construction Name + +OS:DefaultConstructionSet, + {b7cdc63e-a919-41dd-86e1-dece88dfdb28}, !- Handle + 189.1-2009 - CZ4 - Office, !- Name + {3ef37f21-bbe3-4f3b-9b65-3ad9770f3a44}, !- Default Exterior Surface Constructions Name + {92813ed9-8be8-4db7-93eb-d9414bb5857c}, !- Default Interior Surface Constructions Name + {a1c91290-96c5-4ee4-988a-5b2845afb68b}, !- Default Ground Contact Surface Constructions Name + {8236d225-796d-412a-a2e2-1295101f741d}, !- Default Exterior SubSurface Constructions Name + {a9819d00-d437-4adf-b7bd-7824978b9e03}, !- Default Interior SubSurface Constructions Name + {ead91c2f-4359-42f5-b36e-9a36c9253598}, !- Interior Partition Construction Name + , !- Space Shading Construction Name + , !- Building Shading Construction Name + ; !- Site Shading Construction Name + +OS:DefaultSurfaceConstructions, + {3ef37f21-bbe3-4f3b-9b65-3ad9770f3a44}, !- Handle + Default Surface Constructions 10, !- Name + {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name + {b23633e3-75a0-470c-b30f-e321d99e7ed1}, !- Wall Construction Name + {6e592600-ac13-4db1-bf26-a5a95984aa4d}; !- Roof Ceiling Construction Name + +OS:Construction, + {b23633e3-75a0-470c-b30f-e321d99e7ed1}, !- Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 4, !- Name + {584c45ae-4787-45d1-9dd4-f33b0f8347f9}, !- Surface Rendering Name + {56962c43-17db-4226-8ddc-220e96c9d631}, !- Layer 1 + {4cc6a40e-03a3-48aa-95cb-72a4e9afb846}, !- Layer 2 + {b60a50b3-1951-483d-a113-6fc416753502}, !- Layer 3 + {b6d8e415-7411-437a-ac2c-78a8b90db9d2}; !- Layer 4 + +OS:StandardsInformation:Construction, + {3f492503-4801-4755-8e33-6b43c94c88c0}, !- Handle + {b23633e3-75a0-470c-b30f-e321d99e7ed1}, !- Construction Name + ExteriorWall, !- Intended Surface Type + Mass; !- Standards Construction Type + +OS:Material, + {b60a50b3-1951-483d-a113-6fc416753502}, !- Handle + Wall Insulation [37], !- Name + MediumRough, !- Roughness + 0.0680999999999999, !- Thickness {m} + 0.0432, !- Conductivity {W/m-K} + 91, !- Density {kg/m3} + 836.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.5, !- Solar Absorptance + 0.5; !- Visible Absorptance + +OS:DefaultSurfaceConstructions, + {92813ed9-8be8-4db7-93eb-d9414bb5857c}, !- Handle + Default Surface Constructions 11, !- Name + {4ee71df9-85c1-4a24-9be8-bee433f9e015}, !- Floor Construction Name + {7ea68359-ad75-4d6c-8862-e2965b9ee3ab}, !- Wall Construction Name + {edd9ecd3-4290-4d56-b5a9-ef02bf102418}; !- Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {a1c91290-96c5-4ee4-988a-5b2845afb68b}, !- Handle + Default Surface Constructions 12, !- Name + {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name + {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Wall Construction Name + {78a5e5c5-806e-400a-a800-196f73e1d063}; !- Roof Ceiling Construction Name + +OS:DefaultSubSurfaceConstructions, + {8236d225-796d-412a-a2e2-1295101f741d}, !- Handle + Default Sub Surface Constructions 7, !- Name + {a19abee3-5e27-4244-9552-a3961f6ec2b6}, !- Fixed Window Construction Name + {a19abee3-5e27-4244-9552-a3961f6ec2b6}, !- Operable Window Construction Name + {f16a7fb7-d40d-43c5-9ad7-3bfe84654a03}, !- Door Construction Name + , !- Glass Door Construction Name + , !- Overhead Door Construction Name + , !- Skylight Construction Name + {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Tubular Daylight Dome Construction Name + {ae4fa780-ed05-42e8-925d-8cfdef96ee27}; !- Tubular Daylight Diffuser Construction Name + +OS:Construction, + {a19abee3-5e27-4244-9552-a3961f6ec2b6}, !- Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 4-5, !- Name + {d0c8c19d-30d5-48bd-a3a0-3c16ccc1303b}, !- Surface Rendering Name + {9914bb36-b162-493f-a77d-317b37a6dfe0}; !- Layer 1 + +OS:StandardsInformation:Construction, + {d55825e5-87d9-473f-9fe3-b54e798b73b2}, !- Handle + {a19abee3-5e27-4244-9552-a3961f6ec2b6}, !- Construction Name + ExteriorWindow, !- Intended Surface Type + ; !- Standards Construction Type + +OS:WindowMaterial:Glazing, + {9914bb36-b162-493f-a77d-317b37a6dfe0}, !- Handle + Theoretical Glass [207], !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00299999999999999, !- Thickness {m} + 0.3311, !- Solar Transmittance at Normal Incidence + 0.6189, !- Front Side Solar Reflectance at Normal Incidence + 0, !- Back Side Solar Reflectance at Normal Incidence + 0.44, !- Visible Transmittance at Normal Incidence + 0.51, !- Front Side Visible Reflectance at Normal Incidence + 0, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.9, !- Front Side Infrared Hemispherical Emissivity + 0.9, !- Back Side Infrared Hemispherical Emissivity + 0.0133, !- Conductivity {W/m-K} + 1, !- Dirt Correction Factor for Solar and Visible Transmittance + No; !- Solar Diffusing + +OS:DefaultSubSurfaceConstructions, + {a9819d00-d437-4adf-b7bd-7824978b9e03}, !- Handle + Default Sub Surface Constructions 8, !- Name + {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Fixed Window Construction Name + {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Operable Window Construction Name + {ffeb525e-fabf-4359-8b2f-bec6d1975f7c}, !- Door Construction Name + , !- Glass Door Construction Name + , !- Overhead Door Construction Name + , !- Skylight Construction Name + , !- Tubular Daylight Dome Construction Name + ; !- Tubular Daylight Diffuser Construction Name + +OS:DefaultConstructionSet, + {58749418-1c83-496b-94e6-80aa0fd3ac39}, !- Handle + 189.1-2009 - CZ5 - Office, !- Name + {f6881ecb-7aaf-431a-b1d2-61de79238f70}, !- Default Exterior Surface Constructions Name + {d97abec2-033d-43ce-a763-4ed6937bae4d}, !- Default Interior Surface Constructions Name + {d684c8db-7bf4-4966-b9eb-ea0c2afdf86b}, !- Default Ground Contact Surface Constructions Name + {bb191ec6-d6ab-407d-9fb2-31dc2ae3bb75}, !- Default Exterior SubSurface Constructions Name + {b6d85e89-1972-4d08-8dd6-1ad51c17f701}, !- Default Interior SubSurface Constructions Name + {ead91c2f-4359-42f5-b36e-9a36c9253598}, !- Interior Partition Construction Name + , !- Space Shading Construction Name + , !- Building Shading Construction Name + ; !- Site Shading Construction Name + +OS:DefaultSurfaceConstructions, + {f6881ecb-7aaf-431a-b1d2-61de79238f70}, !- Handle + Default Surface Constructions 13, !- Name + {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name + {69871c9e-7438-4e91-92bd-66fabb7f9850}, !- Wall Construction Name + {6e592600-ac13-4db1-bf26-a5a95984aa4d}; !- Roof Ceiling Construction Name + +OS:Construction, + {69871c9e-7438-4e91-92bd-66fabb7f9850}, !- Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 5, !- Name + {7540a07b-c6b7-4faf-a374-fc8ad428bb83}, !- Surface Rendering Name + {56962c43-17db-4226-8ddc-220e96c9d631}, !- Layer 1 + {4cc6a40e-03a3-48aa-95cb-72a4e9afb846}, !- Layer 2 + {0681dbd1-2005-474d-9af1-f3e3c9bdfdd6}, !- Layer 3 + {b6d8e415-7411-437a-ac2c-78a8b90db9d2}; !- Layer 4 + +OS:StandardsInformation:Construction, + {99c16b51-1376-4d0d-ae82-9abe62b5b9bc}, !- Handle + {69871c9e-7438-4e91-92bd-66fabb7f9850}, !- Construction Name + ExteriorWall, !- Intended Surface Type + Mass; !- Standards Construction Type + +OS:Material, + {0681dbd1-2005-474d-9af1-f3e3c9bdfdd6}, !- Handle + Wall Insulation [40], !- Name + MediumRough, !- Roughness + 0.0793999999999999, !- Thickness {m} + 0.0432, !- Conductivity {W/m-K} + 91, !- Density {kg/m3} + 836.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.5, !- Solar Absorptance + 0.5; !- Visible Absorptance + +OS:DefaultSurfaceConstructions, + {d97abec2-033d-43ce-a763-4ed6937bae4d}, !- Handle + Default Surface Constructions 14, !- Name + {4ee71df9-85c1-4a24-9be8-bee433f9e015}, !- Floor Construction Name + {7ea68359-ad75-4d6c-8862-e2965b9ee3ab}, !- Wall Construction Name + {edd9ecd3-4290-4d56-b5a9-ef02bf102418}; !- Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {d684c8db-7bf4-4966-b9eb-ea0c2afdf86b}, !- Handle + Default Surface Constructions 15, !- Name + {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name + {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Wall Construction Name + {78a5e5c5-806e-400a-a800-196f73e1d063}; !- Roof Ceiling Construction Name + +OS:DefaultSubSurfaceConstructions, + {bb191ec6-d6ab-407d-9fb2-31dc2ae3bb75}, !- Handle + Default Sub Surface Constructions 9, !- Name + {a19abee3-5e27-4244-9552-a3961f6ec2b6}, !- Fixed Window Construction Name + {a19abee3-5e27-4244-9552-a3961f6ec2b6}, !- Operable Window Construction Name + {f16a7fb7-d40d-43c5-9ad7-3bfe84654a03}, !- Door Construction Name + , !- Glass Door Construction Name + , !- Overhead Door Construction Name + , !- Skylight Construction Name + {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Tubular Daylight Dome Construction Name + {ae4fa780-ed05-42e8-925d-8cfdef96ee27}; !- Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {b6d85e89-1972-4d08-8dd6-1ad51c17f701}, !- Handle + Default Sub Surface Constructions 10, !- Name + {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Fixed Window Construction Name + {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Operable Window Construction Name + {ffeb525e-fabf-4359-8b2f-bec6d1975f7c}, !- Door Construction Name + , !- Glass Door Construction Name + , !- Overhead Door Construction Name + , !- Skylight Construction Name + , !- Tubular Daylight Dome Construction Name + ; !- Tubular Daylight Diffuser Construction Name + +OS:DefaultConstructionSet, + {7fbfa4b5-c598-498c-9e7e-cc1d23784e59}, !- Handle + 189.1-2009 - CZ6 - Office, !- Name + {f4c2eff4-616f-4e59-a975-63e8f99df809}, !- Default Exterior Surface Constructions Name + {d61c2378-904c-4c76-bac0-dbd9f6c49c7c}, !- Default Interior Surface Constructions Name + {d64e486a-afe2-4d33-9add-91d98c40c1d7}, !- Default Ground Contact Surface Constructions Name + {5897f70f-27c7-4970-9e2c-db9bebccea4e}, !- Default Exterior SubSurface Constructions Name + {ec05d2f3-b3ec-4dfb-820b-5fffaeb8776d}, !- Default Interior SubSurface Constructions Name + {ead91c2f-4359-42f5-b36e-9a36c9253598}, !- Interior Partition Construction Name + , !- Space Shading Construction Name + , !- Building Shading Construction Name + ; !- Site Shading Construction Name + +OS:DefaultSurfaceConstructions, + {f4c2eff4-616f-4e59-a975-63e8f99df809}, !- Handle + Default Surface Constructions 16, !- Name + {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name + {73014c8f-a248-42b8-886b-3d7b760f079b}, !- Wall Construction Name + {e58f4a9d-2329-4c5d-8385-2f9db5c419bf}; !- Roof Ceiling Construction Name + +OS:Construction, + {73014c8f-a248-42b8-886b-3d7b760f079b}, !- Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 6, !- Name + {fe59cf72-f9c8-46a7-8dc4-3896724fe5d7}, !- Surface Rendering Name + {56962c43-17db-4226-8ddc-220e96c9d631}, !- Layer 1 + {4cc6a40e-03a3-48aa-95cb-72a4e9afb846}, !- Layer 2 + {033ceb3a-fd60-4fdb-a0f3-c9fa51ea2e6e}, !- Layer 3 + {b6d8e415-7411-437a-ac2c-78a8b90db9d2}; !- Layer 4 + +OS:StandardsInformation:Construction, + {7eeba261-f29b-4f29-92ab-43160d53769c}, !- Handle + {73014c8f-a248-42b8-886b-3d7b760f079b}, !- Construction Name + ExteriorWall, !- Intended Surface Type + Mass; !- Standards Construction Type + +OS:Material, + {033ceb3a-fd60-4fdb-a0f3-c9fa51ea2e6e}, !- Handle + Wall Insulation [42], !- Name + MediumRough, !- Roughness + 0.0913999999999999, !- Thickness {m} + 0.0432, !- Conductivity {W/m-K} + 91, !- Density {kg/m3} + 836.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.5, !- Solar Absorptance + 0.5; !- Visible Absorptance + +OS:Construction, + {e58f4a9d-2329-4c5d-8385-2f9db5c419bf}, !- Handle + ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 6, !- Name + {b4a51fb4-31db-4ab6-b13d-652c879a9a2c}, !- Surface Rendering Name + {97a1b867-7bc8-4285-9ece-5ae126192f3c}, !- Layer 1 + {6073d808-4e57-40c9-919a-2473ff43dfee}, !- Layer 2 + {14035dbf-33ad-4b63-a0f4-bc09dc3e2743}; !- Layer 3 + +OS:StandardsInformation:Construction, + {76a41f7e-250b-4af4-9af6-365bb137bdae}, !- Handle + {e58f4a9d-2329-4c5d-8385-2f9db5c419bf}, !- Construction Name + ExteriorRoof, !- Intended Surface Type + Metal; !- Standards Construction Type + +OS:Material, + {97a1b867-7bc8-4285-9ece-5ae126192f3c}, !- Handle + Metal Roofing, !- Name + MediumSmooth, !- Roughness + 0.0015, !- Thickness {m} + 45.006, !- Conductivity {W/m-K} + 7680, !- Density {kg/m3} + 418.4, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.6, !- Solar Absorptance + 0.6; !- Visible Absorptance + +OS:Material, + {6073d808-4e57-40c9-919a-2473ff43dfee}, !- Handle + Roof Insulation [25], !- Name + MediumRough, !- Roughness + 0.263, !- Thickness {m} + 0.049, !- Conductivity {W/m-K} + 265, !- Density {kg/m3} + 836.800000000001, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:DefaultSurfaceConstructions, + {d61c2378-904c-4c76-bac0-dbd9f6c49c7c}, !- Handle + Default Surface Constructions 17, !- Name + {4ee71df9-85c1-4a24-9be8-bee433f9e015}, !- Floor Construction Name + {7ea68359-ad75-4d6c-8862-e2965b9ee3ab}, !- Wall Construction Name + {edd9ecd3-4290-4d56-b5a9-ef02bf102418}; !- Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {d64e486a-afe2-4d33-9add-91d98c40c1d7}, !- Handle + Default Surface Constructions 18, !- Name + {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name + {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Wall Construction Name + {78a5e5c5-806e-400a-a800-196f73e1d063}; !- Roof Ceiling Construction Name + +OS:DefaultSubSurfaceConstructions, + {5897f70f-27c7-4970-9e2c-db9bebccea4e}, !- Handle + Default Sub Surface Constructions 11, !- Name + {b343d191-cd60-41c8-9583-fcdf8aef2341}, !- Fixed Window Construction Name + {b343d191-cd60-41c8-9583-fcdf8aef2341}, !- Operable Window Construction Name + {f16a7fb7-d40d-43c5-9ad7-3bfe84654a03}, !- Door Construction Name + , !- Glass Door Construction Name + , !- Overhead Door Construction Name + , !- Skylight Construction Name + {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Tubular Daylight Dome Construction Name + {ae4fa780-ed05-42e8-925d-8cfdef96ee27}; !- Tubular Daylight Diffuser Construction Name + +OS:Construction, + {b343d191-cd60-41c8-9583-fcdf8aef2341}, !- Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 6, !- Name + {50151bcc-32ed-4ff3-8085-9658f2079102}, !- Surface Rendering Name + {49faa92b-2c62-4fe3-87e7-99e278102799}; !- Layer 1 + +OS:StandardsInformation:Construction, + {f1ab38d8-53bd-46fb-87a1-ae1dd7cc8561}, !- Handle + {b343d191-cd60-41c8-9583-fcdf8aef2341}, !- Construction Name + ExteriorWindow, !- Intended Surface Type + ; !- Standards Construction Type + +OS:WindowMaterial:Glazing, + {49faa92b-2c62-4fe3-87e7-99e278102799}, !- Handle + Theoretical Glass [216], !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00299999999999999, !- Thickness {m} + 0.3801, !- Solar Transmittance at Normal Incidence + 0.5699, !- Front Side Solar Reflectance at Normal Incidence + 0, !- Back Side Solar Reflectance at Normal Incidence + 0.5079, !- Visible Transmittance at Normal Incidence + 0.4421, !- Front Side Visible Reflectance at Normal Incidence + 0, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.9, !- Front Side Infrared Hemispherical Emissivity + 0.9, !- Back Side Infrared Hemispherical Emissivity + 0.0133, !- Conductivity {W/m-K} + 1, !- Dirt Correction Factor for Solar and Visible Transmittance + No; !- Solar Diffusing + +OS:DefaultSubSurfaceConstructions, + {ec05d2f3-b3ec-4dfb-820b-5fffaeb8776d}, !- Handle + Default Sub Surface Constructions 12, !- Name + {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Fixed Window Construction Name + {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Operable Window Construction Name + {ffeb525e-fabf-4359-8b2f-bec6d1975f7c}, !- Door Construction Name + , !- Glass Door Construction Name + , !- Overhead Door Construction Name + , !- Skylight Construction Name + , !- Tubular Daylight Dome Construction Name + ; !- Tubular Daylight Diffuser Construction Name + +OS:DefaultConstructionSet, + {1cff5d19-5572-4e19-88b4-346c54265f57}, !- Handle + 189.1-2009 - CZ7-8 - Office, !- Name + {6e044d24-cbba-456f-af36-8b86f1508f50}, !- Default Exterior Surface Constructions Name + {e3c760b2-11c7-4984-bdaf-ed3f8f1fbab8}, !- Default Interior Surface Constructions Name + {5a5b254f-3a7d-49cd-8c7b-df8e0f5efded}, !- Default Ground Contact Surface Constructions Name + {c766fd3a-9093-42fa-9514-2c1fa80247f2}, !- Default Exterior SubSurface Constructions Name + {af87ce18-ae87-4260-a697-cd25f4095498}, !- Default Interior SubSurface Constructions Name + {ead91c2f-4359-42f5-b36e-9a36c9253598}, !- Interior Partition Construction Name + , !- Space Shading Construction Name + , !- Building Shading Construction Name + ; !- Site Shading Construction Name + +OS:DefaultSurfaceConstructions, + {6e044d24-cbba-456f-af36-8b86f1508f50}, !- Handle + Default Surface Constructions 19, !- Name + {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name + {d28d8415-2d7a-4256-be8e-91b455fe8889}, !- Wall Construction Name + {c6bbd742-fc9f-439b-94f4-e8038f26f5bd}; !- Roof Ceiling Construction Name + +OS:Construction, + {d28d8415-2d7a-4256-be8e-91b455fe8889}, !- Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 7-8, !- Name + {db7b8f16-f0f4-463e-a33a-c93df442ca33}, !- Surface Rendering Name + {56962c43-17db-4226-8ddc-220e96c9d631}, !- Layer 1 + {4cc6a40e-03a3-48aa-95cb-72a4e9afb846}, !- Layer 2 + {6f104856-6bc7-479e-87b3-44c13f6b441e}, !- Layer 3 + {b6d8e415-7411-437a-ac2c-78a8b90db9d2}; !- Layer 4 + +OS:StandardsInformation:Construction, + {d740a5ed-3362-4965-952b-69d154d88d11}, !- Handle + {d28d8415-2d7a-4256-be8e-91b455fe8889}, !- Construction Name + ExteriorWall, !- Intended Surface Type + Mass; !- Standards Construction Type + +OS:Material, + {6f104856-6bc7-479e-87b3-44c13f6b441e}, !- Handle + Wall Insulation [44], !- Name + MediumRough, !- Roughness + 0.1104, !- Thickness {m} + 0.0432, !- Conductivity {W/m-K} + 91, !- Density {kg/m3} + 836.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.5, !- Solar Absorptance + 0.5; !- Visible Absorptance + +OS:Construction, + {c6bbd742-fc9f-439b-94f4-e8038f26f5bd}, !- Handle + ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 7-8, !- Name + {2582cb70-8314-41a6-ac75-d4fef244dffc}, !- Surface Rendering Name + {6710a532-69d6-4fff-84fd-c78074630b20}, !- Layer 1 + {210f210b-6002-4820-ae10-eb2b372d7687}, !- Layer 2 + {14035dbf-33ad-4b63-a0f4-bc09dc3e2743}; !- Layer 3 + +OS:StandardsInformation:Construction, + {252369f7-3f86-46ff-a0c8-1399371eb759}, !- Handle + {c6bbd742-fc9f-439b-94f4-e8038f26f5bd}, !- Construction Name + ExteriorRoof, !- Intended Surface Type + IEAD; !- Standards Construction Type + +OS:Material, + {210f210b-6002-4820-ae10-eb2b372d7687}, !- Handle + Roof Insulation [26], !- Name + MediumRough, !- Roughness + 0.2941, !- Thickness {m} + 0.049, !- Conductivity {W/m-K} + 265, !- Density {kg/m3} + 836.800000000001, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:DefaultSurfaceConstructions, + {e3c760b2-11c7-4984-bdaf-ed3f8f1fbab8}, !- Handle + Default Surface Constructions 20, !- Name + {4ee71df9-85c1-4a24-9be8-bee433f9e015}, !- Floor Construction Name + {7ea68359-ad75-4d6c-8862-e2965b9ee3ab}, !- Wall Construction Name + {edd9ecd3-4290-4d56-b5a9-ef02bf102418}; !- Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {5a5b254f-3a7d-49cd-8c7b-df8e0f5efded}, !- Handle + Default Surface Constructions 21, !- Name + {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name + {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Wall Construction Name + {78a5e5c5-806e-400a-a800-196f73e1d063}; !- Roof Ceiling Construction Name + +OS:DefaultSubSurfaceConstructions, + {c766fd3a-9093-42fa-9514-2c1fa80247f2}, !- Handle + Default Sub Surface Constructions 13, !- Name + {b7889a36-262c-4dbe-b8ee-96206687aa1b}, !- Fixed Window Construction Name + {b7889a36-262c-4dbe-b8ee-96206687aa1b}, !- Operable Window Construction Name + {f16a7fb7-d40d-43c5-9ad7-3bfe84654a03}, !- Door Construction Name + , !- Glass Door Construction Name + , !- Overhead Door Construction Name + , !- Skylight Construction Name + {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Tubular Daylight Dome Construction Name + {ae4fa780-ed05-42e8-925d-8cfdef96ee27}; !- Tubular Daylight Diffuser Construction Name + +OS:Construction, + {b7889a36-262c-4dbe-b8ee-96206687aa1b}, !- Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 7-8, !- Name + {b95d9e0a-a5a9-4295-870c-608321ecd650}, !- Surface Rendering Name + {705e5f44-c97a-4686-b0f1-97f4494d238d}; !- Layer 1 + +OS:StandardsInformation:Construction, + {20aa7704-c7fd-4a24-aa3b-7f69c9544b7c}, !- Handle + {b7889a36-262c-4dbe-b8ee-96206687aa1b}, !- Construction Name + ExteriorWindow, !- Intended Surface Type + ; !- Standards Construction Type + +OS:WindowMaterial:Glazing, + {705e5f44-c97a-4686-b0f1-97f4494d238d}, !- Handle + Theoretical Glass [221], !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00299999999999999, !- Thickness {m} + 0.4296, !- Solar Transmittance at Normal Incidence + 0.5204, !- Front Side Solar Reflectance at Normal Incidence + 0, !- Back Side Solar Reflectance at Normal Incidence + 0.4503, !- Visible Transmittance at Normal Incidence + 0.4997, !- Front Side Visible Reflectance at Normal Incidence + 0, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.9, !- Front Side Infrared Hemispherical Emissivity + 0.9, !- Back Side Infrared Hemispherical Emissivity + 0.0089, !- Conductivity {W/m-K} + 1, !- Dirt Correction Factor for Solar and Visible Transmittance + No; !- Solar Diffusing + +OS:DefaultSubSurfaceConstructions, + {af87ce18-ae87-4260-a697-cd25f4095498}, !- Handle + Default Sub Surface Constructions 14, !- Name + {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Fixed Window Construction Name + {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Operable Window Construction Name + {ffeb525e-fabf-4359-8b2f-bec6d1975f7c}, !- Door Construction Name + , !- Glass Door Construction Name + , !- Overhead Door Construction Name + , !- Skylight Construction Name + , !- Tubular Daylight Dome Construction Name + ; !- Tubular Daylight Diffuser Construction Name + +OS:Material:AirWall, + {8ea9f6e6-0bb1-424a-a9d5-8fb8da2c8afe}, !- Handle + Air Wall Material; !- Name + +OS:Construction, + {7a29ba3c-05e0-4ba6-a7bf-72746f63eedc}, !- Handle + Air Wall, !- Name + {16a7176a-d244-49b5-bec6-6d107e067adf}, !- Surface Rendering Name + {8ea9f6e6-0bb1-424a-a9d5-8fb8da2c8afe}; !- Layer 1 + +OS:Facility, + {50a42c9a-3973-4de3-b7ee-0cd8b0200231}; !- Handle + +OS:Rendering:Color, + {d9de7cbd-050f-4e61-8f9b-075aa1df65bb}, !- Handle + Rendering Color 33, !- Name + 250, !- Rendering Red Value + 235, !- Rendering Green Value + 215; !- Rendering Blue Value + +OS:Rendering:Color, + {62e34ae8-ba70-4da1-925b-57bf2c7ef24b}, !- Handle + Rendering Color 34, !- Name + 255, !- Rendering Red Value + 250, !- Rendering Green Value + 205; !- Rendering Blue Value + +OS:Rendering:Color, + {17a12f4b-94a3-4b11-aee4-8fdfaca5c4df}, !- Handle + Rendering Color 35, !- Name + 47, !- Rendering Red Value + 79, !- Rendering Green Value + 79; !- Rendering Blue Value + +OS:Rendering:Color, + {ccf8d0cb-0b4e-4bde-b89e-93647118a409}, !- Handle + Rendering Color 36, !- Name + 245, !- Rendering Red Value + 255, !- Rendering Green Value + 250; !- Rendering Blue Value + +OS:Rendering:Color, + {e86c4cfc-a78a-4674-ba86-da0778391d75}, !- Handle + Rendering Color 37, !- Name + 85, !- Rendering Red Value + 107, !- Rendering Green Value + 47; !- Rendering Blue Value + +OS:Rendering:Color, + {1931b433-ad5c-43ae-8248-796522c09dae}, !- Handle + Rendering Color 38, !- Name + 50, !- Rendering Red Value + 205, !- Rendering Green Value + 50; !- Rendering Blue Value + +OS:Rendering:Color, + {c2c680d2-f325-40ed-95af-d91b806f1ec6}, !- Handle + Rendering Color 39, !- Name + 0, !- Rendering Red Value + 100, !- Rendering Green Value + 0; !- Rendering Blue Value + +OS:Rendering:Color, + {fa64966f-7624-43ea-a584-54dd0654c4fa}, !- Handle + Rendering Color 40, !- Name + 255, !- Rendering Red Value + 182, !- Rendering Green Value + 193; !- Rendering Blue Value + +OS:Rendering:Color, + {778e8a0a-a11f-4cdc-b209-ca9fa58a7fd7}, !- Handle + Rendering Color 41, !- Name + 178, !- Rendering Red Value + 34, !- Rendering Green Value + 34; !- Rendering Blue Value + +OS:Rendering:Color, + {460f8255-5f86-432f-a773-d413b7d383bc}, !- Handle + Rendering Color 42, !- Name + 248, !- Rendering Red Value + 248, !- Rendering Green Value + 255; !- Rendering Blue Value + +OS:Rendering:Color, + {24055de0-4136-450a-bc8d-d8ee32c93212}, !- Handle + Rendering Color 43, !- Name + 139, !- Rendering Red Value + 0, !- Rendering Green Value + 0; !- Rendering Blue Value + +OS:Rendering:Color, + {8f9423e5-3ed6-4351-be9e-dbbdd330b500}, !- Handle + Rendering Color 44, !- Name + 0, !- Rendering Red Value + 255, !- Rendering Green Value + 255; !- Rendering Blue Value + +OS:Rendering:Color, + {04a70558-9b0a-4809-8c15-d7f1882136f8}, !- Handle + Rendering Color 45, !- Name + 50, !- Rendering Red Value + 205, !- Rendering Green Value + 50; !- Rendering Blue Value + +OS:Rendering:Color, + {584c45ae-4787-45d1-9dd4-f33b0f8347f9}, !- Handle + Rendering Color 46, !- Name + 210, !- Rendering Red Value + 180, !- Rendering Green Value + 140; !- Rendering Blue Value + +OS:Rendering:Color, + {d0c8c19d-30d5-48bd-a3a0-3c16ccc1303b}, !- Handle + Rendering Color 47, !- Name + 250, !- Rendering Red Value + 250, !- Rendering Green Value + 210; !- Rendering Blue Value + +OS:Rendering:Color, + {7540a07b-c6b7-4faf-a374-fc8ad428bb83}, !- Handle + Rendering Color 48, !- Name + 0, !- Rendering Red Value + 206, !- Rendering Green Value + 209; !- Rendering Blue Value + +OS:Rendering:Color, + {636bc1bd-3423-4cbd-a7ac-cd596f301582}, !- Handle + Rendering Color 49, !- Name + 255, !- Rendering Red Value + 255, !- Rendering Green Value + 240; !- Rendering Blue Value + +OS:Rendering:Color, + {fe59cf72-f9c8-46a7-8dc4-3896724fe5d7}, !- Handle + Rendering Color 50, !- Name + 221, !- Rendering Red Value + 160, !- Rendering Green Value + 221; !- Rendering Blue Value + +OS:Rendering:Color, + {46dc58c7-b8ea-415a-8606-35a0b11fe039}, !- Handle + Rendering Color 51, !- Name + 192, !- Rendering Red Value + 192, !- Rendering Green Value + 192; !- Rendering Blue Value + +OS:Rendering:Color, + {b4a51fb4-31db-4ab6-b13d-652c879a9a2c}, !- Handle + Rendering Color 52, !- Name + 245, !- Rendering Red Value + 245, !- Rendering Green Value + 245; !- Rendering Blue Value + +OS:Rendering:Color, + {50151bcc-32ed-4ff3-8085-9658f2079102}, !- Handle + Rendering Color 53, !- Name + 255, !- Rendering Red Value + 228, !- Rendering Green Value + 225; !- Rendering Blue Value + +OS:Rendering:Color, + {db7b8f16-f0f4-463e-a33a-c93df442ca33}, !- Handle + Rendering Color 54, !- Name + 0, !- Rendering Red Value + 0, !- Rendering Green Value + 139; !- Rendering Blue Value + +OS:Rendering:Color, + {2582cb70-8314-41a6-ac75-d4fef244dffc}, !- Handle + Rendering Color 55, !- Name + 32, !- Rendering Red Value + 178, !- Rendering Green Value + 170; !- Rendering Blue Value + +OS:Rendering:Color, + {b95d9e0a-a5a9-4295-870c-608321ecd650}, !- Handle + Rendering Color 56, !- Name + 219, !- Rendering Red Value + 112, !- Rendering Green Value + 147; !- Rendering Blue Value + +OS:Rendering:Color, + {16a7176a-d244-49b5-bec6-6d107e067adf}, !- Handle + Rendering Color 57, !- Name + 165, !- Rendering Red Value + 42, !- Rendering Green Value + 42; !- Rendering Blue Value + +OS:Rendering:Color, + {71ceef6d-12d0-4e82-89ca-e3101fac6664}, !- Handle + Rendering Color 58, !- Name + 0, !- Rendering Red Value + 0, !- Rendering Green Value + 0; !- Rendering Blue Value + +OS:BuildingStory, + {50868583-cd6e-4b33-9980-93aced1f0725}, !- Handle + Building Story 1, !- Name + 0, !- Nominal Z Coordinate {m} + 3.048, !- Nominal Floor to Floor Height {m} + , !- Default Construction Set Name + , !- Default Schedule Set Name + {3382e11a-163a-4157-8831-d7c6831e1559}; !- Group Rendering Name + +OS:Space, + {5d7c8dbb-9c19-4b55-8b12-ebb5162e3678}, !- Handle + Space 101, !- Name + , !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + , !- Direction of Relative North {deg} + 0, !- X Origin {m} + 3.048, !- Y Origin {m} + 0, !- Z Origin {m} + {50868583-cd6e-4b33-9980-93aced1f0725}; !- Building Story Name + +OS:Surface, + {34613696-6b52-44f1-a5ff-a36900647fd1}, !- Handle + Surface 1, !- Name + Floor, !- Surface Type + , !- Construction Name + {5d7c8dbb-9c19-4b55-8b12-ebb5162e3678}, !- Space Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.048, 0, 0, !- X,Y,Z Vertex 1 {m} + 3.048, -3.048, 0, !- X,Y,Z Vertex 2 {m} + 0, -3.048, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {e6da7134-b845-4c2b-92d8-471d959b0232}, !- Handle + Surface 2, !- Name + Wall, !- Surface Type + , !- Construction Name + {5d7c8dbb-9c19-4b55-8b12-ebb5162e3678}, !- Space Name + Surface, !- Outside Boundary Condition + {002dd6d5-ccf2-4528-bee3-372935270e38}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.048, 0, 3.048, !- X,Y,Z Vertex 1 {m} + 3.048, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {8e228e17-f447-4351-8255-68a903116bf5}, !- Handle + Surface 3, !- Name + Wall, !- Surface Type + , !- Construction Name + {5d7c8dbb-9c19-4b55-8b12-ebb5162e3678}, !- Space Name + Surface, !- Outside Boundary Condition + {0931ca6c-82dd-4ac5-8014-24c0b87d9ba8}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.048, -3.048, 3.048, !- X,Y,Z Vertex 1 {m} + 3.048, -3.048, 0, !- X,Y,Z Vertex 2 {m} + 3.048, 0, 0, !- X,Y,Z Vertex 3 {m} + 3.048, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {5cfd7343-beef-4dd8-96ff-05ad91c84aad}, !- Handle + Surface 4, !- Name + Wall, !- Surface Type + , !- Construction Name + {5d7c8dbb-9c19-4b55-8b12-ebb5162e3678}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, -3.048, 3.048, !- X,Y,Z Vertex 1 {m} + 0, -3.048, 0, !- X,Y,Z Vertex 2 {m} + 3.048, -3.048, 0, !- X,Y,Z Vertex 3 {m} + 3.048, -3.048, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {bf033db5-8c2d-4f1b-b467-6f8ae942fd52}, !- Handle + Surface 5, !- Name + Wall, !- Surface Type + , !- Construction Name + {5d7c8dbb-9c19-4b55-8b12-ebb5162e3678}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, -3.048, 0, !- X,Y,Z Vertex 3 {m} + 0, -3.048, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {2ee589ef-ee4e-4ccf-82dc-5bd481b7f155}, !- Handle + Surface 6, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {5d7c8dbb-9c19-4b55-8b12-ebb5162e3678}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.048, -3.048, 3.048, !- X,Y,Z Vertex 1 {m} + 3.048, 0, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 0, 3.048, !- X,Y,Z Vertex 3 {m} + 0, -3.048, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {8e444b86-da4a-4808-a97b-44d486743eb3}, !- Handle + Space 102, !- Name + , !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + , !- Direction of Relative North {deg} + 6.096, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + {50868583-cd6e-4b33-9980-93aced1f0725}; !- Building Story Name + +OS:Surface, + {19d18d73-c9ca-4549-a15e-3a457813fcf2}, !- Handle + Surface 7, !- Name + Floor, !- Surface Type + , !- Construction Name + {8e444b86-da4a-4808-a97b-44d486743eb3}, !- Space Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 3.048, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -3.048, 0, 0, !- X,Y,Z Vertex 3 {m} + -3.048, 3.048, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {b3fe4f2a-ff3a-493e-9743-c7be2c1ce9d2}, !- Handle + Surface 8, !- Name + Wall, !- Surface Type + , !- Construction Name + {8e444b86-da4a-4808-a97b-44d486743eb3}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -3.048, 0, 3.048, !- X,Y,Z Vertex 1 {m} + -3.048, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {0931ca6c-82dd-4ac5-8014-24c0b87d9ba8}, !- Handle + Surface 9, !- Name + Wall, !- Surface Type + , !- Construction Name + {8e444b86-da4a-4808-a97b-44d486743eb3}, !- Space Name + Surface, !- Outside Boundary Condition + {8e228e17-f447-4351-8255-68a903116bf5}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -3.048, 3.048, 3.048, !- X,Y,Z Vertex 1 {m} + -3.048, 3.048, 0, !- X,Y,Z Vertex 2 {m} + -3.048, 0, 0, !- X,Y,Z Vertex 3 {m} + -3.048, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {53f098ba-949b-4003-a566-b63754a87202}, !- Handle + Surface 10, !- Name + Wall, !- Surface Type + , !- Construction Name + {8e444b86-da4a-4808-a97b-44d486743eb3}, !- Space Name + Surface, !- Outside Boundary Condition + {a0c1b5bc-da84-48af-8e48-32fcb79ef150}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 3.048, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 3.048, 0, !- X,Y,Z Vertex 2 {m} + -3.048, 3.048, 0, !- X,Y,Z Vertex 3 {m} + -3.048, 3.048, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {80879f81-820f-4603-b611-b68e1595cb6e}, !- Handle + Surface 11, !- Name + Wall, !- Surface Type + , !- Construction Name + {8e444b86-da4a-4808-a97b-44d486743eb3}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 3.048, 0, !- X,Y,Z Vertex 3 {m} + 0, 3.048, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {7fab646c-6a8f-452d-8ba0-c4c385d0eb50}, !- Handle + Surface 12, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {8e444b86-da4a-4808-a97b-44d486743eb3}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 3.048, 3.048, !- X,Y,Z Vertex 2 {m} + -3.048, 3.048, 3.048, !- X,Y,Z Vertex 3 {m} + -3.048, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {b5a1aae9-e0e9-4254-bf19-cebfb520aed5}, !- Handle + Space 103, !- Name + , !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + , !- Direction of Relative North {deg} + 0, !- X Origin {m} + 6.096, !- Y Origin {m} + 0, !- Z Origin {m} + {50868583-cd6e-4b33-9980-93aced1f0725}; !- Building Story Name + +OS:Surface, + {74a5de71-ac42-4838-888e-c4db7769715a}, !- Handle + Surface 13, !- Name + Floor, !- Surface Type + , !- Construction Name + {b5a1aae9-e0e9-4254-bf19-cebfb520aed5}, !- Space Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.048, 0, 0, !- X,Y,Z Vertex 1 {m} + 3.048, -3.048, 0, !- X,Y,Z Vertex 2 {m} + 0, -3.048, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {04c217f9-794f-482e-9566-bc9939ac2b67}, !- Handle + Surface 14, !- Name + Wall, !- Surface Type + , !- Construction Name + {b5a1aae9-e0e9-4254-bf19-cebfb520aed5}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.048, 0, 3.048, !- X,Y,Z Vertex 1 {m} + 3.048, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {35cbb3e8-0b70-4fd5-9713-bb391d09a5fc}, !- Handle + Surface 15, !- Name + Wall, !- Surface Type + , !- Construction Name + {b5a1aae9-e0e9-4254-bf19-cebfb520aed5}, !- Space Name + Surface, !- Outside Boundary Condition + {2380e7e5-5843-486a-880b-888b9dee3a31}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.048, -3.048, 3.048, !- X,Y,Z Vertex 1 {m} + 3.048, -3.048, 0, !- X,Y,Z Vertex 2 {m} + 3.048, 0, 0, !- X,Y,Z Vertex 3 {m} + 3.048, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {002dd6d5-ccf2-4528-bee3-372935270e38}, !- Handle + Surface 16, !- Name + Wall, !- Surface Type + , !- Construction Name + {b5a1aae9-e0e9-4254-bf19-cebfb520aed5}, !- Space Name + Surface, !- Outside Boundary Condition + {e6da7134-b845-4c2b-92d8-471d959b0232}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, -3.048, 3.048, !- X,Y,Z Vertex 1 {m} + 0, -3.048, 0, !- X,Y,Z Vertex 2 {m} + 3.048, -3.048, 0, !- X,Y,Z Vertex 3 {m} + 3.048, -3.048, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {29c6e6ba-2a04-4ad6-9f09-69b0692bd305}, !- Handle + Surface 17, !- Name + Wall, !- Surface Type + , !- Construction Name + {b5a1aae9-e0e9-4254-bf19-cebfb520aed5}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, -3.048, 0, !- X,Y,Z Vertex 3 {m} + 0, -3.048, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {f7e843c5-68c1-43f0-9204-c49b0f3332a6}, !- Handle + Surface 18, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {b5a1aae9-e0e9-4254-bf19-cebfb520aed5}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.048, -3.048, 3.048, !- X,Y,Z Vertex 1 {m} + 3.048, 0, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 0, 3.048, !- X,Y,Z Vertex 3 {m} + 0, -3.048, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {3810e56a-95f5-4687-b896-06caf8120348}, !- Handle + Space 104, !- Name + , !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + , !- Direction of Relative North {deg} + 6.096, !- X Origin {m} + 3.048, !- Y Origin {m} + 0, !- Z Origin {m} + {50868583-cd6e-4b33-9980-93aced1f0725}; !- Building Story Name + +OS:Surface, + {81f77032-b16a-42d2-9517-02ae4c166df8}, !- Handle + Surface 19, !- Name + Floor, !- Surface Type + , !- Construction Name + {3810e56a-95f5-4687-b896-06caf8120348}, !- Space Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 3.048, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -3.048, 0, 0, !- X,Y,Z Vertex 3 {m} + -3.048, 3.048, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {a0c1b5bc-da84-48af-8e48-32fcb79ef150}, !- Handle + Surface 20, !- Name + Wall, !- Surface Type + , !- Construction Name + {3810e56a-95f5-4687-b896-06caf8120348}, !- Space Name + Surface, !- Outside Boundary Condition + {53f098ba-949b-4003-a566-b63754a87202}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -3.048, 0, 3.048, !- X,Y,Z Vertex 1 {m} + -3.048, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {2380e7e5-5843-486a-880b-888b9dee3a31}, !- Handle + Surface 21, !- Name + Wall, !- Surface Type + , !- Construction Name + {3810e56a-95f5-4687-b896-06caf8120348}, !- Space Name + Surface, !- Outside Boundary Condition + {35cbb3e8-0b70-4fd5-9713-bb391d09a5fc}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -3.048, 3.048, 3.048, !- X,Y,Z Vertex 1 {m} + -3.048, 3.048, 0, !- X,Y,Z Vertex 2 {m} + -3.048, 0, 0, !- X,Y,Z Vertex 3 {m} + -3.048, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {3ce940a4-dffc-4da5-8e17-a47c6fde3c37}, !- Handle + Surface 22, !- Name + Wall, !- Surface Type + , !- Construction Name + {3810e56a-95f5-4687-b896-06caf8120348}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 3.048, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 3.048, 0, !- X,Y,Z Vertex 2 {m} + -3.048, 3.048, 0, !- X,Y,Z Vertex 3 {m} + -3.048, 3.048, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {5adfa187-cd8e-4214-9ea8-4a4f634cf64c}, !- Handle + Surface 23, !- Name + Wall, !- Surface Type + , !- Construction Name + {3810e56a-95f5-4687-b896-06caf8120348}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 3.048, 0, !- X,Y,Z Vertex 3 {m} + 0, 3.048, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {8d537633-3f6b-476a-b746-cea3a8736eed}, !- Handle + Surface 24, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {3810e56a-95f5-4687-b896-06caf8120348}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 3.048, 3.048, !- X,Y,Z Vertex 2 {m} + -3.048, 3.048, 3.048, !- X,Y,Z Vertex 3 {m} + -3.048, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Rendering:Color, + {3382e11a-163a-4157-8831-d7c6831e1559}, !- Handle + Rendering Color 59, !- Name + 186, !- Rendering Red Value + 85, !- Rendering Green Value + 211; !- Rendering Blue Value + +OS:SubSurface, + {c338f8b3-5a59-499c-98ca-df5a820387cd}, !- Handle + Sub Surface 1, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {04c217f9-794f-482e-9566-bc9939ac2b67}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 3.0226, 0, 1.99986440677966, !- X,Y,Z Vertex 1 {m} + 3.0226, 0, 0.76, !- X,Y,Z Vertex 2 {m} + 0.0254000000000003, 0, 0.76, !- X,Y,Z Vertex 3 {m} + 0.0254000000000003, 0, 1.99986440677966; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {dbcac169-5385-435a-ac98-e7891b7f2a0a}, !- Handle + Sub Surface 2, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {29c6e6ba-2a04-4ad6-9f09-69b0692bd305}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 0, -0.0254, 1.99986440677966, !- X,Y,Z Vertex 1 {m} + 0, -0.0254, 0.76, !- X,Y,Z Vertex 2 {m} + 0, -3.0226, 0.76, !- X,Y,Z Vertex 3 {m} + 0, -3.0226, 1.99986440677966; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {bf6c0bb6-20be-45a4-a12e-df2480492bc9}, !- Handle + Sub Surface 3, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {3ce940a4-dffc-4da5-8e17-a47c6fde3c37}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -0.0254, 3.048, 1.99986440677966, !- X,Y,Z Vertex 1 {m} + -0.0254, 3.048, 0.76, !- X,Y,Z Vertex 2 {m} + -3.0226, 3.048, 0.76, !- X,Y,Z Vertex 3 {m} + -3.0226, 3.048, 1.99986440677966; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {d4037884-9d56-4f6f-ac6d-65640af8fdc2}, !- Handle + Sub Surface 4, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {5adfa187-cd8e-4214-9ea8-4a4f634cf64c}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 0, 0.0254, 1.99986440677966, !- X,Y,Z Vertex 1 {m} + 0, 0.0254, 0.76, !- X,Y,Z Vertex 2 {m} + 0, 3.0226, 0.76, !- X,Y,Z Vertex 3 {m} + 0, 3.0226, 1.99986440677966; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {e34c1857-0462-47ea-9da7-7fe1b23da808}, !- Handle + Sub Surface 5, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {5cfd7343-beef-4dd8-96ff-05ad91c84aad}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 0.0254, -3.048, 1.99986440677966, !- X,Y,Z Vertex 1 {m} + 0.0254, -3.048, 0.76, !- X,Y,Z Vertex 2 {m} + 3.0226, -3.048, 0.76, !- X,Y,Z Vertex 3 {m} + 3.0226, -3.048, 1.99986440677966; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {e7397205-f157-47fc-ad9a-a675aab3b3c7}, !- Handle + Sub Surface 6, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {80879f81-820f-4603-b611-b68e1595cb6e}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 0, 0.0254, 1.99986440677966, !- X,Y,Z Vertex 1 {m} + 0, 0.0254, 0.76, !- X,Y,Z Vertex 2 {m} + 0, 3.0226, 0.76, !- X,Y,Z Vertex 3 {m} + 0, 3.0226, 1.99986440677966; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {f4f4b729-630c-44aa-b175-61ca8c5dbc18}, !- Handle + Sub Surface 7, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {b3fe4f2a-ff3a-493e-9743-c7be2c1ce9d2}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -3.0226, 0, 1.99986440677966, !- X,Y,Z Vertex 1 {m} + -3.0226, 0, 0.76, !- X,Y,Z Vertex 2 {m} + -0.0254000000000003, 0, 0.76, !- X,Y,Z Vertex 3 {m} + -0.0254000000000003, 0, 1.99986440677966; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {3c09fbeb-0873-4676-861c-11a90d465e89}, !- Handle + Sub Surface 8, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {bf033db5-8c2d-4f1b-b467-6f8ae942fd52}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 0, -0.0254, 1.99986440677966, !- X,Y,Z Vertex 1 {m} + 0, -0.0254, 0.76, !- X,Y,Z Vertex 2 {m} + 0, -3.0226, 0.76, !- X,Y,Z Vertex 3 {m} + 0, -3.0226, 1.99986440677966; !- X,Y,Z Vertex 4 {m} + +OS:Site, + {e923bd3f-b042-4911-a936-d37cf26af839}, !- Handle + Site 1, !- Name + , !- Latitude {deg} + , !- Longitude {deg} + , !- Time Zone {hr} + , !- Elevation {m} + ; !- Terrain + +OS:YearDescription, + {b216c53e-5b6b-4973-8442-5822dbdeacee}; !- Handle + +OS:ClimateZones, + {221ea9ed-6eb8-4a9e-8e5a-9f17ea245a5b}, !- Handle + , !- Active Institution + , !- Active Year + ASHRAE, !- Climate Zone Institution Name 1 + ANSI/ASHRAE Standard 169, !- Climate Zone Document Name 1 + 2006, !- Climate Zone Document Year 1 + , !- Climate Zone Value 1 + CEC, !- Climate Zone Institution Name 2 + California Climate Zone Descriptions, !- Climate Zone Document Name 2 + 1995, !- Climate Zone Document Year 2 + ; !- Climate Zone Value 2 + +OS:SimulationControl, + {d7639ae2-d32d-4ec9-8805-d736b33d8ed7}; !- Handle + +OS:Sizing:Parameters, + {3e229137-ae9f-4efa-8ea3-4acd5b93cbd8}, !- Handle + 1.25, !- Heating Sizing Factor + 1.15; !- Cooling Sizing Factor + +OS:Timestep, + {92bdf5f7-18f8-48b3-8bdf-5b839c3592c3}, !- Handle + 6; !- Number of Timesteps per Hour + +OS:ShadowCalculation, + {ec138f8c-4f93-4204-88a2-991a62608f6a}, !- Handle + 20, !- Calculation Frequency + 15000; !- Maximum Figures in Shadow Overlap Calculations + +OS:HeatBalanceAlgorithm, + {f9a03de5-79c9-409d-a764-bd2a8d39b93c}, !- Handle + ConductionTransferFunction, !- Algorithm + 200; !- Surface Temperature Upper Limit {C} + +OS:RunPeriod, + {1e31b0fa-d387-4896-8e7e-30f2368f9e58}, !- Handle + Run Period 1, !- Name + 1, !- Begin Month + 1, !- Begin Day of Month + 12, !- End Month + 31, !- End Day of Month + , !- Use Weather File Holidays and Special Days + , !- Use Weather File Daylight Saving Period + , !- Apply Weekend Holiday Rule + , !- Use Weather File Rain Indicators + , !- Use Weather File Snow Indicators + ; !- Number of Times Runperiod to be Repeated + +OS:LifeCycleCost:Parameters, + {a836c392-6031-4709-b70f-0f9efa66e717}, !- Handle + , !- Analysis Type + , !- Discounting Convention + , !- Inflation Approach + , !- Real Discount Rate + , !- Nominal Discount Rate + , !- Inflation + , !- Base Date Month + , !- Base Date Year + , !- Service Date Month + , !- Service Date Year + ; !- Length of Study Period in Years + diff --git a/measures/LoadFlexibility/tests/test_load_flexibility.py b/measures/LoadFlexibility/tests/test_load_flexibility.py new file mode 100644 index 0000000000..d6ea1ac8a0 --- /dev/null +++ b/measures/LoadFlexibility/tests/test_load_flexibility.py @@ -0,0 +1,123 @@ +"""insert your copyright here.""" + +from pathlib import Path + +import openstudio +import os +import sys +os.environ['PYTEST_RUNNING'] = 'true' +# update python path to include parent folder +CURRENT_DIR_PATH = Path(__file__).parent.absolute() +sys.path.insert(0, str(CURRENT_DIR_PATH.parent)) +import dataclasses +from measure import LoadFlexibility +from resources.input_helper import OffsetTypeData, AbsoluteOffsetData, OffsetTimingData, RelativeOffsetData +sys.path.pop(0) +# del sys.modules['measure'] + + +class TestLoadFlexibility: + """Py.test module for LoadFlexibility.""" + + def test_number_of_arguments_and_argument_names(self): + """Test that the arguments are what we expect.""" + # create an instance of the measure + measure = LoadFlexibility() + + # make an empty model + model = openstudio.model.Model() + + # get arguments and test that they are what we are expecting + arguments = measure.arguments(model) + offset_type_fields = [f.name for f in dataclasses.fields(OffsetTypeData)] + absolute_fields = [f.name for f in dataclasses.fields(AbsoluteOffsetData)] + relative_fields = [f.name for f in dataclasses.fields(RelativeOffsetData)] + offset_timing_fields = [f.name for f in dataclasses.fields(OffsetTimingData)] + expected_all_args = sorted(offset_type_fields + absolute_fields + relative_fields + offset_timing_fields) + actual_all_args = sorted([arg.name() for arg in arguments]) + assert actual_all_args == expected_all_args + + # def test_valid_argument_values(self): + + # arg_dict = {} + # arg_dict['offset_type'] = OffsetType.relative + # arg_dict[AbsoluteOffsetData.cooling_on_peak_setpoint] + + # def test_bad_argument_values(self): + # """Test running the measure with inappropriate arguments, and that the measure reports failure.""" + # # create an instance of the measure + # measure = LoadFlexibility() + + # # create runner with empty OSW + # osw = openstudio.WorkflowJSON() + # runner = openstudio.measure.OSRunner(osw) + + # # Make an empty model + # model = openstudio.model.Model() + + # # get arguments + # arguments = measure.arguments(model) + # argument_map = openstudio.measure.convertOSArgumentVectorToMap(arguments) + + # # create hash of argument values. + # # If the argument has a default that you want to use, + # # you don't need it in the dict + # args_dict = {} + # args_dict["offset"] = -4 + + # # populate argument with specified hash value if specified + # for arg in arguments: + # temp_arg_var = arg.clone() + # if arg.name() in args_dict: + # assert temp_arg_var.setValue(args_dict[arg.name()]) + # argument_map[arg.name()] = temp_arg_var + + # # run the measure + # measure.run(model, runner, argument_map) + # result = runner.result() + + # # show the output + # # show_output(result) + # print(f"results: {result}") + + # # assert that it failed + # assert result.value().valueName() == "Fail" + + # def test_good_argument_values(self): + # """Test running the measure with inappropriate arguments, and that the measure reports failure.""" + # # create an instance of the measure + # measure = LoadFlexibility() + + # # create runner with empty OSW + # osw = openstudio.WorkflowJSON() + # runner = openstudio.measure.OSRunner(osw) + + # # Make an empty model + # model = openstudio.model.Model() + + # # get arguments + # arguments = measure.arguments(model) + # argument_map = openstudio.measure.convertOSArgumentVectorToMap(arguments) + + # # create hash of argument values. + # # If the argument has a default that you want to use, + # # you don't need it in the dict + # args_dict = {} + # args_dict["offset"] = 4 + + # # populate argument with specified hash value if specified + # for arg in arguments: + # temp_arg_var = arg.clone() + # if arg.name() in args_dict: + # assert temp_arg_var.setValue(args_dict[arg.name()]) + # argument_map[arg.name()] = temp_arg_var + + # # run the measure + # measure.run(model, runner, argument_map) + # result = runner.result() + # # show the output + # # show_output(result) + # print(f"results: {result}") + + # # assert that it failed + # assert result.value().valueName() == "Success" diff --git a/measures/LoadFlexibility/tests/xml_helper.py b/measures/LoadFlexibility/tests/xml_helper.py new file mode 100644 index 0000000000..d469ce7332 --- /dev/null +++ b/measures/LoadFlexibility/tests/xml_helper.py @@ -0,0 +1,146 @@ +import xml.etree.ElementTree as ET +import os + + +class XMLHelper: + @staticmethod + def add_element(parent, element_name, value=None, datatype=None, defaulted=False): + return XMLHelper.insert_element(parent, element_name, -1, value, datatype, defaulted) + + # def self.get_values(parent, element_name, datatype) + # values = [] + # parent.xpath(element_name).each do |value| + # value = value.text + + # if datatype == :integer + # value = to_integer_or_nil(value, parent, element_name) + # elsif datatype == :float + # value = to_float_or_nil(value, parent, element_name) + # elsif datatype == :boolean + # value = to_boolean_or_nil(value, parent, element_name) + # elsif datatype != :string + # fail 'Unexpected datatype.' + # end + + # values << value + # end + + # return values + # end + # Convert this ruby code to python + @staticmethod + def get_values(parent, element_name, datatype): + values = [] + for value in parent.findall(element_name): + value = value.text + if datatype == 'integer': + value = XMLHelper.to_integer(value) + elif datatype == 'float': + value = XMLHelper.to_float(value) + elif datatype == 'boolean': + value = XMLHelper.to_boolean(value) + elif datatype != 'string': + raise Exception('Unexpected datatype.') + values.append(value) + return values + + @staticmethod + def insert_element(parent, element_name, index=0, value=None, datatype=None, defaulted=False): + added = ET.Element(element_name) + if index == -1: + parent.append(added) + else: + parent.insert(index, added) + + if value is not None: + if datatype == 'integer': + value = XMLHelper.to_integer(value) + elif datatype == 'float': + value = XMLHelper.to_float(value) + elif datatype == 'boolean': + value = XMLHelper.to_boolean(value) + elif datatype != 'string': + raise Exception('Unexpected datatype') + added.text = str(value) + + if defaulted: + XMLHelper.add_attribute(added, 'dataSource', 'software') + + return added + + @staticmethod + def add_extension(parent, element_name, value=None, datatype=None, defaulted=False): + extension = XMLHelper.create_elements_as_needed(parent, ['extension']) + return XMLHelper.add_element(extension, element_name, value, datatype, defaulted) + + @staticmethod + def create_elements_as_needed(parent, element_names): + current_parent = parent + for element_name in element_names: + element = XMLHelper.get_element(current_parent, element_name) + if element is None: + XMLHelper.add_element(current_parent, element_name) + current_parent = XMLHelper.get_element(current_parent, + element_name) + return current_parent + + @staticmethod + def get_element(parent, element_name): + return parent.find(element_name) + + @staticmethod + def get_elements(parent, element_name): + return parent.findall(element_name) + + @staticmethod + def add_attribute(element, attr_name, attr_val): + element.set(attr_name, attr_val) + + @staticmethod + def get_attribute_value(element, attr_name): + return element.get(attr_name) + + @staticmethod + def create_doc(version=None, encoding=None, standalone=None): + xml_declaration = ''.format( + version or '1.0', encoding or 'UTF-8', standalone or 'no') + return ET.ElementTree(ET.Element('root')), xml_declaration + + @staticmethod + def parse_file(hpxml_path): + tree = ET.parse(hpxml_path) + return tree + + @staticmethod + def write_file(doc, out_path): + if not os.path.exists(os.path.dirname(out_path)): + os.makedirs(os.path.dirname(out_path)) + doc.write(out_path, encoding='utf-8', xml_declaration=True) + + @staticmethod + def to_float(value): + try: + return float(value) + except ValueError: + raise Exception(f"Cannot convert '{value}' to float.") + + @staticmethod + def to_integer(value): + try: + value = float(value) + except ValueError: + raise Exception(f"Cannot convert '{value}' to integer.") + if value.is_integer(): + return int(value) + else: + raise Exception(f"Cannot convert '{value}' to integer.") + + @staticmethod + def to_boolean(value): + str_value = str(value).lower() + if str_value in ['true', '1']: + return True + elif str_value in ['false', '0']: + return False + else: + raise Exception(f"Cannot convert '{value}' to boolean.") From f407433c59e7b5c547fc8b2730ffe3da7cc1a5db Mon Sep 17 00:00:00 2001 From: Rajendra Adhikari Date: Mon, 17 Jun 2024 06:43:01 -0500 Subject: [PATCH 02/21] Test calling measure through upgrade --- project_testing/testing_upgrades.yml | 218 +- resources/options_lookup.tsv | 27891 +++++++++++++------------ 2 files changed, 13949 insertions(+), 14160 deletions(-) diff --git a/project_testing/testing_upgrades.yml b/project_testing/testing_upgrades.yml index aa2fa64696..7e32672a42 100644 --- a/project_testing/testing_upgrades.yml +++ b/project_testing/testing_upgrades.yml @@ -99,222 +99,10 @@ baseline: n_buildings_represented: 110000000 upgrades: - - upgrade_name: Windows + - upgrade_name: load_flexibility options: - - &windows_triple_low_e_non_metal_l_gain - option: Windows|Triple, Low-E, Non-metal, Air, L-Gain - costs: - - value: 45.77 - multiplier: Window Area (ft^2) - lifetime: 30 + - option: Load Flexibility|default - - upgrade_name: Walls - options: - - &insulation_wall_wood_stud_r_13 - option: Insulation Wall|Wood Stud, R-13 - costs: - - value: 2.21 - multiplier: Wall Area, Above-Grade, Conditioned (ft^2) - lifetime: 999 - - - upgrade_name: Sheathing - options: - - &insulation_sheathing_r_5 - option: Insulation Sheathing|R-5 - costs: - - value: 2.01 - multiplier: Wall Area, Above-Grade, Conditioned (ft^2) - lifetime: 999 - - - upgrade_name: Foundation Type - package_apply_logic: - and: - - Geometry Foundation Type|Vented Crawlspace - - or: # Ensure that the dwelling unit being modeled is either (1) not in a multifamily building, or (2) on the bottom floor of a multifamily building and therefore above the crawlspace. - - Geometry Building Level MF|None - - Geometry Building Level MF|Bottom - options: - - &geometry_foundation_type_unvented_crawlspace - option: Geometry Foundation Type|Unvented Crawlspace - costs: - - value: 0.84 - multiplier: Floor Area, Foundation (ft^2) - lifetime: 999 - - &insulation_foundation_wall_wall_r_10_exterior - option: Insulation Foundation Wall|Wall R-10, Exterior - costs: - - value: 1.05 - multiplier: Wall Area, Below-Grade (ft^2) - lifetime: 999 - - - upgrade_name: Rim Joists - options: - - &insulation_rim_joist_r_13_interior - option: Insulation Rim Joist|R-13, Interior - costs: - - value: 3.11 - multiplier: Rim Joist Area, Above-Grade, Exterior (ft^2) - lifetime: 999 - - - upgrade_name: Ceilings - options: - - &insulation_ceiling_r_60 - option: Insulation Ceiling|R-60 - apply_logic: - or: - - Insulation Ceiling|R-49 - - Insulation Ceiling|R-30 - - Insulation Ceiling|R-19 - - Insulation Ceiling|R-13 - - Insulation Ceiling|R-7 - - Insulation Ceiling|Uninsulated - costs: - - value: 0.11 - multiplier: Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) - lifetime: 999 - - - upgrade_name: Air Leakage - options: - - &infiltration_reduction_25_percent - option: Infiltration Reduction|25% - costs: - - value: 1.50 - multiplier: Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) - lifetime: 999 - - - upgrade_name: Refrigerator - options: - - &refrigerator_ef_21_pt_9 - option: Refrigerator|EF 21.9 - - &refrigerator_100_percent_usage - option: Refrigerator Usage Level|100% Usage - costs: - - value: 2500.0 - multiplier: Fixed (1) - lifetime: 17.4 - - - upgrade_name: Lighting - options: - - &lighting_100_percent_led - option: Lighting|100% LED - costs: - - value: 0.75 - multiplier: Floor Area, Lighting (ft^2) - lifetime: 25 - - &lighting_interior_use_100_percent_usage - option: Lighting Interior Use|100% Usage - - &lighting_other_use_100_percent_usage - option: Lighting Other Use|100% Usage - - &holiday_lighting_no_exterior_use - option: Holiday Lighting|No Exterior Use - - - upgrade_name: ASHP - package_apply_logic: - - HVAC Has Ducts|Yes - options: - - &hvac_heating_efficiency_ashp_seer_22_10_hspf - option: HVAC Heating Efficiency|ASHP, SEER 22, 10 HSPF - costs: - - value: 50.0 - multiplier: Size, Heating System Primary (kBtu/h) - lifetime: 30 - - &hvac_cooling_efficiency_ducted_heat_pump - option: HVAC Cooling Efficiency|Ducted Heat Pump - - &heat_pump_backup_use_existing_system - option: Heat Pump Backup|Use Existing System - - &hvac_detailed_performance_data_default - option: HVAC Detailed Performance Data|Default - - - upgrade_name: MSHP - package_apply_logic: - - HVAC Has Ducts|Yes - options: - - &hvac_heating_efficiency_mshp_seer_25_12_pt_7_hspf_ducted - option: HVAC Heating Efficiency|MSHP, SEER 25, 12.7 HSPF, Ducted - costs: - - value: 50.0 - multiplier: Size, Heating System Primary (kBtu/h) - lifetime: 30 - - *hvac_cooling_efficiency_ducted_heat_pump - - *heat_pump_backup_use_existing_system - - &hvac_secondary_heating_efficiency_none - option: HVAC Secondary Heating Efficiency|None - - - upgrade_name: MSHP w/o Ducts - package_apply_logic: - - HVAC Has Ducts|No - options: - - &hvac_heating_efficiency_mshp_seer_25_12_pt_7_hspf - option: HVAC Heating Efficiency|MSHP, SEER 25, 12.7 HSPF - costs: - - value: 50.0 - multiplier: Size, Heating System Primary (kBtu/h) - lifetime: 30 - - &hvac_cooling_efficiency_non_ducted_heat_pump - option: HVAC Cooling Efficiency|Non-Ducted Heat Pump - - *heat_pump_backup_use_existing_system - - *hvac_detailed_performance_data_default - - - upgrade_name: GSHP - package_apply_logic: - - HVAC Has Ducts|Yes - options: - - &hvac_heating_efficiency_gshp_eer_20_pt_2_cop_4_pt_2 - option: HVAC Heating Efficiency|GSHP, EER 20.2, COP 4.2 - costs: - - value: 50.0 - multiplier: Size, Heating System Primary (kBtu/h) - lifetime: 30 - - *hvac_cooling_efficiency_ducted_heat_pump - - - upgrade_name: HPWH - options: - - &water_heater_efficiency_electric_heat_pump_66_gal_3_pt_35_uef - option: Water Heater Efficiency|Electric Heat Pump, 66 gal, 3.35 UEF - costs: - - value: 100.0 - multiplier: Size, Water Heater (gal) - lifetime: 12 - - &solar_hot_water_40_sqft_south_roof_pitch - option: Solar Hot Water|40 sqft, South, Roof Pitch - - - upgrade_name: PV - options: - - &has_pv_yes - option: Has PV|Yes - costs: - - value: 15000.0 - multiplier: Fixed (1) - lifetime: 30 - - &pv_system_size_5_pt_0_kwdc - option: PV System Size|5.0 kWDC - - &pv_orientation_south - option: PV Orientation|South - - - upgrade_name: Power Outage - options: - - &power_outage_summer - option: Power Outage|Summer - - - upgrade_name: Package Upgrade # except Foundation Type, HVAC, Power Outage - options: - - *windows_triple_low_e_non_metal_l_gain - - *insulation_wall_wood_stud_r_13 - - *insulation_sheathing_r_5 - - *insulation_rim_joist_r_13_interior - - *insulation_ceiling_r_60 - - *infiltration_reduction_25_percent - - *refrigerator_ef_21_pt_9 - - *refrigerator_100_percent_usage - - *lighting_100_percent_led - - *lighting_interior_use_100_percent_usage - - *lighting_other_use_100_percent_usage - - *holiday_lighting_no_exterior_use - - *water_heater_efficiency_electric_heat_pump_66_gal_3_pt_35_uef - - *solar_hot_water_40_sqft_south_roof_pitch - - *has_pv_yes - - *pv_system_size_5_pt_0_kwdc - - *pv_orientation_south eagle: n_jobs: 3 @@ -324,4 +112,4 @@ eagle: time: 20 n_workers: 1 sampling: - time: 10 + time: 10 \ No newline at end of file diff --git a/resources/options_lookup.tsv b/resources/options_lookup.tsv index 858435ade2..294a26829f 100644 --- a/resources/options_lookup.tsv +++ b/resources/options_lookup.tsv @@ -1,9736 +1,9736 @@ -Parameter Name Option Name Measure Dir Measure Arg 1 Measure Arg 2 ... -AHS Region "CBSA Atlanta-Sandy Springs-Roswell, GA" -AHS Region "CBSA Boston-Cambridge-Newton, MA-NH" -AHS Region "CBSA Chicago-Naperville-Elgin, IL-IN-WI" -AHS Region "CBSA Dallas-Fort Worth-Arlington, TX" -AHS Region "CBSA Detroit-Warren-Dearborn, MI" -AHS Region "CBSA Houston-The Woodlands-Sugar Land, TX" -AHS Region "CBSA Los Angeles-Long Beach-Anaheim, CA" -AHS Region "CBSA Miami-Fort Lauderdale-West Palm Beach, FL" -AHS Region "CBSA New York-Newark-Jersey City, NY-NJ-PA" -AHS Region "CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD" -AHS Region "CBSA Phoenix-Mesa-Scottsdale, AZ" -AHS Region "CBSA Riverside-San Bernardino-Ontario, CA" -AHS Region "CBSA San Francisco-Oakland-Hayward, CA" -AHS Region "CBSA Seattle-Tacoma-Bellevue, WA" -AHS Region "CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV" -AHS Region Non-CBSA East North Central -AHS Region Non-CBSA East South Central -AHS Region Non-CBSA Middle Atlantic -AHS Region Non-CBSA Mountain -AHS Region Non-CBSA New England -AHS Region Non-CBSA Pacific -AHS Region Non-CBSA South Atlantic -AHS Region Non-CBSA West North Central -AHS Region Non-CBSA West South Central -AIANNH Area No -AIANNH Area Yes -ASHRAE IECC Climate Zone 2004 1A ResStockArguments site_iecc_zone=1A site_type=auto -ASHRAE IECC Climate Zone 2004 2A ResStockArguments site_iecc_zone=2A site_type=auto -ASHRAE IECC Climate Zone 2004 2B ResStockArguments site_iecc_zone=2B site_type=auto -ASHRAE IECC Climate Zone 2004 3A ResStockArguments site_iecc_zone=3A site_type=auto -ASHRAE IECC Climate Zone 2004 3B ResStockArguments site_iecc_zone=3B site_type=auto -ASHRAE IECC Climate Zone 2004 3C ResStockArguments site_iecc_zone=3C site_type=auto -ASHRAE IECC Climate Zone 2004 4A ResStockArguments site_iecc_zone=4A site_type=auto -ASHRAE IECC Climate Zone 2004 4B ResStockArguments site_iecc_zone=4B site_type=auto -ASHRAE IECC Climate Zone 2004 4C ResStockArguments site_iecc_zone=4C site_type=auto -ASHRAE IECC Climate Zone 2004 5A ResStockArguments site_iecc_zone=5A site_type=auto -ASHRAE IECC Climate Zone 2004 5B ResStockArguments site_iecc_zone=5B site_type=auto -ASHRAE IECC Climate Zone 2004 6A ResStockArguments site_iecc_zone=6A site_type=auto -ASHRAE IECC Climate Zone 2004 6B ResStockArguments site_iecc_zone=6B site_type=auto -ASHRAE IECC Climate Zone 2004 7A ResStockArguments site_iecc_zone=7 site_type=auto -ASHRAE IECC Climate Zone 2004 7AK ResStockArguments site_iecc_zone=7 site_type=auto -ASHRAE IECC Climate Zone 2004 7B ResStockArguments site_iecc_zone=7 site_type=auto -ASHRAE IECC Climate Zone 2004 8AK ResStockArguments site_iecc_zone=8 site_type=auto -ASHRAE IECC Climate Zone 2004 - 2A Split "2A - FL, GA, AL, MS" -ASHRAE IECC Climate Zone 2004 - 2A Split "2A - TX, LA" -ASHRAE IECC Climate Zone 2004 - 2A Split 1A -ASHRAE IECC Climate Zone 2004 - 2A Split 2B -ASHRAE IECC Climate Zone 2004 - 2A Split 3A -ASHRAE IECC Climate Zone 2004 - 2A Split 3B -ASHRAE IECC Climate Zone 2004 - 2A Split 3C -ASHRAE IECC Climate Zone 2004 - 2A Split 4A -ASHRAE IECC Climate Zone 2004 - 2A Split 4B -ASHRAE IECC Climate Zone 2004 - 2A Split 4C -ASHRAE IECC Climate Zone 2004 - 2A Split 5A -ASHRAE IECC Climate Zone 2004 - 2A Split 5B -ASHRAE IECC Climate Zone 2004 - 2A Split 6A -ASHRAE IECC Climate Zone 2004 - 2A Split 6B -ASHRAE IECC Climate Zone 2004 - 2A Split 7A -ASHRAE IECC Climate Zone 2004 - 2A Split 7AK -ASHRAE IECC Climate Zone 2004 - 2A Split 7B -ASHRAE IECC Climate Zone 2004 - 2A Split 8AK -Area Median Income 0-30% -Area Median Income 100-120% -Area Median Income 120-150% -Area Median Income 150%+ -Area Median Income 30-60% -Area Median Income 60-80% -Area Median Income 80-100% -Area Median Income Not Available -Bathroom Spot Vent Hour Hour0 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=0 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour1 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=1 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour10 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=10 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour11 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=11 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour12 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=12 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour13 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=13 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour14 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=14 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour15 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=15 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour16 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=16 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour17 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=17 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour18 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=18 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour19 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=19 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour2 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=2 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour20 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=20 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour21 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=21 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour22 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=22 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour23 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=23 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour3 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=3 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour4 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=4 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour5 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=5 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour6 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=6 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour7 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=7 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour8 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=8 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour9 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=9 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Battery "20 kWh, 80% Round Trip Efficiency" ResStockArguments battery_present=true battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=0.8 -Battery "20 kWh, Garage" ResStockArguments battery_present=true battery_location=garage battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto -Battery "20 kWh, Outside" ResStockArguments battery_present=true battery_location=outside battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto -Battery 10 kWh ResStockArguments battery_present=true battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto -Battery None ResStockArguments battery_present=false battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto -Bedrooms 1 ResStockArguments geometry_unit_num_bedrooms=1 geometry_unit_num_bathrooms=auto -Bedrooms 2 ResStockArguments geometry_unit_num_bedrooms=2 geometry_unit_num_bathrooms=auto -Bedrooms 3 ResStockArguments geometry_unit_num_bedrooms=3 geometry_unit_num_bathrooms=auto -Bedrooms 4 ResStockArguments geometry_unit_num_bedrooms=4 geometry_unit_num_bathrooms=auto -Bedrooms 5 ResStockArguments geometry_unit_num_bedrooms=5 geometry_unit_num_bathrooms=auto -Building America Climate Zone Cold -Building America Climate Zone Hot-Dry -Building America Climate Zone Hot-Humid -Building America Climate Zone Marine -Building America Climate Zone Mixed-Dry -Building America Climate Zone Mixed-Humid -Building America Climate Zone Subarctic -Building America Climate Zone Very Cold -CEC Climate Zone 1 -CEC Climate Zone 10 -CEC Climate Zone 11 -CEC Climate Zone 12 -CEC Climate Zone 13 -CEC Climate Zone 14 -CEC Climate Zone 15 -CEC Climate Zone 16 -CEC Climate Zone 2 -CEC Climate Zone 3 -CEC Climate Zone 4 -CEC Climate Zone 5 -CEC Climate Zone 6 -CEC Climate Zone 7 -CEC Climate Zone 8 -CEC Climate Zone 9 -CEC Climate Zone None -Ceiling Fan "Premium Efficiency, 0.5F Offset" ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=140.8 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0.5 -Ceiling Fan "Standard Efficiency, 0.5F Offset" ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=70.4 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0.5 -Ceiling Fan "Standard Efficiency, No usage" ResStockArguments ceiling_fan_present=false ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=0 ceiling_fan_quantity=0 ceiling_fan_cooling_setpoint_temp_offset=0 -Ceiling Fan None ResStockArguments ceiling_fan_present=false ceiling_fan_label_energy_use=0 ceiling_fan_efficiency=0 ceiling_fan_quantity=0 ceiling_fan_cooling_setpoint_temp_offset=0 -Ceiling Fan Premium Efficiency ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=140.8 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0 -Ceiling Fan Standard Efficiency ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=70.4 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0 -Census Division East North Central -Census Division East South Central -Census Division Middle Atlantic -Census Division Mountain -Census Division New England -Census Division Pacific -Census Division South Atlantic -Census Division West North Central -Census Division West South Central -Census Division RECS East North Central -Census Division RECS East South Central -Census Division RECS Middle Atlantic -Census Division RECS Mountain North -Census Division RECS Mountain South -Census Division RECS New England -Census Division RECS Pacific -Census Division RECS South Atlantic -Census Division RECS West North Central -Census Division RECS West South Central -Census Region Midwest -Census Region Northeast -Census Region South -Census Region West -City "AK, Anchorage" ResStockArguments site_city=auto -City "AL, Auburn" ResStockArguments site_city=auto -City "AL, Birmingham" ResStockArguments site_city=auto -City "AL, Decatur" ResStockArguments site_city=auto -City "AL, Dothan" ResStockArguments site_city=auto -City "AL, Florence" ResStockArguments site_city=auto -City "AL, Gadsden" ResStockArguments site_city=auto -City "AL, Hoover" ResStockArguments site_city=auto -City "AL, Huntsville" ResStockArguments site_city=auto -City "AL, Madison" ResStockArguments site_city=auto -City "AL, Mobile" ResStockArguments site_city=auto -City "AL, Montgomery" ResStockArguments site_city=auto -City "AL, Phenix City" ResStockArguments site_city=auto -City "AL, Tuscaloosa" ResStockArguments site_city=auto -City "AR, Bentonville" ResStockArguments site_city=auto -City "AR, Conway" ResStockArguments site_city=auto -City "AR, Fayetteville" ResStockArguments site_city=auto -City "AR, Fort Smith" ResStockArguments site_city=auto -City "AR, Hot Springs" ResStockArguments site_city=auto -City "AR, Jonesboro" ResStockArguments site_city=auto -City "AR, Little Rock" ResStockArguments site_city=auto -City "AR, North Little Rock" ResStockArguments site_city=auto -City "AR, Pine Bluff" ResStockArguments site_city=auto -City "AR, Rogers" ResStockArguments site_city=auto -City "AR, Springdale" ResStockArguments site_city=auto -City "AZ, Apache Junction" ResStockArguments site_city=auto -City "AZ, Avondale" ResStockArguments site_city=auto -City "AZ, Buckeye" ResStockArguments site_city=auto -City "AZ, Bullhead City" ResStockArguments site_city=auto -City "AZ, Casa Grande" ResStockArguments site_city=auto -City "AZ, Casas Adobes" ResStockArguments site_city=auto -City "AZ, Catalina Foothills" ResStockArguments site_city=auto -City "AZ, Chandler" ResStockArguments site_city=auto -City "AZ, Flagstaff" ResStockArguments site_city=auto -City "AZ, Fortuna Foothills" ResStockArguments site_city=auto -City "AZ, Gilbert" ResStockArguments site_city=auto -City "AZ, Glendale" ResStockArguments site_city=auto -City "AZ, Goodyear" ResStockArguments site_city=auto -City "AZ, Green Valley" ResStockArguments site_city=auto -City "AZ, Lake Havasu City" ResStockArguments site_city=auto -City "AZ, Marana" ResStockArguments site_city=auto -City "AZ, Maricopa" ResStockArguments site_city=auto -City "AZ, Mesa" ResStockArguments site_city=auto -City "AZ, Oro Valley" ResStockArguments site_city=auto -City "AZ, Peoria" ResStockArguments site_city=auto -City "AZ, Phoenix" ResStockArguments site_city=auto -City "AZ, Prescott Valley" ResStockArguments site_city=auto -City "AZ, Prescott" ResStockArguments site_city=auto -City "AZ, San Tan Valley" ResStockArguments site_city=auto -City "AZ, Scottsdale" ResStockArguments site_city=auto -City "AZ, Sierra Vista" ResStockArguments site_city=auto -City "AZ, Sun City West" ResStockArguments site_city=auto -City "AZ, Sun City" ResStockArguments site_city=auto -City "AZ, Surprise" ResStockArguments site_city=auto -City "AZ, Tempe" ResStockArguments site_city=auto -City "AZ, Tucson" ResStockArguments site_city=auto -City "AZ, Yuma" ResStockArguments site_city=auto -City "CA, Alameda" ResStockArguments site_city=auto -City "CA, Alhambra" ResStockArguments site_city=auto -City "CA, Aliso Viejo" ResStockArguments site_city=auto -City "CA, Altadena" ResStockArguments site_city=auto -City "CA, Anaheim" ResStockArguments site_city=auto -City "CA, Antioch" ResStockArguments site_city=auto -City "CA, Apple Valley" ResStockArguments site_city=auto -City "CA, Arcadia" ResStockArguments site_city=auto -City "CA, Arden-Arcade" ResStockArguments site_city=auto -City "CA, Bakersfield" ResStockArguments site_city=auto -City "CA, Baldwin Park" ResStockArguments site_city=auto -City "CA, Bellflower" ResStockArguments site_city=auto -City "CA, Berkeley" ResStockArguments site_city=auto -City "CA, Beverly Hills" ResStockArguments site_city=auto -City "CA, Brea" ResStockArguments site_city=auto -City "CA, Brentwood" ResStockArguments site_city=auto -City "CA, Buena Park" ResStockArguments site_city=auto -City "CA, Burbank" ResStockArguments site_city=auto -City "CA, Camarillo" ResStockArguments site_city=auto -City "CA, Campbell" ResStockArguments site_city=auto -City "CA, Carlsbad" ResStockArguments site_city=auto -City "CA, Carmichael" ResStockArguments site_city=auto -City "CA, Carson" ResStockArguments site_city=auto -City "CA, Castro Valley" ResStockArguments site_city=auto -City "CA, Cathedral City" ResStockArguments site_city=auto -City "CA, Cerritos" ResStockArguments site_city=auto -City "CA, Chico" ResStockArguments site_city=auto -City "CA, Chino Hills" ResStockArguments site_city=auto -City "CA, Chino" ResStockArguments site_city=auto -City "CA, Chula Vista" ResStockArguments site_city=auto -City "CA, Citrus Heights" ResStockArguments site_city=auto -City "CA, Clovis" ResStockArguments site_city=auto -City "CA, Colton" ResStockArguments site_city=auto -City "CA, Compton" ResStockArguments site_city=auto -City "CA, Concord" ResStockArguments site_city=auto -City "CA, Corona" ResStockArguments site_city=auto -City "CA, Costa Mesa" ResStockArguments site_city=auto -City "CA, Covina" ResStockArguments site_city=auto -City "CA, Culver City" ResStockArguments site_city=auto -City "CA, Cupertino" ResStockArguments site_city=auto -City "CA, Cypress" ResStockArguments site_city=auto -City "CA, Daly City" ResStockArguments site_city=auto -City "CA, Dana Point" ResStockArguments site_city=auto -City "CA, Danville" ResStockArguments site_city=auto -City "CA, Davis" ResStockArguments site_city=auto -City "CA, Diamond Bar" ResStockArguments site_city=auto -City "CA, Downey" ResStockArguments site_city=auto -City "CA, Dublin" ResStockArguments site_city=auto -City "CA, East Los Angeles" ResStockArguments site_city=auto -City "CA, El Cajon" ResStockArguments site_city=auto -City "CA, El Dorado Hills" ResStockArguments site_city=auto -City "CA, El Monte" ResStockArguments site_city=auto -City "CA, Elk Grove" ResStockArguments site_city=auto -City "CA, Encinitas" ResStockArguments site_city=auto -City "CA, Escondido" ResStockArguments site_city=auto -City "CA, Fairfield" ResStockArguments site_city=auto -City "CA, Florence-Graham" ResStockArguments site_city=auto -City "CA, Florin" ResStockArguments site_city=auto -City "CA, Folsom" ResStockArguments site_city=auto -City "CA, Fontana" ResStockArguments site_city=auto -City "CA, Fountain Valley" ResStockArguments site_city=auto -City "CA, Fremont" ResStockArguments site_city=auto -City "CA, Fresno" ResStockArguments site_city=auto -City "CA, Fullerton" ResStockArguments site_city=auto -City "CA, Garden Grove" ResStockArguments site_city=auto -City "CA, Gardena" ResStockArguments site_city=auto -City "CA, Gilroy" ResStockArguments site_city=auto -City "CA, Glendale" ResStockArguments site_city=auto -City "CA, Glendora" ResStockArguments site_city=auto -City "CA, Hacienda Heights" ResStockArguments site_city=auto -City "CA, Hanford" ResStockArguments site_city=auto -City "CA, Hawthorne" ResStockArguments site_city=auto -City "CA, Hayward" ResStockArguments site_city=auto -City "CA, Hemet" ResStockArguments site_city=auto -City "CA, Hesperia" ResStockArguments site_city=auto -City "CA, Highland" ResStockArguments site_city=auto -City "CA, Huntington Beach" ResStockArguments site_city=auto -City "CA, Huntington Park" ResStockArguments site_city=auto -City "CA, Indio" ResStockArguments site_city=auto -City "CA, Inglewood" ResStockArguments site_city=auto -City "CA, Irvine" ResStockArguments site_city=auto -City "CA, La Habra" ResStockArguments site_city=auto -City "CA, La Mesa" ResStockArguments site_city=auto -City "CA, La Quinta" ResStockArguments site_city=auto -City "CA, Laguna Niguel" ResStockArguments site_city=auto -City "CA, Lake Elsinore" ResStockArguments site_city=auto -City "CA, Lake Forest" ResStockArguments site_city=auto -City "CA, Lakewood" ResStockArguments site_city=auto -City "CA, Lancaster" ResStockArguments site_city=auto -City "CA, Lincoln" ResStockArguments site_city=auto -City "CA, Livermore" ResStockArguments site_city=auto -City "CA, Lodi" ResStockArguments site_city=auto -City "CA, Long Beach" ResStockArguments site_city=auto -City "CA, Los Angeles" ResStockArguments site_city=auto -City "CA, Lynwood" ResStockArguments site_city=auto -City "CA, Madera" ResStockArguments site_city=auto -City "CA, Manhattan Beach" ResStockArguments site_city=auto -City "CA, Manteca" ResStockArguments site_city=auto -City "CA, Martinez" ResStockArguments site_city=auto -City "CA, Menifee" ResStockArguments site_city=auto -City "CA, Merced" ResStockArguments site_city=auto -City "CA, Milpitas" ResStockArguments site_city=auto -City "CA, Mission Viejo" ResStockArguments site_city=auto -City "CA, Modesto" ResStockArguments site_city=auto -City "CA, Montebello" ResStockArguments site_city=auto -City "CA, Monterey Park" ResStockArguments site_city=auto -City "CA, Moreno Valley" ResStockArguments site_city=auto -City "CA, Mountain View" ResStockArguments site_city=auto -City "CA, Murrieta" ResStockArguments site_city=auto -City "CA, Napa" ResStockArguments site_city=auto -City "CA, National City" ResStockArguments site_city=auto -City "CA, Newport Beach" ResStockArguments site_city=auto -City "CA, North Highlands" ResStockArguments site_city=auto -City "CA, Norwalk" ResStockArguments site_city=auto -City "CA, Novato" ResStockArguments site_city=auto -City "CA, Oakland" ResStockArguments site_city=auto -City "CA, Oceanside" ResStockArguments site_city=auto -City "CA, Ontario" ResStockArguments site_city=auto -City "CA, Orange" ResStockArguments site_city=auto -City "CA, Oxnard" ResStockArguments site_city=auto -City "CA, Palm Desert" ResStockArguments site_city=auto -City "CA, Palm Springs" ResStockArguments site_city=auto -City "CA, Palmdale" ResStockArguments site_city=auto -City "CA, Palo Alto" ResStockArguments site_city=auto -City "CA, Pasadena" ResStockArguments site_city=auto -City "CA, Perris" ResStockArguments site_city=auto -City "CA, Petaluma" ResStockArguments site_city=auto -City "CA, Pico Rivera" ResStockArguments site_city=auto -City "CA, Pittsburg" ResStockArguments site_city=auto -City "CA, Placentia" ResStockArguments site_city=auto -City "CA, Pleasanton" ResStockArguments site_city=auto -City "CA, Pomona" ResStockArguments site_city=auto -City "CA, Porterville" ResStockArguments site_city=auto -City "CA, Poway" ResStockArguments site_city=auto -City "CA, Rancho Cordova" ResStockArguments site_city=auto -City "CA, Rancho Cucamonga" ResStockArguments site_city=auto -City "CA, Rancho Palos Verdes" ResStockArguments site_city=auto -City "CA, Rancho Santa Margarita" ResStockArguments site_city=auto -City "CA, Redding" ResStockArguments site_city=auto -City "CA, Redlands" ResStockArguments site_city=auto -City "CA, Redondo Beach" ResStockArguments site_city=auto -City "CA, Redwood City" ResStockArguments site_city=auto -City "CA, Rialto" ResStockArguments site_city=auto -City "CA, Richmond" ResStockArguments site_city=auto -City "CA, Riverside" ResStockArguments site_city=auto -City "CA, Rocklin" ResStockArguments site_city=auto -City "CA, Rohnert Park" ResStockArguments site_city=auto -City "CA, Rosemead" ResStockArguments site_city=auto -City "CA, Roseville" ResStockArguments site_city=auto -City "CA, Rowland Heights" ResStockArguments site_city=auto -City "CA, Sacramento" ResStockArguments site_city=auto -City "CA, Salinas" ResStockArguments site_city=auto -City "CA, San Bernardino" ResStockArguments site_city=auto -City "CA, San Bruno" ResStockArguments site_city=auto -City "CA, San Buenaventura Ventura" ResStockArguments site_city=auto -City "CA, San Clemente" ResStockArguments site_city=auto -City "CA, San Diego" ResStockArguments site_city=auto -City "CA, San Francisco" ResStockArguments site_city=auto -City "CA, San Jose" ResStockArguments site_city=auto -City "CA, San Leandro" ResStockArguments site_city=auto -City "CA, San Luis Obispo" ResStockArguments site_city=auto -City "CA, San Marcos" ResStockArguments site_city=auto -City "CA, San Mateo" ResStockArguments site_city=auto -City "CA, San Rafael" ResStockArguments site_city=auto -City "CA, San Ramon" ResStockArguments site_city=auto -City "CA, Santa Ana" ResStockArguments site_city=auto -City "CA, Santa Barbara" ResStockArguments site_city=auto -City "CA, Santa Clara" ResStockArguments site_city=auto -City "CA, Santa Clarita" ResStockArguments site_city=auto -City "CA, Santa Cruz" ResStockArguments site_city=auto -City "CA, Santa Maria" ResStockArguments site_city=auto -City "CA, Santa Monica" ResStockArguments site_city=auto -City "CA, Santa Rosa" ResStockArguments site_city=auto -City "CA, Santee" ResStockArguments site_city=auto -City "CA, Simi Valley" ResStockArguments site_city=auto -City "CA, South Gate" ResStockArguments site_city=auto -City "CA, South Lake Tahoe" ResStockArguments site_city=auto -City "CA, South San Francisco" ResStockArguments site_city=auto -City "CA, South Whittier" ResStockArguments site_city=auto -City "CA, Stockton" ResStockArguments site_city=auto -City "CA, Sunnyvale" ResStockArguments site_city=auto -City "CA, Temecula" ResStockArguments site_city=auto -City "CA, Thousand Oaks" ResStockArguments site_city=auto -City "CA, Torrance" ResStockArguments site_city=auto -City "CA, Tracy" ResStockArguments site_city=auto -City "CA, Tulare" ResStockArguments site_city=auto -City "CA, Turlock" ResStockArguments site_city=auto -City "CA, Tustin" ResStockArguments site_city=auto -City "CA, Union City" ResStockArguments site_city=auto -City "CA, Upland" ResStockArguments site_city=auto -City "CA, Vacaville" ResStockArguments site_city=auto -City "CA, Vallejo" ResStockArguments site_city=auto -City "CA, Victorville" ResStockArguments site_city=auto -City "CA, Visalia" ResStockArguments site_city=auto -City "CA, Vista" ResStockArguments site_city=auto -City "CA, Walnut Creek" ResStockArguments site_city=auto -City "CA, West Covina" ResStockArguments site_city=auto -City "CA, West Hollywood" ResStockArguments site_city=auto -City "CA, West Sacramento" ResStockArguments site_city=auto -City "CA, Westminster" ResStockArguments site_city=auto -City "CA, Whittier" ResStockArguments site_city=auto -City "CA, Woodland" ResStockArguments site_city=auto -City "CA, Yorba Linda" ResStockArguments site_city=auto -City "CA, Yuba City" ResStockArguments site_city=auto -City "CA, Yucaipa" ResStockArguments site_city=auto -City "CO, Arvada" ResStockArguments site_city=auto -City "CO, Aurora" ResStockArguments site_city=auto -City "CO, Boulder" ResStockArguments site_city=auto -City "CO, Broomfield" ResStockArguments site_city=auto -City "CO, Castle Rock" ResStockArguments site_city=auto -City "CO, Centennial" ResStockArguments site_city=auto -City "CO, Colorado Springs" ResStockArguments site_city=auto -City "CO, Commerce City" ResStockArguments site_city=auto -City "CO, Denver" ResStockArguments site_city=auto -City "CO, Englewood" ResStockArguments site_city=auto -City "CO, Fort Collins" ResStockArguments site_city=auto -City "CO, Grand Junction" ResStockArguments site_city=auto -City "CO, Greeley" ResStockArguments site_city=auto -City "CO, Highlands Ranch" ResStockArguments site_city=auto -City "CO, Lakewood" ResStockArguments site_city=auto -City "CO, Littleton" ResStockArguments site_city=auto -City "CO, Longmont" ResStockArguments site_city=auto -City "CO, Loveland" ResStockArguments site_city=auto -City "CO, Parker" ResStockArguments site_city=auto -City "CO, Pueblo" ResStockArguments site_city=auto -City "CO, Thornton" ResStockArguments site_city=auto -City "CO, Westminster" ResStockArguments site_city=auto -City "CT, Bridgeport" ResStockArguments site_city=auto -City "CT, Bristol" ResStockArguments site_city=auto -City "CT, Danbury" ResStockArguments site_city=auto -City "CT, East Hartford" ResStockArguments site_city=auto -City "CT, Hartford" ResStockArguments site_city=auto -City "CT, Meriden" ResStockArguments site_city=auto -City "CT, Middletown" ResStockArguments site_city=auto -City "CT, Milford City Balance" ResStockArguments site_city=auto -City "CT, New Britain" ResStockArguments site_city=auto -City "CT, New Haven" ResStockArguments site_city=auto -City "CT, Norwalk" ResStockArguments site_city=auto -City "CT, Norwich" ResStockArguments site_city=auto -City "CT, Shelton" ResStockArguments site_city=auto -City "CT, Stamford" ResStockArguments site_city=auto -City "CT, Stratford" ResStockArguments site_city=auto -City "CT, Torrington" ResStockArguments site_city=auto -City "CT, Waterbury" ResStockArguments site_city=auto -City "CT, West Hartford" ResStockArguments site_city=auto -City "CT, West Haven" ResStockArguments site_city=auto -City "DC, Washington" ResStockArguments site_city=auto -City "DE, Dover" ResStockArguments site_city=auto -City "DE, Wilmington" ResStockArguments site_city=auto -City "FL, Alafaya" ResStockArguments site_city=auto -City "FL, Altamonte Springs" ResStockArguments site_city=auto -City "FL, Apopka" ResStockArguments site_city=auto -City "FL, Aventura" ResStockArguments site_city=auto -City "FL, Boca Raton" ResStockArguments site_city=auto -City "FL, Bonita Springs" ResStockArguments site_city=auto -City "FL, Boynton Beach" ResStockArguments site_city=auto -City "FL, Bradenton" ResStockArguments site_city=auto -City "FL, Brandon" ResStockArguments site_city=auto -City "FL, Cape Coral" ResStockArguments site_city=auto -City "FL, Carrollwood" ResStockArguments site_city=auto -City "FL, Clearwater" ResStockArguments site_city=auto -City "FL, Coconut Creek" ResStockArguments site_city=auto -City "FL, Coral Gables" ResStockArguments site_city=auto -City "FL, Coral Springs" ResStockArguments site_city=auto -City "FL, Country Club" ResStockArguments site_city=auto -City "FL, Dania Beach" ResStockArguments site_city=auto -City "FL, Davie" ResStockArguments site_city=auto -City "FL, Daytona Beach" ResStockArguments site_city=auto -City "FL, Deerfield Beach" ResStockArguments site_city=auto -City "FL, Delray Beach" ResStockArguments site_city=auto -City "FL, Deltona" ResStockArguments site_city=auto -City "FL, Doral" ResStockArguments site_city=auto -City "FL, Dunedin" ResStockArguments site_city=auto -City "FL, East Lake" ResStockArguments site_city=auto -City "FL, Estero" ResStockArguments site_city=auto -City "FL, Fort Lauderdale" ResStockArguments site_city=auto -City "FL, Fort Myers" ResStockArguments site_city=auto -City "FL, Fort Pierce" ResStockArguments site_city=auto -City "FL, Fountainebleau" ResStockArguments site_city=auto -City "FL, Four Corners" ResStockArguments site_city=auto -City "FL, Gainesville" ResStockArguments site_city=auto -City "FL, Greenacres" ResStockArguments site_city=auto -City "FL, Hallandale Beach" ResStockArguments site_city=auto -City "FL, Hialeah" ResStockArguments site_city=auto -City "FL, Hollywood" ResStockArguments site_city=auto -City "FL, Homestead" ResStockArguments site_city=auto -City "FL, Jacksonville" ResStockArguments site_city=auto -City "FL, Jupiter" ResStockArguments site_city=auto -City "FL, Kendale Lakes" ResStockArguments site_city=auto -City "FL, Kendall" ResStockArguments site_city=auto -City "FL, Kissimmee" ResStockArguments site_city=auto -City "FL, Lake Worth" ResStockArguments site_city=auto -City "FL, Lakeland" ResStockArguments site_city=auto -City "FL, Largo" ResStockArguments site_city=auto -City "FL, Lauderhill" ResStockArguments site_city=auto -City "FL, Lehigh Acres" ResStockArguments site_city=auto -City "FL, Marco Island" ResStockArguments site_city=auto -City "FL, Margate" ResStockArguments site_city=auto -City "FL, Melbourne" ResStockArguments site_city=auto -City "FL, Merritt Island" ResStockArguments site_city=auto -City "FL, Miami Beach" ResStockArguments site_city=auto -City "FL, Miami Gardens" ResStockArguments site_city=auto -City "FL, Miami" ResStockArguments site_city=auto -City "FL, Miramar" ResStockArguments site_city=auto -City "FL, Naples" ResStockArguments site_city=auto -City "FL, New Smyrna Beach" ResStockArguments site_city=auto -City "FL, North Fort Myers" ResStockArguments site_city=auto -City "FL, North Miami Beach" ResStockArguments site_city=auto -City "FL, North Miami" ResStockArguments site_city=auto -City "FL, North Port" ResStockArguments site_city=auto -City "FL, Oakland Park" ResStockArguments site_city=auto -City "FL, Ocala" ResStockArguments site_city=auto -City "FL, Orlando" ResStockArguments site_city=auto -City "FL, Ormond Beach" ResStockArguments site_city=auto -City "FL, Palm Bay" ResStockArguments site_city=auto -City "FL, Palm Beach Gardens" ResStockArguments site_city=auto -City "FL, Palm Coast" ResStockArguments site_city=auto -City "FL, Palm Harbor" ResStockArguments site_city=auto -City "FL, Panama City Beach" ResStockArguments site_city=auto -City "FL, Panama City" ResStockArguments site_city=auto -City "FL, Pembroke Pines" ResStockArguments site_city=auto -City "FL, Pensacola" ResStockArguments site_city=auto -City "FL, Pine Hills" ResStockArguments site_city=auto -City "FL, Pinellas Park" ResStockArguments site_city=auto -City "FL, Plantation" ResStockArguments site_city=auto -City "FL, Poinciana" ResStockArguments site_city=auto -City "FL, Pompano Beach" ResStockArguments site_city=auto -City "FL, Port Charlotte" ResStockArguments site_city=auto -City "FL, Port Orange" ResStockArguments site_city=auto -City "FL, Port St Lucie" ResStockArguments site_city=auto -City "FL, Riverview" ResStockArguments site_city=auto -City "FL, Riviera Beach" ResStockArguments site_city=auto -City "FL, Sanford" ResStockArguments site_city=auto -City "FL, Sarasota" ResStockArguments site_city=auto -City "FL, Spring Hill" ResStockArguments site_city=auto -City "FL, St Cloud" ResStockArguments site_city=auto -City "FL, St Petersburg" ResStockArguments site_city=auto -City "FL, Sun City Center" ResStockArguments site_city=auto -City "FL, Sunny Isles Beach" ResStockArguments site_city=auto -City "FL, Sunrise" ResStockArguments site_city=auto -City "FL, Tallahassee" ResStockArguments site_city=auto -City "FL, Tamarac" ResStockArguments site_city=auto -City "FL, Tamiami" ResStockArguments site_city=auto -City "FL, Tampa" ResStockArguments site_city=auto -City "FL, The Hammocks" ResStockArguments site_city=auto -City "FL, The Villages" ResStockArguments site_city=auto -City "FL, Titusville" ResStockArguments site_city=auto -City "FL, Town N Country" ResStockArguments site_city=auto -City "FL, University" ResStockArguments site_city=auto -City "FL, Venice" ResStockArguments site_city=auto -City "FL, Wellington" ResStockArguments site_city=auto -City "FL, Wesley Chapel" ResStockArguments site_city=auto -City "FL, West Palm Beach" ResStockArguments site_city=auto -City "FL, Weston" ResStockArguments site_city=auto -City "FL, Winter Haven" ResStockArguments site_city=auto -City "GA, Albany" ResStockArguments site_city=auto -City "GA, Alpharetta" ResStockArguments site_city=auto -City "GA, Athens-Clarke County Unified Government Balance" ResStockArguments site_city=auto -City "GA, Atlanta" ResStockArguments site_city=auto -City "GA, Augusta-Richmond County Consolidated Government Balance" ResStockArguments site_city=auto -City "GA, Columbus" ResStockArguments site_city=auto -City "GA, Dunwoody" ResStockArguments site_city=auto -City "GA, East Point" ResStockArguments site_city=auto -City "GA, Hinesville" ResStockArguments site_city=auto -City "GA, Johns Creek" ResStockArguments site_city=auto -City "GA, Mableton" ResStockArguments site_city=auto -City "GA, Macon" ResStockArguments site_city=auto -City "GA, Marietta" ResStockArguments site_city=auto -City "GA, Newnan" ResStockArguments site_city=auto -City "GA, North Atlanta" ResStockArguments site_city=auto -City "GA, Rome" ResStockArguments site_city=auto -City "GA, Roswell" ResStockArguments site_city=auto -City "GA, Sandy Springs" ResStockArguments site_city=auto -City "GA, Savannah" ResStockArguments site_city=auto -City "GA, Smyrna" ResStockArguments site_city=auto -City "GA, Valdosta" ResStockArguments site_city=auto -City "GA, Warner Robins" ResStockArguments site_city=auto -City "HI, East Honolulu" ResStockArguments site_city=auto -City "HI, Hilo" ResStockArguments site_city=auto -City "HI, Kailua" ResStockArguments site_city=auto -City "HI, Urban Honolulu" ResStockArguments site_city=auto -City "IA, Ames" ResStockArguments site_city=auto -City "IA, Ankeny" ResStockArguments site_city=auto -City "IA, Cedar Falls" ResStockArguments site_city=auto -City "IA, Cedar Rapids" ResStockArguments site_city=auto -City "IA, Council Bluffs" ResStockArguments site_city=auto -City "IA, Davenport" ResStockArguments site_city=auto -City "IA, Des Moines" ResStockArguments site_city=auto -City "IA, Dubuque" ResStockArguments site_city=auto -City "IA, Iowa City" ResStockArguments site_city=auto -City "IA, Marion" ResStockArguments site_city=auto -City "IA, Sioux City" ResStockArguments site_city=auto -City "IA, Urbandale" ResStockArguments site_city=auto -City "IA, Waterloo" ResStockArguments site_city=auto -City "IA, West Des Moines" ResStockArguments site_city=auto -City "ID, Boise City" ResStockArguments site_city=auto -City "ID, Caldwell" ResStockArguments site_city=auto -City "ID, Coeur Dalene" ResStockArguments site_city=auto -City "ID, Idaho Falls" ResStockArguments site_city=auto -City "ID, Meridian" ResStockArguments site_city=auto -City "ID, Nampa" ResStockArguments site_city=auto -City "ID, Pocatello" ResStockArguments site_city=auto -City "ID, Twin Falls" ResStockArguments site_city=auto -City "IL, Arlington Heights" ResStockArguments site_city=auto -City "IL, Aurora" ResStockArguments site_city=auto -City "IL, Belleville" ResStockArguments site_city=auto -City "IL, Berwyn" ResStockArguments site_city=auto -City "IL, Bloomington" ResStockArguments site_city=auto -City "IL, Bolingbrook" ResStockArguments site_city=auto -City "IL, Buffalo Grove" ResStockArguments site_city=auto -City "IL, Calumet City" ResStockArguments site_city=auto -City "IL, Carol Stream" ResStockArguments site_city=auto -City "IL, Champaign" ResStockArguments site_city=auto -City "IL, Chicago" ResStockArguments site_city=auto -City "IL, Cicero" ResStockArguments site_city=auto -City "IL, Crystal Lake" ResStockArguments site_city=auto -City "IL, Decatur" ResStockArguments site_city=auto -City "IL, Dekalb" ResStockArguments site_city=auto -City "IL, Des Plaines" ResStockArguments site_city=auto -City "IL, Downers Grove" ResStockArguments site_city=auto -City "IL, Elgin" ResStockArguments site_city=auto -City "IL, Elmhurst" ResStockArguments site_city=auto -City "IL, Evanston" ResStockArguments site_city=auto -City "IL, Glenview" ResStockArguments site_city=auto -City "IL, Hoffman Estates" ResStockArguments site_city=auto -City "IL, Joliet" ResStockArguments site_city=auto -City "IL, Lombard" ResStockArguments site_city=auto -City "IL, Moline" ResStockArguments site_city=auto -City "IL, Mount Prospect" ResStockArguments site_city=auto -City "IL, Naperville" ResStockArguments site_city=auto -City "IL, Normal" ResStockArguments site_city=auto -City "IL, Oak Lawn" ResStockArguments site_city=auto -City "IL, Oak Park" ResStockArguments site_city=auto -City "IL, Orland Park" ResStockArguments site_city=auto -City "IL, Palatine" ResStockArguments site_city=auto -City "IL, Peoria" ResStockArguments site_city=auto -City "IL, Quincy" ResStockArguments site_city=auto -City "IL, Rock Island" ResStockArguments site_city=auto -City "IL, Rockford" ResStockArguments site_city=auto -City "IL, Schaumburg" ResStockArguments site_city=auto -City "IL, Skokie" ResStockArguments site_city=auto -City "IL, Springfield" ResStockArguments site_city=auto -City "IL, Tinley Park" ResStockArguments site_city=auto -City "IL, Urbana" ResStockArguments site_city=auto -City "IL, Waukegan" ResStockArguments site_city=auto -City "IL, Wheaton" ResStockArguments site_city=auto -City "IL, Wheeling" ResStockArguments site_city=auto -City "IN, Anderson" ResStockArguments site_city=auto -City "IN, Bloomington" ResStockArguments site_city=auto -City "IN, Carmel" ResStockArguments site_city=auto -City "IN, Columbus" ResStockArguments site_city=auto -City "IN, Elkhart" ResStockArguments site_city=auto -City "IN, Evansville" ResStockArguments site_city=auto -City "IN, Fishers" ResStockArguments site_city=auto -City "IN, Fort Wayne" ResStockArguments site_city=auto -City "IN, Gary" ResStockArguments site_city=auto -City "IN, Greenwood" ResStockArguments site_city=auto -City "IN, Hammond" ResStockArguments site_city=auto -City "IN, Indianapolis City Balance" ResStockArguments site_city=auto -City "IN, Jeffersonville" ResStockArguments site_city=auto -City "IN, Kokomo" ResStockArguments site_city=auto -City "IN, Lafayette" ResStockArguments site_city=auto -City "IN, Lawrence" ResStockArguments site_city=auto -City "IN, Mishawaka" ResStockArguments site_city=auto -City "IN, Muncie" ResStockArguments site_city=auto -City "IN, New Albany" ResStockArguments site_city=auto -City "IN, Noblesville" ResStockArguments site_city=auto -City "IN, Portage" ResStockArguments site_city=auto -City "IN, Richmond" ResStockArguments site_city=auto -City "IN, South Bend" ResStockArguments site_city=auto -City "IN, Terre Haute" ResStockArguments site_city=auto -City "KS, Hutchinson" ResStockArguments site_city=auto -City "KS, Kansas City" ResStockArguments site_city=auto -City "KS, Lawrence" ResStockArguments site_city=auto -City "KS, Lenexa" ResStockArguments site_city=auto -City "KS, Manhattan" ResStockArguments site_city=auto -City "KS, Olathe" ResStockArguments site_city=auto -City "KS, Overland Park" ResStockArguments site_city=auto -City "KS, Salina" ResStockArguments site_city=auto -City "KS, Shawnee" ResStockArguments site_city=auto -City "KS, Topeka" ResStockArguments site_city=auto -City "KS, Wichita" ResStockArguments site_city=auto -City "KY, Bowling Green" ResStockArguments site_city=auto -City "KY, Covington" ResStockArguments site_city=auto -City "KY, Lexington-Fayette" ResStockArguments site_city=auto -City "KY, Louisville Jefferson County Metro Government Balance" ResStockArguments site_city=auto -City "KY, Owensboro" ResStockArguments site_city=auto -City "LA, Alexandria" ResStockArguments site_city=auto -City "LA, Baton Rouge" ResStockArguments site_city=auto -City "LA, Bossier City" ResStockArguments site_city=auto -City "LA, Kenner" ResStockArguments site_city=auto -City "LA, Lafayette" ResStockArguments site_city=auto -City "LA, Lake Charles" ResStockArguments site_city=auto -City "LA, Metairie" ResStockArguments site_city=auto -City "LA, Monroe" ResStockArguments site_city=auto -City "LA, New Orleans" ResStockArguments site_city=auto -City "LA, Shreveport" ResStockArguments site_city=auto -City "MA, Arlington" ResStockArguments site_city=auto -City "MA, Attleboro" ResStockArguments site_city=auto -City "MA, Barnstable Town" ResStockArguments site_city=auto -City "MA, Beverly" ResStockArguments site_city=auto -City "MA, Boston" ResStockArguments site_city=auto -City "MA, Brockton" ResStockArguments site_city=auto -City "MA, Brookline" ResStockArguments site_city=auto -City "MA, Cambridge" ResStockArguments site_city=auto -City "MA, Chicopee" ResStockArguments site_city=auto -City "MA, Everett" ResStockArguments site_city=auto -City "MA, Fall River" ResStockArguments site_city=auto -City "MA, Fitchburg" ResStockArguments site_city=auto -City "MA, Framingham" ResStockArguments site_city=auto -City "MA, Haverhill" ResStockArguments site_city=auto -City "MA, Holyoke" ResStockArguments site_city=auto -City "MA, Lawrence" ResStockArguments site_city=auto -City "MA, Leominster" ResStockArguments site_city=auto -City "MA, Lowell" ResStockArguments site_city=auto -City "MA, Lynn" ResStockArguments site_city=auto -City "MA, Malden" ResStockArguments site_city=auto -City "MA, Marlborough" ResStockArguments site_city=auto -City "MA, Medford" ResStockArguments site_city=auto -City "MA, Methuen Town" ResStockArguments site_city=auto -City "MA, New Bedford" ResStockArguments site_city=auto -City "MA, Newton" ResStockArguments site_city=auto -City "MA, Peabody" ResStockArguments site_city=auto -City "MA, Pittsfield" ResStockArguments site_city=auto -City "MA, Quincy" ResStockArguments site_city=auto -City "MA, Revere" ResStockArguments site_city=auto -City "MA, Salem" ResStockArguments site_city=auto -City "MA, Somerville" ResStockArguments site_city=auto -City "MA, Springfield" ResStockArguments site_city=auto -City "MA, Taunton" ResStockArguments site_city=auto -City "MA, Waltham" ResStockArguments site_city=auto -City "MA, Watertown Town" ResStockArguments site_city=auto -City "MA, Westfield" ResStockArguments site_city=auto -City "MA, Weymouth Town" ResStockArguments site_city=auto -City "MA, Woburn" ResStockArguments site_city=auto -City "MA, Worcester" ResStockArguments site_city=auto -City "MD, Annapolis" ResStockArguments site_city=auto -City "MD, Aspen Hill" ResStockArguments site_city=auto -City "MD, Baltimore" ResStockArguments site_city=auto -City "MD, Bel Air South" ResStockArguments site_city=auto -City "MD, Bethesda" ResStockArguments site_city=auto -City "MD, Bowie" ResStockArguments site_city=auto -City "MD, Catonsville" ResStockArguments site_city=auto -City "MD, Columbia" ResStockArguments site_city=auto -City "MD, Dundalk" ResStockArguments site_city=auto -City "MD, Ellicott City" ResStockArguments site_city=auto -City "MD, Essex" ResStockArguments site_city=auto -City "MD, Frederick" ResStockArguments site_city=auto -City "MD, Gaithersburg" ResStockArguments site_city=auto -City "MD, Germantown" ResStockArguments site_city=auto -City "MD, Glen Burnie" ResStockArguments site_city=auto -City "MD, Hagerstown" ResStockArguments site_city=auto -City "MD, North Bethesda" ResStockArguments site_city=auto -City "MD, Ocean City" ResStockArguments site_city=auto -City "MD, Odenton" ResStockArguments site_city=auto -City "MD, Potomac" ResStockArguments site_city=auto -City "MD, Rockville" ResStockArguments site_city=auto -City "MD, Severn" ResStockArguments site_city=auto -City "MD, Silver Spring" ResStockArguments site_city=auto -City "MD, Towson" ResStockArguments site_city=auto -City "MD, Waldorf" ResStockArguments site_city=auto -City "MD, Wheaton" ResStockArguments site_city=auto -City "MD, Woodlawn" ResStockArguments site_city=auto -City "ME, Bangor" ResStockArguments site_city=auto -City "ME, Lewiston" ResStockArguments site_city=auto -City "ME, Portland" ResStockArguments site_city=auto -City "MI, Ann Arbor" ResStockArguments site_city=auto -City "MI, Battle Creek" ResStockArguments site_city=auto -City "MI, Bay City" ResStockArguments site_city=auto -City "MI, Dearborn Heights" ResStockArguments site_city=auto -City "MI, Dearborn" ResStockArguments site_city=auto -City "MI, Detroit" ResStockArguments site_city=auto -City "MI, Farmington Hills" ResStockArguments site_city=auto -City "MI, Flint" ResStockArguments site_city=auto -City "MI, Grand Rapids" ResStockArguments site_city=auto -City "MI, Jackson" ResStockArguments site_city=auto -City "MI, Kalamazoo" ResStockArguments site_city=auto -City "MI, Kentwood" ResStockArguments site_city=auto -City "MI, Lansing" ResStockArguments site_city=auto -City "MI, Lincoln Park" ResStockArguments site_city=auto -City "MI, Livonia" ResStockArguments site_city=auto -City "MI, Midland" ResStockArguments site_city=auto -City "MI, Muskegon" ResStockArguments site_city=auto -City "MI, Novi" ResStockArguments site_city=auto -City "MI, Pontiac" ResStockArguments site_city=auto -City "MI, Portage" ResStockArguments site_city=auto -City "MI, Rochester Hills" ResStockArguments site_city=auto -City "MI, Roseville" ResStockArguments site_city=auto -City "MI, Royal Oak" ResStockArguments site_city=auto -City "MI, Saginaw" ResStockArguments site_city=auto -City "MI, Southfield" ResStockArguments site_city=auto -City "MI, St Clair Shores" ResStockArguments site_city=auto -City "MI, Sterling Heights" ResStockArguments site_city=auto -City "MI, Taylor" ResStockArguments site_city=auto -City "MI, Troy" ResStockArguments site_city=auto -City "MI, Warren" ResStockArguments site_city=auto -City "MI, Westland" ResStockArguments site_city=auto -City "MI, Wyoming" ResStockArguments site_city=auto -City "MN, Apple Valley" ResStockArguments site_city=auto -City "MN, Blaine" ResStockArguments site_city=auto -City "MN, Bloomington" ResStockArguments site_city=auto -City "MN, Brooklyn Park" ResStockArguments site_city=auto -City "MN, Burnsville" ResStockArguments site_city=auto -City "MN, Coon Rapids" ResStockArguments site_city=auto -City "MN, Duluth" ResStockArguments site_city=auto -City "MN, Eagan" ResStockArguments site_city=auto -City "MN, Eden Prairie" ResStockArguments site_city=auto -City "MN, Edina" ResStockArguments site_city=auto -City "MN, Lakeville" ResStockArguments site_city=auto -City "MN, Mankato" ResStockArguments site_city=auto -City "MN, Maple Grove" ResStockArguments site_city=auto -City "MN, Maplewood" ResStockArguments site_city=auto -City "MN, Minneapolis" ResStockArguments site_city=auto -City "MN, Minnetonka" ResStockArguments site_city=auto -City "MN, Moorhead" ResStockArguments site_city=auto -City "MN, Plymouth" ResStockArguments site_city=auto -City "MN, Richfield" ResStockArguments site_city=auto -City "MN, Rochester" ResStockArguments site_city=auto -City "MN, Roseville" ResStockArguments site_city=auto -City "MN, St Cloud" ResStockArguments site_city=auto -City "MN, St Louis Park" ResStockArguments site_city=auto -City "MN, St Paul" ResStockArguments site_city=auto -City "MN, Woodbury" ResStockArguments site_city=auto -City "MO, Blue Springs" ResStockArguments site_city=auto -City "MO, Cape Girardeau" ResStockArguments site_city=auto -City "MO, Chesterfield" ResStockArguments site_city=auto -City "MO, Columbia" ResStockArguments site_city=auto -City "MO, Florissant" ResStockArguments site_city=auto -City "MO, Independence" ResStockArguments site_city=auto -City "MO, Jefferson City" ResStockArguments site_city=auto -City "MO, Joplin" ResStockArguments site_city=auto -City "MO, Kansas City" ResStockArguments site_city=auto -City "MO, Lees Summit" ResStockArguments site_city=auto -City "MO, Ofallon" ResStockArguments site_city=auto -City "MO, Springfield" ResStockArguments site_city=auto -City "MO, St Charles" ResStockArguments site_city=auto -City "MO, St Joseph" ResStockArguments site_city=auto -City "MO, St Louis" ResStockArguments site_city=auto -City "MO, St Peters" ResStockArguments site_city=auto -City "MO, University City" ResStockArguments site_city=auto -City "MS, Biloxi" ResStockArguments site_city=auto -City "MS, Gulfport" ResStockArguments site_city=auto -City "MS, Hattiesburg" ResStockArguments site_city=auto -City "MS, Jackson" ResStockArguments site_city=auto -City "MS, Meridian" ResStockArguments site_city=auto -City "MS, Southaven" ResStockArguments site_city=auto -City "MS, Tupelo" ResStockArguments site_city=auto -City "MT, Billings" ResStockArguments site_city=auto -City "MT, Bozeman" ResStockArguments site_city=auto -City "MT, Butte-Silver Bow Balance" ResStockArguments site_city=auto -City "MT, Great Falls" ResStockArguments site_city=auto -City "MT, Missoula" ResStockArguments site_city=auto -City "NC, Asheville" ResStockArguments site_city=auto -City "NC, Burlington" ResStockArguments site_city=auto -City "NC, Cary" ResStockArguments site_city=auto -City "NC, Chapel Hill" ResStockArguments site_city=auto -City "NC, Charlotte" ResStockArguments site_city=auto -City "NC, Concord" ResStockArguments site_city=auto -City "NC, Durham" ResStockArguments site_city=auto -City "NC, Fayetteville" ResStockArguments site_city=auto -City "NC, Gastonia" ResStockArguments site_city=auto -City "NC, Goldsboro" ResStockArguments site_city=auto -City "NC, Greensboro" ResStockArguments site_city=auto -City "NC, Greenville" ResStockArguments site_city=auto -City "NC, Hickory" ResStockArguments site_city=auto -City "NC, High Point" ResStockArguments site_city=auto -City "NC, Huntersville" ResStockArguments site_city=auto -City "NC, Jacksonville" ResStockArguments site_city=auto -City "NC, Kannapolis" ResStockArguments site_city=auto -City "NC, Raleigh" ResStockArguments site_city=auto -City "NC, Rocky Mount" ResStockArguments site_city=auto -City "NC, Wilmington" ResStockArguments site_city=auto -City "NC, Wilson" ResStockArguments site_city=auto -City "NC, Winston-Salem" ResStockArguments site_city=auto -City "ND, Bismarck" ResStockArguments site_city=auto -City "ND, Fargo" ResStockArguments site_city=auto -City "ND, Grand Forks" ResStockArguments site_city=auto -City "ND, Minot" ResStockArguments site_city=auto -City "NE, Bellevue" ResStockArguments site_city=auto -City "NE, Grand Island" ResStockArguments site_city=auto -City "NE, Lincoln" ResStockArguments site_city=auto -City "NE, Omaha" ResStockArguments site_city=auto -City "NH, Concord" ResStockArguments site_city=auto -City "NH, Manchester" ResStockArguments site_city=auto -City "NH, Nashua" ResStockArguments site_city=auto -City "NJ, Atlantic City" ResStockArguments site_city=auto -City "NJ, Bayonne" ResStockArguments site_city=auto -City "NJ, Camden" ResStockArguments site_city=auto -City "NJ, Clifton" ResStockArguments site_city=auto -City "NJ, East Orange" ResStockArguments site_city=auto -City "NJ, Elizabeth" ResStockArguments site_city=auto -City "NJ, Fort Lee" ResStockArguments site_city=auto -City "NJ, Hackensack" ResStockArguments site_city=auto -City "NJ, Hoboken" ResStockArguments site_city=auto -City "NJ, Jersey City" ResStockArguments site_city=auto -City "NJ, Linden" ResStockArguments site_city=auto -City "NJ, New Brunswick" ResStockArguments site_city=auto -City "NJ, Newark" ResStockArguments site_city=auto -City "NJ, Ocean City" ResStockArguments site_city=auto -City "NJ, Passaic" ResStockArguments site_city=auto -City "NJ, Paterson" ResStockArguments site_city=auto -City "NJ, Perth Amboy" ResStockArguments site_city=auto -City "NJ, Plainfield" ResStockArguments site_city=auto -City "NJ, Sayreville" ResStockArguments site_city=auto -City "NJ, Toms River" ResStockArguments site_city=auto -City "NJ, Trenton" ResStockArguments site_city=auto -City "NJ, Union City" ResStockArguments site_city=auto -City "NJ, Vineland" ResStockArguments site_city=auto -City "NJ, West New York" ResStockArguments site_city=auto -City "NM, Albuquerque" ResStockArguments site_city=auto -City "NM, Clovis" ResStockArguments site_city=auto -City "NM, Farmington" ResStockArguments site_city=auto -City "NM, Las Cruces" ResStockArguments site_city=auto -City "NM, Rio Rancho" ResStockArguments site_city=auto -City "NM, Roswell" ResStockArguments site_city=auto -City "NM, Santa Fe" ResStockArguments site_city=auto -City "NM, South Valley" ResStockArguments site_city=auto -City "NV, Carson City" ResStockArguments site_city=auto -City "NV, Enterprise" ResStockArguments site_city=auto -City "NV, Henderson" ResStockArguments site_city=auto -City "NV, Las Vegas" ResStockArguments site_city=auto -City "NV, North Las Vegas" ResStockArguments site_city=auto -City "NV, Pahrump" ResStockArguments site_city=auto -City "NV, Paradise" ResStockArguments site_city=auto -City "NV, Reno" ResStockArguments site_city=auto -City "NV, Sparks" ResStockArguments site_city=auto -City "NV, Spring Valley" ResStockArguments site_city=auto -City "NV, Sunrise Manor" ResStockArguments site_city=auto -City "NV, Whitney" ResStockArguments site_city=auto -City "NY, Albany" ResStockArguments site_city=auto -City "NY, Binghamton" ResStockArguments site_city=auto -City "NY, Brighton" ResStockArguments site_city=auto -City "NY, Buffalo" ResStockArguments site_city=auto -City "NY, Cheektowaga" ResStockArguments site_city=auto -City "NY, Coram" ResStockArguments site_city=auto -City "NY, Hempstead" ResStockArguments site_city=auto -City "NY, Irondequoit" ResStockArguments site_city=auto -City "NY, Levittown" ResStockArguments site_city=auto -City "NY, Long Beach" ResStockArguments site_city=auto -City "NY, Mount Vernon" ResStockArguments site_city=auto -City "NY, New Rochelle" ResStockArguments site_city=auto -City "NY, New York" ResStockArguments site_city=auto -City "NY, Niagara Falls" ResStockArguments site_city=auto -City "NY, Rochester" ResStockArguments site_city=auto -City "NY, Rome" ResStockArguments site_city=auto -City "NY, Schenectady" ResStockArguments site_city=auto -City "NY, Syracuse" ResStockArguments site_city=auto -City "NY, Tonawanda" ResStockArguments site_city=auto -City "NY, Troy" ResStockArguments site_city=auto -City "NY, Utica" ResStockArguments site_city=auto -City "NY, West Seneca" ResStockArguments site_city=auto -City "NY, White Plains" ResStockArguments site_city=auto -City "NY, Yonkers" ResStockArguments site_city=auto -City "OH, Akron" ResStockArguments site_city=auto -City "OH, Beavercreek" ResStockArguments site_city=auto -City "OH, Boardman" ResStockArguments site_city=auto -City "OH, Canton" ResStockArguments site_city=auto -City "OH, Cincinnati" ResStockArguments site_city=auto -City "OH, Cleveland Heights" ResStockArguments site_city=auto -City "OH, Cleveland" ResStockArguments site_city=auto -City "OH, Columbus" ResStockArguments site_city=auto -City "OH, Cuyahoga Falls" ResStockArguments site_city=auto -City "OH, Dayton" ResStockArguments site_city=auto -City "OH, Delaware" ResStockArguments site_city=auto -City "OH, Dublin" ResStockArguments site_city=auto -City "OH, Elyria" ResStockArguments site_city=auto -City "OH, Euclid" ResStockArguments site_city=auto -City "OH, Fairborn" ResStockArguments site_city=auto -City "OH, Fairfield" ResStockArguments site_city=auto -City "OH, Findlay" ResStockArguments site_city=auto -City "OH, Grove City" ResStockArguments site_city=auto -City "OH, Hamilton" ResStockArguments site_city=auto -City "OH, Huber Heights" ResStockArguments site_city=auto -City "OH, Kettering" ResStockArguments site_city=auto -City "OH, Lakewood" ResStockArguments site_city=auto -City "OH, Lancaster" ResStockArguments site_city=auto -City "OH, Lima" ResStockArguments site_city=auto -City "OH, Lorain" ResStockArguments site_city=auto -City "OH, Mansfield" ResStockArguments site_city=auto -City "OH, Marion" ResStockArguments site_city=auto -City "OH, Mentor" ResStockArguments site_city=auto -City "OH, Middletown" ResStockArguments site_city=auto -City "OH, Newark" ResStockArguments site_city=auto -City "OH, Parma" ResStockArguments site_city=auto -City "OH, Springfield" ResStockArguments site_city=auto -City "OH, Stow" ResStockArguments site_city=auto -City "OH, Strongsville" ResStockArguments site_city=auto -City "OH, Toledo" ResStockArguments site_city=auto -City "OH, Warren" ResStockArguments site_city=auto -City "OH, Youngstown" ResStockArguments site_city=auto -City "OK, Bartlesville" ResStockArguments site_city=auto -City "OK, Broken Arrow" ResStockArguments site_city=auto -City "OK, Edmond" ResStockArguments site_city=auto -City "OK, Enid" ResStockArguments site_city=auto -City "OK, Lawton" ResStockArguments site_city=auto -City "OK, Midwest City" ResStockArguments site_city=auto -City "OK, Moore" ResStockArguments site_city=auto -City "OK, Muskogee" ResStockArguments site_city=auto -City "OK, Norman" ResStockArguments site_city=auto -City "OK, Oklahoma City" ResStockArguments site_city=auto -City "OK, Stillwater" ResStockArguments site_city=auto -City "OK, Tulsa" ResStockArguments site_city=auto -City "OR, Albany" ResStockArguments site_city=auto -City "OR, Aloha" ResStockArguments site_city=auto -City "OR, Beaverton" ResStockArguments site_city=auto -City "OR, Bend" ResStockArguments site_city=auto -City "OR, Corvallis" ResStockArguments site_city=auto -City "OR, Eugene" ResStockArguments site_city=auto -City "OR, Grants Pass" ResStockArguments site_city=auto -City "OR, Gresham" ResStockArguments site_city=auto -City "OR, Hillsboro" ResStockArguments site_city=auto -City "OR, Lake Oswego" ResStockArguments site_city=auto -City "OR, Medford" ResStockArguments site_city=auto -City "OR, Portland" ResStockArguments site_city=auto -City "OR, Salem" ResStockArguments site_city=auto -City "OR, Springfield" ResStockArguments site_city=auto -City "OR, Tigard" ResStockArguments site_city=auto -City "PA, Allentown" ResStockArguments site_city=auto -City "PA, Altoona" ResStockArguments site_city=auto -City "PA, Bethlehem" ResStockArguments site_city=auto -City "PA, Erie" ResStockArguments site_city=auto -City "PA, Harrisburg" ResStockArguments site_city=auto -City "PA, Lancaster" ResStockArguments site_city=auto -City "PA, Levittown" ResStockArguments site_city=auto -City "PA, Philadelphia" ResStockArguments site_city=auto -City "PA, Pittsburgh" ResStockArguments site_city=auto -City "PA, Reading" ResStockArguments site_city=auto -City "PA, Scranton" ResStockArguments site_city=auto -City "PA, Wilkes-Barre" ResStockArguments site_city=auto -City "PA, York" ResStockArguments site_city=auto -City "RI, Cranston" ResStockArguments site_city=auto -City "RI, East Providence" ResStockArguments site_city=auto -City "RI, Pawtucket" ResStockArguments site_city=auto -City "RI, Providence" ResStockArguments site_city=auto -City "RI, Warwick" ResStockArguments site_city=auto -City "RI, Woonsocket" ResStockArguments site_city=auto -City "SC, Charleston" ResStockArguments site_city=auto -City "SC, Columbia" ResStockArguments site_city=auto -City "SC, Florence" ResStockArguments site_city=auto -City "SC, Goose Creek" ResStockArguments site_city=auto -City "SC, Greenville" ResStockArguments site_city=auto -City "SC, Hilton Head Island" ResStockArguments site_city=auto -City "SC, Mount Pleasant" ResStockArguments site_city=auto -City "SC, Myrtle Beach" ResStockArguments site_city=auto -City "SC, North Charleston" ResStockArguments site_city=auto -City "SC, North Myrtle Beach" ResStockArguments site_city=auto -City "SC, Rock Hill" ResStockArguments site_city=auto -City "SC, Spartanburg" ResStockArguments site_city=auto -City "SC, Summerville" ResStockArguments site_city=auto -City "SC, Sumter" ResStockArguments site_city=auto -City "SD, Rapid City" ResStockArguments site_city=auto -City "SD, Sioux Falls" ResStockArguments site_city=auto -City "TN, Bartlett" ResStockArguments site_city=auto -City "TN, Chattanooga" ResStockArguments site_city=auto -City "TN, Clarksville" ResStockArguments site_city=auto -City "TN, Cleveland" ResStockArguments site_city=auto -City "TN, Collierville" ResStockArguments site_city=auto -City "TN, Columbia" ResStockArguments site_city=auto -City "TN, Franklin" ResStockArguments site_city=auto -City "TN, Germantown" ResStockArguments site_city=auto -City "TN, Hendersonville" ResStockArguments site_city=auto -City "TN, Jackson" ResStockArguments site_city=auto -City "TN, Johnson City" ResStockArguments site_city=auto -City "TN, Kingsport" ResStockArguments site_city=auto -City "TN, Knoxville" ResStockArguments site_city=auto -City "TN, Memphis" ResStockArguments site_city=auto -City "TN, Murfreesboro" ResStockArguments site_city=auto -City "TN, Nashville-Davidson Metropolitan Government Balance" ResStockArguments site_city=auto -City "TN, Smyrna" ResStockArguments site_city=auto -City "TX, Abilene" ResStockArguments site_city=auto -City "TX, Allen" ResStockArguments site_city=auto -City "TX, Amarillo" ResStockArguments site_city=auto -City "TX, Arlington" ResStockArguments site_city=auto -City "TX, Atascocita" ResStockArguments site_city=auto -City "TX, Austin" ResStockArguments site_city=auto -City "TX, Baytown" ResStockArguments site_city=auto -City "TX, Beaumont" ResStockArguments site_city=auto -City "TX, Bedford" ResStockArguments site_city=auto -City "TX, Brownsville" ResStockArguments site_city=auto -City "TX, Bryan" ResStockArguments site_city=auto -City "TX, Burleson" ResStockArguments site_city=auto -City "TX, Carrollton" ResStockArguments site_city=auto -City "TX, Cedar Hill" ResStockArguments site_city=auto -City "TX, Cedar Park" ResStockArguments site_city=auto -City "TX, College Station" ResStockArguments site_city=auto -City "TX, Conroe" ResStockArguments site_city=auto -City "TX, Coppell" ResStockArguments site_city=auto -City "TX, Corpus Christi" ResStockArguments site_city=auto -City "TX, Dallas" ResStockArguments site_city=auto -City "TX, Denton" ResStockArguments site_city=auto -City "TX, Desoto" ResStockArguments site_city=auto -City "TX, Edinburg" ResStockArguments site_city=auto -City "TX, El Paso" ResStockArguments site_city=auto -City "TX, Euless" ResStockArguments site_city=auto -City "TX, Flower Mound" ResStockArguments site_city=auto -City "TX, Fort Worth" ResStockArguments site_city=auto -City "TX, Frisco" ResStockArguments site_city=auto -City "TX, Galveston" ResStockArguments site_city=auto -City "TX, Garland" ResStockArguments site_city=auto -City "TX, Georgetown" ResStockArguments site_city=auto -City "TX, Grand Prairie" ResStockArguments site_city=auto -City "TX, Grapevine" ResStockArguments site_city=auto -City "TX, Haltom City" ResStockArguments site_city=auto -City "TX, Harlingen" ResStockArguments site_city=auto -City "TX, Houston" ResStockArguments site_city=auto -City "TX, Hurst" ResStockArguments site_city=auto -City "TX, Irving" ResStockArguments site_city=auto -City "TX, Keller" ResStockArguments site_city=auto -City "TX, Killeen" ResStockArguments site_city=auto -City "TX, Laredo" ResStockArguments site_city=auto -City "TX, League City" ResStockArguments site_city=auto -City "TX, Lewisville" ResStockArguments site_city=auto -City "TX, Longview" ResStockArguments site_city=auto -City "TX, Lubbock" ResStockArguments site_city=auto -City "TX, Lufkin" ResStockArguments site_city=auto -City "TX, Mansfield" ResStockArguments site_city=auto -City "TX, Mcallen" ResStockArguments site_city=auto -City "TX, Mckinney" ResStockArguments site_city=auto -City "TX, Mesquite" ResStockArguments site_city=auto -City "TX, Midland" ResStockArguments site_city=auto -City "TX, Mission" ResStockArguments site_city=auto -City "TX, Missouri City" ResStockArguments site_city=auto -City "TX, New Braunfels" ResStockArguments site_city=auto -City "TX, North Richland Hills" ResStockArguments site_city=auto -City "TX, Odessa" ResStockArguments site_city=auto -City "TX, Pasadena" ResStockArguments site_city=auto -City "TX, Pearland" ResStockArguments site_city=auto -City "TX, Pflugerville" ResStockArguments site_city=auto -City "TX, Pharr" ResStockArguments site_city=auto -City "TX, Plano" ResStockArguments site_city=auto -City "TX, Port Arthur" ResStockArguments site_city=auto -City "TX, Richardson" ResStockArguments site_city=auto -City "TX, Round Rock" ResStockArguments site_city=auto -City "TX, Rowlett" ResStockArguments site_city=auto -City "TX, San Angelo" ResStockArguments site_city=auto -City "TX, San Antonio" ResStockArguments site_city=auto -City "TX, San Marcos" ResStockArguments site_city=auto -City "TX, Sherman" ResStockArguments site_city=auto -City "TX, Spring" ResStockArguments site_city=auto -City "TX, Sugar Land" ResStockArguments site_city=auto -City "TX, Temple" ResStockArguments site_city=auto -City "TX, Texarkana" ResStockArguments site_city=auto -City "TX, Texas City" ResStockArguments site_city=auto -City "TX, The Colony" ResStockArguments site_city=auto -City "TX, The Woodlands" ResStockArguments site_city=auto -City "TX, Tyler" ResStockArguments site_city=auto -City "TX, Victoria" ResStockArguments site_city=auto -City "TX, Waco" ResStockArguments site_city=auto -City "TX, Wichita Falls" ResStockArguments site_city=auto -City "TX, Wylie" ResStockArguments site_city=auto -City "UT, Layton" ResStockArguments site_city=auto -City "UT, Lehi" ResStockArguments site_city=auto -City "UT, Logan" ResStockArguments site_city=auto -City "UT, Millcreek" ResStockArguments site_city=auto -City "UT, Murray" ResStockArguments site_city=auto -City "UT, Ogden" ResStockArguments site_city=auto -City "UT, Orem" ResStockArguments site_city=auto -City "UT, Provo" ResStockArguments site_city=auto -City "UT, Salt Lake City" ResStockArguments site_city=auto -City "UT, Sandy" ResStockArguments site_city=auto -City "UT, South Jordan" ResStockArguments site_city=auto -City "UT, St George" ResStockArguments site_city=auto -City "UT, Taylorsville" ResStockArguments site_city=auto -City "UT, West Jordan" ResStockArguments site_city=auto -City "UT, West Valley City" ResStockArguments site_city=auto -City "VA, Alexandria" ResStockArguments site_city=auto -City "VA, Arlington" ResStockArguments site_city=auto -City "VA, Ashburn" ResStockArguments site_city=auto -City "VA, Blacksburg" ResStockArguments site_city=auto -City "VA, Centreville" ResStockArguments site_city=auto -City "VA, Charlottesville" ResStockArguments site_city=auto -City "VA, Chesapeake" ResStockArguments site_city=auto -City "VA, Dale City" ResStockArguments site_city=auto -City "VA, Danville" ResStockArguments site_city=auto -City "VA, Hampton" ResStockArguments site_city=auto -City "VA, Harrisonburg" ResStockArguments site_city=auto -City "VA, Lake Ridge" ResStockArguments site_city=auto -City "VA, Leesburg" ResStockArguments site_city=auto -City "VA, Lynchburg" ResStockArguments site_city=auto -City "VA, Mclean" ResStockArguments site_city=auto -City "VA, Mechanicsville" ResStockArguments site_city=auto -City "VA, Newport News" ResStockArguments site_city=auto -City "VA, Norfolk" ResStockArguments site_city=auto -City "VA, Petersburg" ResStockArguments site_city=auto -City "VA, Portsmouth" ResStockArguments site_city=auto -City "VA, Reston" ResStockArguments site_city=auto -City "VA, Richmond" ResStockArguments site_city=auto -City "VA, Roanoke" ResStockArguments site_city=auto -City "VA, Suffolk" ResStockArguments site_city=auto -City "VA, Tuckahoe" ResStockArguments site_city=auto -City "VA, Virginia Beach" ResStockArguments site_city=auto -City "VT, Burlington" ResStockArguments site_city=auto -City "WA, Auburn" ResStockArguments site_city=auto -City "WA, Bellevue" ResStockArguments site_city=auto -City "WA, Bellingham" ResStockArguments site_city=auto -City "WA, Bremerton" ResStockArguments site_city=auto -City "WA, Edmonds" ResStockArguments site_city=auto -City "WA, Everett" ResStockArguments site_city=auto -City "WA, Federal Way" ResStockArguments site_city=auto -City "WA, Kennewick" ResStockArguments site_city=auto -City "WA, Kent" ResStockArguments site_city=auto -City "WA, Kirkland" ResStockArguments site_city=auto -City "WA, Lacey" ResStockArguments site_city=auto -City "WA, Lakewood" ResStockArguments site_city=auto -City "WA, Longview" ResStockArguments site_city=auto -City "WA, Marysville" ResStockArguments site_city=auto -City "WA, Olympia" ResStockArguments site_city=auto -City "WA, Pasco" ResStockArguments site_city=auto -City "WA, Puyallup" ResStockArguments site_city=auto -City "WA, Redmond" ResStockArguments site_city=auto -City "WA, Renton" ResStockArguments site_city=auto -City "WA, Richland" ResStockArguments site_city=auto -City "WA, Sammamish" ResStockArguments site_city=auto -City "WA, Seattle" ResStockArguments site_city=auto -City "WA, Shoreline" ResStockArguments site_city=auto -City "WA, South Hill" ResStockArguments site_city=auto -City "WA, Spokane Valley" ResStockArguments site_city=auto -City "WA, Spokane" ResStockArguments site_city=auto -City "WA, Tacoma" ResStockArguments site_city=auto -City "WA, Vancouver" ResStockArguments site_city=auto -City "WA, Yakima" ResStockArguments site_city=auto -City "WI, Appleton" ResStockArguments site_city=auto -City "WI, Beloit" ResStockArguments site_city=auto -City "WI, Eau Claire" ResStockArguments site_city=auto -City "WI, Fond Du Lac" ResStockArguments site_city=auto -City "WI, Green Bay" ResStockArguments site_city=auto -City "WI, Greenfield" ResStockArguments site_city=auto -City "WI, Janesville" ResStockArguments site_city=auto -City "WI, Kenosha" ResStockArguments site_city=auto -City "WI, La Crosse" ResStockArguments site_city=auto -City "WI, Madison" ResStockArguments site_city=auto -City "WI, Manitowoc" ResStockArguments site_city=auto -City "WI, Menomonee Falls" ResStockArguments site_city=auto -City "WI, Milwaukee" ResStockArguments site_city=auto -City "WI, New Berlin" ResStockArguments site_city=auto -City "WI, Oshkosh" ResStockArguments site_city=auto -City "WI, Racine" ResStockArguments site_city=auto -City "WI, Sheboygan" ResStockArguments site_city=auto -City "WI, Waukesha" ResStockArguments site_city=auto -City "WI, Wausau" ResStockArguments site_city=auto -City "WI, Wauwatosa" ResStockArguments site_city=auto -City "WI, West Allis" ResStockArguments site_city=auto -City "WV, Charleston" ResStockArguments site_city=auto -City "WV, Huntington" ResStockArguments site_city=auto -City "WV, Parkersburg" ResStockArguments site_city=auto -City "WY, Casper" ResStockArguments site_city=auto -City "WY, Cheyenne" ResStockArguments site_city=auto -City In another census Place ResStockArguments site_city=auto -City Not in a census Place ResStockArguments site_city=auto -Clothes Dryer "Electric, Heat Pump, Ventless" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=4.5 clothes_dryer_vented_flow_rate=0 -Clothes Dryer "Electric, Premium" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.42 clothes_dryer_vented_flow_rate=auto -Clothes Dryer "Electric, Premium, EnergyStar" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.93 clothes_dryer_vented_flow_rate=auto -Clothes Dryer "Electric, Premium, Heat Pump, Ventless" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=5.2 clothes_dryer_vented_flow_rate=0 -Clothes Dryer "Gas, Premium" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.03 clothes_dryer_vented_flow_rate=auto -Clothes Dryer Electric ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.70 clothes_dryer_vented_flow_rate=auto -Clothes Dryer Gas ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.39 clothes_dryer_vented_flow_rate=auto -Clothes Dryer None ResStockArguments clothes_dryer_present=false clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.70 clothes_dryer_vented_flow_rate=auto -Clothes Dryer Propane ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=propane clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.39 clothes_dryer_vented_flow_rate=auto -Clothes Dryer Void -Clothes Dryer Usage Level 100% Usage ResStockArguments clothes_dryer_usage_multiplier=1.0 -Clothes Dryer Usage Level 120% Usage ResStockArguments clothes_dryer_usage_multiplier=1.2 -Clothes Dryer Usage Level 80% Usage ResStockArguments clothes_dryer_usage_multiplier=0.8 -Clothes Washer "EnergyStar, Cold Only" ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.07 clothes_washer_rated_annual_kwh=123 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=9 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.68 -Clothes Washer CEE Advanced Tier ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=3.1 clothes_washer_rated_annual_kwh=120 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=14 clothes_washer_label_usage=7.538462 clothes_washer_capacity=5.8 -Clothes Washer EnergyStar ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.07 clothes_washer_rated_annual_kwh=123 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=9 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.68 -Clothes Washer EnergyStar More Efficient ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.83 clothes_washer_rated_annual_kwh=90 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=8 clothes_washer_label_usage=7.538462 clothes_washer_capacity=4.5 -Clothes Washer EnergyStar Most Efficient ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.92 clothes_washer_rated_annual_kwh=75 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=7 clothes_washer_label_usage=7.538462 clothes_washer_capacity=4.5 -Clothes Washer None ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=0 clothes_washer_rated_annual_kwh=0 clothes_washer_label_electric_rate=0 clothes_washer_label_gas_rate=0 clothes_washer_label_annual_gas_cost=0 clothes_washer_label_usage=0 clothes_washer_capacity=0 -Clothes Washer Standard ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=0.95 clothes_washer_rated_annual_kwh=387 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=24 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.5 -Clothes Washer Void -Clothes Washer Presence None ResStockArguments clothes_washer_present=false -Clothes Washer Presence Void -Clothes Washer Presence Yes ResStockArguments clothes_washer_present=true -Clothes Washer Usage Level 100% Usage ResStockArguments clothes_washer_usage_multiplier=1.0 -Clothes Washer Usage Level 120% Usage ResStockArguments clothes_washer_usage_multiplier=1.2 -Clothes Washer Usage Level 80% Usage ResStockArguments clothes_washer_usage_multiplier=0.8 -Cooking Range Electric Induction ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=electricity cooking_range_oven_is_induction=true cooking_range_oven_is_convection=auto -Cooking Range Electric Resistance ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=electricity cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto -Cooking Range Gas ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=natural gas cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto -Cooking Range None ResStockArguments cooking_range_oven_present=false cooking_range_oven_location=auto cooking_range_oven_fuel_type=natural gas cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto -Cooking Range Propane ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=propane cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto -Cooking Range Void -Cooking Range Usage Level 100% Usage ResStockArguments cooking_range_oven_usage_multiplier=1.0 -Cooking Range Usage Level 120% Usage ResStockArguments cooking_range_oven_usage_multiplier=1.2 -Cooking Range Usage Level 80% Usage ResStockArguments cooking_range_oven_usage_multiplier=0.8 -Cooling Setpoint 60F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=60 hvac_control_cooling_weekend_setpoint_temp=60 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 62F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=62 hvac_control_cooling_weekend_setpoint_temp=62 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 64F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=64 hvac_control_cooling_weekend_setpoint_temp=64 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 65F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=65 hvac_control_cooling_weekend_setpoint_temp=65 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 66F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=66 hvac_control_cooling_weekend_setpoint_temp=66 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 67F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=67 hvac_control_cooling_weekend_setpoint_temp=67 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 68F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=68 hvac_control_cooling_weekend_setpoint_temp=68 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 69F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=69 hvac_control_cooling_weekend_setpoint_temp=69 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 70F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=70 hvac_control_cooling_weekend_setpoint_temp=70 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 72F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=72 hvac_control_cooling_weekend_setpoint_temp=72 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 73F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=73 hvac_control_cooling_weekend_setpoint_temp=73 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 74F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=74 hvac_control_cooling_weekend_setpoint_temp=74 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 75F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=75 hvac_control_cooling_weekend_setpoint_temp=75 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 76F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=76 hvac_control_cooling_weekend_setpoint_temp=76 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 76F w/ Building America season ResStockArguments hvac_control_cooling_weekday_setpoint_temp=76 hvac_control_cooling_weekend_setpoint_temp=76 use_auto_cooling_season=true hvac_control_cooling_season_period=auto -Cooling Setpoint 77F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=77 hvac_control_cooling_weekend_setpoint_temp=77 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 78F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=78 hvac_control_cooling_weekend_setpoint_temp=78 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 80F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=80 hvac_control_cooling_weekend_setpoint_temp=80 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint Void -Cooling Setpoint Has Offset No -Cooling Setpoint Has Offset Yes -Cooling Setpoint Offset Magnitude 0F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=0 hvac_control_cooling_weekend_setpoint_offset_magnitude=0 -Cooling Setpoint Offset Magnitude 2F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=2 hvac_control_cooling_weekend_setpoint_offset_magnitude=2 -Cooling Setpoint Offset Magnitude 5F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=5 hvac_control_cooling_weekend_setpoint_offset_magnitude=5 -Cooling Setpoint Offset Magnitude 9F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=9 hvac_control_cooling_weekend_setpoint_offset_magnitude=9 -Cooling Setpoint Offset Period Day Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup and Night Setback ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day Setup and Night Setback +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day Setup and Night Setback +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day Setup and Night Setback +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day Setup and Night Setback -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" -Cooling Setpoint Offset Period Day and Night Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1" -Cooling Setpoint Offset Period Day and Night Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1" -Cooling Setpoint Offset Period Day and Night Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day and Night Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day and Night Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day and Night Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day and Night Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1" -Cooling Setpoint Offset Period Day and Night Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1" -Cooling Setpoint Offset Period Day and Night Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1" -Cooling Setpoint Offset Period Day and Night Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1" -Cooling Setpoint Offset Period Day and Night Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1" -Cooling Setpoint Offset Period Night Setback ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" -Cooling Setpoint Offset Period Night Setback +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" -Cooling Setpoint Offset Period Night Setback +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setback +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setback +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setback +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setback -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" -Cooling Setpoint Offset Period Night Setback -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" -Cooling Setpoint Offset Period Night Setback -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" -Cooling Setpoint Offset Period Night Setback -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" -Cooling Setpoint Offset Period Night Setback -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" -Cooling Setpoint Offset Period Night Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1" -Cooling Setpoint Offset Period Night Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1" -Cooling Setpoint Offset Period Night Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1" -Cooling Setpoint Offset Period Night Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1" -Cooling Setpoint Offset Period Night Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1" -Cooling Setpoint Offset Period Night Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1" -Cooling Setpoint Offset Period Night Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1" -Cooling Setpoint Offset Period None ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Corridor Double Exterior ResStockArguments geometry_corridor_position=Double Exterior geometry_corridor_width=10 -Corridor Double-Loaded Interior ResStockArguments geometry_corridor_position=Double-Loaded Interior geometry_corridor_width=10 -Corridor None ResStockArguments geometry_corridor_position=None geometry_corridor_width=0 -Corridor Not Applicable ResStockArguments geometry_corridor_position=None geometry_corridor_width=0 -Corridor Single Exterior Front ResStockArguments geometry_corridor_position=Single Exterior (Front) geometry_corridor_width=10 -County "AK, Aleutians East Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200130.epw site_zip_code=99661 site_time_zone_utc_offset=-9 -County "AK, Aleutians West Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200160.epw site_zip_code=99685 site_time_zone_utc_offset=-9 -County "AK, Anchorage Municipality" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200200.epw site_zip_code=99501 site_time_zone_utc_offset=-9 -County "AK, Bethel Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200500.epw site_zip_code=99545 site_time_zone_utc_offset=-9 -County "AK, Bristol Bay Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200600.epw site_zip_code=99633 site_time_zone_utc_offset=-9 -County "AK, Denali Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200680.epw site_zip_code=99743 site_time_zone_utc_offset=-9 -County "AK, Dillingham Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200700.epw site_zip_code=99576 site_time_zone_utc_offset=-9 -County "AK, Fairbanks North Star Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200900.epw site_zip_code=99709 site_time_zone_utc_offset=-9 -County "AK, Haines Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201000.epw site_zip_code=99827 site_time_zone_utc_offset=-9 -County "AK, Hoonah-Angoon Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201050.epw site_zip_code=99829 site_time_zone_utc_offset=-9 -County "AK, Juneau City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201100.epw site_zip_code=99802 site_time_zone_utc_offset=-9 -County "AK, Kenai Peninsula Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201220.epw site_zip_code=99611 site_time_zone_utc_offset=-9 -County "AK, Ketchikan Gateway Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201300.epw site_zip_code=99901 site_time_zone_utc_offset=-9 -County "AK, Kodiak Island Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201500.epw site_zip_code=99615 site_time_zone_utc_offset=-9 -County "AK, Kusilvak Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202700.epw site_zip_code=99604 site_time_zone_utc_offset=-9 -County "AK, Lake and Peninsula Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201640.epw site_zip_code=99653 site_time_zone_utc_offset=-9 -County "AK, Matanuska-Susitna Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201700.epw site_zip_code=99645 site_time_zone_utc_offset=-9 -County "AK, Nome Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201800.epw site_zip_code=99762 site_time_zone_utc_offset=-9 -County "AK, North Slope Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201850.epw site_zip_code=99723 site_time_zone_utc_offset=-9 -County "AK, Northwest Arctic Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201880.epw site_zip_code=99752 site_time_zone_utc_offset=-9 -County "AK, Petersburg Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201950.epw site_zip_code=99833 site_time_zone_utc_offset=-9 -County "AK, Prince of Wales-Hyder Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201980.epw site_zip_code=99926 site_time_zone_utc_offset=-9 -County "AK, Sitka City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202200.epw site_zip_code=99835 site_time_zone_utc_offset=-9 -County "AK, Skagway Municipality" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202300.epw site_zip_code=99840 site_time_zone_utc_offset=-9 -County "AK, Southeast Fairbanks Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202400.epw site_zip_code=99731 site_time_zone_utc_offset=-9 -County "AK, Valdez-Cordova Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202610.epw site_zip_code=99686 site_time_zone_utc_offset=-9 -County "AK, Wrangell City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202750.epw site_zip_code=99903 site_time_zone_utc_offset=-9 -County "AK, Yakutat City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202820.epw site_zip_code=99689 site_time_zone_utc_offset=-9 -County "AK, Yukon-Koyukuk Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202900.epw site_zip_code=99740 site_time_zone_utc_offset=-9 -County "AL, Autauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100010.epw site_zip_code=36067 site_time_zone_utc_offset=-6 -County "AL, Baldwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100030.epw site_zip_code=36535 site_time_zone_utc_offset=-6 -County "AL, Barbour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100050.epw site_zip_code=36027 site_time_zone_utc_offset=-6 -County "AL, Bibb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100070.epw site_zip_code=35042 site_time_zone_utc_offset=-6 -County "AL, Blount County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100090.epw site_zip_code=35121 site_time_zone_utc_offset=-6 -County "AL, Bullock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100110.epw site_zip_code=36089 site_time_zone_utc_offset=-6 -County "AL, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100130.epw site_zip_code=36037 site_time_zone_utc_offset=-6 -County "AL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100150.epw site_zip_code=36201 site_time_zone_utc_offset=-6 -County "AL, Chambers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100170.epw site_zip_code=36863 site_time_zone_utc_offset=-6 -County "AL, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100190.epw site_zip_code=35960 site_time_zone_utc_offset=-6 -County "AL, Chilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100210.epw site_zip_code=35045 site_time_zone_utc_offset=-6 -County "AL, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100230.epw site_zip_code=36904 site_time_zone_utc_offset=-6 -County "AL, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100250.epw site_zip_code=36545 site_time_zone_utc_offset=-6 -County "AL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100270.epw site_zip_code=36251 site_time_zone_utc_offset=-6 -County "AL, Cleburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100290.epw site_zip_code=36264 site_time_zone_utc_offset=-6 -County "AL, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100310.epw site_zip_code=36330 site_time_zone_utc_offset=-6 -County "AL, Colbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100330.epw site_zip_code=35674 site_time_zone_utc_offset=-6 -County "AL, Conecuh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100350.epw site_zip_code=36401 site_time_zone_utc_offset=-6 -County "AL, Coosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100370.epw site_zip_code=35151 site_time_zone_utc_offset=-6 -County "AL, Covington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100390.epw site_zip_code=36420 site_time_zone_utc_offset=-6 -County "AL, Crenshaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100410.epw site_zip_code=36049 site_time_zone_utc_offset=-6 -County "AL, Cullman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100430.epw site_zip_code=35055 site_time_zone_utc_offset=-6 -County "AL, Dale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100450.epw site_zip_code=36360 site_time_zone_utc_offset=-6 -County "AL, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100470.epw site_zip_code=36701 site_time_zone_utc_offset=-6 -County "AL, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100490.epw site_zip_code=35967 site_time_zone_utc_offset=-6 -County "AL, Elmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100510.epw site_zip_code=36092 site_time_zone_utc_offset=-6 -County "AL, Escambia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100530.epw site_zip_code=36426 site_time_zone_utc_offset=-6 -County "AL, Etowah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100550.epw site_zip_code=35901 site_time_zone_utc_offset=-6 -County "AL, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100570.epw site_zip_code=35555 site_time_zone_utc_offset=-6 -County "AL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100590.epw site_zip_code=35653 site_time_zone_utc_offset=-6 -County "AL, Geneva County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100610.epw site_zip_code=36375 site_time_zone_utc_offset=-6 -County "AL, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100630.epw site_zip_code=35462 site_time_zone_utc_offset=-6 -County "AL, Hale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100650.epw site_zip_code=36744 site_time_zone_utc_offset=-6 -County "AL, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100670.epw site_zip_code=36310 site_time_zone_utc_offset=-6 -County "AL, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100690.epw site_zip_code=36301 site_time_zone_utc_offset=-6 -County "AL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100710.epw site_zip_code=35768 site_time_zone_utc_offset=-6 -County "AL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100730.epw site_zip_code=35215 site_time_zone_utc_offset=-6 -County "AL, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100750.epw site_zip_code=35586 site_time_zone_utc_offset=-6 -County "AL, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100770.epw site_zip_code=35630 site_time_zone_utc_offset=-6 -County "AL, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100790.epw site_zip_code=35650 site_time_zone_utc_offset=-6 -County "AL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100810.epw site_zip_code=36830 site_time_zone_utc_offset=-6 -County "AL, Limestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100830.epw site_zip_code=35611 site_time_zone_utc_offset=-6 -County "AL, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100850.epw site_zip_code=36040 site_time_zone_utc_offset=-6 -County "AL, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100870.epw site_zip_code=36083 site_time_zone_utc_offset=-6 -County "AL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100890.epw site_zip_code=35758 site_time_zone_utc_offset=-6 -County "AL, Marengo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100910.epw site_zip_code=36732 site_time_zone_utc_offset=-6 -County "AL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100930.epw site_zip_code=35570 site_time_zone_utc_offset=-6 -County "AL, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100950.epw site_zip_code=35976 site_time_zone_utc_offset=-6 -County "AL, Mobile County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100970.epw site_zip_code=36695 site_time_zone_utc_offset=-6 -County "AL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100990.epw site_zip_code=36460 site_time_zone_utc_offset=-6 -County "AL, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101010.epw site_zip_code=36117 site_time_zone_utc_offset=-6 -County "AL, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101030.epw site_zip_code=35601 site_time_zone_utc_offset=-6 -County "AL, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101050.epw site_zip_code=36756 site_time_zone_utc_offset=-6 -County "AL, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101070.epw site_zip_code=35466 site_time_zone_utc_offset=-6 -County "AL, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101090.epw site_zip_code=36081 site_time_zone_utc_offset=-6 -County "AL, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101110.epw site_zip_code=36274 site_time_zone_utc_offset=-6 -County "AL, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101130.epw site_zip_code=36869 site_time_zone_utc_offset=-6 -County "AL, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101170.epw site_zip_code=35242 site_time_zone_utc_offset=-6 -County "AL, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101150.epw site_zip_code=35120 site_time_zone_utc_offset=-6 -County "AL, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101190.epw site_zip_code=36925 site_time_zone_utc_offset=-6 -County "AL, Talladega County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101210.epw site_zip_code=35160 site_time_zone_utc_offset=-6 -County "AL, Tallapoosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101230.epw site_zip_code=35010 site_time_zone_utc_offset=-6 -County "AL, Tuscaloosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101250.epw site_zip_code=35401 site_time_zone_utc_offset=-6 -County "AL, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101270.epw site_zip_code=35504 site_time_zone_utc_offset=-6 -County "AL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101290.epw site_zip_code=36558 site_time_zone_utc_offset=-6 -County "AL, Wilcox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101310.epw site_zip_code=36726 site_time_zone_utc_offset=-6 -County "AL, Winston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101330.epw site_zip_code=35565 site_time_zone_utc_offset=-6 -County "AR, Arkansas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500010.epw site_zip_code=72160 site_time_zone_utc_offset=-6 -County "AR, Ashley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500030.epw site_zip_code=71635 site_time_zone_utc_offset=-6 -County "AR, Baxter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500050.epw site_zip_code=72653 site_time_zone_utc_offset=-6 -County "AR, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500070.epw site_zip_code=72712 site_time_zone_utc_offset=-6 -County "AR, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500090.epw site_zip_code=72601 site_time_zone_utc_offset=-6 -County "AR, Bradley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500110.epw site_zip_code=71671 site_time_zone_utc_offset=-6 -County "AR, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500130.epw site_zip_code=71744 site_time_zone_utc_offset=-6 -County "AR, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500150.epw site_zip_code=72616 site_time_zone_utc_offset=-6 -County "AR, Chicot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500170.epw site_zip_code=71653 site_time_zone_utc_offset=-6 -County "AR, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500190.epw site_zip_code=71923 site_time_zone_utc_offset=-6 -County "AR, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500210.epw site_zip_code=72454 site_time_zone_utc_offset=-6 -County "AR, Cleburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500230.epw site_zip_code=72543 site_time_zone_utc_offset=-6 -County "AR, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500250.epw site_zip_code=71665 site_time_zone_utc_offset=-6 -County "AR, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500270.epw site_zip_code=71753 site_time_zone_utc_offset=-6 -County "AR, Conway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500290.epw site_zip_code=72110 site_time_zone_utc_offset=-6 -County "AR, Craighead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500310.epw site_zip_code=72401 site_time_zone_utc_offset=-6 -County "AR, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500330.epw site_zip_code=72956 site_time_zone_utc_offset=-6 -County "AR, Crittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500350.epw site_zip_code=72301 site_time_zone_utc_offset=-6 -County "AR, Cross County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500370.epw site_zip_code=72396 site_time_zone_utc_offset=-6 -County "AR, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500390.epw site_zip_code=71742 site_time_zone_utc_offset=-6 -County "AR, Desha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500410.epw site_zip_code=71639 site_time_zone_utc_offset=-6 -County "AR, Drew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500430.epw site_zip_code=71655 site_time_zone_utc_offset=-6 -County "AR, Faulkner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500450.epw site_zip_code=72034 site_time_zone_utc_offset=-6 -County "AR, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500470.epw site_zip_code=72949 site_time_zone_utc_offset=-6 -County "AR, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500490.epw site_zip_code=72554 site_time_zone_utc_offset=-6 -County "AR, Garland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500510.epw site_zip_code=71913 site_time_zone_utc_offset=-6 -County "AR, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500530.epw site_zip_code=72150 site_time_zone_utc_offset=-6 -County "AR, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500550.epw site_zip_code=72450 site_time_zone_utc_offset=-6 -County "AR, Hempstead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500570.epw site_zip_code=71801 site_time_zone_utc_offset=-6 -County "AR, Hot Spring County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500590.epw site_zip_code=72104 site_time_zone_utc_offset=-6 -County "AR, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500610.epw site_zip_code=71852 site_time_zone_utc_offset=-6 -County "AR, Independence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500630.epw site_zip_code=72501 site_time_zone_utc_offset=-6 -County "AR, Izard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500650.epw site_zip_code=72556 site_time_zone_utc_offset=-6 -County "AR, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500670.epw site_zip_code=72112 site_time_zone_utc_offset=-6 -County "AR, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500690.epw site_zip_code=71603 site_time_zone_utc_offset=-6 -County "AR, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500710.epw site_zip_code=72830 site_time_zone_utc_offset=-6 -County "AR, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500730.epw site_zip_code=71860 site_time_zone_utc_offset=-6 -County "AR, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500750.epw site_zip_code=72476 site_time_zone_utc_offset=-6 -County "AR, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500770.epw site_zip_code=72360 site_time_zone_utc_offset=-6 -County "AR, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500790.epw site_zip_code=71667 site_time_zone_utc_offset=-6 -County "AR, Little River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500810.epw site_zip_code=71822 site_time_zone_utc_offset=-6 -County "AR, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500830.epw site_zip_code=72927 site_time_zone_utc_offset=-6 -County "AR, Lonoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500850.epw site_zip_code=72023 site_time_zone_utc_offset=-6 -County "AR, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500870.epw site_zip_code=72740 site_time_zone_utc_offset=-6 -County "AR, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500890.epw site_zip_code=72687 site_time_zone_utc_offset=-6 -County "AR, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500910.epw site_zip_code=71854 site_time_zone_utc_offset=-6 -County "AR, Mississippi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500930.epw site_zip_code=72315 site_time_zone_utc_offset=-6 -County "AR, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500950.epw site_zip_code=72021 site_time_zone_utc_offset=-6 -County "AR, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500970.epw site_zip_code=71957 site_time_zone_utc_offset=-6 -County "AR, Nevada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500990.epw site_zip_code=71857 site_time_zone_utc_offset=-6 -County "AR, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501010.epw site_zip_code=72641 site_time_zone_utc_offset=-6 -County "AR, Ouachita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501030.epw site_zip_code=71701 site_time_zone_utc_offset=-6 -County "AR, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501050.epw site_zip_code=72126 site_time_zone_utc_offset=-6 -County "AR, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501070.epw site_zip_code=72390 site_time_zone_utc_offset=-6 -County "AR, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501090.epw site_zip_code=71943 site_time_zone_utc_offset=-6 -County "AR, Poinsett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501110.epw site_zip_code=72472 site_time_zone_utc_offset=-6 -County "AR, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501130.epw site_zip_code=71953 site_time_zone_utc_offset=-6 -County "AR, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501150.epw site_zip_code=72802 site_time_zone_utc_offset=-6 -County "AR, Prairie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501170.epw site_zip_code=72040 site_time_zone_utc_offset=-6 -County "AR, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501190.epw site_zip_code=72076 site_time_zone_utc_offset=-6 -County "AR, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501210.epw site_zip_code=72455 site_time_zone_utc_offset=-6 -County "AR, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501250.epw site_zip_code=72019 site_time_zone_utc_offset=-6 -County "AR, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501270.epw site_zip_code=72958 site_time_zone_utc_offset=-6 -County "AR, Searcy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501290.epw site_zip_code=72650 site_time_zone_utc_offset=-6 -County "AR, Sebastian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501310.epw site_zip_code=72903 site_time_zone_utc_offset=-6 -County "AR, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501330.epw site_zip_code=71832 site_time_zone_utc_offset=-6 -County "AR, Sharp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501350.epw site_zip_code=72529 site_time_zone_utc_offset=-6 -County "AR, St. Francis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501230.epw site_zip_code=72335 site_time_zone_utc_offset=-6 -County "AR, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501370.epw site_zip_code=72560 site_time_zone_utc_offset=-6 -County "AR, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501390.epw site_zip_code=71730 site_time_zone_utc_offset=-6 -County "AR, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501410.epw site_zip_code=72031 site_time_zone_utc_offset=-6 -County "AR, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501430.epw site_zip_code=72701 site_time_zone_utc_offset=-6 -County "AR, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501450.epw site_zip_code=72143 site_time_zone_utc_offset=-6 -County "AR, Woodruff County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501470.epw site_zip_code=72006 site_time_zone_utc_offset=-6 -County "AR, Yell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501490.epw site_zip_code=72834 site_time_zone_utc_offset=-6 -County "AZ, Apache County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400010.epw site_zip_code=85936 site_time_zone_utc_offset=-7 -County "AZ, Cochise County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400030.epw site_zip_code=85635 site_time_zone_utc_offset=-7 -County "AZ, Coconino County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400050.epw site_zip_code=86001 site_time_zone_utc_offset=-7 -County "AZ, Gila County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400070.epw site_zip_code=85541 site_time_zone_utc_offset=-7 -County "AZ, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400090.epw site_zip_code=85546 site_time_zone_utc_offset=-7 -County "AZ, Greenlee County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400110.epw site_zip_code=85534 site_time_zone_utc_offset=-7 -County "AZ, La Paz County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400120.epw site_zip_code=85344 site_time_zone_utc_offset=-7 -County "AZ, Maricopa County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400130.epw site_zip_code=85281 site_time_zone_utc_offset=-7 -County "AZ, Mohave County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400150.epw site_zip_code=86442 site_time_zone_utc_offset=-7 -County "AZ, Navajo County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400170.epw site_zip_code=85901 site_time_zone_utc_offset=-7 -County "AZ, Pima County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400190.epw site_zip_code=85705 site_time_zone_utc_offset=-7 -County "AZ, Pinal County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400210.epw site_zip_code=85122 site_time_zone_utc_offset=-7 -County "AZ, Santa Cruz County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400230.epw site_zip_code=85621 site_time_zone_utc_offset=-7 -County "AZ, Yavapai County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400250.epw site_zip_code=86314 site_time_zone_utc_offset=-7 -County "AZ, Yuma County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400270.epw site_zip_code=85364 site_time_zone_utc_offset=-7 -County "CA, Alameda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600010.epw site_zip_code=94501 site_time_zone_utc_offset=-8 -County "CA, Alpine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600030.epw site_zip_code=96120 site_time_zone_utc_offset=-8 -County "CA, Amador County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600050.epw site_zip_code=95642 site_time_zone_utc_offset=-8 -County "CA, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600070.epw site_zip_code=95928 site_time_zone_utc_offset=-8 -County "CA, Calaveras County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600090.epw site_zip_code=95252 site_time_zone_utc_offset=-8 -County "CA, Colusa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600110.epw site_zip_code=95932 site_time_zone_utc_offset=-8 -County "CA, Contra Costa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600130.epw site_zip_code=94565 site_time_zone_utc_offset=-8 -County "CA, Del Norte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600150.epw site_zip_code=95531 site_time_zone_utc_offset=-8 -County "CA, El Dorado County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600170.epw site_zip_code=95762 site_time_zone_utc_offset=-8 -County "CA, Fresno County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600190.epw site_zip_code=93722 site_time_zone_utc_offset=-8 -County "CA, Glenn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600210.epw site_zip_code=95963 site_time_zone_utc_offset=-8 -County "CA, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600230.epw site_zip_code=95501 site_time_zone_utc_offset=-8 -County "CA, Imperial County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600250.epw site_zip_code=92243 site_time_zone_utc_offset=-8 -County "CA, Inyo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600270.epw site_zip_code=93514 site_time_zone_utc_offset=-8 -County "CA, Kern County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600290.epw site_zip_code=93306 site_time_zone_utc_offset=-8 -County "CA, Kings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600310.epw site_zip_code=93230 site_time_zone_utc_offset=-8 -County "CA, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600330.epw site_zip_code=95422 site_time_zone_utc_offset=-8 -County "CA, Lassen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600350.epw site_zip_code=96130 site_time_zone_utc_offset=-8 -County "CA, Los Angeles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600370.epw site_zip_code=90250 site_time_zone_utc_offset=-8 -County "CA, Madera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600390.epw site_zip_code=93637 site_time_zone_utc_offset=-8 -County "CA, Marin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600410.epw site_zip_code=94901 site_time_zone_utc_offset=-8 -County "CA, Mariposa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600430.epw site_zip_code=95338 site_time_zone_utc_offset=-8 -County "CA, Mendocino County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600450.epw site_zip_code=95482 site_time_zone_utc_offset=-8 -County "CA, Merced County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600470.epw site_zip_code=93635 site_time_zone_utc_offset=-8 -County "CA, Modoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600490.epw site_zip_code=96101 site_time_zone_utc_offset=-8 -County "CA, Mono County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600510.epw site_zip_code=93546 site_time_zone_utc_offset=-8 -County "CA, Monterey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600530.epw site_zip_code=93906 site_time_zone_utc_offset=-8 -County "CA, Napa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600550.epw site_zip_code=94558 site_time_zone_utc_offset=-8 -County "CA, Nevada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600570.epw site_zip_code=95945 site_time_zone_utc_offset=-8 -County "CA, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600590.epw site_zip_code=92683 site_time_zone_utc_offset=-8 -County "CA, Placer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600610.epw site_zip_code=95747 site_time_zone_utc_offset=-8 -County "CA, Plumas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600630.epw site_zip_code=96122 site_time_zone_utc_offset=-8 -County "CA, Riverside County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600650.epw site_zip_code=92503 site_time_zone_utc_offset=-8 -County "CA, Sacramento County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600670.epw site_zip_code=95630 site_time_zone_utc_offset=-8 -County "CA, San Benito County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600690.epw site_zip_code=95023 site_time_zone_utc_offset=-8 -County "CA, San Bernardino County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600710.epw site_zip_code=92336 site_time_zone_utc_offset=-8 -County "CA, San Diego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600730.epw site_zip_code=92101 site_time_zone_utc_offset=-8 -County "CA, San Francisco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600750.epw site_zip_code=94109 site_time_zone_utc_offset=-8 -County "CA, San Joaquin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600770.epw site_zip_code=95206 site_time_zone_utc_offset=-8 -County "CA, San Luis Obispo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600790.epw site_zip_code=93446 site_time_zone_utc_offset=-8 -County "CA, San Mateo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600810.epw site_zip_code=94080 site_time_zone_utc_offset=-8 -County "CA, Santa Barbara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600830.epw site_zip_code=93436 site_time_zone_utc_offset=-8 -County "CA, Santa Clara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600850.epw site_zip_code=95035 site_time_zone_utc_offset=-8 -County "CA, Santa Cruz County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600870.epw site_zip_code=95076 site_time_zone_utc_offset=-8 -County "CA, Shasta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600890.epw site_zip_code=96003 site_time_zone_utc_offset=-8 -County "CA, Sierra County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600910.epw site_zip_code=95960 site_time_zone_utc_offset=-8 -County "CA, Siskiyou County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600930.epw site_zip_code=96097 site_time_zone_utc_offset=-8 -County "CA, Solano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600950.epw site_zip_code=94533 site_time_zone_utc_offset=-8 -County "CA, Sonoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600970.epw site_zip_code=95403 site_time_zone_utc_offset=-8 -County "CA, Stanislaus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600990.epw site_zip_code=95355 site_time_zone_utc_offset=-8 -County "CA, Sutter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601010.epw site_zip_code=95991 site_time_zone_utc_offset=-8 -County "CA, Tehama County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601030.epw site_zip_code=96080 site_time_zone_utc_offset=-8 -County "CA, Trinity County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601050.epw site_zip_code=96091 site_time_zone_utc_offset=-8 -County "CA, Tulare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601070.epw site_zip_code=93274 site_time_zone_utc_offset=-8 -County "CA, Tuolumne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601090.epw site_zip_code=95370 site_time_zone_utc_offset=-8 -County "CA, Ventura County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601110.epw site_zip_code=93065 site_time_zone_utc_offset=-8 -County "CA, Yolo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601130.epw site_zip_code=95616 site_time_zone_utc_offset=-8 -County "CA, Yuba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601150.epw site_zip_code=95901 site_time_zone_utc_offset=-8 -County "CO, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800010.epw site_zip_code=80229 site_time_zone_utc_offset=-7 -County "CO, Alamosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800030.epw site_zip_code=81101 site_time_zone_utc_offset=-7 -County "CO, Arapahoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800050.epw site_zip_code=80013 site_time_zone_utc_offset=-7 -County "CO, Archuleta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800070.epw site_zip_code=81147 site_time_zone_utc_offset=-7 -County "CO, Baca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800090.epw site_zip_code=81073 site_time_zone_utc_offset=-7 -County "CO, Bent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800110.epw site_zip_code=81054 site_time_zone_utc_offset=-7 -County "CO, Boulder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800130.epw site_zip_code=80501 site_time_zone_utc_offset=-7 -County "CO, Broomfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800140.epw site_zip_code=80020 site_time_zone_utc_offset=-7 -County "CO, Chaffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800150.epw site_zip_code=81201 site_time_zone_utc_offset=-7 -County "CO, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800170.epw site_zip_code=80810 site_time_zone_utc_offset=-7 -County "CO, Clear Creek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800190.epw site_zip_code=80439 site_time_zone_utc_offset=-7 -County "CO, Conejos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800210.epw site_zip_code=81120 site_time_zone_utc_offset=-7 -County "CO, Costilla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800230.epw site_zip_code=81133 site_time_zone_utc_offset=-7 -County "CO, Crowley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800250.epw site_zip_code=81063 site_time_zone_utc_offset=-7 -County "CO, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800270.epw site_zip_code=81252 site_time_zone_utc_offset=-7 -County "CO, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800290.epw site_zip_code=81416 site_time_zone_utc_offset=-7 -County "CO, Denver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800310.epw site_zip_code=80211 site_time_zone_utc_offset=-7 -County "CO, Dolores County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800330.epw site_zip_code=81324 site_time_zone_utc_offset=-7 -County "CO, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800350.epw site_zip_code=80134 site_time_zone_utc_offset=-7 -County "CO, Eagle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800370.epw site_zip_code=81620 site_time_zone_utc_offset=-7 -County "CO, El Paso County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800410.epw site_zip_code=80918 site_time_zone_utc_offset=-7 -County "CO, Elbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800390.epw site_zip_code=80107 site_time_zone_utc_offset=-7 -County "CO, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800430.epw site_zip_code=81212 site_time_zone_utc_offset=-7 -County "CO, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800450.epw site_zip_code=81601 site_time_zone_utc_offset=-7 -County "CO, Gilpin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800470.epw site_zip_code=80422 site_time_zone_utc_offset=-7 -County "CO, Grand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800490.epw site_zip_code=80459 site_time_zone_utc_offset=-7 -County "CO, Gunnison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800510.epw site_zip_code=81230 site_time_zone_utc_offset=-7 -County "CO, Hinsdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800530.epw site_zip_code=81235 site_time_zone_utc_offset=-7 -County "CO, Huerfano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800550.epw site_zip_code=81089 site_time_zone_utc_offset=-7 -County "CO, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800570.epw site_zip_code=80480 site_time_zone_utc_offset=-7 -County "CO, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800590.epw site_zip_code=80127 site_time_zone_utc_offset=-7 -County "CO, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800610.epw site_zip_code=81036 site_time_zone_utc_offset=-7 -County "CO, Kit Carson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800630.epw site_zip_code=80807 site_time_zone_utc_offset=-7 -County "CO, La Plata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800670.epw site_zip_code=81301 site_time_zone_utc_offset=-7 -County "CO, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800650.epw site_zip_code=80461 site_time_zone_utc_offset=-7 -County "CO, Larimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800690.epw site_zip_code=80525 site_time_zone_utc_offset=-7 -County "CO, Las Animas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800710.epw site_zip_code=81082 site_time_zone_utc_offset=-7 -County "CO, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800730.epw site_zip_code=80828 site_time_zone_utc_offset=-7 -County "CO, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800750.epw site_zip_code=80751 site_time_zone_utc_offset=-7 -County "CO, Mesa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800770.epw site_zip_code=81504 site_time_zone_utc_offset=-7 -County "CO, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800790.epw site_zip_code=81130 site_time_zone_utc_offset=-7 -County "CO, Moffat County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800810.epw site_zip_code=81625 site_time_zone_utc_offset=-7 -County "CO, Montezuma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800830.epw site_zip_code=81321 site_time_zone_utc_offset=-7 -County "CO, Montrose County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800850.epw site_zip_code=81401 site_time_zone_utc_offset=-7 -County "CO, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800870.epw site_zip_code=80701 site_time_zone_utc_offset=-7 -County "CO, Otero County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800890.epw site_zip_code=81050 site_time_zone_utc_offset=-7 -County "CO, Ouray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800910.epw site_zip_code=81432 site_time_zone_utc_offset=-7 -County "CO, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800930.epw site_zip_code=80421 site_time_zone_utc_offset=-7 -County "CO, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800950.epw site_zip_code=80734 site_time_zone_utc_offset=-7 -County "CO, Pitkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800970.epw site_zip_code=81612 site_time_zone_utc_offset=-7 -County "CO, Prowers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800990.epw site_zip_code=81052 site_time_zone_utc_offset=-7 -County "CO, Pueblo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801010.epw site_zip_code=81001 site_time_zone_utc_offset=-7 -County "CO, Rio Blanco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801030.epw site_zip_code=81648 site_time_zone_utc_offset=-7 -County "CO, Rio Grande County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801050.epw site_zip_code=81144 site_time_zone_utc_offset=-7 -County "CO, Routt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801070.epw site_zip_code=80487 site_time_zone_utc_offset=-7 -County "CO, Saguache County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801090.epw site_zip_code=81125 site_time_zone_utc_offset=-7 -County "CO, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801110.epw site_zip_code=81433 site_time_zone_utc_offset=-7 -County "CO, San Miguel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801130.epw site_zip_code=81435 site_time_zone_utc_offset=-7 -County "CO, Sedgwick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801150.epw site_zip_code=80737 site_time_zone_utc_offset=-7 -County "CO, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801170.epw site_zip_code=80424 site_time_zone_utc_offset=-7 -County "CO, Teller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801190.epw site_zip_code=80863 site_time_zone_utc_offset=-7 -County "CO, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801210.epw site_zip_code=80720 site_time_zone_utc_offset=-7 -County "CO, Weld County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801230.epw site_zip_code=80634 site_time_zone_utc_offset=-7 -County "CO, Yuma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801250.epw site_zip_code=80759 site_time_zone_utc_offset=-7 -County "CT, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900010.epw site_zip_code=06902 site_time_zone_utc_offset=-5 -County "CT, Hartford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900030.epw site_zip_code=06010 site_time_zone_utc_offset=-5 -County "CT, Litchfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900050.epw site_zip_code=06790 site_time_zone_utc_offset=-5 -County "CT, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900070.epw site_zip_code=06457 site_time_zone_utc_offset=-5 -County "CT, New Haven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900090.epw site_zip_code=06516 site_time_zone_utc_offset=-5 -County "CT, New London County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900110.epw site_zip_code=06360 site_time_zone_utc_offset=-5 -County "CT, Tolland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900130.epw site_zip_code=06066 site_time_zone_utc_offset=-5 -County "CT, Windham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900150.epw site_zip_code=06226 site_time_zone_utc_offset=-5 -County "DC, District of Columbia" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1100010.epw site_zip_code=20002 site_time_zone_utc_offset=-5 -County "DE, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000010.epw site_zip_code=19904 site_time_zone_utc_offset=-5 -County "DE, New Castle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000030.epw site_zip_code=19720 site_time_zone_utc_offset=-5 -County "DE, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000050.epw site_zip_code=19966 site_time_zone_utc_offset=-5 -County "FL, Alachua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200010.epw site_zip_code=32608 site_time_zone_utc_offset=-5 -County "FL, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200030.epw site_zip_code=32063 site_time_zone_utc_offset=-5 -County "FL, Bay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200050.epw site_zip_code=32404 site_time_zone_utc_offset=-6 -County "FL, Bradford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200070.epw site_zip_code=32091 site_time_zone_utc_offset=-5 -County "FL, Brevard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200090.epw site_zip_code=32940 site_time_zone_utc_offset=-5 -County "FL, Broward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200110.epw site_zip_code=33027 site_time_zone_utc_offset=-5 -County "FL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200130.epw site_zip_code=32424 site_time_zone_utc_offset=-6 -County "FL, Charlotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200150.epw site_zip_code=33950 site_time_zone_utc_offset=-5 -County "FL, Citrus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200170.epw site_zip_code=34446 site_time_zone_utc_offset=-5 -County "FL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200190.epw site_zip_code=32068 site_time_zone_utc_offset=-5 -County "FL, Collier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200210.epw site_zip_code=34112 site_time_zone_utc_offset=-5 -County "FL, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200230.epw site_zip_code=32025 site_time_zone_utc_offset=-5 -County "FL, DeSoto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200270.epw site_zip_code=34266 site_time_zone_utc_offset=-5 -County "FL, Dixie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200290.epw site_zip_code=32680 site_time_zone_utc_offset=-5 -County "FL, Duval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200310.epw site_zip_code=32256 site_time_zone_utc_offset=-5 -County "FL, Escambia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200330.epw site_zip_code=32507 site_time_zone_utc_offset=-6 -County "FL, Flagler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200350.epw site_zip_code=32137 site_time_zone_utc_offset=-5 -County "FL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200370.epw site_zip_code=32328 site_time_zone_utc_offset=-5 -County "FL, Gadsden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200390.epw site_zip_code=32351 site_time_zone_utc_offset=-5 -County "FL, Gilchrist County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200410.epw site_zip_code=32693 site_time_zone_utc_offset=-5 -County "FL, Glades County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200430.epw site_zip_code=33471 site_time_zone_utc_offset=-5 -County "FL, Gulf County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200450.epw site_zip_code=32456 site_time_zone_utc_offset=-6 -County "FL, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200470.epw site_zip_code=32052 site_time_zone_utc_offset=-5 -County "FL, Hardee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200490.epw site_zip_code=33873 site_time_zone_utc_offset=-5 -County "FL, Hendry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200510.epw site_zip_code=33440 site_time_zone_utc_offset=-5 -County "FL, Hernando County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200530.epw site_zip_code=34609 site_time_zone_utc_offset=-5 -County "FL, Highlands County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200550.epw site_zip_code=33870 site_time_zone_utc_offset=-5 -County "FL, Hillsborough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200570.epw site_zip_code=33647 site_time_zone_utc_offset=-5 -County "FL, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200590.epw site_zip_code=32425 site_time_zone_utc_offset=-6 -County "FL, Indian River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200610.epw site_zip_code=32958 site_time_zone_utc_offset=-5 -County "FL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200630.epw site_zip_code=32446 site_time_zone_utc_offset=-6 -County "FL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200650.epw site_zip_code=32344 site_time_zone_utc_offset=-5 -County "FL, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200670.epw site_zip_code=32066 site_time_zone_utc_offset=-5 -County "FL, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200690.epw site_zip_code=34711 site_time_zone_utc_offset=-5 -County "FL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200710.epw site_zip_code=34135 site_time_zone_utc_offset=-5 -County "FL, Leon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200730.epw site_zip_code=32303 site_time_zone_utc_offset=-5 -County "FL, Levy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200750.epw site_zip_code=32696 site_time_zone_utc_offset=-5 -County "FL, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200770.epw site_zip_code=32321 site_time_zone_utc_offset=-5 -County "FL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200790.epw site_zip_code=32340 site_time_zone_utc_offset=-5 -County "FL, Manatee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200810.epw site_zip_code=34221 site_time_zone_utc_offset=-5 -County "FL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200830.epw site_zip_code=34491 site_time_zone_utc_offset=-5 -County "FL, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200850.epw site_zip_code=34997 site_time_zone_utc_offset=-5 -County "FL, Miami-Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200860.epw site_zip_code=33160 site_time_zone_utc_offset=-5 -County "FL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200870.epw site_zip_code=33040 site_time_zone_utc_offset=-5 -County "FL, Nassau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200890.epw site_zip_code=32034 site_time_zone_utc_offset=-5 -County "FL, Okaloosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200910.epw site_zip_code=32541 site_time_zone_utc_offset=-6 -County "FL, Okeechobee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200930.epw site_zip_code=34974 site_time_zone_utc_offset=-5 -County "FL, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200950.epw site_zip_code=34787 site_time_zone_utc_offset=-5 -County "FL, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200970.epw site_zip_code=34746 site_time_zone_utc_offset=-5 -County "FL, Palm Beach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200990.epw site_zip_code=33411 site_time_zone_utc_offset=-5 -County "FL, Pasco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201010.epw site_zip_code=34668 site_time_zone_utc_offset=-5 -County "FL, Pinellas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201030.epw site_zip_code=34698 site_time_zone_utc_offset=-5 -County "FL, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201050.epw site_zip_code=33810 site_time_zone_utc_offset=-5 -County "FL, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201070.epw site_zip_code=32177 site_time_zone_utc_offset=-5 -County "FL, Santa Rosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201130.epw site_zip_code=32566 site_time_zone_utc_offset=-6 -County "FL, Sarasota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201150.epw site_zip_code=34293 site_time_zone_utc_offset=-5 -County "FL, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201170.epw site_zip_code=32771 site_time_zone_utc_offset=-5 -County "FL, St. Johns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201090.epw site_zip_code=32259 site_time_zone_utc_offset=-5 -County "FL, St. Lucie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201110.epw site_zip_code=34953 site_time_zone_utc_offset=-5 -County "FL, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201190.epw site_zip_code=32162 site_time_zone_utc_offset=-5 -County "FL, Suwannee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201210.epw site_zip_code=32060 site_time_zone_utc_offset=-5 -County "FL, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201230.epw site_zip_code=32348 site_time_zone_utc_offset=-5 -County "FL, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201250.epw site_zip_code=32054 site_time_zone_utc_offset=-5 -County "FL, Volusia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201270.epw site_zip_code=32174 site_time_zone_utc_offset=-5 -County "FL, Wakulla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201290.epw site_zip_code=32327 site_time_zone_utc_offset=-5 -County "FL, Walton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201310.epw site_zip_code=32459 site_time_zone_utc_offset=-6 -County "FL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201330.epw site_zip_code=32428 site_time_zone_utc_offset=-6 -County "GA, Appling County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300010.epw site_zip_code=31513 site_time_zone_utc_offset=-5 -County "GA, Atkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300030.epw site_zip_code=31642 site_time_zone_utc_offset=-5 -County "GA, Bacon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300050.epw site_zip_code=31510 site_time_zone_utc_offset=-5 -County "GA, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300070.epw site_zip_code=39870 site_time_zone_utc_offset=-5 -County "GA, Baldwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300090.epw site_zip_code=31061 site_time_zone_utc_offset=-5 -County "GA, Banks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300110.epw site_zip_code=30547 site_time_zone_utc_offset=-5 -County "GA, Barrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300130.epw site_zip_code=30680 site_time_zone_utc_offset=-5 -County "GA, Bartow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300150.epw site_zip_code=30120 site_time_zone_utc_offset=-5 -County "GA, Ben Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300170.epw site_zip_code=31750 site_time_zone_utc_offset=-5 -County "GA, Berrien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300190.epw site_zip_code=31639 site_time_zone_utc_offset=-5 -County "GA, Bibb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300210.epw site_zip_code=31204 site_time_zone_utc_offset=-5 -County "GA, Bleckley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300230.epw site_zip_code=31014 site_time_zone_utc_offset=-5 -County "GA, Brantley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300250.epw site_zip_code=31553 site_time_zone_utc_offset=-5 -County "GA, Brooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300270.epw site_zip_code=31643 site_time_zone_utc_offset=-5 -County "GA, Bryan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300290.epw site_zip_code=31324 site_time_zone_utc_offset=-5 -County "GA, Bulloch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300310.epw site_zip_code=30458 site_time_zone_utc_offset=-5 -County "GA, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300330.epw site_zip_code=30830 site_time_zone_utc_offset=-5 -County "GA, Butts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300350.epw site_zip_code=30233 site_time_zone_utc_offset=-5 -County "GA, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300370.epw site_zip_code=39846 site_time_zone_utc_offset=-5 -County "GA, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300390.epw site_zip_code=31558 site_time_zone_utc_offset=-5 -County "GA, Candler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300430.epw site_zip_code=30439 site_time_zone_utc_offset=-5 -County "GA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300450.epw site_zip_code=30117 site_time_zone_utc_offset=-5 -County "GA, Catoosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300470.epw site_zip_code=30736 site_time_zone_utc_offset=-5 -County "GA, Charlton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300490.epw site_zip_code=31537 site_time_zone_utc_offset=-5 -County "GA, Chatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300510.epw site_zip_code=31419 site_time_zone_utc_offset=-5 -County "GA, Chattahoochee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300530.epw site_zip_code=31905 site_time_zone_utc_offset=-5 -County "GA, Chattooga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300550.epw site_zip_code=30747 site_time_zone_utc_offset=-5 -County "GA, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300570.epw site_zip_code=30188 site_time_zone_utc_offset=-5 -County "GA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300590.epw site_zip_code=30606 site_time_zone_utc_offset=-5 -County "GA, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300610.epw site_zip_code=39851 site_time_zone_utc_offset=-5 -County "GA, Clayton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300630.epw site_zip_code=30236 site_time_zone_utc_offset=-5 -County "GA, Clinch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300650.epw site_zip_code=31634 site_time_zone_utc_offset=-5 -County "GA, Cobb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300670.epw site_zip_code=30080 site_time_zone_utc_offset=-5 -County "GA, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300690.epw site_zip_code=31533 site_time_zone_utc_offset=-5 -County "GA, Colquitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300710.epw site_zip_code=31768 site_time_zone_utc_offset=-5 -County "GA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300730.epw site_zip_code=30809 site_time_zone_utc_offset=-5 -County "GA, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300750.epw site_zip_code=31620 site_time_zone_utc_offset=-5 -County "GA, Coweta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300770.epw site_zip_code=30263 site_time_zone_utc_offset=-5 -County "GA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300790.epw site_zip_code=31078 site_time_zone_utc_offset=-5 -County "GA, Crisp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300810.epw site_zip_code=31015 site_time_zone_utc_offset=-5 -County "GA, Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300830.epw site_zip_code=30752 site_time_zone_utc_offset=-5 -County "GA, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300850.epw site_zip_code=30534 site_time_zone_utc_offset=-5 -County "GA, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300890.epw site_zip_code=30058 site_time_zone_utc_offset=-5 -County "GA, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300870.epw site_zip_code=39819 site_time_zone_utc_offset=-5 -County "GA, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300910.epw site_zip_code=31023 site_time_zone_utc_offset=-5 -County "GA, Dooly County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300930.epw site_zip_code=31092 site_time_zone_utc_offset=-5 -County "GA, Dougherty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300950.epw site_zip_code=31705 site_time_zone_utc_offset=-5 -County "GA, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300970.epw site_zip_code=30135 site_time_zone_utc_offset=-5 -County "GA, Early County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300990.epw site_zip_code=39823 site_time_zone_utc_offset=-5 -County "GA, Echols County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301010.epw site_zip_code=31636 site_time_zone_utc_offset=-5 -County "GA, Effingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301030.epw site_zip_code=31326 site_time_zone_utc_offset=-5 -County "GA, Elbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301050.epw site_zip_code=30635 site_time_zone_utc_offset=-5 -County "GA, Emanuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301070.epw site_zip_code=30401 site_time_zone_utc_offset=-5 -County "GA, Evans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301090.epw site_zip_code=30417 site_time_zone_utc_offset=-5 -County "GA, Fannin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301110.epw site_zip_code=30513 site_time_zone_utc_offset=-5 -County "GA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301130.epw site_zip_code=30269 site_time_zone_utc_offset=-5 -County "GA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301150.epw site_zip_code=30165 site_time_zone_utc_offset=-5 -County "GA, Forsyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301170.epw site_zip_code=30040 site_time_zone_utc_offset=-5 -County "GA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301190.epw site_zip_code=30553 site_time_zone_utc_offset=-5 -County "GA, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301210.epw site_zip_code=30318 site_time_zone_utc_offset=-5 -County "GA, Gilmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301230.epw site_zip_code=30540 site_time_zone_utc_offset=-5 -County "GA, Glascock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301250.epw site_zip_code=30810 site_time_zone_utc_offset=-5 -County "GA, Glynn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301270.epw site_zip_code=31525 site_time_zone_utc_offset=-5 -County "GA, Gordon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301290.epw site_zip_code=30701 site_time_zone_utc_offset=-5 -County "GA, Grady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301310.epw site_zip_code=39828 site_time_zone_utc_offset=-5 -County "GA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301330.epw site_zip_code=30642 site_time_zone_utc_offset=-5 -County "GA, Gwinnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301350.epw site_zip_code=30044 site_time_zone_utc_offset=-5 -County "GA, Habersham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301370.epw site_zip_code=30531 site_time_zone_utc_offset=-5 -County "GA, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301390.epw site_zip_code=30542 site_time_zone_utc_offset=-5 -County "GA, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301410.epw site_zip_code=31087 site_time_zone_utc_offset=-5 -County "GA, Haralson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301430.epw site_zip_code=30110 site_time_zone_utc_offset=-5 -County "GA, Harris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301450.epw site_zip_code=31804 site_time_zone_utc_offset=-5 -County "GA, Hart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301470.epw site_zip_code=30643 site_time_zone_utc_offset=-5 -County "GA, Heard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301490.epw site_zip_code=30217 site_time_zone_utc_offset=-5 -County "GA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301510.epw site_zip_code=30253 site_time_zone_utc_offset=-5 -County "GA, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301530.epw site_zip_code=31088 site_time_zone_utc_offset=-5 -County "GA, Irwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301550.epw site_zip_code=31774 site_time_zone_utc_offset=-5 -County "GA, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301570.epw site_zip_code=30549 site_time_zone_utc_offset=-5 -County "GA, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301590.epw site_zip_code=31064 site_time_zone_utc_offset=-5 -County "GA, Jeff Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301610.epw site_zip_code=31539 site_time_zone_utc_offset=-5 -County "GA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301630.epw site_zip_code=30434 site_time_zone_utc_offset=-5 -County "GA, Jenkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301650.epw site_zip_code=30442 site_time_zone_utc_offset=-5 -County "GA, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301670.epw site_zip_code=31096 site_time_zone_utc_offset=-5 -County "GA, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301690.epw site_zip_code=31032 site_time_zone_utc_offset=-5 -County "GA, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301710.epw site_zip_code=30204 site_time_zone_utc_offset=-5 -County "GA, Lanier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301730.epw site_zip_code=31635 site_time_zone_utc_offset=-5 -County "GA, Laurens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301750.epw site_zip_code=31021 site_time_zone_utc_offset=-5 -County "GA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301770.epw site_zip_code=31763 site_time_zone_utc_offset=-5 -County "GA, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301790.epw site_zip_code=31313 site_time_zone_utc_offset=-5 -County "GA, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301810.epw site_zip_code=30817 site_time_zone_utc_offset=-5 -County "GA, Long County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301830.epw site_zip_code=31316 site_time_zone_utc_offset=-5 -County "GA, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301850.epw site_zip_code=31601 site_time_zone_utc_offset=-5 -County "GA, Lumpkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301870.epw site_zip_code=30533 site_time_zone_utc_offset=-5 -County "GA, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301930.epw site_zip_code=31063 site_time_zone_utc_offset=-5 -County "GA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301950.epw site_zip_code=30633 site_time_zone_utc_offset=-5 -County "GA, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301970.epw site_zip_code=31803 site_time_zone_utc_offset=-5 -County "GA, McDuffie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301890.epw site_zip_code=30824 site_time_zone_utc_offset=-5 -County "GA, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301910.epw site_zip_code=31331 site_time_zone_utc_offset=-5 -County "GA, Meriwether County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301990.epw site_zip_code=31816 site_time_zone_utc_offset=-5 -County "GA, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302010.epw site_zip_code=39837 site_time_zone_utc_offset=-5 -County "GA, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302050.epw site_zip_code=31730 site_time_zone_utc_offset=-5 -County "GA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302070.epw site_zip_code=31029 site_time_zone_utc_offset=-5 -County "GA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302090.epw site_zip_code=30445 site_time_zone_utc_offset=-5 -County "GA, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302110.epw site_zip_code=30650 site_time_zone_utc_offset=-5 -County "GA, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302130.epw site_zip_code=30705 site_time_zone_utc_offset=-5 -County "GA, Muscogee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302150.epw site_zip_code=31907 site_time_zone_utc_offset=-5 -County "GA, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302170.epw site_zip_code=30016 site_time_zone_utc_offset=-5 -County "GA, Oconee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302190.epw site_zip_code=30677 site_time_zone_utc_offset=-5 -County "GA, Oglethorpe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302210.epw site_zip_code=30683 site_time_zone_utc_offset=-5 -County "GA, Paulding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302230.epw site_zip_code=30132 site_time_zone_utc_offset=-5 -County "GA, Peach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302250.epw site_zip_code=31030 site_time_zone_utc_offset=-5 -County "GA, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302270.epw site_zip_code=30143 site_time_zone_utc_offset=-5 -County "GA, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302290.epw site_zip_code=31516 site_time_zone_utc_offset=-5 -County "GA, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302310.epw site_zip_code=30292 site_time_zone_utc_offset=-5 -County "GA, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302330.epw site_zip_code=30125 site_time_zone_utc_offset=-5 -County "GA, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302350.epw site_zip_code=31036 site_time_zone_utc_offset=-5 -County "GA, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302370.epw site_zip_code=31024 site_time_zone_utc_offset=-5 -County "GA, Quitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302390.epw site_zip_code=39854 site_time_zone_utc_offset=-5 -County "GA, Rabun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302410.epw site_zip_code=30525 site_time_zone_utc_offset=-5 -County "GA, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302430.epw site_zip_code=39840 site_time_zone_utc_offset=-5 -County "GA, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302450.epw site_zip_code=30909 site_time_zone_utc_offset=-5 -County "GA, Rockdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302470.epw site_zip_code=30094 site_time_zone_utc_offset=-5 -County "GA, Schley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302490.epw site_zip_code=31806 site_time_zone_utc_offset=-5 -County "GA, Screven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302510.epw site_zip_code=30467 site_time_zone_utc_offset=-5 -County "GA, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302530.epw site_zip_code=39845 site_time_zone_utc_offset=-5 -County "GA, Spalding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302550.epw site_zip_code=30223 site_time_zone_utc_offset=-5 -County "GA, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302570.epw site_zip_code=30577 site_time_zone_utc_offset=-5 -County "GA, Stewart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302590.epw site_zip_code=31825 site_time_zone_utc_offset=-5 -County "GA, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302610.epw site_zip_code=31709 site_time_zone_utc_offset=-5 -County "GA, Talbot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302630.epw site_zip_code=31827 site_time_zone_utc_offset=-5 -County "GA, Taliaferro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302650.epw site_zip_code=30631 site_time_zone_utc_offset=-5 -County "GA, Tattnall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302670.epw site_zip_code=30427 site_time_zone_utc_offset=-5 -County "GA, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302690.epw site_zip_code=31006 site_time_zone_utc_offset=-5 -County "GA, Telfair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302710.epw site_zip_code=31055 site_time_zone_utc_offset=-5 -County "GA, Terrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302730.epw site_zip_code=39842 site_time_zone_utc_offset=-5 -County "GA, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302750.epw site_zip_code=31792 site_time_zone_utc_offset=-5 -County "GA, Tift County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302770.epw site_zip_code=31794 site_time_zone_utc_offset=-5 -County "GA, Toombs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302790.epw site_zip_code=30474 site_time_zone_utc_offset=-5 -County "GA, Towns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302810.epw site_zip_code=30546 site_time_zone_utc_offset=-5 -County "GA, Treutlen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302830.epw site_zip_code=30457 site_time_zone_utc_offset=-5 -County "GA, Troup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302850.epw site_zip_code=30241 site_time_zone_utc_offset=-5 -County "GA, Turner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302870.epw site_zip_code=31714 site_time_zone_utc_offset=-5 -County "GA, Twiggs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302890.epw site_zip_code=31044 site_time_zone_utc_offset=-5 -County "GA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302910.epw site_zip_code=30512 site_time_zone_utc_offset=-5 -County "GA, Upson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302930.epw site_zip_code=30286 site_time_zone_utc_offset=-5 -County "GA, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302950.epw site_zip_code=30741 site_time_zone_utc_offset=-5 -County "GA, Walton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302970.epw site_zip_code=30052 site_time_zone_utc_offset=-5 -County "GA, Ware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302990.epw site_zip_code=31503 site_time_zone_utc_offset=-5 -County "GA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303010.epw site_zip_code=30828 site_time_zone_utc_offset=-5 -County "GA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303030.epw site_zip_code=31082 site_time_zone_utc_offset=-5 -County "GA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303050.epw site_zip_code=31545 site_time_zone_utc_offset=-5 -County "GA, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303070.epw site_zip_code=31824 site_time_zone_utc_offset=-5 -County "GA, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303090.epw site_zip_code=30428 site_time_zone_utc_offset=-5 -County "GA, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303110.epw site_zip_code=30528 site_time_zone_utc_offset=-5 -County "GA, Whitfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303130.epw site_zip_code=30721 site_time_zone_utc_offset=-5 -County "GA, Wilcox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303150.epw site_zip_code=31001 site_time_zone_utc_offset=-5 -County "GA, Wilkes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303170.epw site_zip_code=30673 site_time_zone_utc_offset=-5 -County "GA, Wilkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303190.epw site_zip_code=31031 site_time_zone_utc_offset=-5 -County "GA, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303210.epw site_zip_code=31791 site_time_zone_utc_offset=-5 -County "HI, Hawaii County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500010.epw site_zip_code=96721 site_time_zone_utc_offset=-10 -County "HI, Honolulu County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500030.epw site_zip_code=96813 site_time_zone_utc_offset=-10 -County "HI, Kalawao County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500050.epw site_zip_code=96742 site_time_zone_utc_offset=-10 -County "HI, Kauai County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500070.epw site_zip_code=96746 site_time_zone_utc_offset=-10 -County "HI, Maui County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500090.epw site_zip_code=96793 site_time_zone_utc_offset=-10 -County "IA, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900010.epw site_zip_code=50849 site_time_zone_utc_offset=-6 -County "IA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900030.epw site_zip_code=50841 site_time_zone_utc_offset=-6 -County "IA, Allamakee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900050.epw site_zip_code=52172 site_time_zone_utc_offset=-6 -County "IA, Appanoose County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900070.epw site_zip_code=52544 site_time_zone_utc_offset=-6 -County "IA, Audubon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900090.epw site_zip_code=50025 site_time_zone_utc_offset=-6 -County "IA, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900110.epw site_zip_code=52349 site_time_zone_utc_offset=-6 -County "IA, Black Hawk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900130.epw site_zip_code=50613 site_time_zone_utc_offset=-6 -County "IA, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900150.epw site_zip_code=50036 site_time_zone_utc_offset=-6 -County "IA, Bremer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900170.epw site_zip_code=50677 site_time_zone_utc_offset=-6 -County "IA, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900190.epw site_zip_code=50644 site_time_zone_utc_offset=-6 -County "IA, Buena Vista County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900210.epw site_zip_code=50588 site_time_zone_utc_offset=-6 -County "IA, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900230.epw site_zip_code=50665 site_time_zone_utc_offset=-6 -County "IA, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900250.epw site_zip_code=50563 site_time_zone_utc_offset=-6 -County "IA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900270.epw site_zip_code=51401 site_time_zone_utc_offset=-6 -County "IA, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900290.epw site_zip_code=50022 site_time_zone_utc_offset=-6 -County "IA, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900310.epw site_zip_code=52772 site_time_zone_utc_offset=-6 -County "IA, Cerro Gordo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900330.epw site_zip_code=50401 site_time_zone_utc_offset=-6 -County "IA, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900350.epw site_zip_code=51012 site_time_zone_utc_offset=-6 -County "IA, Chickasaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900370.epw site_zip_code=50659 site_time_zone_utc_offset=-6 -County "IA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900390.epw site_zip_code=50213 site_time_zone_utc_offset=-6 -County "IA, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900410.epw site_zip_code=51301 site_time_zone_utc_offset=-6 -County "IA, Clayton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900430.epw site_zip_code=52052 site_time_zone_utc_offset=-6 -County "IA, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900450.epw site_zip_code=52732 site_time_zone_utc_offset=-6 -County "IA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900470.epw site_zip_code=51442 site_time_zone_utc_offset=-6 -County "IA, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900490.epw site_zip_code=50263 site_time_zone_utc_offset=-6 -County "IA, Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900510.epw site_zip_code=52537 site_time_zone_utc_offset=-6 -County "IA, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900530.epw site_zip_code=50144 site_time_zone_utc_offset=-6 -County "IA, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900550.epw site_zip_code=52057 site_time_zone_utc_offset=-6 -County "IA, Des Moines County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900570.epw site_zip_code=52601 site_time_zone_utc_offset=-6 -County "IA, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900590.epw site_zip_code=51360 site_time_zone_utc_offset=-6 -County "IA, Dubuque County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900610.epw site_zip_code=52001 site_time_zone_utc_offset=-6 -County "IA, Emmet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900630.epw site_zip_code=51334 site_time_zone_utc_offset=-6 -County "IA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900650.epw site_zip_code=50662 site_time_zone_utc_offset=-6 -County "IA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900670.epw site_zip_code=50616 site_time_zone_utc_offset=-6 -County "IA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900690.epw site_zip_code=50441 site_time_zone_utc_offset=-6 -County "IA, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900710.epw site_zip_code=51652 site_time_zone_utc_offset=-6 -County "IA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900730.epw site_zip_code=50129 site_time_zone_utc_offset=-6 -County "IA, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900750.epw site_zip_code=50638 site_time_zone_utc_offset=-6 -County "IA, Guthrie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900770.epw site_zip_code=50216 site_time_zone_utc_offset=-6 -County "IA, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900790.epw site_zip_code=50595 site_time_zone_utc_offset=-6 -County "IA, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900810.epw site_zip_code=50438 site_time_zone_utc_offset=-6 -County "IA, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900830.epw site_zip_code=50126 site_time_zone_utc_offset=-6 -County "IA, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900850.epw site_zip_code=51555 site_time_zone_utc_offset=-6 -County "IA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900870.epw site_zip_code=52641 site_time_zone_utc_offset=-6 -County "IA, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900890.epw site_zip_code=52136 site_time_zone_utc_offset=-6 -County "IA, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900910.epw site_zip_code=50548 site_time_zone_utc_offset=-6 -County "IA, Ida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900930.epw site_zip_code=51445 site_time_zone_utc_offset=-6 -County "IA, Iowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900950.epw site_zip_code=52361 site_time_zone_utc_offset=-6 -County "IA, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900970.epw site_zip_code=52060 site_time_zone_utc_offset=-6 -County "IA, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900990.epw site_zip_code=50208 site_time_zone_utc_offset=-6 -County "IA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901010.epw site_zip_code=52556 site_time_zone_utc_offset=-6 -County "IA, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901030.epw site_zip_code=52240 site_time_zone_utc_offset=-6 -County "IA, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901050.epw site_zip_code=52205 site_time_zone_utc_offset=-6 -County "IA, Keokuk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901070.epw site_zip_code=52591 site_time_zone_utc_offset=-6 -County "IA, Kossuth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901090.epw site_zip_code=50511 site_time_zone_utc_offset=-6 -County "IA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901110.epw site_zip_code=52627 site_time_zone_utc_offset=-6 -County "IA, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901130.epw site_zip_code=52404 site_time_zone_utc_offset=-6 -County "IA, Louisa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901150.epw site_zip_code=52653 site_time_zone_utc_offset=-6 -County "IA, Lucas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901170.epw site_zip_code=50049 site_time_zone_utc_offset=-6 -County "IA, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901190.epw site_zip_code=51246 site_time_zone_utc_offset=-6 -County "IA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901210.epw site_zip_code=50273 site_time_zone_utc_offset=-6 -County "IA, Mahaska County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901230.epw site_zip_code=52577 site_time_zone_utc_offset=-6 -County "IA, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901250.epw site_zip_code=50219 site_time_zone_utc_offset=-6 -County "IA, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901270.epw site_zip_code=50158 site_time_zone_utc_offset=-6 -County "IA, Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901290.epw site_zip_code=51534 site_time_zone_utc_offset=-6 -County "IA, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901310.epw site_zip_code=50461 site_time_zone_utc_offset=-6 -County "IA, Monona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901330.epw site_zip_code=51040 site_time_zone_utc_offset=-6 -County "IA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901350.epw site_zip_code=52531 site_time_zone_utc_offset=-6 -County "IA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901370.epw site_zip_code=51566 site_time_zone_utc_offset=-6 -County "IA, Muscatine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901390.epw site_zip_code=52761 site_time_zone_utc_offset=-6 -County "IA, O'Brien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901410.epw site_zip_code=51201 site_time_zone_utc_offset=-6 -County "IA, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901430.epw site_zip_code=51249 site_time_zone_utc_offset=-6 -County "IA, Page County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901450.epw site_zip_code=51632 site_time_zone_utc_offset=-6 -County "IA, Palo Alto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901470.epw site_zip_code=50536 site_time_zone_utc_offset=-6 -County "IA, Plymouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901490.epw site_zip_code=51031 site_time_zone_utc_offset=-6 -County "IA, Pocahontas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901510.epw site_zip_code=50574 site_time_zone_utc_offset=-6 -County "IA, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901530.epw site_zip_code=50023 site_time_zone_utc_offset=-6 -County "IA, Pottawattamie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901550.epw site_zip_code=51503 site_time_zone_utc_offset=-6 -County "IA, Poweshiek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901570.epw site_zip_code=50112 site_time_zone_utc_offset=-6 -County "IA, Ringgold County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901590.epw site_zip_code=50854 site_time_zone_utc_offset=-6 -County "IA, Sac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901610.epw site_zip_code=50583 site_time_zone_utc_offset=-6 -County "IA, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901630.epw site_zip_code=52722 site_time_zone_utc_offset=-6 -County "IA, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901650.epw site_zip_code=51537 site_time_zone_utc_offset=-6 -County "IA, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901670.epw site_zip_code=51250 site_time_zone_utc_offset=-6 -County "IA, Story County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901690.epw site_zip_code=50010 site_time_zone_utc_offset=-6 -County "IA, Tama County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901710.epw site_zip_code=52339 site_time_zone_utc_offset=-6 -County "IA, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901730.epw site_zip_code=50833 site_time_zone_utc_offset=-6 -County "IA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901750.epw site_zip_code=50801 site_time_zone_utc_offset=-6 -County "IA, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901770.epw site_zip_code=52565 site_time_zone_utc_offset=-6 -County "IA, Wapello County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901790.epw site_zip_code=52501 site_time_zone_utc_offset=-6 -County "IA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901810.epw site_zip_code=50125 site_time_zone_utc_offset=-6 -County "IA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901830.epw site_zip_code=52353 site_time_zone_utc_offset=-6 -County "IA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901850.epw site_zip_code=50060 site_time_zone_utc_offset=-6 -County "IA, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901870.epw site_zip_code=50501 site_time_zone_utc_offset=-6 -County "IA, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901890.epw site_zip_code=50436 site_time_zone_utc_offset=-6 -County "IA, Winneshiek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901910.epw site_zip_code=52101 site_time_zone_utc_offset=-6 -County "IA, Woodbury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901930.epw site_zip_code=51106 site_time_zone_utc_offset=-6 -County "IA, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901950.epw site_zip_code=50459 site_time_zone_utc_offset=-6 -County "IA, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901970.epw site_zip_code=50533 site_time_zone_utc_offset=-6 -County "ID, Ada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600010.epw site_zip_code=83646 site_time_zone_utc_offset=-7 -County "ID, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600030.epw site_zip_code=83612 site_time_zone_utc_offset=-7 -County "ID, Bannock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600050.epw site_zip_code=83201 site_time_zone_utc_offset=-7 -County "ID, Bear Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600070.epw site_zip_code=83254 site_time_zone_utc_offset=-7 -County "ID, Benewah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600090.epw site_zip_code=83861 site_time_zone_utc_offset=-8 -County "ID, Bingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600110.epw site_zip_code=83221 site_time_zone_utc_offset=-7 -County "ID, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600130.epw site_zip_code=83333 site_time_zone_utc_offset=-7 -County "ID, Boise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600150.epw site_zip_code=83716 site_time_zone_utc_offset=-7 -County "ID, Bonner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600170.epw site_zip_code=83864 site_time_zone_utc_offset=-8 -County "ID, Bonneville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600190.epw site_zip_code=83401 site_time_zone_utc_offset=-7 -County "ID, Boundary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600210.epw site_zip_code=83805 site_time_zone_utc_offset=-8 -County "ID, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600230.epw site_zip_code=83213 site_time_zone_utc_offset=-7 -County "ID, Camas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600250.epw site_zip_code=83327 site_time_zone_utc_offset=-7 -County "ID, Canyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600270.epw site_zip_code=83686 site_time_zone_utc_offset=-7 -County "ID, Caribou County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600290.epw site_zip_code=83276 site_time_zone_utc_offset=-7 -County "ID, Cassia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600310.epw site_zip_code=83318 site_time_zone_utc_offset=-7 -County "ID, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600330.epw site_zip_code=83423 site_time_zone_utc_offset=-7 -County "ID, Clearwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600350.epw site_zip_code=83544 site_time_zone_utc_offset=-8 -County "ID, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600370.epw site_zip_code=83226 site_time_zone_utc_offset=-7 -County "ID, Elmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600390.epw site_zip_code=83647 site_time_zone_utc_offset=-7 -County "ID, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600410.epw site_zip_code=83263 site_time_zone_utc_offset=-7 -County "ID, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600430.epw site_zip_code=83445 site_time_zone_utc_offset=-7 -County "ID, Gem County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600450.epw site_zip_code=83617 site_time_zone_utc_offset=-7 -County "ID, Gooding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600470.epw site_zip_code=83330 site_time_zone_utc_offset=-7 -County "ID, Idaho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600490.epw site_zip_code=83530 site_time_zone_utc_offset=-8 -County "ID, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600510.epw site_zip_code=83442 site_time_zone_utc_offset=-7 -County "ID, Jerome County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600530.epw site_zip_code=83338 site_time_zone_utc_offset=-7 -County "ID, Kootenai County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600550.epw site_zip_code=83854 site_time_zone_utc_offset=-8 -County "ID, Latah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600570.epw site_zip_code=83843 site_time_zone_utc_offset=-8 -County "ID, Lemhi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600590.epw site_zip_code=83467 site_time_zone_utc_offset=-7 -County "ID, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600610.epw site_zip_code=83536 site_time_zone_utc_offset=-8 -County "ID, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600630.epw site_zip_code=83352 site_time_zone_utc_offset=-7 -County "ID, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600650.epw site_zip_code=83440 site_time_zone_utc_offset=-7 -County "ID, Minidoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600670.epw site_zip_code=83350 site_time_zone_utc_offset=-7 -County "ID, Nez Perce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600690.epw site_zip_code=83501 site_time_zone_utc_offset=-8 -County "ID, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600710.epw site_zip_code=83252 site_time_zone_utc_offset=-7 -County "ID, Owyhee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600730.epw site_zip_code=83628 site_time_zone_utc_offset=-7 -County "ID, Payette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600750.epw site_zip_code=83661 site_time_zone_utc_offset=-7 -County "ID, Power County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600770.epw site_zip_code=83211 site_time_zone_utc_offset=-7 -County "ID, Shoshone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600790.epw site_zip_code=83837 site_time_zone_utc_offset=-8 -County "ID, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600810.epw site_zip_code=83455 site_time_zone_utc_offset=-7 -County "ID, Twin Falls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600830.epw site_zip_code=83301 site_time_zone_utc_offset=-7 -County "ID, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600850.epw site_zip_code=83638 site_time_zone_utc_offset=-7 -County "ID, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600870.epw site_zip_code=83672 site_time_zone_utc_offset=-7 -County "IL, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700010.epw site_zip_code=62301 site_time_zone_utc_offset=-6 -County "IL, Alexander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700030.epw site_zip_code=62914 site_time_zone_utc_offset=-6 -County "IL, Bond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700050.epw site_zip_code=62246 site_time_zone_utc_offset=-6 -County "IL, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700070.epw site_zip_code=61008 site_time_zone_utc_offset=-6 -County "IL, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700090.epw site_zip_code=62353 site_time_zone_utc_offset=-6 -County "IL, Bureau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700110.epw site_zip_code=61356 site_time_zone_utc_offset=-6 -County "IL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700130.epw site_zip_code=62047 site_time_zone_utc_offset=-6 -County "IL, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700150.epw site_zip_code=61074 site_time_zone_utc_offset=-6 -County "IL, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700170.epw site_zip_code=62618 site_time_zone_utc_offset=-6 -County "IL, Champaign County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700190.epw site_zip_code=61820 site_time_zone_utc_offset=-6 -County "IL, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700210.epw site_zip_code=62568 site_time_zone_utc_offset=-6 -County "IL, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700230.epw site_zip_code=62441 site_time_zone_utc_offset=-6 -County "IL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700250.epw site_zip_code=62839 site_time_zone_utc_offset=-6 -County "IL, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700270.epw site_zip_code=62231 site_time_zone_utc_offset=-6 -County "IL, Coles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700290.epw site_zip_code=61938 site_time_zone_utc_offset=-6 -County "IL, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700310.epw site_zip_code=60657 site_time_zone_utc_offset=-6 -County "IL, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700330.epw site_zip_code=62454 site_time_zone_utc_offset=-6 -County "IL, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700350.epw site_zip_code=62428 site_time_zone_utc_offset=-6 -County "IL, De Witt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700390.epw site_zip_code=61727 site_time_zone_utc_offset=-6 -County "IL, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700370.epw site_zip_code=60115 site_time_zone_utc_offset=-6 -County "IL, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700410.epw site_zip_code=61953 site_time_zone_utc_offset=-6 -County "IL, DuPage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700430.epw site_zip_code=60148 site_time_zone_utc_offset=-6 -County "IL, Edgar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700450.epw site_zip_code=61944 site_time_zone_utc_offset=-6 -County "IL, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700470.epw site_zip_code=62806 site_time_zone_utc_offset=-6 -County "IL, Effingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700490.epw site_zip_code=62401 site_time_zone_utc_offset=-6 -County "IL, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700510.epw site_zip_code=62471 site_time_zone_utc_offset=-6 -County "IL, Ford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700530.epw site_zip_code=60957 site_time_zone_utc_offset=-6 -County "IL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700550.epw site_zip_code=62896 site_time_zone_utc_offset=-6 -County "IL, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700570.epw site_zip_code=61520 site_time_zone_utc_offset=-6 -County "IL, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700590.epw site_zip_code=62984 site_time_zone_utc_offset=-6 -County "IL, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700610.epw site_zip_code=62016 site_time_zone_utc_offset=-6 -County "IL, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700630.epw site_zip_code=60450 site_time_zone_utc_offset=-6 -County "IL, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700650.epw site_zip_code=62859 site_time_zone_utc_offset=-6 -County "IL, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700670.epw site_zip_code=62321 site_time_zone_utc_offset=-6 -County "IL, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700690.epw site_zip_code=62931 site_time_zone_utc_offset=-6 -County "IL, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700710.epw site_zip_code=61469 site_time_zone_utc_offset=-6 -County "IL, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700730.epw site_zip_code=61443 site_time_zone_utc_offset=-6 -County "IL, Iroquois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700750.epw site_zip_code=60970 site_time_zone_utc_offset=-6 -County "IL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700770.epw site_zip_code=62901 site_time_zone_utc_offset=-6 -County "IL, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700790.epw site_zip_code=62448 site_time_zone_utc_offset=-6 -County "IL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700810.epw site_zip_code=62864 site_time_zone_utc_offset=-6 -County "IL, Jersey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700830.epw site_zip_code=62052 site_time_zone_utc_offset=-6 -County "IL, Jo Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700850.epw site_zip_code=61036 site_time_zone_utc_offset=-6 -County "IL, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700870.epw site_zip_code=62995 site_time_zone_utc_offset=-6 -County "IL, Kane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700890.epw site_zip_code=60506 site_time_zone_utc_offset=-6 -County "IL, Kankakee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700910.epw site_zip_code=60901 site_time_zone_utc_offset=-6 -County "IL, Kendall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700930.epw site_zip_code=60543 site_time_zone_utc_offset=-6 -County "IL, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700950.epw site_zip_code=61401 site_time_zone_utc_offset=-6 -County "IL, LaSalle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700990.epw site_zip_code=61350 site_time_zone_utc_offset=-6 -County "IL, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700970.epw site_zip_code=60085 site_time_zone_utc_offset=-6 -County "IL, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701010.epw site_zip_code=62439 site_time_zone_utc_offset=-6 -County "IL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701030.epw site_zip_code=61021 site_time_zone_utc_offset=-6 -County "IL, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701050.epw site_zip_code=61764 site_time_zone_utc_offset=-6 -County "IL, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701070.epw site_zip_code=62656 site_time_zone_utc_offset=-6 -County "IL, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701150.epw site_zip_code=62521 site_time_zone_utc_offset=-6 -County "IL, Macoupin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701170.epw site_zip_code=62626 site_time_zone_utc_offset=-6 -County "IL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701190.epw site_zip_code=62040 site_time_zone_utc_offset=-6 -County "IL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701210.epw site_zip_code=62801 site_time_zone_utc_offset=-6 -County "IL, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701230.epw site_zip_code=61540 site_time_zone_utc_offset=-6 -County "IL, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701250.epw site_zip_code=62644 site_time_zone_utc_offset=-6 -County "IL, Massac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701270.epw site_zip_code=62960 site_time_zone_utc_offset=-6 -County "IL, McDonough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701090.epw site_zip_code=61455 site_time_zone_utc_offset=-6 -County "IL, McHenry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701110.epw site_zip_code=60014 site_time_zone_utc_offset=-6 -County "IL, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701130.epw site_zip_code=61761 site_time_zone_utc_offset=-6 -County "IL, Menard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701290.epw site_zip_code=62675 site_time_zone_utc_offset=-6 -County "IL, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701310.epw site_zip_code=61231 site_time_zone_utc_offset=-6 -County "IL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701330.epw site_zip_code=62298 site_time_zone_utc_offset=-6 -County "IL, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701350.epw site_zip_code=62056 site_time_zone_utc_offset=-6 -County "IL, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701370.epw site_zip_code=62650 site_time_zone_utc_offset=-6 -County "IL, Moultrie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701390.epw site_zip_code=61951 site_time_zone_utc_offset=-6 -County "IL, Ogle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701410.epw site_zip_code=61068 site_time_zone_utc_offset=-6 -County "IL, Peoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701430.epw site_zip_code=61604 site_time_zone_utc_offset=-6 -County "IL, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701450.epw site_zip_code=62832 site_time_zone_utc_offset=-6 -County "IL, Piatt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701470.epw site_zip_code=61856 site_time_zone_utc_offset=-6 -County "IL, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701490.epw site_zip_code=62363 site_time_zone_utc_offset=-6 -County "IL, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701510.epw site_zip_code=62938 site_time_zone_utc_offset=-6 -County "IL, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701530.epw site_zip_code=62964 site_time_zone_utc_offset=-6 -County "IL, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701550.epw site_zip_code=61326 site_time_zone_utc_offset=-6 -County "IL, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701570.epw site_zip_code=62286 site_time_zone_utc_offset=-6 -County "IL, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701590.epw site_zip_code=62450 site_time_zone_utc_offset=-6 -County "IL, Rock Island County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701610.epw site_zip_code=61265 site_time_zone_utc_offset=-6 -County "IL, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701650.epw site_zip_code=62946 site_time_zone_utc_offset=-6 -County "IL, Sangamon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701670.epw site_zip_code=62704 site_time_zone_utc_offset=-6 -County "IL, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701690.epw site_zip_code=62681 site_time_zone_utc_offset=-6 -County "IL, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701710.epw site_zip_code=62694 site_time_zone_utc_offset=-6 -County "IL, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701730.epw site_zip_code=62565 site_time_zone_utc_offset=-6 -County "IL, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701630.epw site_zip_code=62269 site_time_zone_utc_offset=-6 -County "IL, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701750.epw site_zip_code=61491 site_time_zone_utc_offset=-6 -County "IL, Stephenson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701770.epw site_zip_code=61032 site_time_zone_utc_offset=-6 -County "IL, Tazewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701790.epw site_zip_code=61554 site_time_zone_utc_offset=-6 -County "IL, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701810.epw site_zip_code=62906 site_time_zone_utc_offset=-6 -County "IL, Vermilion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701830.epw site_zip_code=61832 site_time_zone_utc_offset=-6 -County "IL, Wabash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701850.epw site_zip_code=62863 site_time_zone_utc_offset=-6 -County "IL, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701870.epw site_zip_code=61462 site_time_zone_utc_offset=-6 -County "IL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701890.epw site_zip_code=62263 site_time_zone_utc_offset=-6 -County "IL, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701910.epw site_zip_code=62837 site_time_zone_utc_offset=-6 -County "IL, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701930.epw site_zip_code=62821 site_time_zone_utc_offset=-6 -County "IL, Whiteside County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701950.epw site_zip_code=61081 site_time_zone_utc_offset=-6 -County "IL, Will County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701970.epw site_zip_code=60435 site_time_zone_utc_offset=-6 -County "IL, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701990.epw site_zip_code=62959 site_time_zone_utc_offset=-6 -County "IL, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1702010.epw site_zip_code=61107 site_time_zone_utc_offset=-6 -County "IL, Woodford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1702030.epw site_zip_code=61548 site_time_zone_utc_offset=-6 -County "IN, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800010.epw site_zip_code=46733 site_time_zone_utc_offset=-5 -County "IN, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800030.epw site_zip_code=46835 site_time_zone_utc_offset=-5 -County "IN, Bartholomew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800050.epw site_zip_code=47201 site_time_zone_utc_offset=-5 -County "IN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800070.epw site_zip_code=47944 site_time_zone_utc_offset=-5 -County "IN, Blackford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800090.epw site_zip_code=47348 site_time_zone_utc_offset=-5 -County "IN, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800110.epw site_zip_code=46077 site_time_zone_utc_offset=-5 -County "IN, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800130.epw site_zip_code=47448 site_time_zone_utc_offset=-5 -County "IN, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800150.epw site_zip_code=46923 site_time_zone_utc_offset=-5 -County "IN, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800170.epw site_zip_code=46947 site_time_zone_utc_offset=-5 -County "IN, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800190.epw site_zip_code=47130 site_time_zone_utc_offset=-5 -County "IN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800210.epw site_zip_code=47834 site_time_zone_utc_offset=-5 -County "IN, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800230.epw site_zip_code=46041 site_time_zone_utc_offset=-5 -County "IN, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800250.epw site_zip_code=47118 site_time_zone_utc_offset=-5 -County "IN, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800270.epw site_zip_code=47501 site_time_zone_utc_offset=-5 -County "IN, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800330.epw site_zip_code=46706 site_time_zone_utc_offset=-5 -County "IN, Dearborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800290.epw site_zip_code=47025 site_time_zone_utc_offset=-5 -County "IN, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800310.epw site_zip_code=47240 site_time_zone_utc_offset=-5 -County "IN, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800350.epw site_zip_code=47304 site_time_zone_utc_offset=-5 -County "IN, Dubois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800370.epw site_zip_code=47546 site_time_zone_utc_offset=-5 -County "IN, Elkhart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800390.epw site_zip_code=46514 site_time_zone_utc_offset=-5 -County "IN, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800410.epw site_zip_code=47331 site_time_zone_utc_offset=-5 -County "IN, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800430.epw site_zip_code=47150 site_time_zone_utc_offset=-5 -County "IN, Fountain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800450.epw site_zip_code=47918 site_time_zone_utc_offset=-5 -County "IN, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800470.epw site_zip_code=47012 site_time_zone_utc_offset=-5 -County "IN, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800490.epw site_zip_code=46975 site_time_zone_utc_offset=-5 -County "IN, Gibson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800510.epw site_zip_code=47670 site_time_zone_utc_offset=-6 -County "IN, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800530.epw site_zip_code=46953 site_time_zone_utc_offset=-5 -County "IN, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800550.epw site_zip_code=47441 site_time_zone_utc_offset=-5 -County "IN, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800570.epw site_zip_code=46032 site_time_zone_utc_offset=-5 -County "IN, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800590.epw site_zip_code=46140 site_time_zone_utc_offset=-5 -County "IN, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800610.epw site_zip_code=47112 site_time_zone_utc_offset=-5 -County "IN, Hendricks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800630.epw site_zip_code=46112 site_time_zone_utc_offset=-5 -County "IN, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800650.epw site_zip_code=47362 site_time_zone_utc_offset=-5 -County "IN, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800670.epw site_zip_code=46901 site_time_zone_utc_offset=-5 -County "IN, Huntington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800690.epw site_zip_code=46750 site_time_zone_utc_offset=-5 -County "IN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800710.epw site_zip_code=47274 site_time_zone_utc_offset=-5 -County "IN, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800730.epw site_zip_code=47978 site_time_zone_utc_offset=-6 -County "IN, Jay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800750.epw site_zip_code=47371 site_time_zone_utc_offset=-5 -County "IN, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800770.epw site_zip_code=47250 site_time_zone_utc_offset=-5 -County "IN, Jennings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800790.epw site_zip_code=47265 site_time_zone_utc_offset=-5 -County "IN, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800810.epw site_zip_code=46143 site_time_zone_utc_offset=-5 -County "IN, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800830.epw site_zip_code=47591 site_time_zone_utc_offset=-5 -County "IN, Kosciusko County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800850.epw site_zip_code=46580 site_time_zone_utc_offset=-5 -County "IN, LaGrange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800870.epw site_zip_code=46761 site_time_zone_utc_offset=-5 -County "IN, LaPorte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800910.epw site_zip_code=46360 site_time_zone_utc_offset=-6 -County "IN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800890.epw site_zip_code=46307 site_time_zone_utc_offset=-6 -County "IN, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800930.epw site_zip_code=47421 site_time_zone_utc_offset=-5 -County "IN, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800950.epw site_zip_code=46016 site_time_zone_utc_offset=-5 -County "IN, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800970.epw site_zip_code=46227 site_time_zone_utc_offset=-5 -County "IN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800990.epw site_zip_code=46563 site_time_zone_utc_offset=-5 -County "IN, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801010.epw site_zip_code=47581 site_time_zone_utc_offset=-5 -County "IN, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801030.epw site_zip_code=46970 site_time_zone_utc_offset=-5 -County "IN, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801050.epw site_zip_code=47401 site_time_zone_utc_offset=-5 -County "IN, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801070.epw site_zip_code=47933 site_time_zone_utc_offset=-5 -County "IN, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801090.epw site_zip_code=46151 site_time_zone_utc_offset=-5 -County "IN, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801110.epw site_zip_code=46349 site_time_zone_utc_offset=-6 -County "IN, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801130.epw site_zip_code=46755 site_time_zone_utc_offset=-5 -County "IN, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801150.epw site_zip_code=47040 site_time_zone_utc_offset=-5 -County "IN, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801170.epw site_zip_code=47454 site_time_zone_utc_offset=-5 -County "IN, Owen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801190.epw site_zip_code=47460 site_time_zone_utc_offset=-5 -County "IN, Parke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801210.epw site_zip_code=47872 site_time_zone_utc_offset=-5 -County "IN, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801230.epw site_zip_code=47586 site_time_zone_utc_offset=-6 -County "IN, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801250.epw site_zip_code=47567 site_time_zone_utc_offset=-5 -County "IN, Porter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801270.epw site_zip_code=46383 site_time_zone_utc_offset=-6 -County "IN, Posey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801290.epw site_zip_code=47620 site_time_zone_utc_offset=-6 -County "IN, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801310.epw site_zip_code=46996 site_time_zone_utc_offset=-5 -County "IN, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801330.epw site_zip_code=46135 site_time_zone_utc_offset=-5 -County "IN, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801350.epw site_zip_code=47394 site_time_zone_utc_offset=-5 -County "IN, Ripley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801370.epw site_zip_code=47006 site_time_zone_utc_offset=-5 -County "IN, Rush County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801390.epw site_zip_code=46173 site_time_zone_utc_offset=-5 -County "IN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801430.epw site_zip_code=47170 site_time_zone_utc_offset=-5 -County "IN, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801450.epw site_zip_code=46176 site_time_zone_utc_offset=-5 -County "IN, Spencer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801470.epw site_zip_code=47635 site_time_zone_utc_offset=-6 -County "IN, St. Joseph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801410.epw site_zip_code=46544 site_time_zone_utc_offset=-5 -County "IN, Starke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801490.epw site_zip_code=46534 site_time_zone_utc_offset=-6 -County "IN, Steuben County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801510.epw site_zip_code=46703 site_time_zone_utc_offset=-5 -County "IN, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801530.epw site_zip_code=47882 site_time_zone_utc_offset=-5 -County "IN, Switzerland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801550.epw site_zip_code=47043 site_time_zone_utc_offset=-5 -County "IN, Tippecanoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801570.epw site_zip_code=47906 site_time_zone_utc_offset=-5 -County "IN, Tipton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801590.epw site_zip_code=46072 site_time_zone_utc_offset=-5 -County "IN, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801610.epw site_zip_code=47353 site_time_zone_utc_offset=-5 -County "IN, Vanderburgh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801630.epw site_zip_code=47714 site_time_zone_utc_offset=-6 -County "IN, Vermillion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801650.epw site_zip_code=47842 site_time_zone_utc_offset=-5 -County "IN, Vigo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801670.epw site_zip_code=47802 site_time_zone_utc_offset=-5 -County "IN, Wabash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801690.epw site_zip_code=46992 site_time_zone_utc_offset=-5 -County "IN, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801710.epw site_zip_code=47993 site_time_zone_utc_offset=-5 -County "IN, Warrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801730.epw site_zip_code=47630 site_time_zone_utc_offset=-6 -County "IN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801750.epw site_zip_code=47167 site_time_zone_utc_offset=-5 -County "IN, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801770.epw site_zip_code=47374 site_time_zone_utc_offset=-5 -County "IN, Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801790.epw site_zip_code=46714 site_time_zone_utc_offset=-5 -County "IN, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801810.epw site_zip_code=47960 site_time_zone_utc_offset=-5 -County "IN, Whitley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801830.epw site_zip_code=46725 site_time_zone_utc_offset=-5 -County "KS, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000010.epw site_zip_code=66749 site_time_zone_utc_offset=-6 -County "KS, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000030.epw site_zip_code=66032 site_time_zone_utc_offset=-6 -County "KS, Atchison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000050.epw site_zip_code=66002 site_time_zone_utc_offset=-6 -County "KS, Barber County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000070.epw site_zip_code=67104 site_time_zone_utc_offset=-6 -County "KS, Barton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000090.epw site_zip_code=67530 site_time_zone_utc_offset=-6 -County "KS, Bourbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000110.epw site_zip_code=66701 site_time_zone_utc_offset=-6 -County "KS, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000130.epw site_zip_code=66434 site_time_zone_utc_offset=-6 -County "KS, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000150.epw site_zip_code=67042 site_time_zone_utc_offset=-6 -County "KS, Chase County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000170.epw site_zip_code=66845 site_time_zone_utc_offset=-6 -County "KS, Chautauqua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000190.epw site_zip_code=67361 site_time_zone_utc_offset=-6 -County "KS, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000210.epw site_zip_code=66713 site_time_zone_utc_offset=-6 -County "KS, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000230.epw site_zip_code=67756 site_time_zone_utc_offset=-6 -County "KS, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000250.epw site_zip_code=67865 site_time_zone_utc_offset=-6 -County "KS, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000270.epw site_zip_code=67432 site_time_zone_utc_offset=-6 -County "KS, Cloud County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000290.epw site_zip_code=66901 site_time_zone_utc_offset=-6 -County "KS, Coffey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000310.epw site_zip_code=66839 site_time_zone_utc_offset=-6 -County "KS, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000330.epw site_zip_code=67029 site_time_zone_utc_offset=-6 -County "KS, Cowley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000350.epw site_zip_code=67005 site_time_zone_utc_offset=-6 -County "KS, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000370.epw site_zip_code=66762 site_time_zone_utc_offset=-6 -County "KS, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000390.epw site_zip_code=67749 site_time_zone_utc_offset=-6 -County "KS, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000410.epw site_zip_code=67410 site_time_zone_utc_offset=-6 -County "KS, Doniphan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000430.epw site_zip_code=66090 site_time_zone_utc_offset=-6 -County "KS, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000450.epw site_zip_code=66049 site_time_zone_utc_offset=-6 -County "KS, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000470.epw site_zip_code=67547 site_time_zone_utc_offset=-6 -County "KS, Elk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000490.epw site_zip_code=67349 site_time_zone_utc_offset=-6 -County "KS, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000510.epw site_zip_code=67601 site_time_zone_utc_offset=-6 -County "KS, Ellsworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000530.epw site_zip_code=67439 site_time_zone_utc_offset=-6 -County "KS, Finney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000550.epw site_zip_code=67846 site_time_zone_utc_offset=-6 -County "KS, Ford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000570.epw site_zip_code=67801 site_time_zone_utc_offset=-6 -County "KS, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000590.epw site_zip_code=66067 site_time_zone_utc_offset=-6 -County "KS, Geary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000610.epw site_zip_code=66441 site_time_zone_utc_offset=-6 -County "KS, Gove County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000630.epw site_zip_code=67752 site_time_zone_utc_offset=-6 -County "KS, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000650.epw site_zip_code=67642 site_time_zone_utc_offset=-6 -County "KS, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000670.epw site_zip_code=67880 site_time_zone_utc_offset=-6 -County "KS, Gray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000690.epw site_zip_code=67867 site_time_zone_utc_offset=-6 -County "KS, Greeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000710.epw site_zip_code=67879 site_time_zone_utc_offset=-7 -County "KS, Greenwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000730.epw site_zip_code=67045 site_time_zone_utc_offset=-6 -County "KS, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000750.epw site_zip_code=67878 site_time_zone_utc_offset=-7 -County "KS, Harper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000770.epw site_zip_code=67003 site_time_zone_utc_offset=-6 -County "KS, Harvey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000790.epw site_zip_code=67114 site_time_zone_utc_offset=-6 -County "KS, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000810.epw site_zip_code=67877 site_time_zone_utc_offset=-6 -County "KS, Hodgeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000830.epw site_zip_code=67854 site_time_zone_utc_offset=-6 -County "KS, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000850.epw site_zip_code=66436 site_time_zone_utc_offset=-6 -County "KS, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000870.epw site_zip_code=66512 site_time_zone_utc_offset=-6 -County "KS, Jewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000890.epw site_zip_code=66956 site_time_zone_utc_offset=-6 -County "KS, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000910.epw site_zip_code=66062 site_time_zone_utc_offset=-6 -County "KS, Kearny County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000930.epw site_zip_code=67860 site_time_zone_utc_offset=-6 -County "KS, Kingman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000950.epw site_zip_code=67068 site_time_zone_utc_offset=-6 -County "KS, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000970.epw site_zip_code=67054 site_time_zone_utc_offset=-6 -County "KS, Labette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000990.epw site_zip_code=67357 site_time_zone_utc_offset=-6 -County "KS, Lane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001010.epw site_zip_code=67839 site_time_zone_utc_offset=-6 -County "KS, Leavenworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001030.epw site_zip_code=66048 site_time_zone_utc_offset=-6 -County "KS, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001050.epw site_zip_code=67455 site_time_zone_utc_offset=-6 -County "KS, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001070.epw site_zip_code=66040 site_time_zone_utc_offset=-6 -County "KS, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001090.epw site_zip_code=67748 site_time_zone_utc_offset=-6 -County "KS, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001110.epw site_zip_code=66801 site_time_zone_utc_offset=-6 -County "KS, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001150.epw site_zip_code=67063 site_time_zone_utc_offset=-6 -County "KS, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001170.epw site_zip_code=66508 site_time_zone_utc_offset=-6 -County "KS, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001130.epw site_zip_code=67460 site_time_zone_utc_offset=-6 -County "KS, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001190.epw site_zip_code=67864 site_time_zone_utc_offset=-6 -County "KS, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001210.epw site_zip_code=66071 site_time_zone_utc_offset=-6 -County "KS, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001230.epw site_zip_code=67420 site_time_zone_utc_offset=-6 -County "KS, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001250.epw site_zip_code=67301 site_time_zone_utc_offset=-6 -County "KS, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001270.epw site_zip_code=66846 site_time_zone_utc_offset=-6 -County "KS, Morton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001290.epw site_zip_code=67950 site_time_zone_utc_offset=-6 -County "KS, Nemaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001310.epw site_zip_code=66538 site_time_zone_utc_offset=-6 -County "KS, Neosho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001330.epw site_zip_code=66720 site_time_zone_utc_offset=-6 -County "KS, Ness County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001350.epw site_zip_code=67560 site_time_zone_utc_offset=-6 -County "KS, Norton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001370.epw site_zip_code=67654 site_time_zone_utc_offset=-6 -County "KS, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001390.epw site_zip_code=66523 site_time_zone_utc_offset=-6 -County "KS, Osborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001410.epw site_zip_code=67473 site_time_zone_utc_offset=-6 -County "KS, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001430.epw site_zip_code=67467 site_time_zone_utc_offset=-6 -County "KS, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001450.epw site_zip_code=67550 site_time_zone_utc_offset=-6 -County "KS, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001470.epw site_zip_code=67661 site_time_zone_utc_offset=-6 -County "KS, Pottawatomie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001490.epw site_zip_code=66547 site_time_zone_utc_offset=-6 -County "KS, Pratt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001510.epw site_zip_code=67124 site_time_zone_utc_offset=-6 -County "KS, Rawlins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001530.epw site_zip_code=67730 site_time_zone_utc_offset=-6 -County "KS, Reno County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001550.epw site_zip_code=67501 site_time_zone_utc_offset=-6 -County "KS, Republic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001570.epw site_zip_code=66935 site_time_zone_utc_offset=-6 -County "KS, Rice County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001590.epw site_zip_code=67554 site_time_zone_utc_offset=-6 -County "KS, Riley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001610.epw site_zip_code=66502 site_time_zone_utc_offset=-6 -County "KS, Rooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001630.epw site_zip_code=67663 site_time_zone_utc_offset=-6 -County "KS, Rush County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001650.epw site_zip_code=67548 site_time_zone_utc_offset=-6 -County "KS, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001670.epw site_zip_code=67665 site_time_zone_utc_offset=-6 -County "KS, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001690.epw site_zip_code=67401 site_time_zone_utc_offset=-6 -County "KS, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001710.epw site_zip_code=67871 site_time_zone_utc_offset=-6 -County "KS, Sedgwick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001730.epw site_zip_code=67212 site_time_zone_utc_offset=-6 -County "KS, Seward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001750.epw site_zip_code=67901 site_time_zone_utc_offset=-6 -County "KS, Shawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001770.epw site_zip_code=66614 site_time_zone_utc_offset=-6 -County "KS, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001790.epw site_zip_code=67740 site_time_zone_utc_offset=-6 -County "KS, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001810.epw site_zip_code=67735 site_time_zone_utc_offset=-7 -County "KS, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001830.epw site_zip_code=66967 site_time_zone_utc_offset=-6 -County "KS, Stafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001850.epw site_zip_code=67576 site_time_zone_utc_offset=-6 -County "KS, Stanton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001870.epw site_zip_code=67855 site_time_zone_utc_offset=-6 -County "KS, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001890.epw site_zip_code=67951 site_time_zone_utc_offset=-6 -County "KS, Sumner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001910.epw site_zip_code=67152 site_time_zone_utc_offset=-6 -County "KS, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001930.epw site_zip_code=67701 site_time_zone_utc_offset=-6 -County "KS, Trego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001950.epw site_zip_code=67672 site_time_zone_utc_offset=-6 -County "KS, Wabaunsee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001970.epw site_zip_code=66401 site_time_zone_utc_offset=-6 -County "KS, Wallace County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001990.epw site_zip_code=67758 site_time_zone_utc_offset=-7 -County "KS, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002010.epw site_zip_code=66968 site_time_zone_utc_offset=-6 -County "KS, Wichita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002030.epw site_zip_code=67861 site_time_zone_utc_offset=-6 -County "KS, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002050.epw site_zip_code=66736 site_time_zone_utc_offset=-6 -County "KS, Woodson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002070.epw site_zip_code=66783 site_time_zone_utc_offset=-6 -County "KS, Wyandotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002090.epw site_zip_code=66102 site_time_zone_utc_offset=-6 -County "KY, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100010.epw site_zip_code=42728 site_time_zone_utc_offset=-6 -County "KY, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100030.epw site_zip_code=42164 site_time_zone_utc_offset=-6 -County "KY, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100050.epw site_zip_code=40342 site_time_zone_utc_offset=-5 -County "KY, Ballard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100070.epw site_zip_code=42053 site_time_zone_utc_offset=-6 -County "KY, Barren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100090.epw site_zip_code=42141 site_time_zone_utc_offset=-6 -County "KY, Bath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100110.epw site_zip_code=40360 site_time_zone_utc_offset=-5 -County "KY, Bell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100130.epw site_zip_code=40965 site_time_zone_utc_offset=-5 -County "KY, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100150.epw site_zip_code=41042 site_time_zone_utc_offset=-5 -County "KY, Bourbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100170.epw site_zip_code=40361 site_time_zone_utc_offset=-5 -County "KY, Boyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100190.epw site_zip_code=41102 site_time_zone_utc_offset=-5 -County "KY, Boyle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100210.epw site_zip_code=40422 site_time_zone_utc_offset=-5 -County "KY, Bracken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100230.epw site_zip_code=41004 site_time_zone_utc_offset=-5 -County "KY, Breathitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100250.epw site_zip_code=41339 site_time_zone_utc_offset=-5 -County "KY, Breckinridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100270.epw site_zip_code=40143 site_time_zone_utc_offset=-6 -County "KY, Bullitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100290.epw site_zip_code=40165 site_time_zone_utc_offset=-5 -County "KY, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100310.epw site_zip_code=42261 site_time_zone_utc_offset=-6 -County "KY, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100330.epw site_zip_code=42445 site_time_zone_utc_offset=-6 -County "KY, Calloway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100350.epw site_zip_code=42071 site_time_zone_utc_offset=-6 -County "KY, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100370.epw site_zip_code=41071 site_time_zone_utc_offset=-5 -County "KY, Carlisle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100390.epw site_zip_code=42023 site_time_zone_utc_offset=-6 -County "KY, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100410.epw site_zip_code=41008 site_time_zone_utc_offset=-5 -County "KY, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100430.epw site_zip_code=41143 site_time_zone_utc_offset=-5 -County "KY, Casey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100450.epw site_zip_code=42539 site_time_zone_utc_offset=-5 -County "KY, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100470.epw site_zip_code=42240 site_time_zone_utc_offset=-6 -County "KY, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100490.epw site_zip_code=40391 site_time_zone_utc_offset=-5 -County "KY, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100510.epw site_zip_code=40962 site_time_zone_utc_offset=-5 -County "KY, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100530.epw site_zip_code=42602 site_time_zone_utc_offset=-6 -County "KY, Crittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100550.epw site_zip_code=42064 site_time_zone_utc_offset=-6 -County "KY, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100570.epw site_zip_code=42717 site_time_zone_utc_offset=-6 -County "KY, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100590.epw site_zip_code=42301 site_time_zone_utc_offset=-6 -County "KY, Edmonson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100610.epw site_zip_code=42210 site_time_zone_utc_offset=-6 -County "KY, Elliott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100630.epw site_zip_code=41171 site_time_zone_utc_offset=-5 -County "KY, Estill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100650.epw site_zip_code=40336 site_time_zone_utc_offset=-5 -County "KY, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100670.epw site_zip_code=40509 site_time_zone_utc_offset=-5 -County "KY, Fleming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100690.epw site_zip_code=41041 site_time_zone_utc_offset=-5 -County "KY, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100710.epw site_zip_code=41653 site_time_zone_utc_offset=-5 -County "KY, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100730.epw site_zip_code=40601 site_time_zone_utc_offset=-5 -County "KY, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100750.epw site_zip_code=42041 site_time_zone_utc_offset=-6 -County "KY, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100770.epw site_zip_code=41095 site_time_zone_utc_offset=-5 -County "KY, Garrard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100790.epw site_zip_code=40444 site_time_zone_utc_offset=-5 -County "KY, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100810.epw site_zip_code=41035 site_time_zone_utc_offset=-5 -County "KY, Graves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100830.epw site_zip_code=42066 site_time_zone_utc_offset=-6 -County "KY, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100850.epw site_zip_code=42754 site_time_zone_utc_offset=-6 -County "KY, Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100870.epw site_zip_code=42743 site_time_zone_utc_offset=-6 -County "KY, Greenup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100890.epw site_zip_code=41144 site_time_zone_utc_offset=-5 -County "KY, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100910.epw site_zip_code=42348 site_time_zone_utc_offset=-6 -County "KY, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100930.epw site_zip_code=42701 site_time_zone_utc_offset=-5 -County "KY, Harlan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100950.epw site_zip_code=40831 site_time_zone_utc_offset=-5 -County "KY, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100970.epw site_zip_code=41031 site_time_zone_utc_offset=-5 -County "KY, Hart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100990.epw site_zip_code=42765 site_time_zone_utc_offset=-6 -County "KY, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101010.epw site_zip_code=42420 site_time_zone_utc_offset=-6 -County "KY, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101030.epw site_zip_code=40019 site_time_zone_utc_offset=-5 -County "KY, Hickman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101050.epw site_zip_code=42031 site_time_zone_utc_offset=-6 -County "KY, Hopkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101070.epw site_zip_code=42431 site_time_zone_utc_offset=-6 -County "KY, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101090.epw site_zip_code=40447 site_time_zone_utc_offset=-5 -County "KY, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101110.epw site_zip_code=40214 site_time_zone_utc_offset=-5 -County "KY, Jessamine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101130.epw site_zip_code=40356 site_time_zone_utc_offset=-5 -County "KY, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101150.epw site_zip_code=41240 site_time_zone_utc_offset=-5 -County "KY, Kenton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101170.epw site_zip_code=41017 site_time_zone_utc_offset=-5 -County "KY, Knott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101190.epw site_zip_code=41822 site_time_zone_utc_offset=-5 -County "KY, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101210.epw site_zip_code=40906 site_time_zone_utc_offset=-5 -County "KY, Larue County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101230.epw site_zip_code=42748 site_time_zone_utc_offset=-5 -County "KY, Laurel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101250.epw site_zip_code=40741 site_time_zone_utc_offset=-5 -County "KY, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101270.epw site_zip_code=41230 site_time_zone_utc_offset=-5 -County "KY, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101290.epw site_zip_code=41311 site_time_zone_utc_offset=-5 -County "KY, Leslie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101310.epw site_zip_code=41749 site_time_zone_utc_offset=-5 -County "KY, Letcher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101330.epw site_zip_code=41858 site_time_zone_utc_offset=-5 -County "KY, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101350.epw site_zip_code=41179 site_time_zone_utc_offset=-5 -County "KY, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101370.epw site_zip_code=40484 site_time_zone_utc_offset=-5 -County "KY, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101390.epw site_zip_code=42045 site_time_zone_utc_offset=-6 -County "KY, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101410.epw site_zip_code=42276 site_time_zone_utc_offset=-6 -County "KY, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101430.epw site_zip_code=42038 site_time_zone_utc_offset=-6 -County "KY, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101510.epw site_zip_code=40475 site_time_zone_utc_offset=-5 -County "KY, Magoffin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101530.epw site_zip_code=41465 site_time_zone_utc_offset=-5 -County "KY, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101550.epw site_zip_code=40033 site_time_zone_utc_offset=-5 -County "KY, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101570.epw site_zip_code=42025 site_time_zone_utc_offset=-6 -County "KY, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101590.epw site_zip_code=41224 site_time_zone_utc_offset=-5 -County "KY, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101610.epw site_zip_code=41056 site_time_zone_utc_offset=-5 -County "KY, McCracken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101450.epw site_zip_code=42001 site_time_zone_utc_offset=-6 -County "KY, McCreary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101470.epw site_zip_code=42653 site_time_zone_utc_offset=-5 -County "KY, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101490.epw site_zip_code=42327 site_time_zone_utc_offset=-6 -County "KY, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101630.epw site_zip_code=40108 site_time_zone_utc_offset=-5 -County "KY, Menifee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101650.epw site_zip_code=40322 site_time_zone_utc_offset=-5 -County "KY, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101670.epw site_zip_code=40330 site_time_zone_utc_offset=-5 -County "KY, Metcalfe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101690.epw site_zip_code=42129 site_time_zone_utc_offset=-6 -County "KY, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101710.epw site_zip_code=42167 site_time_zone_utc_offset=-6 -County "KY, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101730.epw site_zip_code=40353 site_time_zone_utc_offset=-5 -County "KY, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101750.epw site_zip_code=41472 site_time_zone_utc_offset=-5 -County "KY, Muhlenberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101770.epw site_zip_code=42345 site_time_zone_utc_offset=-6 -County "KY, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101790.epw site_zip_code=40004 site_time_zone_utc_offset=-5 -County "KY, Nicholas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101810.epw site_zip_code=40311 site_time_zone_utc_offset=-5 -County "KY, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101830.epw site_zip_code=42320 site_time_zone_utc_offset=-6 -County "KY, Oldham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101850.epw site_zip_code=40014 site_time_zone_utc_offset=-5 -County "KY, Owen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101870.epw site_zip_code=40359 site_time_zone_utc_offset=-5 -County "KY, Owsley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101890.epw site_zip_code=41314 site_time_zone_utc_offset=-5 -County "KY, Pendleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101910.epw site_zip_code=41040 site_time_zone_utc_offset=-5 -County "KY, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101930.epw site_zip_code=41701 site_time_zone_utc_offset=-5 -County "KY, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101950.epw site_zip_code=41501 site_time_zone_utc_offset=-5 -County "KY, Powell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101970.epw site_zip_code=40380 site_time_zone_utc_offset=-5 -County "KY, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101990.epw site_zip_code=42503 site_time_zone_utc_offset=-5 -County "KY, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102010.epw site_zip_code=41064 site_time_zone_utc_offset=-5 -County "KY, Rockcastle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102030.epw site_zip_code=40456 site_time_zone_utc_offset=-5 -County "KY, Rowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102050.epw site_zip_code=40351 site_time_zone_utc_offset=-5 -County "KY, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102070.epw site_zip_code=42642 site_time_zone_utc_offset=-6 -County "KY, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102090.epw site_zip_code=40324 site_time_zone_utc_offset=-5 -County "KY, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102110.epw site_zip_code=40065 site_time_zone_utc_offset=-5 -County "KY, Simpson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102130.epw site_zip_code=42134 site_time_zone_utc_offset=-6 -County "KY, Spencer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102150.epw site_zip_code=40071 site_time_zone_utc_offset=-5 -County "KY, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102170.epw site_zip_code=42718 site_time_zone_utc_offset=-5 -County "KY, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102190.epw site_zip_code=42220 site_time_zone_utc_offset=-6 -County "KY, Trigg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102210.epw site_zip_code=42211 site_time_zone_utc_offset=-6 -County "KY, Trimble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102230.epw site_zip_code=40006 site_time_zone_utc_offset=-5 -County "KY, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102250.epw site_zip_code=42437 site_time_zone_utc_offset=-6 -County "KY, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102270.epw site_zip_code=42101 site_time_zone_utc_offset=-6 -County "KY, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102290.epw site_zip_code=40069 site_time_zone_utc_offset=-5 -County "KY, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102310.epw site_zip_code=42633 site_time_zone_utc_offset=-5 -County "KY, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102330.epw site_zip_code=42450 site_time_zone_utc_offset=-6 -County "KY, Whitley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102350.epw site_zip_code=40769 site_time_zone_utc_offset=-5 -County "KY, Wolfe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102370.epw site_zip_code=41301 site_time_zone_utc_offset=-5 -County "KY, Woodford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102390.epw site_zip_code=40383 site_time_zone_utc_offset=-5 -County "LA, Acadia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200010.epw site_zip_code=70526 site_time_zone_utc_offset=-6 -County "LA, Allen Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200030.epw site_zip_code=71463 site_time_zone_utc_offset=-6 -County "LA, Ascension Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200050.epw site_zip_code=70737 site_time_zone_utc_offset=-6 -County "LA, Assumption Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200070.epw site_zip_code=70339 site_time_zone_utc_offset=-6 -County "LA, Avoyelles Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200090.epw site_zip_code=71351 site_time_zone_utc_offset=-6 -County "LA, Beauregard Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200110.epw site_zip_code=70634 site_time_zone_utc_offset=-6 -County "LA, Bienville Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200130.epw site_zip_code=71001 site_time_zone_utc_offset=-6 -County "LA, Bossier Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200150.epw site_zip_code=71111 site_time_zone_utc_offset=-6 -County "LA, Caddo Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200170.epw site_zip_code=71106 site_time_zone_utc_offset=-6 -County "LA, Calcasieu Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200190.epw site_zip_code=70605 site_time_zone_utc_offset=-6 -County "LA, Caldwell Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200210.epw site_zip_code=71418 site_time_zone_utc_offset=-6 -County "LA, Cameron Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200230.epw site_zip_code=70607 site_time_zone_utc_offset=-6 -County "LA, Catahoula Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200250.epw site_zip_code=71343 site_time_zone_utc_offset=-6 -County "LA, Claiborne Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200270.epw site_zip_code=71040 site_time_zone_utc_offset=-6 -County "LA, Concordia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200290.epw site_zip_code=71334 site_time_zone_utc_offset=-6 -County "LA, De Soto Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200310.epw site_zip_code=71052 site_time_zone_utc_offset=-6 -County "LA, East Baton Rouge Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200330.epw site_zip_code=70816 site_time_zone_utc_offset=-6 -County "LA, East Carroll Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200350.epw site_zip_code=71254 site_time_zone_utc_offset=-6 -County "LA, East Feliciana Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200370.epw site_zip_code=70722 site_time_zone_utc_offset=-6 -County "LA, Evangeline Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200390.epw site_zip_code=70586 site_time_zone_utc_offset=-6 -County "LA, Franklin Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200410.epw site_zip_code=71295 site_time_zone_utc_offset=-6 -County "LA, Grant Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200430.epw site_zip_code=71467 site_time_zone_utc_offset=-6 -County "LA, Iberia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200450.epw site_zip_code=70560 site_time_zone_utc_offset=-6 -County "LA, Iberville Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200470.epw site_zip_code=70764 site_time_zone_utc_offset=-6 -County "LA, Jackson Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200490.epw site_zip_code=71251 site_time_zone_utc_offset=-6 -County "LA, Jefferson Davis Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200530.epw site_zip_code=70546 site_time_zone_utc_offset=-6 -County "LA, Jefferson Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200510.epw site_zip_code=70072 site_time_zone_utc_offset=-6 -County "LA, La Salle Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200590.epw site_zip_code=71342 site_time_zone_utc_offset=-6 -County "LA, Lafayette Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200550.epw site_zip_code=70506 site_time_zone_utc_offset=-6 -County "LA, Lafourche Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200570.epw site_zip_code=70301 site_time_zone_utc_offset=-6 -County "LA, Lincoln Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200610.epw site_zip_code=71270 site_time_zone_utc_offset=-6 -County "LA, Livingston Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200630.epw site_zip_code=70726 site_time_zone_utc_offset=-6 -County "LA, Madison Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200650.epw site_zip_code=71282 site_time_zone_utc_offset=-6 -County "LA, Morehouse Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200670.epw site_zip_code=71220 site_time_zone_utc_offset=-6 -County "LA, Natchitoches Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200690.epw site_zip_code=71457 site_time_zone_utc_offset=-6 -County "LA, Orleans Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200710.epw site_zip_code=70119 site_time_zone_utc_offset=-6 -County "LA, Ouachita Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200730.epw site_zip_code=71203 site_time_zone_utc_offset=-6 -County "LA, Plaquemines Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200750.epw site_zip_code=70037 site_time_zone_utc_offset=-6 -County "LA, Pointe Coupee Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200770.epw site_zip_code=70760 site_time_zone_utc_offset=-6 -County "LA, Rapides Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200790.epw site_zip_code=71360 site_time_zone_utc_offset=-6 -County "LA, Red River Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200810.epw site_zip_code=71019 site_time_zone_utc_offset=-6 -County "LA, Richland Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200830.epw site_zip_code=71269 site_time_zone_utc_offset=-6 -County "LA, Sabine Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200850.epw site_zip_code=71449 site_time_zone_utc_offset=-6 -County "LA, St. Bernard Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200870.epw site_zip_code=70043 site_time_zone_utc_offset=-6 -County "LA, St. Charles Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200890.epw site_zip_code=70070 site_time_zone_utc_offset=-6 -County "LA, St. Helena Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200910.epw site_zip_code=70441 site_time_zone_utc_offset=-6 -County "LA, St. James Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200930.epw site_zip_code=70090 site_time_zone_utc_offset=-6 -County "LA, St. John the Baptist Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200950.epw site_zip_code=70068 site_time_zone_utc_offset=-6 -County "LA, St. Landry Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200970.epw site_zip_code=70570 site_time_zone_utc_offset=-6 -County "LA, St. Martin Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200990.epw site_zip_code=70517 site_time_zone_utc_offset=-6 -County "LA, St. Mary Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201010.epw site_zip_code=70380 site_time_zone_utc_offset=-6 -County "LA, St. Tammany Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201030.epw site_zip_code=70433 site_time_zone_utc_offset=-6 -County "LA, Tangipahoa Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201050.epw site_zip_code=70454 site_time_zone_utc_offset=-6 -County "LA, Tensas Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201070.epw site_zip_code=71366 site_time_zone_utc_offset=-6 -County "LA, Terrebonne Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201090.epw site_zip_code=70360 site_time_zone_utc_offset=-6 -County "LA, Union Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201110.epw site_zip_code=71241 site_time_zone_utc_offset=-6 -County "LA, Vermilion Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201130.epw site_zip_code=70510 site_time_zone_utc_offset=-6 -County "LA, Vernon Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201150.epw site_zip_code=71446 site_time_zone_utc_offset=-6 -County "LA, Washington Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201170.epw site_zip_code=70427 site_time_zone_utc_offset=-6 -County "LA, Webster Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201190.epw site_zip_code=71055 site_time_zone_utc_offset=-6 -County "LA, West Baton Rouge Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201210.epw site_zip_code=70767 site_time_zone_utc_offset=-6 -County "LA, West Carroll Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201230.epw site_zip_code=71263 site_time_zone_utc_offset=-6 -County "LA, West Feliciana Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201250.epw site_zip_code=70775 site_time_zone_utc_offset=-6 -County "LA, Winn Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201270.epw site_zip_code=71483 site_time_zone_utc_offset=-6 -County "MA, Barnstable County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500010.epw site_zip_code=02536 site_time_zone_utc_offset=-5 -County "MA, Berkshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500030.epw site_zip_code=01201 site_time_zone_utc_offset=-5 -County "MA, Bristol County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500050.epw site_zip_code=02780 site_time_zone_utc_offset=-5 -County "MA, Dukes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500070.epw site_zip_code=02568 site_time_zone_utc_offset=-5 -County "MA, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500090.epw site_zip_code=01960 site_time_zone_utc_offset=-5 -County "MA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500110.epw site_zip_code=01301 site_time_zone_utc_offset=-5 -County "MA, Hampden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500130.epw site_zip_code=01085 site_time_zone_utc_offset=-5 -County "MA, Hampshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500150.epw site_zip_code=01002 site_time_zone_utc_offset=-5 -County "MA, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500170.epw site_zip_code=02148 site_time_zone_utc_offset=-5 -County "MA, Nantucket County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500190.epw site_zip_code=02554 site_time_zone_utc_offset=-5 -County "MA, Norfolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500210.epw site_zip_code=02169 site_time_zone_utc_offset=-5 -County "MA, Plymouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500230.epw site_zip_code=02360 site_time_zone_utc_offset=-5 -County "MA, Suffolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500250.epw site_zip_code=02151 site_time_zone_utc_offset=-5 -County "MA, Worcester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500270.epw site_zip_code=01453 site_time_zone_utc_offset=-5 -County "MD, Allegany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400010.epw site_zip_code=21502 site_time_zone_utc_offset=-5 -County "MD, Anne Arundel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400030.epw site_zip_code=21122 site_time_zone_utc_offset=-5 -County "MD, Baltimore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400050.epw site_zip_code=21117 site_time_zone_utc_offset=-5 -County "MD, Baltimore city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2405100.epw site_zip_code=21215 site_time_zone_utc_offset=-5 -County "MD, Calvert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400090.epw site_zip_code=20657 site_time_zone_utc_offset=-5 -County "MD, Caroline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400110.epw site_zip_code=21629 site_time_zone_utc_offset=-5 -County "MD, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400130.epw site_zip_code=21157 site_time_zone_utc_offset=-5 -County "MD, Cecil County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400150.epw site_zip_code=21921 site_time_zone_utc_offset=-5 -County "MD, Charles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400170.epw site_zip_code=20603 site_time_zone_utc_offset=-5 -County "MD, Dorchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400190.epw site_zip_code=21613 site_time_zone_utc_offset=-5 -County "MD, Frederick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400210.epw site_zip_code=21702 site_time_zone_utc_offset=-5 -County "MD, Garrett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400230.epw site_zip_code=21550 site_time_zone_utc_offset=-5 -County "MD, Harford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400250.epw site_zip_code=21014 site_time_zone_utc_offset=-5 -County "MD, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400270.epw site_zip_code=21044 site_time_zone_utc_offset=-5 -County "MD, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400290.epw site_zip_code=21620 site_time_zone_utc_offset=-5 -County "MD, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400310.epw site_zip_code=20906 site_time_zone_utc_offset=-5 -County "MD, Prince George's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400330.epw site_zip_code=20774 site_time_zone_utc_offset=-5 -County "MD, Queen Anne's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400350.epw site_zip_code=21666 site_time_zone_utc_offset=-5 -County "MD, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400390.epw site_zip_code=21853 site_time_zone_utc_offset=-5 -County "MD, St. Mary's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400370.epw site_zip_code=20653 site_time_zone_utc_offset=-5 -County "MD, Talbot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400410.epw site_zip_code=21601 site_time_zone_utc_offset=-5 -County "MD, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400430.epw site_zip_code=21740 site_time_zone_utc_offset=-5 -County "MD, Wicomico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400450.epw site_zip_code=21804 site_time_zone_utc_offset=-5 -County "MD, Worcester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400470.epw site_zip_code=21842 site_time_zone_utc_offset=-5 -County "ME, Androscoggin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300010.epw site_zip_code=04240 site_time_zone_utc_offset=-5 -County "ME, Aroostook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300030.epw site_zip_code=04769 site_time_zone_utc_offset=-5 -County "ME, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300050.epw site_zip_code=04103 site_time_zone_utc_offset=-5 -County "ME, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300070.epw site_zip_code=04938 site_time_zone_utc_offset=-5 -County "ME, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300090.epw site_zip_code=04605 site_time_zone_utc_offset=-5 -County "ME, Kennebec County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300110.epw site_zip_code=04901 site_time_zone_utc_offset=-5 -County "ME, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300130.epw site_zip_code=04841 site_time_zone_utc_offset=-5 -County "ME, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300150.epw site_zip_code=04572 site_time_zone_utc_offset=-5 -County "ME, Oxford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300170.epw site_zip_code=04276 site_time_zone_utc_offset=-5 -County "ME, Penobscot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300190.epw site_zip_code=04401 site_time_zone_utc_offset=-5 -County "ME, Piscataquis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300210.epw site_zip_code=04426 site_time_zone_utc_offset=-5 -County "ME, Sagadahoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300230.epw site_zip_code=04530 site_time_zone_utc_offset=-5 -County "ME, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300250.epw site_zip_code=04976 site_time_zone_utc_offset=-5 -County "ME, Waldo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300270.epw site_zip_code=04915 site_time_zone_utc_offset=-5 -County "ME, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300290.epw site_zip_code=04654 site_time_zone_utc_offset=-5 -County "ME, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300310.epw site_zip_code=04005 site_time_zone_utc_offset=-5 -County "MI, Alcona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600010.epw site_zip_code=48740 site_time_zone_utc_offset=-5 -County "MI, Alger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600030.epw site_zip_code=49862 site_time_zone_utc_offset=-5 -County "MI, Allegan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600050.epw site_zip_code=49010 site_time_zone_utc_offset=-5 -County "MI, Alpena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600070.epw site_zip_code=49707 site_time_zone_utc_offset=-5 -County "MI, Antrim County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600090.epw site_zip_code=49615 site_time_zone_utc_offset=-5 -County "MI, Arenac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600110.epw site_zip_code=48658 site_time_zone_utc_offset=-5 -County "MI, Baraga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600130.epw site_zip_code=49946 site_time_zone_utc_offset=-5 -County "MI, Barry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600150.epw site_zip_code=49058 site_time_zone_utc_offset=-5 -County "MI, Bay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600170.epw site_zip_code=48706 site_time_zone_utc_offset=-5 -County "MI, Benzie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600190.epw site_zip_code=49635 site_time_zone_utc_offset=-5 -County "MI, Berrien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600210.epw site_zip_code=49022 site_time_zone_utc_offset=-5 -County "MI, Branch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600230.epw site_zip_code=49036 site_time_zone_utc_offset=-5 -County "MI, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600250.epw site_zip_code=49015 site_time_zone_utc_offset=-5 -County "MI, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600270.epw site_zip_code=49047 site_time_zone_utc_offset=-5 -County "MI, Charlevoix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600290.epw site_zip_code=49720 site_time_zone_utc_offset=-5 -County "MI, Cheboygan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600310.epw site_zip_code=49721 site_time_zone_utc_offset=-5 -County "MI, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600330.epw site_zip_code=49783 site_time_zone_utc_offset=-5 -County "MI, Clare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600350.epw site_zip_code=48625 site_time_zone_utc_offset=-5 -County "MI, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600370.epw site_zip_code=48820 site_time_zone_utc_offset=-5 -County "MI, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600390.epw site_zip_code=49738 site_time_zone_utc_offset=-5 -County "MI, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600410.epw site_zip_code=49829 site_time_zone_utc_offset=-5 -County "MI, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600430.epw site_zip_code=49801 site_time_zone_utc_offset=-6 -County "MI, Eaton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600450.epw site_zip_code=48917 site_time_zone_utc_offset=-5 -County "MI, Emmet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600470.epw site_zip_code=49770 site_time_zone_utc_offset=-5 -County "MI, Genesee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600490.epw site_zip_code=48439 site_time_zone_utc_offset=-5 -County "MI, Gladwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600510.epw site_zip_code=48624 site_time_zone_utc_offset=-5 -County "MI, Gogebic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600530.epw site_zip_code=49938 site_time_zone_utc_offset=-6 -County "MI, Grand Traverse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600550.epw site_zip_code=49686 site_time_zone_utc_offset=-5 -County "MI, Gratiot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600570.epw site_zip_code=48801 site_time_zone_utc_offset=-5 -County "MI, Hillsdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600590.epw site_zip_code=49242 site_time_zone_utc_offset=-5 -County "MI, Houghton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600610.epw site_zip_code=49931 site_time_zone_utc_offset=-5 -County "MI, Huron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600630.epw site_zip_code=48413 site_time_zone_utc_offset=-5 -County "MI, Ingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600650.epw site_zip_code=48823 site_time_zone_utc_offset=-5 -County "MI, Ionia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600670.epw site_zip_code=48846 site_time_zone_utc_offset=-5 -County "MI, Iosco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600690.epw site_zip_code=48750 site_time_zone_utc_offset=-5 -County "MI, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600710.epw site_zip_code=49935 site_time_zone_utc_offset=-6 -County "MI, Isabella County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600730.epw site_zip_code=48858 site_time_zone_utc_offset=-5 -County "MI, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600750.epw site_zip_code=49201 site_time_zone_utc_offset=-5 -County "MI, Kalamazoo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600770.epw site_zip_code=49009 site_time_zone_utc_offset=-5 -County "MI, Kalkaska County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600790.epw site_zip_code=49646 site_time_zone_utc_offset=-5 -County "MI, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600810.epw site_zip_code=49503 site_time_zone_utc_offset=-5 -County "MI, Keweenaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600830.epw site_zip_code=49950 site_time_zone_utc_offset=-5 -County "MI, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600850.epw site_zip_code=49304 site_time_zone_utc_offset=-5 -County "MI, Lapeer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600870.epw site_zip_code=48446 site_time_zone_utc_offset=-5 -County "MI, Leelanau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600890.epw site_zip_code=49684 site_time_zone_utc_offset=-5 -County "MI, Lenawee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600910.epw site_zip_code=49221 site_time_zone_utc_offset=-5 -County "MI, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600930.epw site_zip_code=48843 site_time_zone_utc_offset=-5 -County "MI, Luce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600950.epw site_zip_code=49868 site_time_zone_utc_offset=-5 -County "MI, Mackinac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600970.epw site_zip_code=49781 site_time_zone_utc_offset=-5 -County "MI, Macomb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600990.epw site_zip_code=48038 site_time_zone_utc_offset=-5 -County "MI, Manistee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601010.epw site_zip_code=49660 site_time_zone_utc_offset=-5 -County "MI, Marquette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601030.epw site_zip_code=49855 site_time_zone_utc_offset=-5 -County "MI, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601050.epw site_zip_code=49431 site_time_zone_utc_offset=-5 -County "MI, Mecosta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601070.epw site_zip_code=49307 site_time_zone_utc_offset=-5 -County "MI, Menominee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601090.epw site_zip_code=49858 site_time_zone_utc_offset=-6 -County "MI, Midland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601110.epw site_zip_code=48642 site_time_zone_utc_offset=-5 -County "MI, Missaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601130.epw site_zip_code=49651 site_time_zone_utc_offset=-5 -County "MI, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601150.epw site_zip_code=48162 site_time_zone_utc_offset=-5 -County "MI, Montcalm County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601170.epw site_zip_code=48838 site_time_zone_utc_offset=-5 -County "MI, Montmorency County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601190.epw site_zip_code=49709 site_time_zone_utc_offset=-5 -County "MI, Muskegon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601210.epw site_zip_code=49442 site_time_zone_utc_offset=-5 -County "MI, Newaygo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601230.epw site_zip_code=49337 site_time_zone_utc_offset=-5 -County "MI, Oakland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601250.epw site_zip_code=48307 site_time_zone_utc_offset=-5 -County "MI, Oceana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601270.epw site_zip_code=49420 site_time_zone_utc_offset=-5 -County "MI, Ogemaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601290.epw site_zip_code=48661 site_time_zone_utc_offset=-5 -County "MI, Ontonagon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601310.epw site_zip_code=49953 site_time_zone_utc_offset=-5 -County "MI, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601330.epw site_zip_code=49631 site_time_zone_utc_offset=-5 -County "MI, Oscoda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601350.epw site_zip_code=48647 site_time_zone_utc_offset=-5 -County "MI, Otsego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601370.epw site_zip_code=49735 site_time_zone_utc_offset=-5 -County "MI, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601390.epw site_zip_code=49424 site_time_zone_utc_offset=-5 -County "MI, Presque Isle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601410.epw site_zip_code=49779 site_time_zone_utc_offset=-5 -County "MI, Roscommon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601430.epw site_zip_code=48629 site_time_zone_utc_offset=-5 -County "MI, Saginaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601450.epw site_zip_code=48601 site_time_zone_utc_offset=-5 -County "MI, Sanilac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601510.epw site_zip_code=48450 site_time_zone_utc_offset=-5 -County "MI, Schoolcraft County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601530.epw site_zip_code=49854 site_time_zone_utc_offset=-5 -County "MI, Shiawassee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601550.epw site_zip_code=48867 site_time_zone_utc_offset=-5 -County "MI, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601470.epw site_zip_code=48060 site_time_zone_utc_offset=-5 -County "MI, St. Joseph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601490.epw site_zip_code=49091 site_time_zone_utc_offset=-5 -County "MI, Tuscola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601570.epw site_zip_code=48723 site_time_zone_utc_offset=-5 -County "MI, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601590.epw site_zip_code=49090 site_time_zone_utc_offset=-5 -County "MI, Washtenaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601610.epw site_zip_code=48197 site_time_zone_utc_offset=-5 -County "MI, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601630.epw site_zip_code=48180 site_time_zone_utc_offset=-5 -County "MI, Wexford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601650.epw site_zip_code=49601 site_time_zone_utc_offset=-5 -County "MN, Aitkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700010.epw site_zip_code=56431 site_time_zone_utc_offset=-6 -County "MN, Anoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700030.epw site_zip_code=55303 site_time_zone_utc_offset=-6 -County "MN, Becker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700050.epw site_zip_code=56501 site_time_zone_utc_offset=-6 -County "MN, Beltrami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700070.epw site_zip_code=56601 site_time_zone_utc_offset=-6 -County "MN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700090.epw site_zip_code=56379 site_time_zone_utc_offset=-6 -County "MN, Big Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700110.epw site_zip_code=56278 site_time_zone_utc_offset=-6 -County "MN, Blue Earth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700130.epw site_zip_code=56001 site_time_zone_utc_offset=-6 -County "MN, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700150.epw site_zip_code=56073 site_time_zone_utc_offset=-6 -County "MN, Carlton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700170.epw site_zip_code=55720 site_time_zone_utc_offset=-6 -County "MN, Carver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700190.epw site_zip_code=55318 site_time_zone_utc_offset=-6 -County "MN, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700210.epw site_zip_code=56474 site_time_zone_utc_offset=-6 -County "MN, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700230.epw site_zip_code=56265 site_time_zone_utc_offset=-6 -County "MN, Chisago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700250.epw site_zip_code=55056 site_time_zone_utc_offset=-6 -County "MN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700270.epw site_zip_code=56560 site_time_zone_utc_offset=-6 -County "MN, Clearwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700290.epw site_zip_code=56621 site_time_zone_utc_offset=-6 -County "MN, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700310.epw site_zip_code=55604 site_time_zone_utc_offset=-6 -County "MN, Cottonwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700330.epw site_zip_code=56101 site_time_zone_utc_offset=-6 -County "MN, Crow Wing County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700350.epw site_zip_code=56401 site_time_zone_utc_offset=-6 -County "MN, Dakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700370.epw site_zip_code=55124 site_time_zone_utc_offset=-6 -County "MN, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700390.epw site_zip_code=55944 site_time_zone_utc_offset=-6 -County "MN, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700410.epw site_zip_code=56308 site_time_zone_utc_offset=-6 -County "MN, Faribault County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700430.epw site_zip_code=56013 site_time_zone_utc_offset=-6 -County "MN, Fillmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700450.epw site_zip_code=55975 site_time_zone_utc_offset=-6 -County "MN, Freeborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700470.epw site_zip_code=56007 site_time_zone_utc_offset=-6 -County "MN, Goodhue County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700490.epw site_zip_code=55066 site_time_zone_utc_offset=-6 -County "MN, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700510.epw site_zip_code=56531 site_time_zone_utc_offset=-6 -County "MN, Hennepin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700530.epw site_zip_code=55408 site_time_zone_utc_offset=-6 -County "MN, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700550.epw site_zip_code=55947 site_time_zone_utc_offset=-6 -County "MN, Hubbard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700570.epw site_zip_code=56470 site_time_zone_utc_offset=-6 -County "MN, Isanti County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700590.epw site_zip_code=55008 site_time_zone_utc_offset=-6 -County "MN, Itasca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700610.epw site_zip_code=55744 site_time_zone_utc_offset=-6 -County "MN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700630.epw site_zip_code=56143 site_time_zone_utc_offset=-6 -County "MN, Kanabec County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700650.epw site_zip_code=55051 site_time_zone_utc_offset=-6 -County "MN, Kandiyohi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700670.epw site_zip_code=56201 site_time_zone_utc_offset=-6 -County "MN, Kittson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700690.epw site_zip_code=56728 site_time_zone_utc_offset=-6 -County "MN, Koochiching County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700710.epw site_zip_code=56649 site_time_zone_utc_offset=-6 -County "MN, Lac qui Parle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700730.epw site_zip_code=56256 site_time_zone_utc_offset=-6 -County "MN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700750.epw site_zip_code=55616 site_time_zone_utc_offset=-6 -County "MN, Lake of the Woods County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700770.epw site_zip_code=56623 site_time_zone_utc_offset=-6 -County "MN, Le Sueur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700790.epw site_zip_code=56058 site_time_zone_utc_offset=-6 -County "MN, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700810.epw site_zip_code=56178 site_time_zone_utc_offset=-6 -County "MN, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700830.epw site_zip_code=56258 site_time_zone_utc_offset=-6 -County "MN, Mahnomen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700870.epw site_zip_code=56557 site_time_zone_utc_offset=-6 -County "MN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700890.epw site_zip_code=56762 site_time_zone_utc_offset=-6 -County "MN, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700910.epw site_zip_code=56031 site_time_zone_utc_offset=-6 -County "MN, McLeod County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700850.epw site_zip_code=55350 site_time_zone_utc_offset=-6 -County "MN, Meeker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700930.epw site_zip_code=55355 site_time_zone_utc_offset=-6 -County "MN, Mille Lacs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700950.epw site_zip_code=56353 site_time_zone_utc_offset=-6 -County "MN, Morrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700970.epw site_zip_code=56345 site_time_zone_utc_offset=-6 -County "MN, Mower County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700990.epw site_zip_code=55912 site_time_zone_utc_offset=-6 -County "MN, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701010.epw site_zip_code=56172 site_time_zone_utc_offset=-6 -County "MN, Nicollet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701030.epw site_zip_code=56003 site_time_zone_utc_offset=-6 -County "MN, Nobles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701050.epw site_zip_code=56187 site_time_zone_utc_offset=-6 -County "MN, Norman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701070.epw site_zip_code=56510 site_time_zone_utc_offset=-6 -County "MN, Olmsted County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701090.epw site_zip_code=55901 site_time_zone_utc_offset=-6 -County "MN, Otter Tail County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701110.epw site_zip_code=56537 site_time_zone_utc_offset=-6 -County "MN, Pennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701130.epw site_zip_code=56701 site_time_zone_utc_offset=-6 -County "MN, Pine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701150.epw site_zip_code=55063 site_time_zone_utc_offset=-6 -County "MN, Pipestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701170.epw site_zip_code=56164 site_time_zone_utc_offset=-6 -County "MN, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701190.epw site_zip_code=56721 site_time_zone_utc_offset=-6 -County "MN, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701210.epw site_zip_code=56334 site_time_zone_utc_offset=-6 -County "MN, Ramsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701230.epw site_zip_code=55106 site_time_zone_utc_offset=-6 -County "MN, Red Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701250.epw site_zip_code=56750 site_time_zone_utc_offset=-6 -County "MN, Redwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701270.epw site_zip_code=56283 site_time_zone_utc_offset=-6 -County "MN, Renville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701290.epw site_zip_code=56277 site_time_zone_utc_offset=-6 -County "MN, Rice County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701310.epw site_zip_code=55021 site_time_zone_utc_offset=-6 -County "MN, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701330.epw site_zip_code=56156 site_time_zone_utc_offset=-6 -County "MN, Roseau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701350.epw site_zip_code=56751 site_time_zone_utc_offset=-6 -County "MN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701390.epw site_zip_code=55379 site_time_zone_utc_offset=-6 -County "MN, Sherburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701410.epw site_zip_code=55330 site_time_zone_utc_offset=-6 -County "MN, Sibley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701430.epw site_zip_code=55334 site_time_zone_utc_offset=-6 -County "MN, St. Louis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701370.epw site_zip_code=55811 site_time_zone_utc_offset=-6 -County "MN, Stearns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701450.epw site_zip_code=56301 site_time_zone_utc_offset=-6 -County "MN, Steele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701470.epw site_zip_code=55060 site_time_zone_utc_offset=-6 -County "MN, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701490.epw site_zip_code=56267 site_time_zone_utc_offset=-6 -County "MN, Swift County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701510.epw site_zip_code=56215 site_time_zone_utc_offset=-6 -County "MN, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701530.epw site_zip_code=56347 site_time_zone_utc_offset=-6 -County "MN, Traverse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701550.epw site_zip_code=56296 site_time_zone_utc_offset=-6 -County "MN, Wabasha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701570.epw site_zip_code=55041 site_time_zone_utc_offset=-6 -County "MN, Wadena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701590.epw site_zip_code=56482 site_time_zone_utc_offset=-6 -County "MN, Waseca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701610.epw site_zip_code=56093 site_time_zone_utc_offset=-6 -County "MN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701630.epw site_zip_code=55125 site_time_zone_utc_offset=-6 -County "MN, Watonwan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701650.epw site_zip_code=56081 site_time_zone_utc_offset=-6 -County "MN, Wilkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701670.epw site_zip_code=56520 site_time_zone_utc_offset=-6 -County "MN, Winona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701690.epw site_zip_code=55987 site_time_zone_utc_offset=-6 -County "MN, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701710.epw site_zip_code=55313 site_time_zone_utc_offset=-6 -County "MN, Yellow Medicine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701730.epw site_zip_code=56220 site_time_zone_utc_offset=-6 -County "MO, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900010.epw site_zip_code=63501 site_time_zone_utc_offset=-6 -County "MO, Andrew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900030.epw site_zip_code=64485 site_time_zone_utc_offset=-6 -County "MO, Atchison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900050.epw site_zip_code=64491 site_time_zone_utc_offset=-6 -County "MO, Audrain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900070.epw site_zip_code=65265 site_time_zone_utc_offset=-6 -County "MO, Barry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900090.epw site_zip_code=65625 site_time_zone_utc_offset=-6 -County "MO, Barton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900110.epw site_zip_code=64759 site_time_zone_utc_offset=-6 -County "MO, Bates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900130.epw site_zip_code=64730 site_time_zone_utc_offset=-6 -County "MO, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900150.epw site_zip_code=65355 site_time_zone_utc_offset=-6 -County "MO, Bollinger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900170.epw site_zip_code=63764 site_time_zone_utc_offset=-6 -County "MO, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900190.epw site_zip_code=65203 site_time_zone_utc_offset=-6 -County "MO, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900210.epw site_zip_code=64506 site_time_zone_utc_offset=-6 -County "MO, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900230.epw site_zip_code=63901 site_time_zone_utc_offset=-6 -County "MO, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900250.epw site_zip_code=64644 site_time_zone_utc_offset=-6 -County "MO, Callaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900270.epw site_zip_code=65251 site_time_zone_utc_offset=-6 -County "MO, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900290.epw site_zip_code=65020 site_time_zone_utc_offset=-6 -County "MO, Cape Girardeau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900310.epw site_zip_code=63701 site_time_zone_utc_offset=-6 -County "MO, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900330.epw site_zip_code=64633 site_time_zone_utc_offset=-6 -County "MO, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900350.epw site_zip_code=63965 site_time_zone_utc_offset=-6 -County "MO, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900370.epw site_zip_code=64012 site_time_zone_utc_offset=-6 -County "MO, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900390.epw site_zip_code=64744 site_time_zone_utc_offset=-6 -County "MO, Chariton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900410.epw site_zip_code=65281 site_time_zone_utc_offset=-6 -County "MO, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900430.epw site_zip_code=65714 site_time_zone_utc_offset=-6 -County "MO, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900450.epw site_zip_code=63445 site_time_zone_utc_offset=-6 -County "MO, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900470.epw site_zip_code=64118 site_time_zone_utc_offset=-6 -County "MO, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900490.epw site_zip_code=64429 site_time_zone_utc_offset=-6 -County "MO, Cole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900510.epw site_zip_code=65109 site_time_zone_utc_offset=-6 -County "MO, Cooper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900530.epw site_zip_code=65233 site_time_zone_utc_offset=-6 -County "MO, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900550.epw site_zip_code=65453 site_time_zone_utc_offset=-6 -County "MO, Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900570.epw site_zip_code=65661 site_time_zone_utc_offset=-6 -County "MO, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900590.epw site_zip_code=65622 site_time_zone_utc_offset=-6 -County "MO, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900610.epw site_zip_code=64640 site_time_zone_utc_offset=-6 -County "MO, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900630.epw site_zip_code=64429 site_time_zone_utc_offset=-6 -County "MO, Dent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900650.epw site_zip_code=65560 site_time_zone_utc_offset=-6 -County "MO, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900670.epw site_zip_code=65608 site_time_zone_utc_offset=-6 -County "MO, Dunklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900690.epw site_zip_code=63857 site_time_zone_utc_offset=-6 -County "MO, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900710.epw site_zip_code=63090 site_time_zone_utc_offset=-6 -County "MO, Gasconade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900730.epw site_zip_code=65066 site_time_zone_utc_offset=-6 -County "MO, Gentry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900750.epw site_zip_code=64402 site_time_zone_utc_offset=-6 -County "MO, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900770.epw site_zip_code=65807 site_time_zone_utc_offset=-6 -County "MO, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900790.epw site_zip_code=64683 site_time_zone_utc_offset=-6 -County "MO, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900810.epw site_zip_code=64424 site_time_zone_utc_offset=-6 -County "MO, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900830.epw site_zip_code=64735 site_time_zone_utc_offset=-6 -County "MO, Hickory County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900850.epw site_zip_code=65779 site_time_zone_utc_offset=-6 -County "MO, Holt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900870.epw site_zip_code=64470 site_time_zone_utc_offset=-6 -County "MO, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900890.epw site_zip_code=65248 site_time_zone_utc_offset=-6 -County "MO, Howell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900910.epw site_zip_code=65775 site_time_zone_utc_offset=-6 -County "MO, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900930.epw site_zip_code=63650 site_time_zone_utc_offset=-6 -County "MO, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900950.epw site_zip_code=64055 site_time_zone_utc_offset=-6 -County "MO, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900970.epw site_zip_code=64801 site_time_zone_utc_offset=-6 -County "MO, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900990.epw site_zip_code=63010 site_time_zone_utc_offset=-6 -County "MO, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901010.epw site_zip_code=64093 site_time_zone_utc_offset=-6 -County "MO, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901030.epw site_zip_code=63537 site_time_zone_utc_offset=-6 -County "MO, Laclede County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901050.epw site_zip_code=65536 site_time_zone_utc_offset=-6 -County "MO, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901070.epw site_zip_code=64076 site_time_zone_utc_offset=-6 -County "MO, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901090.epw site_zip_code=65605 site_time_zone_utc_offset=-6 -County "MO, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901110.epw site_zip_code=63435 site_time_zone_utc_offset=-6 -County "MO, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901130.epw site_zip_code=63379 site_time_zone_utc_offset=-6 -County "MO, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901150.epw site_zip_code=64628 site_time_zone_utc_offset=-6 -County "MO, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901170.epw site_zip_code=64601 site_time_zone_utc_offset=-6 -County "MO, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901210.epw site_zip_code=63552 site_time_zone_utc_offset=-6 -County "MO, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901230.epw site_zip_code=63645 site_time_zone_utc_offset=-6 -County "MO, Maries County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901250.epw site_zip_code=65582 site_time_zone_utc_offset=-6 -County "MO, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901270.epw site_zip_code=63401 site_time_zone_utc_offset=-6 -County "MO, McDonald County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901190.epw site_zip_code=64831 site_time_zone_utc_offset=-6 -County "MO, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901290.epw site_zip_code=64673 site_time_zone_utc_offset=-6 -County "MO, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901310.epw site_zip_code=65026 site_time_zone_utc_offset=-6 -County "MO, Mississippi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901330.epw site_zip_code=63845 site_time_zone_utc_offset=-6 -County "MO, Moniteau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901350.epw site_zip_code=65018 site_time_zone_utc_offset=-6 -County "MO, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901370.epw site_zip_code=65275 site_time_zone_utc_offset=-6 -County "MO, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901390.epw site_zip_code=63361 site_time_zone_utc_offset=-6 -County "MO, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901410.epw site_zip_code=65037 site_time_zone_utc_offset=-6 -County "MO, New Madrid County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901430.epw site_zip_code=63873 site_time_zone_utc_offset=-6 -County "MO, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901450.epw site_zip_code=64850 site_time_zone_utc_offset=-6 -County "MO, Nodaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901470.epw site_zip_code=64468 site_time_zone_utc_offset=-6 -County "MO, Oregon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901490.epw site_zip_code=65606 site_time_zone_utc_offset=-6 -County "MO, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901510.epw site_zip_code=65051 site_time_zone_utc_offset=-6 -County "MO, Ozark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901530.epw site_zip_code=65655 site_time_zone_utc_offset=-6 -County "MO, Pemiscot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901550.epw site_zip_code=63830 site_time_zone_utc_offset=-6 -County "MO, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901570.epw site_zip_code=63775 site_time_zone_utc_offset=-6 -County "MO, Pettis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901590.epw site_zip_code=65301 site_time_zone_utc_offset=-6 -County "MO, Phelps County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901610.epw site_zip_code=65401 site_time_zone_utc_offset=-6 -County "MO, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901630.epw site_zip_code=63334 site_time_zone_utc_offset=-6 -County "MO, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901650.epw site_zip_code=64151 site_time_zone_utc_offset=-6 -County "MO, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901670.epw site_zip_code=65613 site_time_zone_utc_offset=-6 -County "MO, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901690.epw site_zip_code=65473 site_time_zone_utc_offset=-6 -County "MO, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901710.epw site_zip_code=63565 site_time_zone_utc_offset=-6 -County "MO, Ralls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901730.epw site_zip_code=63459 site_time_zone_utc_offset=-6 -County "MO, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901750.epw site_zip_code=65270 site_time_zone_utc_offset=-6 -County "MO, Ray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901770.epw site_zip_code=64085 site_time_zone_utc_offset=-6 -County "MO, Reynolds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901790.epw site_zip_code=63638 site_time_zone_utc_offset=-6 -County "MO, Ripley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901810.epw site_zip_code=63935 site_time_zone_utc_offset=-6 -County "MO, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901950.epw site_zip_code=65340 site_time_zone_utc_offset=-6 -County "MO, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901970.epw site_zip_code=63548 site_time_zone_utc_offset=-6 -County "MO, Scotland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901990.epw site_zip_code=63555 site_time_zone_utc_offset=-6 -County "MO, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902010.epw site_zip_code=63801 site_time_zone_utc_offset=-6 -County "MO, Shannon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902030.epw site_zip_code=65588 site_time_zone_utc_offset=-6 -County "MO, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902050.epw site_zip_code=63468 site_time_zone_utc_offset=-6 -County "MO, St. Charles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901830.epw site_zip_code=63376 site_time_zone_utc_offset=-6 -County "MO, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901850.epw site_zip_code=64776 site_time_zone_utc_offset=-6 -County "MO, St. Francois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901870.epw site_zip_code=63640 site_time_zone_utc_offset=-6 -County "MO, St. Louis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901890.epw site_zip_code=63021 site_time_zone_utc_offset=-6 -County "MO, St. Louis city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2905100.epw site_zip_code=63116 site_time_zone_utc_offset=-6 -County "MO, Ste. Genevieve County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901860.epw site_zip_code=63670 site_time_zone_utc_offset=-6 -County "MO, Stoddard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902070.epw site_zip_code=63841 site_time_zone_utc_offset=-6 -County "MO, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902090.epw site_zip_code=65737 site_time_zone_utc_offset=-6 -County "MO, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902110.epw site_zip_code=63556 site_time_zone_utc_offset=-6 -County "MO, Taney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902130.epw site_zip_code=65616 site_time_zone_utc_offset=-6 -County "MO, Texas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902150.epw site_zip_code=65483 site_time_zone_utc_offset=-6 -County "MO, Vernon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902170.epw site_zip_code=64772 site_time_zone_utc_offset=-6 -County "MO, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902190.epw site_zip_code=63383 site_time_zone_utc_offset=-6 -County "MO, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902210.epw site_zip_code=63664 site_time_zone_utc_offset=-6 -County "MO, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902230.epw site_zip_code=63957 site_time_zone_utc_offset=-6 -County "MO, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902250.epw site_zip_code=65706 site_time_zone_utc_offset=-6 -County "MO, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902270.epw site_zip_code=64456 site_time_zone_utc_offset=-6 -County "MO, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902290.epw site_zip_code=65711 site_time_zone_utc_offset=-6 -County "MS, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800010.epw site_zip_code=39120 site_time_zone_utc_offset=-6 -County "MS, Alcorn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800030.epw site_zip_code=38834 site_time_zone_utc_offset=-6 -County "MS, Amite County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800050.epw site_zip_code=39645 site_time_zone_utc_offset=-6 -County "MS, Attala County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800070.epw site_zip_code=39090 site_time_zone_utc_offset=-6 -County "MS, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800090.epw site_zip_code=38603 site_time_zone_utc_offset=-6 -County "MS, Bolivar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800110.epw site_zip_code=38732 site_time_zone_utc_offset=-6 -County "MS, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800130.epw site_zip_code=38916 site_time_zone_utc_offset=-6 -County "MS, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800150.epw site_zip_code=38917 site_time_zone_utc_offset=-6 -County "MS, Chickasaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800170.epw site_zip_code=38851 site_time_zone_utc_offset=-6 -County "MS, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800190.epw site_zip_code=39735 site_time_zone_utc_offset=-6 -County "MS, Claiborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800210.epw site_zip_code=39150 site_time_zone_utc_offset=-6 -County "MS, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800230.epw site_zip_code=39355 site_time_zone_utc_offset=-6 -County "MS, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800250.epw site_zip_code=39773 site_time_zone_utc_offset=-6 -County "MS, Coahoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800270.epw site_zip_code=38614 site_time_zone_utc_offset=-6 -County "MS, Copiah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800290.epw site_zip_code=39059 site_time_zone_utc_offset=-6 -County "MS, Covington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800310.epw site_zip_code=39428 site_time_zone_utc_offset=-6 -County "MS, DeSoto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800330.epw site_zip_code=38654 site_time_zone_utc_offset=-6 -County "MS, Forrest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800350.epw site_zip_code=39401 site_time_zone_utc_offset=-6 -County "MS, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800370.epw site_zip_code=39653 site_time_zone_utc_offset=-6 -County "MS, George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800390.epw site_zip_code=39452 site_time_zone_utc_offset=-6 -County "MS, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800410.epw site_zip_code=39451 site_time_zone_utc_offset=-6 -County "MS, Grenada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800430.epw site_zip_code=38901 site_time_zone_utc_offset=-6 -County "MS, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800450.epw site_zip_code=39520 site_time_zone_utc_offset=-6 -County "MS, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800470.epw site_zip_code=39503 site_time_zone_utc_offset=-6 -County "MS, Hinds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800490.epw site_zip_code=39209 site_time_zone_utc_offset=-6 -County "MS, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800510.epw site_zip_code=39095 site_time_zone_utc_offset=-6 -County "MS, Humphreys County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800530.epw site_zip_code=39038 site_time_zone_utc_offset=-6 -County "MS, Issaquena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800550.epw site_zip_code=39159 site_time_zone_utc_offset=-6 -County "MS, Itawamba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800570.epw site_zip_code=38843 site_time_zone_utc_offset=-6 -County "MS, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800590.epw site_zip_code=39564 site_time_zone_utc_offset=-6 -County "MS, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800610.epw site_zip_code=39422 site_time_zone_utc_offset=-6 -County "MS, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800630.epw site_zip_code=39069 site_time_zone_utc_offset=-6 -County "MS, Jefferson Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800650.epw site_zip_code=39474 site_time_zone_utc_offset=-6 -County "MS, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800670.epw site_zip_code=39443 site_time_zone_utc_offset=-6 -County "MS, Kemper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800690.epw site_zip_code=39328 site_time_zone_utc_offset=-6 -County "MS, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800710.epw site_zip_code=38655 site_time_zone_utc_offset=-6 -County "MS, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800730.epw site_zip_code=39402 site_time_zone_utc_offset=-6 -County "MS, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800750.epw site_zip_code=39301 site_time_zone_utc_offset=-6 -County "MS, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800770.epw site_zip_code=39654 site_time_zone_utc_offset=-6 -County "MS, Leake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800790.epw site_zip_code=39051 site_time_zone_utc_offset=-6 -County "MS, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800810.epw site_zip_code=38801 site_time_zone_utc_offset=-6 -County "MS, Leflore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800830.epw site_zip_code=38930 site_time_zone_utc_offset=-6 -County "MS, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800850.epw site_zip_code=39601 site_time_zone_utc_offset=-6 -County "MS, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800870.epw site_zip_code=39702 site_time_zone_utc_offset=-6 -County "MS, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800890.epw site_zip_code=39110 site_time_zone_utc_offset=-6 -County "MS, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800910.epw site_zip_code=39429 site_time_zone_utc_offset=-6 -County "MS, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800930.epw site_zip_code=38611 site_time_zone_utc_offset=-6 -County "MS, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800950.epw site_zip_code=38821 site_time_zone_utc_offset=-6 -County "MS, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800970.epw site_zip_code=38967 site_time_zone_utc_offset=-6 -County "MS, Neshoba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800990.epw site_zip_code=39350 site_time_zone_utc_offset=-6 -County "MS, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801010.epw site_zip_code=39345 site_time_zone_utc_offset=-6 -County "MS, Noxubee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801030.epw site_zip_code=39341 site_time_zone_utc_offset=-6 -County "MS, Oktibbeha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801050.epw site_zip_code=39759 site_time_zone_utc_offset=-6 -County "MS, Panola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801070.epw site_zip_code=38606 site_time_zone_utc_offset=-6 -County "MS, Pearl River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801090.epw site_zip_code=39466 site_time_zone_utc_offset=-6 -County "MS, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801110.epw site_zip_code=39476 site_time_zone_utc_offset=-6 -County "MS, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801130.epw site_zip_code=39648 site_time_zone_utc_offset=-6 -County "MS, Pontotoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801150.epw site_zip_code=38863 site_time_zone_utc_offset=-6 -County "MS, Prentiss County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801170.epw site_zip_code=38829 site_time_zone_utc_offset=-6 -County "MS, Quitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801190.epw site_zip_code=38646 site_time_zone_utc_offset=-6 -County "MS, Rankin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801210.epw site_zip_code=39047 site_time_zone_utc_offset=-6 -County "MS, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801230.epw site_zip_code=39074 site_time_zone_utc_offset=-6 -County "MS, Sharkey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801250.epw site_zip_code=39159 site_time_zone_utc_offset=-6 -County "MS, Simpson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801270.epw site_zip_code=39111 site_time_zone_utc_offset=-6 -County "MS, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801290.epw site_zip_code=39168 site_time_zone_utc_offset=-6 -County "MS, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801310.epw site_zip_code=39577 site_time_zone_utc_offset=-6 -County "MS, Sunflower County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801330.epw site_zip_code=38751 site_time_zone_utc_offset=-6 -County "MS, Tallahatchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801350.epw site_zip_code=38921 site_time_zone_utc_offset=-6 -County "MS, Tate County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801370.epw site_zip_code=38668 site_time_zone_utc_offset=-6 -County "MS, Tippah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801390.epw site_zip_code=38663 site_time_zone_utc_offset=-6 -County "MS, Tishomingo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801410.epw site_zip_code=38852 site_time_zone_utc_offset=-6 -County "MS, Tunica County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801430.epw site_zip_code=38676 site_time_zone_utc_offset=-6 -County "MS, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801450.epw site_zip_code=38652 site_time_zone_utc_offset=-6 -County "MS, Walthall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801470.epw site_zip_code=39667 site_time_zone_utc_offset=-6 -County "MS, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801490.epw site_zip_code=39180 site_time_zone_utc_offset=-6 -County "MS, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801510.epw site_zip_code=38701 site_time_zone_utc_offset=-6 -County "MS, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801530.epw site_zip_code=39367 site_time_zone_utc_offset=-6 -County "MS, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801550.epw site_zip_code=39744 site_time_zone_utc_offset=-6 -County "MS, Wilkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801570.epw site_zip_code=39669 site_time_zone_utc_offset=-6 -County "MS, Winston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801590.epw site_zip_code=39339 site_time_zone_utc_offset=-6 -County "MS, Yalobusha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801610.epw site_zip_code=38965 site_time_zone_utc_offset=-6 -County "MS, Yazoo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801630.epw site_zip_code=39194 site_time_zone_utc_offset=-6 -County "MT, Beaverhead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000010.epw site_zip_code=59725 site_time_zone_utc_offset=-7 -County "MT, Big Horn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000030.epw site_zip_code=59034 site_time_zone_utc_offset=-7 -County "MT, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000050.epw site_zip_code=59526 site_time_zone_utc_offset=-7 -County "MT, Broadwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000070.epw site_zip_code=59644 site_time_zone_utc_offset=-7 -County "MT, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000090.epw site_zip_code=59068 site_time_zone_utc_offset=-7 -County "MT, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000110.epw site_zip_code=59324 site_time_zone_utc_offset=-7 -County "MT, Cascade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000130.epw site_zip_code=59405 site_time_zone_utc_offset=-7 -County "MT, Chouteau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000150.epw site_zip_code=59442 site_time_zone_utc_offset=-7 -County "MT, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000170.epw site_zip_code=59301 site_time_zone_utc_offset=-7 -County "MT, Daniels County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000190.epw site_zip_code=59263 site_time_zone_utc_offset=-7 -County "MT, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000210.epw site_zip_code=59330 site_time_zone_utc_offset=-7 -County "MT, Deer Lodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000230.epw site_zip_code=59711 site_time_zone_utc_offset=-7 -County "MT, Fallon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000250.epw site_zip_code=59313 site_time_zone_utc_offset=-7 -County "MT, Fergus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000270.epw site_zip_code=59457 site_time_zone_utc_offset=-7 -County "MT, Flathead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000290.epw site_zip_code=59901 site_time_zone_utc_offset=-7 -County "MT, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000310.epw site_zip_code=59718 site_time_zone_utc_offset=-7 -County "MT, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000330.epw site_zip_code=59337 site_time_zone_utc_offset=-7 -County "MT, Glacier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000350.epw site_zip_code=59427 site_time_zone_utc_offset=-7 -County "MT, Golden Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000370.epw site_zip_code=59074 site_time_zone_utc_offset=-7 -County "MT, Granite County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000390.epw site_zip_code=59858 site_time_zone_utc_offset=-7 -County "MT, Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000410.epw site_zip_code=59501 site_time_zone_utc_offset=-7 -County "MT, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000430.epw site_zip_code=59634 site_time_zone_utc_offset=-7 -County "MT, Judith Basin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000450.epw site_zip_code=59479 site_time_zone_utc_offset=-7 -County "MT, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000470.epw site_zip_code=59860 site_time_zone_utc_offset=-7 -County "MT, Lewis and Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000490.epw site_zip_code=59601 site_time_zone_utc_offset=-7 -County "MT, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000510.epw site_zip_code=59522 site_time_zone_utc_offset=-7 -County "MT, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000530.epw site_zip_code=59923 site_time_zone_utc_offset=-7 -County "MT, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000570.epw site_zip_code=59729 site_time_zone_utc_offset=-7 -County "MT, McCone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000550.epw site_zip_code=59215 site_time_zone_utc_offset=-7 -County "MT, Meagher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000590.epw site_zip_code=59645 site_time_zone_utc_offset=-7 -County "MT, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000610.epw site_zip_code=59872 site_time_zone_utc_offset=-7 -County "MT, Missoula County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000630.epw site_zip_code=59801 site_time_zone_utc_offset=-7 -County "MT, Musselshell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000650.epw site_zip_code=59072 site_time_zone_utc_offset=-7 -County "MT, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000670.epw site_zip_code=59047 site_time_zone_utc_offset=-7 -County "MT, Petroleum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000690.epw site_zip_code=59087 site_time_zone_utc_offset=-7 -County "MT, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000710.epw site_zip_code=59538 site_time_zone_utc_offset=-7 -County "MT, Pondera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000730.epw site_zip_code=59425 site_time_zone_utc_offset=-7 -County "MT, Powder River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000750.epw site_zip_code=59317 site_time_zone_utc_offset=-7 -County "MT, Powell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000770.epw site_zip_code=59722 site_time_zone_utc_offset=-7 -County "MT, Prairie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000790.epw site_zip_code=59349 site_time_zone_utc_offset=-7 -County "MT, Ravalli County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000810.epw site_zip_code=59840 site_time_zone_utc_offset=-7 -County "MT, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000830.epw site_zip_code=59270 site_time_zone_utc_offset=-7 -County "MT, Roosevelt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000850.epw site_zip_code=59201 site_time_zone_utc_offset=-7 -County "MT, Rosebud County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000870.epw site_zip_code=59327 site_time_zone_utc_offset=-7 -County "MT, Sanders County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000890.epw site_zip_code=59859 site_time_zone_utc_offset=-7 -County "MT, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000910.epw site_zip_code=59254 site_time_zone_utc_offset=-7 -County "MT, Silver Bow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000930.epw site_zip_code=59701 site_time_zone_utc_offset=-7 -County "MT, Stillwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000950.epw site_zip_code=59019 site_time_zone_utc_offset=-7 -County "MT, Sweet Grass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000970.epw site_zip_code=59011 site_time_zone_utc_offset=-7 -County "MT, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000990.epw site_zip_code=59422 site_time_zone_utc_offset=-7 -County "MT, Toole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001010.epw site_zip_code=59474 site_time_zone_utc_offset=-7 -County "MT, Treasure County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001030.epw site_zip_code=59038 site_time_zone_utc_offset=-7 -County "MT, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001050.epw site_zip_code=59230 site_time_zone_utc_offset=-7 -County "MT, Wheatland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001070.epw site_zip_code=59036 site_time_zone_utc_offset=-7 -County "MT, Wibaux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001090.epw site_zip_code=59353 site_time_zone_utc_offset=-7 -County "MT, Yellowstone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001110.epw site_zip_code=59102 site_time_zone_utc_offset=-7 -County "NC, Alamance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700010.epw site_zip_code=27215 site_time_zone_utc_offset=-5 -County "NC, Alexander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700030.epw site_zip_code=28681 site_time_zone_utc_offset=-5 -County "NC, Alleghany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700050.epw site_zip_code=28675 site_time_zone_utc_offset=-5 -County "NC, Anson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700070.epw site_zip_code=28170 site_time_zone_utc_offset=-5 -County "NC, Ashe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700090.epw site_zip_code=28694 site_time_zone_utc_offset=-5 -County "NC, Avery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700110.epw site_zip_code=28657 site_time_zone_utc_offset=-5 -County "NC, Beaufort County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700130.epw site_zip_code=27889 site_time_zone_utc_offset=-5 -County "NC, Bertie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700150.epw site_zip_code=27983 site_time_zone_utc_offset=-5 -County "NC, Bladen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700170.epw site_zip_code=28337 site_time_zone_utc_offset=-5 -County "NC, Brunswick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700190.epw site_zip_code=28451 site_time_zone_utc_offset=-5 -County "NC, Buncombe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700210.epw site_zip_code=28806 site_time_zone_utc_offset=-5 -County "NC, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700230.epw site_zip_code=28655 site_time_zone_utc_offset=-5 -County "NC, Cabarrus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700250.epw site_zip_code=28027 site_time_zone_utc_offset=-5 -County "NC, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700270.epw site_zip_code=28645 site_time_zone_utc_offset=-5 -County "NC, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700290.epw site_zip_code=27921 site_time_zone_utc_offset=-5 -County "NC, Carteret County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700310.epw site_zip_code=28570 site_time_zone_utc_offset=-5 -County "NC, Caswell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700330.epw site_zip_code=27379 site_time_zone_utc_offset=-5 -County "NC, Catawba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700350.epw site_zip_code=28601 site_time_zone_utc_offset=-5 -County "NC, Chatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700370.epw site_zip_code=27312 site_time_zone_utc_offset=-5 -County "NC, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700390.epw site_zip_code=28906 site_time_zone_utc_offset=-5 -County "NC, Chowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700410.epw site_zip_code=27932 site_time_zone_utc_offset=-5 -County "NC, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700430.epw site_zip_code=28904 site_time_zone_utc_offset=-5 -County "NC, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700450.epw site_zip_code=28150 site_time_zone_utc_offset=-5 -County "NC, Columbus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700470.epw site_zip_code=28472 site_time_zone_utc_offset=-5 -County "NC, Craven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700490.epw site_zip_code=28562 site_time_zone_utc_offset=-5 -County "NC, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700510.epw site_zip_code=28314 site_time_zone_utc_offset=-5 -County "NC, Currituck County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700530.epw site_zip_code=27958 site_time_zone_utc_offset=-5 -County "NC, Dare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700550.epw site_zip_code=27949 site_time_zone_utc_offset=-5 -County "NC, Davidson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700570.epw site_zip_code=27360 site_time_zone_utc_offset=-5 -County "NC, Davie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700590.epw site_zip_code=27028 site_time_zone_utc_offset=-5 -County "NC, Duplin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700610.epw site_zip_code=28466 site_time_zone_utc_offset=-5 -County "NC, Durham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700630.epw site_zip_code=27703 site_time_zone_utc_offset=-5 -County "NC, Edgecombe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700650.epw site_zip_code=27801 site_time_zone_utc_offset=-5 -County "NC, Forsyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700670.epw site_zip_code=27284 site_time_zone_utc_offset=-5 -County "NC, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700690.epw site_zip_code=27549 site_time_zone_utc_offset=-5 -County "NC, Gaston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700710.epw site_zip_code=28054 site_time_zone_utc_offset=-5 -County "NC, Gates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700730.epw site_zip_code=27937 site_time_zone_utc_offset=-5 -County "NC, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700750.epw site_zip_code=28771 site_time_zone_utc_offset=-5 -County "NC, Granville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700770.epw site_zip_code=27565 site_time_zone_utc_offset=-5 -County "NC, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700790.epw site_zip_code=28580 site_time_zone_utc_offset=-5 -County "NC, Guilford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700810.epw site_zip_code=27406 site_time_zone_utc_offset=-5 -County "NC, Halifax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700830.epw site_zip_code=27870 site_time_zone_utc_offset=-5 -County "NC, Harnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700850.epw site_zip_code=27546 site_time_zone_utc_offset=-5 -County "NC, Haywood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700870.epw site_zip_code=28786 site_time_zone_utc_offset=-5 -County "NC, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700890.epw site_zip_code=28792 site_time_zone_utc_offset=-5 -County "NC, Hertford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700910.epw site_zip_code=27910 site_time_zone_utc_offset=-5 -County "NC, Hoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700930.epw site_zip_code=28376 site_time_zone_utc_offset=-5 -County "NC, Hyde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700950.epw site_zip_code=27824 site_time_zone_utc_offset=-5 -County "NC, Iredell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700970.epw site_zip_code=28117 site_time_zone_utc_offset=-5 -County "NC, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700990.epw site_zip_code=28779 site_time_zone_utc_offset=-5 -County "NC, Johnston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701010.epw site_zip_code=27520 site_time_zone_utc_offset=-5 -County "NC, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701030.epw site_zip_code=28585 site_time_zone_utc_offset=-5 -County "NC, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701050.epw site_zip_code=27330 site_time_zone_utc_offset=-5 -County "NC, Lenoir County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701070.epw site_zip_code=28501 site_time_zone_utc_offset=-5 -County "NC, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701090.epw site_zip_code=28092 site_time_zone_utc_offset=-5 -County "NC, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701130.epw site_zip_code=28734 site_time_zone_utc_offset=-5 -County "NC, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701150.epw site_zip_code=28753 site_time_zone_utc_offset=-5 -County "NC, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701170.epw site_zip_code=27892 site_time_zone_utc_offset=-5 -County "NC, McDowell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701110.epw site_zip_code=28752 site_time_zone_utc_offset=-5 -County "NC, Mecklenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701190.epw site_zip_code=28269 site_time_zone_utc_offset=-5 -County "NC, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701210.epw site_zip_code=28777 site_time_zone_utc_offset=-5 -County "NC, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701230.epw site_zip_code=27371 site_time_zone_utc_offset=-5 -County "NC, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701250.epw site_zip_code=28374 site_time_zone_utc_offset=-5 -County "NC, Nash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701270.epw site_zip_code=27804 site_time_zone_utc_offset=-5 -County "NC, New Hanover County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701290.epw site_zip_code=28412 site_time_zone_utc_offset=-5 -County "NC, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701310.epw site_zip_code=27831 site_time_zone_utc_offset=-5 -County "NC, Onslow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701330.epw site_zip_code=28540 site_time_zone_utc_offset=-5 -County "NC, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701350.epw site_zip_code=27514 site_time_zone_utc_offset=-5 -County "NC, Pamlico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701370.epw site_zip_code=28571 site_time_zone_utc_offset=-5 -County "NC, Pasquotank County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701390.epw site_zip_code=27909 site_time_zone_utc_offset=-5 -County "NC, Pender County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701410.epw site_zip_code=28443 site_time_zone_utc_offset=-5 -County "NC, Perquimans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701430.epw site_zip_code=27944 site_time_zone_utc_offset=-5 -County "NC, Person County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701450.epw site_zip_code=27574 site_time_zone_utc_offset=-5 -County "NC, Pitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701470.epw site_zip_code=27858 site_time_zone_utc_offset=-5 -County "NC, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701490.epw site_zip_code=28782 site_time_zone_utc_offset=-5 -County "NC, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701510.epw site_zip_code=27205 site_time_zone_utc_offset=-5 -County "NC, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701530.epw site_zip_code=28379 site_time_zone_utc_offset=-5 -County "NC, Robeson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701550.epw site_zip_code=28358 site_time_zone_utc_offset=-5 -County "NC, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701570.epw site_zip_code=27320 site_time_zone_utc_offset=-5 -County "NC, Rowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701590.epw site_zip_code=28146 site_time_zone_utc_offset=-5 -County "NC, Rutherford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701610.epw site_zip_code=28043 site_time_zone_utc_offset=-5 -County "NC, Sampson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701630.epw site_zip_code=28328 site_time_zone_utc_offset=-5 -County "NC, Scotland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701650.epw site_zip_code=28352 site_time_zone_utc_offset=-5 -County "NC, Stanly County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701670.epw site_zip_code=28001 site_time_zone_utc_offset=-5 -County "NC, Stokes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701690.epw site_zip_code=27021 site_time_zone_utc_offset=-5 -County "NC, Surry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701710.epw site_zip_code=27030 site_time_zone_utc_offset=-5 -County "NC, Swain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701730.epw site_zip_code=28713 site_time_zone_utc_offset=-5 -County "NC, Transylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701750.epw site_zip_code=28712 site_time_zone_utc_offset=-5 -County "NC, Tyrrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701770.epw site_zip_code=27925 site_time_zone_utc_offset=-5 -County "NC, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701790.epw site_zip_code=28173 site_time_zone_utc_offset=-5 -County "NC, Vance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701810.epw site_zip_code=27537 site_time_zone_utc_offset=-5 -County "NC, Wake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701830.epw site_zip_code=27610 site_time_zone_utc_offset=-5 -County "NC, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701850.epw site_zip_code=27589 site_time_zone_utc_offset=-5 -County "NC, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701870.epw site_zip_code=27962 site_time_zone_utc_offset=-5 -County "NC, Watauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701890.epw site_zip_code=28607 site_time_zone_utc_offset=-5 -County "NC, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701910.epw site_zip_code=27530 site_time_zone_utc_offset=-5 -County "NC, Wilkes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701930.epw site_zip_code=28659 site_time_zone_utc_offset=-5 -County "NC, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701950.epw site_zip_code=27893 site_time_zone_utc_offset=-5 -County "NC, Yadkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701970.epw site_zip_code=27055 site_time_zone_utc_offset=-5 -County "NC, Yancey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701990.epw site_zip_code=28714 site_time_zone_utc_offset=-5 -County "ND, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800010.epw site_zip_code=58639 site_time_zone_utc_offset=-7 -County "ND, Barnes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800030.epw site_zip_code=58072 site_time_zone_utc_offset=-6 -County "ND, Benson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800050.epw site_zip_code=58348 site_time_zone_utc_offset=-6 -County "ND, Billings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800070.epw site_zip_code=58622 site_time_zone_utc_offset=-7 -County "ND, Bottineau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800090.epw site_zip_code=58318 site_time_zone_utc_offset=-6 -County "ND, Bowman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800110.epw site_zip_code=58623 site_time_zone_utc_offset=-7 -County "ND, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800130.epw site_zip_code=58773 site_time_zone_utc_offset=-6 -County "ND, Burleigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800150.epw site_zip_code=58503 site_time_zone_utc_offset=-6 -County "ND, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800170.epw site_zip_code=58103 site_time_zone_utc_offset=-6 -County "ND, Cavalier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800190.epw site_zip_code=58249 site_time_zone_utc_offset=-6 -County "ND, Dickey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800210.epw site_zip_code=58474 site_time_zone_utc_offset=-6 -County "ND, Divide County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800230.epw site_zip_code=58730 site_time_zone_utc_offset=-6 -County "ND, Dunn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800250.epw site_zip_code=58640 site_time_zone_utc_offset=-7 -County "ND, Eddy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800270.epw site_zip_code=58356 site_time_zone_utc_offset=-6 -County "ND, Emmons County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800290.epw site_zip_code=58552 site_time_zone_utc_offset=-6 -County "ND, Foster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800310.epw site_zip_code=58421 site_time_zone_utc_offset=-6 -County "ND, Golden Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800330.epw site_zip_code=58621 site_time_zone_utc_offset=-7 -County "ND, Grand Forks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800350.epw site_zip_code=58201 site_time_zone_utc_offset=-6 -County "ND, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800370.epw site_zip_code=58533 site_time_zone_utc_offset=-7 -County "ND, Griggs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800390.epw site_zip_code=58425 site_time_zone_utc_offset=-6 -County "ND, Hettinger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800410.epw site_zip_code=58646 site_time_zone_utc_offset=-7 -County "ND, Kidder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800430.epw site_zip_code=58482 site_time_zone_utc_offset=-6 -County "ND, LaMoure County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800450.epw site_zip_code=58458 site_time_zone_utc_offset=-6 -County "ND, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800470.epw site_zip_code=58561 site_time_zone_utc_offset=-6 -County "ND, McHenry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800490.epw site_zip_code=58790 site_time_zone_utc_offset=-6 -County "ND, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800510.epw site_zip_code=58495 site_time_zone_utc_offset=-6 -County "ND, McKenzie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800530.epw site_zip_code=58854 site_time_zone_utc_offset=-7 -County "ND, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800550.epw site_zip_code=58540 site_time_zone_utc_offset=-6 -County "ND, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800570.epw site_zip_code=58545 site_time_zone_utc_offset=-6 -County "ND, Morton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800590.epw site_zip_code=58554 site_time_zone_utc_offset=-6 -County "ND, Mountrail County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800610.epw site_zip_code=58763 site_time_zone_utc_offset=-6 -County "ND, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800630.epw site_zip_code=58344 site_time_zone_utc_offset=-6 -County "ND, Oliver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800650.epw site_zip_code=58530 site_time_zone_utc_offset=-6 -County "ND, Pembina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800670.epw site_zip_code=58220 site_time_zone_utc_offset=-6 -County "ND, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800690.epw site_zip_code=58368 site_time_zone_utc_offset=-6 -County "ND, Ramsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800710.epw site_zip_code=58301 site_time_zone_utc_offset=-6 -County "ND, Ransom County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800730.epw site_zip_code=58054 site_time_zone_utc_offset=-6 -County "ND, Renville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800750.epw site_zip_code=58761 site_time_zone_utc_offset=-6 -County "ND, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800770.epw site_zip_code=58075 site_time_zone_utc_offset=-6 -County "ND, Rolette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800790.epw site_zip_code=58367 site_time_zone_utc_offset=-6 -County "ND, Sargent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800810.epw site_zip_code=58060 site_time_zone_utc_offset=-6 -County "ND, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800830.epw site_zip_code=58463 site_time_zone_utc_offset=-6 -County "ND, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800850.epw site_zip_code=58538 site_time_zone_utc_offset=-6 -County "ND, Slope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800870.epw site_zip_code=58620 site_time_zone_utc_offset=-7 -County "ND, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800890.epw site_zip_code=58601 site_time_zone_utc_offset=-7 -County "ND, Steele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800910.epw site_zip_code=58230 site_time_zone_utc_offset=-6 -County "ND, Stutsman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800930.epw site_zip_code=58401 site_time_zone_utc_offset=-6 -County "ND, Towner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800950.epw site_zip_code=58324 site_time_zone_utc_offset=-6 -County "ND, Traill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800970.epw site_zip_code=58257 site_time_zone_utc_offset=-6 -County "ND, Walsh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800990.epw site_zip_code=58237 site_time_zone_utc_offset=-6 -County "ND, Ward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801010.epw site_zip_code=58701 site_time_zone_utc_offset=-6 -County "ND, Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801030.epw site_zip_code=58341 site_time_zone_utc_offset=-6 -County "ND, Williams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801050.epw site_zip_code=58801 site_time_zone_utc_offset=-6 -County "NE, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100010.epw site_zip_code=68901 site_time_zone_utc_offset=-6 -County "NE, Antelope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100030.epw site_zip_code=68756 site_time_zone_utc_offset=-6 -County "NE, Arthur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100050.epw site_zip_code=69121 site_time_zone_utc_offset=-7 -County "NE, Banner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100070.epw site_zip_code=69345 site_time_zone_utc_offset=-7 -County "NE, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100090.epw site_zip_code=68833 site_time_zone_utc_offset=-6 -County "NE, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100110.epw site_zip_code=68620 site_time_zone_utc_offset=-6 -County "NE, Box Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100130.epw site_zip_code=69301 site_time_zone_utc_offset=-7 -County "NE, Boyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100150.epw site_zip_code=68777 site_time_zone_utc_offset=-6 -County "NE, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100170.epw site_zip_code=69210 site_time_zone_utc_offset=-6 -County "NE, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100190.epw site_zip_code=68845 site_time_zone_utc_offset=-6 -County "NE, Burt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100210.epw site_zip_code=68061 site_time_zone_utc_offset=-6 -County "NE, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100230.epw site_zip_code=68632 site_time_zone_utc_offset=-6 -County "NE, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100250.epw site_zip_code=68048 site_time_zone_utc_offset=-6 -County "NE, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100270.epw site_zip_code=68739 site_time_zone_utc_offset=-6 -County "NE, Chase County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100290.epw site_zip_code=69033 site_time_zone_utc_offset=-7 -County "NE, Cherry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100310.epw site_zip_code=69201 site_time_zone_utc_offset=-6 -County "NE, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100330.epw site_zip_code=69162 site_time_zone_utc_offset=-7 -County "NE, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100350.epw site_zip_code=68979 site_time_zone_utc_offset=-6 -County "NE, Colfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100370.epw site_zip_code=68661 site_time_zone_utc_offset=-6 -County "NE, Cuming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100390.epw site_zip_code=68788 site_time_zone_utc_offset=-6 -County "NE, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100410.epw site_zip_code=68822 site_time_zone_utc_offset=-6 -County "NE, Dakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100430.epw site_zip_code=68776 site_time_zone_utc_offset=-6 -County "NE, Dawes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100450.epw site_zip_code=69337 site_time_zone_utc_offset=-7 -County "NE, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100470.epw site_zip_code=68850 site_time_zone_utc_offset=-6 -County "NE, Deuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100490.epw site_zip_code=69129 site_time_zone_utc_offset=-7 -County "NE, Dixon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100510.epw site_zip_code=68770 site_time_zone_utc_offset=-6 -County "NE, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100530.epw site_zip_code=68025 site_time_zone_utc_offset=-6 -County "NE, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100550.epw site_zip_code=68022 site_time_zone_utc_offset=-6 -County "NE, Dundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100570.epw site_zip_code=69021 site_time_zone_utc_offset=-7 -County "NE, Fillmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100590.epw site_zip_code=68361 site_time_zone_utc_offset=-6 -County "NE, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100610.epw site_zip_code=68939 site_time_zone_utc_offset=-6 -County "NE, Frontier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100630.epw site_zip_code=69025 site_time_zone_utc_offset=-6 -County "NE, Furnas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100650.epw site_zip_code=69022 site_time_zone_utc_offset=-6 -County "NE, Gage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100670.epw site_zip_code=68310 site_time_zone_utc_offset=-6 -County "NE, Garden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100690.epw site_zip_code=69154 site_time_zone_utc_offset=-7 -County "NE, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100710.epw site_zip_code=68823 site_time_zone_utc_offset=-6 -County "NE, Gosper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100730.epw site_zip_code=68937 site_time_zone_utc_offset=-6 -County "NE, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100750.epw site_zip_code=69350 site_time_zone_utc_offset=-7 -County "NE, Greeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100770.epw site_zip_code=68665 site_time_zone_utc_offset=-6 -County "NE, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100790.epw site_zip_code=68801 site_time_zone_utc_offset=-6 -County "NE, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100810.epw site_zip_code=68818 site_time_zone_utc_offset=-6 -County "NE, Harlan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100830.epw site_zip_code=68920 site_time_zone_utc_offset=-6 -County "NE, Hayes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100850.epw site_zip_code=69032 site_time_zone_utc_offset=-6 -County "NE, Hitchcock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100870.epw site_zip_code=69024 site_time_zone_utc_offset=-6 -County "NE, Holt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100890.epw site_zip_code=68763 site_time_zone_utc_offset=-6 -County "NE, Hooker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100910.epw site_zip_code=69152 site_time_zone_utc_offset=-7 -County "NE, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100930.epw site_zip_code=68873 site_time_zone_utc_offset=-6 -County "NE, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100950.epw site_zip_code=68352 site_time_zone_utc_offset=-6 -County "NE, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100970.epw site_zip_code=68450 site_time_zone_utc_offset=-6 -County "NE, Kearney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100990.epw site_zip_code=68959 site_time_zone_utc_offset=-6 -County "NE, Keith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101010.epw site_zip_code=69153 site_time_zone_utc_offset=-7 -County "NE, Keya Paha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101030.epw site_zip_code=68778 site_time_zone_utc_offset=-6 -County "NE, Kimball County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101050.epw site_zip_code=69145 site_time_zone_utc_offset=-7 -County "NE, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101070.epw site_zip_code=68718 site_time_zone_utc_offset=-6 -County "NE, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101090.epw site_zip_code=68516 site_time_zone_utc_offset=-6 -County "NE, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101110.epw site_zip_code=69101 site_time_zone_utc_offset=-6 -County "NE, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101130.epw site_zip_code=69163 site_time_zone_utc_offset=-6 -County "NE, Loup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101150.epw site_zip_code=68823 site_time_zone_utc_offset=-6 -County "NE, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101190.epw site_zip_code=68701 site_time_zone_utc_offset=-6 -County "NE, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101170.epw site_zip_code=69167 site_time_zone_utc_offset=-6 -County "NE, Merrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101210.epw site_zip_code=68826 site_time_zone_utc_offset=-6 -County "NE, Morrill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101230.epw site_zip_code=69336 site_time_zone_utc_offset=-7 -County "NE, Nance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101250.epw site_zip_code=68638 site_time_zone_utc_offset=-6 -County "NE, Nemaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101270.epw site_zip_code=68305 site_time_zone_utc_offset=-6 -County "NE, Nuckolls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101290.epw site_zip_code=68978 site_time_zone_utc_offset=-6 -County "NE, Otoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101310.epw site_zip_code=68410 site_time_zone_utc_offset=-6 -County "NE, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101330.epw site_zip_code=68420 site_time_zone_utc_offset=-6 -County "NE, Perkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101350.epw site_zip_code=69140 site_time_zone_utc_offset=-7 -County "NE, Phelps County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101370.epw site_zip_code=68949 site_time_zone_utc_offset=-6 -County "NE, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101390.epw site_zip_code=68767 site_time_zone_utc_offset=-6 -County "NE, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101410.epw site_zip_code=68601 site_time_zone_utc_offset=-6 -County "NE, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101430.epw site_zip_code=68666 site_time_zone_utc_offset=-6 -County "NE, Red Willow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101450.epw site_zip_code=69001 site_time_zone_utc_offset=-6 -County "NE, Richardson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101470.epw site_zip_code=68355 site_time_zone_utc_offset=-6 -County "NE, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101490.epw site_zip_code=68714 site_time_zone_utc_offset=-6 -County "NE, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101510.epw site_zip_code=68333 site_time_zone_utc_offset=-6 -County "NE, Sarpy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101530.epw site_zip_code=68046 site_time_zone_utc_offset=-6 -County "NE, Saunders County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101550.epw site_zip_code=68066 site_time_zone_utc_offset=-6 -County "NE, Scotts Bluff County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101570.epw site_zip_code=69361 site_time_zone_utc_offset=-7 -County "NE, Seward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101590.epw site_zip_code=68434 site_time_zone_utc_offset=-6 -County "NE, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101610.epw site_zip_code=69343 site_time_zone_utc_offset=-7 -County "NE, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101630.epw site_zip_code=68853 site_time_zone_utc_offset=-6 -County "NE, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101650.epw site_zip_code=69346 site_time_zone_utc_offset=-7 -County "NE, Stanton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101670.epw site_zip_code=68779 site_time_zone_utc_offset=-6 -County "NE, Thayer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101690.epw site_zip_code=68370 site_time_zone_utc_offset=-6 -County "NE, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101710.epw site_zip_code=69166 site_time_zone_utc_offset=-6 -County "NE, Thurston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101730.epw site_zip_code=68071 site_time_zone_utc_offset=-6 -County "NE, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101750.epw site_zip_code=68862 site_time_zone_utc_offset=-6 -County "NE, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101770.epw site_zip_code=68008 site_time_zone_utc_offset=-6 -County "NE, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101790.epw site_zip_code=68787 site_time_zone_utc_offset=-6 -County "NE, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101810.epw site_zip_code=68970 site_time_zone_utc_offset=-6 -County "NE, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101830.epw site_zip_code=68637 site_time_zone_utc_offset=-6 -County "NE, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101850.epw site_zip_code=68467 site_time_zone_utc_offset=-6 -County "NH, Belknap County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300010.epw site_zip_code=03246 site_time_zone_utc_offset=-5 -County "NH, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300030.epw site_zip_code=03894 site_time_zone_utc_offset=-5 -County "NH, Cheshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300050.epw site_zip_code=03431 site_time_zone_utc_offset=-5 -County "NH, Coos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300070.epw site_zip_code=03570 site_time_zone_utc_offset=-5 -County "NH, Grafton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300090.epw site_zip_code=03766 site_time_zone_utc_offset=-5 -County "NH, Hillsborough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300110.epw site_zip_code=03103 site_time_zone_utc_offset=-5 -County "NH, Merrimack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300130.epw site_zip_code=03301 site_time_zone_utc_offset=-5 -County "NH, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300150.epw site_zip_code=03038 site_time_zone_utc_offset=-5 -County "NH, Strafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300170.epw site_zip_code=03820 site_time_zone_utc_offset=-5 -County "NH, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300190.epw site_zip_code=03743 site_time_zone_utc_offset=-5 -County "NJ, Atlantic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400010.epw site_zip_code=08401 site_time_zone_utc_offset=-5 -County "NJ, Bergen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400030.epw site_zip_code=07410 site_time_zone_utc_offset=-5 -County "NJ, Burlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400050.epw site_zip_code=08054 site_time_zone_utc_offset=-5 -County "NJ, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400070.epw site_zip_code=08021 site_time_zone_utc_offset=-5 -County "NJ, Cape May County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400090.epw site_zip_code=08260 site_time_zone_utc_offset=-5 -County "NJ, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400110.epw site_zip_code=08332 site_time_zone_utc_offset=-5 -County "NJ, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400130.epw site_zip_code=07111 site_time_zone_utc_offset=-5 -County "NJ, Gloucester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400150.epw site_zip_code=08096 site_time_zone_utc_offset=-5 -County "NJ, Hudson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400170.epw site_zip_code=07302 site_time_zone_utc_offset=-5 -County "NJ, Hunterdon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400190.epw site_zip_code=08822 site_time_zone_utc_offset=-5 -County "NJ, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400210.epw site_zip_code=08618 site_time_zone_utc_offset=-5 -County "NJ, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400230.epw site_zip_code=08831 site_time_zone_utc_offset=-5 -County "NJ, Monmouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400250.epw site_zip_code=07728 site_time_zone_utc_offset=-5 -County "NJ, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400270.epw site_zip_code=07960 site_time_zone_utc_offset=-5 -County "NJ, Ocean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400290.epw site_zip_code=08701 site_time_zone_utc_offset=-5 -County "NJ, Passaic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400310.epw site_zip_code=07055 site_time_zone_utc_offset=-5 -County "NJ, Salem County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400330.epw site_zip_code=08069 site_time_zone_utc_offset=-5 -County "NJ, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400350.epw site_zip_code=08873 site_time_zone_utc_offset=-5 -County "NJ, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400370.epw site_zip_code=07860 site_time_zone_utc_offset=-5 -County "NJ, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400390.epw site_zip_code=07083 site_time_zone_utc_offset=-5 -County "NJ, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400410.epw site_zip_code=08865 site_time_zone_utc_offset=-5 -County "NM, Bernalillo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500010.epw site_zip_code=87111 site_time_zone_utc_offset=-7 -County "NM, Catron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500030.epw site_zip_code=87829 site_time_zone_utc_offset=-7 -County "NM, Chaves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500050.epw site_zip_code=88203 site_time_zone_utc_offset=-7 -County "NM, Cibola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500060.epw site_zip_code=87020 site_time_zone_utc_offset=-7 -County "NM, Colfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500070.epw site_zip_code=87740 site_time_zone_utc_offset=-7 -County "NM, Curry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500090.epw site_zip_code=88101 site_time_zone_utc_offset=-7 -County "NM, De Baca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500110.epw site_zip_code=88119 site_time_zone_utc_offset=-7 -County "NM, Dona Ana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500130.epw site_zip_code=88001 site_time_zone_utc_offset=-7 -County "NM, Eddy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500150.epw site_zip_code=88220 site_time_zone_utc_offset=-7 -County "NM, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500170.epw site_zip_code=88061 site_time_zone_utc_offset=-7 -County "NM, Guadalupe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500190.epw site_zip_code=88435 site_time_zone_utc_offset=-7 -County "NM, Harding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500210.epw site_zip_code=87743 site_time_zone_utc_offset=-7 -County "NM, Hidalgo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500230.epw site_zip_code=88045 site_time_zone_utc_offset=-7 -County "NM, Lea County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500250.epw site_zip_code=88240 site_time_zone_utc_offset=-7 -County "NM, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500270.epw site_zip_code=88355 site_time_zone_utc_offset=-7 -County "NM, Los Alamos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500280.epw site_zip_code=87544 site_time_zone_utc_offset=-7 -County "NM, Luna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500290.epw site_zip_code=88030 site_time_zone_utc_offset=-7 -County "NM, McKinley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500310.epw site_zip_code=87301 site_time_zone_utc_offset=-7 -County "NM, Mora County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500330.epw site_zip_code=87722 site_time_zone_utc_offset=-7 -County "NM, Otero County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500350.epw site_zip_code=88310 site_time_zone_utc_offset=-7 -County "NM, Quay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500370.epw site_zip_code=88401 site_time_zone_utc_offset=-7 -County "NM, Rio Arriba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500390.epw site_zip_code=87532 site_time_zone_utc_offset=-7 -County "NM, Roosevelt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500410.epw site_zip_code=88130 site_time_zone_utc_offset=-7 -County "NM, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500450.epw site_zip_code=87401 site_time_zone_utc_offset=-7 -County "NM, San Miguel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500470.epw site_zip_code=87701 site_time_zone_utc_offset=-7 -County "NM, Sandoval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500430.epw site_zip_code=87124 site_time_zone_utc_offset=-7 -County "NM, Santa Fe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500490.epw site_zip_code=87507 site_time_zone_utc_offset=-7 -County "NM, Sierra County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500510.epw site_zip_code=87901 site_time_zone_utc_offset=-7 -County "NM, Socorro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500530.epw site_zip_code=87801 site_time_zone_utc_offset=-7 -County "NM, Taos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500550.epw site_zip_code=87571 site_time_zone_utc_offset=-7 -County "NM, Torrance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500570.epw site_zip_code=87035 site_time_zone_utc_offset=-7 -County "NM, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500590.epw site_zip_code=88415 site_time_zone_utc_offset=-7 -County "NM, Valencia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500610.epw site_zip_code=87031 site_time_zone_utc_offset=-7 -County "NV, Carson City" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3205100.epw site_zip_code=89701 site_time_zone_utc_offset=-8 -County "NV, Churchill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200010.epw site_zip_code=89406 site_time_zone_utc_offset=-8 -County "NV, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200030.epw site_zip_code=89052 site_time_zone_utc_offset=-8 -County "NV, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200050.epw site_zip_code=89460 site_time_zone_utc_offset=-8 -County "NV, Elko County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200070.epw site_zip_code=89801 site_time_zone_utc_offset=-8 -County "NV, Esmeralda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200090.epw site_zip_code=89010 site_time_zone_utc_offset=-8 -County "NV, Eureka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200110.epw site_zip_code=89316 site_time_zone_utc_offset=-8 -County "NV, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200130.epw site_zip_code=89445 site_time_zone_utc_offset=-8 -County "NV, Lander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200150.epw site_zip_code=89820 site_time_zone_utc_offset=-8 -County "NV, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200170.epw site_zip_code=89017 site_time_zone_utc_offset=-8 -County "NV, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200190.epw site_zip_code=89408 site_time_zone_utc_offset=-8 -County "NV, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200210.epw site_zip_code=89415 site_time_zone_utc_offset=-8 -County "NV, Nye County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200230.epw site_zip_code=89048 site_time_zone_utc_offset=-8 -County "NV, Pershing County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200270.epw site_zip_code=89419 site_time_zone_utc_offset=-8 -County "NV, Storey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200290.epw site_zip_code=89521 site_time_zone_utc_offset=-8 -County "NV, Washoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200310.epw site_zip_code=89502 site_time_zone_utc_offset=-8 -County "NV, White Pine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200330.epw site_zip_code=89301 site_time_zone_utc_offset=-8 -County "NY, Albany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600010.epw site_zip_code=12203 site_time_zone_utc_offset=-5 -County "NY, Allegany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600030.epw site_zip_code=14895 site_time_zone_utc_offset=-5 -County "NY, Bronx County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600050.epw site_zip_code=10467 site_time_zone_utc_offset=-5 -County "NY, Broome County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600070.epw site_zip_code=13760 site_time_zone_utc_offset=-5 -County "NY, Cattaraugus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600090.epw site_zip_code=14760 site_time_zone_utc_offset=-5 -County "NY, Cayuga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600110.epw site_zip_code=13021 site_time_zone_utc_offset=-5 -County "NY, Chautauqua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600130.epw site_zip_code=14701 site_time_zone_utc_offset=-5 -County "NY, Chemung County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600150.epw site_zip_code=14845 site_time_zone_utc_offset=-5 -County "NY, Chenango County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600170.epw site_zip_code=13815 site_time_zone_utc_offset=-5 -County "NY, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600190.epw site_zip_code=12901 site_time_zone_utc_offset=-5 -County "NY, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600210.epw site_zip_code=12534 site_time_zone_utc_offset=-5 -County "NY, Cortland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600230.epw site_zip_code=13045 site_time_zone_utc_offset=-5 -County "NY, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600250.epw site_zip_code=13856 site_time_zone_utc_offset=-5 -County "NY, Dutchess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600270.epw site_zip_code=12601 site_time_zone_utc_offset=-5 -County "NY, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600290.epw site_zip_code=14221 site_time_zone_utc_offset=-5 -County "NY, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600310.epw site_zip_code=12946 site_time_zone_utc_offset=-5 -County "NY, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600330.epw site_zip_code=12953 site_time_zone_utc_offset=-5 -County "NY, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600350.epw site_zip_code=12078 site_time_zone_utc_offset=-5 -County "NY, Genesee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600370.epw site_zip_code=14020 site_time_zone_utc_offset=-5 -County "NY, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600390.epw site_zip_code=12414 site_time_zone_utc_offset=-5 -County "NY, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600410.epw site_zip_code=12842 site_time_zone_utc_offset=-5 -County "NY, Herkimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600430.epw site_zip_code=13357 site_time_zone_utc_offset=-5 -County "NY, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600450.epw site_zip_code=13601 site_time_zone_utc_offset=-5 -County "NY, Kings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600470.epw site_zip_code=11226 site_time_zone_utc_offset=-5 -County "NY, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600490.epw site_zip_code=13367 site_time_zone_utc_offset=-5 -County "NY, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600510.epw site_zip_code=14454 site_time_zone_utc_offset=-5 -County "NY, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600530.epw site_zip_code=13032 site_time_zone_utc_offset=-5 -County "NY, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600550.epw site_zip_code=14580 site_time_zone_utc_offset=-5 -County "NY, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600570.epw site_zip_code=12010 site_time_zone_utc_offset=-5 -County "NY, Nassau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600590.epw site_zip_code=11758 site_time_zone_utc_offset=-5 -County "NY, New York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600610.epw site_zip_code=10025 site_time_zone_utc_offset=-5 -County "NY, Niagara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600630.epw site_zip_code=14094 site_time_zone_utc_offset=-5 -County "NY, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600650.epw site_zip_code=13440 site_time_zone_utc_offset=-5 -County "NY, Onondaga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600670.epw site_zip_code=13027 site_time_zone_utc_offset=-5 -County "NY, Ontario County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600690.epw site_zip_code=14424 site_time_zone_utc_offset=-5 -County "NY, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600710.epw site_zip_code=12550 site_time_zone_utc_offset=-5 -County "NY, Orleans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600730.epw site_zip_code=14411 site_time_zone_utc_offset=-5 -County "NY, Oswego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600750.epw site_zip_code=13126 site_time_zone_utc_offset=-5 -County "NY, Otsego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600770.epw site_zip_code=13820 site_time_zone_utc_offset=-5 -County "NY, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600790.epw site_zip_code=10512 site_time_zone_utc_offset=-5 -County "NY, Queens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600810.epw site_zip_code=11375 site_time_zone_utc_offset=-5 -County "NY, Rensselaer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600830.epw site_zip_code=12180 site_time_zone_utc_offset=-5 -County "NY, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600850.epw site_zip_code=10314 site_time_zone_utc_offset=-5 -County "NY, Rockland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600870.epw site_zip_code=10977 site_time_zone_utc_offset=-5 -County "NY, Saratoga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600910.epw site_zip_code=12866 site_time_zone_utc_offset=-5 -County "NY, Schenectady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600930.epw site_zip_code=12306 site_time_zone_utc_offset=-5 -County "NY, Schoharie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600950.epw site_zip_code=12043 site_time_zone_utc_offset=-5 -County "NY, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600970.epw site_zip_code=14891 site_time_zone_utc_offset=-5 -County "NY, Seneca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600990.epw site_zip_code=13148 site_time_zone_utc_offset=-5 -County "NY, St. Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600890.epw site_zip_code=13676 site_time_zone_utc_offset=-5 -County "NY, Steuben County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601010.epw site_zip_code=14830 site_time_zone_utc_offset=-5 -County "NY, Suffolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601030.epw site_zip_code=11746 site_time_zone_utc_offset=-5 -County "NY, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601050.epw site_zip_code=12701 site_time_zone_utc_offset=-5 -County "NY, Tioga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601070.epw site_zip_code=13827 site_time_zone_utc_offset=-5 -County "NY, Tompkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601090.epw site_zip_code=14850 site_time_zone_utc_offset=-5 -County "NY, Ulster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601110.epw site_zip_code=12401 site_time_zone_utc_offset=-5 -County "NY, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601130.epw site_zip_code=12804 site_time_zone_utc_offset=-5 -County "NY, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601150.epw site_zip_code=12839 site_time_zone_utc_offset=-5 -County "NY, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601170.epw site_zip_code=14513 site_time_zone_utc_offset=-5 -County "NY, Westchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601190.epw site_zip_code=10701 site_time_zone_utc_offset=-5 -County "NY, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601210.epw site_zip_code=14569 site_time_zone_utc_offset=-5 -County "NY, Yates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601230.epw site_zip_code=14527 site_time_zone_utc_offset=-5 -County "OH, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900010.epw site_zip_code=45693 site_time_zone_utc_offset=-5 -County "OH, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900030.epw site_zip_code=45805 site_time_zone_utc_offset=-5 -County "OH, Ashland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900050.epw site_zip_code=44805 site_time_zone_utc_offset=-5 -County "OH, Ashtabula County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900070.epw site_zip_code=44004 site_time_zone_utc_offset=-5 -County "OH, Athens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900090.epw site_zip_code=45701 site_time_zone_utc_offset=-5 -County "OH, Auglaize County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900110.epw site_zip_code=45895 site_time_zone_utc_offset=-5 -County "OH, Belmont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900130.epw site_zip_code=43950 site_time_zone_utc_offset=-5 -County "OH, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900150.epw site_zip_code=45121 site_time_zone_utc_offset=-5 -County "OH, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900170.epw site_zip_code=45011 site_time_zone_utc_offset=-5 -County "OH, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900190.epw site_zip_code=44615 site_time_zone_utc_offset=-5 -County "OH, Champaign County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900210.epw site_zip_code=43078 site_time_zone_utc_offset=-5 -County "OH, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900230.epw site_zip_code=45503 site_time_zone_utc_offset=-5 -County "OH, Clermont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900250.epw site_zip_code=45103 site_time_zone_utc_offset=-5 -County "OH, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900270.epw site_zip_code=45177 site_time_zone_utc_offset=-5 -County "OH, Columbiana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900290.epw site_zip_code=43920 site_time_zone_utc_offset=-5 -County "OH, Coshocton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900310.epw site_zip_code=43812 site_time_zone_utc_offset=-5 -County "OH, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900330.epw site_zip_code=44820 site_time_zone_utc_offset=-5 -County "OH, Cuyahoga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900350.epw site_zip_code=44107 site_time_zone_utc_offset=-5 -County "OH, Darke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900370.epw site_zip_code=45331 site_time_zone_utc_offset=-5 -County "OH, Defiance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900390.epw site_zip_code=43512 site_time_zone_utc_offset=-5 -County "OH, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900410.epw site_zip_code=43015 site_time_zone_utc_offset=-5 -County "OH, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900430.epw site_zip_code=44870 site_time_zone_utc_offset=-5 -County "OH, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900450.epw site_zip_code=43130 site_time_zone_utc_offset=-5 -County "OH, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900470.epw site_zip_code=43160 site_time_zone_utc_offset=-5 -County "OH, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900490.epw site_zip_code=43081 site_time_zone_utc_offset=-5 -County "OH, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900510.epw site_zip_code=43567 site_time_zone_utc_offset=-5 -County "OH, Gallia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900530.epw site_zip_code=45631 site_time_zone_utc_offset=-5 -County "OH, Geauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900550.epw site_zip_code=44024 site_time_zone_utc_offset=-5 -County "OH, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900570.epw site_zip_code=45324 site_time_zone_utc_offset=-5 -County "OH, Guernsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900590.epw site_zip_code=43725 site_time_zone_utc_offset=-5 -County "OH, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900610.epw site_zip_code=45238 site_time_zone_utc_offset=-5 -County "OH, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900630.epw site_zip_code=45840 site_time_zone_utc_offset=-5 -County "OH, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900650.epw site_zip_code=43326 site_time_zone_utc_offset=-5 -County "OH, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900670.epw site_zip_code=43907 site_time_zone_utc_offset=-5 -County "OH, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900690.epw site_zip_code=43545 site_time_zone_utc_offset=-5 -County "OH, Highland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900710.epw site_zip_code=45133 site_time_zone_utc_offset=-5 -County "OH, Hocking County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900730.epw site_zip_code=43138 site_time_zone_utc_offset=-5 -County "OH, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900750.epw site_zip_code=44654 site_time_zone_utc_offset=-5 -County "OH, Huron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900770.epw site_zip_code=44857 site_time_zone_utc_offset=-5 -County "OH, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900790.epw site_zip_code=45640 site_time_zone_utc_offset=-5 -County "OH, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900810.epw site_zip_code=43952 site_time_zone_utc_offset=-5 -County "OH, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900830.epw site_zip_code=43050 site_time_zone_utc_offset=-5 -County "OH, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900850.epw site_zip_code=44060 site_time_zone_utc_offset=-5 -County "OH, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900870.epw site_zip_code=45638 site_time_zone_utc_offset=-5 -County "OH, Licking County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900890.epw site_zip_code=43055 site_time_zone_utc_offset=-5 -County "OH, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900910.epw site_zip_code=43311 site_time_zone_utc_offset=-5 -County "OH, Lorain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900930.epw site_zip_code=44035 site_time_zone_utc_offset=-5 -County "OH, Lucas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900950.epw site_zip_code=43615 site_time_zone_utc_offset=-5 -County "OH, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900970.epw site_zip_code=43140 site_time_zone_utc_offset=-5 -County "OH, Mahoning County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900990.epw site_zip_code=44512 site_time_zone_utc_offset=-5 -County "OH, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901010.epw site_zip_code=43302 site_time_zone_utc_offset=-5 -County "OH, Medina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901030.epw site_zip_code=44256 site_time_zone_utc_offset=-5 -County "OH, Meigs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901050.epw site_zip_code=45769 site_time_zone_utc_offset=-5 -County "OH, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901070.epw site_zip_code=45822 site_time_zone_utc_offset=-5 -County "OH, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901090.epw site_zip_code=45373 site_time_zone_utc_offset=-5 -County "OH, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901110.epw site_zip_code=43793 site_time_zone_utc_offset=-5 -County "OH, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901130.epw site_zip_code=45424 site_time_zone_utc_offset=-5 -County "OH, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901150.epw site_zip_code=43756 site_time_zone_utc_offset=-5 -County "OH, Morrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901170.epw site_zip_code=43338 site_time_zone_utc_offset=-5 -County "OH, Muskingum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901190.epw site_zip_code=43701 site_time_zone_utc_offset=-5 -County "OH, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901210.epw site_zip_code=43724 site_time_zone_utc_offset=-5 -County "OH, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901230.epw site_zip_code=43452 site_time_zone_utc_offset=-5 -County "OH, Paulding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901250.epw site_zip_code=45879 site_time_zone_utc_offset=-5 -County "OH, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901270.epw site_zip_code=43764 site_time_zone_utc_offset=-5 -County "OH, Pickaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901290.epw site_zip_code=43113 site_time_zone_utc_offset=-5 -County "OH, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901310.epw site_zip_code=45690 site_time_zone_utc_offset=-5 -County "OH, Portage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901330.epw site_zip_code=44240 site_time_zone_utc_offset=-5 -County "OH, Preble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901350.epw site_zip_code=45320 site_time_zone_utc_offset=-5 -County "OH, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901370.epw site_zip_code=45875 site_time_zone_utc_offset=-5 -County "OH, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901390.epw site_zip_code=44903 site_time_zone_utc_offset=-5 -County "OH, Ross County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901410.epw site_zip_code=45601 site_time_zone_utc_offset=-5 -County "OH, Sandusky County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901430.epw site_zip_code=43420 site_time_zone_utc_offset=-5 -County "OH, Scioto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901450.epw site_zip_code=45662 site_time_zone_utc_offset=-5 -County "OH, Seneca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901470.epw site_zip_code=44883 site_time_zone_utc_offset=-5 -County "OH, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901490.epw site_zip_code=45365 site_time_zone_utc_offset=-5 -County "OH, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901510.epw site_zip_code=44646 site_time_zone_utc_offset=-5 -County "OH, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901530.epw site_zip_code=44224 site_time_zone_utc_offset=-5 -County "OH, Trumbull County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901550.epw site_zip_code=44483 site_time_zone_utc_offset=-5 -County "OH, Tuscarawas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901570.epw site_zip_code=44663 site_time_zone_utc_offset=-5 -County "OH, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901590.epw site_zip_code=43040 site_time_zone_utc_offset=-5 -County "OH, Van Wert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901610.epw site_zip_code=45891 site_time_zone_utc_offset=-5 -County "OH, Vinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901630.epw site_zip_code=45651 site_time_zone_utc_offset=-5 -County "OH, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901650.epw site_zip_code=45040 site_time_zone_utc_offset=-5 -County "OH, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901670.epw site_zip_code=45750 site_time_zone_utc_offset=-5 -County "OH, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901690.epw site_zip_code=44691 site_time_zone_utc_offset=-5 -County "OH, Williams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901710.epw site_zip_code=43506 site_time_zone_utc_offset=-5 -County "OH, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901730.epw site_zip_code=43551 site_time_zone_utc_offset=-5 -County "OH, Wyandot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901750.epw site_zip_code=43351 site_time_zone_utc_offset=-5 -County "OK, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000010.epw site_zip_code=74960 site_time_zone_utc_offset=-6 -County "OK, Alfalfa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000030.epw site_zip_code=73728 site_time_zone_utc_offset=-6 -County "OK, Atoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000050.epw site_zip_code=74525 site_time_zone_utc_offset=-6 -County "OK, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000070.epw site_zip_code=73932 site_time_zone_utc_offset=-6 -County "OK, Beckham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000090.epw site_zip_code=73644 site_time_zone_utc_offset=-6 -County "OK, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000110.epw site_zip_code=73772 site_time_zone_utc_offset=-6 -County "OK, Bryan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000130.epw site_zip_code=74701 site_time_zone_utc_offset=-6 -County "OK, Caddo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000150.epw site_zip_code=73005 site_time_zone_utc_offset=-6 -County "OK, Canadian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000170.epw site_zip_code=73099 site_time_zone_utc_offset=-6 -County "OK, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000190.epw site_zip_code=73401 site_time_zone_utc_offset=-6 -County "OK, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000210.epw site_zip_code=74464 site_time_zone_utc_offset=-6 -County "OK, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000230.epw site_zip_code=74743 site_time_zone_utc_offset=-6 -County "OK, Cimarron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000250.epw site_zip_code=73933 site_time_zone_utc_offset=-6 -County "OK, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000270.epw site_zip_code=73160 site_time_zone_utc_offset=-6 -County "OK, Coal County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000290.epw site_zip_code=74538 site_time_zone_utc_offset=-6 -County "OK, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000310.epw site_zip_code=73505 site_time_zone_utc_offset=-6 -County "OK, Cotton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000330.epw site_zip_code=73572 site_time_zone_utc_offset=-6 -County "OK, Craig County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000350.epw site_zip_code=74301 site_time_zone_utc_offset=-6 -County "OK, Creek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000370.epw site_zip_code=74066 site_time_zone_utc_offset=-6 -County "OK, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000390.epw site_zip_code=73096 site_time_zone_utc_offset=-6 -County "OK, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000410.epw site_zip_code=74344 site_time_zone_utc_offset=-6 -County "OK, Dewey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000430.epw site_zip_code=73859 site_time_zone_utc_offset=-6 -County "OK, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000450.epw site_zip_code=73858 site_time_zone_utc_offset=-6 -County "OK, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000470.epw site_zip_code=73703 site_time_zone_utc_offset=-6 -County "OK, Garvin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000490.epw site_zip_code=73075 site_time_zone_utc_offset=-6 -County "OK, Grady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000510.epw site_zip_code=73018 site_time_zone_utc_offset=-6 -County "OK, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000530.epw site_zip_code=73759 site_time_zone_utc_offset=-6 -County "OK, Greer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000550.epw site_zip_code=73554 site_time_zone_utc_offset=-6 -County "OK, Harmon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000570.epw site_zip_code=73550 site_time_zone_utc_offset=-6 -County "OK, Harper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000590.epw site_zip_code=73848 site_time_zone_utc_offset=-6 -County "OK, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000610.epw site_zip_code=74462 site_time_zone_utc_offset=-6 -County "OK, Hughes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000630.epw site_zip_code=74848 site_time_zone_utc_offset=-6 -County "OK, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000650.epw site_zip_code=73521 site_time_zone_utc_offset=-6 -County "OK, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000670.epw site_zip_code=73573 site_time_zone_utc_offset=-6 -County "OK, Johnston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000690.epw site_zip_code=73460 site_time_zone_utc_offset=-6 -County "OK, Kay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000710.epw site_zip_code=74601 site_time_zone_utc_offset=-6 -County "OK, Kingfisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000730.epw site_zip_code=73750 site_time_zone_utc_offset=-6 -County "OK, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000750.epw site_zip_code=73651 site_time_zone_utc_offset=-6 -County "OK, Latimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000770.epw site_zip_code=74578 site_time_zone_utc_offset=-6 -County "OK, Le Flore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000790.epw site_zip_code=74953 site_time_zone_utc_offset=-6 -County "OK, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000810.epw site_zip_code=74834 site_time_zone_utc_offset=-6 -County "OK, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000830.epw site_zip_code=73044 site_time_zone_utc_offset=-6 -County "OK, Love County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000850.epw site_zip_code=73448 site_time_zone_utc_offset=-6 -County "OK, Major County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000930.epw site_zip_code=73737 site_time_zone_utc_offset=-6 -County "OK, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000950.epw site_zip_code=73439 site_time_zone_utc_offset=-6 -County "OK, Mayes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000970.epw site_zip_code=74361 site_time_zone_utc_offset=-6 -County "OK, McClain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000870.epw site_zip_code=73080 site_time_zone_utc_offset=-6 -County "OK, McCurtain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000890.epw site_zip_code=74728 site_time_zone_utc_offset=-6 -County "OK, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000910.epw site_zip_code=74432 site_time_zone_utc_offset=-6 -County "OK, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000990.epw site_zip_code=73086 site_time_zone_utc_offset=-6 -County "OK, Muskogee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001010.epw site_zip_code=74403 site_time_zone_utc_offset=-6 -County "OK, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001030.epw site_zip_code=73077 site_time_zone_utc_offset=-6 -County "OK, Nowata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001050.epw site_zip_code=74048 site_time_zone_utc_offset=-6 -County "OK, Okfuskee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001070.epw site_zip_code=74859 site_time_zone_utc_offset=-6 -County "OK, Oklahoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001090.epw site_zip_code=73013 site_time_zone_utc_offset=-6 -County "OK, Okmulgee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001110.epw site_zip_code=74447 site_time_zone_utc_offset=-6 -County "OK, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001130.epw site_zip_code=74070 site_time_zone_utc_offset=-6 -County "OK, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001150.epw site_zip_code=74354 site_time_zone_utc_offset=-6 -County "OK, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001170.epw site_zip_code=74020 site_time_zone_utc_offset=-6 -County "OK, Payne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001190.epw site_zip_code=74074 site_time_zone_utc_offset=-6 -County "OK, Pittsburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001210.epw site_zip_code=74501 site_time_zone_utc_offset=-6 -County "OK, Pontotoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001230.epw site_zip_code=74820 site_time_zone_utc_offset=-6 -County "OK, Pottawatomie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001250.epw site_zip_code=74801 site_time_zone_utc_offset=-6 -County "OK, Pushmataha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001270.epw site_zip_code=74523 site_time_zone_utc_offset=-6 -County "OK, Roger Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001290.epw site_zip_code=73628 site_time_zone_utc_offset=-6 -County "OK, Rogers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001310.epw site_zip_code=74017 site_time_zone_utc_offset=-6 -County "OK, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001330.epw site_zip_code=74868 site_time_zone_utc_offset=-6 -County "OK, Sequoyah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001350.epw site_zip_code=74955 site_time_zone_utc_offset=-6 -County "OK, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001370.epw site_zip_code=73533 site_time_zone_utc_offset=-6 -County "OK, Texas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001390.epw site_zip_code=73942 site_time_zone_utc_offset=-6 -County "OK, Tillman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001410.epw site_zip_code=73542 site_time_zone_utc_offset=-6 -County "OK, Tulsa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001430.epw site_zip_code=74012 site_time_zone_utc_offset=-6 -County "OK, Wagoner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001450.epw site_zip_code=74014 site_time_zone_utc_offset=-6 -County "OK, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001470.epw site_zip_code=74006 site_time_zone_utc_offset=-6 -County "OK, Washita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001490.epw site_zip_code=73632 site_time_zone_utc_offset=-6 -County "OK, Woods County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001510.epw site_zip_code=73717 site_time_zone_utc_offset=-6 -County "OK, Woodward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001530.epw site_zip_code=73801 site_time_zone_utc_offset=-6 -County "OR, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100010.epw site_zip_code=97814 site_time_zone_utc_offset=-8 -County "OR, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100030.epw site_zip_code=97330 site_time_zone_utc_offset=-8 -County "OR, Clackamas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100050.epw site_zip_code=97045 site_time_zone_utc_offset=-8 -County "OR, Clatsop County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100070.epw site_zip_code=97103 site_time_zone_utc_offset=-8 -County "OR, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100090.epw site_zip_code=97051 site_time_zone_utc_offset=-8 -County "OR, Coos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100110.epw site_zip_code=97420 site_time_zone_utc_offset=-8 -County "OR, Crook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100130.epw site_zip_code=97754 site_time_zone_utc_offset=-8 -County "OR, Curry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100150.epw site_zip_code=97415 site_time_zone_utc_offset=-8 -County "OR, Deschutes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100170.epw site_zip_code=97702 site_time_zone_utc_offset=-8 -County "OR, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100190.epw site_zip_code=97471 site_time_zone_utc_offset=-8 -County "OR, Gilliam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100210.epw site_zip_code=97823 site_time_zone_utc_offset=-8 -County "OR, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100230.epw site_zip_code=97845 site_time_zone_utc_offset=-8 -County "OR, Harney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100250.epw site_zip_code=97720 site_time_zone_utc_offset=-8 -County "OR, Hood River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100270.epw site_zip_code=97031 site_time_zone_utc_offset=-8 -County "OR, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100290.epw site_zip_code=97504 site_time_zone_utc_offset=-8 -County "OR, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100310.epw site_zip_code=97741 site_time_zone_utc_offset=-8 -County "OR, Josephine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100330.epw site_zip_code=97526 site_time_zone_utc_offset=-8 -County "OR, Klamath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100350.epw site_zip_code=97603 site_time_zone_utc_offset=-8 -County "OR, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100370.epw site_zip_code=97630 site_time_zone_utc_offset=-8 -County "OR, Lane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100390.epw site_zip_code=97402 site_time_zone_utc_offset=-8 -County "OR, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100410.epw site_zip_code=97367 site_time_zone_utc_offset=-8 -County "OR, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100430.epw site_zip_code=97322 site_time_zone_utc_offset=-8 -County "OR, Malheur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100450.epw site_zip_code=97914 site_time_zone_utc_offset=-7 -County "OR, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100470.epw site_zip_code=97301 site_time_zone_utc_offset=-8 -County "OR, Morrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100490.epw site_zip_code=97818 site_time_zone_utc_offset=-8 -County "OR, Multnomah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100510.epw site_zip_code=97206 site_time_zone_utc_offset=-8 -County "OR, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100530.epw site_zip_code=97304 site_time_zone_utc_offset=-8 -County "OR, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100550.epw site_zip_code=97065 site_time_zone_utc_offset=-8 -County "OR, Tillamook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100570.epw site_zip_code=97141 site_time_zone_utc_offset=-8 -County "OR, Umatilla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100590.epw site_zip_code=97838 site_time_zone_utc_offset=-8 -County "OR, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100610.epw site_zip_code=97850 site_time_zone_utc_offset=-8 -County "OR, Wallowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100630.epw site_zip_code=97828 site_time_zone_utc_offset=-8 -County "OR, Wasco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100650.epw site_zip_code=97058 site_time_zone_utc_offset=-8 -County "OR, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100670.epw site_zip_code=97229 site_time_zone_utc_offset=-8 -County "OR, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100690.epw site_zip_code=97830 site_time_zone_utc_offset=-8 -County "OR, Yamhill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100710.epw site_zip_code=97128 site_time_zone_utc_offset=-8 -County "PA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200010.epw site_zip_code=17325 site_time_zone_utc_offset=-5 -County "PA, Allegheny County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200030.epw site_zip_code=15237 site_time_zone_utc_offset=-5 -County "PA, Armstrong County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200050.epw site_zip_code=16201 site_time_zone_utc_offset=-5 -County "PA, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200070.epw site_zip_code=15001 site_time_zone_utc_offset=-5 -County "PA, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200090.epw site_zip_code=15522 site_time_zone_utc_offset=-5 -County "PA, Berks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200110.epw site_zip_code=19606 site_time_zone_utc_offset=-5 -County "PA, Blair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200130.epw site_zip_code=16601 site_time_zone_utc_offset=-5 -County "PA, Bradford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200150.epw site_zip_code=18840 site_time_zone_utc_offset=-5 -County "PA, Bucks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200170.epw site_zip_code=19020 site_time_zone_utc_offset=-5 -County "PA, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200190.epw site_zip_code=16001 site_time_zone_utc_offset=-5 -County "PA, Cambria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200210.epw site_zip_code=15905 site_time_zone_utc_offset=-5 -County "PA, Cameron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200230.epw site_zip_code=15834 site_time_zone_utc_offset=-5 -County "PA, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200250.epw site_zip_code=18235 site_time_zone_utc_offset=-5 -County "PA, Centre County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200270.epw site_zip_code=16801 site_time_zone_utc_offset=-5 -County "PA, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200290.epw site_zip_code=19380 site_time_zone_utc_offset=-5 -County "PA, Clarion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200310.epw site_zip_code=16214 site_time_zone_utc_offset=-5 -County "PA, Clearfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200330.epw site_zip_code=15801 site_time_zone_utc_offset=-5 -County "PA, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200350.epw site_zip_code=17745 site_time_zone_utc_offset=-5 -County "PA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200370.epw site_zip_code=17815 site_time_zone_utc_offset=-5 -County "PA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200390.epw site_zip_code=16335 site_time_zone_utc_offset=-5 -County "PA, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200410.epw site_zip_code=17055 site_time_zone_utc_offset=-5 -County "PA, Dauphin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200430.epw site_zip_code=17112 site_time_zone_utc_offset=-5 -County "PA, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200450.epw site_zip_code=19063 site_time_zone_utc_offset=-5 -County "PA, Elk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200470.epw site_zip_code=15857 site_time_zone_utc_offset=-5 -County "PA, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200490.epw site_zip_code=16509 site_time_zone_utc_offset=-5 -County "PA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200510.epw site_zip_code=15401 site_time_zone_utc_offset=-5 -County "PA, Forest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200530.epw site_zip_code=16353 site_time_zone_utc_offset=-5 -County "PA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200550.epw site_zip_code=17268 site_time_zone_utc_offset=-5 -County "PA, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200570.epw site_zip_code=17233 site_time_zone_utc_offset=-5 -County "PA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200590.epw site_zip_code=15370 site_time_zone_utc_offset=-5 -County "PA, Huntingdon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200610.epw site_zip_code=16652 site_time_zone_utc_offset=-5 -County "PA, Indiana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200630.epw site_zip_code=15701 site_time_zone_utc_offset=-5 -County "PA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200650.epw site_zip_code=15767 site_time_zone_utc_offset=-5 -County "PA, Juniata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200670.epw site_zip_code=17059 site_time_zone_utc_offset=-5 -County "PA, Lackawanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200690.epw site_zip_code=18505 site_time_zone_utc_offset=-5 -County "PA, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200710.epw site_zip_code=17603 site_time_zone_utc_offset=-5 -County "PA, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200730.epw site_zip_code=16101 site_time_zone_utc_offset=-5 -County "PA, Lebanon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200750.epw site_zip_code=17042 site_time_zone_utc_offset=-5 -County "PA, Lehigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200770.epw site_zip_code=18103 site_time_zone_utc_offset=-5 -County "PA, Luzerne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200790.epw site_zip_code=18702 site_time_zone_utc_offset=-5 -County "PA, Lycoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200810.epw site_zip_code=17701 site_time_zone_utc_offset=-5 -County "PA, McKean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200830.epw site_zip_code=16701 site_time_zone_utc_offset=-5 -County "PA, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200850.epw site_zip_code=16148 site_time_zone_utc_offset=-5 -County "PA, Mifflin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200870.epw site_zip_code=17044 site_time_zone_utc_offset=-5 -County "PA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200890.epw site_zip_code=18301 site_time_zone_utc_offset=-5 -County "PA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200910.epw site_zip_code=19446 site_time_zone_utc_offset=-5 -County "PA, Montour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200930.epw site_zip_code=17821 site_time_zone_utc_offset=-5 -County "PA, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200950.epw site_zip_code=18042 site_time_zone_utc_offset=-5 -County "PA, Northumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200970.epw site_zip_code=17801 site_time_zone_utc_offset=-5 -County "PA, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200990.epw site_zip_code=17020 site_time_zone_utc_offset=-5 -County "PA, Philadelphia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201010.epw site_zip_code=19143 site_time_zone_utc_offset=-5 -County "PA, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201030.epw site_zip_code=18337 site_time_zone_utc_offset=-5 -County "PA, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201050.epw site_zip_code=16915 site_time_zone_utc_offset=-5 -County "PA, Schuylkill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201070.epw site_zip_code=17901 site_time_zone_utc_offset=-5 -County "PA, Snyder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201090.epw site_zip_code=17870 site_time_zone_utc_offset=-5 -County "PA, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201110.epw site_zip_code=15501 site_time_zone_utc_offset=-5 -County "PA, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201130.epw site_zip_code=18614 site_time_zone_utc_offset=-5 -County "PA, Susquehanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201150.epw site_zip_code=18801 site_time_zone_utc_offset=-5 -County "PA, Tioga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201170.epw site_zip_code=16901 site_time_zone_utc_offset=-5 -County "PA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201190.epw site_zip_code=17837 site_time_zone_utc_offset=-5 -County "PA, Venango County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201210.epw site_zip_code=16301 site_time_zone_utc_offset=-5 -County "PA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201230.epw site_zip_code=16365 site_time_zone_utc_offset=-5 -County "PA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201250.epw site_zip_code=15301 site_time_zone_utc_offset=-5 -County "PA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201270.epw site_zip_code=18431 site_time_zone_utc_offset=-5 -County "PA, Westmoreland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201290.epw site_zip_code=15601 site_time_zone_utc_offset=-5 -County "PA, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201310.epw site_zip_code=18657 site_time_zone_utc_offset=-5 -County "PA, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201330.epw site_zip_code=17331 site_time_zone_utc_offset=-5 -County "RI, Bristol County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400010.epw site_zip_code=02809 site_time_zone_utc_offset=-5 -County "RI, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400030.epw site_zip_code=02893 site_time_zone_utc_offset=-5 -County "RI, Newport County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400050.epw site_zip_code=02840 site_time_zone_utc_offset=-5 -County "RI, Providence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400070.epw site_zip_code=02860 site_time_zone_utc_offset=-5 -County "RI, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400090.epw site_zip_code=02891 site_time_zone_utc_offset=-5 -County "SC, Abbeville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500010.epw site_zip_code=29620 site_time_zone_utc_offset=-5 -County "SC, Aiken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500030.epw site_zip_code=29803 site_time_zone_utc_offset=-5 -County "SC, Allendale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500050.epw site_zip_code=29810 site_time_zone_utc_offset=-5 -County "SC, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500070.epw site_zip_code=29621 site_time_zone_utc_offset=-5 -County "SC, Bamberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500090.epw site_zip_code=29003 site_time_zone_utc_offset=-5 -County "SC, Barnwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500110.epw site_zip_code=29812 site_time_zone_utc_offset=-5 -County "SC, Beaufort County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500130.epw site_zip_code=29910 site_time_zone_utc_offset=-5 -County "SC, Berkeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500150.epw site_zip_code=29445 site_time_zone_utc_offset=-5 -County "SC, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500170.epw site_zip_code=29135 site_time_zone_utc_offset=-5 -County "SC, Charleston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500190.epw site_zip_code=29464 site_time_zone_utc_offset=-5 -County "SC, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500210.epw site_zip_code=29340 site_time_zone_utc_offset=-5 -County "SC, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500230.epw site_zip_code=29706 site_time_zone_utc_offset=-5 -County "SC, Chesterfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500250.epw site_zip_code=29520 site_time_zone_utc_offset=-5 -County "SC, Clarendon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500270.epw site_zip_code=29102 site_time_zone_utc_offset=-5 -County "SC, Colleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500290.epw site_zip_code=29488 site_time_zone_utc_offset=-5 -County "SC, Darlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500310.epw site_zip_code=29550 site_time_zone_utc_offset=-5 -County "SC, Dillon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500330.epw site_zip_code=29536 site_time_zone_utc_offset=-5 -County "SC, Dorchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500350.epw site_zip_code=29485 site_time_zone_utc_offset=-5 -County "SC, Edgefield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500370.epw site_zip_code=29860 site_time_zone_utc_offset=-5 -County "SC, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500390.epw site_zip_code=29180 site_time_zone_utc_offset=-5 -County "SC, Florence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500410.epw site_zip_code=29501 site_time_zone_utc_offset=-5 -County "SC, Georgetown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500430.epw site_zip_code=29440 site_time_zone_utc_offset=-5 -County "SC, Greenville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500450.epw site_zip_code=29681 site_time_zone_utc_offset=-5 -County "SC, Greenwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500470.epw site_zip_code=29649 site_time_zone_utc_offset=-5 -County "SC, Hampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500490.epw site_zip_code=29918 site_time_zone_utc_offset=-5 -County "SC, Horry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500510.epw site_zip_code=29579 site_time_zone_utc_offset=-5 -County "SC, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500530.epw site_zip_code=29936 site_time_zone_utc_offset=-5 -County "SC, Kershaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500550.epw site_zip_code=29020 site_time_zone_utc_offset=-5 -County "SC, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500570.epw site_zip_code=29720 site_time_zone_utc_offset=-5 -County "SC, Laurens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500590.epw site_zip_code=29360 site_time_zone_utc_offset=-5 -County "SC, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500610.epw site_zip_code=29010 site_time_zone_utc_offset=-5 -County "SC, Lexington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500630.epw site_zip_code=29072 site_time_zone_utc_offset=-5 -County "SC, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500670.epw site_zip_code=29571 site_time_zone_utc_offset=-5 -County "SC, Marlboro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500690.epw site_zip_code=29512 site_time_zone_utc_offset=-5 -County "SC, McCormick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500650.epw site_zip_code=29835 site_time_zone_utc_offset=-5 -County "SC, Newberry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500710.epw site_zip_code=29108 site_time_zone_utc_offset=-5 -County "SC, Oconee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500730.epw site_zip_code=29678 site_time_zone_utc_offset=-5 -County "SC, Orangeburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500750.epw site_zip_code=29115 site_time_zone_utc_offset=-5 -County "SC, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500770.epw site_zip_code=29640 site_time_zone_utc_offset=-5 -County "SC, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500790.epw site_zip_code=29223 site_time_zone_utc_offset=-5 -County "SC, Saluda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500810.epw site_zip_code=29138 site_time_zone_utc_offset=-5 -County "SC, Spartanburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500830.epw site_zip_code=29301 site_time_zone_utc_offset=-5 -County "SC, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500850.epw site_zip_code=29150 site_time_zone_utc_offset=-5 -County "SC, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500870.epw site_zip_code=29379 site_time_zone_utc_offset=-5 -County "SC, Williamsburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500890.epw site_zip_code=29556 site_time_zone_utc_offset=-5 -County "SC, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500910.epw site_zip_code=29732 site_time_zone_utc_offset=-5 -County "SD, Aurora County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600030.epw site_zip_code=57368 site_time_zone_utc_offset=-6 -County "SD, Beadle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600050.epw site_zip_code=57350 site_time_zone_utc_offset=-6 -County "SD, Bennett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600070.epw site_zip_code=57551 site_time_zone_utc_offset=-7 -County "SD, Bon Homme County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600090.epw site_zip_code=57066 site_time_zone_utc_offset=-6 -County "SD, Brookings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600110.epw site_zip_code=57006 site_time_zone_utc_offset=-6 -County "SD, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600130.epw site_zip_code=57401 site_time_zone_utc_offset=-6 -County "SD, Brule County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600150.epw site_zip_code=57325 site_time_zone_utc_offset=-6 -County "SD, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600170.epw site_zip_code=57341 site_time_zone_utc_offset=-6 -County "SD, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600190.epw site_zip_code=57717 site_time_zone_utc_offset=-7 -County "SD, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600210.epw site_zip_code=57632 site_time_zone_utc_offset=-6 -County "SD, Charles Mix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600230.epw site_zip_code=57380 site_time_zone_utc_offset=-6 -County "SD, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600250.epw site_zip_code=57225 site_time_zone_utc_offset=-6 -County "SD, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600270.epw site_zip_code=57069 site_time_zone_utc_offset=-6 -County "SD, Codington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600290.epw site_zip_code=57201 site_time_zone_utc_offset=-6 -County "SD, Corson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600310.epw site_zip_code=57642 site_time_zone_utc_offset=-7 -County "SD, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600330.epw site_zip_code=57730 site_time_zone_utc_offset=-7 -County "SD, Davison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600350.epw site_zip_code=57301 site_time_zone_utc_offset=-6 -County "SD, Day County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600370.epw site_zip_code=57274 site_time_zone_utc_offset=-6 -County "SD, Deuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600390.epw site_zip_code=57226 site_time_zone_utc_offset=-6 -County "SD, Dewey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600410.epw site_zip_code=57625 site_time_zone_utc_offset=-7 -County "SD, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600430.epw site_zip_code=57328 site_time_zone_utc_offset=-6 -County "SD, Edmunds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600450.epw site_zip_code=57451 site_time_zone_utc_offset=-6 -County "SD, Fall River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600470.epw site_zip_code=57747 site_time_zone_utc_offset=-7 -County "SD, Faulk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600490.epw site_zip_code=57438 site_time_zone_utc_offset=-6 -County "SD, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600510.epw site_zip_code=57252 site_time_zone_utc_offset=-6 -County "SD, Gregory County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600530.epw site_zip_code=57533 site_time_zone_utc_offset=-6 -County "SD, Haakon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600550.epw site_zip_code=57552 site_time_zone_utc_offset=-7 -County "SD, Hamlin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600570.epw site_zip_code=57223 site_time_zone_utc_offset=-6 -County "SD, Hand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600590.epw site_zip_code=57362 site_time_zone_utc_offset=-6 -County "SD, Hanson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600610.epw site_zip_code=57311 site_time_zone_utc_offset=-6 -County "SD, Harding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600630.epw site_zip_code=57720 site_time_zone_utc_offset=-7 -County "SD, Hughes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600650.epw site_zip_code=57501 site_time_zone_utc_offset=-6 -County "SD, Hutchinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600670.epw site_zip_code=57366 site_time_zone_utc_offset=-6 -County "SD, Hyde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600690.epw site_zip_code=57345 site_time_zone_utc_offset=-6 -County "SD, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600710.epw site_zip_code=57543 site_time_zone_utc_offset=-7 -County "SD, Jerauld County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600730.epw site_zip_code=57382 site_time_zone_utc_offset=-6 -County "SD, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600750.epw site_zip_code=57559 site_time_zone_utc_offset=-6 -County "SD, Kingsbury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600770.epw site_zip_code=57231 site_time_zone_utc_offset=-6 -County "SD, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600790.epw site_zip_code=57042 site_time_zone_utc_offset=-6 -County "SD, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600810.epw site_zip_code=57783 site_time_zone_utc_offset=-7 -County "SD, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600830.epw site_zip_code=57108 site_time_zone_utc_offset=-6 -County "SD, Lyman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600850.epw site_zip_code=57569 site_time_zone_utc_offset=-6 -County "SD, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600910.epw site_zip_code=57430 site_time_zone_utc_offset=-6 -County "SD, McCook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600870.epw site_zip_code=57058 site_time_zone_utc_offset=-6 -County "SD, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600890.epw site_zip_code=57437 site_time_zone_utc_offset=-6 -County "SD, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600930.epw site_zip_code=57785 site_time_zone_utc_offset=-7 -County "SD, Mellette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600950.epw site_zip_code=57579 site_time_zone_utc_offset=-6 -County "SD, Miner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600970.epw site_zip_code=57349 site_time_zone_utc_offset=-6 -County "SD, Minnehaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600990.epw site_zip_code=57106 site_time_zone_utc_offset=-6 -County "SD, Moody County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601010.epw site_zip_code=57028 site_time_zone_utc_offset=-6 -County "SD, Oglala Lakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601020.epw site_zip_code=57770 site_time_zone_utc_offset=-7 -County "SD, Pennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601030.epw site_zip_code=57701 site_time_zone_utc_offset=-7 -County "SD, Perkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601050.epw site_zip_code=57638 site_time_zone_utc_offset=-7 -County "SD, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601070.epw site_zip_code=57442 site_time_zone_utc_offset=-6 -County "SD, Roberts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601090.epw site_zip_code=57262 site_time_zone_utc_offset=-6 -County "SD, Sanborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601110.epw site_zip_code=57385 site_time_zone_utc_offset=-6 -County "SD, Spink County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601150.epw site_zip_code=57469 site_time_zone_utc_offset=-6 -County "SD, Stanley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601170.epw site_zip_code=57532 site_time_zone_utc_offset=-7 -County "SD, Sully County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601190.epw site_zip_code=57564 site_time_zone_utc_offset=-6 -County "SD, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601210.epw site_zip_code=57555 site_time_zone_utc_offset=-6 -County "SD, Tripp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601230.epw site_zip_code=57580 site_time_zone_utc_offset=-6 -County "SD, Turner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601250.epw site_zip_code=57053 site_time_zone_utc_offset=-6 -County "SD, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601270.epw site_zip_code=57049 site_time_zone_utc_offset=-6 -County "SD, Walworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601290.epw site_zip_code=57601 site_time_zone_utc_offset=-6 -County "SD, Yankton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601350.epw site_zip_code=57078 site_time_zone_utc_offset=-6 -County "SD, Ziebach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601370.epw site_zip_code=57623 site_time_zone_utc_offset=-7 -County "TN, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700010.epw site_zip_code=37830 site_time_zone_utc_offset=-5 -County "TN, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700030.epw site_zip_code=37160 site_time_zone_utc_offset=-6 -County "TN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700050.epw site_zip_code=38320 site_time_zone_utc_offset=-6 -County "TN, Bledsoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700070.epw site_zip_code=37367 site_time_zone_utc_offset=-6 -County "TN, Blount County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700090.epw site_zip_code=37803 site_time_zone_utc_offset=-5 -County "TN, Bradley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700110.epw site_zip_code=37312 site_time_zone_utc_offset=-5 -County "TN, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700130.epw site_zip_code=37766 site_time_zone_utc_offset=-5 -County "TN, Cannon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700150.epw site_zip_code=37190 site_time_zone_utc_offset=-6 -County "TN, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700170.epw site_zip_code=38344 site_time_zone_utc_offset=-6 -County "TN, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700190.epw site_zip_code=37643 site_time_zone_utc_offset=-5 -County "TN, Cheatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700210.epw site_zip_code=37015 site_time_zone_utc_offset=-6 -County "TN, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700230.epw site_zip_code=38340 site_time_zone_utc_offset=-6 -County "TN, Claiborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700250.epw site_zip_code=37879 site_time_zone_utc_offset=-5 -County "TN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700270.epw site_zip_code=38551 site_time_zone_utc_offset=-6 -County "TN, Cocke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700290.epw site_zip_code=37821 site_time_zone_utc_offset=-5 -County "TN, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700310.epw site_zip_code=37355 site_time_zone_utc_offset=-6 -County "TN, Crockett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700330.epw site_zip_code=38006 site_time_zone_utc_offset=-6 -County "TN, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700350.epw site_zip_code=38555 site_time_zone_utc_offset=-6 -County "TN, Davidson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700370.epw site_zip_code=37013 site_time_zone_utc_offset=-6 -County "TN, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700410.epw site_zip_code=37166 site_time_zone_utc_offset=-6 -County "TN, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700390.epw site_zip_code=38363 site_time_zone_utc_offset=-6 -County "TN, Dickson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700430.epw site_zip_code=37055 site_time_zone_utc_offset=-6 -County "TN, Dyer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700450.epw site_zip_code=38024 site_time_zone_utc_offset=-6 -County "TN, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700470.epw site_zip_code=38060 site_time_zone_utc_offset=-6 -County "TN, Fentress County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700490.epw site_zip_code=38556 site_time_zone_utc_offset=-6 -County "TN, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700510.epw site_zip_code=37398 site_time_zone_utc_offset=-6 -County "TN, Gibson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700530.epw site_zip_code=38343 site_time_zone_utc_offset=-6 -County "TN, Giles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700550.epw site_zip_code=38478 site_time_zone_utc_offset=-6 -County "TN, Grainger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700570.epw site_zip_code=37861 site_time_zone_utc_offset=-5 -County "TN, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700590.epw site_zip_code=37743 site_time_zone_utc_offset=-5 -County "TN, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700610.epw site_zip_code=37387 site_time_zone_utc_offset=-6 -County "TN, Hamblen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700630.epw site_zip_code=37814 site_time_zone_utc_offset=-5 -County "TN, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700650.epw site_zip_code=37421 site_time_zone_utc_offset=-5 -County "TN, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700670.epw site_zip_code=37869 site_time_zone_utc_offset=-5 -County "TN, Hardeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700690.epw site_zip_code=38008 site_time_zone_utc_offset=-6 -County "TN, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700710.epw site_zip_code=38372 site_time_zone_utc_offset=-6 -County "TN, Hawkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700730.epw site_zip_code=37857 site_time_zone_utc_offset=-5 -County "TN, Haywood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700750.epw site_zip_code=38012 site_time_zone_utc_offset=-6 -County "TN, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700770.epw site_zip_code=38351 site_time_zone_utc_offset=-6 -County "TN, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700790.epw site_zip_code=38242 site_time_zone_utc_offset=-6 -County "TN, Hickman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700810.epw site_zip_code=37033 site_time_zone_utc_offset=-6 -County "TN, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700830.epw site_zip_code=37061 site_time_zone_utc_offset=-6 -County "TN, Humphreys County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700850.epw site_zip_code=37185 site_time_zone_utc_offset=-6 -County "TN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700870.epw site_zip_code=38562 site_time_zone_utc_offset=-6 -County "TN, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700890.epw site_zip_code=37725 site_time_zone_utc_offset=-5 -County "TN, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700910.epw site_zip_code=37683 site_time_zone_utc_offset=-5 -County "TN, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700930.epw site_zip_code=37920 site_time_zone_utc_offset=-5 -County "TN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700950.epw site_zip_code=38079 site_time_zone_utc_offset=-6 -County "TN, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700970.epw site_zip_code=38063 site_time_zone_utc_offset=-6 -County "TN, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700990.epw site_zip_code=38464 site_time_zone_utc_offset=-6 -County "TN, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701010.epw site_zip_code=38462 site_time_zone_utc_offset=-6 -County "TN, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701030.epw site_zip_code=37334 site_time_zone_utc_offset=-6 -County "TN, Loudon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701050.epw site_zip_code=37774 site_time_zone_utc_offset=-5 -County "TN, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701110.epw site_zip_code=37083 site_time_zone_utc_offset=-6 -County "TN, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701130.epw site_zip_code=38305 site_time_zone_utc_offset=-6 -County "TN, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701150.epw site_zip_code=37397 site_time_zone_utc_offset=-6 -County "TN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701170.epw site_zip_code=37091 site_time_zone_utc_offset=-6 -County "TN, Maury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701190.epw site_zip_code=38401 site_time_zone_utc_offset=-6 -County "TN, McMinn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701070.epw site_zip_code=37303 site_time_zone_utc_offset=-5 -County "TN, McNairy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701090.epw site_zip_code=38375 site_time_zone_utc_offset=-6 -County "TN, Meigs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701210.epw site_zip_code=37322 site_time_zone_utc_offset=-5 -County "TN, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701230.epw site_zip_code=37354 site_time_zone_utc_offset=-5 -County "TN, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701250.epw site_zip_code=37042 site_time_zone_utc_offset=-6 -County "TN, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701270.epw site_zip_code=37352 site_time_zone_utc_offset=-6 -County "TN, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701290.epw site_zip_code=37887 site_time_zone_utc_offset=-5 -County "TN, Obion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701310.epw site_zip_code=38261 site_time_zone_utc_offset=-6 -County "TN, Overton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701330.epw site_zip_code=38570 site_time_zone_utc_offset=-6 -County "TN, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701350.epw site_zip_code=37096 site_time_zone_utc_offset=-6 -County "TN, Pickett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701370.epw site_zip_code=38549 site_time_zone_utc_offset=-6 -County "TN, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701390.epw site_zip_code=37307 site_time_zone_utc_offset=-5 -County "TN, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701410.epw site_zip_code=38501 site_time_zone_utc_offset=-6 -County "TN, Rhea County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701430.epw site_zip_code=37321 site_time_zone_utc_offset=-5 -County "TN, Roane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701450.epw site_zip_code=37748 site_time_zone_utc_offset=-5 -County "TN, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701470.epw site_zip_code=37172 site_time_zone_utc_offset=-6 -County "TN, Rutherford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701490.epw site_zip_code=37128 site_time_zone_utc_offset=-6 -County "TN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701510.epw site_zip_code=37841 site_time_zone_utc_offset=-5 -County "TN, Sequatchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701530.epw site_zip_code=37327 site_time_zone_utc_offset=-6 -County "TN, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701550.epw site_zip_code=37876 site_time_zone_utc_offset=-5 -County "TN, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701570.epw site_zip_code=38111 site_time_zone_utc_offset=-6 -County "TN, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701590.epw site_zip_code=37030 site_time_zone_utc_offset=-6 -County "TN, Stewart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701610.epw site_zip_code=37058 site_time_zone_utc_offset=-6 -County "TN, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701630.epw site_zip_code=37660 site_time_zone_utc_offset=-5 -County "TN, Sumner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701650.epw site_zip_code=37075 site_time_zone_utc_offset=-6 -County "TN, Tipton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701670.epw site_zip_code=38019 site_time_zone_utc_offset=-6 -County "TN, Trousdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701690.epw site_zip_code=37074 site_time_zone_utc_offset=-6 -County "TN, Unicoi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701710.epw site_zip_code=37650 site_time_zone_utc_offset=-5 -County "TN, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701730.epw site_zip_code=37807 site_time_zone_utc_offset=-5 -County "TN, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701750.epw site_zip_code=38585 site_time_zone_utc_offset=-6 -County "TN, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701770.epw site_zip_code=37110 site_time_zone_utc_offset=-6 -County "TN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701790.epw site_zip_code=37604 site_time_zone_utc_offset=-5 -County "TN, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701810.epw site_zip_code=38485 site_time_zone_utc_offset=-6 -County "TN, Weakley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701830.epw site_zip_code=38237 site_time_zone_utc_offset=-6 -County "TN, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701850.epw site_zip_code=38583 site_time_zone_utc_offset=-6 -County "TN, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701870.epw site_zip_code=37064 site_time_zone_utc_offset=-6 -County "TN, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701890.epw site_zip_code=37122 site_time_zone_utc_offset=-6 -County "TX, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800010.epw site_zip_code=75803 site_time_zone_utc_offset=-6 -County "TX, Andrews County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800030.epw site_zip_code=79714 site_time_zone_utc_offset=-6 -County "TX, Angelina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800050.epw site_zip_code=75904 site_time_zone_utc_offset=-6 -County "TX, Aransas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800070.epw site_zip_code=78382 site_time_zone_utc_offset=-6 -County "TX, Archer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800090.epw site_zip_code=76310 site_time_zone_utc_offset=-6 -County "TX, Armstrong County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800110.epw site_zip_code=79019 site_time_zone_utc_offset=-6 -County "TX, Atascosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800130.epw site_zip_code=78064 site_time_zone_utc_offset=-6 -County "TX, Austin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800150.epw site_zip_code=77474 site_time_zone_utc_offset=-6 -County "TX, Bailey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800170.epw site_zip_code=79347 site_time_zone_utc_offset=-6 -County "TX, Bandera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800190.epw site_zip_code=78003 site_time_zone_utc_offset=-6 -County "TX, Bastrop County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800210.epw site_zip_code=78602 site_time_zone_utc_offset=-6 -County "TX, Baylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800230.epw site_zip_code=76380 site_time_zone_utc_offset=-6 -County "TX, Bee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800250.epw site_zip_code=78102 site_time_zone_utc_offset=-6 -County "TX, Bell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800270.epw site_zip_code=76502 site_time_zone_utc_offset=-6 -County "TX, Bexar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800290.epw site_zip_code=78245 site_time_zone_utc_offset=-6 -County "TX, Blanco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800310.epw site_zip_code=78606 site_time_zone_utc_offset=-6 -County "TX, Borden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800330.epw site_zip_code=79351 site_time_zone_utc_offset=-6 -County "TX, Bosque County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800350.epw site_zip_code=76634 site_time_zone_utc_offset=-6 -County "TX, Bowie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800370.epw site_zip_code=75501 site_time_zone_utc_offset=-6 -County "TX, Brazoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800390.epw site_zip_code=77584 site_time_zone_utc_offset=-6 -County "TX, Brazos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800410.epw site_zip_code=77845 site_time_zone_utc_offset=-6 -County "TX, Brewster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800430.epw site_zip_code=79830 site_time_zone_utc_offset=-6 -County "TX, Briscoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800450.epw site_zip_code=79257 site_time_zone_utc_offset=-6 -County "TX, Brooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800470.epw site_zip_code=78355 site_time_zone_utc_offset=-6 -County "TX, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800490.epw site_zip_code=76801 site_time_zone_utc_offset=-6 -County "TX, Burleson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800510.epw site_zip_code=77836 site_time_zone_utc_offset=-6 -County "TX, Burnet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800530.epw site_zip_code=78654 site_time_zone_utc_offset=-6 -County "TX, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800550.epw site_zip_code=78644 site_time_zone_utc_offset=-6 -County "TX, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800570.epw site_zip_code=77979 site_time_zone_utc_offset=-6 -County "TX, Callahan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800590.epw site_zip_code=79510 site_time_zone_utc_offset=-6 -County "TX, Cameron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800610.epw site_zip_code=78521 site_time_zone_utc_offset=-6 -County "TX, Camp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800630.epw site_zip_code=75686 site_time_zone_utc_offset=-6 -County "TX, Carson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800650.epw site_zip_code=79068 site_time_zone_utc_offset=-6 -County "TX, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800670.epw site_zip_code=75551 site_time_zone_utc_offset=-6 -County "TX, Castro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800690.epw site_zip_code=79027 site_time_zone_utc_offset=-6 -County "TX, Chambers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800710.epw site_zip_code=77523 site_time_zone_utc_offset=-6 -County "TX, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800730.epw site_zip_code=75766 site_time_zone_utc_offset=-6 -County "TX, Childress County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800750.epw site_zip_code=79201 site_time_zone_utc_offset=-6 -County "TX, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800770.epw site_zip_code=76365 site_time_zone_utc_offset=-6 -County "TX, Cochran County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800790.epw site_zip_code=79346 site_time_zone_utc_offset=-6 -County "TX, Coke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800810.epw site_zip_code=76945 site_time_zone_utc_offset=-6 -County "TX, Coleman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800830.epw site_zip_code=76834 site_time_zone_utc_offset=-6 -County "TX, Collin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800850.epw site_zip_code=75035 site_time_zone_utc_offset=-6 -County "TX, Collingsworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800870.epw site_zip_code=79095 site_time_zone_utc_offset=-6 -County "TX, Colorado County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800890.epw site_zip_code=78934 site_time_zone_utc_offset=-6 -County "TX, Comal County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800910.epw site_zip_code=78130 site_time_zone_utc_offset=-6 -County "TX, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800930.epw site_zip_code=76442 site_time_zone_utc_offset=-6 -County "TX, Concho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800950.epw site_zip_code=76837 site_time_zone_utc_offset=-6 -County "TX, Cooke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800970.epw site_zip_code=76240 site_time_zone_utc_offset=-6 -County "TX, Coryell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800990.epw site_zip_code=76522 site_time_zone_utc_offset=-6 -County "TX, Cottle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801010.epw site_zip_code=79248 site_time_zone_utc_offset=-6 -County "TX, Crane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801030.epw site_zip_code=79731 site_time_zone_utc_offset=-6 -County "TX, Crockett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801050.epw site_zip_code=76943 site_time_zone_utc_offset=-6 -County "TX, Crosby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801070.epw site_zip_code=79322 site_time_zone_utc_offset=-6 -County "TX, Culberson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801090.epw site_zip_code=79847 site_time_zone_utc_offset=-6 -County "TX, Dallam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801110.epw site_zip_code=79022 site_time_zone_utc_offset=-6 -County "TX, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801130.epw site_zip_code=75243 site_time_zone_utc_offset=-6 -County "TX, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801150.epw site_zip_code=79331 site_time_zone_utc_offset=-6 -County "TX, DeWitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801230.epw site_zip_code=77954 site_time_zone_utc_offset=-6 -County "TX, Deaf Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801170.epw site_zip_code=79045 site_time_zone_utc_offset=-6 -County "TX, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801190.epw site_zip_code=75432 site_time_zone_utc_offset=-6 -County "TX, Denton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801210.epw site_zip_code=75056 site_time_zone_utc_offset=-6 -County "TX, Dickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801250.epw site_zip_code=79370 site_time_zone_utc_offset=-6 -County "TX, Dimmit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801270.epw site_zip_code=78834 site_time_zone_utc_offset=-6 -County "TX, Donley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801290.epw site_zip_code=79226 site_time_zone_utc_offset=-6 -County "TX, Duval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801310.epw site_zip_code=78384 site_time_zone_utc_offset=-6 -County "TX, Eastland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801330.epw site_zip_code=76437 site_time_zone_utc_offset=-6 -County "TX, Ector County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801350.epw site_zip_code=79762 site_time_zone_utc_offset=-6 -County "TX, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801370.epw site_zip_code=78880 site_time_zone_utc_offset=-6 -County "TX, El Paso County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801410.epw site_zip_code=79936 site_time_zone_utc_offset=-7 -County "TX, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801390.epw site_zip_code=75165 site_time_zone_utc_offset=-6 -County "TX, Erath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801430.epw site_zip_code=76401 site_time_zone_utc_offset=-6 -County "TX, Falls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801450.epw site_zip_code=76661 site_time_zone_utc_offset=-6 -County "TX, Fannin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801470.epw site_zip_code=75418 site_time_zone_utc_offset=-6 -County "TX, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801490.epw site_zip_code=78945 site_time_zone_utc_offset=-6 -County "TX, Fisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801510.epw site_zip_code=79546 site_time_zone_utc_offset=-6 -County "TX, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801530.epw site_zip_code=79235 site_time_zone_utc_offset=-6 -County "TX, Foard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801550.epw site_zip_code=79227 site_time_zone_utc_offset=-6 -County "TX, Fort Bend County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801570.epw site_zip_code=77494 site_time_zone_utc_offset=-6 -County "TX, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801590.epw site_zip_code=75457 site_time_zone_utc_offset=-6 -County "TX, Freestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801610.epw site_zip_code=75860 site_time_zone_utc_offset=-6 -County "TX, Frio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801630.epw site_zip_code=78061 site_time_zone_utc_offset=-6 -County "TX, Gaines County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801650.epw site_zip_code=79360 site_time_zone_utc_offset=-6 -County "TX, Galveston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801670.epw site_zip_code=77573 site_time_zone_utc_offset=-6 -County "TX, Garza County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801690.epw site_zip_code=79356 site_time_zone_utc_offset=-6 -County "TX, Gillespie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801710.epw site_zip_code=78624 site_time_zone_utc_offset=-6 -County "TX, Glasscock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801730.epw site_zip_code=79739 site_time_zone_utc_offset=-6 -County "TX, Goliad County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801750.epw site_zip_code=77963 site_time_zone_utc_offset=-6 -County "TX, Gonzales County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801770.epw site_zip_code=78629 site_time_zone_utc_offset=-6 -County "TX, Gray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801790.epw site_zip_code=79065 site_time_zone_utc_offset=-6 -County "TX, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801810.epw site_zip_code=75092 site_time_zone_utc_offset=-6 -County "TX, Gregg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801830.epw site_zip_code=75605 site_time_zone_utc_offset=-6 -County "TX, Grimes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801850.epw site_zip_code=77868 site_time_zone_utc_offset=-6 -County "TX, Guadalupe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801870.epw site_zip_code=78155 site_time_zone_utc_offset=-6 -County "TX, Hale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801890.epw site_zip_code=79072 site_time_zone_utc_offset=-6 -County "TX, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801910.epw site_zip_code=79245 site_time_zone_utc_offset=-6 -County "TX, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801930.epw site_zip_code=76531 site_time_zone_utc_offset=-6 -County "TX, Hansford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801950.epw site_zip_code=79081 site_time_zone_utc_offset=-6 -County "TX, Hardeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801970.epw site_zip_code=79252 site_time_zone_utc_offset=-6 -County "TX, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801990.epw site_zip_code=77657 site_time_zone_utc_offset=-6 -County "TX, Harris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802010.epw site_zip_code=77449 site_time_zone_utc_offset=-6 -County "TX, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802030.epw site_zip_code=75672 site_time_zone_utc_offset=-6 -County "TX, Hartley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802050.epw site_zip_code=79022 site_time_zone_utc_offset=-6 -County "TX, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802070.epw site_zip_code=79521 site_time_zone_utc_offset=-6 -County "TX, Hays County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802090.epw site_zip_code=78666 site_time_zone_utc_offset=-6 -County "TX, Hemphill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802110.epw site_zip_code=79014 site_time_zone_utc_offset=-6 -County "TX, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802130.epw site_zip_code=75156 site_time_zone_utc_offset=-6 -County "TX, Hidalgo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802150.epw site_zip_code=78572 site_time_zone_utc_offset=-6 -County "TX, Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802170.epw site_zip_code=76692 site_time_zone_utc_offset=-6 -County "TX, Hockley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802190.epw site_zip_code=79336 site_time_zone_utc_offset=-6 -County "TX, Hood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802210.epw site_zip_code=76048 site_time_zone_utc_offset=-6 -County "TX, Hopkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802230.epw site_zip_code=75482 site_time_zone_utc_offset=-6 -County "TX, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802250.epw site_zip_code=75835 site_time_zone_utc_offset=-6 -County "TX, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802270.epw site_zip_code=79720 site_time_zone_utc_offset=-6 -County "TX, Hudspeth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802290.epw site_zip_code=79839 site_time_zone_utc_offset=-7 -County "TX, Hunt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802310.epw site_zip_code=75401 site_time_zone_utc_offset=-6 -County "TX, Hutchinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802330.epw site_zip_code=79007 site_time_zone_utc_offset=-6 -County "TX, Irion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802350.epw site_zip_code=76941 site_time_zone_utc_offset=-6 -County "TX, Jack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802370.epw site_zip_code=76458 site_time_zone_utc_offset=-6 -County "TX, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802390.epw site_zip_code=77957 site_time_zone_utc_offset=-6 -County "TX, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802410.epw site_zip_code=75951 site_time_zone_utc_offset=-6 -County "TX, Jeff Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802430.epw site_zip_code=79734 site_time_zone_utc_offset=-6 -County "TX, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802450.epw site_zip_code=77642 site_time_zone_utc_offset=-6 -County "TX, Jim Hogg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802470.epw site_zip_code=78361 site_time_zone_utc_offset=-6 -County "TX, Jim Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802490.epw site_zip_code=78332 site_time_zone_utc_offset=-6 -County "TX, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802510.epw site_zip_code=76028 site_time_zone_utc_offset=-6 -County "TX, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802530.epw site_zip_code=79501 site_time_zone_utc_offset=-6 -County "TX, Karnes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802550.epw site_zip_code=78119 site_time_zone_utc_offset=-6 -County "TX, Kaufman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802570.epw site_zip_code=75126 site_time_zone_utc_offset=-6 -County "TX, Kendall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802590.epw site_zip_code=78006 site_time_zone_utc_offset=-6 -County "TX, Kenedy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802610.epw site_zip_code=78385 site_time_zone_utc_offset=-6 -County "TX, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802630.epw site_zip_code=79549 site_time_zone_utc_offset=-6 -County "TX, Kerr County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802650.epw site_zip_code=78028 site_time_zone_utc_offset=-6 -County "TX, Kimble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802670.epw site_zip_code=76849 site_time_zone_utc_offset=-6 -County "TX, King County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802690.epw site_zip_code=79248 site_time_zone_utc_offset=-6 -County "TX, Kinney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802710.epw site_zip_code=78832 site_time_zone_utc_offset=-6 -County "TX, Kleberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802730.epw site_zip_code=78363 site_time_zone_utc_offset=-6 -County "TX, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802750.epw site_zip_code=76371 site_time_zone_utc_offset=-6 -County "TX, La Salle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802830.epw site_zip_code=78014 site_time_zone_utc_offset=-6 -County "TX, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802770.epw site_zip_code=75460 site_time_zone_utc_offset=-6 -County "TX, Lamb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802790.epw site_zip_code=79339 site_time_zone_utc_offset=-6 -County "TX, Lampasas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802810.epw site_zip_code=76550 site_time_zone_utc_offset=-6 -County "TX, Lavaca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802850.epw site_zip_code=77964 site_time_zone_utc_offset=-6 -County "TX, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802870.epw site_zip_code=78942 site_time_zone_utc_offset=-6 -County "TX, Leon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802890.epw site_zip_code=75831 site_time_zone_utc_offset=-6 -County "TX, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802910.epw site_zip_code=77327 site_time_zone_utc_offset=-6 -County "TX, Limestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802930.epw site_zip_code=76667 site_time_zone_utc_offset=-6 -County "TX, Lipscomb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802950.epw site_zip_code=79005 site_time_zone_utc_offset=-6 -County "TX, Live Oak County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802970.epw site_zip_code=78022 site_time_zone_utc_offset=-6 -County "TX, Llano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802990.epw site_zip_code=78657 site_time_zone_utc_offset=-6 -County "TX, Loving County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803010.epw site_zip_code=79754 site_time_zone_utc_offset=-6 -County "TX, Lubbock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803030.epw site_zip_code=79424 site_time_zone_utc_offset=-6 -County "TX, Lynn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803050.epw site_zip_code=79373 site_time_zone_utc_offset=-6 -County "TX, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803130.epw site_zip_code=77864 site_time_zone_utc_offset=-6 -County "TX, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803150.epw site_zip_code=75657 site_time_zone_utc_offset=-6 -County "TX, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803170.epw site_zip_code=79782 site_time_zone_utc_offset=-6 -County "TX, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803190.epw site_zip_code=76856 site_time_zone_utc_offset=-6 -County "TX, Matagorda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803210.epw site_zip_code=77414 site_time_zone_utc_offset=-6 -County "TX, Maverick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803230.epw site_zip_code=78852 site_time_zone_utc_offset=-6 -County "TX, McCulloch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803070.epw site_zip_code=76825 site_time_zone_utc_offset=-6 -County "TX, McLennan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803090.epw site_zip_code=76706 site_time_zone_utc_offset=-6 -County "TX, McMullen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803110.epw site_zip_code=78072 site_time_zone_utc_offset=-6 -County "TX, Medina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803250.epw site_zip_code=78861 site_time_zone_utc_offset=-6 -County "TX, Menard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803270.epw site_zip_code=76859 site_time_zone_utc_offset=-6 -County "TX, Midland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803290.epw site_zip_code=79705 site_time_zone_utc_offset=-6 -County "TX, Milam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803310.epw site_zip_code=76567 site_time_zone_utc_offset=-6 -County "TX, Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803330.epw site_zip_code=76844 site_time_zone_utc_offset=-6 -County "TX, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803350.epw site_zip_code=79512 site_time_zone_utc_offset=-6 -County "TX, Montague County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803370.epw site_zip_code=76230 site_time_zone_utc_offset=-6 -County "TX, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803390.epw site_zip_code=77386 site_time_zone_utc_offset=-6 -County "TX, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803410.epw site_zip_code=79029 site_time_zone_utc_offset=-6 -County "TX, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803430.epw site_zip_code=75638 site_time_zone_utc_offset=-6 -County "TX, Motley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803450.epw site_zip_code=79234 site_time_zone_utc_offset=-6 -County "TX, Nacogdoches County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803470.epw site_zip_code=75964 site_time_zone_utc_offset=-6 -County "TX, Navarro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803490.epw site_zip_code=75110 site_time_zone_utc_offset=-6 -County "TX, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803510.epw site_zip_code=75966 site_time_zone_utc_offset=-6 -County "TX, Nolan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803530.epw site_zip_code=79556 site_time_zone_utc_offset=-6 -County "TX, Nueces County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803550.epw site_zip_code=78414 site_time_zone_utc_offset=-6 -County "TX, Ochiltree County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803570.epw site_zip_code=79070 site_time_zone_utc_offset=-6 -County "TX, Oldham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803590.epw site_zip_code=79092 site_time_zone_utc_offset=-6 -County "TX, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803610.epw site_zip_code=77630 site_time_zone_utc_offset=-6 -County "TX, Palo Pinto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803630.epw site_zip_code=76067 site_time_zone_utc_offset=-6 -County "TX, Panola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803650.epw site_zip_code=75633 site_time_zone_utc_offset=-6 -County "TX, Parker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803670.epw site_zip_code=76087 site_time_zone_utc_offset=-6 -County "TX, Parmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803690.epw site_zip_code=79035 site_time_zone_utc_offset=-6 -County "TX, Pecos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803710.epw site_zip_code=79735 site_time_zone_utc_offset=-6 -County "TX, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803730.epw site_zip_code=77351 site_time_zone_utc_offset=-6 -County "TX, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803750.epw site_zip_code=79107 site_time_zone_utc_offset=-6 -County "TX, Presidio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803770.epw site_zip_code=79845 site_time_zone_utc_offset=-6 -County "TX, Rains County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803790.epw site_zip_code=75440 site_time_zone_utc_offset=-6 -County "TX, Randall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803810.epw site_zip_code=79109 site_time_zone_utc_offset=-6 -County "TX, Reagan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803830.epw site_zip_code=76932 site_time_zone_utc_offset=-6 -County "TX, Real County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803850.epw site_zip_code=78873 site_time_zone_utc_offset=-6 -County "TX, Red River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803870.epw site_zip_code=75426 site_time_zone_utc_offset=-6 -County "TX, Reeves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803890.epw site_zip_code=79772 site_time_zone_utc_offset=-6 -County "TX, Refugio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803910.epw site_zip_code=78377 site_time_zone_utc_offset=-6 -County "TX, Roberts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803930.epw site_zip_code=79059 site_time_zone_utc_offset=-6 -County "TX, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803950.epw site_zip_code=77859 site_time_zone_utc_offset=-6 -County "TX, Rockwall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803970.epw site_zip_code=75087 site_time_zone_utc_offset=-6 -County "TX, Runnels County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803990.epw site_zip_code=76821 site_time_zone_utc_offset=-6 -County "TX, Rusk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804010.epw site_zip_code=75652 site_time_zone_utc_offset=-6 -County "TX, Sabine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804030.epw site_zip_code=75948 site_time_zone_utc_offset=-6 -County "TX, San Augustine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804050.epw site_zip_code=75972 site_time_zone_utc_offset=-6 -County "TX, San Jacinto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804070.epw site_zip_code=77331 site_time_zone_utc_offset=-6 -County "TX, San Patricio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804090.epw site_zip_code=78374 site_time_zone_utc_offset=-6 -County "TX, San Saba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804110.epw site_zip_code=76877 site_time_zone_utc_offset=-6 -County "TX, Schleicher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804130.epw site_zip_code=76936 site_time_zone_utc_offset=-6 -County "TX, Scurry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804150.epw site_zip_code=79549 site_time_zone_utc_offset=-6 -County "TX, Shackelford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804170.epw site_zip_code=76430 site_time_zone_utc_offset=-6 -County "TX, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804190.epw site_zip_code=75935 site_time_zone_utc_offset=-6 -County "TX, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804210.epw site_zip_code=79084 site_time_zone_utc_offset=-6 -County "TX, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804230.epw site_zip_code=75703 site_time_zone_utc_offset=-6 -County "TX, Somervell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804250.epw site_zip_code=76043 site_time_zone_utc_offset=-6 -County "TX, Starr County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804270.epw site_zip_code=78582 site_time_zone_utc_offset=-6 -County "TX, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804290.epw site_zip_code=76424 site_time_zone_utc_offset=-6 -County "TX, Sterling County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804310.epw site_zip_code=76951 site_time_zone_utc_offset=-6 -County "TX, Stonewall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804330.epw site_zip_code=79502 site_time_zone_utc_offset=-6 -County "TX, Sutton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804350.epw site_zip_code=76950 site_time_zone_utc_offset=-6 -County "TX, Swisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804370.epw site_zip_code=79088 site_time_zone_utc_offset=-6 -County "TX, Tarrant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804390.epw site_zip_code=76244 site_time_zone_utc_offset=-6 -County "TX, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804410.epw site_zip_code=79605 site_time_zone_utc_offset=-6 -County "TX, Terrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804430.epw site_zip_code=78851 site_time_zone_utc_offset=-6 -County "TX, Terry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804450.epw site_zip_code=79316 site_time_zone_utc_offset=-6 -County "TX, Throckmorton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804470.epw site_zip_code=76483 site_time_zone_utc_offset=-6 -County "TX, Titus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804490.epw site_zip_code=75455 site_time_zone_utc_offset=-6 -County "TX, Tom Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804510.epw site_zip_code=76904 site_time_zone_utc_offset=-6 -County "TX, Travis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804530.epw site_zip_code=78660 site_time_zone_utc_offset=-6 -County "TX, Trinity County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804550.epw site_zip_code=75862 site_time_zone_utc_offset=-6 -County "TX, Tyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804570.epw site_zip_code=75979 site_time_zone_utc_offset=-6 -County "TX, Upshur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804590.epw site_zip_code=75644 site_time_zone_utc_offset=-6 -County "TX, Upton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804610.epw site_zip_code=79778 site_time_zone_utc_offset=-6 -County "TX, Uvalde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804630.epw site_zip_code=78801 site_time_zone_utc_offset=-6 -County "TX, Val Verde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804650.epw site_zip_code=78840 site_time_zone_utc_offset=-6 -County "TX, Van Zandt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804670.epw site_zip_code=75103 site_time_zone_utc_offset=-6 -County "TX, Victoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804690.epw site_zip_code=77901 site_time_zone_utc_offset=-6 -County "TX, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804710.epw site_zip_code=77340 site_time_zone_utc_offset=-6 -County "TX, Waller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804730.epw site_zip_code=77423 site_time_zone_utc_offset=-6 -County "TX, Ward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804750.epw site_zip_code=79756 site_time_zone_utc_offset=-6 -County "TX, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804770.epw site_zip_code=77833 site_time_zone_utc_offset=-6 -County "TX, Webb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804790.epw site_zip_code=78045 site_time_zone_utc_offset=-6 -County "TX, Wharton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804810.epw site_zip_code=77437 site_time_zone_utc_offset=-6 -County "TX, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804830.epw site_zip_code=79079 site_time_zone_utc_offset=-6 -County "TX, Wichita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804850.epw site_zip_code=76311 site_time_zone_utc_offset=-6 -County "TX, Wilbarger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804870.epw site_zip_code=76384 site_time_zone_utc_offset=-6 -County "TX, Willacy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804890.epw site_zip_code=78580 site_time_zone_utc_offset=-6 -County "TX, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804910.epw site_zip_code=78641 site_time_zone_utc_offset=-6 -County "TX, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804930.epw site_zip_code=78114 site_time_zone_utc_offset=-6 -County "TX, Winkler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804950.epw site_zip_code=79745 site_time_zone_utc_offset=-6 -County "TX, Wise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804970.epw site_zip_code=76234 site_time_zone_utc_offset=-6 -County "TX, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804990.epw site_zip_code=75773 site_time_zone_utc_offset=-6 -County "TX, Yoakum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805010.epw site_zip_code=79323 site_time_zone_utc_offset=-6 -County "TX, Young County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805030.epw site_zip_code=76450 site_time_zone_utc_offset=-6 -County "TX, Zapata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805050.epw site_zip_code=78076 site_time_zone_utc_offset=-6 -County "TX, Zavala County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805070.epw site_zip_code=78839 site_time_zone_utc_offset=-6 -County "UT, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900010.epw site_zip_code=84713 site_time_zone_utc_offset=-7 -County "UT, Box Elder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900030.epw site_zip_code=84302 site_time_zone_utc_offset=-7 -County "UT, Cache County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900050.epw site_zip_code=84321 site_time_zone_utc_offset=-7 -County "UT, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900070.epw site_zip_code=84501 site_time_zone_utc_offset=-7 -County "UT, Daggett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900090.epw site_zip_code=84046 site_time_zone_utc_offset=-7 -County "UT, Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900110.epw site_zip_code=84015 site_time_zone_utc_offset=-7 -County "UT, Duchesne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900130.epw site_zip_code=84066 site_time_zone_utc_offset=-7 -County "UT, Emery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900150.epw site_zip_code=84528 site_time_zone_utc_offset=-7 -County "UT, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900170.epw site_zip_code=84726 site_time_zone_utc_offset=-7 -County "UT, Grand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900190.epw site_zip_code=84532 site_time_zone_utc_offset=-7 -County "UT, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900210.epw site_zip_code=84721 site_time_zone_utc_offset=-7 -County "UT, Juab County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900230.epw site_zip_code=84648 site_time_zone_utc_offset=-7 -County "UT, Kane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900250.epw site_zip_code=84741 site_time_zone_utc_offset=-7 -County "UT, Millard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900270.epw site_zip_code=84624 site_time_zone_utc_offset=-7 -County "UT, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900290.epw site_zip_code=84050 site_time_zone_utc_offset=-7 -County "UT, Piute County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900310.epw site_zip_code=84750 site_time_zone_utc_offset=-7 -County "UT, Rich County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900330.epw site_zip_code=84028 site_time_zone_utc_offset=-7 -County "UT, Salt Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900350.epw site_zip_code=84096 site_time_zone_utc_offset=-7 -County "UT, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900370.epw site_zip_code=84511 site_time_zone_utc_offset=-7 -County "UT, Sanpete County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900390.epw site_zip_code=84627 site_time_zone_utc_offset=-7 -County "UT, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900410.epw site_zip_code=84701 site_time_zone_utc_offset=-7 -County "UT, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900430.epw site_zip_code=84098 site_time_zone_utc_offset=-7 -County "UT, Tooele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900450.epw site_zip_code=84074 site_time_zone_utc_offset=-7 -County "UT, Uintah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900470.epw site_zip_code=84078 site_time_zone_utc_offset=-7 -County "UT, Utah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900490.epw site_zip_code=84043 site_time_zone_utc_offset=-7 -County "UT, Wasatch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900510.epw site_zip_code=84032 site_time_zone_utc_offset=-7 -County "UT, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900530.epw site_zip_code=84770 site_time_zone_utc_offset=-7 -County "UT, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900550.epw site_zip_code=84775 site_time_zone_utc_offset=-7 -County "UT, Weber County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900570.epw site_zip_code=84404 site_time_zone_utc_offset=-7 -County "VA, Accomack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100010.epw site_zip_code=23336 site_time_zone_utc_offset=-5 -County "VA, Albemarle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100030.epw site_zip_code=22901 site_time_zone_utc_offset=-5 -County "VA, Alexandria city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105100.epw site_zip_code=22304 site_time_zone_utc_offset=-5 -County "VA, Alleghany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100050.epw site_zip_code=24426 site_time_zone_utc_offset=-5 -County "VA, Amelia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100070.epw site_zip_code=23002 site_time_zone_utc_offset=-5 -County "VA, Amherst County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100090.epw site_zip_code=24572 site_time_zone_utc_offset=-5 -County "VA, Appomattox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100110.epw site_zip_code=24522 site_time_zone_utc_offset=-5 -County "VA, Arlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100130.epw site_zip_code=22204 site_time_zone_utc_offset=-5 -County "VA, Augusta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100150.epw site_zip_code=24401 site_time_zone_utc_offset=-5 -County "VA, Bath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100170.epw site_zip_code=24460 site_time_zone_utc_offset=-5 -County "VA, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100190.epw site_zip_code=24551 site_time_zone_utc_offset=-5 -County "VA, Bland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100210.epw site_zip_code=24315 site_time_zone_utc_offset=-5 -County "VA, Botetourt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100230.epw site_zip_code=24175 site_time_zone_utc_offset=-5 -County "VA, Bristol city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105200.epw site_zip_code=24201 site_time_zone_utc_offset=-5 -County "VA, Brunswick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100250.epw site_zip_code=23868 site_time_zone_utc_offset=-5 -County "VA, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100270.epw site_zip_code=24614 site_time_zone_utc_offset=-5 -County "VA, Buckingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100290.epw site_zip_code=23936 site_time_zone_utc_offset=-5 -County "VA, Buena Vista city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105300.epw site_zip_code=24416 site_time_zone_utc_offset=-5 -County "VA, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100310.epw site_zip_code=24502 site_time_zone_utc_offset=-5 -County "VA, Caroline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100330.epw site_zip_code=22546 site_time_zone_utc_offset=-5 -County "VA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100350.epw site_zip_code=24343 site_time_zone_utc_offset=-5 -County "VA, Charles City County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100360.epw site_zip_code=23030 site_time_zone_utc_offset=-5 -County "VA, Charlotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100370.epw site_zip_code=23923 site_time_zone_utc_offset=-5 -County "VA, Charlottesville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105400.epw site_zip_code=22903 site_time_zone_utc_offset=-5 -County "VA, Chesapeake city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105500.epw site_zip_code=23320 site_time_zone_utc_offset=-5 -County "VA, Chesterfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100410.epw site_zip_code=23112 site_time_zone_utc_offset=-5 -County "VA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100430.epw site_zip_code=22611 site_time_zone_utc_offset=-5 -County "VA, Colonial Heights city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105700.epw site_zip_code=23834 site_time_zone_utc_offset=-5 -County "VA, Covington city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105800.epw site_zip_code=24426 site_time_zone_utc_offset=-5 -County "VA, Craig County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100450.epw site_zip_code=24127 site_time_zone_utc_offset=-5 -County "VA, Culpeper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100470.epw site_zip_code=22701 site_time_zone_utc_offset=-5 -County "VA, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100490.epw site_zip_code=23040 site_time_zone_utc_offset=-5 -County "VA, Danville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105900.epw site_zip_code=24541 site_time_zone_utc_offset=-5 -County "VA, Dickenson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100510.epw site_zip_code=24228 site_time_zone_utc_offset=-5 -County "VA, Dinwiddie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100530.epw site_zip_code=23803 site_time_zone_utc_offset=-5 -County "VA, Emporia city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105950.epw site_zip_code=23847 site_time_zone_utc_offset=-5 -County "VA, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100570.epw site_zip_code=22560 site_time_zone_utc_offset=-5 -County "VA, Fairfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100590.epw site_zip_code=20171 site_time_zone_utc_offset=-5 -County "VA, Fairfax city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106000.epw site_zip_code=22030 site_time_zone_utc_offset=-5 -County "VA, Falls Church city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106100.epw site_zip_code=22046 site_time_zone_utc_offset=-5 -County "VA, Fauquier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100610.epw site_zip_code=20187 site_time_zone_utc_offset=-5 -County "VA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100630.epw site_zip_code=24091 site_time_zone_utc_offset=-5 -County "VA, Fluvanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100650.epw site_zip_code=22963 site_time_zone_utc_offset=-5 -County "VA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100670.epw site_zip_code=24151 site_time_zone_utc_offset=-5 -County "VA, Franklin city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106200.epw site_zip_code=23851 site_time_zone_utc_offset=-5 -County "VA, Frederick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100690.epw site_zip_code=22602 site_time_zone_utc_offset=-5 -County "VA, Fredericksburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106300.epw site_zip_code=22401 site_time_zone_utc_offset=-5 -County "VA, Galax city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106400.epw site_zip_code=24333 site_time_zone_utc_offset=-5 -County "VA, Giles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100710.epw site_zip_code=24134 site_time_zone_utc_offset=-5 -County "VA, Gloucester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100730.epw site_zip_code=23061 site_time_zone_utc_offset=-5 -County "VA, Goochland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100750.epw site_zip_code=23103 site_time_zone_utc_offset=-5 -County "VA, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100770.epw site_zip_code=24333 site_time_zone_utc_offset=-5 -County "VA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100790.epw site_zip_code=22968 site_time_zone_utc_offset=-5 -County "VA, Greensville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100810.epw site_zip_code=23847 site_time_zone_utc_offset=-5 -County "VA, Halifax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100830.epw site_zip_code=24592 site_time_zone_utc_offset=-5 -County "VA, Hampton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106500.epw site_zip_code=23666 site_time_zone_utc_offset=-5 -County "VA, Hanover County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100850.epw site_zip_code=23111 site_time_zone_utc_offset=-5 -County "VA, Harrisonburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106600.epw site_zip_code=22801 site_time_zone_utc_offset=-5 -County "VA, Henrico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100870.epw site_zip_code=23228 site_time_zone_utc_offset=-5 -County "VA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100890.epw site_zip_code=24112 site_time_zone_utc_offset=-5 -County "VA, Highland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100910.epw site_zip_code=24465 site_time_zone_utc_offset=-5 -County "VA, Hopewell city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106700.epw site_zip_code=23860 site_time_zone_utc_offset=-5 -County "VA, Isle of Wight County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100930.epw site_zip_code=23430 site_time_zone_utc_offset=-5 -County "VA, James City County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100950.epw site_zip_code=23188 site_time_zone_utc_offset=-5 -County "VA, King George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100990.epw site_zip_code=22485 site_time_zone_utc_offset=-5 -County "VA, King William County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101010.epw site_zip_code=23009 site_time_zone_utc_offset=-5 -County "VA, King and Queen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100970.epw site_zip_code=23156 site_time_zone_utc_offset=-5 -County "VA, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101030.epw site_zip_code=22503 site_time_zone_utc_offset=-5 -County "VA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101050.epw site_zip_code=24263 site_time_zone_utc_offset=-5 -County "VA, Lexington city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106780.epw site_zip_code=24450 site_time_zone_utc_offset=-5 -County "VA, Loudoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101070.epw site_zip_code=20189 site_time_zone_utc_offset=-5 -County "VA, Louisa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101090.epw site_zip_code=23093 site_time_zone_utc_offset=-5 -County "VA, Lunenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101110.epw site_zip_code=23974 site_time_zone_utc_offset=-5 -County "VA, Lynchburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106800.epw site_zip_code=24502 site_time_zone_utc_offset=-5 -County "VA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101130.epw site_zip_code=22727 site_time_zone_utc_offset=-5 -County "VA, Manassas Park city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106850.epw site_zip_code=20111 site_time_zone_utc_offset=-5 -County "VA, Manassas city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106830.epw site_zip_code=20110 site_time_zone_utc_offset=-5 -County "VA, Martinsville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106900.epw site_zip_code=24112 site_time_zone_utc_offset=-5 -County "VA, Mathews County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101150.epw site_zip_code=23109 site_time_zone_utc_offset=-5 -County "VA, Mecklenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101170.epw site_zip_code=23970 site_time_zone_utc_offset=-5 -County "VA, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101190.epw site_zip_code=23043 site_time_zone_utc_offset=-5 -County "VA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101210.epw site_zip_code=24060 site_time_zone_utc_offset=-5 -County "VA, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101250.epw site_zip_code=22967 site_time_zone_utc_offset=-5 -County "VA, New Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101270.epw site_zip_code=23141 site_time_zone_utc_offset=-5 -County "VA, Newport News city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107000.epw site_zip_code=23608 site_time_zone_utc_offset=-5 -County "VA, Norfolk city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107100.epw site_zip_code=23503 site_time_zone_utc_offset=-5 -County "VA, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101310.epw site_zip_code=23310 site_time_zone_utc_offset=-5 -County "VA, Northumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101330.epw site_zip_code=22473 site_time_zone_utc_offset=-5 -County "VA, Norton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107200.epw site_zip_code=24273 site_time_zone_utc_offset=-5 -County "VA, Nottoway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101350.epw site_zip_code=23824 site_time_zone_utc_offset=-5 -County "VA, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101370.epw site_zip_code=22508 site_time_zone_utc_offset=-5 -County "VA, Page County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101390.epw site_zip_code=22835 site_time_zone_utc_offset=-5 -County "VA, Patrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101410.epw site_zip_code=24171 site_time_zone_utc_offset=-5 -County "VA, Petersburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107300.epw site_zip_code=23803 site_time_zone_utc_offset=-5 -County "VA, Pittsylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101430.epw site_zip_code=24540 site_time_zone_utc_offset=-5 -County "VA, Poquoson city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107350.epw site_zip_code=23662 site_time_zone_utc_offset=-5 -County "VA, Portsmouth city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107400.epw site_zip_code=23703 site_time_zone_utc_offset=-5 -County "VA, Powhatan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101450.epw site_zip_code=23139 site_time_zone_utc_offset=-5 -County "VA, Prince Edward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101470.epw site_zip_code=23901 site_time_zone_utc_offset=-5 -County "VA, Prince George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101490.epw site_zip_code=23875 site_time_zone_utc_offset=-5 -County "VA, Prince William County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101530.epw site_zip_code=22191 site_time_zone_utc_offset=-5 -County "VA, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101550.epw site_zip_code=24301 site_time_zone_utc_offset=-5 -County "VA, Radford city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107500.epw site_zip_code=24141 site_time_zone_utc_offset=-5 -County "VA, Rappahannock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101570.epw site_zip_code=20106 site_time_zone_utc_offset=-5 -County "VA, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101590.epw site_zip_code=22572 site_time_zone_utc_offset=-5 -County "VA, Richmond city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107600.epw site_zip_code=23220 site_time_zone_utc_offset=-5 -County "VA, Roanoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101610.epw site_zip_code=24018 site_time_zone_utc_offset=-5 -County "VA, Roanoke city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107700.epw site_zip_code=24017 site_time_zone_utc_offset=-5 -County "VA, Rockbridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101630.epw site_zip_code=24450 site_time_zone_utc_offset=-5 -County "VA, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101650.epw site_zip_code=22801 site_time_zone_utc_offset=-5 -County "VA, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101670.epw site_zip_code=24266 site_time_zone_utc_offset=-5 -County "VA, Salem city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107750.epw site_zip_code=24153 site_time_zone_utc_offset=-5 -County "VA, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101690.epw site_zip_code=24251 site_time_zone_utc_offset=-5 -County "VA, Shenandoah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101710.epw site_zip_code=22657 site_time_zone_utc_offset=-5 -County "VA, Smyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101730.epw site_zip_code=24354 site_time_zone_utc_offset=-5 -County "VA, Southampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101750.epw site_zip_code=23851 site_time_zone_utc_offset=-5 -County "VA, Spotsylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101770.epw site_zip_code=22407 site_time_zone_utc_offset=-5 -County "VA, Stafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101790.epw site_zip_code=22554 site_time_zone_utc_offset=-5 -County "VA, Staunton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107900.epw site_zip_code=24401 site_time_zone_utc_offset=-5 -County "VA, Suffolk city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108000.epw site_zip_code=23434 site_time_zone_utc_offset=-5 -County "VA, Surry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101810.epw site_zip_code=23883 site_time_zone_utc_offset=-5 -County "VA, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101830.epw site_zip_code=23890 site_time_zone_utc_offset=-5 -County "VA, Tazewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101850.epw site_zip_code=24605 site_time_zone_utc_offset=-5 -County "VA, Virginia Beach city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108100.epw site_zip_code=23462 site_time_zone_utc_offset=-5 -County "VA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101870.epw site_zip_code=22630 site_time_zone_utc_offset=-5 -County "VA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101910.epw site_zip_code=24210 site_time_zone_utc_offset=-5 -County "VA, Waynesboro city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108200.epw site_zip_code=22980 site_time_zone_utc_offset=-5 -County "VA, Westmoreland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101930.epw site_zip_code=22443 site_time_zone_utc_offset=-5 -County "VA, Williamsburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108300.epw site_zip_code=23185 site_time_zone_utc_offset=-5 -County "VA, Winchester city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108400.epw site_zip_code=22601 site_time_zone_utc_offset=-5 -County "VA, Wise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101950.epw site_zip_code=24219 site_time_zone_utc_offset=-5 -County "VA, Wythe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101970.epw site_zip_code=24382 site_time_zone_utc_offset=-5 -County "VA, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101990.epw site_zip_code=23692 site_time_zone_utc_offset=-5 -County "VT, Addison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000010.epw site_zip_code=05753 site_time_zone_utc_offset=-5 -County "VT, Bennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000030.epw site_zip_code=05201 site_time_zone_utc_offset=-5 -County "VT, Caledonia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000050.epw site_zip_code=05819 site_time_zone_utc_offset=-5 -County "VT, Chittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000070.epw site_zip_code=05401 site_time_zone_utc_offset=-5 -County "VT, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000090.epw site_zip_code=05906 site_time_zone_utc_offset=-5 -County "VT, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000110.epw site_zip_code=05478 site_time_zone_utc_offset=-5 -County "VT, Grand Isle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000130.epw site_zip_code=05440 site_time_zone_utc_offset=-5 -County "VT, Lamoille County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000150.epw site_zip_code=05672 site_time_zone_utc_offset=-5 -County "VT, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000170.epw site_zip_code=05060 site_time_zone_utc_offset=-5 -County "VT, Orleans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000190.epw site_zip_code=05855 site_time_zone_utc_offset=-5 -County "VT, Rutland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000210.epw site_zip_code=05701 site_time_zone_utc_offset=-5 -County "VT, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000230.epw site_zip_code=05641 site_time_zone_utc_offset=-5 -County "VT, Windham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000250.epw site_zip_code=05301 site_time_zone_utc_offset=-5 -County "VT, Windsor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000270.epw site_zip_code=05156 site_time_zone_utc_offset=-5 -County "WA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300010.epw site_zip_code=99344 site_time_zone_utc_offset=-8 -County "WA, Asotin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300030.epw site_zip_code=99403 site_time_zone_utc_offset=-8 -County "WA, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300050.epw site_zip_code=99336 site_time_zone_utc_offset=-8 -County "WA, Chelan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300070.epw site_zip_code=98801 site_time_zone_utc_offset=-8 -County "WA, Clallam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300090.epw site_zip_code=98382 site_time_zone_utc_offset=-8 -County "WA, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300110.epw site_zip_code=98682 site_time_zone_utc_offset=-8 -County "WA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300130.epw site_zip_code=99328 site_time_zone_utc_offset=-8 -County "WA, Cowlitz County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300150.epw site_zip_code=98632 site_time_zone_utc_offset=-8 -County "WA, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300170.epw site_zip_code=98802 site_time_zone_utc_offset=-8 -County "WA, Ferry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300190.epw site_zip_code=99166 site_time_zone_utc_offset=-8 -County "WA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300210.epw site_zip_code=99301 site_time_zone_utc_offset=-8 -County "WA, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300230.epw site_zip_code=99347 site_time_zone_utc_offset=-8 -County "WA, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300250.epw site_zip_code=98837 site_time_zone_utc_offset=-8 -County "WA, Grays Harbor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300270.epw site_zip_code=98520 site_time_zone_utc_offset=-8 -County "WA, Island County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300290.epw site_zip_code=98277 site_time_zone_utc_offset=-8 -County "WA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300310.epw site_zip_code=98368 site_time_zone_utc_offset=-8 -County "WA, King County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300330.epw site_zip_code=98052 site_time_zone_utc_offset=-8 -County "WA, Kitsap County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300350.epw site_zip_code=98312 site_time_zone_utc_offset=-8 -County "WA, Kittitas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300370.epw site_zip_code=98926 site_time_zone_utc_offset=-8 -County "WA, Klickitat County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300390.epw site_zip_code=98672 site_time_zone_utc_offset=-8 -County "WA, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300410.epw site_zip_code=98531 site_time_zone_utc_offset=-8 -County "WA, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300430.epw site_zip_code=99122 site_time_zone_utc_offset=-8 -County "WA, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300450.epw site_zip_code=98584 site_time_zone_utc_offset=-8 -County "WA, Okanogan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300470.epw site_zip_code=98841 site_time_zone_utc_offset=-8 -County "WA, Pacific County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300490.epw site_zip_code=98640 site_time_zone_utc_offset=-8 -County "WA, Pend Oreille County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300510.epw site_zip_code=99156 site_time_zone_utc_offset=-8 -County "WA, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300530.epw site_zip_code=98391 site_time_zone_utc_offset=-8 -County "WA, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300550.epw site_zip_code=98250 site_time_zone_utc_offset=-8 -County "WA, Skagit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300570.epw site_zip_code=98273 site_time_zone_utc_offset=-8 -County "WA, Skamania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300590.epw site_zip_code=98648 site_time_zone_utc_offset=-8 -County "WA, Snohomish County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300610.epw site_zip_code=98012 site_time_zone_utc_offset=-8 -County "WA, Spokane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300630.epw site_zip_code=99208 site_time_zone_utc_offset=-8 -County "WA, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300650.epw site_zip_code=99114 site_time_zone_utc_offset=-8 -County "WA, Thurston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300670.epw site_zip_code=98501 site_time_zone_utc_offset=-8 -County "WA, Wahkiakum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300690.epw site_zip_code=98612 site_time_zone_utc_offset=-8 -County "WA, Walla Walla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300710.epw site_zip_code=99362 site_time_zone_utc_offset=-8 -County "WA, Whatcom County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300730.epw site_zip_code=98225 site_time_zone_utc_offset=-8 -County "WA, Whitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300750.epw site_zip_code=99163 site_time_zone_utc_offset=-8 -County "WA, Yakima County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300770.epw site_zip_code=98902 site_time_zone_utc_offset=-8 -County "WI, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500010.epw site_zip_code=53934 site_time_zone_utc_offset=-6 -County "WI, Ashland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500030.epw site_zip_code=54806 site_time_zone_utc_offset=-6 -County "WI, Barron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500050.epw site_zip_code=54868 site_time_zone_utc_offset=-6 -County "WI, Bayfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500070.epw site_zip_code=54891 site_time_zone_utc_offset=-6 -County "WI, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500090.epw site_zip_code=54115 site_time_zone_utc_offset=-6 -County "WI, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500110.epw site_zip_code=54755 site_time_zone_utc_offset=-6 -County "WI, Burnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500130.epw site_zip_code=54830 site_time_zone_utc_offset=-6 -County "WI, Calumet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500150.epw site_zip_code=54915 site_time_zone_utc_offset=-6 -County "WI, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500170.epw site_zip_code=54729 site_time_zone_utc_offset=-6 -County "WI, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500190.epw site_zip_code=54456 site_time_zone_utc_offset=-6 -County "WI, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500210.epw site_zip_code=53901 site_time_zone_utc_offset=-6 -County "WI, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500230.epw site_zip_code=53821 site_time_zone_utc_offset=-6 -County "WI, Dane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500250.epw site_zip_code=53711 site_time_zone_utc_offset=-6 -County "WI, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500270.epw site_zip_code=53916 site_time_zone_utc_offset=-6 -County "WI, Door County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500290.epw site_zip_code=54235 site_time_zone_utc_offset=-6 -County "WI, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500310.epw site_zip_code=54880 site_time_zone_utc_offset=-6 -County "WI, Dunn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500330.epw site_zip_code=54751 site_time_zone_utc_offset=-6 -County "WI, Eau Claire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500350.epw site_zip_code=54703 site_time_zone_utc_offset=-6 -County "WI, Florence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500370.epw site_zip_code=54121 site_time_zone_utc_offset=-6 -County "WI, Fond du Lac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500390.epw site_zip_code=54935 site_time_zone_utc_offset=-6 -County "WI, Forest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500410.epw site_zip_code=54520 site_time_zone_utc_offset=-6 -County "WI, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500430.epw site_zip_code=53818 site_time_zone_utc_offset=-6 -County "WI, Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500450.epw site_zip_code=53566 site_time_zone_utc_offset=-6 -County "WI, Green Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500470.epw site_zip_code=54923 site_time_zone_utc_offset=-6 -County "WI, Iowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500490.epw site_zip_code=53533 site_time_zone_utc_offset=-6 -County "WI, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500510.epw site_zip_code=54547 site_time_zone_utc_offset=-6 -County "WI, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500530.epw site_zip_code=54615 site_time_zone_utc_offset=-6 -County "WI, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500550.epw site_zip_code=53538 site_time_zone_utc_offset=-6 -County "WI, Juneau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500570.epw site_zip_code=53948 site_time_zone_utc_offset=-6 -County "WI, Kenosha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500590.epw site_zip_code=53142 site_time_zone_utc_offset=-6 -County "WI, Kewaunee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500610.epw site_zip_code=54216 site_time_zone_utc_offset=-6 -County "WI, La Crosse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500630.epw site_zip_code=54601 site_time_zone_utc_offset=-6 -County "WI, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500650.epw site_zip_code=53530 site_time_zone_utc_offset=-6 -County "WI, Langlade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500670.epw site_zip_code=54409 site_time_zone_utc_offset=-6 -County "WI, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500690.epw site_zip_code=54452 site_time_zone_utc_offset=-6 -County "WI, Manitowoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500710.epw site_zip_code=54220 site_time_zone_utc_offset=-6 -County "WI, Marathon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500730.epw site_zip_code=54401 site_time_zone_utc_offset=-6 -County "WI, Marinette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500750.epw site_zip_code=54143 site_time_zone_utc_offset=-6 -County "WI, Marquette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500770.epw site_zip_code=53949 site_time_zone_utc_offset=-6 -County "WI, Menominee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500780.epw site_zip_code=54135 site_time_zone_utc_offset=-6 -County "WI, Milwaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500790.epw site_zip_code=53209 site_time_zone_utc_offset=-6 -County "WI, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500810.epw site_zip_code=54656 site_time_zone_utc_offset=-6 -County "WI, Oconto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500830.epw site_zip_code=54153 site_time_zone_utc_offset=-6 -County "WI, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500850.epw site_zip_code=54501 site_time_zone_utc_offset=-6 -County "WI, Outagamie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500870.epw site_zip_code=54911 site_time_zone_utc_offset=-6 -County "WI, Ozaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500890.epw site_zip_code=53092 site_time_zone_utc_offset=-6 -County "WI, Pepin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500910.epw site_zip_code=54736 site_time_zone_utc_offset=-6 -County "WI, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500930.epw site_zip_code=54022 site_time_zone_utc_offset=-6 -County "WI, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500950.epw site_zip_code=54001 site_time_zone_utc_offset=-6 -County "WI, Portage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500970.epw site_zip_code=54481 site_time_zone_utc_offset=-6 -County "WI, Price County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500990.epw site_zip_code=54555 site_time_zone_utc_offset=-6 -County "WI, Racine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501010.epw site_zip_code=53402 site_time_zone_utc_offset=-6 -County "WI, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501030.epw site_zip_code=53581 site_time_zone_utc_offset=-6 -County "WI, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501050.epw site_zip_code=53511 site_time_zone_utc_offset=-6 -County "WI, Rusk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501070.epw site_zip_code=54848 site_time_zone_utc_offset=-6 -County "WI, Sauk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501110.epw site_zip_code=53913 site_time_zone_utc_offset=-6 -County "WI, Sawyer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501130.epw site_zip_code=54843 site_time_zone_utc_offset=-6 -County "WI, Shawano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501150.epw site_zip_code=54166 site_time_zone_utc_offset=-6 -County "WI, Sheboygan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501170.epw site_zip_code=53081 site_time_zone_utc_offset=-6 -County "WI, St. Croix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501090.epw site_zip_code=54016 site_time_zone_utc_offset=-6 -County "WI, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501190.epw site_zip_code=54451 site_time_zone_utc_offset=-6 -County "WI, Trempealeau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501210.epw site_zip_code=54612 site_time_zone_utc_offset=-6 -County "WI, Vernon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501230.epw site_zip_code=54665 site_time_zone_utc_offset=-6 -County "WI, Vilas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501250.epw site_zip_code=54521 site_time_zone_utc_offset=-6 -County "WI, Walworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501270.epw site_zip_code=53147 site_time_zone_utc_offset=-6 -County "WI, Washburn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501290.epw site_zip_code=54801 site_time_zone_utc_offset=-6 -County "WI, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501310.epw site_zip_code=53022 site_time_zone_utc_offset=-6 -County "WI, Waukesha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501330.epw site_zip_code=53051 site_time_zone_utc_offset=-6 -County "WI, Waupaca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501350.epw site_zip_code=54981 site_time_zone_utc_offset=-6 -County "WI, Waushara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501370.epw site_zip_code=54982 site_time_zone_utc_offset=-6 -County "WI, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501390.epw site_zip_code=54956 site_time_zone_utc_offset=-6 -County "WI, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501410.epw site_zip_code=54449 site_time_zone_utc_offset=-6 -County "WV, Barbour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400010.epw site_zip_code=26416 site_time_zone_utc_offset=-5 -County "WV, Berkeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400030.epw site_zip_code=25404 site_time_zone_utc_offset=-5 -County "WV, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400050.epw site_zip_code=25130 site_time_zone_utc_offset=-5 -County "WV, Braxton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400070.epw site_zip_code=26601 site_time_zone_utc_offset=-5 -County "WV, Brooke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400090.epw site_zip_code=26070 site_time_zone_utc_offset=-5 -County "WV, Cabell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400110.epw site_zip_code=25701 site_time_zone_utc_offset=-5 -County "WV, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400130.epw site_zip_code=26147 site_time_zone_utc_offset=-5 -County "WV, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400150.epw site_zip_code=25043 site_time_zone_utc_offset=-5 -County "WV, Doddridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400170.epw site_zip_code=26456 site_time_zone_utc_offset=-5 -County "WV, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400190.epw site_zip_code=25901 site_time_zone_utc_offset=-5 -County "WV, Gilmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400210.epw site_zip_code=26351 site_time_zone_utc_offset=-5 -County "WV, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400230.epw site_zip_code=26847 site_time_zone_utc_offset=-5 -County "WV, Greenbrier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400250.epw site_zip_code=24901 site_time_zone_utc_offset=-5 -County "WV, Hampshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400270.epw site_zip_code=26757 site_time_zone_utc_offset=-5 -County "WV, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400290.epw site_zip_code=26062 site_time_zone_utc_offset=-5 -County "WV, Hardy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400310.epw site_zip_code=26836 site_time_zone_utc_offset=-5 -County "WV, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400330.epw site_zip_code=26301 site_time_zone_utc_offset=-5 -County "WV, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400350.epw site_zip_code=25271 site_time_zone_utc_offset=-5 -County "WV, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400370.epw site_zip_code=25414 site_time_zone_utc_offset=-5 -County "WV, Kanawha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400390.epw site_zip_code=25177 site_time_zone_utc_offset=-5 -County "WV, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400410.epw site_zip_code=26452 site_time_zone_utc_offset=-5 -County "WV, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400430.epw site_zip_code=25506 site_time_zone_utc_offset=-5 -County "WV, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400450.epw site_zip_code=25601 site_time_zone_utc_offset=-5 -County "WV, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400490.epw site_zip_code=26554 site_time_zone_utc_offset=-5 -County "WV, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400510.epw site_zip_code=26041 site_time_zone_utc_offset=-5 -County "WV, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400530.epw site_zip_code=25550 site_time_zone_utc_offset=-5 -County "WV, McDowell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400470.epw site_zip_code=24801 site_time_zone_utc_offset=-5 -County "WV, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400550.epw site_zip_code=24701 site_time_zone_utc_offset=-5 -County "WV, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400570.epw site_zip_code=26726 site_time_zone_utc_offset=-5 -County "WV, Mingo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400590.epw site_zip_code=25661 site_time_zone_utc_offset=-5 -County "WV, Monongalia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400610.epw site_zip_code=26505 site_time_zone_utc_offset=-5 -County "WV, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400630.epw site_zip_code=24963 site_time_zone_utc_offset=-5 -County "WV, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400650.epw site_zip_code=25411 site_time_zone_utc_offset=-5 -County "WV, Nicholas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400670.epw site_zip_code=26651 site_time_zone_utc_offset=-5 -County "WV, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400690.epw site_zip_code=26003 site_time_zone_utc_offset=-5 -County "WV, Pendleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400710.epw site_zip_code=26807 site_time_zone_utc_offset=-5 -County "WV, Pleasants County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400730.epw site_zip_code=26170 site_time_zone_utc_offset=-5 -County "WV, Pocahontas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400750.epw site_zip_code=24954 site_time_zone_utc_offset=-5 -County "WV, Preston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400770.epw site_zip_code=26537 site_time_zone_utc_offset=-5 -County "WV, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400790.epw site_zip_code=25526 site_time_zone_utc_offset=-5 -County "WV, Raleigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400810.epw site_zip_code=25801 site_time_zone_utc_offset=-5 -County "WV, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400830.epw site_zip_code=26241 site_time_zone_utc_offset=-5 -County "WV, Ritchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400850.epw site_zip_code=26362 site_time_zone_utc_offset=-5 -County "WV, Roane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400870.epw site_zip_code=25276 site_time_zone_utc_offset=-5 -County "WV, Summers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400890.epw site_zip_code=25951 site_time_zone_utc_offset=-5 -County "WV, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400910.epw site_zip_code=26354 site_time_zone_utc_offset=-5 -County "WV, Tucker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400930.epw site_zip_code=26287 site_time_zone_utc_offset=-5 -County "WV, Tyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400950.epw site_zip_code=26175 site_time_zone_utc_offset=-5 -County "WV, Upshur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400970.epw site_zip_code=26201 site_time_zone_utc_offset=-5 -County "WV, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400990.epw site_zip_code=25704 site_time_zone_utc_offset=-5 -County "WV, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401010.epw site_zip_code=26288 site_time_zone_utc_offset=-5 -County "WV, Wetzel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401030.epw site_zip_code=26155 site_time_zone_utc_offset=-5 -County "WV, Wirt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401050.epw site_zip_code=26143 site_time_zone_utc_offset=-5 -County "WV, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401070.epw site_zip_code=26101 site_time_zone_utc_offset=-5 -County "WV, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401090.epw site_zip_code=25882 site_time_zone_utc_offset=-5 -County "WY, Albany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600010.epw site_zip_code=82070 site_time_zone_utc_offset=-7 -County "WY, Big Horn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600030.epw site_zip_code=82431 site_time_zone_utc_offset=-7 -County "WY, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600050.epw site_zip_code=82718 site_time_zone_utc_offset=-7 -County "WY, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600070.epw site_zip_code=82301 site_time_zone_utc_offset=-7 -County "WY, Converse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600090.epw site_zip_code=82633 site_time_zone_utc_offset=-7 -County "WY, Crook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600110.epw site_zip_code=82729 site_time_zone_utc_offset=-7 -County "WY, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600130.epw site_zip_code=82501 site_time_zone_utc_offset=-7 -County "WY, Goshen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600150.epw site_zip_code=82240 site_time_zone_utc_offset=-7 -County "WY, Hot Springs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600170.epw site_zip_code=82443 site_time_zone_utc_offset=-7 -County "WY, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600190.epw site_zip_code=82834 site_time_zone_utc_offset=-7 -County "WY, Laramie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600210.epw site_zip_code=82001 site_time_zone_utc_offset=-7 -County "WY, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600230.epw site_zip_code=83127 site_time_zone_utc_offset=-7 -County "WY, Natrona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600250.epw site_zip_code=82601 site_time_zone_utc_offset=-7 -County "WY, Niobrara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600270.epw site_zip_code=82225 site_time_zone_utc_offset=-7 -County "WY, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600290.epw site_zip_code=82414 site_time_zone_utc_offset=-7 -County "WY, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600310.epw site_zip_code=82201 site_time_zone_utc_offset=-7 -County "WY, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600330.epw site_zip_code=82801 site_time_zone_utc_offset=-7 -County "WY, Sublette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600350.epw site_zip_code=82941 site_time_zone_utc_offset=-7 -County "WY, Sweetwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600370.epw site_zip_code=82901 site_time_zone_utc_offset=-7 -County "WY, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600390.epw site_zip_code=83001 site_time_zone_utc_offset=-7 -County "WY, Uinta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600410.epw site_zip_code=82930 site_time_zone_utc_offset=-7 -County "WY, Washakie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600430.epw site_zip_code=82401 site_time_zone_utc_offset=-7 -County "WY, Weston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600450.epw site_zip_code=82701 site_time_zone_utc_offset=-7 -County Metro Status Metropolitan -County Metro Status Non-Metropolitan -County and PUMA "G0100010, G01002100" -County and PUMA "G0100030, G01002600" -County and PUMA "G0100050, G01002400" -County and PUMA "G0100070, G01001700" -County and PUMA "G0100090, G01000800" -County and PUMA "G0100110, G01002400" -County and PUMA "G0100130, G01002300" -County and PUMA "G0100150, G01001100" -County and PUMA "G0100170, G01001800" -County and PUMA "G0100190, G01001000" -County and PUMA "G0100210, G01001800" -County and PUMA "G0100230, G01002200" -County and PUMA "G0100250, G01002200" -County and PUMA "G0100270, G01001000" -County and PUMA "G0100290, G01001000" -County and PUMA "G0100310, G01002300" -County and PUMA "G0100330, G01000100" -County and PUMA "G0100350, G01002200" -County and PUMA "G0100370, G01001800" -County and PUMA "G0100390, G01002300" -County and PUMA "G0100410, G01002300" -County and PUMA "G0100430, G01000700" -County and PUMA "G0100450, G01002500" -County and PUMA "G0100470, G01001700" -County and PUMA "G0100490, G01000400" -County and PUMA "G0100510, G01002100" -County and PUMA "G0100530, G01002200" -County and PUMA "G0100550, G01000900" -County and PUMA "G0100570, G01001400" -County and PUMA "G0100590, G01000100" -County and PUMA "G0100610, G01002500" -County and PUMA "G0100630, G01001700" -County and PUMA "G0100650, G01001700" -County and PUMA "G0100670, G01002500" -County and PUMA "G0100690, G01002500" -County and PUMA "G0100710, G01000400" -County and PUMA "G0100730, G01001301" -County and PUMA "G0100730, G01001302" -County and PUMA "G0100730, G01001303" -County and PUMA "G0100730, G01001304" -County and PUMA "G0100730, G01001305" -County and PUMA "G0100750, G01001400" -County and PUMA "G0100770, G01000100" -County and PUMA "G0100790, G01000600" -County and PUMA "G0100810, G01001900" -County and PUMA "G0100830, G01000200" -County and PUMA "G0100850, G01002100" -County and PUMA "G0100870, G01002400" -County and PUMA "G0100890, G01000200" -County and PUMA "G0100890, G01000301" -County and PUMA "G0100890, G01000302" -County and PUMA "G0100890, G01000500" -County and PUMA "G0100910, G01001700" -County and PUMA "G0100930, G01000100" -County and PUMA "G0100930, G01001400" -County and PUMA "G0100950, G01000500" -County and PUMA "G0100970, G01002701" -County and PUMA "G0100970, G01002702" -County and PUMA "G0100970, G01002703" -County and PUMA "G0100990, G01002200" -County and PUMA "G0101010, G01002000" -County and PUMA "G0101010, G01002100" -County and PUMA "G0101030, G01000600" -County and PUMA "G0101050, G01001700" -County and PUMA "G0101070, G01001500" -County and PUMA "G0101090, G01002400" -County and PUMA "G0101110, G01001000" -County and PUMA "G0101130, G01002400" -County and PUMA "G0101150, G01000800" -County and PUMA "G0101170, G01001200" -County and PUMA "G0101190, G01001700" -County and PUMA "G0101210, G01001000" -County and PUMA "G0101230, G01001800" -County and PUMA "G0101250, G01001500" -County and PUMA "G0101250, G01001600" -County and PUMA "G0101270, G01001400" -County and PUMA "G0101290, G01002200" -County and PUMA "G0101310, G01002200" -County and PUMA "G0101330, G01000700" -County and PUMA "G0200130, G02000400" -County and PUMA "G0200160, G02000400" -County and PUMA "G0200200, G02000101" -County and PUMA "G0200200, G02000102" -County and PUMA "G0200500, G02000400" -County and PUMA "G0200600, G02000400" -County and PUMA "G0200680, G02000300" -County and PUMA "G0200700, G02000400" -County and PUMA "G0200900, G02000300" -County and PUMA "G0201000, G02000300" -County and PUMA "G0201050, G02000400" -County and PUMA "G0201100, G02000300" -County and PUMA "G0201220, G02000200" -County and PUMA "G0201300, G02000300" -County and PUMA "G0201500, G02000400" -County and PUMA "G0201580, G02000400" -County and PUMA "G0201640, G02000400" -County and PUMA "G0201700, G02000200" -County and PUMA "G0201800, G02000400" -County and PUMA "G0201850, G02000400" -County and PUMA "G0201880, G02000400" -County and PUMA "G0201950, G02000400" -County and PUMA "G0201980, G02000400" -County and PUMA "G0202200, G02000400" -County and PUMA "G0202300, G02000300" -County and PUMA "G0202400, G02000300" -County and PUMA "G0202610, G02000300" -County and PUMA "G0202750, G02000400" -County and PUMA "G0202820, G02000400" -County and PUMA "G0202900, G02000400" -County and PUMA "G0400010, G04000300" -County and PUMA "G0400030, G04000900" -County and PUMA "G0400050, G04000400" -County and PUMA "G0400070, G04000800" -County and PUMA "G0400090, G04000800" -County and PUMA "G0400110, G04000800" -County and PUMA "G0400120, G04000600" -County and PUMA "G0400130, G04000100" -County and PUMA "G0400130, G04000101" -County and PUMA "G0400130, G04000102" -County and PUMA "G0400130, G04000103" -County and PUMA "G0400130, G04000104" -County and PUMA "G0400130, G04000105" -County and PUMA "G0400130, G04000106" -County and PUMA "G0400130, G04000107" -County and PUMA "G0400130, G04000108" -County and PUMA "G0400130, G04000109" -County and PUMA "G0400130, G04000110" -County and PUMA "G0400130, G04000111" -County and PUMA "G0400130, G04000112" -County and PUMA "G0400130, G04000113" -County and PUMA "G0400130, G04000114" -County and PUMA "G0400130, G04000115" -County and PUMA "G0400130, G04000116" -County and PUMA "G0400130, G04000117" -County and PUMA "G0400130, G04000118" -County and PUMA "G0400130, G04000119" -County and PUMA "G0400130, G04000120" -County and PUMA "G0400130, G04000121" -County and PUMA "G0400130, G04000122" -County and PUMA "G0400130, G04000123" -County and PUMA "G0400130, G04000124" -County and PUMA "G0400130, G04000125" -County and PUMA "G0400130, G04000126" -County and PUMA "G0400130, G04000127" -County and PUMA "G0400130, G04000128" -County and PUMA "G0400130, G04000129" -County and PUMA "G0400130, G04000130" -County and PUMA "G0400130, G04000131" -County and PUMA "G0400130, G04000132" -County and PUMA "G0400130, G04000133" -County and PUMA "G0400130, G04000134" -County and PUMA "G0400150, G04000600" -County and PUMA "G0400170, G04000300" -County and PUMA "G0400190, G04000201" -County and PUMA "G0400190, G04000202" -County and PUMA "G0400190, G04000203" -County and PUMA "G0400190, G04000204" -County and PUMA "G0400190, G04000205" -County and PUMA "G0400190, G04000206" -County and PUMA "G0400190, G04000207" -County and PUMA "G0400190, G04000208" -County and PUMA "G0400190, G04000209" -County and PUMA "G0400210, G04000800" -County and PUMA "G0400210, G04000803" -County and PUMA "G0400210, G04000805" -County and PUMA "G0400210, G04000807" -County and PUMA "G0400230, G04000900" -County and PUMA "G0400250, G04000500" -County and PUMA "G0400270, G04000700" -County and PUMA "G0500010, G05001700" -County and PUMA "G0500010, G05001800" -County and PUMA "G0500030, G05001800" -County and PUMA "G0500050, G05000300" -County and PUMA "G0500070, G05000100" -County and PUMA "G0500090, G05000300" -County and PUMA "G0500110, G05001800" -County and PUMA "G0500130, G05001900" -County and PUMA "G0500150, G05000300" -County and PUMA "G0500170, G05001800" -County and PUMA "G0500190, G05001600" -County and PUMA "G0500210, G05000500" -County and PUMA "G0500230, G05000400" -County and PUMA "G0500250, G05001800" -County and PUMA "G0500270, G05001900" -County and PUMA "G0500290, G05001300" -County and PUMA "G0500310, G05000500" -County and PUMA "G0500310, G05000600" -County and PUMA "G0500330, G05001400" -County and PUMA "G0500350, G05000600" -County and PUMA "G0500370, G05000700" -County and PUMA "G0500390, G05001900" -County and PUMA "G0500410, G05001800" -County and PUMA "G0500430, G05001800" -County and PUMA "G0500450, G05001100" -County and PUMA "G0500470, G05001500" -County and PUMA "G0500490, G05000400" -County and PUMA "G0500510, G05001600" -County and PUMA "G0500530, G05001700" -County and PUMA "G0500550, G05000500" -County and PUMA "G0500570, G05002000" -County and PUMA "G0500590, G05001600" -County and PUMA "G0500610, G05001500" -County and PUMA "G0500630, G05000400" -County and PUMA "G0500650, G05000400" -County and PUMA "G0500670, G05000800" -County and PUMA "G0500690, G05001700" -County and PUMA "G0500710, G05001300" -County and PUMA "G0500730, G05002000" -County and PUMA "G0500750, G05000500" -County and PUMA "G0500770, G05000700" -County and PUMA "G0500790, G05001800" -County and PUMA "G0500810, G05002000" -County and PUMA "G0500830, G05001500" -County and PUMA "G0500850, G05001100" -County and PUMA "G0500870, G05000300" -County and PUMA "G0500890, G05000300" -County and PUMA "G0500910, G05002000" -County and PUMA "G0500930, G05000600" -County and PUMA "G0500950, G05000700" -County and PUMA "G0500970, G05001600" -County and PUMA "G0500990, G05002000" -County and PUMA "G0501010, G05000300" -County and PUMA "G0501030, G05001900" -County and PUMA "G0501050, G05001300" -County and PUMA "G0501070, G05000700" -County and PUMA "G0501090, G05002000" -County and PUMA "G0501110, G05000700" -County and PUMA "G0501130, G05001500" -County and PUMA "G0501150, G05001300" -County and PUMA "G0501170, G05000800" -County and PUMA "G0501190, G05000900" -County and PUMA "G0501190, G05001000" -County and PUMA "G0501210, G05000500" -County and PUMA "G0501230, G05000700" -County and PUMA "G0501250, G05001200" -County and PUMA "G0501270, G05001500" -County and PUMA "G0501290, G05000300" -County and PUMA "G0501310, G05001400" -County and PUMA "G0501330, G05001500" -County and PUMA "G0501350, G05000400" -County and PUMA "G0501370, G05000400" -County and PUMA "G0501390, G05001900" -County and PUMA "G0501410, G05000400" -County and PUMA "G0501430, G05000200" -County and PUMA "G0501450, G05000800" -County and PUMA "G0501470, G05000800" -County and PUMA "G0501490, G05001300" -County and PUMA "G0600010, G06000101" -County and PUMA "G0600010, G06000102" -County and PUMA "G0600010, G06000103" -County and PUMA "G0600010, G06000104" -County and PUMA "G0600010, G06000105" -County and PUMA "G0600010, G06000106" -County and PUMA "G0600010, G06000107" -County and PUMA "G0600010, G06000108" -County and PUMA "G0600010, G06000109" -County and PUMA "G0600010, G06000110" -County and PUMA "G0600030, G06000300" -County and PUMA "G0600050, G06000300" -County and PUMA "G0600070, G06000701" -County and PUMA "G0600070, G06000702" -County and PUMA "G0600090, G06000300" -County and PUMA "G0600110, G06001100" -County and PUMA "G0600130, G06001301" -County and PUMA "G0600130, G06001302" -County and PUMA "G0600130, G06001303" -County and PUMA "G0600130, G06001304" -County and PUMA "G0600130, G06001305" -County and PUMA "G0600130, G06001306" -County and PUMA "G0600130, G06001307" -County and PUMA "G0600130, G06001308" -County and PUMA "G0600130, G06001309" -County and PUMA "G0600150, G06001500" -County and PUMA "G0600170, G06001700" -County and PUMA "G0600190, G06001901" -County and PUMA "G0600190, G06001902" -County and PUMA "G0600190, G06001903" -County and PUMA "G0600190, G06001904" -County and PUMA "G0600190, G06001905" -County and PUMA "G0600190, G06001906" -County and PUMA "G0600190, G06001907" -County and PUMA "G0600210, G06001100" -County and PUMA "G0600230, G06002300" -County and PUMA "G0600250, G06002500" -County and PUMA "G0600270, G06000300" -County and PUMA "G0600290, G06002901" -County and PUMA "G0600290, G06002902" -County and PUMA "G0600290, G06002903" -County and PUMA "G0600290, G06002904" -County and PUMA "G0600290, G06002905" -County and PUMA "G0600310, G06003100" -County and PUMA "G0600330, G06003300" -County and PUMA "G0600350, G06001500" -County and PUMA "G0600370, G06003701" -County and PUMA "G0600370, G06003702" -County and PUMA "G0600370, G06003703" -County and PUMA "G0600370, G06003704" -County and PUMA "G0600370, G06003705" -County and PUMA "G0600370, G06003706" -County and PUMA "G0600370, G06003707" -County and PUMA "G0600370, G06003708" -County and PUMA "G0600370, G06003709" -County and PUMA "G0600370, G06003710" -County and PUMA "G0600370, G06003711" -County and PUMA "G0600370, G06003712" -County and PUMA "G0600370, G06003713" -County and PUMA "G0600370, G06003714" -County and PUMA "G0600370, G06003715" -County and PUMA "G0600370, G06003716" -County and PUMA "G0600370, G06003717" -County and PUMA "G0600370, G06003718" -County and PUMA "G0600370, G06003719" -County and PUMA "G0600370, G06003720" -County and PUMA "G0600370, G06003721" -County and PUMA "G0600370, G06003722" -County and PUMA "G0600370, G06003723" -County and PUMA "G0600370, G06003724" -County and PUMA "G0600370, G06003725" -County and PUMA "G0600370, G06003726" -County and PUMA "G0600370, G06003727" -County and PUMA "G0600370, G06003728" -County and PUMA "G0600370, G06003729" -County and PUMA "G0600370, G06003730" -County and PUMA "G0600370, G06003731" -County and PUMA "G0600370, G06003732" -County and PUMA "G0600370, G06003733" -County and PUMA "G0600370, G06003734" -County and PUMA "G0600370, G06003735" -County and PUMA "G0600370, G06003736" -County and PUMA "G0600370, G06003737" -County and PUMA "G0600370, G06003738" -County and PUMA "G0600370, G06003739" -County and PUMA "G0600370, G06003740" -County and PUMA "G0600370, G06003741" -County and PUMA "G0600370, G06003742" -County and PUMA "G0600370, G06003743" -County and PUMA "G0600370, G06003744" -County and PUMA "G0600370, G06003745" -County and PUMA "G0600370, G06003746" -County and PUMA "G0600370, G06003747" -County and PUMA "G0600370, G06003748" -County and PUMA "G0600370, G06003749" -County and PUMA "G0600370, G06003750" -County and PUMA "G0600370, G06003751" -County and PUMA "G0600370, G06003752" -County and PUMA "G0600370, G06003753" -County and PUMA "G0600370, G06003754" -County and PUMA "G0600370, G06003755" -County and PUMA "G0600370, G06003756" -County and PUMA "G0600370, G06003757" -County and PUMA "G0600370, G06003758" -County and PUMA "G0600370, G06003759" -County and PUMA "G0600370, G06003760" -County and PUMA "G0600370, G06003761" -County and PUMA "G0600370, G06003762" -County and PUMA "G0600370, G06003763" -County and PUMA "G0600370, G06003764" -County and PUMA "G0600370, G06003765" -County and PUMA "G0600370, G06003766" -County and PUMA "G0600370, G06003767" -County and PUMA "G0600370, G06003768" -County and PUMA "G0600370, G06003769" -County and PUMA "G0600390, G06003900" -County and PUMA "G0600410, G06004101" -County and PUMA "G0600410, G06004102" -County and PUMA "G0600430, G06000300" -County and PUMA "G0600450, G06003300" -County and PUMA "G0600470, G06004701" -County and PUMA "G0600470, G06004702" -County and PUMA "G0600490, G06001500" -County and PUMA "G0600510, G06000300" -County and PUMA "G0600530, G06005301" -County and PUMA "G0600530, G06005302" -County and PUMA "G0600530, G06005303" -County and PUMA "G0600550, G06005500" -County and PUMA "G0600570, G06005700" -County and PUMA "G0600590, G06005901" -County and PUMA "G0600590, G06005902" -County and PUMA "G0600590, G06005903" -County and PUMA "G0600590, G06005904" -County and PUMA "G0600590, G06005905" -County and PUMA "G0600590, G06005906" -County and PUMA "G0600590, G06005907" -County and PUMA "G0600590, G06005908" -County and PUMA "G0600590, G06005909" -County and PUMA "G0600590, G06005910" -County and PUMA "G0600590, G06005911" -County and PUMA "G0600590, G06005912" -County and PUMA "G0600590, G06005913" -County and PUMA "G0600590, G06005914" -County and PUMA "G0600590, G06005915" -County and PUMA "G0600590, G06005916" -County and PUMA "G0600590, G06005917" -County and PUMA "G0600590, G06005918" -County and PUMA "G0600610, G06006101" -County and PUMA "G0600610, G06006102" -County and PUMA "G0600610, G06006103" -County and PUMA "G0600630, G06001500" -County and PUMA "G0600650, G06006501" -County and PUMA "G0600650, G06006502" -County and PUMA "G0600650, G06006503" -County and PUMA "G0600650, G06006504" -County and PUMA "G0600650, G06006505" -County and PUMA "G0600650, G06006506" -County and PUMA "G0600650, G06006507" -County and PUMA "G0600650, G06006508" -County and PUMA "G0600650, G06006509" -County and PUMA "G0600650, G06006510" -County and PUMA "G0600650, G06006511" -County and PUMA "G0600650, G06006512" -County and PUMA "G0600650, G06006513" -County and PUMA "G0600650, G06006514" -County and PUMA "G0600650, G06006515" -County and PUMA "G0600670, G06006701" -County and PUMA "G0600670, G06006702" -County and PUMA "G0600670, G06006703" -County and PUMA "G0600670, G06006704" -County and PUMA "G0600670, G06006705" -County and PUMA "G0600670, G06006706" -County and PUMA "G0600670, G06006707" -County and PUMA "G0600670, G06006708" -County and PUMA "G0600670, G06006709" -County and PUMA "G0600670, G06006710" -County and PUMA "G0600670, G06006711" -County and PUMA "G0600670, G06006712" -County and PUMA "G0600690, G06005303" -County and PUMA "G0600710, G06007101" -County and PUMA "G0600710, G06007102" -County and PUMA "G0600710, G06007103" -County and PUMA "G0600710, G06007104" -County and PUMA "G0600710, G06007105" -County and PUMA "G0600710, G06007106" -County and PUMA "G0600710, G06007107" -County and PUMA "G0600710, G06007108" -County and PUMA "G0600710, G06007109" -County and PUMA "G0600710, G06007110" -County and PUMA "G0600710, G06007111" -County and PUMA "G0600710, G06007112" -County and PUMA "G0600710, G06007113" -County and PUMA "G0600710, G06007114" -County and PUMA "G0600710, G06007115" -County and PUMA "G0600730, G06007301" -County and PUMA "G0600730, G06007302" -County and PUMA "G0600730, G06007303" -County and PUMA "G0600730, G06007304" -County and PUMA "G0600730, G06007305" -County and PUMA "G0600730, G06007306" -County and PUMA "G0600730, G06007307" -County and PUMA "G0600730, G06007308" -County and PUMA "G0600730, G06007309" -County and PUMA "G0600730, G06007310" -County and PUMA "G0600730, G06007311" -County and PUMA "G0600730, G06007312" -County and PUMA "G0600730, G06007313" -County and PUMA "G0600730, G06007314" -County and PUMA "G0600730, G06007315" -County and PUMA "G0600730, G06007316" -County and PUMA "G0600730, G06007317" -County and PUMA "G0600730, G06007318" -County and PUMA "G0600730, G06007319" -County and PUMA "G0600730, G06007320" -County and PUMA "G0600730, G06007321" -County and PUMA "G0600730, G06007322" -County and PUMA "G0600750, G06007501" -County and PUMA "G0600750, G06007502" -County and PUMA "G0600750, G06007503" -County and PUMA "G0600750, G06007504" -County and PUMA "G0600750, G06007505" -County and PUMA "G0600750, G06007506" -County and PUMA "G0600750, G06007507" -County and PUMA "G0600770, G06007701" -County and PUMA "G0600770, G06007702" -County and PUMA "G0600770, G06007703" -County and PUMA "G0600770, G06007704" -County and PUMA "G0600790, G06007901" -County and PUMA "G0600790, G06007902" -County and PUMA "G0600810, G06008101" -County and PUMA "G0600810, G06008102" -County and PUMA "G0600810, G06008103" -County and PUMA "G0600810, G06008104" -County and PUMA "G0600810, G06008105" -County and PUMA "G0600810, G06008106" -County and PUMA "G0600830, G06008301" -County and PUMA "G0600830, G06008302" -County and PUMA "G0600830, G06008303" -County and PUMA "G0600850, G06008501" -County and PUMA "G0600850, G06008502" -County and PUMA "G0600850, G06008503" -County and PUMA "G0600850, G06008504" -County and PUMA "G0600850, G06008505" -County and PUMA "G0600850, G06008506" -County and PUMA "G0600850, G06008507" -County and PUMA "G0600850, G06008508" -County and PUMA "G0600850, G06008509" -County and PUMA "G0600850, G06008510" -County and PUMA "G0600850, G06008511" -County and PUMA "G0600850, G06008512" -County and PUMA "G0600850, G06008513" -County and PUMA "G0600850, G06008514" -County and PUMA "G0600870, G06008701" -County and PUMA "G0600870, G06008702" -County and PUMA "G0600890, G06008900" -County and PUMA "G0600910, G06005700" -County and PUMA "G0600930, G06001500" -County and PUMA "G0600950, G06009501" -County and PUMA "G0600950, G06009502" -County and PUMA "G0600950, G06009503" -County and PUMA "G0600970, G06009701" -County and PUMA "G0600970, G06009702" -County and PUMA "G0600970, G06009703" -County and PUMA "G0600990, G06009901" -County and PUMA "G0600990, G06009902" -County and PUMA "G0600990, G06009903" -County and PUMA "G0600990, G06009904" -County and PUMA "G0601010, G06010100" -County and PUMA "G0601030, G06001100" -County and PUMA "G0601050, G06001100" -County and PUMA "G0601070, G06010701" -County and PUMA "G0601070, G06010702" -County and PUMA "G0601070, G06010703" -County and PUMA "G0601090, G06000300" -County and PUMA "G0601110, G06011101" -County and PUMA "G0601110, G06011102" -County and PUMA "G0601110, G06011103" -County and PUMA "G0601110, G06011104" -County and PUMA "G0601110, G06011105" -County and PUMA "G0601110, G06011106" -County and PUMA "G0601130, G06011300" -County and PUMA "G0601150, G06010100" -County and PUMA "G0800010, G08000804" -County and PUMA "G0800010, G08000805" -County and PUMA "G0800010, G08000806" -County and PUMA "G0800010, G08000807" -County and PUMA "G0800010, G08000809" -County and PUMA "G0800010, G08000810" -County and PUMA "G0800010, G08000817" -County and PUMA "G0800010, G08000824" -County and PUMA "G0800030, G08000800" -County and PUMA "G0800050, G08000808" -County and PUMA "G0800050, G08000809" -County and PUMA "G0800050, G08000810" -County and PUMA "G0800050, G08000811" -County and PUMA "G0800050, G08000815" -County and PUMA "G0800050, G08000820" -County and PUMA "G0800050, G08000824" -County and PUMA "G0800070, G08000900" -County and PUMA "G0800090, G08000800" -County and PUMA "G0800110, G08000100" -County and PUMA "G0800130, G08000801" -County and PUMA "G0800130, G08000802" -County and PUMA "G0800130, G08000803" -County and PUMA "G0800130, G08000804" -County and PUMA "G0800140, G08000804" -County and PUMA "G0800140, G08000805" -County and PUMA "G0800150, G08000600" -County and PUMA "G0800170, G08000100" -County and PUMA "G0800190, G08000801" -County and PUMA "G0800210, G08000800" -County and PUMA "G0800230, G08000800" -County and PUMA "G0800250, G08000100" -County and PUMA "G0800270, G08000600" -County and PUMA "G0800290, G08001002" -County and PUMA "G0800310, G08000812" -County and PUMA "G0800310, G08000813" -County and PUMA "G0800310, G08000814" -County and PUMA "G0800310, G08000815" -County and PUMA "G0800310, G08000816" -County and PUMA "G0800330, G08000900" -County and PUMA "G0800350, G08000821" -County and PUMA "G0800350, G08000822" -County and PUMA "G0800350, G08000823" -County and PUMA "G0800370, G08000400" -County and PUMA "G0800390, G08000100" -County and PUMA "G0800390, G08000823" -County and PUMA "G0800410, G08004101" -County and PUMA "G0800410, G08004102" -County and PUMA "G0800410, G08004103" -County and PUMA "G0800410, G08004104" -County and PUMA "G0800410, G08004105" -County and PUMA "G0800410, G08004106" -County and PUMA "G0800430, G08000600" -County and PUMA "G0800450, G08000200" -County and PUMA "G0800470, G08000801" -County and PUMA "G0800490, G08000400" -County and PUMA "G0800510, G08000900" -County and PUMA "G0800530, G08000900" -County and PUMA "G0800550, G08000600" -County and PUMA "G0800570, G08000400" -County and PUMA "G0800590, G08000801" -County and PUMA "G0800590, G08000804" -County and PUMA "G0800590, G08000805" -County and PUMA "G0800590, G08000817" -County and PUMA "G0800590, G08000818" -County and PUMA "G0800590, G08000819" -County and PUMA "G0800590, G08000820" -County and PUMA "G0800590, G08000821" -County and PUMA "G0800610, G08000100" -County and PUMA "G0800630, G08000100" -County and PUMA "G0800650, G08000600" -County and PUMA "G0800670, G08000900" -County and PUMA "G0800690, G08000102" -County and PUMA "G0800690, G08000103" -County and PUMA "G0800710, G08000800" -County and PUMA "G0800730, G08000100" -County and PUMA "G0800750, G08000100" -County and PUMA "G0800770, G08001001" -County and PUMA "G0800770, G08001002" -County and PUMA "G0800790, G08000800" -County and PUMA "G0800810, G08000200" -County and PUMA "G0800830, G08000900" -County and PUMA "G0800850, G08001002" -County and PUMA "G0800870, G08000100" -County and PUMA "G0800890, G08000800" -County and PUMA "G0800910, G08001002" -County and PUMA "G0800930, G08000600" -County and PUMA "G0800950, G08000100" -County and PUMA "G0800970, G08000400" -County and PUMA "G0800990, G08000800" -County and PUMA "G0801010, G08000600" -County and PUMA "G0801010, G08000700" -County and PUMA "G0801010, G08000800" -County and PUMA "G0801030, G08000200" -County and PUMA "G0801050, G08000800" -County and PUMA "G0801070, G08000200" -County and PUMA "G0801090, G08000800" -County and PUMA "G0801110, G08000900" -County and PUMA "G0801130, G08001002" -County and PUMA "G0801150, G08000100" -County and PUMA "G0801170, G08000400" -County and PUMA "G0801190, G08004101" -County and PUMA "G0801210, G08000100" -County and PUMA "G0801230, G08000100" -County and PUMA "G0801230, G08000300" -County and PUMA "G0801230, G08000802" -County and PUMA "G0801230, G08000824" -County and PUMA "G0801250, G08000100" -County and PUMA "G0900010, G09000100" -County and PUMA "G0900010, G09000101" -County and PUMA "G0900010, G09000102" -County and PUMA "G0900010, G09000103" -County and PUMA "G0900010, G09000104" -County and PUMA "G0900010, G09000105" -County and PUMA "G0900030, G09000300" -County and PUMA "G0900030, G09000301" -County and PUMA "G0900030, G09000302" -County and PUMA "G0900030, G09000303" -County and PUMA "G0900030, G09000304" -County and PUMA "G0900030, G09000305" -County and PUMA "G0900030, G09000306" -County and PUMA "G0900050, G09000500" -County and PUMA "G0900070, G09000700" -County and PUMA "G0900090, G09000900" -County and PUMA "G0900090, G09000901" -County and PUMA "G0900090, G09000902" -County and PUMA "G0900090, G09000903" -County and PUMA "G0900090, G09000904" -County and PUMA "G0900090, G09000905" -County and PUMA "G0900090, G09000906" -County and PUMA "G0900110, G09001100" -County and PUMA "G0900110, G09001101" -County and PUMA "G0900130, G09001300" -County and PUMA "G0900150, G09001500" -County and PUMA "G1000010, G10000200" -County and PUMA "G1000030, G10000101" -County and PUMA "G1000030, G10000102" -County and PUMA "G1000030, G10000103" -County and PUMA "G1000030, G10000104" -County and PUMA "G1000050, G10000300" -County and PUMA "G1100010, G11000101" -County and PUMA "G1100010, G11000102" -County and PUMA "G1100010, G11000103" -County and PUMA "G1100010, G11000104" -County and PUMA "G1100010, G11000105" -County and PUMA "G1200010, G12000101" -County and PUMA "G1200010, G12000102" -County and PUMA "G1200030, G12008900" -County and PUMA "G1200050, G12000500" -County and PUMA "G1200070, G12002300" -County and PUMA "G1200090, G12000901" -County and PUMA "G1200090, G12000902" -County and PUMA "G1200090, G12000903" -County and PUMA "G1200090, G12000904" -County and PUMA "G1200110, G12001101" -County and PUMA "G1200110, G12001102" -County and PUMA "G1200110, G12001103" -County and PUMA "G1200110, G12001104" -County and PUMA "G1200110, G12001105" -County and PUMA "G1200110, G12001106" -County and PUMA "G1200110, G12001107" -County and PUMA "G1200110, G12001108" -County and PUMA "G1200110, G12001109" -County and PUMA "G1200110, G12001110" -County and PUMA "G1200110, G12001111" -County and PUMA "G1200110, G12001112" -County and PUMA "G1200110, G12001113" -County and PUMA "G1200110, G12001114" -County and PUMA "G1200130, G12006300" -County and PUMA "G1200150, G12001500" -County and PUMA "G1200170, G12001701" -County and PUMA "G1200190, G12001900" -County and PUMA "G1200210, G12002101" -County and PUMA "G1200210, G12002102" -County and PUMA "G1200210, G12002103" -County and PUMA "G1200230, G12002300" -County and PUMA "G1200270, G12002700" -County and PUMA "G1200290, G12002300" -County and PUMA "G1200310, G12003101" -County and PUMA "G1200310, G12003102" -County and PUMA "G1200310, G12003103" -County and PUMA "G1200310, G12003104" -County and PUMA "G1200310, G12003105" -County and PUMA "G1200310, G12003106" -County and PUMA "G1200310, G12003107" -County and PUMA "G1200330, G12003301" -County and PUMA "G1200330, G12003302" -County and PUMA "G1200350, G12003500" -County and PUMA "G1200370, G12006300" -County and PUMA "G1200390, G12006300" -County and PUMA "G1200410, G12002300" -County and PUMA "G1200430, G12009300" -County and PUMA "G1200450, G12006300" -County and PUMA "G1200470, G12012100" -County and PUMA "G1200490, G12002700" -County and PUMA "G1200510, G12009300" -County and PUMA "G1200530, G12005301" -County and PUMA "G1200550, G12002700" -County and PUMA "G1200550, G12009300" -County and PUMA "G1200570, G12005701" -County and PUMA "G1200570, G12005702" -County and PUMA "G1200570, G12005703" -County and PUMA "G1200570, G12005704" -County and PUMA "G1200570, G12005705" -County and PUMA "G1200570, G12005706" -County and PUMA "G1200570, G12005707" -County and PUMA "G1200570, G12005708" -County and PUMA "G1200590, G12000500" -County and PUMA "G1200610, G12006100" -County and PUMA "G1200630, G12006300" -County and PUMA "G1200650, G12006300" -County and PUMA "G1200670, G12012100" -County and PUMA "G1200690, G12006901" -County and PUMA "G1200690, G12006902" -County and PUMA "G1200690, G12006903" -County and PUMA "G1200710, G12007101" -County and PUMA "G1200710, G12007102" -County and PUMA "G1200710, G12007103" -County and PUMA "G1200710, G12007104" -County and PUMA "G1200710, G12007105" -County and PUMA "G1200730, G12007300" -County and PUMA "G1200730, G12007301" -County and PUMA "G1200750, G12002300" -County and PUMA "G1200770, G12006300" -County and PUMA "G1200790, G12012100" -County and PUMA "G1200810, G12008101" -County and PUMA "G1200810, G12008102" -County and PUMA "G1200810, G12008103" -County and PUMA "G1200830, G12008301" -County and PUMA "G1200830, G12008302" -County and PUMA "G1200830, G12008303" -County and PUMA "G1200850, G12008500" -County and PUMA "G1200860, G12008601" -County and PUMA "G1200860, G12008602" -County and PUMA "G1200860, G12008603" -County and PUMA "G1200860, G12008604" -County and PUMA "G1200860, G12008605" -County and PUMA "G1200860, G12008606" -County and PUMA "G1200860, G12008607" -County and PUMA "G1200860, G12008608" -County and PUMA "G1200860, G12008609" -County and PUMA "G1200860, G12008610" -County and PUMA "G1200860, G12008611" -County and PUMA "G1200860, G12008612" -County and PUMA "G1200860, G12008613" -County and PUMA "G1200860, G12008614" -County and PUMA "G1200860, G12008615" -County and PUMA "G1200860, G12008616" -County and PUMA "G1200860, G12008617" -County and PUMA "G1200860, G12008618" -County and PUMA "G1200860, G12008619" -County and PUMA "G1200860, G12008620" -County and PUMA "G1200860, G12008621" -County and PUMA "G1200860, G12008622" -County and PUMA "G1200860, G12008623" -County and PUMA "G1200860, G12008624" -County and PUMA "G1200860, G12008700" -County and PUMA "G1200870, G12008700" -County and PUMA "G1200890, G12008900" -County and PUMA "G1200910, G12009100" -County and PUMA "G1200930, G12009300" -County and PUMA "G1200950, G12009501" -County and PUMA "G1200950, G12009502" -County and PUMA "G1200950, G12009503" -County and PUMA "G1200950, G12009504" -County and PUMA "G1200950, G12009505" -County and PUMA "G1200950, G12009506" -County and PUMA "G1200950, G12009507" -County and PUMA "G1200950, G12009508" -County and PUMA "G1200950, G12009509" -County and PUMA "G1200950, G12009510" -County and PUMA "G1200970, G12009701" -County and PUMA "G1200970, G12009702" -County and PUMA "G1200990, G12009901" -County and PUMA "G1200990, G12009902" -County and PUMA "G1200990, G12009903" -County and PUMA "G1200990, G12009904" -County and PUMA "G1200990, G12009905" -County and PUMA "G1200990, G12009906" -County and PUMA "G1200990, G12009907" -County and PUMA "G1200990, G12009908" -County and PUMA "G1200990, G12009909" -County and PUMA "G1200990, G12009910" -County and PUMA "G1200990, G12009911" -County and PUMA "G1201010, G12010101" -County and PUMA "G1201010, G12010102" -County and PUMA "G1201010, G12010103" -County and PUMA "G1201010, G12010104" -County and PUMA "G1201030, G12010301" -County and PUMA "G1201030, G12010302" -County and PUMA "G1201030, G12010303" -County and PUMA "G1201030, G12010304" -County and PUMA "G1201030, G12010305" -County and PUMA "G1201030, G12010306" -County and PUMA "G1201030, G12010307" -County and PUMA "G1201030, G12010308" -County and PUMA "G1201050, G12010501" -County and PUMA "G1201050, G12010502" -County and PUMA "G1201050, G12010503" -County and PUMA "G1201050, G12010504" -County and PUMA "G1201070, G12010700" -County and PUMA "G1201090, G12010700" -County and PUMA "G1201090, G12010900" -County and PUMA "G1201110, G12011101" -County and PUMA "G1201110, G12011102" -County and PUMA "G1201130, G12011300" -County and PUMA "G1201150, G12011501" -County and PUMA "G1201150, G12011502" -County and PUMA "G1201150, G12011503" -County and PUMA "G1201170, G12011701" -County and PUMA "G1201170, G12011702" -County and PUMA "G1201170, G12011703" -County and PUMA "G1201170, G12011704" -County and PUMA "G1201190, G12006902" -County and PUMA "G1201190, G12006903" -County and PUMA "G1201210, G12012100" -County and PUMA "G1201230, G12012100" -County and PUMA "G1201250, G12002300" -County and PUMA "G1201270, G12003500" -County and PUMA "G1201270, G12012701" -County and PUMA "G1201270, G12012702" -County and PUMA "G1201270, G12012703" -County and PUMA "G1201270, G12012704" -County and PUMA "G1201290, G12006300" -County and PUMA "G1201310, G12000500" -County and PUMA "G1201330, G12000500" -County and PUMA "G1300010, G13001200" -County and PUMA "G1300030, G13000500" -County and PUMA "G1300050, G13000500" -County and PUMA "G1300070, G13001100" -County and PUMA "G1300090, G13001600" -County and PUMA "G1300110, G13003500" -County and PUMA "G1300130, G13003800" -County and PUMA "G1300150, G13002900" -County and PUMA "G1300170, G13000700" -County and PUMA "G1300190, G13000700" -County and PUMA "G1300210, G13001400" -County and PUMA "G1300230, G13001300" -County and PUMA "G1300250, G13000500" -County and PUMA "G1300270, G13000700" -County and PUMA "G1300290, G13000200" -County and PUMA "G1300310, G13000300" -County and PUMA "G1300330, G13004200" -County and PUMA "G1300350, G13001900" -County and PUMA "G1300370, G13001100" -County and PUMA "G1300390, G13000100" -County and PUMA "G1300430, G13001300" -County and PUMA "G1300450, G13002300" -County and PUMA "G1300470, G13002600" -County and PUMA "G1300490, G13000500" -County and PUMA "G1300510, G13000401" -County and PUMA "G1300510, G13000402" -County and PUMA "G1300530, G13001700" -County and PUMA "G1300550, G13002600" -County and PUMA "G1300570, G13003101" -County and PUMA "G1300570, G13003102" -County and PUMA "G1300590, G13003600" -County and PUMA "G1300610, G13001800" -County and PUMA "G1300630, G13005001" -County and PUMA "G1300630, G13005002" -County and PUMA "G1300650, G13000500" -County and PUMA "G1300670, G13003001" -County and PUMA "G1300670, G13003002" -County and PUMA "G1300670, G13003003" -County and PUMA "G1300670, G13003004" -County and PUMA "G1300670, G13003005" -County and PUMA "G1300690, G13000500" -County and PUMA "G1300710, G13000800" -County and PUMA "G1300730, G13004100" -County and PUMA "G1300750, G13000700" -County and PUMA "G1300770, G13002100" -County and PUMA "G1300790, G13001600" -County and PUMA "G1300810, G13001800" -County and PUMA "G1300830, G13002600" -County and PUMA "G1300850, G13003200" -County and PUMA "G1300870, G13001100" -County and PUMA "G1300890, G13001007" -County and PUMA "G1300890, G13001008" -County and PUMA "G1300890, G13002001" -County and PUMA "G1300890, G13002002" -County and PUMA "G1300890, G13002003" -County and PUMA "G1300890, G13002004" -County and PUMA "G1300910, G13001300" -County and PUMA "G1300930, G13001800" -County and PUMA "G1300950, G13000900" -County and PUMA "G1300970, G13004400" -County and PUMA "G1300990, G13001100" -County and PUMA "G1301010, G13000500" -County and PUMA "G1301030, G13000300" -County and PUMA "G1301050, G13003700" -County and PUMA "G1301070, G13001300" -County and PUMA "G1301090, G13001200" -County and PUMA "G1301110, G13002800" -County and PUMA "G1301130, G13002400" -County and PUMA "G1301150, G13002500" -County and PUMA "G1301170, G13003300" -County and PUMA "G1301190, G13003500" -County and PUMA "G1301210, G13001001" -County and PUMA "G1301210, G13001002" -County and PUMA "G1301210, G13001003" -County and PUMA "G1301210, G13001004" -County and PUMA "G1301210, G13001005" -County and PUMA "G1301210, G13001006" -County and PUMA "G1301210, G13001007" -County and PUMA "G1301210, G13004600" -County and PUMA "G1301230, G13002800" -County and PUMA "G1301250, G13004200" -County and PUMA "G1301270, G13000100" -County and PUMA "G1301290, G13002800" -County and PUMA "G1301310, G13001100" -County and PUMA "G1301330, G13003700" -County and PUMA "G1301350, G13004001" -County and PUMA "G1301350, G13004002" -County and PUMA "G1301350, G13004003" -County and PUMA "G1301350, G13004004" -County and PUMA "G1301350, G13004005" -County and PUMA "G1301350, G13004006" -County and PUMA "G1301370, G13003500" -County and PUMA "G1301390, G13003400" -County and PUMA "G1301410, G13004200" -County and PUMA "G1301430, G13002500" -County and PUMA "G1301450, G13001800" -County and PUMA "G1301470, G13003500" -County and PUMA "G1301490, G13002200" -County and PUMA "G1301510, G13006001" -County and PUMA "G1301510, G13006002" -County and PUMA "G1301530, G13001500" -County and PUMA "G1301550, G13000700" -County and PUMA "G1301570, G13003800" -County and PUMA "G1301590, G13003900" -County and PUMA "G1301610, G13001200" -County and PUMA "G1301630, G13004200" -County and PUMA "G1301650, G13004200" -County and PUMA "G1301670, G13001300" -County and PUMA "G1301690, G13001600" -County and PUMA "G1301710, G13001900" -County and PUMA "G1301730, G13000500" -County and PUMA "G1301750, G13001300" -County and PUMA "G1301770, G13000900" -County and PUMA "G1301790, G13000200" -County and PUMA "G1301810, G13004200" -County and PUMA "G1301830, G13000200" -County and PUMA "G1301850, G13000600" -County and PUMA "G1301870, G13003200" -County and PUMA "G1301890, G13004200" -County and PUMA "G1301910, G13000100" -County and PUMA "G1301930, G13001800" -County and PUMA "G1301950, G13003700" -County and PUMA "G1301970, G13001800" -County and PUMA "G1301990, G13002200" -County and PUMA "G1302010, G13001100" -County and PUMA "G1302050, G13001100" -County and PUMA "G1302070, G13001600" -County and PUMA "G1302090, G13001200" -County and PUMA "G1302110, G13003900" -County and PUMA "G1302130, G13002800" -County and PUMA "G1302150, G13001700" -County and PUMA "G1302170, G13004300" -County and PUMA "G1302190, G13003700" -County and PUMA "G1302210, G13003700" -County and PUMA "G1302230, G13004500" -County and PUMA "G1302250, G13001600" -County and PUMA "G1302270, G13002800" -County and PUMA "G1302290, G13000500" -County and PUMA "G1302310, G13001900" -County and PUMA "G1302330, G13002500" -County and PUMA "G1302350, G13001500" -County and PUMA "G1302370, G13001600" -County and PUMA "G1302390, G13001800" -County and PUMA "G1302410, G13003200" -County and PUMA "G1302430, G13001800" -County and PUMA "G1302450, G13004000" -County and PUMA "G1302470, G13004300" -County and PUMA "G1302490, G13001800" -County and PUMA "G1302510, G13000300" -County and PUMA "G1302530, G13001100" -County and PUMA "G1302550, G13001900" -County and PUMA "G1302570, G13003500" -County and PUMA "G1302590, G13001800" -County and PUMA "G1302610, G13001800" -County and PUMA "G1302630, G13001800" -County and PUMA "G1302650, G13004200" -County and PUMA "G1302670, G13001200" -County and PUMA "G1302690, G13001800" -County and PUMA "G1302710, G13001200" -County and PUMA "G1302730, G13001100" -County and PUMA "G1302750, G13000800" -County and PUMA "G1302770, G13000700" -County and PUMA "G1302790, G13001200" -County and PUMA "G1302810, G13003200" -County and PUMA "G1302830, G13001300" -County and PUMA "G1302850, G13002200" -County and PUMA "G1302870, G13000700" -County and PUMA "G1302890, G13001600" -County and PUMA "G1302910, G13003200" -County and PUMA "G1302930, G13001900" -County and PUMA "G1302950, G13002600" -County and PUMA "G1302970, G13003900" -County and PUMA "G1302990, G13000500" -County and PUMA "G1303010, G13004200" -County and PUMA "G1303030, G13004200" -County and PUMA "G1303050, G13001200" -County and PUMA "G1303070, G13001800" -County and PUMA "G1303090, G13001200" -County and PUMA "G1303110, G13003200" -County and PUMA "G1303130, G13002700" -County and PUMA "G1303150, G13001300" -County and PUMA "G1303170, G13004200" -County and PUMA "G1303190, G13001600" -County and PUMA "G1303210, G13000800" -County and PUMA "G1500010, G15000200" -County and PUMA "G1500030, G15000301" -County and PUMA "G1500030, G15000302" -County and PUMA "G1500030, G15000303" -County and PUMA "G1500030, G15000304" -County and PUMA "G1500030, G15000305" -County and PUMA "G1500030, G15000306" -County and PUMA "G1500030, G15000307" -County and PUMA "G1500030, G15000308" -County and PUMA "G1500050, G15000100" -County and PUMA "G1500070, G15000100" -County and PUMA "G1500090, G15000100" -County and PUMA "G1600010, G16000400" -County and PUMA "G1600010, G16000600" -County and PUMA "G1600010, G16000701" -County and PUMA "G1600010, G16000702" -County and PUMA "G1600010, G16000800" -County and PUMA "G1600030, G16000300" -County and PUMA "G1600050, G16001300" -County and PUMA "G1600070, G16001300" -County and PUMA "G1600090, G16000100" -County and PUMA "G1600110, G16001100" -County and PUMA "G1600110, G16001300" -County and PUMA "G1600130, G16001000" -County and PUMA "G1600150, G16000300" -County and PUMA "G1600170, G16000100" -County and PUMA "G1600190, G16001200" -County and PUMA "G1600210, G16000100" -County and PUMA "G1600230, G16000300" -County and PUMA "G1600250, G16001000" -County and PUMA "G1600270, G16000400" -County and PUMA "G1600270, G16000500" -County and PUMA "G1600270, G16000600" -County and PUMA "G1600290, G16001300" -County and PUMA "G1600310, G16000900" -County and PUMA "G1600330, G16000300" -County and PUMA "G1600350, G16000300" -County and PUMA "G1600370, G16000300" -County and PUMA "G1600390, G16001000" -County and PUMA "G1600410, G16001300" -County and PUMA "G1600430, G16001100" -County and PUMA "G1600450, G16000400" -County and PUMA "G1600470, G16001000" -County and PUMA "G1600490, G16000300" -County and PUMA "G1600510, G16001100" -County and PUMA "G1600530, G16001000" -County and PUMA "G1600550, G16000100" -County and PUMA "G1600550, G16000200" -County and PUMA "G1600570, G16000100" -County and PUMA "G1600590, G16000300" -County and PUMA "G1600610, G16000300" -County and PUMA "G1600630, G16001000" -County and PUMA "G1600650, G16001100" -County and PUMA "G1600670, G16001000" -County and PUMA "G1600690, G16000300" -County and PUMA "G1600710, G16001300" -County and PUMA "G1600730, G16000500" -County and PUMA "G1600750, G16000400" -County and PUMA "G1600770, G16001300" -County and PUMA "G1600790, G16000100" -County and PUMA "G1600810, G16001100" -County and PUMA "G1600830, G16000900" -County and PUMA "G1600850, G16000300" -County and PUMA "G1600870, G16000400" -County and PUMA "G1700010, G17000300" -County and PUMA "G1700030, G17000800" -County and PUMA "G1700050, G17000501" -County and PUMA "G1700070, G17002901" -County and PUMA "G1700090, G17000300" -County and PUMA "G1700110, G17002501" -County and PUMA "G1700130, G17000401" -County and PUMA "G1700150, G17000104" -County and PUMA "G1700170, G17000401" -County and PUMA "G1700190, G17002100" -County and PUMA "G1700210, G17001602" -County and PUMA "G1700230, G17000700" -County and PUMA "G1700250, G17000700" -County and PUMA "G1700270, G17000501" -County and PUMA "G1700290, G17000600" -County and PUMA "G1700310, G17003401" -County and PUMA "G1700310, G17003407" -County and PUMA "G1700310, G17003408" -County and PUMA "G1700310, G17003409" -County and PUMA "G1700310, G17003410" -County and PUMA "G1700310, G17003411" -County and PUMA "G1700310, G17003412" -County and PUMA "G1700310, G17003413" -County and PUMA "G1700310, G17003414" -County and PUMA "G1700310, G17003415" -County and PUMA "G1700310, G17003416" -County and PUMA "G1700310, G17003417" -County and PUMA "G1700310, G17003418" -County and PUMA "G1700310, G17003419" -County and PUMA "G1700310, G17003420" -County and PUMA "G1700310, G17003421" -County and PUMA "G1700310, G17003422" -County and PUMA "G1700310, G17003501" -County and PUMA "G1700310, G17003502" -County and PUMA "G1700310, G17003503" -County and PUMA "G1700310, G17003504" -County and PUMA "G1700310, G17003520" -County and PUMA "G1700310, G17003521" -County and PUMA "G1700310, G17003522" -County and PUMA "G1700310, G17003523" -County and PUMA "G1700310, G17003524" -County and PUMA "G1700310, G17003525" -County and PUMA "G1700310, G17003526" -County and PUMA "G1700310, G17003527" -County and PUMA "G1700310, G17003528" -County and PUMA "G1700310, G17003529" -County and PUMA "G1700310, G17003530" -County and PUMA "G1700310, G17003531" -County and PUMA "G1700310, G17003532" -County and PUMA "G1700330, G17000700" -County and PUMA "G1700350, G17000600" -County and PUMA "G1700370, G17002601" -County and PUMA "G1700390, G17001602" -County and PUMA "G1700410, G17000600" -County and PUMA "G1700430, G17003202" -County and PUMA "G1700430, G17003203" -County and PUMA "G1700430, G17003204" -County and PUMA "G1700430, G17003205" -County and PUMA "G1700430, G17003207" -County and PUMA "G1700430, G17003208" -County and PUMA "G1700430, G17003209" -County and PUMA "G1700450, G17000600" -County and PUMA "G1700470, G17000800" -County and PUMA "G1700490, G17000501" -County and PUMA "G1700510, G17000501" -County and PUMA "G1700530, G17002200" -County and PUMA "G1700550, G17000900" -County and PUMA "G1700570, G17000202" -County and PUMA "G1700590, G17000800" -County and PUMA "G1700610, G17000401" -County and PUMA "G1700630, G17003700" -County and PUMA "G1700650, G17000800" -County and PUMA "G1700670, G17000202" -County and PUMA "G1700690, G17000800" -County and PUMA "G1700710, G17000202" -County and PUMA "G1700730, G17000202" -County and PUMA "G1700750, G17002200" -County and PUMA "G1700770, G17000900" -County and PUMA "G1700790, G17000700" -County and PUMA "G1700810, G17001001" -County and PUMA "G1700830, G17000401" -County and PUMA "G1700850, G17000104" -County and PUMA "G1700870, G17000800" -County and PUMA "G1700890, G17003005" -County and PUMA "G1700890, G17003007" -County and PUMA "G1700890, G17003008" -County and PUMA "G1700890, G17003009" -County and PUMA "G1700910, G17002300" -County and PUMA "G1700930, G17003700" -County and PUMA "G1700950, G17002501" -County and PUMA "G1700970, G17003306" -County and PUMA "G1700970, G17003307" -County and PUMA "G1700970, G17003308" -County and PUMA "G1700970, G17003309" -County and PUMA "G1700970, G17003310" -County and PUMA "G1700990, G17002400" -County and PUMA "G1701010, G17000700" -County and PUMA "G1701030, G17000104" -County and PUMA "G1701050, G17002200" -County and PUMA "G1701070, G17001602" -County and PUMA "G1701090, G17000202" -County and PUMA "G1701110, G17003601" -County and PUMA "G1701110, G17003602" -County and PUMA "G1701130, G17002000" -County and PUMA "G1701150, G17001500" -County and PUMA "G1701170, G17000401" -County and PUMA "G1701190, G17001204" -County and PUMA "G1701190, G17001205" -County and PUMA "G1701210, G17001001" -County and PUMA "G1701230, G17002501" -County and PUMA "G1701250, G17000300" -County and PUMA "G1701270, G17000800" -County and PUMA "G1701290, G17001602" -County and PUMA "G1701310, G17000202" -County and PUMA "G1701330, G17001001" -County and PUMA "G1701350, G17000501" -County and PUMA "G1701370, G17000401" -County and PUMA "G1701390, G17001602" -County and PUMA "G1701410, G17002700" -County and PUMA "G1701430, G17001701" -County and PUMA "G1701450, G17000900" -County and PUMA "G1701470, G17001602" -County and PUMA "G1701490, G17000300" -County and PUMA "G1701510, G17000800" -County and PUMA "G1701530, G17000800" -County and PUMA "G1701550, G17002501" -County and PUMA "G1701570, G17001001" -County and PUMA "G1701590, G17000700" -County and PUMA "G1701610, G17000105" -County and PUMA "G1701630, G17001104" -County and PUMA "G1701630, G17001105" -County and PUMA "G1701650, G17000800" -County and PUMA "G1701670, G17001300" -County and PUMA "G1701690, G17000300" -County and PUMA "G1701710, G17000401" -County and PUMA "G1701730, G17001602" -County and PUMA "G1701750, G17002501" -County and PUMA "G1701770, G17002700" -County and PUMA "G1701790, G17001900" -County and PUMA "G1701810, G17000800" -County and PUMA "G1701830, G17002200" -County and PUMA "G1701850, G17000800" -County and PUMA "G1701870, G17000202" -County and PUMA "G1701890, G17001001" -County and PUMA "G1701910, G17000700" -County and PUMA "G1701930, G17000800" -County and PUMA "G1701950, G17000104" -County and PUMA "G1701970, G17003102" -County and PUMA "G1701970, G17003105" -County and PUMA "G1701970, G17003106" -County and PUMA "G1701970, G17003107" -County and PUMA "G1701970, G17003108" -County and PUMA "G1701990, G17000900" -County and PUMA "G1702010, G17002801" -County and PUMA "G1702010, G17002901" -County and PUMA "G1702030, G17002501" -County and PUMA "G1800010, G18000900" -County and PUMA "G1800030, G18001001" -County and PUMA "G1800030, G18001002" -County and PUMA "G1800030, G18001003" -County and PUMA "G1800050, G18002900" -County and PUMA "G1800070, G18001100" -County and PUMA "G1800090, G18001500" -County and PUMA "G1800110, G18001801" -County and PUMA "G1800130, G18002100" -County and PUMA "G1800150, G18001100" -County and PUMA "G1800170, G18001300" -County and PUMA "G1800190, G18003600" -County and PUMA "G1800210, G18001600" -County and PUMA "G1800230, G18001100" -County and PUMA "G1800250, G18003400" -County and PUMA "G1800270, G18002700" -County and PUMA "G1800290, G18003100" -County and PUMA "G1800310, G18003000" -County and PUMA "G1800330, G18000600" -County and PUMA "G1800350, G18002000" -County and PUMA "G1800370, G18003400" -County and PUMA "G1800390, G18000500" -County and PUMA "G1800410, G18002600" -County and PUMA "G1800430, G18003500" -County and PUMA "G1800450, G18001600" -County and PUMA "G1800470, G18003100" -County and PUMA "G1800490, G18000700" -County and PUMA "G1800510, G18003200" -County and PUMA "G1800530, G18001400" -County and PUMA "G1800550, G18002700" -County and PUMA "G1800570, G18001801" -County and PUMA "G1800570, G18001802" -County and PUMA "G1800570, G18001803" -County and PUMA "G1800590, G18002500" -County and PUMA "G1800610, G18003500" -County and PUMA "G1800630, G18002200" -County and PUMA "G1800650, G18001500" -County and PUMA "G1800670, G18001300" -County and PUMA "G1800690, G18000900" -County and PUMA "G1800710, G18002900" -County and PUMA "G1800730, G18000700" -County and PUMA "G1800750, G18001500" -County and PUMA "G1800770, G18003000" -County and PUMA "G1800790, G18003000" -County and PUMA "G1800810, G18002400" -County and PUMA "G1800830, G18003400" -County and PUMA "G1800850, G18000800" -County and PUMA "G1800870, G18000600" -County and PUMA "G1800890, G18000101" -County and PUMA "G1800890, G18000102" -County and PUMA "G1800890, G18000103" -County and PUMA "G1800890, G18000104" -County and PUMA "G1800910, G18000300" -County and PUMA "G1800930, G18002700" -County and PUMA "G1800950, G18001900" -County and PUMA "G1800970, G18002301" -County and PUMA "G1800970, G18002302" -County and PUMA "G1800970, G18002303" -County and PUMA "G1800970, G18002304" -County and PUMA "G1800970, G18002305" -County and PUMA "G1800970, G18002306" -County and PUMA "G1800970, G18002307" -County and PUMA "G1800990, G18000800" -County and PUMA "G1801010, G18002700" -County and PUMA "G1801030, G18001400" -County and PUMA "G1801050, G18002800" -County and PUMA "G1801070, G18001100" -County and PUMA "G1801090, G18002100" -County and PUMA "G1801110, G18000700" -County and PUMA "G1801130, G18000600" -County and PUMA "G1801150, G18003100" -County and PUMA "G1801170, G18002700" -County and PUMA "G1801190, G18002700" -County and PUMA "G1801210, G18001600" -County and PUMA "G1801230, G18003400" -County and PUMA "G1801250, G18003400" -County and PUMA "G1801270, G18000200" -County and PUMA "G1801290, G18003200" -County and PUMA "G1801310, G18000700" -County and PUMA "G1801330, G18002100" -County and PUMA "G1801350, G18001500" -County and PUMA "G1801370, G18003100" -County and PUMA "G1801390, G18002600" -County and PUMA "G1801410, G18000401" -County and PUMA "G1801410, G18000402" -County and PUMA "G1801430, G18003000" -County and PUMA "G1801450, G18002500" -County and PUMA "G1801470, G18003400" -County and PUMA "G1801490, G18000700" -County and PUMA "G1801510, G18000600" -County and PUMA "G1801530, G18001600" -County and PUMA "G1801550, G18003100" -County and PUMA "G1801570, G18001200" -County and PUMA "G1801590, G18001300" -County and PUMA "G1801610, G18002600" -County and PUMA "G1801630, G18003300" -County and PUMA "G1801650, G18001600" -County and PUMA "G1801670, G18001700" -County and PUMA "G1801690, G18001400" -County and PUMA "G1801710, G18001600" -County and PUMA "G1801730, G18003200" -County and PUMA "G1801750, G18003500" -County and PUMA "G1801770, G18002600" -County and PUMA "G1801790, G18000900" -County and PUMA "G1801810, G18001100" -County and PUMA "G1801830, G18000900" -County and PUMA "G1900010, G19001800" -County and PUMA "G1900030, G19001800" -County and PUMA "G1900050, G19000400" -County and PUMA "G1900070, G19001800" -County and PUMA "G1900090, G19001800" -County and PUMA "G1900110, G19001200" -County and PUMA "G1900130, G19000500" -County and PUMA "G1900150, G19001300" -County and PUMA "G1900170, G19000400" -County and PUMA "G1900190, G19000700" -County and PUMA "G1900210, G19001900" -County and PUMA "G1900230, G19000600" -County and PUMA "G1900250, G19001900" -County and PUMA "G1900270, G19001900" -County and PUMA "G1900290, G19002100" -County and PUMA "G1900310, G19000800" -County and PUMA "G1900330, G19000200" -County and PUMA "G1900350, G19001900" -County and PUMA "G1900370, G19000400" -County and PUMA "G1900390, G19001800" -County and PUMA "G1900410, G19000100" -County and PUMA "G1900430, G19000400" -County and PUMA "G1900450, G19000800" -County and PUMA "G1900470, G19001900" -County and PUMA "G1900490, G19001400" -County and PUMA "G1900490, G19001500" -County and PUMA "G1900510, G19002200" -County and PUMA "G1900530, G19001800" -County and PUMA "G1900550, G19000700" -County and PUMA "G1900570, G19002300" -County and PUMA "G1900590, G19000100" -County and PUMA "G1900610, G19000700" -County and PUMA "G1900630, G19000100" -County and PUMA "G1900650, G19000400" -County and PUMA "G1900670, G19000200" -County and PUMA "G1900690, G19000600" -County and PUMA "G1900710, G19002100" -County and PUMA "G1900730, G19001900" -County and PUMA "G1900750, G19000600" -County and PUMA "G1900770, G19001800" -County and PUMA "G1900790, G19000600" -County and PUMA "G1900810, G19000200" -County and PUMA "G1900830, G19000600" -County and PUMA "G1900850, G19002100" -County and PUMA "G1900870, G19002300" -County and PUMA "G1900890, G19000400" -County and PUMA "G1900910, G19000600" -County and PUMA "G1900930, G19001900" -County and PUMA "G1900950, G19001200" -County and PUMA "G1900970, G19000700" -County and PUMA "G1900990, G19001400" -County and PUMA "G1901010, G19002200" -County and PUMA "G1901030, G19001100" -County and PUMA "G1901050, G19000800" -County and PUMA "G1901070, G19002200" -County and PUMA "G1901090, G19000200" -County and PUMA "G1901110, G19002300" -County and PUMA "G1901130, G19001000" -County and PUMA "G1901150, G19002300" -County and PUMA "G1901170, G19001800" -County and PUMA "G1901190, G19000100" -County and PUMA "G1901210, G19001400" -County and PUMA "G1901230, G19002200" -County and PUMA "G1901250, G19001400" -County and PUMA "G1901270, G19001200" -County and PUMA "G1901290, G19002100" -County and PUMA "G1901310, G19000200" -County and PUMA "G1901330, G19001900" -County and PUMA "G1901350, G19001800" -County and PUMA "G1901370, G19002100" -County and PUMA "G1901390, G19000800" -County and PUMA "G1901410, G19000100" -County and PUMA "G1901430, G19000100" -County and PUMA "G1901450, G19002100" -County and PUMA "G1901470, G19000100" -County and PUMA "G1901490, G19002000" -County and PUMA "G1901510, G19001900" -County and PUMA "G1901530, G19001500" -County and PUMA "G1901530, G19001600" -County and PUMA "G1901530, G19001700" -County and PUMA "G1901550, G19002100" -County and PUMA "G1901570, G19001200" -County and PUMA "G1901590, G19001800" -County and PUMA "G1901610, G19001900" -County and PUMA "G1901630, G19000900" -County and PUMA "G1901650, G19002100" -County and PUMA "G1901670, G19000100" -County and PUMA "G1901690, G19001300" -County and PUMA "G1901710, G19001200" -County and PUMA "G1901730, G19001800" -County and PUMA "G1901750, G19001800" -County and PUMA "G1901770, G19002200" -County and PUMA "G1901790, G19002200" -County and PUMA "G1901810, G19001400" -County and PUMA "G1901830, G19002200" -County and PUMA "G1901850, G19001800" -County and PUMA "G1901870, G19000600" -County and PUMA "G1901890, G19000200" -County and PUMA "G1901910, G19000400" -County and PUMA "G1901930, G19002000" -County and PUMA "G1901950, G19000200" -County and PUMA "G1901970, G19000600" -County and PUMA "G2000010, G20001400" -County and PUMA "G2000030, G20001400" -County and PUMA "G2000050, G20000400" -County and PUMA "G2000070, G20001100" -County and PUMA "G2000090, G20001100" -County and PUMA "G2000110, G20001400" -County and PUMA "G2000130, G20000802" -County and PUMA "G2000150, G20001302" -County and PUMA "G2000150, G20001304" -County and PUMA "G2000170, G20000900" -County and PUMA "G2000190, G20000900" -County and PUMA "G2000210, G20001500" -County and PUMA "G2000230, G20000100" -County and PUMA "G2000250, G20001200" -County and PUMA "G2000270, G20000200" -County and PUMA "G2000290, G20000200" -County and PUMA "G2000310, G20000900" -County and PUMA "G2000330, G20001100" -County and PUMA "G2000350, G20000900" -County and PUMA "G2000350, G20001100" -County and PUMA "G2000370, G20001500" -County and PUMA "G2000390, G20000100" -County and PUMA "G2000410, G20000200" -County and PUMA "G2000430, G20000400" -County and PUMA "G2000450, G20000700" -County and PUMA "G2000470, G20001100" -County and PUMA "G2000490, G20000900" -County and PUMA "G2000510, G20000100" -County and PUMA "G2000530, G20000200" -County and PUMA "G2000550, G20001200" -County and PUMA "G2000570, G20001200" -County and PUMA "G2000590, G20001400" -County and PUMA "G2000610, G20000300" -County and PUMA "G2000630, G20000100" -County and PUMA "G2000650, G20000100" -County and PUMA "G2000670, G20001200" -County and PUMA "G2000690, G20001200" -County and PUMA "G2000710, G20000100" -County and PUMA "G2000730, G20000900" -County and PUMA "G2000750, G20001200" -County and PUMA "G2000770, G20001100" -County and PUMA "G2000790, G20001301" -County and PUMA "G2000810, G20001200" -County and PUMA "G2000830, G20001200" -County and PUMA "G2000850, G20000802" -County and PUMA "G2000870, G20000400" -County and PUMA "G2000890, G20000200" -County and PUMA "G2000910, G20000601" -County and PUMA "G2000910, G20000602" -County and PUMA "G2000910, G20000603" -County and PUMA "G2000910, G20000604" -County and PUMA "G2000930, G20001200" -County and PUMA "G2000950, G20001100" -County and PUMA "G2000970, G20001100" -County and PUMA "G2000990, G20001500" -County and PUMA "G2001010, G20000100" -County and PUMA "G2001030, G20000400" -County and PUMA "G2001050, G20000200" -County and PUMA "G2001070, G20001400" -County and PUMA "G2001090, G20000100" -County and PUMA "G2001110, G20000900" -County and PUMA "G2001130, G20001000" -County and PUMA "G2001150, G20000900" -County and PUMA "G2001170, G20000200" -County and PUMA "G2001190, G20001200" -County and PUMA "G2001210, G20001400" -County and PUMA "G2001230, G20000200" -County and PUMA "G2001250, G20001500" -County and PUMA "G2001270, G20000900" -County and PUMA "G2001290, G20001200" -County and PUMA "G2001310, G20000200" -County and PUMA "G2001330, G20001500" -County and PUMA "G2001350, G20000100" -County and PUMA "G2001370, G20000100" -County and PUMA "G2001390, G20000802" -County and PUMA "G2001410, G20000100" -County and PUMA "G2001430, G20000200" -County and PUMA "G2001450, G20001100" -County and PUMA "G2001470, G20000100" -County and PUMA "G2001490, G20000300" -County and PUMA "G2001510, G20001100" -County and PUMA "G2001530, G20000100" -County and PUMA "G2001550, G20001000" -County and PUMA "G2001570, G20000200" -County and PUMA "G2001590, G20001000" -County and PUMA "G2001610, G20000300" -County and PUMA "G2001630, G20000100" -County and PUMA "G2001650, G20001100" -County and PUMA "G2001670, G20000100" -County and PUMA "G2001690, G20000200" -County and PUMA "G2001710, G20000100" -County and PUMA "G2001730, G20001301" -County and PUMA "G2001730, G20001302" -County and PUMA "G2001730, G20001303" -County and PUMA "G2001730, G20001304" -County and PUMA "G2001750, G20001200" -County and PUMA "G2001770, G20000801" -County and PUMA "G2001770, G20000802" -County and PUMA "G2001790, G20000100" -County and PUMA "G2001810, G20000100" -County and PUMA "G2001830, G20000100" -County and PUMA "G2001850, G20001100" -County and PUMA "G2001870, G20001200" -County and PUMA "G2001890, G20001200" -County and PUMA "G2001910, G20001100" -County and PUMA "G2001930, G20000100" -County and PUMA "G2001950, G20000100" -County and PUMA "G2001970, G20000802" -County and PUMA "G2001990, G20000100" -County and PUMA "G2002010, G20000200" -County and PUMA "G2002030, G20000100" -County and PUMA "G2002050, G20000900" -County and PUMA "G2002070, G20000900" -County and PUMA "G2002090, G20000500" -County and PUMA "G2100010, G21000600" -County and PUMA "G2100030, G21000400" -County and PUMA "G2100050, G21002000" -County and PUMA "G2100070, G21000100" -County and PUMA "G2100090, G21000400" -County and PUMA "G2100110, G21002700" -County and PUMA "G2100130, G21000900" -County and PUMA "G2100150, G21002500" -County and PUMA "G2100170, G21002300" -County and PUMA "G2100190, G21002800" -County and PUMA "G2100210, G21002100" -County and PUMA "G2100230, G21002700" -County and PUMA "G2100250, G21001000" -County and PUMA "G2100270, G21001300" -County and PUMA "G2100290, G21001600" -County and PUMA "G2100310, G21000400" -County and PUMA "G2100330, G21000200" -County and PUMA "G2100350, G21000100" -County and PUMA "G2100370, G21002600" -County and PUMA "G2100390, G21000100" -County and PUMA "G2100410, G21002600" -County and PUMA "G2100430, G21002800" -County and PUMA "G2100450, G21000600" -County and PUMA "G2100470, G21000300" -County and PUMA "G2100490, G21002300" -County and PUMA "G2100510, G21000800" -County and PUMA "G2100530, G21000600" -County and PUMA "G2100550, G21000200" -County and PUMA "G2100570, G21000600" -County and PUMA "G2100590, G21001500" -County and PUMA "G2100610, G21000400" -County and PUMA "G2100630, G21002800" -County and PUMA "G2100650, G21002200" -County and PUMA "G2100670, G21001901" -County and PUMA "G2100670, G21001902" -County and PUMA "G2100690, G21002700" -County and PUMA "G2100710, G21001100" -County and PUMA "G2100730, G21002000" -County and PUMA "G2100750, G21000100" -County and PUMA "G2100770, G21002600" -County and PUMA "G2100790, G21002100" -County and PUMA "G2100810, G21002600" -County and PUMA "G2100830, G21000100" -County and PUMA "G2100850, G21001300" -County and PUMA "G2100870, G21000600" -County and PUMA "G2100890, G21002800" -County and PUMA "G2100910, G21001500" -County and PUMA "G2100930, G21001200" -County and PUMA "G2100930, G21001300" -County and PUMA "G2100950, G21000900" -County and PUMA "G2100970, G21002300" -County and PUMA "G2100990, G21000400" -County and PUMA "G2101010, G21001400" -County and PUMA "G2101030, G21001800" -County and PUMA "G2101050, G21000100" -County and PUMA "G2101070, G21000200" -County and PUMA "G2101090, G21000800" -County and PUMA "G2101110, G21001701" -County and PUMA "G2101110, G21001702" -County and PUMA "G2101110, G21001703" -County and PUMA "G2101110, G21001704" -County and PUMA "G2101110, G21001705" -County and PUMA "G2101110, G21001706" -County and PUMA "G2101130, G21002100" -County and PUMA "G2101150, G21001100" -County and PUMA "G2101170, G21002400" -County and PUMA "G2101190, G21001000" -County and PUMA "G2101210, G21000900" -County and PUMA "G2101230, G21001200" -County and PUMA "G2101250, G21000800" -County and PUMA "G2101270, G21002800" -County and PUMA "G2101290, G21001000" -County and PUMA "G2101310, G21001000" -County and PUMA "G2101330, G21001000" -County and PUMA "G2101350, G21002700" -County and PUMA "G2101370, G21002100" -County and PUMA "G2101390, G21000200" -County and PUMA "G2101410, G21000400" -County and PUMA "G2101430, G21000300" -County and PUMA "G2101450, G21000100" -County and PUMA "G2101470, G21000700" -County and PUMA "G2101490, G21001400" -County and PUMA "G2101510, G21002200" -County and PUMA "G2101530, G21001100" -County and PUMA "G2101550, G21001200" -County and PUMA "G2101570, G21000100" -County and PUMA "G2101590, G21001100" -County and PUMA "G2101610, G21002700" -County and PUMA "G2101630, G21001300" -County and PUMA "G2101650, G21002700" -County and PUMA "G2101670, G21002000" -County and PUMA "G2101690, G21000400" -County and PUMA "G2101710, G21000400" -County and PUMA "G2101730, G21002700" -County and PUMA "G2101750, G21002700" -County and PUMA "G2101770, G21000200" -County and PUMA "G2101790, G21001200" -County and PUMA "G2101810, G21002300" -County and PUMA "G2101830, G21001400" -County and PUMA "G2101850, G21001800" -County and PUMA "G2101870, G21002600" -County and PUMA "G2101890, G21001000" -County and PUMA "G2101910, G21002600" -County and PUMA "G2101930, G21001000" -County and PUMA "G2101950, G21001100" -County and PUMA "G2101970, G21002200" -County and PUMA "G2101990, G21000700" -County and PUMA "G2102010, G21002700" -County and PUMA "G2102030, G21000800" -County and PUMA "G2102050, G21002700" -County and PUMA "G2102070, G21000600" -County and PUMA "G2102090, G21002300" -County and PUMA "G2102110, G21001600" -County and PUMA "G2102110, G21001800" -County and PUMA "G2102130, G21000400" -County and PUMA "G2102150, G21001600" -County and PUMA "G2102170, G21000600" -County and PUMA "G2102190, G21000300" -County and PUMA "G2102210, G21000300" -County and PUMA "G2102230, G21001800" -County and PUMA "G2102250, G21001400" -County and PUMA "G2102270, G21000500" -County and PUMA "G2102290, G21001200" -County and PUMA "G2102310, G21000700" -County and PUMA "G2102330, G21001400" -County and PUMA "G2102350, G21000900" -County and PUMA "G2102370, G21001000" -County and PUMA "G2102390, G21002000" -County and PUMA "G2200010, G22001100" -County and PUMA "G2200030, G22000800" -County and PUMA "G2200050, G22001600" -County and PUMA "G2200070, G22002000" -County and PUMA "G2200090, G22000600" -County and PUMA "G2200110, G22000800" -County and PUMA "G2200130, G22000300" -County and PUMA "G2200150, G22000200" -County and PUMA "G2200170, G22000100" -County and PUMA "G2200170, G22000101" -County and PUMA "G2200190, G22000800" -County and PUMA "G2200190, G22000900" -County and PUMA "G2200210, G22000500" -County and PUMA "G2200230, G22000900" -County and PUMA "G2200250, G22000600" -County and PUMA "G2200270, G22000300" -County and PUMA "G2200290, G22000600" -County and PUMA "G2200310, G22000300" -County and PUMA "G2200330, G22001500" -County and PUMA "G2200330, G22001501" -County and PUMA "G2200330, G22001502" -County and PUMA "G2200350, G22000500" -County and PUMA "G2200370, G22001400" -County and PUMA "G2200390, G22001000" -County and PUMA "G2200410, G22000500" -County and PUMA "G2200430, G22000600" -County and PUMA "G2200450, G22001300" -County and PUMA "G2200470, G22001400" -County and PUMA "G2200490, G22000500" -County and PUMA "G2200510, G22002300" -County and PUMA "G2200510, G22002301" -County and PUMA "G2200510, G22002302" -County and PUMA "G2200510, G22002500" -County and PUMA "G2200530, G22000900" -County and PUMA "G2200550, G22001200" -County and PUMA "G2200550, G22001201" -County and PUMA "G2200570, G22002000" -County and PUMA "G2200590, G22000600" -County and PUMA "G2200610, G22000300" -County and PUMA "G2200630, G22001700" -County and PUMA "G2200650, G22000500" -County and PUMA "G2200670, G22000500" -County and PUMA "G2200690, G22000300" -County and PUMA "G2200710, G22002400" -County and PUMA "G2200710, G22002401" -County and PUMA "G2200710, G22002402" -County and PUMA "G2200730, G22000400" -County and PUMA "G2200750, G22002500" -County and PUMA "G2200770, G22001400" -County and PUMA "G2200790, G22000700" -County and PUMA "G2200810, G22000300" -County and PUMA "G2200830, G22000500" -County and PUMA "G2200850, G22000300" -County and PUMA "G2200870, G22002500" -County and PUMA "G2200890, G22001900" -County and PUMA "G2200910, G22001700" -County and PUMA "G2200930, G22001900" -County and PUMA "G2200950, G22001900" -County and PUMA "G2200970, G22001000" -County and PUMA "G2200990, G22001300" -County and PUMA "G2201010, G22001300" -County and PUMA "G2201030, G22002200" -County and PUMA "G2201030, G22002201" -County and PUMA "G2201050, G22001800" -County and PUMA "G2201070, G22000500" -County and PUMA "G2201090, G22002100" -County and PUMA "G2201110, G22000500" -County and PUMA "G2201130, G22001100" -County and PUMA "G2201150, G22000700" -County and PUMA "G2201170, G22001800" -County and PUMA "G2201190, G22000200" -County and PUMA "G2201210, G22001400" -County and PUMA "G2201230, G22000500" -County and PUMA "G2201250, G22001400" -County and PUMA "G2201270, G22000600" -County and PUMA "G2300010, G23000600" -County and PUMA "G2300030, G23000100" -County and PUMA "G2300050, G23000700" -County and PUMA "G2300050, G23000800" -County and PUMA "G2300050, G23000900" -County and PUMA "G2300050, G23001000" -County and PUMA "G2300070, G23000200" -County and PUMA "G2300090, G23000500" -County and PUMA "G2300110, G23000400" -County and PUMA "G2300130, G23000500" -County and PUMA "G2300150, G23000500" -County and PUMA "G2300170, G23000200" -County and PUMA "G2300190, G23000300" -County and PUMA "G2300210, G23000200" -County and PUMA "G2300230, G23000700" -County and PUMA "G2300250, G23000200" -County and PUMA "G2300270, G23000500" -County and PUMA "G2300290, G23000100" -County and PUMA "G2300310, G23000800" -County and PUMA "G2300310, G23000900" -County and PUMA "G2400010, G24000100" -County and PUMA "G2400030, G24001201" -County and PUMA "G2400030, G24001202" -County and PUMA "G2400030, G24001203" -County and PUMA "G2400030, G24001204" -County and PUMA "G2400050, G24000501" -County and PUMA "G2400050, G24000502" -County and PUMA "G2400050, G24000503" -County and PUMA "G2400050, G24000504" -County and PUMA "G2400050, G24000505" -County and PUMA "G2400050, G24000506" -County and PUMA "G2400050, G24000507" -County and PUMA "G2400090, G24001500" -County and PUMA "G2400110, G24001300" -County and PUMA "G2400130, G24000400" -County and PUMA "G2400150, G24000700" -County and PUMA "G2400170, G24001600" -County and PUMA "G2400190, G24001300" -County and PUMA "G2400210, G24000301" -County and PUMA "G2400210, G24000302" -County and PUMA "G2400230, G24000100" -County and PUMA "G2400250, G24000601" -County and PUMA "G2400250, G24000602" -County and PUMA "G2400270, G24000901" -County and PUMA "G2400270, G24000902" -County and PUMA "G2400290, G24001300" -County and PUMA "G2400310, G24001001" -County and PUMA "G2400310, G24001002" -County and PUMA "G2400310, G24001003" -County and PUMA "G2400310, G24001004" -County and PUMA "G2400310, G24001005" -County and PUMA "G2400310, G24001006" -County and PUMA "G2400310, G24001007" -County and PUMA "G2400330, G24001101" -County and PUMA "G2400330, G24001102" -County and PUMA "G2400330, G24001103" -County and PUMA "G2400330, G24001104" -County and PUMA "G2400330, G24001105" -County and PUMA "G2400330, G24001106" -County and PUMA "G2400330, G24001107" -County and PUMA "G2400350, G24001300" -County and PUMA "G2400370, G24001500" -County and PUMA "G2400390, G24001400" -County and PUMA "G2400410, G24001300" -County and PUMA "G2400430, G24000200" -County and PUMA "G2400450, G24001400" -County and PUMA "G2400470, G24001400" -County and PUMA "G2405100, G24000801" -County and PUMA "G2405100, G24000802" -County and PUMA "G2405100, G24000803" -County and PUMA "G2405100, G24000804" -County and PUMA "G2405100, G24000805" -County and PUMA "G2500010, G25004700" -County and PUMA "G2500010, G25004800" -County and PUMA "G2500030, G25000100" -County and PUMA "G2500050, G25004200" -County and PUMA "G2500050, G25004301" -County and PUMA "G2500050, G25004302" -County and PUMA "G2500050, G25004303" -County and PUMA "G2500050, G25004500" -County and PUMA "G2500050, G25004901" -County and PUMA "G2500070, G25004800" -County and PUMA "G2500090, G25000701" -County and PUMA "G2500090, G25000702" -County and PUMA "G2500090, G25000703" -County and PUMA "G2500090, G25000704" -County and PUMA "G2500090, G25001000" -County and PUMA "G2500090, G25001300" -County and PUMA "G2500090, G25002800" -County and PUMA "G2500110, G25000200" -County and PUMA "G2500130, G25001600" -County and PUMA "G2500130, G25001900" -County and PUMA "G2500130, G25001901" -County and PUMA "G2500130, G25001902" -County and PUMA "G2500150, G25000200" -County and PUMA "G2500150, G25001600" -County and PUMA "G2500170, G25000400" -County and PUMA "G2500170, G25000501" -County and PUMA "G2500170, G25000502" -County and PUMA "G2500170, G25000503" -County and PUMA "G2500170, G25000504" -County and PUMA "G2500170, G25000505" -County and PUMA "G2500170, G25000506" -County and PUMA "G2500170, G25000507" -County and PUMA "G2500170, G25000508" -County and PUMA "G2500170, G25001000" -County and PUMA "G2500170, G25001300" -County and PUMA "G2500170, G25001400" -County and PUMA "G2500170, G25002400" -County and PUMA "G2500170, G25002800" -County and PUMA "G2500170, G25003400" -County and PUMA "G2500170, G25003500" -County and PUMA "G2500190, G25004800" -County and PUMA "G2500210, G25002400" -County and PUMA "G2500210, G25003400" -County and PUMA "G2500210, G25003500" -County and PUMA "G2500210, G25003601" -County and PUMA "G2500210, G25003602" -County and PUMA "G2500210, G25003603" -County and PUMA "G2500210, G25003900" -County and PUMA "G2500210, G25004000" -County and PUMA "G2500210, G25004200" -County and PUMA "G2500230, G25003900" -County and PUMA "G2500230, G25004000" -County and PUMA "G2500230, G25004301" -County and PUMA "G2500230, G25004901" -County and PUMA "G2500230, G25004902" -County and PUMA "G2500230, G25004903" -County and PUMA "G2500250, G25003301" -County and PUMA "G2500250, G25003302" -County and PUMA "G2500250, G25003303" -County and PUMA "G2500250, G25003304" -County and PUMA "G2500250, G25003305" -County and PUMA "G2500250, G25003306" -County and PUMA "G2500270, G25000300" -County and PUMA "G2500270, G25000301" -County and PUMA "G2500270, G25000302" -County and PUMA "G2500270, G25000303" -County and PUMA "G2500270, G25000304" -County and PUMA "G2500270, G25000400" -County and PUMA "G2500270, G25001400" -County and PUMA "G2500270, G25002400" -County and PUMA "G2600010, G26000300" -County and PUMA "G2600030, G26000200" -County and PUMA "G2600050, G26000900" -County and PUMA "G2600070, G26000300" -County and PUMA "G2600090, G26000400" -County and PUMA "G2600110, G26001300" -County and PUMA "G2600130, G26000100" -County and PUMA "G2600150, G26002000" -County and PUMA "G2600170, G26001400" -County and PUMA "G2600190, G26000500" -County and PUMA "G2600210, G26002400" -County and PUMA "G2600230, G26002200" -County and PUMA "G2600250, G26002000" -County and PUMA "G2600270, G26002300" -County and PUMA "G2600290, G26000400" -County and PUMA "G2600310, G26000300" -County and PUMA "G2600330, G26000200" -County and PUMA "G2600350, G26001200" -County and PUMA "G2600370, G26001900" -County and PUMA "G2600390, G26000300" -County and PUMA "G2600410, G26000200" -County and PUMA "G2600430, G26000100" -County and PUMA "G2600450, G26001900" -County and PUMA "G2600470, G26000400" -County and PUMA "G2600490, G26001701" -County and PUMA "G2600490, G26001702" -County and PUMA "G2600490, G26001703" -County and PUMA "G2600490, G26001704" -County and PUMA "G2600510, G26001300" -County and PUMA "G2600530, G26000100" -County and PUMA "G2600550, G26000500" -County and PUMA "G2600570, G26001200" -County and PUMA "G2600590, G26002500" -County and PUMA "G2600610, G26000100" -County and PUMA "G2600630, G26001600" -County and PUMA "G2600650, G26001801" -County and PUMA "G2600650, G26001802" -County and PUMA "G2600670, G26001100" -County and PUMA "G2600690, G26001300" -County and PUMA "G2600710, G26000100" -County and PUMA "G2600730, G26001200" -County and PUMA "G2600750, G26002600" -County and PUMA "G2600770, G26002101" -County and PUMA "G2600770, G26002102" -County and PUMA "G2600790, G26000400" -County and PUMA "G2600810, G26001001" -County and PUMA "G2600810, G26001002" -County and PUMA "G2600810, G26001003" -County and PUMA "G2600810, G26001004" -County and PUMA "G2600830, G26000100" -County and PUMA "G2600850, G26000600" -County and PUMA "G2600870, G26001701" -County and PUMA "G2600890, G26000500" -County and PUMA "G2600910, G26002500" -County and PUMA "G2600930, G26002800" -County and PUMA "G2600950, G26000200" -County and PUMA "G2600970, G26000200" -County and PUMA "G2600990, G26003001" -County and PUMA "G2600990, G26003002" -County and PUMA "G2600990, G26003003" -County and PUMA "G2600990, G26003004" -County and PUMA "G2600990, G26003005" -County and PUMA "G2600990, G26003006" -County and PUMA "G2601010, G26000500" -County and PUMA "G2601030, G26000100" -County and PUMA "G2601050, G26000600" -County and PUMA "G2601070, G26001100" -County and PUMA "G2601090, G26000200" -County and PUMA "G2601110, G26001400" -County and PUMA "G2601130, G26000400" -County and PUMA "G2601150, G26003300" -County and PUMA "G2601170, G26001100" -County and PUMA "G2601190, G26000300" -County and PUMA "G2601210, G26000700" -County and PUMA "G2601230, G26000600" -County and PUMA "G2601250, G26002901" -County and PUMA "G2601250, G26002902" -County and PUMA "G2601250, G26002903" -County and PUMA "G2601250, G26002904" -County and PUMA "G2601250, G26002905" -County and PUMA "G2601250, G26002906" -County and PUMA "G2601250, G26002907" -County and PUMA "G2601250, G26002908" -County and PUMA "G2601270, G26000600" -County and PUMA "G2601290, G26001300" -County and PUMA "G2601310, G26000100" -County and PUMA "G2601330, G26001100" -County and PUMA "G2601350, G26000300" -County and PUMA "G2601370, G26000300" -County and PUMA "G2601390, G26000801" -County and PUMA "G2601390, G26000802" -County and PUMA "G2601410, G26000300" -County and PUMA "G2601430, G26001300" -County and PUMA "G2601450, G26001500" -County and PUMA "G2601470, G26003100" -County and PUMA "G2601490, G26002200" -County and PUMA "G2601510, G26001600" -County and PUMA "G2601530, G26000200" -County and PUMA "G2601550, G26001704" -County and PUMA "G2601570, G26001600" -County and PUMA "G2601590, G26002300" -County and PUMA "G2601610, G26002701" -County and PUMA "G2601610, G26002702" -County and PUMA "G2601610, G26002703" -County and PUMA "G2601630, G26003201" -County and PUMA "G2601630, G26003202" -County and PUMA "G2601630, G26003203" -County and PUMA "G2601630, G26003204" -County and PUMA "G2601630, G26003205" -County and PUMA "G2601630, G26003206" -County and PUMA "G2601630, G26003207" -County and PUMA "G2601630, G26003208" -County and PUMA "G2601630, G26003209" -County and PUMA "G2601630, G26003210" -County and PUMA "G2601630, G26003211" -County and PUMA "G2601630, G26003212" -County and PUMA "G2601630, G26003213" -County and PUMA "G2601650, G26000400" -County and PUMA "G2700010, G27000300" -County and PUMA "G2700030, G27001101" -County and PUMA "G2700030, G27001102" -County and PUMA "G2700030, G27001103" -County and PUMA "G2700050, G27000200" -County and PUMA "G2700070, G27000200" -County and PUMA "G2700090, G27001000" -County and PUMA "G2700110, G27000800" -County and PUMA "G2700130, G27002200" -County and PUMA "G2700150, G27002000" -County and PUMA "G2700170, G27000300" -County and PUMA "G2700170, G27000400" -County and PUMA "G2700190, G27001700" -County and PUMA "G2700210, G27000300" -County and PUMA "G2700230, G27002000" -County and PUMA "G2700250, G27000600" -County and PUMA "G2700270, G27000100" -County and PUMA "G2700290, G27000200" -County and PUMA "G2700310, G27000400" -County and PUMA "G2700330, G27002100" -County and PUMA "G2700350, G27000700" -County and PUMA "G2700370, G27001501" -County and PUMA "G2700370, G27001502" -County and PUMA "G2700370, G27001503" -County and PUMA "G2700390, G27002400" -County and PUMA "G2700410, G27000800" -County and PUMA "G2700430, G27002100" -County and PUMA "G2700450, G27002600" -County and PUMA "G2700470, G27002400" -County and PUMA "G2700490, G27002300" -County and PUMA "G2700510, G27000800" -County and PUMA "G2700530, G27001401" -County and PUMA "G2700530, G27001402" -County and PUMA "G2700530, G27001403" -County and PUMA "G2700530, G27001404" -County and PUMA "G2700530, G27001405" -County and PUMA "G2700530, G27001406" -County and PUMA "G2700530, G27001407" -County and PUMA "G2700530, G27001408" -County and PUMA "G2700530, G27001409" -County and PUMA "G2700530, G27001410" -County and PUMA "G2700550, G27002600" -County and PUMA "G2700570, G27000200" -County and PUMA "G2700590, G27000600" -County and PUMA "G2700610, G27000300" -County and PUMA "G2700630, G27002100" -County and PUMA "G2700650, G27000600" -County and PUMA "G2700670, G27001900" -County and PUMA "G2700690, G27000100" -County and PUMA "G2700710, G27000400" -County and PUMA "G2700730, G27002000" -County and PUMA "G2700750, G27000400" -County and PUMA "G2700770, G27000200" -County and PUMA "G2700790, G27002300" -County and PUMA "G2700810, G27002000" -County and PUMA "G2700830, G27002000" -County and PUMA "G2700850, G27001900" -County and PUMA "G2700870, G27000200" -County and PUMA "G2700890, G27000100" -County and PUMA "G2700910, G27002100" -County and PUMA "G2700930, G27001900" -County and PUMA "G2700950, G27000600" -County and PUMA "G2700970, G27000700" -County and PUMA "G2700990, G27002400" -County and PUMA "G2701010, G27002100" -County and PUMA "G2701030, G27002200" -County and PUMA "G2701050, G27002100" -County and PUMA "G2701070, G27000100" -County and PUMA "G2701090, G27002500" -County and PUMA "G2701110, G27000800" -County and PUMA "G2701130, G27000100" -County and PUMA "G2701150, G27000600" -County and PUMA "G2701170, G27002100" -County and PUMA "G2701190, G27000100" -County and PUMA "G2701210, G27000800" -County and PUMA "G2701230, G27001301" -County and PUMA "G2701230, G27001302" -County and PUMA "G2701230, G27001303" -County and PUMA "G2701230, G27001304" -County and PUMA "G2701250, G27000100" -County and PUMA "G2701270, G27002000" -County and PUMA "G2701290, G27001900" -County and PUMA "G2701310, G27002300" -County and PUMA "G2701330, G27002100" -County and PUMA "G2701350, G27000100" -County and PUMA "G2701370, G27000400" -County and PUMA "G2701370, G27000500" -County and PUMA "G2701390, G27001600" -County and PUMA "G2701390, G27001700" -County and PUMA "G2701410, G27001000" -County and PUMA "G2701430, G27001900" -County and PUMA "G2701450, G27000900" -County and PUMA "G2701470, G27002400" -County and PUMA "G2701490, G27000800" -County and PUMA "G2701510, G27000800" -County and PUMA "G2701530, G27000700" -County and PUMA "G2701550, G27000800" -County and PUMA "G2701570, G27002600" -County and PUMA "G2701590, G27000700" -County and PUMA "G2701610, G27002200" -County and PUMA "G2701630, G27001201" -County and PUMA "G2701630, G27001202" -County and PUMA "G2701650, G27002100" -County and PUMA "G2701670, G27000800" -County and PUMA "G2701690, G27002600" -County and PUMA "G2701710, G27001800" -County and PUMA "G2701730, G27002000" -County and PUMA "G2800010, G28001600" -County and PUMA "G2800030, G28000200" -County and PUMA "G2800050, G28001600" -County and PUMA "G2800070, G28000700" -County and PUMA "G2800090, G28000200" -County and PUMA "G2800110, G28000800" -County and PUMA "G2800130, G28000400" -County and PUMA "G2800150, G28000700" -County and PUMA "G2800170, G28000400" -County and PUMA "G2800190, G28000600" -County and PUMA "G2800210, G28001600" -County and PUMA "G2800230, G28001500" -County and PUMA "G2800250, G28000600" -County and PUMA "G2800270, G28000300" -County and PUMA "G2800290, G28001200" -County and PUMA "G2800310, G28001700" -County and PUMA "G2800330, G28000100" -County and PUMA "G2800350, G28001800" -County and PUMA "G2800370, G28001600" -County and PUMA "G2800390, G28001900" -County and PUMA "G2800410, G28001700" -County and PUMA "G2800430, G28000700" -County and PUMA "G2800450, G28001900" -County and PUMA "G2800470, G28002000" -County and PUMA "G2800490, G28001000" -County and PUMA "G2800490, G28001100" -County and PUMA "G2800490, G28001200" -County and PUMA "G2800510, G28000700" -County and PUMA "G2800530, G28000800" -County and PUMA "G2800550, G28000800" -County and PUMA "G2800570, G28000400" -County and PUMA "G2800590, G28002100" -County and PUMA "G2800610, G28001400" -County and PUMA "G2800630, G28001600" -County and PUMA "G2800650, G28001700" -County and PUMA "G2800670, G28001700" -County and PUMA "G2800690, G28001400" -County and PUMA "G2800710, G28000400" -County and PUMA "G2800730, G28001800" -County and PUMA "G2800750, G28001500" -County and PUMA "G2800770, G28001600" -County and PUMA "G2800790, G28001400" -County and PUMA "G2800810, G28000500" -County and PUMA "G2800830, G28000700" -County and PUMA "G2800850, G28001600" -County and PUMA "G2800870, G28000600" -County and PUMA "G2800890, G28000900" -County and PUMA "G2800890, G28001000" -County and PUMA "G2800910, G28001800" -County and PUMA "G2800930, G28000200" -County and PUMA "G2800950, G28000400" -County and PUMA "G2800970, G28000700" -County and PUMA "G2800990, G28001400" -County and PUMA "G2801010, G28001500" -County and PUMA "G2801030, G28000600" -County and PUMA "G2801050, G28000600" -County and PUMA "G2801070, G28000300" -County and PUMA "G2801090, G28001900" -County and PUMA "G2801110, G28001800" -County and PUMA "G2801130, G28001600" -County and PUMA "G2801150, G28000500" -County and PUMA "G2801170, G28000200" -County and PUMA "G2801190, G28000300" -County and PUMA "G2801210, G28001300" -County and PUMA "G2801230, G28001400" -County and PUMA "G2801250, G28000800" -County and PUMA "G2801270, G28001300" -County and PUMA "G2801290, G28001400" -County and PUMA "G2801310, G28001900" -County and PUMA "G2801330, G28000800" -County and PUMA "G2801350, G28000300" -County and PUMA "G2801370, G28000300" -County and PUMA "G2801390, G28000200" -County and PUMA "G2801410, G28000200" -County and PUMA "G2801430, G28000300" -County and PUMA "G2801450, G28000500" -County and PUMA "G2801470, G28001600" -County and PUMA "G2801490, G28001200" -County and PUMA "G2801510, G28000800" -County and PUMA "G2801530, G28001700" -County and PUMA "G2801550, G28000600" -County and PUMA "G2801570, G28001600" -County and PUMA "G2801590, G28000600" -County and PUMA "G2801610, G28000700" -County and PUMA "G2801630, G28000900" -County and PUMA "G2900010, G29000300" -County and PUMA "G2900030, G29000200" -County and PUMA "G2900050, G29000100" -County and PUMA "G2900070, G29000400" -County and PUMA "G2900090, G29002700" -County and PUMA "G2900110, G29001200" -County and PUMA "G2900130, G29001100" -County and PUMA "G2900150, G29001300" -County and PUMA "G2900170, G29002200" -County and PUMA "G2900190, G29000600" -County and PUMA "G2900210, G29000200" -County and PUMA "G2900230, G29002400" -County and PUMA "G2900250, G29000800" -County and PUMA "G2900270, G29000500" -County and PUMA "G2900290, G29001400" -County and PUMA "G2900310, G29002200" -County and PUMA "G2900330, G29000700" -County and PUMA "G2900350, G29002400" -County and PUMA "G2900370, G29001100" -County and PUMA "G2900390, G29001200" -County and PUMA "G2900410, G29000700" -County and PUMA "G2900430, G29002601" -County and PUMA "G2900450, G29000300" -County and PUMA "G2900470, G29000901" -County and PUMA "G2900470, G29000902" -County and PUMA "G2900470, G29000903" -County and PUMA "G2900490, G29000800" -County and PUMA "G2900510, G29000500" -County and PUMA "G2900530, G29000700" -County and PUMA "G2900550, G29001500" -County and PUMA "G2900570, G29001200" -County and PUMA "G2900590, G29001300" -County and PUMA "G2900610, G29000100" -County and PUMA "G2900630, G29000200" -County and PUMA "G2900650, G29001500" -County and PUMA "G2900670, G29002500" -County and PUMA "G2900690, G29002300" -County and PUMA "G2900710, G29001600" -County and PUMA "G2900730, G29001500" -County and PUMA "G2900750, G29000100" -County and PUMA "G2900770, G29002601" -County and PUMA "G2900770, G29002602" -County and PUMA "G2900770, G29002603" -County and PUMA "G2900790, G29000100" -County and PUMA "G2900810, G29000100" -County and PUMA "G2900830, G29001200" -County and PUMA "G2900850, G29001300" -County and PUMA "G2900870, G29000100" -County and PUMA "G2900890, G29000700" -County and PUMA "G2900910, G29002500" -County and PUMA "G2900930, G29002400" -County and PUMA "G2900950, G29001001" -County and PUMA "G2900950, G29001002" -County and PUMA "G2900950, G29001003" -County and PUMA "G2900950, G29001004" -County and PUMA "G2900950, G29001005" -County and PUMA "G2900970, G29002800" -County and PUMA "G2900990, G29002001" -County and PUMA "G2900990, G29002002" -County and PUMA "G2901010, G29000800" -County and PUMA "G2901030, G29000300" -County and PUMA "G2901050, G29001300" -County and PUMA "G2901070, G29000800" -County and PUMA "G2901090, G29001200" -County and PUMA "G2901110, G29000300" -County and PUMA "G2901130, G29000400" -County and PUMA "G2901150, G29000100" -County and PUMA "G2901170, G29000100" -County and PUMA "G2901190, G29002700" -County and PUMA "G2901210, G29000300" -County and PUMA "G2901230, G29002400" -County and PUMA "G2901250, G29001500" -County and PUMA "G2901270, G29000300" -County and PUMA "G2901290, G29000100" -County and PUMA "G2901310, G29001400" -County and PUMA "G2901330, G29002300" -County and PUMA "G2901350, G29000500" -County and PUMA "G2901370, G29000300" -County and PUMA "G2901390, G29000400" -County and PUMA "G2901410, G29001400" -County and PUMA "G2901430, G29002300" -County and PUMA "G2901450, G29002800" -County and PUMA "G2901470, G29000100" -County and PUMA "G2901490, G29002500" -County and PUMA "G2901510, G29000500" -County and PUMA "G2901530, G29002500" -County and PUMA "G2901550, G29002300" -County and PUMA "G2901570, G29002100" -County and PUMA "G2901590, G29000700" -County and PUMA "G2901610, G29001500" -County and PUMA "G2901630, G29000400" -County and PUMA "G2901650, G29000903" -County and PUMA "G2901670, G29001300" -County and PUMA "G2901690, G29001400" -County and PUMA "G2901710, G29000100" -County and PUMA "G2901730, G29000300" -County and PUMA "G2901750, G29000700" -County and PUMA "G2901770, G29000800" -County and PUMA "G2901790, G29002400" -County and PUMA "G2901810, G29002400" -County and PUMA "G2901830, G29001701" -County and PUMA "G2901830, G29001702" -County and PUMA "G2901830, G29001703" -County and PUMA "G2901850, G29001200" -County and PUMA "G2901860, G29002100" -County and PUMA "G2901870, G29002100" -County and PUMA "G2901890, G29001801" -County and PUMA "G2901890, G29001802" -County and PUMA "G2901890, G29001803" -County and PUMA "G2901890, G29001804" -County and PUMA "G2901890, G29001805" -County and PUMA "G2901890, G29001806" -County and PUMA "G2901890, G29001807" -County and PUMA "G2901890, G29001808" -County and PUMA "G2901950, G29000700" -County and PUMA "G2901970, G29000300" -County and PUMA "G2901990, G29000300" -County and PUMA "G2902010, G29002200" -County and PUMA "G2902030, G29002500" -County and PUMA "G2902050, G29000300" -County and PUMA "G2902070, G29002300" -County and PUMA "G2902090, G29002700" -County and PUMA "G2902110, G29000100" -County and PUMA "G2902130, G29002700" -County and PUMA "G2902150, G29002500" -County and PUMA "G2902170, G29001200" -County and PUMA "G2902190, G29000400" -County and PUMA "G2902210, G29002100" -County and PUMA "G2902230, G29002400" -County and PUMA "G2902250, G29002601" -County and PUMA "G2902270, G29000100" -County and PUMA "G2902290, G29002500" -County and PUMA "G2905100, G29001901" -County and PUMA "G2905100, G29001902" -County and PUMA "G3000010, G30000300" -County and PUMA "G3000030, G30000600" -County and PUMA "G3000050, G30000400" -County and PUMA "G3000070, G30000300" -County and PUMA "G3000090, G30000500" -County and PUMA "G3000110, G30000600" -County and PUMA "G3000130, G30000400" -County and PUMA "G3000150, G30000400" -County and PUMA "G3000170, G30000600" -County and PUMA "G3000190, G30000600" -County and PUMA "G3000210, G30000600" -County and PUMA "G3000230, G30000300" -County and PUMA "G3000250, G30000600" -County and PUMA "G3000270, G30000400" -County and PUMA "G3000290, G30000100" -County and PUMA "G3000310, G30000500" -County and PUMA "G3000330, G30000600" -County and PUMA "G3000350, G30000100" -County and PUMA "G3000370, G30000600" -County and PUMA "G3000390, G30000300" -County and PUMA "G3000410, G30000400" -County and PUMA "G3000430, G30000300" -County and PUMA "G3000450, G30000400" -County and PUMA "G3000470, G30000200" -County and PUMA "G3000490, G30000300" -County and PUMA "G3000510, G30000400" -County and PUMA "G3000530, G30000100" -County and PUMA "G3000550, G30000600" -County and PUMA "G3000570, G30000300" -County and PUMA "G3000590, G30000400" -County and PUMA "G3000610, G30000200" -County and PUMA "G3000630, G30000200" -County and PUMA "G3000650, G30000600" -County and PUMA "G3000670, G30000500" -County and PUMA "G3000690, G30000400" -County and PUMA "G3000710, G30000600" -County and PUMA "G3000730, G30000400" -County and PUMA "G3000750, G30000600" -County and PUMA "G3000770, G30000300" -County and PUMA "G3000790, G30000600" -County and PUMA "G3000810, G30000200" -County and PUMA "G3000830, G30000600" -County and PUMA "G3000850, G30000600" -County and PUMA "G3000870, G30000600" -County and PUMA "G3000890, G30000200" -County and PUMA "G3000910, G30000600" -County and PUMA "G3000930, G30000300" -County and PUMA "G3000950, G30000500" -County and PUMA "G3000970, G30000500" -County and PUMA "G3000990, G30000400" -County and PUMA "G3001010, G30000400" -County and PUMA "G3001030, G30000600" -County and PUMA "G3001050, G30000600" -County and PUMA "G3001070, G30000400" -County and PUMA "G3001090, G30000600" -County and PUMA "G3001110, G30000600" -County and PUMA "G3001110, G30000700" -County and PUMA "G3100010, G31000500" -County and PUMA "G3100030, G31000200" -County and PUMA "G3100050, G31000400" -County and PUMA "G3100070, G31000100" -County and PUMA "G3100090, G31000300" -County and PUMA "G3100110, G31000200" -County and PUMA "G3100130, G31000100" -County and PUMA "G3100150, G31000100" -County and PUMA "G3100170, G31000100" -County and PUMA "G3100190, G31000500" -County and PUMA "G3100210, G31000200" -County and PUMA "G3100230, G31000600" -County and PUMA "G3100250, G31000701" -County and PUMA "G3100270, G31000200" -County and PUMA "G3100290, G31000400" -County and PUMA "G3100310, G31000100" -County and PUMA "G3100330, G31000100" -County and PUMA "G3100350, G31000500" -County and PUMA "G3100370, G31000200" -County and PUMA "G3100390, G31000200" -County and PUMA "G3100410, G31000300" -County and PUMA "G3100430, G31000200" -County and PUMA "G3100450, G31000100" -County and PUMA "G3100470, G31000400" -County and PUMA "G3100490, G31000100" -County and PUMA "G3100510, G31000200" -County and PUMA "G3100530, G31000701" -County and PUMA "G3100550, G31000901" -County and PUMA "G3100550, G31000902" -County and PUMA "G3100550, G31000903" -County and PUMA "G3100550, G31000904" -County and PUMA "G3100570, G31000400" -County and PUMA "G3100590, G31000600" -County and PUMA "G3100610, G31000500" -County and PUMA "G3100630, G31000400" -County and PUMA "G3100650, G31000400" -County and PUMA "G3100670, G31000600" -County and PUMA "G3100690, G31000100" -County and PUMA "G3100710, G31000300" -County and PUMA "G3100730, G31000400" -County and PUMA "G3100750, G31000400" -County and PUMA "G3100770, G31000300" -County and PUMA "G3100790, G31000300" -County and PUMA "G3100810, G31000300" -County and PUMA "G3100830, G31000500" -County and PUMA "G3100850, G31000400" -County and PUMA "G3100870, G31000400" -County and PUMA "G3100890, G31000100" -County and PUMA "G3100910, G31000400" -County and PUMA "G3100930, G31000300" -County and PUMA "G3100950, G31000600" -County and PUMA "G3100970, G31000600" -County and PUMA "G3100990, G31000500" -County and PUMA "G3101010, G31000400" -County and PUMA "G3101030, G31000100" -County and PUMA "G3101050, G31000100" -County and PUMA "G3101070, G31000200" -County and PUMA "G3101090, G31000801" -County and PUMA "G3101090, G31000802" -County and PUMA "G3101110, G31000400" -County and PUMA "G3101130, G31000400" -County and PUMA "G3101150, G31000300" -County and PUMA "G3101170, G31000400" -County and PUMA "G3101190, G31000200" -County and PUMA "G3101210, G31000300" -County and PUMA "G3101230, G31000100" -County and PUMA "G3101250, G31000200" -County and PUMA "G3101270, G31000600" -County and PUMA "G3101290, G31000500" -County and PUMA "G3101310, G31000600" -County and PUMA "G3101330, G31000600" -County and PUMA "G3101350, G31000400" -County and PUMA "G3101370, G31000500" -County and PUMA "G3101390, G31000200" -County and PUMA "G3101410, G31000200" -County and PUMA "G3101430, G31000600" -County and PUMA "G3101450, G31000400" -County and PUMA "G3101470, G31000600" -County and PUMA "G3101490, G31000100" -County and PUMA "G3101510, G31000600" -County and PUMA "G3101530, G31000702" -County and PUMA "G3101550, G31000701" -County and PUMA "G3101570, G31000100" -County and PUMA "G3101590, G31000600" -County and PUMA "G3101610, G31000100" -County and PUMA "G3101630, G31000300" -County and PUMA "G3101650, G31000100" -County and PUMA "G3101670, G31000200" -County and PUMA "G3101690, G31000600" -County and PUMA "G3101710, G31000400" -County and PUMA "G3101730, G31000200" -County and PUMA "G3101750, G31000300" -County and PUMA "G3101770, G31000701" -County and PUMA "G3101790, G31000200" -County and PUMA "G3101810, G31000500" -County and PUMA "G3101830, G31000300" -County and PUMA "G3101850, G31000600" -County and PUMA "G3200010, G32000300" -County and PUMA "G3200030, G32000401" -County and PUMA "G3200030, G32000402" -County and PUMA "G3200030, G32000403" -County and PUMA "G3200030, G32000404" -County and PUMA "G3200030, G32000405" -County and PUMA "G3200030, G32000406" -County and PUMA "G3200030, G32000407" -County and PUMA "G3200030, G32000408" -County and PUMA "G3200030, G32000409" -County and PUMA "G3200030, G32000410" -County and PUMA "G3200030, G32000411" -County and PUMA "G3200030, G32000412" -County and PUMA "G3200030, G32000413" -County and PUMA "G3200050, G32000200" -County and PUMA "G3200070, G32000300" -County and PUMA "G3200090, G32000300" -County and PUMA "G3200110, G32000300" -County and PUMA "G3200130, G32000300" -County and PUMA "G3200150, G32000300" -County and PUMA "G3200170, G32000300" -County and PUMA "G3200190, G32000200" -County and PUMA "G3200210, G32000300" -County and PUMA "G3200230, G32000300" -County and PUMA "G3200270, G32000300" -County and PUMA "G3200290, G32000200" -County and PUMA "G3200310, G32000101" -County and PUMA "G3200310, G32000102" -County and PUMA "G3200310, G32000103" -County and PUMA "G3200330, G32000300" -County and PUMA "G3205100, G32000200" -County and PUMA "G3300010, G33000200" -County and PUMA "G3300030, G33000200" -County and PUMA "G3300030, G33000300" -County and PUMA "G3300050, G33000500" -County and PUMA "G3300070, G33000100" -County and PUMA "G3300090, G33000100" -County and PUMA "G3300110, G33000600" -County and PUMA "G3300110, G33000700" -County and PUMA "G3300110, G33000800" -County and PUMA "G3300110, G33000900" -County and PUMA "G3300130, G33000200" -County and PUMA "G3300130, G33000400" -County and PUMA "G3300130, G33000700" -County and PUMA "G3300150, G33000300" -County and PUMA "G3300150, G33000700" -County and PUMA "G3300150, G33001000" -County and PUMA "G3300170, G33000300" -County and PUMA "G3300190, G33000500" -County and PUMA "G3400010, G34000101" -County and PUMA "G3400010, G34000102" -County and PUMA "G3400010, G34002600" -County and PUMA "G3400030, G34000301" -County and PUMA "G3400030, G34000302" -County and PUMA "G3400030, G34000303" -County and PUMA "G3400030, G34000304" -County and PUMA "G3400030, G34000305" -County and PUMA "G3400030, G34000306" -County and PUMA "G3400030, G34000307" -County and PUMA "G3400030, G34000308" -County and PUMA "G3400050, G34002001" -County and PUMA "G3400050, G34002002" -County and PUMA "G3400050, G34002003" -County and PUMA "G3400070, G34002101" -County and PUMA "G3400070, G34002102" -County and PUMA "G3400070, G34002103" -County and PUMA "G3400070, G34002104" -County and PUMA "G3400090, G34002600" -County and PUMA "G3400110, G34002400" -County and PUMA "G3400110, G34002500" -County and PUMA "G3400130, G34001301" -County and PUMA "G3400130, G34001302" -County and PUMA "G3400130, G34001401" -County and PUMA "G3400130, G34001402" -County and PUMA "G3400130, G34001403" -County and PUMA "G3400130, G34001404" -County and PUMA "G3400150, G34002201" -County and PUMA "G3400150, G34002202" -County and PUMA "G3400170, G34000601" -County and PUMA "G3400170, G34000602" -County and PUMA "G3400170, G34000701" -County and PUMA "G3400170, G34000702" -County and PUMA "G3400170, G34000703" -County and PUMA "G3400190, G34000800" -County and PUMA "G3400210, G34002301" -County and PUMA "G3400210, G34002302" -County and PUMA "G3400210, G34002303" -County and PUMA "G3400230, G34000901" -County and PUMA "G3400230, G34000902" -County and PUMA "G3400230, G34000903" -County and PUMA "G3400230, G34000904" -County and PUMA "G3400230, G34000905" -County and PUMA "G3400230, G34000906" -County and PUMA "G3400230, G34000907" -County and PUMA "G3400250, G34001101" -County and PUMA "G3400250, G34001102" -County and PUMA "G3400250, G34001103" -County and PUMA "G3400250, G34001104" -County and PUMA "G3400250, G34001105" -County and PUMA "G3400250, G34001106" -County and PUMA "G3400270, G34001501" -County and PUMA "G3400270, G34001502" -County and PUMA "G3400270, G34001503" -County and PUMA "G3400270, G34001504" -County and PUMA "G3400290, G34001201" -County and PUMA "G3400290, G34001202" -County and PUMA "G3400290, G34001203" -County and PUMA "G3400290, G34001204" -County and PUMA "G3400290, G34001205" -County and PUMA "G3400310, G34000400" -County and PUMA "G3400310, G34000501" -County and PUMA "G3400310, G34000502" -County and PUMA "G3400310, G34000503" -County and PUMA "G3400330, G34002500" -County and PUMA "G3400350, G34001001" -County and PUMA "G3400350, G34001002" -County and PUMA "G3400350, G34001003" -County and PUMA "G3400370, G34001600" -County and PUMA "G3400390, G34001800" -County and PUMA "G3400390, G34001901" -County and PUMA "G3400390, G34001902" -County and PUMA "G3400390, G34001903" -County and PUMA "G3400390, G34001904" -County and PUMA "G3400410, G34001700" -County and PUMA "G3500010, G35000700" -County and PUMA "G3500010, G35000801" -County and PUMA "G3500010, G35000802" -County and PUMA "G3500010, G35000803" -County and PUMA "G3500010, G35000804" -County and PUMA "G3500010, G35000805" -County and PUMA "G3500010, G35000806" -County and PUMA "G3500030, G35000900" -County and PUMA "G3500050, G35001100" -County and PUMA "G3500060, G35000100" -County and PUMA "G3500070, G35000400" -County and PUMA "G3500090, G35000400" -County and PUMA "G3500110, G35000400" -County and PUMA "G3500130, G35001001" -County and PUMA "G3500130, G35001002" -County and PUMA "G3500150, G35001200" -County and PUMA "G3500170, G35000900" -County and PUMA "G3500190, G35000400" -County and PUMA "G3500210, G35000400" -County and PUMA "G3500230, G35000900" -County and PUMA "G3500250, G35001200" -County and PUMA "G3500270, G35001100" -County and PUMA "G3500280, G35000300" -County and PUMA "G3500290, G35000900" -County and PUMA "G3500310, G35000100" -County and PUMA "G3500330, G35000300" -County and PUMA "G3500350, G35001100" -County and PUMA "G3500370, G35000400" -County and PUMA "G3500390, G35000300" -County and PUMA "G3500410, G35000400" -County and PUMA "G3500430, G35000600" -County and PUMA "G3500450, G35000100" -County and PUMA "G3500450, G35000200" -County and PUMA "G3500470, G35000300" -County and PUMA "G3500490, G35000500" -County and PUMA "G3500510, G35000900" -County and PUMA "G3500530, G35000900" -County and PUMA "G3500550, G35000300" -County and PUMA "G3500570, G35000900" -County and PUMA "G3500590, G35000400" -County and PUMA "G3500610, G35000700" -County and PUMA "G3600010, G36002001" -County and PUMA "G3600010, G36002002" -County and PUMA "G3600030, G36002500" -County and PUMA "G3600050, G36003701" -County and PUMA "G3600050, G36003702" -County and PUMA "G3600050, G36003703" -County and PUMA "G3600050, G36003704" -County and PUMA "G3600050, G36003705" -County and PUMA "G3600050, G36003706" -County and PUMA "G3600050, G36003707" -County and PUMA "G3600050, G36003708" -County and PUMA "G3600050, G36003709" -County and PUMA "G3600050, G36003710" -County and PUMA "G3600070, G36002201" -County and PUMA "G3600070, G36002202" -County and PUMA "G3600070, G36002203" -County and PUMA "G3600090, G36002500" -County and PUMA "G3600110, G36000704" -County and PUMA "G3600130, G36002600" -County and PUMA "G3600150, G36002401" -County and PUMA "G3600150, G36002402" -County and PUMA "G3600170, G36002203" -County and PUMA "G3600190, G36000200" -County and PUMA "G3600210, G36002100" -County and PUMA "G3600230, G36001500" -County and PUMA "G3600250, G36002203" -County and PUMA "G3600270, G36002801" -County and PUMA "G3600270, G36002802" -County and PUMA "G3600290, G36001201" -County and PUMA "G3600290, G36001202" -County and PUMA "G3600290, G36001203" -County and PUMA "G3600290, G36001204" -County and PUMA "G3600290, G36001205" -County and PUMA "G3600290, G36001206" -County and PUMA "G3600290, G36001207" -County and PUMA "G3600310, G36000200" -County and PUMA "G3600330, G36000200" -County and PUMA "G3600350, G36001600" -County and PUMA "G3600370, G36001000" -County and PUMA "G3600390, G36002100" -County and PUMA "G3600410, G36000200" -County and PUMA "G3600430, G36000401" -County and PUMA "G3600430, G36000403" -County and PUMA "G3600450, G36000500" -County and PUMA "G3600470, G36004001" -County and PUMA "G3600470, G36004002" -County and PUMA "G3600470, G36004003" -County and PUMA "G3600470, G36004004" -County and PUMA "G3600470, G36004005" -County and PUMA "G3600470, G36004006" -County and PUMA "G3600470, G36004007" -County and PUMA "G3600470, G36004008" -County and PUMA "G3600470, G36004009" -County and PUMA "G3600470, G36004010" -County and PUMA "G3600470, G36004011" -County and PUMA "G3600470, G36004012" -County and PUMA "G3600470, G36004013" -County and PUMA "G3600470, G36004014" -County and PUMA "G3600470, G36004015" -County and PUMA "G3600470, G36004016" -County and PUMA "G3600470, G36004017" -County and PUMA "G3600470, G36004018" -County and PUMA "G3600490, G36000500" -County and PUMA "G3600510, G36001300" -County and PUMA "G3600530, G36001500" -County and PUMA "G3600550, G36000901" -County and PUMA "G3600550, G36000902" -County and PUMA "G3600550, G36000903" -County and PUMA "G3600550, G36000904" -County and PUMA "G3600550, G36000905" -County and PUMA "G3600550, G36000906" -County and PUMA "G3600570, G36001600" -County and PUMA "G3600590, G36003201" -County and PUMA "G3600590, G36003202" -County and PUMA "G3600590, G36003203" -County and PUMA "G3600590, G36003204" -County and PUMA "G3600590, G36003205" -County and PUMA "G3600590, G36003206" -County and PUMA "G3600590, G36003207" -County and PUMA "G3600590, G36003208" -County and PUMA "G3600590, G36003209" -County and PUMA "G3600590, G36003210" -County and PUMA "G3600590, G36003211" -County and PUMA "G3600590, G36003212" -County and PUMA "G3600610, G36003801" -County and PUMA "G3600610, G36003802" -County and PUMA "G3600610, G36003803" -County and PUMA "G3600610, G36003804" -County and PUMA "G3600610, G36003805" -County and PUMA "G3600610, G36003806" -County and PUMA "G3600610, G36003807" -County and PUMA "G3600610, G36003808" -County and PUMA "G3600610, G36003809" -County and PUMA "G3600610, G36003810" -County and PUMA "G3600630, G36001101" -County and PUMA "G3600630, G36001102" -County and PUMA "G3600650, G36000401" -County and PUMA "G3600650, G36000402" -County and PUMA "G3600650, G36000403" -County and PUMA "G3600670, G36000701" -County and PUMA "G3600670, G36000702" -County and PUMA "G3600670, G36000703" -County and PUMA "G3600670, G36000704" -County and PUMA "G3600690, G36001400" -County and PUMA "G3600710, G36002901" -County and PUMA "G3600710, G36002902" -County and PUMA "G3600710, G36002903" -County and PUMA "G3600730, G36001000" -County and PUMA "G3600750, G36000600" -County and PUMA "G3600770, G36000403" -County and PUMA "G3600790, G36003101" -County and PUMA "G3600810, G36004101" -County and PUMA "G3600810, G36004102" -County and PUMA "G3600810, G36004103" -County and PUMA "G3600810, G36004104" -County and PUMA "G3600810, G36004105" -County and PUMA "G3600810, G36004106" -County and PUMA "G3600810, G36004107" -County and PUMA "G3600810, G36004108" -County and PUMA "G3600810, G36004109" -County and PUMA "G3600810, G36004110" -County and PUMA "G3600810, G36004111" -County and PUMA "G3600810, G36004112" -County and PUMA "G3600810, G36004113" -County and PUMA "G3600810, G36004114" -County and PUMA "G3600830, G36001900" -County and PUMA "G3600850, G36003901" -County and PUMA "G3600850, G36003902" -County and PUMA "G3600850, G36003903" -County and PUMA "G3600870, G36003001" -County and PUMA "G3600870, G36003002" -County and PUMA "G3600870, G36003003" -County and PUMA "G3600890, G36000100" -County and PUMA "G3600910, G36001801" -County and PUMA "G3600910, G36001802" -County and PUMA "G3600930, G36001700" -County and PUMA "G3600950, G36000403" -County and PUMA "G3600970, G36002402" -County and PUMA "G3600990, G36000800" -County and PUMA "G3601010, G36002401" -County and PUMA "G3601010, G36002402" -County and PUMA "G3601030, G36003301" -County and PUMA "G3601030, G36003302" -County and PUMA "G3601030, G36003303" -County and PUMA "G3601030, G36003304" -County and PUMA "G3601030, G36003305" -County and PUMA "G3601030, G36003306" -County and PUMA "G3601030, G36003307" -County and PUMA "G3601030, G36003308" -County and PUMA "G3601030, G36003309" -County and PUMA "G3601030, G36003310" -County and PUMA "G3601030, G36003311" -County and PUMA "G3601030, G36003312" -County and PUMA "G3601030, G36003313" -County and PUMA "G3601050, G36002701" -County and PUMA "G3601070, G36002202" -County and PUMA "G3601090, G36002300" -County and PUMA "G3601110, G36002701" -County and PUMA "G3601110, G36002702" -County and PUMA "G3601130, G36000300" -County and PUMA "G3601150, G36000300" -County and PUMA "G3601170, G36000800" -County and PUMA "G3601190, G36003101" -County and PUMA "G3601190, G36003102" -County and PUMA "G3601190, G36003103" -County and PUMA "G3601190, G36003104" -County and PUMA "G3601190, G36003105" -County and PUMA "G3601190, G36003106" -County and PUMA "G3601190, G36003107" -County and PUMA "G3601210, G36001300" -County and PUMA "G3601230, G36001400" -County and PUMA "G3700010, G37001600" -County and PUMA "G3700030, G37002000" -County and PUMA "G3700050, G37000200" -County and PUMA "G3700070, G37005300" -County and PUMA "G3700090, G37000100" -County and PUMA "G3700110, G37000100" -County and PUMA "G3700130, G37004400" -County and PUMA "G3700150, G37000800" -County and PUMA "G3700170, G37004900" -County and PUMA "G3700190, G37004800" -County and PUMA "G3700210, G37002201" -County and PUMA "G3700210, G37002202" -County and PUMA "G3700230, G37002100" -County and PUMA "G3700250, G37003200" -County and PUMA "G3700250, G37003300" -County and PUMA "G3700270, G37002000" -County and PUMA "G3700290, G37000700" -County and PUMA "G3700310, G37004400" -County and PUMA "G3700330, G37000400" -County and PUMA "G3700350, G37002800" -County and PUMA "G3700370, G37001500" -County and PUMA "G3700390, G37002400" -County and PUMA "G3700410, G37000700" -County and PUMA "G3700430, G37002400" -County and PUMA "G3700450, G37002600" -County and PUMA "G3700450, G37002700" -County and PUMA "G3700470, G37004900" -County and PUMA "G3700490, G37004300" -County and PUMA "G3700510, G37005001" -County and PUMA "G3700510, G37005002" -County and PUMA "G3700510, G37005003" -County and PUMA "G3700530, G37000700" -County and PUMA "G3700550, G37000800" -County and PUMA "G3700570, G37003500" -County and PUMA "G3700590, G37001900" -County and PUMA "G3700610, G37003900" -County and PUMA "G3700630, G37001301" -County and PUMA "G3700630, G37001302" -County and PUMA "G3700650, G37000900" -County and PUMA "G3700670, G37001801" -County and PUMA "G3700670, G37001802" -County and PUMA "G3700670, G37001803" -County and PUMA "G3700690, G37000500" -County and PUMA "G3700710, G37003001" -County and PUMA "G3700710, G37003002" -County and PUMA "G3700730, G37000700" -County and PUMA "G3700750, G37002300" -County and PUMA "G3700770, G37000400" -County and PUMA "G3700790, G37001000" -County and PUMA "G3700810, G37001701" -County and PUMA "G3700810, G37001702" -County and PUMA "G3700810, G37001703" -County and PUMA "G3700810, G37001704" -County and PUMA "G3700830, G37000600" -County and PUMA "G3700850, G37003800" -County and PUMA "G3700870, G37002300" -County and PUMA "G3700890, G37002500" -County and PUMA "G3700910, G37000600" -County and PUMA "G3700930, G37005200" -County and PUMA "G3700950, G37000800" -County and PUMA "G3700970, G37001900" -County and PUMA "G3700970, G37002900" -County and PUMA "G3700990, G37002300" -County and PUMA "G3700990, G37002400" -County and PUMA "G3701010, G37001100" -County and PUMA "G3701030, G37004100" -County and PUMA "G3701050, G37001500" -County and PUMA "G3701070, G37004100" -County and PUMA "G3701090, G37002700" -County and PUMA "G3701110, G37002100" -County and PUMA "G3701130, G37002400" -County and PUMA "G3701150, G37002300" -County and PUMA "G3701170, G37000800" -County and PUMA "G3701190, G37003101" -County and PUMA "G3701190, G37003102" -County and PUMA "G3701190, G37003103" -County and PUMA "G3701190, G37003104" -County and PUMA "G3701190, G37003105" -County and PUMA "G3701190, G37003106" -County and PUMA "G3701190, G37003107" -County and PUMA "G3701190, G37003108" -County and PUMA "G3701210, G37000100" -County and PUMA "G3701230, G37003700" -County and PUMA "G3701250, G37003700" -County and PUMA "G3701270, G37000900" -County and PUMA "G3701290, G37004600" -County and PUMA "G3701290, G37004700" -County and PUMA "G3701310, G37000600" -County and PUMA "G3701330, G37004100" -County and PUMA "G3701330, G37004500" -County and PUMA "G3701350, G37001400" -County and PUMA "G3701370, G37004400" -County and PUMA "G3701390, G37000700" -County and PUMA "G3701410, G37004600" -County and PUMA "G3701430, G37000700" -County and PUMA "G3701450, G37000400" -County and PUMA "G3701470, G37004200" -County and PUMA "G3701490, G37002600" -County and PUMA "G3701510, G37003600" -County and PUMA "G3701530, G37005200" -County and PUMA "G3701550, G37004900" -County and PUMA "G3701550, G37005100" -County and PUMA "G3701570, G37000300" -County and PUMA "G3701590, G37003400" -County and PUMA "G3701610, G37002600" -County and PUMA "G3701630, G37003900" -County and PUMA "G3701650, G37005200" -County and PUMA "G3701670, G37003300" -County and PUMA "G3701690, G37000300" -County and PUMA "G3701710, G37000200" -County and PUMA "G3701730, G37002300" -County and PUMA "G3701750, G37002500" -County and PUMA "G3701770, G37000800" -County and PUMA "G3701790, G37005300" -County and PUMA "G3701790, G37005400" -County and PUMA "G3701810, G37000500" -County and PUMA "G3701830, G37001201" -County and PUMA "G3701830, G37001202" -County and PUMA "G3701830, G37001203" -County and PUMA "G3701830, G37001204" -County and PUMA "G3701830, G37001205" -County and PUMA "G3701830, G37001206" -County and PUMA "G3701830, G37001207" -County and PUMA "G3701830, G37001208" -County and PUMA "G3701850, G37000500" -County and PUMA "G3701850, G37000600" -County and PUMA "G3701870, G37000800" -County and PUMA "G3701890, G37000100" -County and PUMA "G3701910, G37004000" -County and PUMA "G3701930, G37000200" -County and PUMA "G3701950, G37001000" -County and PUMA "G3701970, G37001900" -County and PUMA "G3701990, G37000100" -County and PUMA "G3800010, G38000100" -County and PUMA "G3800030, G38000200" -County and PUMA "G3800050, G38000200" -County and PUMA "G3800070, G38000100" -County and PUMA "G3800090, G38000200" -County and PUMA "G3800110, G38000100" -County and PUMA "G3800130, G38000100" -County and PUMA "G3800150, G38000300" -County and PUMA "G3800170, G38000500" -County and PUMA "G3800190, G38000400" -County and PUMA "G3800210, G38000200" -County and PUMA "G3800230, G38000100" -County and PUMA "G3800250, G38000100" -County and PUMA "G3800270, G38000200" -County and PUMA "G3800290, G38000300" -County and PUMA "G3800310, G38000200" -County and PUMA "G3800330, G38000100" -County and PUMA "G3800350, G38000400" -County and PUMA "G3800370, G38000100" -County and PUMA "G3800390, G38000400" -County and PUMA "G3800410, G38000100" -County and PUMA "G3800430, G38000300" -County and PUMA "G3800450, G38000200" -County and PUMA "G3800470, G38000300" -County and PUMA "G3800490, G38000100" -County and PUMA "G3800510, G38000300" -County and PUMA "G3800530, G38000100" -County and PUMA "G3800550, G38000100" -County and PUMA "G3800570, G38000100" -County and PUMA "G3800590, G38000300" -County and PUMA "G3800610, G38000100" -County and PUMA "G3800630, G38000200" -County and PUMA "G3800650, G38000100" -County and PUMA "G3800670, G38000400" -County and PUMA "G3800690, G38000200" -County and PUMA "G3800710, G38000200" -County and PUMA "G3800730, G38000200" -County and PUMA "G3800750, G38000100" -County and PUMA "G3800770, G38000200" -County and PUMA "G3800790, G38000200" -County and PUMA "G3800810, G38000200" -County and PUMA "G3800830, G38000200" -County and PUMA "G3800850, G38000100" -County and PUMA "G3800870, G38000100" -County and PUMA "G3800890, G38000100" -County and PUMA "G3800910, G38000400" -County and PUMA "G3800930, G38000200" -County and PUMA "G3800950, G38000400" -County and PUMA "G3800970, G38000400" -County and PUMA "G3800990, G38000400" -County and PUMA "G3801010, G38000100" -County and PUMA "G3801030, G38000200" -County and PUMA "G3801050, G38000100" -County and PUMA "G3900010, G39005200" -County and PUMA "G3900030, G39002500" -County and PUMA "G3900050, G39002100" -County and PUMA "G3900070, G39001300" -County and PUMA "G3900090, G39005000" -County and PUMA "G3900110, G39002600" -County and PUMA "G3900130, G39003500" -County and PUMA "G3900150, G39005700" -County and PUMA "G3900170, G39005401" -County and PUMA "G3900170, G39005402" -County and PUMA "G3900170, G39005403" -County and PUMA "G3900190, G39003300" -County and PUMA "G3900210, G39002700" -County and PUMA "G3900230, G39004300" -County and PUMA "G3900250, G39005600" -County and PUMA "G3900250, G39005700" -County and PUMA "G3900270, G39005200" -County and PUMA "G3900290, G39003400" -County and PUMA "G3900310, G39002900" -County and PUMA "G3900330, G39002300" -County and PUMA "G3900350, G39000901" -County and PUMA "G3900350, G39000902" -County and PUMA "G3900350, G39000903" -County and PUMA "G3900350, G39000904" -County and PUMA "G3900350, G39000905" -County and PUMA "G3900350, G39000906" -County and PUMA "G3900350, G39000907" -County and PUMA "G3900350, G39000908" -County and PUMA "G3900350, G39000909" -County and PUMA "G3900350, G39000910" -County and PUMA "G3900370, G39004500" -County and PUMA "G3900390, G39000100" -County and PUMA "G3900410, G39004000" -County and PUMA "G3900430, G39000700" -County and PUMA "G3900450, G39003900" -County and PUMA "G3900470, G39004800" -County and PUMA "G3900490, G39004101" -County and PUMA "G3900490, G39004102" -County and PUMA "G3900490, G39004103" -County and PUMA "G3900490, G39004104" -County and PUMA "G3900490, G39004105" -County and PUMA "G3900490, G39004106" -County and PUMA "G3900490, G39004107" -County and PUMA "G3900490, G39004108" -County and PUMA "G3900490, G39004109" -County and PUMA "G3900490, G39004110" -County and PUMA "G3900490, G39004111" -County and PUMA "G3900510, G39000200" -County and PUMA "G3900530, G39005000" -County and PUMA "G3900550, G39001200" -County and PUMA "G3900570, G39004700" -County and PUMA "G3900590, G39002900" -County and PUMA "G3900610, G39005501" -County and PUMA "G3900610, G39005502" -County and PUMA "G3900610, G39005503" -County and PUMA "G3900610, G39005504" -County and PUMA "G3900610, G39005505" -County and PUMA "G3900610, G39005506" -County and PUMA "G3900610, G39005507" -County and PUMA "G3900630, G39002400" -County and PUMA "G3900650, G39002700" -County and PUMA "G3900670, G39003000" -County and PUMA "G3900690, G39000100" -County and PUMA "G3900710, G39005200" -County and PUMA "G3900730, G39004900" -County and PUMA "G3900750, G39002900" -County and PUMA "G3900770, G39002100" -County and PUMA "G3900790, G39004900" -County and PUMA "G3900810, G39003500" -County and PUMA "G3900830, G39002800" -County and PUMA "G3900850, G39001000" -County and PUMA "G3900850, G39001100" -County and PUMA "G3900850, G39001200" -County and PUMA "G3900870, G39005100" -County and PUMA "G3900890, G39003800" -County and PUMA "G3900910, G39002700" -County and PUMA "G3900930, G39000801" -County and PUMA "G3900930, G39000802" -County and PUMA "G3900950, G39000200" -County and PUMA "G3900950, G39000300" -County and PUMA "G3900950, G39000400" -County and PUMA "G3900950, G39000500" -County and PUMA "G3900950, G39000600" -County and PUMA "G3900970, G39004200" -County and PUMA "G3900990, G39001400" -County and PUMA "G3900990, G39001500" -County and PUMA "G3901010, G39002800" -County and PUMA "G3901030, G39001900" -County and PUMA "G3901050, G39005000" -County and PUMA "G3901070, G39002600" -County and PUMA "G3901090, G39004400" -County and PUMA "G3901110, G39003600" -County and PUMA "G3901130, G39004601" -County and PUMA "G3901130, G39004602" -County and PUMA "G3901130, G39004603" -County and PUMA "G3901130, G39004604" -County and PUMA "G3901150, G39003600" -County and PUMA "G3901170, G39002800" -County and PUMA "G3901190, G39003700" -County and PUMA "G3901210, G39003600" -County and PUMA "G3901230, G39000600" -County and PUMA "G3901250, G39000100" -County and PUMA "G3901270, G39003700" -County and PUMA "G3901290, G39004200" -County and PUMA "G3901310, G39004900" -County and PUMA "G3901330, G39001700" -County and PUMA "G3901350, G39004500" -County and PUMA "G3901370, G39002400" -County and PUMA "G3901390, G39002200" -County and PUMA "G3901410, G39004800" -County and PUMA "G3901430, G39000700" -County and PUMA "G3901450, G39005100" -County and PUMA "G3901470, G39002300" -County and PUMA "G3901490, G39004500" -County and PUMA "G3901510, G39003100" -County and PUMA "G3901510, G39003200" -County and PUMA "G3901510, G39003300" -County and PUMA "G3901530, G39001801" -County and PUMA "G3901530, G39001802" -County and PUMA "G3901530, G39001803" -County and PUMA "G3901530, G39001804" -County and PUMA "G3901530, G39001805" -County and PUMA "G3901550, G39001400" -County and PUMA "G3901550, G39001600" -County and PUMA "G3901570, G39003000" -County and PUMA "G3901590, G39004200" -County and PUMA "G3901610, G39002600" -County and PUMA "G3901630, G39004900" -County and PUMA "G3901650, G39005301" -County and PUMA "G3901650, G39005302" -County and PUMA "G3901670, G39003600" -County and PUMA "G3901690, G39002000" -County and PUMA "G3901710, G39000100" -County and PUMA "G3901730, G39000200" -County and PUMA "G3901730, G39000300" -County and PUMA "G3901730, G39000600" -County and PUMA "G3901750, G39002300" -County and PUMA "G4000010, G40000200" -County and PUMA "G4000030, G40000500" -County and PUMA "G4000050, G40000702" -County and PUMA "G4000070, G40000500" -County and PUMA "G4000090, G40000400" -County and PUMA "G4000110, G40000500" -County and PUMA "G4000130, G40000702" -County and PUMA "G4000150, G40000602" -County and PUMA "G4000170, G40000800" -County and PUMA "G4000190, G40000701" -County and PUMA "G4000210, G40000200" -County and PUMA "G4000230, G40000300" -County and PUMA "G4000250, G40000500" -County and PUMA "G4000270, G40000900" -County and PUMA "G4000290, G40000702" -County and PUMA "G4000310, G40000601" -County and PUMA "G4000310, G40000602" -County and PUMA "G4000330, G40000602" -County and PUMA "G4000350, G40000100" -County and PUMA "G4000370, G40001204" -County and PUMA "G4000370, G40001501" -County and PUMA "G4000370, G40001601" -County and PUMA "G4000390, G40000400" -County and PUMA "G4000410, G40000100" -County and PUMA "G4000430, G40000500" -County and PUMA "G4000450, G40000500" -County and PUMA "G4000470, G40001400" -County and PUMA "G4000490, G40000701" -County and PUMA "G4000510, G40001101" -County and PUMA "G4000530, G40000500" -County and PUMA "G4000550, G40000400" -County and PUMA "G4000570, G40000400" -County and PUMA "G4000590, G40000500" -County and PUMA "G4000610, G40000300" -County and PUMA "G4000630, G40001501" -County and PUMA "G4000650, G40000400" -County and PUMA "G4000670, G40000602" -County and PUMA "G4000690, G40000702" -County and PUMA "G4000710, G40001400" -County and PUMA "G4000730, G40000500" -County and PUMA "G4000750, G40000400" -County and PUMA "G4000770, G40000300" -County and PUMA "G4000790, G40000300" -County and PUMA "G4000810, G40001102" -County and PUMA "G4000830, G40001102" -County and PUMA "G4000850, G40000701" -County and PUMA "G4000870, G40001101" -County and PUMA "G4000890, G40000300" -County and PUMA "G4000910, G40001302" -County and PUMA "G4000930, G40000500" -County and PUMA "G4000950, G40000702" -County and PUMA "G4000970, G40000100" -County and PUMA "G4000990, G40000701" -County and PUMA "G4001010, G40001302" -County and PUMA "G4001030, G40001400" -County and PUMA "G4001050, G40000100" -County and PUMA "G4001070, G40001501" -County and PUMA "G4001090, G40001001" -County and PUMA "G4001090, G40001002" -County and PUMA "G4001090, G40001003" -County and PUMA "G4001090, G40001004" -County and PUMA "G4001090, G40001005" -County and PUMA "G4001090, G40001006" -County and PUMA "G4001110, G40001302" -County and PUMA "G4001130, G40001204" -County and PUMA "G4001130, G40001601" -County and PUMA "G4001150, G40000100" -County and PUMA "G4001170, G40001601" -County and PUMA "G4001190, G40001501" -County and PUMA "G4001210, G40000300" -County and PUMA "G4001230, G40000701" -County and PUMA "G4001230, G40000702" -County and PUMA "G4001250, G40001101" -County and PUMA "G4001250, G40001102" -County and PUMA "G4001270, G40000300" -County and PUMA "G4001290, G40000400" -County and PUMA "G4001310, G40000100" -County and PUMA "G4001310, G40001301" -County and PUMA "G4001330, G40001501" -County and PUMA "G4001350, G40000200" -County and PUMA "G4001370, G40000602" -County and PUMA "G4001390, G40000500" -County and PUMA "G4001410, G40000602" -County and PUMA "G4001430, G40001201" -County and PUMA "G4001430, G40001202" -County and PUMA "G4001430, G40001203" -County and PUMA "G4001430, G40001204" -County and PUMA "G4001450, G40001301" -County and PUMA "G4001450, G40001302" -County and PUMA "G4001470, G40001601" -County and PUMA "G4001490, G40000400" -County and PUMA "G4001510, G40000500" -County and PUMA "G4001530, G40000500" -County and PUMA "G4100010, G41000100" -County and PUMA "G4100030, G41000600" -County and PUMA "G4100050, G41001317" -County and PUMA "G4100050, G41001318" -County and PUMA "G4100050, G41001319" -County and PUMA "G4100070, G41000500" -County and PUMA "G4100090, G41000500" -County and PUMA "G4100110, G41000800" -County and PUMA "G4100130, G41000200" -County and PUMA "G4100150, G41000800" -County and PUMA "G4100170, G41000400" -County and PUMA "G4100190, G41001000" -County and PUMA "G4100210, G41000200" -County and PUMA "G4100230, G41000200" -County and PUMA "G4100250, G41000300" -County and PUMA "G4100270, G41000200" -County and PUMA "G4100290, G41000901" -County and PUMA "G4100290, G41000902" -County and PUMA "G4100310, G41000200" -County and PUMA "G4100330, G41000800" -County and PUMA "G4100350, G41000300" -County and PUMA "G4100370, G41000300" -County and PUMA "G4100390, G41000703" -County and PUMA "G4100390, G41000704" -County and PUMA "G4100390, G41000705" -County and PUMA "G4100410, G41000500" -County and PUMA "G4100430, G41000600" -County and PUMA "G4100450, G41000300" -County and PUMA "G4100470, G41001103" -County and PUMA "G4100470, G41001104" -County and PUMA "G4100470, G41001105" -County and PUMA "G4100490, G41000200" -County and PUMA "G4100510, G41001301" -County and PUMA "G4100510, G41001302" -County and PUMA "G4100510, G41001303" -County and PUMA "G4100510, G41001305" -County and PUMA "G4100510, G41001314" -County and PUMA "G4100510, G41001316" -County and PUMA "G4100530, G41001200" -County and PUMA "G4100550, G41000200" -County and PUMA "G4100570, G41000500" -County and PUMA "G4100590, G41000100" -County and PUMA "G4100610, G41000100" -County and PUMA "G4100630, G41000100" -County and PUMA "G4100650, G41000200" -County and PUMA "G4100670, G41001320" -County and PUMA "G4100670, G41001321" -County and PUMA "G4100670, G41001322" -County and PUMA "G4100670, G41001323" -County and PUMA "G4100670, G41001324" -County and PUMA "G4100690, G41000200" -County and PUMA "G4100710, G41001200" -County and PUMA "G4200010, G42003701" -County and PUMA "G4200030, G42001701" -County and PUMA "G4200030, G42001702" -County and PUMA "G4200030, G42001801" -County and PUMA "G4200030, G42001802" -County and PUMA "G4200030, G42001803" -County and PUMA "G4200030, G42001804" -County and PUMA "G4200030, G42001805" -County and PUMA "G4200030, G42001806" -County and PUMA "G4200030, G42001807" -County and PUMA "G4200050, G42001900" -County and PUMA "G4200070, G42001501" -County and PUMA "G4200070, G42001502" -County and PUMA "G4200090, G42003800" -County and PUMA "G4200110, G42002701" -County and PUMA "G4200110, G42002702" -County and PUMA "G4200110, G42002703" -County and PUMA "G4200130, G42002200" -County and PUMA "G4200150, G42000400" -County and PUMA "G4200170, G42003001" -County and PUMA "G4200170, G42003002" -County and PUMA "G4200170, G42003003" -County and PUMA "G4200170, G42003004" -County and PUMA "G4200190, G42001600" -County and PUMA "G4200210, G42002100" -County and PUMA "G4200230, G42000300" -County and PUMA "G4200250, G42002801" -County and PUMA "G4200270, G42001200" -County and PUMA "G4200290, G42003401" -County and PUMA "G4200290, G42003402" -County and PUMA "G4200290, G42003403" -County and PUMA "G4200290, G42003404" -County and PUMA "G4200310, G42001300" -County and PUMA "G4200330, G42000300" -County and PUMA "G4200350, G42000900" -County and PUMA "G4200370, G42000803" -County and PUMA "G4200390, G42000200" -County and PUMA "G4200410, G42002301" -County and PUMA "G4200410, G42002302" -County and PUMA "G4200430, G42002401" -County and PUMA "G4200430, G42002402" -County and PUMA "G4200450, G42003301" -County and PUMA "G4200450, G42003302" -County and PUMA "G4200450, G42003303" -County and PUMA "G4200450, G42003304" -County and PUMA "G4200470, G42000300" -County and PUMA "G4200490, G42000101" -County and PUMA "G4200490, G42000102" -County and PUMA "G4200510, G42003900" -County and PUMA "G4200530, G42001300" -County and PUMA "G4200550, G42003701" -County and PUMA "G4200550, G42003702" -County and PUMA "G4200570, G42003800" -County and PUMA "G4200590, G42004002" -County and PUMA "G4200610, G42002200" -County and PUMA "G4200630, G42001900" -County and PUMA "G4200650, G42001300" -County and PUMA "G4200670, G42001100" -County and PUMA "G4200690, G42000701" -County and PUMA "G4200690, G42000702" -County and PUMA "G4200710, G42003501" -County and PUMA "G4200710, G42003502" -County and PUMA "G4200710, G42003503" -County and PUMA "G4200710, G42003504" -County and PUMA "G4200730, G42001501" -County and PUMA "G4200750, G42002500" -County and PUMA "G4200770, G42002801" -County and PUMA "G4200770, G42002802" -County and PUMA "G4200770, G42002803" -County and PUMA "G4200770, G42002901" -County and PUMA "G4200790, G42000801" -County and PUMA "G4200790, G42000802" -County and PUMA "G4200790, G42000803" -County and PUMA "G4200810, G42000900" -County and PUMA "G4200830, G42000300" -County and PUMA "G4200850, G42001400" -County and PUMA "G4200870, G42001100" -County and PUMA "G4200890, G42000600" -County and PUMA "G4200910, G42003101" -County and PUMA "G4200910, G42003102" -County and PUMA "G4200910, G42003103" -County and PUMA "G4200910, G42003104" -County and PUMA "G4200910, G42003105" -County and PUMA "G4200910, G42003106" -County and PUMA "G4200930, G42001000" -County and PUMA "G4200950, G42002901" -County and PUMA "G4200950, G42002902" -County and PUMA "G4200970, G42001000" -County and PUMA "G4200990, G42002301" -County and PUMA "G4201010, G42003201" -County and PUMA "G4201010, G42003202" -County and PUMA "G4201010, G42003203" -County and PUMA "G4201010, G42003204" -County and PUMA "G4201010, G42003205" -County and PUMA "G4201010, G42003206" -County and PUMA "G4201010, G42003207" -County and PUMA "G4201010, G42003208" -County and PUMA "G4201010, G42003209" -County and PUMA "G4201010, G42003210" -County and PUMA "G4201010, G42003211" -County and PUMA "G4201030, G42000500" -County and PUMA "G4201050, G42000300" -County and PUMA "G4201070, G42002600" -County and PUMA "G4201090, G42001100" -County and PUMA "G4201110, G42003800" -County and PUMA "G4201130, G42000400" -County and PUMA "G4201150, G42000500" -County and PUMA "G4201170, G42000400" -County and PUMA "G4201190, G42001100" -County and PUMA "G4201210, G42001300" -County and PUMA "G4201230, G42000200" -County and PUMA "G4201250, G42004001" -County and PUMA "G4201250, G42004002" -County and PUMA "G4201270, G42000500" -County and PUMA "G4201290, G42002001" -County and PUMA "G4201290, G42002002" -County and PUMA "G4201290, G42002003" -County and PUMA "G4201310, G42000702" -County and PUMA "G4201330, G42003601" -County and PUMA "G4201330, G42003602" -County and PUMA "G4201330, G42003603" -County and PUMA "G4400010, G44000300" -County and PUMA "G4400030, G44000201" -County and PUMA "G4400050, G44000300" -County and PUMA "G4400070, G44000101" -County and PUMA "G4400070, G44000102" -County and PUMA "G4400070, G44000103" -County and PUMA "G4400070, G44000104" -County and PUMA "G4400090, G44000400" -County and PUMA "G4500010, G45001600" -County and PUMA "G4500030, G45001500" -County and PUMA "G4500050, G45001300" -County and PUMA "G4500070, G45000200" -County and PUMA "G4500090, G45001300" -County and PUMA "G4500110, G45001300" -County and PUMA "G4500130, G45001400" -County and PUMA "G4500150, G45001201" -County and PUMA "G4500150, G45001202" -County and PUMA "G4500150, G45001203" -County and PUMA "G4500150, G45001204" -County and PUMA "G4500170, G45000605" -County and PUMA "G4500190, G45001201" -County and PUMA "G4500190, G45001202" -County and PUMA "G4500190, G45001203" -County and PUMA "G4500190, G45001204" -County and PUMA "G4500210, G45000400" -County and PUMA "G4500230, G45000400" -County and PUMA "G4500250, G45000700" -County and PUMA "G4500270, G45000800" -County and PUMA "G4500290, G45001300" -County and PUMA "G4500310, G45000900" -County and PUMA "G4500330, G45001000" -County and PUMA "G4500350, G45001201" -County and PUMA "G4500350, G45001204" -County and PUMA "G4500370, G45001500" -County and PUMA "G4500390, G45000603" -County and PUMA "G4500410, G45000900" -County and PUMA "G4500430, G45001000" -County and PUMA "G4500450, G45000102" -County and PUMA "G4500450, G45000103" -County and PUMA "G4500450, G45000104" -County and PUMA "G4500450, G45000105" -County and PUMA "G4500470, G45001600" -County and PUMA "G4500490, G45001300" -County and PUMA "G4500510, G45001101" -County and PUMA "G4500510, G45001102" -County and PUMA "G4500530, G45001400" -County and PUMA "G4500550, G45000605" -County and PUMA "G4500570, G45000700" -County and PUMA "G4500590, G45000105" -County and PUMA "G4500610, G45000800" -County and PUMA "G4500630, G45000601" -County and PUMA "G4500630, G45000602" -County and PUMA "G4500650, G45001600" -County and PUMA "G4500670, G45001000" -County and PUMA "G4500690, G45000700" -County and PUMA "G4500710, G45000400" -County and PUMA "G4500730, G45000101" -County and PUMA "G4500750, G45001300" -County and PUMA "G4500770, G45000101" -County and PUMA "G4500790, G45000603" -County and PUMA "G4500790, G45000604" -County and PUMA "G4500790, G45000605" -County and PUMA "G4500810, G45000601" -County and PUMA "G4500830, G45000301" -County and PUMA "G4500830, G45000302" -County and PUMA "G4500850, G45000800" -County and PUMA "G4500870, G45000400" -County and PUMA "G4500890, G45000800" -County and PUMA "G4500910, G45000501" -County and PUMA "G4500910, G45000502" -County and PUMA "G4600030, G46000400" -County and PUMA "G4600050, G46000400" -County and PUMA "G4600070, G46000200" -County and PUMA "G4600090, G46000400" -County and PUMA "G4600110, G46000400" -County and PUMA "G4600130, G46000300" -County and PUMA "G4600150, G46000400" -County and PUMA "G4600170, G46000200" -County and PUMA "G4600190, G46000100" -County and PUMA "G4600210, G46000300" -County and PUMA "G4600230, G46000200" -County and PUMA "G4600250, G46000300" -County and PUMA "G4600270, G46000500" -County and PUMA "G4600290, G46000300" -County and PUMA "G4600310, G46000200" -County and PUMA "G4600330, G46000100" -County and PUMA "G4600350, G46000400" -County and PUMA "G4600370, G46000300" -County and PUMA "G4600390, G46000300" -County and PUMA "G4600410, G46000200" -County and PUMA "G4600430, G46000400" -County and PUMA "G4600450, G46000300" -County and PUMA "G4600470, G46000200" -County and PUMA "G4600490, G46000300" -County and PUMA "G4600510, G46000300" -County and PUMA "G4600530, G46000200" -County and PUMA "G4600550, G46000200" -County and PUMA "G4600570, G46000300" -County and PUMA "G4600590, G46000400" -County and PUMA "G4600610, G46000400" -County and PUMA "G4600630, G46000100" -County and PUMA "G4600650, G46000200" -County and PUMA "G4600670, G46000400" -County and PUMA "G4600690, G46000200" -County and PUMA "G4600710, G46000200" -County and PUMA "G4600730, G46000400" -County and PUMA "G4600750, G46000200" -County and PUMA "G4600770, G46000400" -County and PUMA "G4600790, G46000400" -County and PUMA "G4600810, G46000100" -County and PUMA "G4600830, G46000500" -County and PUMA "G4600830, G46000600" -County and PUMA "G4600850, G46000200" -County and PUMA "G4600870, G46000500" -County and PUMA "G4600890, G46000300" -County and PUMA "G4600910, G46000300" -County and PUMA "G4600930, G46000100" -County and PUMA "G4600950, G46000200" -County and PUMA "G4600970, G46000400" -County and PUMA "G4600990, G46000500" -County and PUMA "G4600990, G46000600" -County and PUMA "G4601010, G46000400" -County and PUMA "G4601020, G46000200" -County and PUMA "G4601030, G46000100" -County and PUMA "G4601050, G46000100" -County and PUMA "G4601070, G46000300" -County and PUMA "G4601090, G46000300" -County and PUMA "G4601110, G46000400" -County and PUMA "G4601150, G46000300" -County and PUMA "G4601170, G46000200" -County and PUMA "G4601190, G46000200" -County and PUMA "G4601210, G46000200" -County and PUMA "G4601230, G46000200" -County and PUMA "G4601250, G46000500" -County and PUMA "G4601270, G46000500" -County and PUMA "G4601290, G46000300" -County and PUMA "G4601350, G46000500" -County and PUMA "G4601370, G46000200" -County and PUMA "G4700010, G47001601" -County and PUMA "G4700030, G47002700" -County and PUMA "G4700050, G47000200" -County and PUMA "G4700070, G47002100" -County and PUMA "G4700090, G47001700" -County and PUMA "G4700110, G47001900" -County and PUMA "G4700130, G47000900" -County and PUMA "G4700150, G47000600" -County and PUMA "G4700170, G47000200" -County and PUMA "G4700190, G47001200" -County and PUMA "G4700210, G47000400" -County and PUMA "G4700230, G47003000" -County and PUMA "G4700250, G47000900" -County and PUMA "G4700270, G47000700" -County and PUMA "G4700290, G47001400" -County and PUMA "G4700310, G47002200" -County and PUMA "G4700330, G47000100" -County and PUMA "G4700350, G47000800" -County and PUMA "G4700370, G47002501" -County and PUMA "G4700370, G47002502" -County and PUMA "G4700370, G47002503" -County and PUMA "G4700370, G47002504" -County and PUMA "G4700370, G47002505" -County and PUMA "G4700390, G47002900" -County and PUMA "G4700410, G47000600" -County and PUMA "G4700430, G47000400" -County and PUMA "G4700450, G47000100" -County and PUMA "G4700470, G47003100" -County and PUMA "G4700490, G47000800" -County and PUMA "G4700510, G47002200" -County and PUMA "G4700530, G47000100" -County and PUMA "G4700550, G47002800" -County and PUMA "G4700570, G47001400" -County and PUMA "G4700590, G47001200" -County and PUMA "G4700610, G47002100" -County and PUMA "G4700630, G47001400" -County and PUMA "G4700650, G47002001" -County and PUMA "G4700650, G47002002" -County and PUMA "G4700650, G47002003" -County and PUMA "G4700670, G47000900" -County and PUMA "G4700690, G47002900" -County and PUMA "G4700710, G47002900" -County and PUMA "G4700730, G47001000" -County and PUMA "G4700750, G47002900" -County and PUMA "G4700770, G47002900" -County and PUMA "G4700790, G47000200" -County and PUMA "G4700810, G47000400" -County and PUMA "G4700830, G47000200" -County and PUMA "G4700850, G47000200" -County and PUMA "G4700870, G47000700" -County and PUMA "G4700890, G47001500" -County and PUMA "G4700910, G47001200" -County and PUMA "G4700930, G47001601" -County and PUMA "G4700930, G47001602" -County and PUMA "G4700930, G47001603" -County and PUMA "G4700930, G47001604" -County and PUMA "G4700950, G47000100" -County and PUMA "G4700970, G47003100" -County and PUMA "G4700990, G47002800" -County and PUMA "G4701010, G47002800" -County and PUMA "G4701030, G47002200" -County and PUMA "G4701050, G47001800" -County and PUMA "G4701070, G47001900" -County and PUMA "G4701090, G47002900" -County and PUMA "G4701110, G47000600" -County and PUMA "G4701130, G47003000" -County and PUMA "G4701150, G47002100" -County and PUMA "G4701170, G47002700" -County and PUMA "G4701190, G47002700" -County and PUMA "G4701210, G47002100" -County and PUMA "G4701230, G47001800" -County and PUMA "G4701250, G47000300" -County and PUMA "G4701270, G47002200" -County and PUMA "G4701290, G47000900" -County and PUMA "G4701310, G47000100" -County and PUMA "G4701330, G47000700" -County and PUMA "G4701350, G47002800" -County and PUMA "G4701370, G47000700" -County and PUMA "G4701390, G47001900" -County and PUMA "G4701410, G47000700" -County and PUMA "G4701430, G47002100" -County and PUMA "G4701450, G47001800" -County and PUMA "G4701470, G47000400" -County and PUMA "G4701490, G47002401" -County and PUMA "G4701490, G47002402" -County and PUMA "G4701510, G47000900" -County and PUMA "G4701530, G47002100" -County and PUMA "G4701550, G47001500" -County and PUMA "G4701570, G47003201" -County and PUMA "G4701570, G47003202" -County and PUMA "G4701570, G47003203" -County and PUMA "G4701570, G47003204" -County and PUMA "G4701570, G47003205" -County and PUMA "G4701570, G47003206" -County and PUMA "G4701570, G47003207" -County and PUMA "G4701570, G47003208" -County and PUMA "G4701590, G47000600" -County and PUMA "G4701610, G47000300" -County and PUMA "G4701630, G47001000" -County and PUMA "G4701630, G47001100" -County and PUMA "G4701650, G47000500" -County and PUMA "G4701670, G47003100" -County and PUMA "G4701690, G47000600" -County and PUMA "G4701710, G47001200" -County and PUMA "G4701730, G47001601" -County and PUMA "G4701750, G47000800" -County and PUMA "G4701770, G47000600" -County and PUMA "G4701790, G47001300" -County and PUMA "G4701810, G47002800" -County and PUMA "G4701830, G47000200" -County and PUMA "G4701850, G47000800" -County and PUMA "G4701870, G47002600" -County and PUMA "G4701890, G47002300" -County and PUMA "G4800010, G48001800" -County and PUMA "G4800030, G48003200" -County and PUMA "G4800050, G48004000" -County and PUMA "G4800070, G48006500" -County and PUMA "G4800090, G48000600" -County and PUMA "G4800110, G48000100" -County and PUMA "G4800130, G48006100" -County and PUMA "G4800150, G48005000" -County and PUMA "G4800170, G48000400" -County and PUMA "G4800190, G48006100" -County and PUMA "G4800210, G48005100" -County and PUMA "G4800230, G48000600" -County and PUMA "G4800250, G48006500" -County and PUMA "G4800270, G48003501" -County and PUMA "G4800270, G48003502" -County and PUMA "G4800290, G48005901" -County and PUMA "G4800290, G48005902" -County and PUMA "G4800290, G48005903" -County and PUMA "G4800290, G48005904" -County and PUMA "G4800290, G48005905" -County and PUMA "G4800290, G48005906" -County and PUMA "G4800290, G48005907" -County and PUMA "G4800290, G48005908" -County and PUMA "G4800290, G48005909" -County and PUMA "G4800290, G48005910" -County and PUMA "G4800290, G48005911" -County and PUMA "G4800290, G48005912" -County and PUMA "G4800290, G48005913" -County and PUMA "G4800290, G48005914" -County and PUMA "G4800290, G48005915" -County and PUMA "G4800290, G48005916" -County and PUMA "G4800310, G48006000" -County and PUMA "G4800330, G48002800" -County and PUMA "G4800350, G48003700" -County and PUMA "G4800370, G48001100" -County and PUMA "G4800390, G48004801" -County and PUMA "G4800390, G48004802" -County and PUMA "G4800390, G48004803" -County and PUMA "G4800410, G48003602" -County and PUMA "G4800430, G48003200" -County and PUMA "G4800450, G48000100" -County and PUMA "G4800470, G48006900" -County and PUMA "G4800490, G48002600" -County and PUMA "G4800510, G48003601" -County and PUMA "G4800530, G48003400" -County and PUMA "G4800550, G48005100" -County and PUMA "G4800570, G48005600" -County and PUMA "G4800590, G48002600" -County and PUMA "G4800610, G48006701" -County and PUMA "G4800610, G48006702" -County and PUMA "G4800610, G48006703" -County and PUMA "G4800630, G48001300" -County and PUMA "G4800650, G48000100" -County and PUMA "G4800670, G48001100" -County and PUMA "G4800690, G48000100" -County and PUMA "G4800710, G48004400" -County and PUMA "G4800730, G48001700" -County and PUMA "G4800750, G48000100" -County and PUMA "G4800770, G48000600" -County and PUMA "G4800790, G48000400" -County and PUMA "G4800810, G48002800" -County and PUMA "G4800830, G48002600" -County and PUMA "G4800850, G48001901" -County and PUMA "G4800850, G48001902" -County and PUMA "G4800850, G48001903" -County and PUMA "G4800850, G48001904" -County and PUMA "G4800850, G48001905" -County and PUMA "G4800850, G48001906" -County and PUMA "G4800850, G48001907" -County and PUMA "G4800870, G48000100" -County and PUMA "G4800890, G48005000" -County and PUMA "G4800910, G48005800" -County and PUMA "G4800930, G48002600" -County and PUMA "G4800950, G48002800" -County and PUMA "G4800970, G48000800" -County and PUMA "G4800990, G48003400" -County and PUMA "G4801010, G48000600" -County and PUMA "G4801030, G48003200" -County and PUMA "G4801050, G48002800" -County and PUMA "G4801070, G48000400" -County and PUMA "G4801090, G48003200" -County and PUMA "G4801110, G48000100" -County and PUMA "G4801130, G48002301" -County and PUMA "G4801130, G48002302" -County and PUMA "G4801130, G48002303" -County and PUMA "G4801130, G48002304" -County and PUMA "G4801130, G48002305" -County and PUMA "G4801130, G48002306" -County and PUMA "G4801130, G48002307" -County and PUMA "G4801130, G48002308" -County and PUMA "G4801130, G48002309" -County and PUMA "G4801130, G48002310" -County and PUMA "G4801130, G48002311" -County and PUMA "G4801130, G48002312" -County and PUMA "G4801130, G48002313" -County and PUMA "G4801130, G48002314" -County and PUMA "G4801130, G48002315" -County and PUMA "G4801130, G48002316" -County and PUMA "G4801130, G48002317" -County and PUMA "G4801130, G48002318" -County and PUMA "G4801130, G48002319" -County and PUMA "G4801130, G48002320" -County and PUMA "G4801130, G48002321" -County and PUMA "G4801130, G48002322" -County and PUMA "G4801150, G48002800" -County and PUMA "G4801170, G48000100" -County and PUMA "G4801190, G48001000" -County and PUMA "G4801210, G48002001" -County and PUMA "G4801210, G48002002" -County and PUMA "G4801210, G48002003" -County and PUMA "G4801210, G48002004" -County and PUMA "G4801210, G48002005" -County and PUMA "G4801210, G48002006" -County and PUMA "G4801230, G48005500" -County and PUMA "G4801250, G48000400" -County and PUMA "G4801270, G48006200" -County and PUMA "G4801290, G48000100" -County and PUMA "G4801310, G48006400" -County and PUMA "G4801330, G48002600" -County and PUMA "G4801350, G48003100" -County and PUMA "G4801370, G48006200" -County and PUMA "G4801390, G48002101" -County and PUMA "G4801410, G48003301" -County and PUMA "G4801410, G48003302" -County and PUMA "G4801410, G48003303" -County and PUMA "G4801410, G48003304" -County and PUMA "G4801410, G48003305" -County and PUMA "G4801410, G48003306" -County and PUMA "G4801430, G48002200" -County and PUMA "G4801450, G48003700" -County and PUMA "G4801470, G48000800" -County and PUMA "G4801490, G48005100" -County and PUMA "G4801510, G48002600" -County and PUMA "G4801530, G48000400" -County and PUMA "G4801550, G48000600" -County and PUMA "G4801570, G48004901" -County and PUMA "G4801570, G48004902" -County and PUMA "G4801570, G48004903" -County and PUMA "G4801570, G48004904" -County and PUMA "G4801570, G48004905" -County and PUMA "G4801590, G48001000" -County and PUMA "G4801610, G48003700" -County and PUMA "G4801630, G48006100" -County and PUMA "G4801650, G48003200" -County and PUMA "G4801670, G48004701" -County and PUMA "G4801670, G48004702" -County and PUMA "G4801690, G48000400" -County and PUMA "G4801710, G48006000" -County and PUMA "G4801730, G48002800" -County and PUMA "G4801750, G48005500" -County and PUMA "G4801770, G48005500" -County and PUMA "G4801790, G48000100" -County and PUMA "G4801810, G48000800" -County and PUMA "G4801830, G48001600" -County and PUMA "G4801850, G48003601" -County and PUMA "G4801870, G48005700" -County and PUMA "G4801890, G48000400" -County and PUMA "G4801910, G48000100" -County and PUMA "G4801930, G48003400" -County and PUMA "G4801950, G48000100" -County and PUMA "G4801970, G48000600" -County and PUMA "G4801990, G48004200" -County and PUMA "G4802010, G48004601" -County and PUMA "G4802010, G48004602" -County and PUMA "G4802010, G48004603" -County and PUMA "G4802010, G48004604" -County and PUMA "G4802010, G48004605" -County and PUMA "G4802010, G48004606" -County and PUMA "G4802010, G48004607" -County and PUMA "G4802010, G48004608" -County and PUMA "G4802010, G48004609" -County and PUMA "G4802010, G48004610" -County and PUMA "G4802010, G48004611" -County and PUMA "G4802010, G48004612" -County and PUMA "G4802010, G48004613" -County and PUMA "G4802010, G48004614" -County and PUMA "G4802010, G48004615" -County and PUMA "G4802010, G48004616" -County and PUMA "G4802010, G48004617" -County and PUMA "G4802010, G48004618" -County and PUMA "G4802010, G48004619" -County and PUMA "G4802010, G48004620" -County and PUMA "G4802010, G48004621" -County and PUMA "G4802010, G48004622" -County and PUMA "G4802010, G48004623" -County and PUMA "G4802010, G48004624" -County and PUMA "G4802010, G48004625" -County and PUMA "G4802010, G48004626" -County and PUMA "G4802010, G48004627" -County and PUMA "G4802010, G48004628" -County and PUMA "G4802010, G48004629" -County and PUMA "G4802010, G48004630" -County and PUMA "G4802010, G48004631" -County and PUMA "G4802010, G48004632" -County and PUMA "G4802010, G48004633" -County and PUMA "G4802010, G48004634" -County and PUMA "G4802010, G48004635" -County and PUMA "G4802010, G48004636" -County and PUMA "G4802010, G48004637" -County and PUMA "G4802010, G48004638" -County and PUMA "G4802030, G48001200" -County and PUMA "G4802050, G48000100" -County and PUMA "G4802070, G48002600" -County and PUMA "G4802090, G48005400" -County and PUMA "G4802110, G48000100" -County and PUMA "G4802130, G48001800" -County and PUMA "G4802150, G48006801" -County and PUMA "G4802150, G48006802" -County and PUMA "G4802150, G48006803" -County and PUMA "G4802150, G48006804" -County and PUMA "G4802150, G48006805" -County and PUMA "G4802150, G48006806" -County and PUMA "G4802150, G48006807" -County and PUMA "G4802170, G48003700" -County and PUMA "G4802190, G48000400" -County and PUMA "G4802210, G48002200" -County and PUMA "G4802230, G48001000" -County and PUMA "G4802250, G48003900" -County and PUMA "G4802270, G48002800" -County and PUMA "G4802290, G48003200" -County and PUMA "G4802310, G48000900" -County and PUMA "G4802330, G48000100" -County and PUMA "G4802350, G48002800" -County and PUMA "G4802370, G48000600" -County and PUMA "G4802390, G48005500" -County and PUMA "G4802410, G48004100" -County and PUMA "G4802430, G48003200" -County and PUMA "G4802450, G48004301" -County and PUMA "G4802450, G48004302" -County and PUMA "G4802470, G48006400" -County and PUMA "G4802490, G48006900" -County and PUMA "G4802510, G48002102" -County and PUMA "G4802530, G48002600" -County and PUMA "G4802550, G48005500" -County and PUMA "G4802570, G48001400" -County and PUMA "G4802590, G48006000" -County and PUMA "G4802610, G48006900" -County and PUMA "G4802630, G48002600" -County and PUMA "G4802650, G48006000" -County and PUMA "G4802670, G48002800" -County and PUMA "G4802690, G48000400" -County and PUMA "G4802710, G48006200" -County and PUMA "G4802730, G48006900" -County and PUMA "G4802750, G48002600" -County and PUMA "G4802770, G48001000" -County and PUMA "G4802790, G48000400" -County and PUMA "G4802810, G48003400" -County and PUMA "G4802830, G48006200" -County and PUMA "G4802850, G48005500" -County and PUMA "G4802870, G48005100" -County and PUMA "G4802890, G48003601" -County and PUMA "G4802910, G48004400" -County and PUMA "G4802930, G48003700" -County and PUMA "G4802950, G48000100" -County and PUMA "G4802970, G48006400" -County and PUMA "G4802990, G48003400" -County and PUMA "G4803010, G48003200" -County and PUMA "G4803030, G48000501" -County and PUMA "G4803030, G48000502" -County and PUMA "G4803050, G48000400" -County and PUMA "G4803070, G48002800" -County and PUMA "G4803090, G48003801" -County and PUMA "G4803090, G48003802" -County and PUMA "G4803110, G48006400" -County and PUMA "G4803130, G48003601" -County and PUMA "G4803150, G48001200" -County and PUMA "G4803170, G48002800" -County and PUMA "G4803190, G48002800" -County and PUMA "G4803210, G48005000" -County and PUMA "G4803230, G48006200" -County and PUMA "G4803250, G48006100" -County and PUMA "G4803270, G48002800" -County and PUMA "G4803290, G48003000" -County and PUMA "G4803310, G48003601" -County and PUMA "G4803330, G48003400" -County and PUMA "G4803350, G48002600" -County and PUMA "G4803370, G48000600" -County and PUMA "G4803390, G48004501" -County and PUMA "G4803390, G48004502" -County and PUMA "G4803390, G48004503" -County and PUMA "G4803390, G48004504" -County and PUMA "G4803410, G48000100" -County and PUMA "G4803430, G48001000" -County and PUMA "G4803450, G48000400" -County and PUMA "G4803470, G48004000" -County and PUMA "G4803490, G48003700" -County and PUMA "G4803510, G48004100" -County and PUMA "G4803530, G48002600" -County and PUMA "G4803550, G48006601" -County and PUMA "G4803550, G48006602" -County and PUMA "G4803550, G48006603" -County and PUMA "G4803570, G48000100" -County and PUMA "G4803590, G48000100" -County and PUMA "G4803610, G48004200" -County and PUMA "G4803630, G48002200" -County and PUMA "G4803650, G48001700" -County and PUMA "G4803670, G48002400" -County and PUMA "G4803690, G48000100" -County and PUMA "G4803710, G48003200" -County and PUMA "G4803730, G48003900" -County and PUMA "G4803750, G48000200" -County and PUMA "G4803770, G48003200" -County and PUMA "G4803790, G48001300" -County and PUMA "G4803810, G48000300" -County and PUMA "G4803830, G48002800" -County and PUMA "G4803850, G48006200" -County and PUMA "G4803870, G48001000" -County and PUMA "G4803890, G48003200" -County and PUMA "G4803910, G48006500" -County and PUMA "G4803930, G48000100" -County and PUMA "G4803950, G48003601" -County and PUMA "G4803970, G48000900" -County and PUMA "G4803990, G48002600" -County and PUMA "G4804010, G48001700" -County and PUMA "G4804030, G48004100" -County and PUMA "G4804050, G48004100" -County and PUMA "G4804070, G48003900" -County and PUMA "G4804090, G48006500" -County and PUMA "G4804110, G48003400" -County and PUMA "G4804130, G48002800" -County and PUMA "G4804150, G48002600" -County and PUMA "G4804170, G48002600" -County and PUMA "G4804190, G48004100" -County and PUMA "G4804210, G48000100" -County and PUMA "G4804230, G48001501" -County and PUMA "G4804230, G48001502" -County and PUMA "G4804250, G48002200" -County and PUMA "G4804270, G48006400" -County and PUMA "G4804290, G48002600" -County and PUMA "G4804310, G48002800" -County and PUMA "G4804330, G48002600" -County and PUMA "G4804350, G48002800" -County and PUMA "G4804370, G48000100" -County and PUMA "G4804390, G48002501" -County and PUMA "G4804390, G48002502" -County and PUMA "G4804390, G48002503" -County and PUMA "G4804390, G48002504" -County and PUMA "G4804390, G48002505" -County and PUMA "G4804390, G48002506" -County and PUMA "G4804390, G48002507" -County and PUMA "G4804390, G48002508" -County and PUMA "G4804390, G48002509" -County and PUMA "G4804390, G48002510" -County and PUMA "G4804390, G48002511" -County and PUMA "G4804390, G48002512" -County and PUMA "G4804390, G48002513" -County and PUMA "G4804390, G48002514" -County and PUMA "G4804390, G48002515" -County and PUMA "G4804390, G48002516" -County and PUMA "G4804410, G48002700" -County and PUMA "G4804430, G48003200" -County and PUMA "G4804450, G48000400" -County and PUMA "G4804470, G48002600" -County and PUMA "G4804490, G48001000" -County and PUMA "G4804510, G48002900" -County and PUMA "G4804530, G48005301" -County and PUMA "G4804530, G48005302" -County and PUMA "G4804530, G48005303" -County and PUMA "G4804530, G48005304" -County and PUMA "G4804530, G48005305" -County and PUMA "G4804530, G48005306" -County and PUMA "G4804530, G48005307" -County and PUMA "G4804530, G48005308" -County and PUMA "G4804530, G48005309" -County and PUMA "G4804550, G48003900" -County and PUMA "G4804570, G48004100" -County and PUMA "G4804590, G48001200" -County and PUMA "G4804610, G48002800" -County and PUMA "G4804630, G48006200" -County and PUMA "G4804650, G48006200" -County and PUMA "G4804670, G48001300" -County and PUMA "G4804690, G48005600" -County and PUMA "G4804710, G48003900" -County and PUMA "G4804730, G48005000" -County and PUMA "G4804750, G48003200" -County and PUMA "G4804770, G48003601" -County and PUMA "G4804790, G48006301" -County and PUMA "G4804790, G48006302" -County and PUMA "G4804810, G48005000" -County and PUMA "G4804830, G48000100" -County and PUMA "G4804850, G48000700" -County and PUMA "G4804870, G48000600" -County and PUMA "G4804890, G48006900" -County and PUMA "G4804910, G48005201" -County and PUMA "G4804910, G48005202" -County and PUMA "G4804910, G48005203" -County and PUMA "G4804910, G48005204" -County and PUMA "G4804930, G48005500" -County and PUMA "G4804950, G48003200" -County and PUMA "G4804970, G48000600" -County and PUMA "G4804990, G48001300" -County and PUMA "G4805010, G48000400" -County and PUMA "G4805030, G48000600" -County and PUMA "G4805050, G48006400" -County and PUMA "G4805070, G48006200" -County and PUMA "G4900010, G49021001" -County and PUMA "G4900030, G49003001" -County and PUMA "G4900050, G49005001" -County and PUMA "G4900070, G49013001" -County and PUMA "G4900090, G49013001" -County and PUMA "G4900110, G49011001" -County and PUMA "G4900110, G49011002" -County and PUMA "G4900130, G49013001" -County and PUMA "G4900150, G49013001" -County and PUMA "G4900170, G49021001" -County and PUMA "G4900190, G49013001" -County and PUMA "G4900210, G49021001" -County and PUMA "G4900230, G49021001" -County and PUMA "G4900250, G49021001" -County and PUMA "G4900270, G49021001" -County and PUMA "G4900290, G49005001" -County and PUMA "G4900310, G49021001" -County and PUMA "G4900330, G49005001" -County and PUMA "G4900350, G49035001" -County and PUMA "G4900350, G49035002" -County and PUMA "G4900350, G49035003" -County and PUMA "G4900350, G49035004" -County and PUMA "G4900350, G49035005" -County and PUMA "G4900350, G49035006" -County and PUMA "G4900350, G49035007" -County and PUMA "G4900350, G49035008" -County and PUMA "G4900350, G49035009" -County and PUMA "G4900370, G49013001" -County and PUMA "G4900390, G49021001" -County and PUMA "G4900410, G49021001" -County and PUMA "G4900430, G49005001" -County and PUMA "G4900450, G49003001" -County and PUMA "G4900470, G49013001" -County and PUMA "G4900490, G49049001" -County and PUMA "G4900490, G49049002" -County and PUMA "G4900490, G49049003" -County and PUMA "G4900490, G49049004" -County and PUMA "G4900510, G49013001" -County and PUMA "G4900530, G49053001" -County and PUMA "G4900550, G49021001" -County and PUMA "G4900570, G49057001" -County and PUMA "G4900570, G49057002" -County and PUMA "G5000010, G50000400" -County and PUMA "G5000030, G50000400" -County and PUMA "G5000050, G50000200" -County and PUMA "G5000070, G50000100" -County and PUMA "G5000090, G50000200" -County and PUMA "G5000110, G50000100" -County and PUMA "G5000130, G50000100" -County and PUMA "G5000150, G50000200" -County and PUMA "G5000170, G50000300" -County and PUMA "G5000190, G50000200" -County and PUMA "G5000210, G50000400" -County and PUMA "G5000230, G50000200" -County and PUMA "G5000250, G50000300" -County and PUMA "G5000270, G50000300" -County and PUMA "G5100010, G51051125" -County and PUMA "G5100030, G51051089" -County and PUMA "G5100030, G51051090" -County and PUMA "G5100050, G51051045" -County and PUMA "G5100070, G51051105" -County and PUMA "G5100090, G51051095" -County and PUMA "G5100110, G51051095" -County and PUMA "G5100130, G51001301" -County and PUMA "G5100130, G51001302" -County and PUMA "G5100150, G51051080" -County and PUMA "G5100170, G51051080" -County and PUMA "G5100190, G51051095" -County and PUMA "G5100210, G51051020" -County and PUMA "G5100230, G51051045" -County and PUMA "G5100250, G51051105" -County and PUMA "G5100270, G51051010" -County and PUMA "G5100290, G51051105" -County and PUMA "G5100310, G51051096" -County and PUMA "G5100330, G51051120" -County and PUMA "G5100350, G51051020" -County and PUMA "G5100360, G51051215" -County and PUMA "G5100370, G51051105" -County and PUMA "G5100410, G51004101" -County and PUMA "G5100410, G51004102" -County and PUMA "G5100410, G51004103" -County and PUMA "G5100430, G51051084" -County and PUMA "G5100450, G51051045" -County and PUMA "G5100470, G51051087" -County and PUMA "G5100490, G51051105" -County and PUMA "G5100510, G51051010" -County and PUMA "G5100530, G51051135" -County and PUMA "G5100570, G51051125" -County and PUMA "G5100590, G51059301" -County and PUMA "G5100590, G51059302" -County and PUMA "G5100590, G51059303" -County and PUMA "G5100590, G51059304" -County and PUMA "G5100590, G51059305" -County and PUMA "G5100590, G51059306" -County and PUMA "G5100590, G51059307" -County and PUMA "G5100590, G51059308" -County and PUMA "G5100590, G51059309" -County and PUMA "G5100610, G51051087" -County and PUMA "G5100630, G51051040" -County and PUMA "G5100650, G51051089" -County and PUMA "G5100670, G51051045" -County and PUMA "G5100690, G51051084" -County and PUMA "G5100710, G51051040" -County and PUMA "G5100730, G51051125" -County and PUMA "G5100750, G51051215" -County and PUMA "G5100770, G51051020" -County and PUMA "G5100790, G51051090" -County and PUMA "G5100810, G51051135" -County and PUMA "G5100830, G51051105" -County and PUMA "G5100850, G51051215" -County and PUMA "G5100870, G51051224" -County and PUMA "G5100870, G51051225" -County and PUMA "G5100890, G51051097" -County and PUMA "G5100910, G51051080" -County and PUMA "G5100930, G51051145" -County and PUMA "G5100950, G51051206" -County and PUMA "G5100970, G51051125" -County and PUMA "G5100990, G51051120" -County and PUMA "G5101010, G51051215" -County and PUMA "G5101030, G51051125" -County and PUMA "G5101050, G51051010" -County and PUMA "G5101070, G51010701" -County and PUMA "G5101070, G51010702" -County and PUMA "G5101070, G51010703" -County and PUMA "G5101090, G51051089" -County and PUMA "G5101110, G51051105" -County and PUMA "G5101130, G51051087" -County and PUMA "G5101150, G51051125" -County and PUMA "G5101170, G51051105" -County and PUMA "G5101190, G51051125" -County and PUMA "G5101210, G51051040" -County and PUMA "G5101250, G51051089" -County and PUMA "G5101270, G51051215" -County and PUMA "G5101310, G51051125" -County and PUMA "G5101330, G51051125" -County and PUMA "G5101350, G51051105" -County and PUMA "G5101370, G51051087" -County and PUMA "G5101390, G51051085" -County and PUMA "G5101410, G51051097" -County and PUMA "G5101430, G51051097" -County and PUMA "G5101450, G51051215" -County and PUMA "G5101470, G51051105" -County and PUMA "G5101490, G51051135" -County and PUMA "G5101530, G51051244" -County and PUMA "G5101530, G51051245" -County and PUMA "G5101530, G51051246" -County and PUMA "G5101550, G51051040" -County and PUMA "G5101570, G51051087" -County and PUMA "G5101590, G51051125" -County and PUMA "G5101610, G51051044" -County and PUMA "G5101610, G51051045" -County and PUMA "G5101630, G51051080" -County and PUMA "G5101650, G51051110" -County and PUMA "G5101670, G51051010" -County and PUMA "G5101690, G51051010" -County and PUMA "G5101710, G51051085" -County and PUMA "G5101730, G51051020" -County and PUMA "G5101750, G51051145" -County and PUMA "G5101770, G51051120" -County and PUMA "G5101790, G51051115" -County and PUMA "G5101810, G51051135" -County and PUMA "G5101830, G51051135" -County and PUMA "G5101850, G51051010" -County and PUMA "G5101870, G51051085" -County and PUMA "G5101910, G51051020" -County and PUMA "G5101930, G51051125" -County and PUMA "G5101950, G51051010" -County and PUMA "G5101970, G51051020" -County and PUMA "G5101990, G51051206" -County and PUMA "G5105100, G51051255" -County and PUMA "G5105200, G51051020" -County and PUMA "G5105300, G51051080" -County and PUMA "G5105400, G51051090" -County and PUMA "G5105500, G51055001" -County and PUMA "G5105500, G51055002" -County and PUMA "G5105700, G51051135" -County and PUMA "G5105800, G51051045" -County and PUMA "G5105900, G51051097" -County and PUMA "G5105950, G51051135" -County and PUMA "G5106000, G51059303" -County and PUMA "G5106100, G51059308" -County and PUMA "G5106200, G51051145" -County and PUMA "G5106300, G51051115" -County and PUMA "G5106400, G51051020" -County and PUMA "G5106500, G51051186" -County and PUMA "G5106600, G51051110" -County and PUMA "G5106700, G51051135" -County and PUMA "G5106780, G51051080" -County and PUMA "G5106800, G51051096" -County and PUMA "G5106830, G51051245" -County and PUMA "G5106850, G51051245" -County and PUMA "G5106900, G51051097" -County and PUMA "G5107000, G51051175" -County and PUMA "G5107100, G51051154" -County and PUMA "G5107100, G51051155" -County and PUMA "G5107200, G51051010" -County and PUMA "G5107300, G51051135" -County and PUMA "G5107350, G51051206" -County and PUMA "G5107400, G51051155" -County and PUMA "G5107500, G51051040" -County and PUMA "G5107600, G51051235" -County and PUMA "G5107700, G51051044" -County and PUMA "G5107750, G51051044" -County and PUMA "G5107900, G51051080" -County and PUMA "G5108000, G51051145" -County and PUMA "G5108100, G51051164" -County and PUMA "G5108100, G51051165" -County and PUMA "G5108100, G51051167" -County and PUMA "G5108200, G51051080" -County and PUMA "G5108300, G51051206" -County and PUMA "G5108400, G51051084" -County and PUMA "G5300010, G53010600" -County and PUMA "G5300030, G53010600" -County and PUMA "G5300050, G53010701" -County and PUMA "G5300050, G53010702" -County and PUMA "G5300050, G53010703" -County and PUMA "G5300070, G53010300" -County and PUMA "G5300090, G53011900" -County and PUMA "G5300110, G53011101" -County and PUMA "G5300110, G53011102" -County and PUMA "G5300110, G53011103" -County and PUMA "G5300110, G53011104" -County and PUMA "G5300130, G53010600" -County and PUMA "G5300150, G53011200" -County and PUMA "G5300170, G53010300" -County and PUMA "G5300190, G53010400" -County and PUMA "G5300210, G53010701" -County and PUMA "G5300210, G53010703" -County and PUMA "G5300230, G53010600" -County and PUMA "G5300250, G53010800" -County and PUMA "G5300270, G53011300" -County and PUMA "G5300290, G53010200" -County and PUMA "G5300310, G53011900" -County and PUMA "G5300330, G53011601" -County and PUMA "G5300330, G53011602" -County and PUMA "G5300330, G53011603" -County and PUMA "G5300330, G53011604" -County and PUMA "G5300330, G53011605" -County and PUMA "G5300330, G53011606" -County and PUMA "G5300330, G53011607" -County and PUMA "G5300330, G53011608" -County and PUMA "G5300330, G53011609" -County and PUMA "G5300330, G53011610" -County and PUMA "G5300330, G53011611" -County and PUMA "G5300330, G53011612" -County and PUMA "G5300330, G53011613" -County and PUMA "G5300330, G53011614" -County and PUMA "G5300330, G53011615" -County and PUMA "G5300330, G53011616" -County and PUMA "G5300350, G53011801" -County and PUMA "G5300350, G53011802" -County and PUMA "G5300370, G53010800" -County and PUMA "G5300390, G53011000" -County and PUMA "G5300410, G53011000" -County and PUMA "G5300430, G53010600" -County and PUMA "G5300450, G53011300" -County and PUMA "G5300470, G53010400" -County and PUMA "G5300490, G53011200" -County and PUMA "G5300510, G53010400" -County and PUMA "G5300530, G53011501" -County and PUMA "G5300530, G53011502" -County and PUMA "G5300530, G53011503" -County and PUMA "G5300530, G53011504" -County and PUMA "G5300530, G53011505" -County and PUMA "G5300530, G53011506" -County and PUMA "G5300530, G53011507" -County and PUMA "G5300550, G53010200" -County and PUMA "G5300570, G53010200" -County and PUMA "G5300590, G53011000" -County and PUMA "G5300610, G53011701" -County and PUMA "G5300610, G53011702" -County and PUMA "G5300610, G53011703" -County and PUMA "G5300610, G53011704" -County and PUMA "G5300610, G53011705" -County and PUMA "G5300610, G53011706" -County and PUMA "G5300630, G53010501" -County and PUMA "G5300630, G53010502" -County and PUMA "G5300630, G53010503" -County and PUMA "G5300630, G53010504" -County and PUMA "G5300650, G53010400" -County and PUMA "G5300670, G53011401" -County and PUMA "G5300670, G53011402" -County and PUMA "G5300690, G53011200" -County and PUMA "G5300710, G53010703" -County and PUMA "G5300730, G53010100" -County and PUMA "G5300750, G53010600" -County and PUMA "G5300770, G53010901" -County and PUMA "G5300770, G53010902" -County and PUMA "G5400010, G54000500" -County and PUMA "G5400030, G54000400" -County and PUMA "G5400050, G54000900" -County and PUMA "G5400070, G54000600" -County and PUMA "G5400090, G54000100" -County and PUMA "G5400110, G54000800" -County and PUMA "G5400130, G54000600" -County and PUMA "G5400150, G54001000" -County and PUMA "G5400170, G54000200" -County and PUMA "G5400190, G54001200" -County and PUMA "G5400210, G54000600" -County and PUMA "G5400230, G54000500" -County and PUMA "G5400250, G54001100" -County and PUMA "G5400270, G54000400" -County and PUMA "G5400290, G54000100" -County and PUMA "G5400310, G54000500" -County and PUMA "G5400330, G54000200" -County and PUMA "G5400350, G54000600" -County and PUMA "G5400370, G54000400" -County and PUMA "G5400390, G54001000" -County and PUMA "G5400410, G54000500" -County and PUMA "G5400430, G54000900" -County and PUMA "G5400450, G54001300" -County and PUMA "G5400470, G54001300" -County and PUMA "G5400490, G54000200" -County and PUMA "G5400510, G54000100" -County and PUMA "G5400530, G54000800" -County and PUMA "G5400550, G54001200" -County and PUMA "G5400570, G54000400" -County and PUMA "G5400590, G54001300" -County and PUMA "G5400610, G54000300" -County and PUMA "G5400630, G54001100" -County and PUMA "G5400650, G54000400" -County and PUMA "G5400670, G54001100" -County and PUMA "G5400690, G54000100" -County and PUMA "G5400710, G54000500" -County and PUMA "G5400730, G54000700" -County and PUMA "G5400750, G54001100" -County and PUMA "G5400770, G54000300" -County and PUMA "G5400790, G54000900" -County and PUMA "G5400810, G54001200" -County and PUMA "G5400830, G54000500" -County and PUMA "G5400850, G54000600" -County and PUMA "G5400870, G54000600" -County and PUMA "G5400890, G54001100" -County and PUMA "G5400910, G54000200" -County and PUMA "G5400930, G54000500" -County and PUMA "G5400950, G54000600" -County and PUMA "G5400970, G54000500" -County and PUMA "G5400990, G54000800" -County and PUMA "G5401010, G54001100" -County and PUMA "G5401030, G54000600" -County and PUMA "G5401050, G54000700" -County and PUMA "G5401070, G54000700" -County and PUMA "G5401090, G54001300" -County and PUMA "G5500010, G55001601" -County and PUMA "G5500030, G55000100" -County and PUMA "G5500050, G55055101" -County and PUMA "G5500070, G55000100" -County and PUMA "G5500090, G55000200" -County and PUMA "G5500090, G55000300" -County and PUMA "G5500110, G55000700" -County and PUMA "G5500130, G55000100" -County and PUMA "G5500150, G55001401" -County and PUMA "G5500170, G55055101" -County and PUMA "G5500170, G55055103" -County and PUMA "G5500190, G55055101" -County and PUMA "G5500210, G55001000" -County and PUMA "G5500230, G55000700" -County and PUMA "G5500250, G55000101" -County and PUMA "G5500250, G55000102" -County and PUMA "G5500250, G55000103" -County and PUMA "G5500270, G55001001" -County and PUMA "G5500290, G55001300" -County and PUMA "G5500310, G55000100" -County and PUMA "G5500330, G55055102" -County and PUMA "G5500350, G55055103" -County and PUMA "G5500370, G55001300" -County and PUMA "G5500390, G55001401" -County and PUMA "G5500410, G55000600" -County and PUMA "G5500430, G55000800" -County and PUMA "G5500450, G55000800" -County and PUMA "G5500470, G55001400" -County and PUMA "G5500490, G55000800" -County and PUMA "G5500510, G55000100" -County and PUMA "G5500530, G55000700" -County and PUMA "G5500550, G55001001" -County and PUMA "G5500570, G55001601" -County and PUMA "G5500590, G55010000" -County and PUMA "G5500610, G55001301" -County and PUMA "G5500630, G55000900" -County and PUMA "G5500650, G55000800" -County and PUMA "G5500670, G55000600" -County and PUMA "G5500690, G55000600" -County and PUMA "G5500710, G55001301" -County and PUMA "G5500730, G55001600" -County and PUMA "G5500750, G55001300" -County and PUMA "G5500770, G55001400" -County and PUMA "G5500780, G55001400" -County and PUMA "G5500790, G55040101" -County and PUMA "G5500790, G55040301" -County and PUMA "G5500790, G55040701" -County and PUMA "G5500790, G55041001" -County and PUMA "G5500790, G55041002" -County and PUMA "G5500790, G55041003" -County and PUMA "G5500790, G55041004" -County and PUMA "G5500790, G55041005" -County and PUMA "G5500810, G55000700" -County and PUMA "G5500830, G55001300" -County and PUMA "G5500850, G55000600" -County and PUMA "G5500870, G55001500" -County and PUMA "G5500890, G55020000" -County and PUMA "G5500910, G55000700" -County and PUMA "G5500930, G55000700" -County and PUMA "G5500950, G55055101" -County and PUMA "G5500970, G55001601" -County and PUMA "G5500990, G55000100" -County and PUMA "G5501010, G55030000" -County and PUMA "G5501030, G55000800" -County and PUMA "G5501050, G55002400" -County and PUMA "G5501070, G55000100" -County and PUMA "G5501090, G55055102" -County and PUMA "G5501110, G55001000" -County and PUMA "G5501130, G55000100" -County and PUMA "G5501150, G55001400" -County and PUMA "G5501170, G55002500" -County and PUMA "G5501190, G55000100" -County and PUMA "G5501210, G55000700" -County and PUMA "G5501230, G55000700" -County and PUMA "G5501250, G55000600" -County and PUMA "G5501270, G55050000" -County and PUMA "G5501290, G55000100" -County and PUMA "G5501310, G55020000" -County and PUMA "G5501330, G55070101" -County and PUMA "G5501330, G55070201" -County and PUMA "G5501330, G55070301" -County and PUMA "G5501350, G55001400" -County and PUMA "G5501370, G55001400" -County and PUMA "G5501390, G55001501" -County and PUMA "G5501410, G55001601" -County and PUMA "G5600010, G56000300" -County and PUMA "G5600030, G56000100" -County and PUMA "G5600050, G56000200" -County and PUMA "G5600070, G56000400" -County and PUMA "G5600090, G56000400" -County and PUMA "G5600110, G56000200" -County and PUMA "G5600130, G56000500" -County and PUMA "G5600150, G56000200" -County and PUMA "G5600170, G56000500" -County and PUMA "G5600190, G56000200" -County and PUMA "G5600210, G56000300" -County and PUMA "G5600230, G56000100" -County and PUMA "G5600250, G56000400" -County and PUMA "G5600270, G56000200" -County and PUMA "G5600290, G56000100" -County and PUMA "G5600310, G56000200" -County and PUMA "G5600330, G56000100" -County and PUMA "G5600350, G56000500" -County and PUMA "G5600370, G56000500" -County and PUMA "G5600390, G56000100" -County and PUMA "G5600410, G56000500" -County and PUMA "G5600430, G56000200" -County and PUMA "G5600450, G56000200" -County and PUMA "G7200010, G72000401" -County and PUMA "G7200030, G72000101" -County and PUMA "G7200050, G72000102" -County and PUMA "G7200070, G72000602" -County and PUMA "G7200090, G72000602" -County and PUMA "G7200110, G72000101" -County and PUMA "G7200130, G72000301" -County and PUMA "G7200150, G72000701" -County and PUMA "G7200170, G72000301" -County and PUMA "G7200190, G72000601" -County and PUMA "G7200210, G72000801" -County and PUMA "G7200210, G72000802" -County and PUMA "G7200230, G72000201" -County and PUMA "G7200250, G72001001" -County and PUMA "G7200270, G72000302" -County and PUMA "G7200290, G72000902" -County and PUMA "G7200310, G72000901" -County and PUMA "G7200310, G72000902" -County and PUMA "G7200330, G72000803" -County and PUMA "G7200350, G72000602" -County and PUMA "G7200370, G72001101" -County and PUMA "G7200390, G72000501" -County and PUMA "G7200410, G72000602" -County and PUMA "G7200430, G72000403" -County and PUMA "G7200450, G72000601" -County and PUMA "G7200470, G72000601" -County and PUMA "G7200490, G72001101" -County and PUMA "G7200510, G72000502" -County and PUMA "G7200530, G72001101" -County and PUMA "G7200540, G72000301" -County and PUMA "G7200550, G72000401" -County and PUMA "G7200570, G72000701" -County and PUMA "G7200590, G72000401" -County and PUMA "G7200610, G72000803" -County and PUMA "G7200630, G72001002" -County and PUMA "G7200650, G72000302" -County and PUMA "G7200670, G72000202" -County and PUMA "G7200690, G72001102" -County and PUMA "G7200710, G72000102" -County and PUMA "G7200730, G72000402" -County and PUMA "G7200750, G72000403" -County and PUMA "G7200770, G72001002" -County and PUMA "G7200790, G72000201" -County and PUMA "G7200810, G72000302" -County and PUMA "G7200830, G72000202" -County and PUMA "G7200850, G72001002" -County and PUMA "G7200870, G72000902" -County and PUMA "G7200890, G72001101" -County and PUMA "G7200910, G72000501" -County and PUMA "G7200930, G72000202" -County and PUMA "G7200950, G72000701" -County and PUMA "G7200970, G72000202" -County and PUMA "G7200990, G72000101" -County and PUMA "G7201010, G72000501" -County and PUMA "G7201030, G72001102" -County and PUMA "G7201050, G72000601" -County and PUMA "G7201070, G72000601" -County and PUMA "G7201090, G72000701" -County and PUMA "G7201110, G72000401" -County and PUMA "G7201130, G72000402" -County and PUMA "G7201150, G72000102" -County and PUMA "G7201170, G72000101" -County and PUMA "G7201190, G72001101" -County and PUMA "G7201210, G72000201" -County and PUMA "G7201230, G72000701" -County and PUMA "G7201250, G72000201" -County and PUMA "G7201270, G72000804" -County and PUMA "G7201270, G72000805" -County and PUMA "G7201270, G72000806" -County and PUMA "G7201290, G72001002" -County and PUMA "G7201310, G72000101" -County and PUMA "G7201330, G72000403" -County and PUMA "G7201350, G72000503" -County and PUMA "G7201370, G72000502" -County and PUMA "G7201390, G72000902" -County and PUMA "G7201410, G72000302" -County and PUMA "G7201430, G72000503" -County and PUMA "G7201450, G72000501" -County and PUMA "G7201470, G72001101" -County and PUMA "G7201490, G72000403" -County and PUMA "G7201510, G72001102" -County and PUMA "G7201530, G72000401" -Custom State AK -Custom State Others -Dehumidifier "65 pints/day, 50% RH" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=1.8 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 -Dehumidifier "65 pints/day, 50% RH, 2.0 EF" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=2 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 -Dehumidifier "65 pints/day, 60% RH" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=1.8 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.6 dehumidifier_fraction_dehumidification_load_served=1 -Dehumidifier None ResStockArguments dehumidifier_type=none dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=0 dehumidifier_capacity=40 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 -Dishwasher 144 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=144 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=13 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 199 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=199 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=18 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 220 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=220 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=19 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 255 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=255 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=21 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 270 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=270 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=22 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 290 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=290 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=23 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 318 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=318 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=25 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher None ResStockArguments dishwasher_present=false dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=0 dishwasher_label_electric_rate=0 dishwasher_label_gas_rate=0 dishwasher_label_annual_gas_cost=0 dishwasher_label_usage=0 dishwasher_place_setting_capacity=0 -Dishwasher Void -Dishwasher Usage Level 100% Usage ResStockArguments dishwasher_usage_multiplier=1.0 -Dishwasher Usage Level 120% Usage ResStockArguments dishwasher_usage_multiplier=1.2 -Dishwasher Usage Level 80% Usage ResStockArguments dishwasher_usage_multiplier=0.8 -Door Area 20 ft^2 ResStockArguments door_area=20 -Door Area 30 ft^2 ResStockArguments door_area=30 -Door Area 40 ft^2 ResStockArguments door_area=40 -Doors Fiberglass ResStockArguments door_rvalue=5 -Doors Steel ResStockArguments door_rvalue=5 -Doors Wood ResStockArguments door_rvalue=2.1 -Duct Leakage and Insulation "0% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0 ducts_return_leakage_to_outside_value=0 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "10% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "10% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "10% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "10% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "14% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "14% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "14% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "14% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "15% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "15% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "15% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "15% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "20% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "20% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "20% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "20% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "22.5% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "22.5% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "22.5% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "22.5% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "24% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "24% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "24% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "24% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "30% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "30% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "30% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "30% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "34% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "34% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "34% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "34% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "53% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "53% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "53% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "53% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "6% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "6% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "6% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "6% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "7.5% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "7.5% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "7.5% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "7.5% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "85% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "85% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "85% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "85% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation None ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0 ducts_return_leakage_to_outside_value=0 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Location Attic ResStockArguments ducts_supply_location=attic ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=attic ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location Crawlspace ResStockArguments ducts_supply_location=crawlspace ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=crawlspace ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location Garage ResStockArguments ducts_supply_location=garage ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=garage ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location Heated Basement ResStockArguments ducts_supply_location=basement - conditioned ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=basement - conditioned ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location Living Space ResStockArguments ducts_supply_location=conditioned space ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=conditioned space ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location None ResStockArguments ducts_supply_location=conditioned space ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=conditioned space ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=0 -Duct Location Unheated Basement ResStockArguments ducts_supply_location=basement - unconditioned ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=basement - unconditioned ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Eaves 1 ft ResStockArguments geometry_eaves_depth=1 -Eaves 2 ft ResStockArguments geometry_eaves_depth=2 -Eaves 3 ft ResStockArguments geometry_eaves_depth=3 -Eaves None ResStockArguments geometry_eaves_depth=0 -Electric Vehicle "EV, 4000 miles, 0.3 kWh/mi" ResStockArguments misc_plug_loads_vehicle_present=true misc_plug_loads_vehicle_annual_kwh=1481 misc_plug_loads_vehicle_usage_multiplier=1.0 misc_plug_loads_vehicle_2_usage_multiplier=1.0 -Electric Vehicle "EV, 5000 miles, 0.3 kWh/mi" ResStockArguments misc_plug_loads_vehicle_present=true misc_plug_loads_vehicle_annual_kwh=1852 misc_plug_loads_vehicle_usage_multiplier=1.0 misc_plug_loads_vehicle_2_usage_multiplier=1.0 -Electric Vehicle None ResStockArguments misc_plug_loads_vehicle_present=false misc_plug_loads_vehicle_annual_kwh=0 misc_plug_loads_vehicle_usage_multiplier=0 misc_plug_loads_vehicle_2_usage_multiplier=0 -Energystar Climate Zone 2023 North-Central -Energystar Climate Zone 2023 Northern -Energystar Climate Zone 2023 South-Central -Energystar Climate Zone 2023 Southern -Energystar Climate Zone 2023 Void -Federal Poverty Level 0-100% -Federal Poverty Level 100-150% -Federal Poverty Level 150-200% -Federal Poverty Level 200-300% -Federal Poverty Level 300-400% -Federal Poverty Level 400%+ -Federal Poverty Level Not Available -Generation And Emissions Assessment Region AZNMc -Generation And Emissions Assessment Region CAMXc -Generation And Emissions Assessment Region ERCTc -Generation And Emissions Assessment Region FRCCc -Generation And Emissions Assessment Region MROEc -Generation And Emissions Assessment Region MROWc -Generation And Emissions Assessment Region NEWEc -Generation And Emissions Assessment Region NWPPc -Generation And Emissions Assessment Region NYSTc -Generation And Emissions Assessment Region None -Generation And Emissions Assessment Region RFCEc -Generation And Emissions Assessment Region RFCMc -Generation And Emissions Assessment Region RFCWc -Generation And Emissions Assessment Region RMPAc -Generation And Emissions Assessment Region SPNOc -Generation And Emissions Assessment Region SPSOc -Generation And Emissions Assessment Region SRMVc -Generation And Emissions Assessment Region SRMWc -Generation And Emissions Assessment Region SRSOc -Generation And Emissions Assessment Region SRTVc -Generation And Emissions Assessment Region SRVCc -Geometry Attic Type Finished Attic or Cathedral Ceilings ResStockArguments geometry_attic_type=ConditionedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 -Geometry Attic Type None ResStockArguments geometry_attic_type=FlatRoof geometry_roof_type=gable geometry_roof_pitch=6:12 -Geometry Attic Type Unvented Attic ResStockArguments geometry_attic_type=UnventedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 -Geometry Attic Type Vented Attic ResStockArguments geometry_attic_type=VentedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 -Geometry Building Horizontal Location MF Left ResStockArguments geometry_unit_horizontal_location=Left -Geometry Building Horizontal Location MF Middle ResStockArguments geometry_unit_horizontal_location=Middle -Geometry Building Horizontal Location MF None -Geometry Building Horizontal Location MF Not Applicable ResStockArguments geometry_unit_horizontal_location=None -Geometry Building Horizontal Location MF Right ResStockArguments geometry_unit_horizontal_location=Right -Geometry Building Horizontal Location SFA Left ResStockArguments geometry_unit_horizontal_location=Left -Geometry Building Horizontal Location SFA Middle ResStockArguments geometry_unit_horizontal_location=Middle -Geometry Building Horizontal Location SFA None -Geometry Building Horizontal Location SFA Right ResStockArguments geometry_unit_horizontal_location=Right -Geometry Building Level MF Bottom ResStockArguments geometry_unit_level=Bottom -Geometry Building Level MF Middle ResStockArguments geometry_unit_level=Middle -Geometry Building Level MF None -Geometry Building Level MF Top ResStockArguments geometry_unit_level=Top -Geometry Building Number Units MF 10 ResStockArguments geometry_building_num_units=10 -Geometry Building Number Units MF 102 ResStockArguments geometry_building_num_units=102 -Geometry Building Number Units MF 11 ResStockArguments geometry_building_num_units=11 -Geometry Building Number Units MF 116 ResStockArguments geometry_building_num_units=116 -Geometry Building Number Units MF 12 ResStockArguments geometry_building_num_units=12 -Geometry Building Number Units MF 13 ResStockArguments geometry_building_num_units=13 -Geometry Building Number Units MF 14 ResStockArguments geometry_building_num_units=14 -Geometry Building Number Units MF 15 ResStockArguments geometry_building_num_units=15 -Geometry Building Number Units MF 16 ResStockArguments geometry_building_num_units=16 -Geometry Building Number Units MF 17 ResStockArguments geometry_building_num_units=17 -Geometry Building Number Units MF 18 ResStockArguments geometry_building_num_units=18 -Geometry Building Number Units MF 183 ResStockArguments geometry_building_num_units=183 -Geometry Building Number Units MF 19 ResStockArguments geometry_building_num_units=19 -Geometry Building Number Units MF 2 ResStockArguments geometry_building_num_units=2 -Geometry Building Number Units MF 20 ResStockArguments geometry_building_num_units=20 -Geometry Building Number Units MF 21 ResStockArguments geometry_building_num_units=21 -Geometry Building Number Units MF 24 ResStockArguments geometry_building_num_units=24 -Geometry Building Number Units MF 3 ResStockArguments geometry_building_num_units=3 -Geometry Building Number Units MF 30 ResStockArguments geometry_building_num_units=30 -Geometry Building Number Units MF 323 ResStockArguments geometry_building_num_units=323 -Geometry Building Number Units MF 326 ResStockArguments geometry_building_num_units=326 -Geometry Building Number Units MF 36 ResStockArguments geometry_building_num_units=36 -Geometry Building Number Units MF 4 ResStockArguments geometry_building_num_units=4 -Geometry Building Number Units MF 43 ResStockArguments geometry_building_num_units=43 -Geometry Building Number Units MF 5 ResStockArguments geometry_building_num_units=5 -Geometry Building Number Units MF 6 ResStockArguments geometry_building_num_units=6 -Geometry Building Number Units MF 67 ResStockArguments geometry_building_num_units=67 -Geometry Building Number Units MF 7 ResStockArguments geometry_building_num_units=7 -Geometry Building Number Units MF 8 ResStockArguments geometry_building_num_units=8 -Geometry Building Number Units MF 9 ResStockArguments geometry_building_num_units=9 -Geometry Building Number Units MF None -Geometry Building Number Units SFA 10 ResStockArguments geometry_building_num_units=10 -Geometry Building Number Units SFA 12 ResStockArguments geometry_building_num_units=12 -Geometry Building Number Units SFA 144 ResStockArguments geometry_building_num_units=144 -Geometry Building Number Units SFA 15 ResStockArguments geometry_building_num_units=15 -Geometry Building Number Units SFA 16 ResStockArguments geometry_building_num_units=16 -Geometry Building Number Units SFA 2 ResStockArguments geometry_building_num_units=2 -Geometry Building Number Units SFA 20 ResStockArguments geometry_building_num_units=20 -Geometry Building Number Units SFA 24 ResStockArguments geometry_building_num_units=24 -Geometry Building Number Units SFA 3 ResStockArguments geometry_building_num_units=3 -Geometry Building Number Units SFA 30 ResStockArguments geometry_building_num_units=30 -Geometry Building Number Units SFA 36 ResStockArguments geometry_building_num_units=36 -Geometry Building Number Units SFA 4 ResStockArguments geometry_building_num_units=4 -Geometry Building Number Units SFA 5 ResStockArguments geometry_building_num_units=5 -Geometry Building Number Units SFA 50 ResStockArguments geometry_building_num_units=50 -Geometry Building Number Units SFA 6 ResStockArguments geometry_building_num_units=6 -Geometry Building Number Units SFA 60 ResStockArguments geometry_building_num_units=60 -Geometry Building Number Units SFA 7 ResStockArguments geometry_building_num_units=7 -Geometry Building Number Units SFA 8 ResStockArguments geometry_building_num_units=8 -Geometry Building Number Units SFA 9 ResStockArguments geometry_building_num_units=9 -Geometry Building Number Units SFA 90 ResStockArguments geometry_building_num_units=90 -Geometry Building Number Units SFA None -Geometry Building Type ACS 10 to 19 Unit -Geometry Building Type ACS 2 Unit -Geometry Building Type ACS 20 to 49 Unit -Geometry Building Type ACS 3 or 4 Unit -Geometry Building Type ACS 5 to 9 Unit -Geometry Building Type ACS 50 or more Unit -Geometry Building Type ACS Mobile Home -Geometry Building Type ACS Single-Family Attached -Geometry Building Type ACS Single-Family Detached -Geometry Building Type Height "Multifamily with 5+ units, 1-3 stories" -Geometry Building Type Height "Multifamily with 5+ units, 4-7 stories" -Geometry Building Type Height "Multifamily with 5+ units, 8+ stories" -Geometry Building Type Height Mobile Home -Geometry Building Type Height Multifamily with 2-4 Units -Geometry Building Type Height Single-Family Attached -Geometry Building Type Height Single-Family Detached -Geometry Building Type RECS Mobile Home ResStockArguments geometry_unit_type=single-family detached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=1.8 -Geometry Building Type RECS Multi-Family with 2 - 4 Units ResStockArguments geometry_unit_type=apartment unit geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 -Geometry Building Type RECS Multi-Family with 5+ Units ResStockArguments geometry_unit_type=apartment unit geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 -Geometry Building Type RECS Single-Family Attached ResStockArguments geometry_unit_type=single-family attached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 -Geometry Building Type RECS Single-Family Detached ResStockArguments geometry_unit_type=single-family detached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=1.8 -Geometry Floor Area 0-499 ResStockArguments geometry_unit_cfa_bin=0-499 geometry_unit_cfa=auto geometry_garage_protrusion=0.75 -Geometry Floor Area 1000-1499 ResStockArguments geometry_unit_cfa_bin=1000-1499 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 1500-1999 ResStockArguments geometry_unit_cfa_bin=1500-1999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 2000-2499 ResStockArguments geometry_unit_cfa_bin=2000-2499 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 2500-2999 ResStockArguments geometry_unit_cfa_bin=2500-2999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 3000-3999 ResStockArguments geometry_unit_cfa_bin=3000-3999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 4000+ ResStockArguments geometry_unit_cfa_bin=4000+ geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 500-749 ResStockArguments geometry_unit_cfa_bin=500-749 geometry_unit_cfa=auto geometry_garage_protrusion=0.75 -Geometry Floor Area 750-999 ResStockArguments geometry_unit_cfa_bin=750-999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area Bin 0-1499 -Geometry Floor Area Bin 1500-2499 -Geometry Floor Area Bin 2500-3999 -Geometry Floor Area Bin 4000+ -Geometry Foundation Type Ambient ResStockArguments geometry_foundation_type=Ambient geometry_foundation_height=4 geometry_foundation_height_above_grade=4 geometry_rim_joist_height=0 -Geometry Foundation Type Conditioned Crawlspace ResStockArguments geometry_foundation_type=ConditionedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Foundation Type Heated Basement ResStockArguments geometry_foundation_type=ConditionedBasement geometry_foundation_height=8 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Foundation Type Slab ResStockArguments geometry_foundation_type=SlabOnGrade geometry_foundation_height=0 geometry_foundation_height_above_grade=0 geometry_rim_joist_height=0 -Geometry Foundation Type Unheated Basement ResStockArguments geometry_foundation_type=UnconditionedBasement geometry_foundation_height=8 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Foundation Type Unvented Crawlspace ResStockArguments geometry_foundation_type=UnventedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Foundation Type Vented Crawlspace ResStockArguments geometry_foundation_type=VentedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Garage 1 Car ResStockArguments geometry_garage_width=12 geometry_garage_depth=24 geometry_garage_position=Right -Geometry Garage 2 Car ResStockArguments geometry_garage_width=24 geometry_garage_depth=24 geometry_garage_position=Right -Geometry Garage 3 Car ResStockArguments geometry_garage_width=36 geometry_garage_depth=24 geometry_garage_position=Right -Geometry Garage None ResStockArguments geometry_garage_width=0 geometry_garage_depth=24 geometry_garage_position=Right -Geometry Heated Basement No -Geometry Heated Basement Yes -Geometry Number Units ACS bins 10 to 19 Units -Geometry Number Units ACS bins 20 to 49 Units -Geometry Number Units ACS bins 5 to 9 Units -Geometry Number Units ACS bins 50 or more -Geometry Number Units ACS bins <5 -Geometry Space Combination "Mobile Home, Ambient, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Slab, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Slab, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage" -Geometry Space Combination Void -Geometry Stories 1 ResStockArguments geometry_num_floors_above_grade=1 -Geometry Stories 10 ResStockArguments geometry_num_floors_above_grade=10 -Geometry Stories 11 ResStockArguments geometry_num_floors_above_grade=11 -Geometry Stories 12 ResStockArguments geometry_num_floors_above_grade=12 -Geometry Stories 13 ResStockArguments geometry_num_floors_above_grade=13 -Geometry Stories 14 ResStockArguments geometry_num_floors_above_grade=14 -Geometry Stories 15 ResStockArguments geometry_num_floors_above_grade=15 -Geometry Stories 2 ResStockArguments geometry_num_floors_above_grade=2 -Geometry Stories 20 ResStockArguments geometry_num_floors_above_grade=20 -Geometry Stories 21 ResStockArguments geometry_num_floors_above_grade=21 -Geometry Stories 3 ResStockArguments geometry_num_floors_above_grade=3 -Geometry Stories 35 ResStockArguments geometry_num_floors_above_grade=35 -Geometry Stories 4 ResStockArguments geometry_num_floors_above_grade=4 -Geometry Stories 5 ResStockArguments geometry_num_floors_above_grade=5 -Geometry Stories 6 ResStockArguments geometry_num_floors_above_grade=6 -Geometry Stories 7 ResStockArguments geometry_num_floors_above_grade=7 -Geometry Stories 8 ResStockArguments geometry_num_floors_above_grade=8 -Geometry Stories 9 ResStockArguments geometry_num_floors_above_grade=9 -Geometry Stories Low Rise 1 -Geometry Stories Low Rise 2 -Geometry Stories Low Rise 3 -Geometry Stories Low Rise 4+ -Geometry Story Bin 8+ -Geometry Story Bin <8 -Geometry Wall Exterior Finish "Aluminum, Light" ResStockArguments wall_siding_type=aluminum siding wall_color=light exterior_finish_r=0.6 -Geometry Wall Exterior Finish "Brick, Light" ResStockArguments wall_siding_type=brick veneer wall_color=light exterior_finish_r=0.7 -Geometry Wall Exterior Finish "Brick, Medium/Dark" ResStockArguments wall_siding_type=brick veneer wall_color=medium dark exterior_finish_r=0.7 -Geometry Wall Exterior Finish "Fiber-Cement, Light" ResStockArguments wall_siding_type=fiber cement siding wall_color=light exterior_finish_r=0.2 -Geometry Wall Exterior Finish "Shingle, Asbestos, Medium" ResStockArguments wall_siding_type=asbestos siding wall_color=medium exterior_finish_r=0.6 -Geometry Wall Exterior Finish "Shingle, Composition, Medium" ResStockArguments wall_siding_type=composite shingle siding wall_color=medium exterior_finish_r=0.6 -Geometry Wall Exterior Finish "Stucco, Light" ResStockArguments wall_siding_type=stucco wall_color=light exterior_finish_r=0.2 -Geometry Wall Exterior Finish "Stucco, Medium/Dark" ResStockArguments wall_siding_type=stucco wall_color=medium dark exterior_finish_r=0.2 -Geometry Wall Exterior Finish "Vinyl, Light" ResStockArguments wall_siding_type=vinyl siding wall_color=light exterior_finish_r=0.6 -Geometry Wall Exterior Finish "Wood, Medium/Dark" ResStockArguments wall_siding_type=wood siding wall_color=medium dark exterior_finish_r=1.4 -Geometry Wall Exterior Finish None ResStockArguments wall_siding_type=none wall_color=medium exterior_finish_r=0 -Geometry Wall Type Brick -Geometry Wall Type Concrete -Geometry Wall Type Steel Frame -Geometry Wall Type Void -Geometry Wall Type Wood Frame -Ground Thermal Conductivity 0.5 ResStockArguments site_ground_conductivity=0.5 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 0.8 ResStockArguments site_ground_conductivity=0.8 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 1.1 ResStockArguments site_ground_conductivity=1.1 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 1.4 ResStockArguments site_ground_conductivity=1.4 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 1.7 ResStockArguments site_ground_conductivity=1.7 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 2.0 ResStockArguments site_ground_conductivity=2.0 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 2.3 ResStockArguments site_ground_conductivity=2.3 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 2.6 ResStockArguments site_ground_conductivity=2.6 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -HVAC Cooling Autosizing Factor 40% Oversized ResStockArguments cooling_system_cooling_autosizing_factor=1.4 heat_pump_cooling_autosizing_factor=auto -HVAC Cooling Autosizing Factor None -HVAC Cooling Efficiency "AC, SEER 10" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=10 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 13" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 14" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=14 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 15" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=15 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 18" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=18 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 24.5" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=24.5 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 8" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=8 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "Room AC, EER 10.7" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=10.7 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "Room AC, EER 12.0" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=12 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "Room AC, EER 8.5" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=8.5 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "Room AC, EER 9.8" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=9.8 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency Ducted Heat Pump ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency Evaporative Cooler ResStockArguments cooling_system_type=evaporative cooler cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency Non-Ducted Heat Pump ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency None ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency Shared Cooling -HVAC Cooling Partial Space Conditioning 100% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=1 -HVAC Cooling Partial Space Conditioning 20% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.2 -HVAC Cooling Partial Space Conditioning 40% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.4 -HVAC Cooling Partial Space Conditioning 60% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.6 -HVAC Cooling Partial Space Conditioning 80% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.8 -HVAC Cooling Partial Space Conditioning <10% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.1 -HVAC Cooling Partial Space Conditioning None ResStockArguments cooling_system_fraction_cool_load_served=0 -HVAC Cooling Partial Space Conditioning Void -HVAC Cooling Type Central AC -HVAC Cooling Type Ducted Heat Pump -HVAC Cooling Type Evaporative or Swamp Cooler -HVAC Cooling Type Non-Ducted Heat Pump -HVAC Cooling Type None -HVAC Cooling Type Room AC -HVAC Detailed Performance Data Default ResStockArguments hvac_perf_data_capacity_type=auto hvac_perf_data_heating_outdoor_temperatures=auto hvac_perf_data_heating_min_speed_capacities=auto hvac_perf_data_heating_max_speed_capacities=auto hvac_perf_data_heating_min_speed_cops=auto hvac_perf_data_heating_max_speed_cops=auto hvac_perf_data_cooling_outdoor_temperatures=auto hvac_perf_data_cooling_min_speed_capacities=auto hvac_perf_data_cooling_max_speed_capacities=auto hvac_perf_data_cooling_min_speed_cops=auto hvac_perf_data_cooling_max_speed_cops=auto -HVAC Has Ducts No ResStockArguments hvac_blower_fan_watts_per_cfm=auto -HVAC Has Ducts Void -HVAC Has Ducts Yes ResStockArguments hvac_blower_fan_watts_per_cfm=auto -HVAC Has Shared System Cooling Only -HVAC Has Shared System Heating Only -HVAC Has Shared System Heating and Cooling -HVAC Has Shared System None -HVAC Has Shared System Void -HVAC Has Zonal Electric Heating No -HVAC Has Zonal Electric Heating Yes -HVAC Heating Autosizing Factor 40% Oversized ResStockArguments heating_system_heating_autosizing_factor=1.4 heating_system_2_heating_autosizing_factor=auto heat_pump_heating_autosizing_factor=auto heat_pump_backup_heating_autosizing_factor=auto -HVAC Heating Autosizing Factor None -HVAC Heating Efficiency "ASHP, SEER 10, 6.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=6.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 10.3, 7.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 11.5, 7.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=11.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 13, 7.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=13 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 13, 8.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=13 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 14, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 14.3, 8.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 15, 8.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 15, 9.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 16, 9.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 17, 8.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 18, 9.3 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 22, 10 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=10 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=22 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 14, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Electric Baseboard, 100% Efficiency" ResStockArguments heating_system_type=ElectricResistance heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Electric Boiler, 100% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Electric Furnace, 100% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Electric Wall Furnace, 100% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 72% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.72 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.76 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.8 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 82% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.82 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 85% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.85 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.9 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 95% AFUE, OAT Reset" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.95 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 96% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.96 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 60% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.6 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 68% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.68 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 72% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.72 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 76% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.76 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 80% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.8 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 85% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.85 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 90% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.9 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 92.5% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.925 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 96% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.96 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Wall/Floor Furnace, 60% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=0.6 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Wall/Floor Furnace, 68% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=0.68 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "GSHP, EER 16.6, COP 3.6" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=3.6 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=16.6 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=vertical geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "GSHP, EER 20.2, COP 4.2" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=4.2 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=20.2 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=vertical geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +Parameter Name Option Name Measure Dir Measure Arg 1 Measure Arg 2 ... +AHS Region "CBSA Atlanta-Sandy Springs-Roswell, GA" +AHS Region "CBSA Boston-Cambridge-Newton, MA-NH" +AHS Region "CBSA Chicago-Naperville-Elgin, IL-IN-WI" +AHS Region "CBSA Dallas-Fort Worth-Arlington, TX" +AHS Region "CBSA Detroit-Warren-Dearborn, MI" +AHS Region "CBSA Houston-The Woodlands-Sugar Land, TX" +AHS Region "CBSA Los Angeles-Long Beach-Anaheim, CA" +AHS Region "CBSA Miami-Fort Lauderdale-West Palm Beach, FL" +AHS Region "CBSA New York-Newark-Jersey City, NY-NJ-PA" +AHS Region "CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD" +AHS Region "CBSA Phoenix-Mesa-Scottsdale, AZ" +AHS Region "CBSA Riverside-San Bernardino-Ontario, CA" +AHS Region "CBSA San Francisco-Oakland-Hayward, CA" +AHS Region "CBSA Seattle-Tacoma-Bellevue, WA" +AHS Region "CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV" +AHS Region Non-CBSA East North Central +AHS Region Non-CBSA East South Central +AHS Region Non-CBSA Middle Atlantic +AHS Region Non-CBSA Mountain +AHS Region Non-CBSA New England +AHS Region Non-CBSA Pacific +AHS Region Non-CBSA South Atlantic +AHS Region Non-CBSA West North Central +AHS Region Non-CBSA West South Central +AIANNH Area No +AIANNH Area Yes +ASHRAE IECC Climate Zone 2004 1A ResStockArguments site_iecc_zone=1A site_type=auto +ASHRAE IECC Climate Zone 2004 2A ResStockArguments site_iecc_zone=2A site_type=auto +ASHRAE IECC Climate Zone 2004 2B ResStockArguments site_iecc_zone=2B site_type=auto +ASHRAE IECC Climate Zone 2004 3A ResStockArguments site_iecc_zone=3A site_type=auto +ASHRAE IECC Climate Zone 2004 3B ResStockArguments site_iecc_zone=3B site_type=auto +ASHRAE IECC Climate Zone 2004 3C ResStockArguments site_iecc_zone=3C site_type=auto +ASHRAE IECC Climate Zone 2004 4A ResStockArguments site_iecc_zone=4A site_type=auto +ASHRAE IECC Climate Zone 2004 4B ResStockArguments site_iecc_zone=4B site_type=auto +ASHRAE IECC Climate Zone 2004 4C ResStockArguments site_iecc_zone=4C site_type=auto +ASHRAE IECC Climate Zone 2004 5A ResStockArguments site_iecc_zone=5A site_type=auto +ASHRAE IECC Climate Zone 2004 5B ResStockArguments site_iecc_zone=5B site_type=auto +ASHRAE IECC Climate Zone 2004 6A ResStockArguments site_iecc_zone=6A site_type=auto +ASHRAE IECC Climate Zone 2004 6B ResStockArguments site_iecc_zone=6B site_type=auto +ASHRAE IECC Climate Zone 2004 7A ResStockArguments site_iecc_zone=7 site_type=auto +ASHRAE IECC Climate Zone 2004 7AK ResStockArguments site_iecc_zone=7 site_type=auto +ASHRAE IECC Climate Zone 2004 7B ResStockArguments site_iecc_zone=7 site_type=auto +ASHRAE IECC Climate Zone 2004 8AK ResStockArguments site_iecc_zone=8 site_type=auto +ASHRAE IECC Climate Zone 2004 - 2A Split "2A - FL, GA, AL, MS" +ASHRAE IECC Climate Zone 2004 - 2A Split "2A - TX, LA" +ASHRAE IECC Climate Zone 2004 - 2A Split 1A +ASHRAE IECC Climate Zone 2004 - 2A Split 2B +ASHRAE IECC Climate Zone 2004 - 2A Split 3A +ASHRAE IECC Climate Zone 2004 - 2A Split 3B +ASHRAE IECC Climate Zone 2004 - 2A Split 3C +ASHRAE IECC Climate Zone 2004 - 2A Split 4A +ASHRAE IECC Climate Zone 2004 - 2A Split 4B +ASHRAE IECC Climate Zone 2004 - 2A Split 4C +ASHRAE IECC Climate Zone 2004 - 2A Split 5A +ASHRAE IECC Climate Zone 2004 - 2A Split 5B +ASHRAE IECC Climate Zone 2004 - 2A Split 6A +ASHRAE IECC Climate Zone 2004 - 2A Split 6B +ASHRAE IECC Climate Zone 2004 - 2A Split 7A +ASHRAE IECC Climate Zone 2004 - 2A Split 7AK +ASHRAE IECC Climate Zone 2004 - 2A Split 7B +ASHRAE IECC Climate Zone 2004 - 2A Split 8AK +Area Median Income 0-30% +Area Median Income 100-120% +Area Median Income 120-150% +Area Median Income 150%+ +Area Median Income 30-60% +Area Median Income 60-80% +Area Median Income 80-100% +Area Median Income Not Available +Bathroom Spot Vent Hour Hour0 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=0 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour1 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=1 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour10 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=10 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour11 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=11 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour12 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=12 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour13 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=13 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour14 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=14 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour15 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=15 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour16 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=16 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour17 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=17 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour18 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=18 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour19 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=19 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour2 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=2 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour20 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=20 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour21 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=21 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour22 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=22 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour23 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=23 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour3 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=3 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour4 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=4 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour5 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=5 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour6 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=6 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour7 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=7 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour8 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=8 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour9 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=9 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Battery "20 kWh, 80% Round Trip Efficiency" ResStockArguments battery_present=true battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=0.8 +Battery "20 kWh, Garage" ResStockArguments battery_present=true battery_location=garage battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto +Battery "20 kWh, Outside" ResStockArguments battery_present=true battery_location=outside battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto +Battery 10 kWh ResStockArguments battery_present=true battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto +Battery None ResStockArguments battery_present=false battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto +Bedrooms 1 ResStockArguments geometry_unit_num_bedrooms=1 geometry_unit_num_bathrooms=auto +Bedrooms 2 ResStockArguments geometry_unit_num_bedrooms=2 geometry_unit_num_bathrooms=auto +Bedrooms 3 ResStockArguments geometry_unit_num_bedrooms=3 geometry_unit_num_bathrooms=auto +Bedrooms 4 ResStockArguments geometry_unit_num_bedrooms=4 geometry_unit_num_bathrooms=auto +Bedrooms 5 ResStockArguments geometry_unit_num_bedrooms=5 geometry_unit_num_bathrooms=auto +Building America Climate Zone Cold +Building America Climate Zone Hot-Dry +Building America Climate Zone Hot-Humid +Building America Climate Zone Marine +Building America Climate Zone Mixed-Dry +Building America Climate Zone Mixed-Humid +Building America Climate Zone Subarctic +Building America Climate Zone Very Cold +CEC Climate Zone 1 +CEC Climate Zone 10 +CEC Climate Zone 11 +CEC Climate Zone 12 +CEC Climate Zone 13 +CEC Climate Zone 14 +CEC Climate Zone 15 +CEC Climate Zone 16 +CEC Climate Zone 2 +CEC Climate Zone 3 +CEC Climate Zone 4 +CEC Climate Zone 5 +CEC Climate Zone 6 +CEC Climate Zone 7 +CEC Climate Zone 8 +CEC Climate Zone 9 +CEC Climate Zone None +Ceiling Fan "Premium Efficiency, 0.5F Offset" ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=140.8 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0.5 +Ceiling Fan "Standard Efficiency, 0.5F Offset" ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=70.4 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0.5 +Ceiling Fan "Standard Efficiency, No usage" ResStockArguments ceiling_fan_present=false ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=0 ceiling_fan_quantity=0 ceiling_fan_cooling_setpoint_temp_offset=0 +Ceiling Fan None ResStockArguments ceiling_fan_present=false ceiling_fan_label_energy_use=0 ceiling_fan_efficiency=0 ceiling_fan_quantity=0 ceiling_fan_cooling_setpoint_temp_offset=0 +Ceiling Fan Premium Efficiency ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=140.8 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0 +Ceiling Fan Standard Efficiency ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=70.4 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0 +Census Division East North Central +Census Division East South Central +Census Division Middle Atlantic +Census Division Mountain +Census Division New England +Census Division Pacific +Census Division South Atlantic +Census Division West North Central +Census Division West South Central +Census Division RECS East North Central +Census Division RECS East South Central +Census Division RECS Middle Atlantic +Census Division RECS Mountain North +Census Division RECS Mountain South +Census Division RECS New England +Census Division RECS Pacific +Census Division RECS South Atlantic +Census Division RECS West North Central +Census Division RECS West South Central +Census Region Midwest +Census Region Northeast +Census Region South +Census Region West +City "AK, Anchorage" ResStockArguments site_city=auto +City "AL, Auburn" ResStockArguments site_city=auto +City "AL, Birmingham" ResStockArguments site_city=auto +City "AL, Decatur" ResStockArguments site_city=auto +City "AL, Dothan" ResStockArguments site_city=auto +City "AL, Florence" ResStockArguments site_city=auto +City "AL, Gadsden" ResStockArguments site_city=auto +City "AL, Hoover" ResStockArguments site_city=auto +City "AL, Huntsville" ResStockArguments site_city=auto +City "AL, Madison" ResStockArguments site_city=auto +City "AL, Mobile" ResStockArguments site_city=auto +City "AL, Montgomery" ResStockArguments site_city=auto +City "AL, Phenix City" ResStockArguments site_city=auto +City "AL, Tuscaloosa" ResStockArguments site_city=auto +City "AR, Bentonville" ResStockArguments site_city=auto +City "AR, Conway" ResStockArguments site_city=auto +City "AR, Fayetteville" ResStockArguments site_city=auto +City "AR, Fort Smith" ResStockArguments site_city=auto +City "AR, Hot Springs" ResStockArguments site_city=auto +City "AR, Jonesboro" ResStockArguments site_city=auto +City "AR, Little Rock" ResStockArguments site_city=auto +City "AR, North Little Rock" ResStockArguments site_city=auto +City "AR, Pine Bluff" ResStockArguments site_city=auto +City "AR, Rogers" ResStockArguments site_city=auto +City "AR, Springdale" ResStockArguments site_city=auto +City "AZ, Apache Junction" ResStockArguments site_city=auto +City "AZ, Avondale" ResStockArguments site_city=auto +City "AZ, Buckeye" ResStockArguments site_city=auto +City "AZ, Bullhead City" ResStockArguments site_city=auto +City "AZ, Casa Grande" ResStockArguments site_city=auto +City "AZ, Casas Adobes" ResStockArguments site_city=auto +City "AZ, Catalina Foothills" ResStockArguments site_city=auto +City "AZ, Chandler" ResStockArguments site_city=auto +City "AZ, Flagstaff" ResStockArguments site_city=auto +City "AZ, Fortuna Foothills" ResStockArguments site_city=auto +City "AZ, Gilbert" ResStockArguments site_city=auto +City "AZ, Glendale" ResStockArguments site_city=auto +City "AZ, Goodyear" ResStockArguments site_city=auto +City "AZ, Green Valley" ResStockArguments site_city=auto +City "AZ, Lake Havasu City" ResStockArguments site_city=auto +City "AZ, Marana" ResStockArguments site_city=auto +City "AZ, Maricopa" ResStockArguments site_city=auto +City "AZ, Mesa" ResStockArguments site_city=auto +City "AZ, Oro Valley" ResStockArguments site_city=auto +City "AZ, Peoria" ResStockArguments site_city=auto +City "AZ, Phoenix" ResStockArguments site_city=auto +City "AZ, Prescott Valley" ResStockArguments site_city=auto +City "AZ, Prescott" ResStockArguments site_city=auto +City "AZ, San Tan Valley" ResStockArguments site_city=auto +City "AZ, Scottsdale" ResStockArguments site_city=auto +City "AZ, Sierra Vista" ResStockArguments site_city=auto +City "AZ, Sun City West" ResStockArguments site_city=auto +City "AZ, Sun City" ResStockArguments site_city=auto +City "AZ, Surprise" ResStockArguments site_city=auto +City "AZ, Tempe" ResStockArguments site_city=auto +City "AZ, Tucson" ResStockArguments site_city=auto +City "AZ, Yuma" ResStockArguments site_city=auto +City "CA, Alameda" ResStockArguments site_city=auto +City "CA, Alhambra" ResStockArguments site_city=auto +City "CA, Aliso Viejo" ResStockArguments site_city=auto +City "CA, Altadena" ResStockArguments site_city=auto +City "CA, Anaheim" ResStockArguments site_city=auto +City "CA, Antioch" ResStockArguments site_city=auto +City "CA, Apple Valley" ResStockArguments site_city=auto +City "CA, Arcadia" ResStockArguments site_city=auto +City "CA, Arden-Arcade" ResStockArguments site_city=auto +City "CA, Bakersfield" ResStockArguments site_city=auto +City "CA, Baldwin Park" ResStockArguments site_city=auto +City "CA, Bellflower" ResStockArguments site_city=auto +City "CA, Berkeley" ResStockArguments site_city=auto +City "CA, Beverly Hills" ResStockArguments site_city=auto +City "CA, Brea" ResStockArguments site_city=auto +City "CA, Brentwood" ResStockArguments site_city=auto +City "CA, Buena Park" ResStockArguments site_city=auto +City "CA, Burbank" ResStockArguments site_city=auto +City "CA, Camarillo" ResStockArguments site_city=auto +City "CA, Campbell" ResStockArguments site_city=auto +City "CA, Carlsbad" ResStockArguments site_city=auto +City "CA, Carmichael" ResStockArguments site_city=auto +City "CA, Carson" ResStockArguments site_city=auto +City "CA, Castro Valley" ResStockArguments site_city=auto +City "CA, Cathedral City" ResStockArguments site_city=auto +City "CA, Cerritos" ResStockArguments site_city=auto +City "CA, Chico" ResStockArguments site_city=auto +City "CA, Chino Hills" ResStockArguments site_city=auto +City "CA, Chino" ResStockArguments site_city=auto +City "CA, Chula Vista" ResStockArguments site_city=auto +City "CA, Citrus Heights" ResStockArguments site_city=auto +City "CA, Clovis" ResStockArguments site_city=auto +City "CA, Colton" ResStockArguments site_city=auto +City "CA, Compton" ResStockArguments site_city=auto +City "CA, Concord" ResStockArguments site_city=auto +City "CA, Corona" ResStockArguments site_city=auto +City "CA, Costa Mesa" ResStockArguments site_city=auto +City "CA, Covina" ResStockArguments site_city=auto +City "CA, Culver City" ResStockArguments site_city=auto +City "CA, Cupertino" ResStockArguments site_city=auto +City "CA, Cypress" ResStockArguments site_city=auto +City "CA, Daly City" ResStockArguments site_city=auto +City "CA, Dana Point" ResStockArguments site_city=auto +City "CA, Danville" ResStockArguments site_city=auto +City "CA, Davis" ResStockArguments site_city=auto +City "CA, Diamond Bar" ResStockArguments site_city=auto +City "CA, Downey" ResStockArguments site_city=auto +City "CA, Dublin" ResStockArguments site_city=auto +City "CA, East Los Angeles" ResStockArguments site_city=auto +City "CA, El Cajon" ResStockArguments site_city=auto +City "CA, El Dorado Hills" ResStockArguments site_city=auto +City "CA, El Monte" ResStockArguments site_city=auto +City "CA, Elk Grove" ResStockArguments site_city=auto +City "CA, Encinitas" ResStockArguments site_city=auto +City "CA, Escondido" ResStockArguments site_city=auto +City "CA, Fairfield" ResStockArguments site_city=auto +City "CA, Florence-Graham" ResStockArguments site_city=auto +City "CA, Florin" ResStockArguments site_city=auto +City "CA, Folsom" ResStockArguments site_city=auto +City "CA, Fontana" ResStockArguments site_city=auto +City "CA, Fountain Valley" ResStockArguments site_city=auto +City "CA, Fremont" ResStockArguments site_city=auto +City "CA, Fresno" ResStockArguments site_city=auto +City "CA, Fullerton" ResStockArguments site_city=auto +City "CA, Garden Grove" ResStockArguments site_city=auto +City "CA, Gardena" ResStockArguments site_city=auto +City "CA, Gilroy" ResStockArguments site_city=auto +City "CA, Glendale" ResStockArguments site_city=auto +City "CA, Glendora" ResStockArguments site_city=auto +City "CA, Hacienda Heights" ResStockArguments site_city=auto +City "CA, Hanford" ResStockArguments site_city=auto +City "CA, Hawthorne" ResStockArguments site_city=auto +City "CA, Hayward" ResStockArguments site_city=auto +City "CA, Hemet" ResStockArguments site_city=auto +City "CA, Hesperia" ResStockArguments site_city=auto +City "CA, Highland" ResStockArguments site_city=auto +City "CA, Huntington Beach" ResStockArguments site_city=auto +City "CA, Huntington Park" ResStockArguments site_city=auto +City "CA, Indio" ResStockArguments site_city=auto +City "CA, Inglewood" ResStockArguments site_city=auto +City "CA, Irvine" ResStockArguments site_city=auto +City "CA, La Habra" ResStockArguments site_city=auto +City "CA, La Mesa" ResStockArguments site_city=auto +City "CA, La Quinta" ResStockArguments site_city=auto +City "CA, Laguna Niguel" ResStockArguments site_city=auto +City "CA, Lake Elsinore" ResStockArguments site_city=auto +City "CA, Lake Forest" ResStockArguments site_city=auto +City "CA, Lakewood" ResStockArguments site_city=auto +City "CA, Lancaster" ResStockArguments site_city=auto +City "CA, Lincoln" ResStockArguments site_city=auto +City "CA, Livermore" ResStockArguments site_city=auto +City "CA, Lodi" ResStockArguments site_city=auto +City "CA, Long Beach" ResStockArguments site_city=auto +City "CA, Los Angeles" ResStockArguments site_city=auto +City "CA, Lynwood" ResStockArguments site_city=auto +City "CA, Madera" ResStockArguments site_city=auto +City "CA, Manhattan Beach" ResStockArguments site_city=auto +City "CA, Manteca" ResStockArguments site_city=auto +City "CA, Martinez" ResStockArguments site_city=auto +City "CA, Menifee" ResStockArguments site_city=auto +City "CA, Merced" ResStockArguments site_city=auto +City "CA, Milpitas" ResStockArguments site_city=auto +City "CA, Mission Viejo" ResStockArguments site_city=auto +City "CA, Modesto" ResStockArguments site_city=auto +City "CA, Montebello" ResStockArguments site_city=auto +City "CA, Monterey Park" ResStockArguments site_city=auto +City "CA, Moreno Valley" ResStockArguments site_city=auto +City "CA, Mountain View" ResStockArguments site_city=auto +City "CA, Murrieta" ResStockArguments site_city=auto +City "CA, Napa" ResStockArguments site_city=auto +City "CA, National City" ResStockArguments site_city=auto +City "CA, Newport Beach" ResStockArguments site_city=auto +City "CA, North Highlands" ResStockArguments site_city=auto +City "CA, Norwalk" ResStockArguments site_city=auto +City "CA, Novato" ResStockArguments site_city=auto +City "CA, Oakland" ResStockArguments site_city=auto +City "CA, Oceanside" ResStockArguments site_city=auto +City "CA, Ontario" ResStockArguments site_city=auto +City "CA, Orange" ResStockArguments site_city=auto +City "CA, Oxnard" ResStockArguments site_city=auto +City "CA, Palm Desert" ResStockArguments site_city=auto +City "CA, Palm Springs" ResStockArguments site_city=auto +City "CA, Palmdale" ResStockArguments site_city=auto +City "CA, Palo Alto" ResStockArguments site_city=auto +City "CA, Pasadena" ResStockArguments site_city=auto +City "CA, Perris" ResStockArguments site_city=auto +City "CA, Petaluma" ResStockArguments site_city=auto +City "CA, Pico Rivera" ResStockArguments site_city=auto +City "CA, Pittsburg" ResStockArguments site_city=auto +City "CA, Placentia" ResStockArguments site_city=auto +City "CA, Pleasanton" ResStockArguments site_city=auto +City "CA, Pomona" ResStockArguments site_city=auto +City "CA, Porterville" ResStockArguments site_city=auto +City "CA, Poway" ResStockArguments site_city=auto +City "CA, Rancho Cordova" ResStockArguments site_city=auto +City "CA, Rancho Cucamonga" ResStockArguments site_city=auto +City "CA, Rancho Palos Verdes" ResStockArguments site_city=auto +City "CA, Rancho Santa Margarita" ResStockArguments site_city=auto +City "CA, Redding" ResStockArguments site_city=auto +City "CA, Redlands" ResStockArguments site_city=auto +City "CA, Redondo Beach" ResStockArguments site_city=auto +City "CA, Redwood City" ResStockArguments site_city=auto +City "CA, Rialto" ResStockArguments site_city=auto +City "CA, Richmond" ResStockArguments site_city=auto +City "CA, Riverside" ResStockArguments site_city=auto +City "CA, Rocklin" ResStockArguments site_city=auto +City "CA, Rohnert Park" ResStockArguments site_city=auto +City "CA, Rosemead" ResStockArguments site_city=auto +City "CA, Roseville" ResStockArguments site_city=auto +City "CA, Rowland Heights" ResStockArguments site_city=auto +City "CA, Sacramento" ResStockArguments site_city=auto +City "CA, Salinas" ResStockArguments site_city=auto +City "CA, San Bernardino" ResStockArguments site_city=auto +City "CA, San Bruno" ResStockArguments site_city=auto +City "CA, San Buenaventura Ventura" ResStockArguments site_city=auto +City "CA, San Clemente" ResStockArguments site_city=auto +City "CA, San Diego" ResStockArguments site_city=auto +City "CA, San Francisco" ResStockArguments site_city=auto +City "CA, San Jose" ResStockArguments site_city=auto +City "CA, San Leandro" ResStockArguments site_city=auto +City "CA, San Luis Obispo" ResStockArguments site_city=auto +City "CA, San Marcos" ResStockArguments site_city=auto +City "CA, San Mateo" ResStockArguments site_city=auto +City "CA, San Rafael" ResStockArguments site_city=auto +City "CA, San Ramon" ResStockArguments site_city=auto +City "CA, Santa Ana" ResStockArguments site_city=auto +City "CA, Santa Barbara" ResStockArguments site_city=auto +City "CA, Santa Clara" ResStockArguments site_city=auto +City "CA, Santa Clarita" ResStockArguments site_city=auto +City "CA, Santa Cruz" ResStockArguments site_city=auto +City "CA, Santa Maria" ResStockArguments site_city=auto +City "CA, Santa Monica" ResStockArguments site_city=auto +City "CA, Santa Rosa" ResStockArguments site_city=auto +City "CA, Santee" ResStockArguments site_city=auto +City "CA, Simi Valley" ResStockArguments site_city=auto +City "CA, South Gate" ResStockArguments site_city=auto +City "CA, South Lake Tahoe" ResStockArguments site_city=auto +City "CA, South San Francisco" ResStockArguments site_city=auto +City "CA, South Whittier" ResStockArguments site_city=auto +City "CA, Stockton" ResStockArguments site_city=auto +City "CA, Sunnyvale" ResStockArguments site_city=auto +City "CA, Temecula" ResStockArguments site_city=auto +City "CA, Thousand Oaks" ResStockArguments site_city=auto +City "CA, Torrance" ResStockArguments site_city=auto +City "CA, Tracy" ResStockArguments site_city=auto +City "CA, Tulare" ResStockArguments site_city=auto +City "CA, Turlock" ResStockArguments site_city=auto +City "CA, Tustin" ResStockArguments site_city=auto +City "CA, Union City" ResStockArguments site_city=auto +City "CA, Upland" ResStockArguments site_city=auto +City "CA, Vacaville" ResStockArguments site_city=auto +City "CA, Vallejo" ResStockArguments site_city=auto +City "CA, Victorville" ResStockArguments site_city=auto +City "CA, Visalia" ResStockArguments site_city=auto +City "CA, Vista" ResStockArguments site_city=auto +City "CA, Walnut Creek" ResStockArguments site_city=auto +City "CA, West Covina" ResStockArguments site_city=auto +City "CA, West Hollywood" ResStockArguments site_city=auto +City "CA, West Sacramento" ResStockArguments site_city=auto +City "CA, Westminster" ResStockArguments site_city=auto +City "CA, Whittier" ResStockArguments site_city=auto +City "CA, Woodland" ResStockArguments site_city=auto +City "CA, Yorba Linda" ResStockArguments site_city=auto +City "CA, Yuba City" ResStockArguments site_city=auto +City "CA, Yucaipa" ResStockArguments site_city=auto +City "CO, Arvada" ResStockArguments site_city=auto +City "CO, Aurora" ResStockArguments site_city=auto +City "CO, Boulder" ResStockArguments site_city=auto +City "CO, Broomfield" ResStockArguments site_city=auto +City "CO, Castle Rock" ResStockArguments site_city=auto +City "CO, Centennial" ResStockArguments site_city=auto +City "CO, Colorado Springs" ResStockArguments site_city=auto +City "CO, Commerce City" ResStockArguments site_city=auto +City "CO, Denver" ResStockArguments site_city=auto +City "CO, Englewood" ResStockArguments site_city=auto +City "CO, Fort Collins" ResStockArguments site_city=auto +City "CO, Grand Junction" ResStockArguments site_city=auto +City "CO, Greeley" ResStockArguments site_city=auto +City "CO, Highlands Ranch" ResStockArguments site_city=auto +City "CO, Lakewood" ResStockArguments site_city=auto +City "CO, Littleton" ResStockArguments site_city=auto +City "CO, Longmont" ResStockArguments site_city=auto +City "CO, Loveland" ResStockArguments site_city=auto +City "CO, Parker" ResStockArguments site_city=auto +City "CO, Pueblo" ResStockArguments site_city=auto +City "CO, Thornton" ResStockArguments site_city=auto +City "CO, Westminster" ResStockArguments site_city=auto +City "CT, Bridgeport" ResStockArguments site_city=auto +City "CT, Bristol" ResStockArguments site_city=auto +City "CT, Danbury" ResStockArguments site_city=auto +City "CT, East Hartford" ResStockArguments site_city=auto +City "CT, Hartford" ResStockArguments site_city=auto +City "CT, Meriden" ResStockArguments site_city=auto +City "CT, Middletown" ResStockArguments site_city=auto +City "CT, Milford City Balance" ResStockArguments site_city=auto +City "CT, New Britain" ResStockArguments site_city=auto +City "CT, New Haven" ResStockArguments site_city=auto +City "CT, Norwalk" ResStockArguments site_city=auto +City "CT, Norwich" ResStockArguments site_city=auto +City "CT, Shelton" ResStockArguments site_city=auto +City "CT, Stamford" ResStockArguments site_city=auto +City "CT, Stratford" ResStockArguments site_city=auto +City "CT, Torrington" ResStockArguments site_city=auto +City "CT, Waterbury" ResStockArguments site_city=auto +City "CT, West Hartford" ResStockArguments site_city=auto +City "CT, West Haven" ResStockArguments site_city=auto +City "DC, Washington" ResStockArguments site_city=auto +City "DE, Dover" ResStockArguments site_city=auto +City "DE, Wilmington" ResStockArguments site_city=auto +City "FL, Alafaya" ResStockArguments site_city=auto +City "FL, Altamonte Springs" ResStockArguments site_city=auto +City "FL, Apopka" ResStockArguments site_city=auto +City "FL, Aventura" ResStockArguments site_city=auto +City "FL, Boca Raton" ResStockArguments site_city=auto +City "FL, Bonita Springs" ResStockArguments site_city=auto +City "FL, Boynton Beach" ResStockArguments site_city=auto +City "FL, Bradenton" ResStockArguments site_city=auto +City "FL, Brandon" ResStockArguments site_city=auto +City "FL, Cape Coral" ResStockArguments site_city=auto +City "FL, Carrollwood" ResStockArguments site_city=auto +City "FL, Clearwater" ResStockArguments site_city=auto +City "FL, Coconut Creek" ResStockArguments site_city=auto +City "FL, Coral Gables" ResStockArguments site_city=auto +City "FL, Coral Springs" ResStockArguments site_city=auto +City "FL, Country Club" ResStockArguments site_city=auto +City "FL, Dania Beach" ResStockArguments site_city=auto +City "FL, Davie" ResStockArguments site_city=auto +City "FL, Daytona Beach" ResStockArguments site_city=auto +City "FL, Deerfield Beach" ResStockArguments site_city=auto +City "FL, Delray Beach" ResStockArguments site_city=auto +City "FL, Deltona" ResStockArguments site_city=auto +City "FL, Doral" ResStockArguments site_city=auto +City "FL, Dunedin" ResStockArguments site_city=auto +City "FL, East Lake" ResStockArguments site_city=auto +City "FL, Estero" ResStockArguments site_city=auto +City "FL, Fort Lauderdale" ResStockArguments site_city=auto +City "FL, Fort Myers" ResStockArguments site_city=auto +City "FL, Fort Pierce" ResStockArguments site_city=auto +City "FL, Fountainebleau" ResStockArguments site_city=auto +City "FL, Four Corners" ResStockArguments site_city=auto +City "FL, Gainesville" ResStockArguments site_city=auto +City "FL, Greenacres" ResStockArguments site_city=auto +City "FL, Hallandale Beach" ResStockArguments site_city=auto +City "FL, Hialeah" ResStockArguments site_city=auto +City "FL, Hollywood" ResStockArguments site_city=auto +City "FL, Homestead" ResStockArguments site_city=auto +City "FL, Jacksonville" ResStockArguments site_city=auto +City "FL, Jupiter" ResStockArguments site_city=auto +City "FL, Kendale Lakes" ResStockArguments site_city=auto +City "FL, Kendall" ResStockArguments site_city=auto +City "FL, Kissimmee" ResStockArguments site_city=auto +City "FL, Lake Worth" ResStockArguments site_city=auto +City "FL, Lakeland" ResStockArguments site_city=auto +City "FL, Largo" ResStockArguments site_city=auto +City "FL, Lauderhill" ResStockArguments site_city=auto +City "FL, Lehigh Acres" ResStockArguments site_city=auto +City "FL, Marco Island" ResStockArguments site_city=auto +City "FL, Margate" ResStockArguments site_city=auto +City "FL, Melbourne" ResStockArguments site_city=auto +City "FL, Merritt Island" ResStockArguments site_city=auto +City "FL, Miami Beach" ResStockArguments site_city=auto +City "FL, Miami Gardens" ResStockArguments site_city=auto +City "FL, Miami" ResStockArguments site_city=auto +City "FL, Miramar" ResStockArguments site_city=auto +City "FL, Naples" ResStockArguments site_city=auto +City "FL, New Smyrna Beach" ResStockArguments site_city=auto +City "FL, North Fort Myers" ResStockArguments site_city=auto +City "FL, North Miami Beach" ResStockArguments site_city=auto +City "FL, North Miami" ResStockArguments site_city=auto +City "FL, North Port" ResStockArguments site_city=auto +City "FL, Oakland Park" ResStockArguments site_city=auto +City "FL, Ocala" ResStockArguments site_city=auto +City "FL, Orlando" ResStockArguments site_city=auto +City "FL, Ormond Beach" ResStockArguments site_city=auto +City "FL, Palm Bay" ResStockArguments site_city=auto +City "FL, Palm Beach Gardens" ResStockArguments site_city=auto +City "FL, Palm Coast" ResStockArguments site_city=auto +City "FL, Palm Harbor" ResStockArguments site_city=auto +City "FL, Panama City Beach" ResStockArguments site_city=auto +City "FL, Panama City" ResStockArguments site_city=auto +City "FL, Pembroke Pines" ResStockArguments site_city=auto +City "FL, Pensacola" ResStockArguments site_city=auto +City "FL, Pine Hills" ResStockArguments site_city=auto +City "FL, Pinellas Park" ResStockArguments site_city=auto +City "FL, Plantation" ResStockArguments site_city=auto +City "FL, Poinciana" ResStockArguments site_city=auto +City "FL, Pompano Beach" ResStockArguments site_city=auto +City "FL, Port Charlotte" ResStockArguments site_city=auto +City "FL, Port Orange" ResStockArguments site_city=auto +City "FL, Port St Lucie" ResStockArguments site_city=auto +City "FL, Riverview" ResStockArguments site_city=auto +City "FL, Riviera Beach" ResStockArguments site_city=auto +City "FL, Sanford" ResStockArguments site_city=auto +City "FL, Sarasota" ResStockArguments site_city=auto +City "FL, Spring Hill" ResStockArguments site_city=auto +City "FL, St Cloud" ResStockArguments site_city=auto +City "FL, St Petersburg" ResStockArguments site_city=auto +City "FL, Sun City Center" ResStockArguments site_city=auto +City "FL, Sunny Isles Beach" ResStockArguments site_city=auto +City "FL, Sunrise" ResStockArguments site_city=auto +City "FL, Tallahassee" ResStockArguments site_city=auto +City "FL, Tamarac" ResStockArguments site_city=auto +City "FL, Tamiami" ResStockArguments site_city=auto +City "FL, Tampa" ResStockArguments site_city=auto +City "FL, The Hammocks" ResStockArguments site_city=auto +City "FL, The Villages" ResStockArguments site_city=auto +City "FL, Titusville" ResStockArguments site_city=auto +City "FL, Town N Country" ResStockArguments site_city=auto +City "FL, University" ResStockArguments site_city=auto +City "FL, Venice" ResStockArguments site_city=auto +City "FL, Wellington" ResStockArguments site_city=auto +City "FL, Wesley Chapel" ResStockArguments site_city=auto +City "FL, West Palm Beach" ResStockArguments site_city=auto +City "FL, Weston" ResStockArguments site_city=auto +City "FL, Winter Haven" ResStockArguments site_city=auto +City "GA, Albany" ResStockArguments site_city=auto +City "GA, Alpharetta" ResStockArguments site_city=auto +City "GA, Athens-Clarke County Unified Government Balance" ResStockArguments site_city=auto +City "GA, Atlanta" ResStockArguments site_city=auto +City "GA, Augusta-Richmond County Consolidated Government Balance" ResStockArguments site_city=auto +City "GA, Columbus" ResStockArguments site_city=auto +City "GA, Dunwoody" ResStockArguments site_city=auto +City "GA, East Point" ResStockArguments site_city=auto +City "GA, Hinesville" ResStockArguments site_city=auto +City "GA, Johns Creek" ResStockArguments site_city=auto +City "GA, Mableton" ResStockArguments site_city=auto +City "GA, Macon" ResStockArguments site_city=auto +City "GA, Marietta" ResStockArguments site_city=auto +City "GA, Newnan" ResStockArguments site_city=auto +City "GA, North Atlanta" ResStockArguments site_city=auto +City "GA, Rome" ResStockArguments site_city=auto +City "GA, Roswell" ResStockArguments site_city=auto +City "GA, Sandy Springs" ResStockArguments site_city=auto +City "GA, Savannah" ResStockArguments site_city=auto +City "GA, Smyrna" ResStockArguments site_city=auto +City "GA, Valdosta" ResStockArguments site_city=auto +City "GA, Warner Robins" ResStockArguments site_city=auto +City "HI, East Honolulu" ResStockArguments site_city=auto +City "HI, Hilo" ResStockArguments site_city=auto +City "HI, Kailua" ResStockArguments site_city=auto +City "HI, Urban Honolulu" ResStockArguments site_city=auto +City "IA, Ames" ResStockArguments site_city=auto +City "IA, Ankeny" ResStockArguments site_city=auto +City "IA, Cedar Falls" ResStockArguments site_city=auto +City "IA, Cedar Rapids" ResStockArguments site_city=auto +City "IA, Council Bluffs" ResStockArguments site_city=auto +City "IA, Davenport" ResStockArguments site_city=auto +City "IA, Des Moines" ResStockArguments site_city=auto +City "IA, Dubuque" ResStockArguments site_city=auto +City "IA, Iowa City" ResStockArguments site_city=auto +City "IA, Marion" ResStockArguments site_city=auto +City "IA, Sioux City" ResStockArguments site_city=auto +City "IA, Urbandale" ResStockArguments site_city=auto +City "IA, Waterloo" ResStockArguments site_city=auto +City "IA, West Des Moines" ResStockArguments site_city=auto +City "ID, Boise City" ResStockArguments site_city=auto +City "ID, Caldwell" ResStockArguments site_city=auto +City "ID, Coeur Dalene" ResStockArguments site_city=auto +City "ID, Idaho Falls" ResStockArguments site_city=auto +City "ID, Meridian" ResStockArguments site_city=auto +City "ID, Nampa" ResStockArguments site_city=auto +City "ID, Pocatello" ResStockArguments site_city=auto +City "ID, Twin Falls" ResStockArguments site_city=auto +City "IL, Arlington Heights" ResStockArguments site_city=auto +City "IL, Aurora" ResStockArguments site_city=auto +City "IL, Belleville" ResStockArguments site_city=auto +City "IL, Berwyn" ResStockArguments site_city=auto +City "IL, Bloomington" ResStockArguments site_city=auto +City "IL, Bolingbrook" ResStockArguments site_city=auto +City "IL, Buffalo Grove" ResStockArguments site_city=auto +City "IL, Calumet City" ResStockArguments site_city=auto +City "IL, Carol Stream" ResStockArguments site_city=auto +City "IL, Champaign" ResStockArguments site_city=auto +City "IL, Chicago" ResStockArguments site_city=auto +City "IL, Cicero" ResStockArguments site_city=auto +City "IL, Crystal Lake" ResStockArguments site_city=auto +City "IL, Decatur" ResStockArguments site_city=auto +City "IL, Dekalb" ResStockArguments site_city=auto +City "IL, Des Plaines" ResStockArguments site_city=auto +City "IL, Downers Grove" ResStockArguments site_city=auto +City "IL, Elgin" ResStockArguments site_city=auto +City "IL, Elmhurst" ResStockArguments site_city=auto +City "IL, Evanston" ResStockArguments site_city=auto +City "IL, Glenview" ResStockArguments site_city=auto +City "IL, Hoffman Estates" ResStockArguments site_city=auto +City "IL, Joliet" ResStockArguments site_city=auto +City "IL, Lombard" ResStockArguments site_city=auto +City "IL, Moline" ResStockArguments site_city=auto +City "IL, Mount Prospect" ResStockArguments site_city=auto +City "IL, Naperville" ResStockArguments site_city=auto +City "IL, Normal" ResStockArguments site_city=auto +City "IL, Oak Lawn" ResStockArguments site_city=auto +City "IL, Oak Park" ResStockArguments site_city=auto +City "IL, Orland Park" ResStockArguments site_city=auto +City "IL, Palatine" ResStockArguments site_city=auto +City "IL, Peoria" ResStockArguments site_city=auto +City "IL, Quincy" ResStockArguments site_city=auto +City "IL, Rock Island" ResStockArguments site_city=auto +City "IL, Rockford" ResStockArguments site_city=auto +City "IL, Schaumburg" ResStockArguments site_city=auto +City "IL, Skokie" ResStockArguments site_city=auto +City "IL, Springfield" ResStockArguments site_city=auto +City "IL, Tinley Park" ResStockArguments site_city=auto +City "IL, Urbana" ResStockArguments site_city=auto +City "IL, Waukegan" ResStockArguments site_city=auto +City "IL, Wheaton" ResStockArguments site_city=auto +City "IL, Wheeling" ResStockArguments site_city=auto +City "IN, Anderson" ResStockArguments site_city=auto +City "IN, Bloomington" ResStockArguments site_city=auto +City "IN, Carmel" ResStockArguments site_city=auto +City "IN, Columbus" ResStockArguments site_city=auto +City "IN, Elkhart" ResStockArguments site_city=auto +City "IN, Evansville" ResStockArguments site_city=auto +City "IN, Fishers" ResStockArguments site_city=auto +City "IN, Fort Wayne" ResStockArguments site_city=auto +City "IN, Gary" ResStockArguments site_city=auto +City "IN, Greenwood" ResStockArguments site_city=auto +City "IN, Hammond" ResStockArguments site_city=auto +City "IN, Indianapolis City Balance" ResStockArguments site_city=auto +City "IN, Jeffersonville" ResStockArguments site_city=auto +City "IN, Kokomo" ResStockArguments site_city=auto +City "IN, Lafayette" ResStockArguments site_city=auto +City "IN, Lawrence" ResStockArguments site_city=auto +City "IN, Mishawaka" ResStockArguments site_city=auto +City "IN, Muncie" ResStockArguments site_city=auto +City "IN, New Albany" ResStockArguments site_city=auto +City "IN, Noblesville" ResStockArguments site_city=auto +City "IN, Portage" ResStockArguments site_city=auto +City "IN, Richmond" ResStockArguments site_city=auto +City "IN, South Bend" ResStockArguments site_city=auto +City "IN, Terre Haute" ResStockArguments site_city=auto +City "KS, Hutchinson" ResStockArguments site_city=auto +City "KS, Kansas City" ResStockArguments site_city=auto +City "KS, Lawrence" ResStockArguments site_city=auto +City "KS, Lenexa" ResStockArguments site_city=auto +City "KS, Manhattan" ResStockArguments site_city=auto +City "KS, Olathe" ResStockArguments site_city=auto +City "KS, Overland Park" ResStockArguments site_city=auto +City "KS, Salina" ResStockArguments site_city=auto +City "KS, Shawnee" ResStockArguments site_city=auto +City "KS, Topeka" ResStockArguments site_city=auto +City "KS, Wichita" ResStockArguments site_city=auto +City "KY, Bowling Green" ResStockArguments site_city=auto +City "KY, Covington" ResStockArguments site_city=auto +City "KY, Lexington-Fayette" ResStockArguments site_city=auto +City "KY, Louisville Jefferson County Metro Government Balance" ResStockArguments site_city=auto +City "KY, Owensboro" ResStockArguments site_city=auto +City "LA, Alexandria" ResStockArguments site_city=auto +City "LA, Baton Rouge" ResStockArguments site_city=auto +City "LA, Bossier City" ResStockArguments site_city=auto +City "LA, Kenner" ResStockArguments site_city=auto +City "LA, Lafayette" ResStockArguments site_city=auto +City "LA, Lake Charles" ResStockArguments site_city=auto +City "LA, Metairie" ResStockArguments site_city=auto +City "LA, Monroe" ResStockArguments site_city=auto +City "LA, New Orleans" ResStockArguments site_city=auto +City "LA, Shreveport" ResStockArguments site_city=auto +City "MA, Arlington" ResStockArguments site_city=auto +City "MA, Attleboro" ResStockArguments site_city=auto +City "MA, Barnstable Town" ResStockArguments site_city=auto +City "MA, Beverly" ResStockArguments site_city=auto +City "MA, Boston" ResStockArguments site_city=auto +City "MA, Brockton" ResStockArguments site_city=auto +City "MA, Brookline" ResStockArguments site_city=auto +City "MA, Cambridge" ResStockArguments site_city=auto +City "MA, Chicopee" ResStockArguments site_city=auto +City "MA, Everett" ResStockArguments site_city=auto +City "MA, Fall River" ResStockArguments site_city=auto +City "MA, Fitchburg" ResStockArguments site_city=auto +City "MA, Framingham" ResStockArguments site_city=auto +City "MA, Haverhill" ResStockArguments site_city=auto +City "MA, Holyoke" ResStockArguments site_city=auto +City "MA, Lawrence" ResStockArguments site_city=auto +City "MA, Leominster" ResStockArguments site_city=auto +City "MA, Lowell" ResStockArguments site_city=auto +City "MA, Lynn" ResStockArguments site_city=auto +City "MA, Malden" ResStockArguments site_city=auto +City "MA, Marlborough" ResStockArguments site_city=auto +City "MA, Medford" ResStockArguments site_city=auto +City "MA, Methuen Town" ResStockArguments site_city=auto +City "MA, New Bedford" ResStockArguments site_city=auto +City "MA, Newton" ResStockArguments site_city=auto +City "MA, Peabody" ResStockArguments site_city=auto +City "MA, Pittsfield" ResStockArguments site_city=auto +City "MA, Quincy" ResStockArguments site_city=auto +City "MA, Revere" ResStockArguments site_city=auto +City "MA, Salem" ResStockArguments site_city=auto +City "MA, Somerville" ResStockArguments site_city=auto +City "MA, Springfield" ResStockArguments site_city=auto +City "MA, Taunton" ResStockArguments site_city=auto +City "MA, Waltham" ResStockArguments site_city=auto +City "MA, Watertown Town" ResStockArguments site_city=auto +City "MA, Westfield" ResStockArguments site_city=auto +City "MA, Weymouth Town" ResStockArguments site_city=auto +City "MA, Woburn" ResStockArguments site_city=auto +City "MA, Worcester" ResStockArguments site_city=auto +City "MD, Annapolis" ResStockArguments site_city=auto +City "MD, Aspen Hill" ResStockArguments site_city=auto +City "MD, Baltimore" ResStockArguments site_city=auto +City "MD, Bel Air South" ResStockArguments site_city=auto +City "MD, Bethesda" ResStockArguments site_city=auto +City "MD, Bowie" ResStockArguments site_city=auto +City "MD, Catonsville" ResStockArguments site_city=auto +City "MD, Columbia" ResStockArguments site_city=auto +City "MD, Dundalk" ResStockArguments site_city=auto +City "MD, Ellicott City" ResStockArguments site_city=auto +City "MD, Essex" ResStockArguments site_city=auto +City "MD, Frederick" ResStockArguments site_city=auto +City "MD, Gaithersburg" ResStockArguments site_city=auto +City "MD, Germantown" ResStockArguments site_city=auto +City "MD, Glen Burnie" ResStockArguments site_city=auto +City "MD, Hagerstown" ResStockArguments site_city=auto +City "MD, North Bethesda" ResStockArguments site_city=auto +City "MD, Ocean City" ResStockArguments site_city=auto +City "MD, Odenton" ResStockArguments site_city=auto +City "MD, Potomac" ResStockArguments site_city=auto +City "MD, Rockville" ResStockArguments site_city=auto +City "MD, Severn" ResStockArguments site_city=auto +City "MD, Silver Spring" ResStockArguments site_city=auto +City "MD, Towson" ResStockArguments site_city=auto +City "MD, Waldorf" ResStockArguments site_city=auto +City "MD, Wheaton" ResStockArguments site_city=auto +City "MD, Woodlawn" ResStockArguments site_city=auto +City "ME, Bangor" ResStockArguments site_city=auto +City "ME, Lewiston" ResStockArguments site_city=auto +City "ME, Portland" ResStockArguments site_city=auto +City "MI, Ann Arbor" ResStockArguments site_city=auto +City "MI, Battle Creek" ResStockArguments site_city=auto +City "MI, Bay City" ResStockArguments site_city=auto +City "MI, Dearborn Heights" ResStockArguments site_city=auto +City "MI, Dearborn" ResStockArguments site_city=auto +City "MI, Detroit" ResStockArguments site_city=auto +City "MI, Farmington Hills" ResStockArguments site_city=auto +City "MI, Flint" ResStockArguments site_city=auto +City "MI, Grand Rapids" ResStockArguments site_city=auto +City "MI, Jackson" ResStockArguments site_city=auto +City "MI, Kalamazoo" ResStockArguments site_city=auto +City "MI, Kentwood" ResStockArguments site_city=auto +City "MI, Lansing" ResStockArguments site_city=auto +City "MI, Lincoln Park" ResStockArguments site_city=auto +City "MI, Livonia" ResStockArguments site_city=auto +City "MI, Midland" ResStockArguments site_city=auto +City "MI, Muskegon" ResStockArguments site_city=auto +City "MI, Novi" ResStockArguments site_city=auto +City "MI, Pontiac" ResStockArguments site_city=auto +City "MI, Portage" ResStockArguments site_city=auto +City "MI, Rochester Hills" ResStockArguments site_city=auto +City "MI, Roseville" ResStockArguments site_city=auto +City "MI, Royal Oak" ResStockArguments site_city=auto +City "MI, Saginaw" ResStockArguments site_city=auto +City "MI, Southfield" ResStockArguments site_city=auto +City "MI, St Clair Shores" ResStockArguments site_city=auto +City "MI, Sterling Heights" ResStockArguments site_city=auto +City "MI, Taylor" ResStockArguments site_city=auto +City "MI, Troy" ResStockArguments site_city=auto +City "MI, Warren" ResStockArguments site_city=auto +City "MI, Westland" ResStockArguments site_city=auto +City "MI, Wyoming" ResStockArguments site_city=auto +City "MN, Apple Valley" ResStockArguments site_city=auto +City "MN, Blaine" ResStockArguments site_city=auto +City "MN, Bloomington" ResStockArguments site_city=auto +City "MN, Brooklyn Park" ResStockArguments site_city=auto +City "MN, Burnsville" ResStockArguments site_city=auto +City "MN, Coon Rapids" ResStockArguments site_city=auto +City "MN, Duluth" ResStockArguments site_city=auto +City "MN, Eagan" ResStockArguments site_city=auto +City "MN, Eden Prairie" ResStockArguments site_city=auto +City "MN, Edina" ResStockArguments site_city=auto +City "MN, Lakeville" ResStockArguments site_city=auto +City "MN, Mankato" ResStockArguments site_city=auto +City "MN, Maple Grove" ResStockArguments site_city=auto +City "MN, Maplewood" ResStockArguments site_city=auto +City "MN, Minneapolis" ResStockArguments site_city=auto +City "MN, Minnetonka" ResStockArguments site_city=auto +City "MN, Moorhead" ResStockArguments site_city=auto +City "MN, Plymouth" ResStockArguments site_city=auto +City "MN, Richfield" ResStockArguments site_city=auto +City "MN, Rochester" ResStockArguments site_city=auto +City "MN, Roseville" ResStockArguments site_city=auto +City "MN, St Cloud" ResStockArguments site_city=auto +City "MN, St Louis Park" ResStockArguments site_city=auto +City "MN, St Paul" ResStockArguments site_city=auto +City "MN, Woodbury" ResStockArguments site_city=auto +City "MO, Blue Springs" ResStockArguments site_city=auto +City "MO, Cape Girardeau" ResStockArguments site_city=auto +City "MO, Chesterfield" ResStockArguments site_city=auto +City "MO, Columbia" ResStockArguments site_city=auto +City "MO, Florissant" ResStockArguments site_city=auto +City "MO, Independence" ResStockArguments site_city=auto +City "MO, Jefferson City" ResStockArguments site_city=auto +City "MO, Joplin" ResStockArguments site_city=auto +City "MO, Kansas City" ResStockArguments site_city=auto +City "MO, Lees Summit" ResStockArguments site_city=auto +City "MO, Ofallon" ResStockArguments site_city=auto +City "MO, Springfield" ResStockArguments site_city=auto +City "MO, St Charles" ResStockArguments site_city=auto +City "MO, St Joseph" ResStockArguments site_city=auto +City "MO, St Louis" ResStockArguments site_city=auto +City "MO, St Peters" ResStockArguments site_city=auto +City "MO, University City" ResStockArguments site_city=auto +City "MS, Biloxi" ResStockArguments site_city=auto +City "MS, Gulfport" ResStockArguments site_city=auto +City "MS, Hattiesburg" ResStockArguments site_city=auto +City "MS, Jackson" ResStockArguments site_city=auto +City "MS, Meridian" ResStockArguments site_city=auto +City "MS, Southaven" ResStockArguments site_city=auto +City "MS, Tupelo" ResStockArguments site_city=auto +City "MT, Billings" ResStockArguments site_city=auto +City "MT, Bozeman" ResStockArguments site_city=auto +City "MT, Butte-Silver Bow Balance" ResStockArguments site_city=auto +City "MT, Great Falls" ResStockArguments site_city=auto +City "MT, Missoula" ResStockArguments site_city=auto +City "NC, Asheville" ResStockArguments site_city=auto +City "NC, Burlington" ResStockArguments site_city=auto +City "NC, Cary" ResStockArguments site_city=auto +City "NC, Chapel Hill" ResStockArguments site_city=auto +City "NC, Charlotte" ResStockArguments site_city=auto +City "NC, Concord" ResStockArguments site_city=auto +City "NC, Durham" ResStockArguments site_city=auto +City "NC, Fayetteville" ResStockArguments site_city=auto +City "NC, Gastonia" ResStockArguments site_city=auto +City "NC, Goldsboro" ResStockArguments site_city=auto +City "NC, Greensboro" ResStockArguments site_city=auto +City "NC, Greenville" ResStockArguments site_city=auto +City "NC, Hickory" ResStockArguments site_city=auto +City "NC, High Point" ResStockArguments site_city=auto +City "NC, Huntersville" ResStockArguments site_city=auto +City "NC, Jacksonville" ResStockArguments site_city=auto +City "NC, Kannapolis" ResStockArguments site_city=auto +City "NC, Raleigh" ResStockArguments site_city=auto +City "NC, Rocky Mount" ResStockArguments site_city=auto +City "NC, Wilmington" ResStockArguments site_city=auto +City "NC, Wilson" ResStockArguments site_city=auto +City "NC, Winston-Salem" ResStockArguments site_city=auto +City "ND, Bismarck" ResStockArguments site_city=auto +City "ND, Fargo" ResStockArguments site_city=auto +City "ND, Grand Forks" ResStockArguments site_city=auto +City "ND, Minot" ResStockArguments site_city=auto +City "NE, Bellevue" ResStockArguments site_city=auto +City "NE, Grand Island" ResStockArguments site_city=auto +City "NE, Lincoln" ResStockArguments site_city=auto +City "NE, Omaha" ResStockArguments site_city=auto +City "NH, Concord" ResStockArguments site_city=auto +City "NH, Manchester" ResStockArguments site_city=auto +City "NH, Nashua" ResStockArguments site_city=auto +City "NJ, Atlantic City" ResStockArguments site_city=auto +City "NJ, Bayonne" ResStockArguments site_city=auto +City "NJ, Camden" ResStockArguments site_city=auto +City "NJ, Clifton" ResStockArguments site_city=auto +City "NJ, East Orange" ResStockArguments site_city=auto +City "NJ, Elizabeth" ResStockArguments site_city=auto +City "NJ, Fort Lee" ResStockArguments site_city=auto +City "NJ, Hackensack" ResStockArguments site_city=auto +City "NJ, Hoboken" ResStockArguments site_city=auto +City "NJ, Jersey City" ResStockArguments site_city=auto +City "NJ, Linden" ResStockArguments site_city=auto +City "NJ, New Brunswick" ResStockArguments site_city=auto +City "NJ, Newark" ResStockArguments site_city=auto +City "NJ, Ocean City" ResStockArguments site_city=auto +City "NJ, Passaic" ResStockArguments site_city=auto +City "NJ, Paterson" ResStockArguments site_city=auto +City "NJ, Perth Amboy" ResStockArguments site_city=auto +City "NJ, Plainfield" ResStockArguments site_city=auto +City "NJ, Sayreville" ResStockArguments site_city=auto +City "NJ, Toms River" ResStockArguments site_city=auto +City "NJ, Trenton" ResStockArguments site_city=auto +City "NJ, Union City" ResStockArguments site_city=auto +City "NJ, Vineland" ResStockArguments site_city=auto +City "NJ, West New York" ResStockArguments site_city=auto +City "NM, Albuquerque" ResStockArguments site_city=auto +City "NM, Clovis" ResStockArguments site_city=auto +City "NM, Farmington" ResStockArguments site_city=auto +City "NM, Las Cruces" ResStockArguments site_city=auto +City "NM, Rio Rancho" ResStockArguments site_city=auto +City "NM, Roswell" ResStockArguments site_city=auto +City "NM, Santa Fe" ResStockArguments site_city=auto +City "NM, South Valley" ResStockArguments site_city=auto +City "NV, Carson City" ResStockArguments site_city=auto +City "NV, Enterprise" ResStockArguments site_city=auto +City "NV, Henderson" ResStockArguments site_city=auto +City "NV, Las Vegas" ResStockArguments site_city=auto +City "NV, North Las Vegas" ResStockArguments site_city=auto +City "NV, Pahrump" ResStockArguments site_city=auto +City "NV, Paradise" ResStockArguments site_city=auto +City "NV, Reno" ResStockArguments site_city=auto +City "NV, Sparks" ResStockArguments site_city=auto +City "NV, Spring Valley" ResStockArguments site_city=auto +City "NV, Sunrise Manor" ResStockArguments site_city=auto +City "NV, Whitney" ResStockArguments site_city=auto +City "NY, Albany" ResStockArguments site_city=auto +City "NY, Binghamton" ResStockArguments site_city=auto +City "NY, Brighton" ResStockArguments site_city=auto +City "NY, Buffalo" ResStockArguments site_city=auto +City "NY, Cheektowaga" ResStockArguments site_city=auto +City "NY, Coram" ResStockArguments site_city=auto +City "NY, Hempstead" ResStockArguments site_city=auto +City "NY, Irondequoit" ResStockArguments site_city=auto +City "NY, Levittown" ResStockArguments site_city=auto +City "NY, Long Beach" ResStockArguments site_city=auto +City "NY, Mount Vernon" ResStockArguments site_city=auto +City "NY, New Rochelle" ResStockArguments site_city=auto +City "NY, New York" ResStockArguments site_city=auto +City "NY, Niagara Falls" ResStockArguments site_city=auto +City "NY, Rochester" ResStockArguments site_city=auto +City "NY, Rome" ResStockArguments site_city=auto +City "NY, Schenectady" ResStockArguments site_city=auto +City "NY, Syracuse" ResStockArguments site_city=auto +City "NY, Tonawanda" ResStockArguments site_city=auto +City "NY, Troy" ResStockArguments site_city=auto +City "NY, Utica" ResStockArguments site_city=auto +City "NY, West Seneca" ResStockArguments site_city=auto +City "NY, White Plains" ResStockArguments site_city=auto +City "NY, Yonkers" ResStockArguments site_city=auto +City "OH, Akron" ResStockArguments site_city=auto +City "OH, Beavercreek" ResStockArguments site_city=auto +City "OH, Boardman" ResStockArguments site_city=auto +City "OH, Canton" ResStockArguments site_city=auto +City "OH, Cincinnati" ResStockArguments site_city=auto +City "OH, Cleveland Heights" ResStockArguments site_city=auto +City "OH, Cleveland" ResStockArguments site_city=auto +City "OH, Columbus" ResStockArguments site_city=auto +City "OH, Cuyahoga Falls" ResStockArguments site_city=auto +City "OH, Dayton" ResStockArguments site_city=auto +City "OH, Delaware" ResStockArguments site_city=auto +City "OH, Dublin" ResStockArguments site_city=auto +City "OH, Elyria" ResStockArguments site_city=auto +City "OH, Euclid" ResStockArguments site_city=auto +City "OH, Fairborn" ResStockArguments site_city=auto +City "OH, Fairfield" ResStockArguments site_city=auto +City "OH, Findlay" ResStockArguments site_city=auto +City "OH, Grove City" ResStockArguments site_city=auto +City "OH, Hamilton" ResStockArguments site_city=auto +City "OH, Huber Heights" ResStockArguments site_city=auto +City "OH, Kettering" ResStockArguments site_city=auto +City "OH, Lakewood" ResStockArguments site_city=auto +City "OH, Lancaster" ResStockArguments site_city=auto +City "OH, Lima" ResStockArguments site_city=auto +City "OH, Lorain" ResStockArguments site_city=auto +City "OH, Mansfield" ResStockArguments site_city=auto +City "OH, Marion" ResStockArguments site_city=auto +City "OH, Mentor" ResStockArguments site_city=auto +City "OH, Middletown" ResStockArguments site_city=auto +City "OH, Newark" ResStockArguments site_city=auto +City "OH, Parma" ResStockArguments site_city=auto +City "OH, Springfield" ResStockArguments site_city=auto +City "OH, Stow" ResStockArguments site_city=auto +City "OH, Strongsville" ResStockArguments site_city=auto +City "OH, Toledo" ResStockArguments site_city=auto +City "OH, Warren" ResStockArguments site_city=auto +City "OH, Youngstown" ResStockArguments site_city=auto +City "OK, Bartlesville" ResStockArguments site_city=auto +City "OK, Broken Arrow" ResStockArguments site_city=auto +City "OK, Edmond" ResStockArguments site_city=auto +City "OK, Enid" ResStockArguments site_city=auto +City "OK, Lawton" ResStockArguments site_city=auto +City "OK, Midwest City" ResStockArguments site_city=auto +City "OK, Moore" ResStockArguments site_city=auto +City "OK, Muskogee" ResStockArguments site_city=auto +City "OK, Norman" ResStockArguments site_city=auto +City "OK, Oklahoma City" ResStockArguments site_city=auto +City "OK, Stillwater" ResStockArguments site_city=auto +City "OK, Tulsa" ResStockArguments site_city=auto +City "OR, Albany" ResStockArguments site_city=auto +City "OR, Aloha" ResStockArguments site_city=auto +City "OR, Beaverton" ResStockArguments site_city=auto +City "OR, Bend" ResStockArguments site_city=auto +City "OR, Corvallis" ResStockArguments site_city=auto +City "OR, Eugene" ResStockArguments site_city=auto +City "OR, Grants Pass" ResStockArguments site_city=auto +City "OR, Gresham" ResStockArguments site_city=auto +City "OR, Hillsboro" ResStockArguments site_city=auto +City "OR, Lake Oswego" ResStockArguments site_city=auto +City "OR, Medford" ResStockArguments site_city=auto +City "OR, Portland" ResStockArguments site_city=auto +City "OR, Salem" ResStockArguments site_city=auto +City "OR, Springfield" ResStockArguments site_city=auto +City "OR, Tigard" ResStockArguments site_city=auto +City "PA, Allentown" ResStockArguments site_city=auto +City "PA, Altoona" ResStockArguments site_city=auto +City "PA, Bethlehem" ResStockArguments site_city=auto +City "PA, Erie" ResStockArguments site_city=auto +City "PA, Harrisburg" ResStockArguments site_city=auto +City "PA, Lancaster" ResStockArguments site_city=auto +City "PA, Levittown" ResStockArguments site_city=auto +City "PA, Philadelphia" ResStockArguments site_city=auto +City "PA, Pittsburgh" ResStockArguments site_city=auto +City "PA, Reading" ResStockArguments site_city=auto +City "PA, Scranton" ResStockArguments site_city=auto +City "PA, Wilkes-Barre" ResStockArguments site_city=auto +City "PA, York" ResStockArguments site_city=auto +City "RI, Cranston" ResStockArguments site_city=auto +City "RI, East Providence" ResStockArguments site_city=auto +City "RI, Pawtucket" ResStockArguments site_city=auto +City "RI, Providence" ResStockArguments site_city=auto +City "RI, Warwick" ResStockArguments site_city=auto +City "RI, Woonsocket" ResStockArguments site_city=auto +City "SC, Charleston" ResStockArguments site_city=auto +City "SC, Columbia" ResStockArguments site_city=auto +City "SC, Florence" ResStockArguments site_city=auto +City "SC, Goose Creek" ResStockArguments site_city=auto +City "SC, Greenville" ResStockArguments site_city=auto +City "SC, Hilton Head Island" ResStockArguments site_city=auto +City "SC, Mount Pleasant" ResStockArguments site_city=auto +City "SC, Myrtle Beach" ResStockArguments site_city=auto +City "SC, North Charleston" ResStockArguments site_city=auto +City "SC, North Myrtle Beach" ResStockArguments site_city=auto +City "SC, Rock Hill" ResStockArguments site_city=auto +City "SC, Spartanburg" ResStockArguments site_city=auto +City "SC, Summerville" ResStockArguments site_city=auto +City "SC, Sumter" ResStockArguments site_city=auto +City "SD, Rapid City" ResStockArguments site_city=auto +City "SD, Sioux Falls" ResStockArguments site_city=auto +City "TN, Bartlett" ResStockArguments site_city=auto +City "TN, Chattanooga" ResStockArguments site_city=auto +City "TN, Clarksville" ResStockArguments site_city=auto +City "TN, Cleveland" ResStockArguments site_city=auto +City "TN, Collierville" ResStockArguments site_city=auto +City "TN, Columbia" ResStockArguments site_city=auto +City "TN, Franklin" ResStockArguments site_city=auto +City "TN, Germantown" ResStockArguments site_city=auto +City "TN, Hendersonville" ResStockArguments site_city=auto +City "TN, Jackson" ResStockArguments site_city=auto +City "TN, Johnson City" ResStockArguments site_city=auto +City "TN, Kingsport" ResStockArguments site_city=auto +City "TN, Knoxville" ResStockArguments site_city=auto +City "TN, Memphis" ResStockArguments site_city=auto +City "TN, Murfreesboro" ResStockArguments site_city=auto +City "TN, Nashville-Davidson Metropolitan Government Balance" ResStockArguments site_city=auto +City "TN, Smyrna" ResStockArguments site_city=auto +City "TX, Abilene" ResStockArguments site_city=auto +City "TX, Allen" ResStockArguments site_city=auto +City "TX, Amarillo" ResStockArguments site_city=auto +City "TX, Arlington" ResStockArguments site_city=auto +City "TX, Atascocita" ResStockArguments site_city=auto +City "TX, Austin" ResStockArguments site_city=auto +City "TX, Baytown" ResStockArguments site_city=auto +City "TX, Beaumont" ResStockArguments site_city=auto +City "TX, Bedford" ResStockArguments site_city=auto +City "TX, Brownsville" ResStockArguments site_city=auto +City "TX, Bryan" ResStockArguments site_city=auto +City "TX, Burleson" ResStockArguments site_city=auto +City "TX, Carrollton" ResStockArguments site_city=auto +City "TX, Cedar Hill" ResStockArguments site_city=auto +City "TX, Cedar Park" ResStockArguments site_city=auto +City "TX, College Station" ResStockArguments site_city=auto +City "TX, Conroe" ResStockArguments site_city=auto +City "TX, Coppell" ResStockArguments site_city=auto +City "TX, Corpus Christi" ResStockArguments site_city=auto +City "TX, Dallas" ResStockArguments site_city=auto +City "TX, Denton" ResStockArguments site_city=auto +City "TX, Desoto" ResStockArguments site_city=auto +City "TX, Edinburg" ResStockArguments site_city=auto +City "TX, El Paso" ResStockArguments site_city=auto +City "TX, Euless" ResStockArguments site_city=auto +City "TX, Flower Mound" ResStockArguments site_city=auto +City "TX, Fort Worth" ResStockArguments site_city=auto +City "TX, Frisco" ResStockArguments site_city=auto +City "TX, Galveston" ResStockArguments site_city=auto +City "TX, Garland" ResStockArguments site_city=auto +City "TX, Georgetown" ResStockArguments site_city=auto +City "TX, Grand Prairie" ResStockArguments site_city=auto +City "TX, Grapevine" ResStockArguments site_city=auto +City "TX, Haltom City" ResStockArguments site_city=auto +City "TX, Harlingen" ResStockArguments site_city=auto +City "TX, Houston" ResStockArguments site_city=auto +City "TX, Hurst" ResStockArguments site_city=auto +City "TX, Irving" ResStockArguments site_city=auto +City "TX, Keller" ResStockArguments site_city=auto +City "TX, Killeen" ResStockArguments site_city=auto +City "TX, Laredo" ResStockArguments site_city=auto +City "TX, League City" ResStockArguments site_city=auto +City "TX, Lewisville" ResStockArguments site_city=auto +City "TX, Longview" ResStockArguments site_city=auto +City "TX, Lubbock" ResStockArguments site_city=auto +City "TX, Lufkin" ResStockArguments site_city=auto +City "TX, Mansfield" ResStockArguments site_city=auto +City "TX, Mcallen" ResStockArguments site_city=auto +City "TX, Mckinney" ResStockArguments site_city=auto +City "TX, Mesquite" ResStockArguments site_city=auto +City "TX, Midland" ResStockArguments site_city=auto +City "TX, Mission" ResStockArguments site_city=auto +City "TX, Missouri City" ResStockArguments site_city=auto +City "TX, New Braunfels" ResStockArguments site_city=auto +City "TX, North Richland Hills" ResStockArguments site_city=auto +City "TX, Odessa" ResStockArguments site_city=auto +City "TX, Pasadena" ResStockArguments site_city=auto +City "TX, Pearland" ResStockArguments site_city=auto +City "TX, Pflugerville" ResStockArguments site_city=auto +City "TX, Pharr" ResStockArguments site_city=auto +City "TX, Plano" ResStockArguments site_city=auto +City "TX, Port Arthur" ResStockArguments site_city=auto +City "TX, Richardson" ResStockArguments site_city=auto +City "TX, Round Rock" ResStockArguments site_city=auto +City "TX, Rowlett" ResStockArguments site_city=auto +City "TX, San Angelo" ResStockArguments site_city=auto +City "TX, San Antonio" ResStockArguments site_city=auto +City "TX, San Marcos" ResStockArguments site_city=auto +City "TX, Sherman" ResStockArguments site_city=auto +City "TX, Spring" ResStockArguments site_city=auto +City "TX, Sugar Land" ResStockArguments site_city=auto +City "TX, Temple" ResStockArguments site_city=auto +City "TX, Texarkana" ResStockArguments site_city=auto +City "TX, Texas City" ResStockArguments site_city=auto +City "TX, The Colony" ResStockArguments site_city=auto +City "TX, The Woodlands" ResStockArguments site_city=auto +City "TX, Tyler" ResStockArguments site_city=auto +City "TX, Victoria" ResStockArguments site_city=auto +City "TX, Waco" ResStockArguments site_city=auto +City "TX, Wichita Falls" ResStockArguments site_city=auto +City "TX, Wylie" ResStockArguments site_city=auto +City "UT, Layton" ResStockArguments site_city=auto +City "UT, Lehi" ResStockArguments site_city=auto +City "UT, Logan" ResStockArguments site_city=auto +City "UT, Millcreek" ResStockArguments site_city=auto +City "UT, Murray" ResStockArguments site_city=auto +City "UT, Ogden" ResStockArguments site_city=auto +City "UT, Orem" ResStockArguments site_city=auto +City "UT, Provo" ResStockArguments site_city=auto +City "UT, Salt Lake City" ResStockArguments site_city=auto +City "UT, Sandy" ResStockArguments site_city=auto +City "UT, South Jordan" ResStockArguments site_city=auto +City "UT, St George" ResStockArguments site_city=auto +City "UT, Taylorsville" ResStockArguments site_city=auto +City "UT, West Jordan" ResStockArguments site_city=auto +City "UT, West Valley City" ResStockArguments site_city=auto +City "VA, Alexandria" ResStockArguments site_city=auto +City "VA, Arlington" ResStockArguments site_city=auto +City "VA, Ashburn" ResStockArguments site_city=auto +City "VA, Blacksburg" ResStockArguments site_city=auto +City "VA, Centreville" ResStockArguments site_city=auto +City "VA, Charlottesville" ResStockArguments site_city=auto +City "VA, Chesapeake" ResStockArguments site_city=auto +City "VA, Dale City" ResStockArguments site_city=auto +City "VA, Danville" ResStockArguments site_city=auto +City "VA, Hampton" ResStockArguments site_city=auto +City "VA, Harrisonburg" ResStockArguments site_city=auto +City "VA, Lake Ridge" ResStockArguments site_city=auto +City "VA, Leesburg" ResStockArguments site_city=auto +City "VA, Lynchburg" ResStockArguments site_city=auto +City "VA, Mclean" ResStockArguments site_city=auto +City "VA, Mechanicsville" ResStockArguments site_city=auto +City "VA, Newport News" ResStockArguments site_city=auto +City "VA, Norfolk" ResStockArguments site_city=auto +City "VA, Petersburg" ResStockArguments site_city=auto +City "VA, Portsmouth" ResStockArguments site_city=auto +City "VA, Reston" ResStockArguments site_city=auto +City "VA, Richmond" ResStockArguments site_city=auto +City "VA, Roanoke" ResStockArguments site_city=auto +City "VA, Suffolk" ResStockArguments site_city=auto +City "VA, Tuckahoe" ResStockArguments site_city=auto +City "VA, Virginia Beach" ResStockArguments site_city=auto +City "VT, Burlington" ResStockArguments site_city=auto +City "WA, Auburn" ResStockArguments site_city=auto +City "WA, Bellevue" ResStockArguments site_city=auto +City "WA, Bellingham" ResStockArguments site_city=auto +City "WA, Bremerton" ResStockArguments site_city=auto +City "WA, Edmonds" ResStockArguments site_city=auto +City "WA, Everett" ResStockArguments site_city=auto +City "WA, Federal Way" ResStockArguments site_city=auto +City "WA, Kennewick" ResStockArguments site_city=auto +City "WA, Kent" ResStockArguments site_city=auto +City "WA, Kirkland" ResStockArguments site_city=auto +City "WA, Lacey" ResStockArguments site_city=auto +City "WA, Lakewood" ResStockArguments site_city=auto +City "WA, Longview" ResStockArguments site_city=auto +City "WA, Marysville" ResStockArguments site_city=auto +City "WA, Olympia" ResStockArguments site_city=auto +City "WA, Pasco" ResStockArguments site_city=auto +City "WA, Puyallup" ResStockArguments site_city=auto +City "WA, Redmond" ResStockArguments site_city=auto +City "WA, Renton" ResStockArguments site_city=auto +City "WA, Richland" ResStockArguments site_city=auto +City "WA, Sammamish" ResStockArguments site_city=auto +City "WA, Seattle" ResStockArguments site_city=auto +City "WA, Shoreline" ResStockArguments site_city=auto +City "WA, South Hill" ResStockArguments site_city=auto +City "WA, Spokane Valley" ResStockArguments site_city=auto +City "WA, Spokane" ResStockArguments site_city=auto +City "WA, Tacoma" ResStockArguments site_city=auto +City "WA, Vancouver" ResStockArguments site_city=auto +City "WA, Yakima" ResStockArguments site_city=auto +City "WI, Appleton" ResStockArguments site_city=auto +City "WI, Beloit" ResStockArguments site_city=auto +City "WI, Eau Claire" ResStockArguments site_city=auto +City "WI, Fond Du Lac" ResStockArguments site_city=auto +City "WI, Green Bay" ResStockArguments site_city=auto +City "WI, Greenfield" ResStockArguments site_city=auto +City "WI, Janesville" ResStockArguments site_city=auto +City "WI, Kenosha" ResStockArguments site_city=auto +City "WI, La Crosse" ResStockArguments site_city=auto +City "WI, Madison" ResStockArguments site_city=auto +City "WI, Manitowoc" ResStockArguments site_city=auto +City "WI, Menomonee Falls" ResStockArguments site_city=auto +City "WI, Milwaukee" ResStockArguments site_city=auto +City "WI, New Berlin" ResStockArguments site_city=auto +City "WI, Oshkosh" ResStockArguments site_city=auto +City "WI, Racine" ResStockArguments site_city=auto +City "WI, Sheboygan" ResStockArguments site_city=auto +City "WI, Waukesha" ResStockArguments site_city=auto +City "WI, Wausau" ResStockArguments site_city=auto +City "WI, Wauwatosa" ResStockArguments site_city=auto +City "WI, West Allis" ResStockArguments site_city=auto +City "WV, Charleston" ResStockArguments site_city=auto +City "WV, Huntington" ResStockArguments site_city=auto +City "WV, Parkersburg" ResStockArguments site_city=auto +City "WY, Casper" ResStockArguments site_city=auto +City "WY, Cheyenne" ResStockArguments site_city=auto +City In another census Place ResStockArguments site_city=auto +City Not in a census Place ResStockArguments site_city=auto +Clothes Dryer "Electric, Heat Pump, Ventless" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=4.5 clothes_dryer_vented_flow_rate=0 +Clothes Dryer "Electric, Premium" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.42 clothes_dryer_vented_flow_rate=auto +Clothes Dryer "Electric, Premium, EnergyStar" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.93 clothes_dryer_vented_flow_rate=auto +Clothes Dryer "Electric, Premium, Heat Pump, Ventless" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=5.2 clothes_dryer_vented_flow_rate=0 +Clothes Dryer "Gas, Premium" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.03 clothes_dryer_vented_flow_rate=auto +Clothes Dryer Electric ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.70 clothes_dryer_vented_flow_rate=auto +Clothes Dryer Gas ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.39 clothes_dryer_vented_flow_rate=auto +Clothes Dryer None ResStockArguments clothes_dryer_present=false clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.70 clothes_dryer_vented_flow_rate=auto +Clothes Dryer Propane ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=propane clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.39 clothes_dryer_vented_flow_rate=auto +Clothes Dryer Void +Clothes Dryer Usage Level 100% Usage ResStockArguments clothes_dryer_usage_multiplier=1.0 +Clothes Dryer Usage Level 120% Usage ResStockArguments clothes_dryer_usage_multiplier=1.2 +Clothes Dryer Usage Level 80% Usage ResStockArguments clothes_dryer_usage_multiplier=0.8 +Clothes Washer "EnergyStar, Cold Only" ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.07 clothes_washer_rated_annual_kwh=123 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=9 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.68 +Clothes Washer CEE Advanced Tier ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=3.1 clothes_washer_rated_annual_kwh=120 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=14 clothes_washer_label_usage=7.538462 clothes_washer_capacity=5.8 +Clothes Washer EnergyStar ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.07 clothes_washer_rated_annual_kwh=123 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=9 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.68 +Clothes Washer EnergyStar More Efficient ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.83 clothes_washer_rated_annual_kwh=90 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=8 clothes_washer_label_usage=7.538462 clothes_washer_capacity=4.5 +Clothes Washer EnergyStar Most Efficient ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.92 clothes_washer_rated_annual_kwh=75 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=7 clothes_washer_label_usage=7.538462 clothes_washer_capacity=4.5 +Clothes Washer None ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=0 clothes_washer_rated_annual_kwh=0 clothes_washer_label_electric_rate=0 clothes_washer_label_gas_rate=0 clothes_washer_label_annual_gas_cost=0 clothes_washer_label_usage=0 clothes_washer_capacity=0 +Clothes Washer Standard ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=0.95 clothes_washer_rated_annual_kwh=387 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=24 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.5 +Clothes Washer Void +Clothes Washer Presence None ResStockArguments clothes_washer_present=false +Clothes Washer Presence Void +Clothes Washer Presence Yes ResStockArguments clothes_washer_present=true +Clothes Washer Usage Level 100% Usage ResStockArguments clothes_washer_usage_multiplier=1.0 +Clothes Washer Usage Level 120% Usage ResStockArguments clothes_washer_usage_multiplier=1.2 +Clothes Washer Usage Level 80% Usage ResStockArguments clothes_washer_usage_multiplier=0.8 +Cooking Range Electric Induction ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=electricity cooking_range_oven_is_induction=true cooking_range_oven_is_convection=auto +Cooking Range Electric Resistance ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=electricity cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto +Cooking Range Gas ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=natural gas cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto +Cooking Range None ResStockArguments cooking_range_oven_present=false cooking_range_oven_location=auto cooking_range_oven_fuel_type=natural gas cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto +Cooking Range Propane ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=propane cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto +Cooking Range Void +Cooking Range Usage Level 100% Usage ResStockArguments cooking_range_oven_usage_multiplier=1.0 +Cooking Range Usage Level 120% Usage ResStockArguments cooking_range_oven_usage_multiplier=1.2 +Cooking Range Usage Level 80% Usage ResStockArguments cooking_range_oven_usage_multiplier=0.8 +Cooling Setpoint 60F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=60 hvac_control_cooling_weekend_setpoint_temp=60 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 62F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=62 hvac_control_cooling_weekend_setpoint_temp=62 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 64F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=64 hvac_control_cooling_weekend_setpoint_temp=64 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 65F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=65 hvac_control_cooling_weekend_setpoint_temp=65 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 66F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=66 hvac_control_cooling_weekend_setpoint_temp=66 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 67F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=67 hvac_control_cooling_weekend_setpoint_temp=67 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 68F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=68 hvac_control_cooling_weekend_setpoint_temp=68 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 69F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=69 hvac_control_cooling_weekend_setpoint_temp=69 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 70F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=70 hvac_control_cooling_weekend_setpoint_temp=70 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 72F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=72 hvac_control_cooling_weekend_setpoint_temp=72 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 73F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=73 hvac_control_cooling_weekend_setpoint_temp=73 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 74F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=74 hvac_control_cooling_weekend_setpoint_temp=74 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 75F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=75 hvac_control_cooling_weekend_setpoint_temp=75 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 76F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=76 hvac_control_cooling_weekend_setpoint_temp=76 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 76F w/ Building America season ResStockArguments hvac_control_cooling_weekday_setpoint_temp=76 hvac_control_cooling_weekend_setpoint_temp=76 use_auto_cooling_season=true hvac_control_cooling_season_period=auto +Cooling Setpoint 77F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=77 hvac_control_cooling_weekend_setpoint_temp=77 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 78F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=78 hvac_control_cooling_weekend_setpoint_temp=78 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 80F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=80 hvac_control_cooling_weekend_setpoint_temp=80 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint Void +Cooling Setpoint Has Offset No +Cooling Setpoint Has Offset Yes +Cooling Setpoint Offset Magnitude 0F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=0 hvac_control_cooling_weekend_setpoint_offset_magnitude=0 +Cooling Setpoint Offset Magnitude 2F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=2 hvac_control_cooling_weekend_setpoint_offset_magnitude=2 +Cooling Setpoint Offset Magnitude 5F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=5 hvac_control_cooling_weekend_setpoint_offset_magnitude=5 +Cooling Setpoint Offset Magnitude 9F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=9 hvac_control_cooling_weekend_setpoint_offset_magnitude=9 +Cooling Setpoint Offset Period Day Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup and Night Setback ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day Setup and Night Setback +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day Setup and Night Setback +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day Setup and Night Setback +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day Setup and Night Setback -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" +Cooling Setpoint Offset Period Day and Night Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1" +Cooling Setpoint Offset Period Day and Night Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1" +Cooling Setpoint Offset Period Day and Night Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day and Night Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day and Night Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day and Night Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day and Night Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1" +Cooling Setpoint Offset Period Day and Night Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1" +Cooling Setpoint Offset Period Day and Night Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1" +Cooling Setpoint Offset Period Day and Night Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1" +Cooling Setpoint Offset Period Day and Night Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1" +Cooling Setpoint Offset Period Night Setback ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" +Cooling Setpoint Offset Period Night Setback +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" +Cooling Setpoint Offset Period Night Setback +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setback +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setback +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setback +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setback -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" +Cooling Setpoint Offset Period Night Setback -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" +Cooling Setpoint Offset Period Night Setback -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" +Cooling Setpoint Offset Period Night Setback -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" +Cooling Setpoint Offset Period Night Setback -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" +Cooling Setpoint Offset Period Night Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1" +Cooling Setpoint Offset Period Night Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1" +Cooling Setpoint Offset Period Night Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1" +Cooling Setpoint Offset Period Night Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1" +Cooling Setpoint Offset Period Night Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1" +Cooling Setpoint Offset Period Night Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1" +Cooling Setpoint Offset Period Night Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1" +Cooling Setpoint Offset Period None ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Corridor Double Exterior ResStockArguments geometry_corridor_position=Double Exterior geometry_corridor_width=10 +Corridor Double-Loaded Interior ResStockArguments geometry_corridor_position=Double-Loaded Interior geometry_corridor_width=10 +Corridor None ResStockArguments geometry_corridor_position=None geometry_corridor_width=0 +Corridor Not Applicable ResStockArguments geometry_corridor_position=None geometry_corridor_width=0 +Corridor Single Exterior Front ResStockArguments geometry_corridor_position=Single Exterior (Front) geometry_corridor_width=10 +County "AK, Aleutians East Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200130.epw site_zip_code=99661 site_time_zone_utc_offset=-9 +County "AK, Aleutians West Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200160.epw site_zip_code=99685 site_time_zone_utc_offset=-9 +County "AK, Anchorage Municipality" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200200.epw site_zip_code=99501 site_time_zone_utc_offset=-9 +County "AK, Bethel Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200500.epw site_zip_code=99545 site_time_zone_utc_offset=-9 +County "AK, Bristol Bay Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200600.epw site_zip_code=99633 site_time_zone_utc_offset=-9 +County "AK, Denali Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200680.epw site_zip_code=99743 site_time_zone_utc_offset=-9 +County "AK, Dillingham Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200700.epw site_zip_code=99576 site_time_zone_utc_offset=-9 +County "AK, Fairbanks North Star Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200900.epw site_zip_code=99709 site_time_zone_utc_offset=-9 +County "AK, Haines Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201000.epw site_zip_code=99827 site_time_zone_utc_offset=-9 +County "AK, Hoonah-Angoon Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201050.epw site_zip_code=99829 site_time_zone_utc_offset=-9 +County "AK, Juneau City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201100.epw site_zip_code=99802 site_time_zone_utc_offset=-9 +County "AK, Kenai Peninsula Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201220.epw site_zip_code=99611 site_time_zone_utc_offset=-9 +County "AK, Ketchikan Gateway Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201300.epw site_zip_code=99901 site_time_zone_utc_offset=-9 +County "AK, Kodiak Island Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201500.epw site_zip_code=99615 site_time_zone_utc_offset=-9 +County "AK, Kusilvak Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202700.epw site_zip_code=99604 site_time_zone_utc_offset=-9 +County "AK, Lake and Peninsula Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201640.epw site_zip_code=99653 site_time_zone_utc_offset=-9 +County "AK, Matanuska-Susitna Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201700.epw site_zip_code=99645 site_time_zone_utc_offset=-9 +County "AK, Nome Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201800.epw site_zip_code=99762 site_time_zone_utc_offset=-9 +County "AK, North Slope Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201850.epw site_zip_code=99723 site_time_zone_utc_offset=-9 +County "AK, Northwest Arctic Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201880.epw site_zip_code=99752 site_time_zone_utc_offset=-9 +County "AK, Petersburg Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201950.epw site_zip_code=99833 site_time_zone_utc_offset=-9 +County "AK, Prince of Wales-Hyder Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201980.epw site_zip_code=99926 site_time_zone_utc_offset=-9 +County "AK, Sitka City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202200.epw site_zip_code=99835 site_time_zone_utc_offset=-9 +County "AK, Skagway Municipality" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202300.epw site_zip_code=99840 site_time_zone_utc_offset=-9 +County "AK, Southeast Fairbanks Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202400.epw site_zip_code=99731 site_time_zone_utc_offset=-9 +County "AK, Valdez-Cordova Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202610.epw site_zip_code=99686 site_time_zone_utc_offset=-9 +County "AK, Wrangell City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202750.epw site_zip_code=99903 site_time_zone_utc_offset=-9 +County "AK, Yakutat City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202820.epw site_zip_code=99689 site_time_zone_utc_offset=-9 +County "AK, Yukon-Koyukuk Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202900.epw site_zip_code=99740 site_time_zone_utc_offset=-9 +County "AL, Autauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100010.epw site_zip_code=36067 site_time_zone_utc_offset=-6 +County "AL, Baldwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100030.epw site_zip_code=36535 site_time_zone_utc_offset=-6 +County "AL, Barbour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100050.epw site_zip_code=36027 site_time_zone_utc_offset=-6 +County "AL, Bibb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100070.epw site_zip_code=35042 site_time_zone_utc_offset=-6 +County "AL, Blount County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100090.epw site_zip_code=35121 site_time_zone_utc_offset=-6 +County "AL, Bullock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100110.epw site_zip_code=36089 site_time_zone_utc_offset=-6 +County "AL, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100130.epw site_zip_code=36037 site_time_zone_utc_offset=-6 +County "AL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100150.epw site_zip_code=36201 site_time_zone_utc_offset=-6 +County "AL, Chambers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100170.epw site_zip_code=36863 site_time_zone_utc_offset=-6 +County "AL, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100190.epw site_zip_code=35960 site_time_zone_utc_offset=-6 +County "AL, Chilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100210.epw site_zip_code=35045 site_time_zone_utc_offset=-6 +County "AL, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100230.epw site_zip_code=36904 site_time_zone_utc_offset=-6 +County "AL, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100250.epw site_zip_code=36545 site_time_zone_utc_offset=-6 +County "AL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100270.epw site_zip_code=36251 site_time_zone_utc_offset=-6 +County "AL, Cleburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100290.epw site_zip_code=36264 site_time_zone_utc_offset=-6 +County "AL, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100310.epw site_zip_code=36330 site_time_zone_utc_offset=-6 +County "AL, Colbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100330.epw site_zip_code=35674 site_time_zone_utc_offset=-6 +County "AL, Conecuh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100350.epw site_zip_code=36401 site_time_zone_utc_offset=-6 +County "AL, Coosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100370.epw site_zip_code=35151 site_time_zone_utc_offset=-6 +County "AL, Covington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100390.epw site_zip_code=36420 site_time_zone_utc_offset=-6 +County "AL, Crenshaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100410.epw site_zip_code=36049 site_time_zone_utc_offset=-6 +County "AL, Cullman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100430.epw site_zip_code=35055 site_time_zone_utc_offset=-6 +County "AL, Dale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100450.epw site_zip_code=36360 site_time_zone_utc_offset=-6 +County "AL, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100470.epw site_zip_code=36701 site_time_zone_utc_offset=-6 +County "AL, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100490.epw site_zip_code=35967 site_time_zone_utc_offset=-6 +County "AL, Elmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100510.epw site_zip_code=36092 site_time_zone_utc_offset=-6 +County "AL, Escambia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100530.epw site_zip_code=36426 site_time_zone_utc_offset=-6 +County "AL, Etowah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100550.epw site_zip_code=35901 site_time_zone_utc_offset=-6 +County "AL, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100570.epw site_zip_code=35555 site_time_zone_utc_offset=-6 +County "AL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100590.epw site_zip_code=35653 site_time_zone_utc_offset=-6 +County "AL, Geneva County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100610.epw site_zip_code=36375 site_time_zone_utc_offset=-6 +County "AL, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100630.epw site_zip_code=35462 site_time_zone_utc_offset=-6 +County "AL, Hale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100650.epw site_zip_code=36744 site_time_zone_utc_offset=-6 +County "AL, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100670.epw site_zip_code=36310 site_time_zone_utc_offset=-6 +County "AL, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100690.epw site_zip_code=36301 site_time_zone_utc_offset=-6 +County "AL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100710.epw site_zip_code=35768 site_time_zone_utc_offset=-6 +County "AL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100730.epw site_zip_code=35215 site_time_zone_utc_offset=-6 +County "AL, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100750.epw site_zip_code=35586 site_time_zone_utc_offset=-6 +County "AL, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100770.epw site_zip_code=35630 site_time_zone_utc_offset=-6 +County "AL, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100790.epw site_zip_code=35650 site_time_zone_utc_offset=-6 +County "AL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100810.epw site_zip_code=36830 site_time_zone_utc_offset=-6 +County "AL, Limestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100830.epw site_zip_code=35611 site_time_zone_utc_offset=-6 +County "AL, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100850.epw site_zip_code=36040 site_time_zone_utc_offset=-6 +County "AL, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100870.epw site_zip_code=36083 site_time_zone_utc_offset=-6 +County "AL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100890.epw site_zip_code=35758 site_time_zone_utc_offset=-6 +County "AL, Marengo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100910.epw site_zip_code=36732 site_time_zone_utc_offset=-6 +County "AL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100930.epw site_zip_code=35570 site_time_zone_utc_offset=-6 +County "AL, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100950.epw site_zip_code=35976 site_time_zone_utc_offset=-6 +County "AL, Mobile County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100970.epw site_zip_code=36695 site_time_zone_utc_offset=-6 +County "AL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100990.epw site_zip_code=36460 site_time_zone_utc_offset=-6 +County "AL, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101010.epw site_zip_code=36117 site_time_zone_utc_offset=-6 +County "AL, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101030.epw site_zip_code=35601 site_time_zone_utc_offset=-6 +County "AL, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101050.epw site_zip_code=36756 site_time_zone_utc_offset=-6 +County "AL, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101070.epw site_zip_code=35466 site_time_zone_utc_offset=-6 +County "AL, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101090.epw site_zip_code=36081 site_time_zone_utc_offset=-6 +County "AL, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101110.epw site_zip_code=36274 site_time_zone_utc_offset=-6 +County "AL, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101130.epw site_zip_code=36869 site_time_zone_utc_offset=-6 +County "AL, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101170.epw site_zip_code=35242 site_time_zone_utc_offset=-6 +County "AL, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101150.epw site_zip_code=35120 site_time_zone_utc_offset=-6 +County "AL, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101190.epw site_zip_code=36925 site_time_zone_utc_offset=-6 +County "AL, Talladega County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101210.epw site_zip_code=35160 site_time_zone_utc_offset=-6 +County "AL, Tallapoosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101230.epw site_zip_code=35010 site_time_zone_utc_offset=-6 +County "AL, Tuscaloosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101250.epw site_zip_code=35401 site_time_zone_utc_offset=-6 +County "AL, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101270.epw site_zip_code=35504 site_time_zone_utc_offset=-6 +County "AL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101290.epw site_zip_code=36558 site_time_zone_utc_offset=-6 +County "AL, Wilcox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101310.epw site_zip_code=36726 site_time_zone_utc_offset=-6 +County "AL, Winston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101330.epw site_zip_code=35565 site_time_zone_utc_offset=-6 +County "AR, Arkansas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500010.epw site_zip_code=72160 site_time_zone_utc_offset=-6 +County "AR, Ashley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500030.epw site_zip_code=71635 site_time_zone_utc_offset=-6 +County "AR, Baxter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500050.epw site_zip_code=72653 site_time_zone_utc_offset=-6 +County "AR, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500070.epw site_zip_code=72712 site_time_zone_utc_offset=-6 +County "AR, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500090.epw site_zip_code=72601 site_time_zone_utc_offset=-6 +County "AR, Bradley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500110.epw site_zip_code=71671 site_time_zone_utc_offset=-6 +County "AR, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500130.epw site_zip_code=71744 site_time_zone_utc_offset=-6 +County "AR, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500150.epw site_zip_code=72616 site_time_zone_utc_offset=-6 +County "AR, Chicot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500170.epw site_zip_code=71653 site_time_zone_utc_offset=-6 +County "AR, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500190.epw site_zip_code=71923 site_time_zone_utc_offset=-6 +County "AR, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500210.epw site_zip_code=72454 site_time_zone_utc_offset=-6 +County "AR, Cleburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500230.epw site_zip_code=72543 site_time_zone_utc_offset=-6 +County "AR, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500250.epw site_zip_code=71665 site_time_zone_utc_offset=-6 +County "AR, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500270.epw site_zip_code=71753 site_time_zone_utc_offset=-6 +County "AR, Conway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500290.epw site_zip_code=72110 site_time_zone_utc_offset=-6 +County "AR, Craighead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500310.epw site_zip_code=72401 site_time_zone_utc_offset=-6 +County "AR, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500330.epw site_zip_code=72956 site_time_zone_utc_offset=-6 +County "AR, Crittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500350.epw site_zip_code=72301 site_time_zone_utc_offset=-6 +County "AR, Cross County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500370.epw site_zip_code=72396 site_time_zone_utc_offset=-6 +County "AR, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500390.epw site_zip_code=71742 site_time_zone_utc_offset=-6 +County "AR, Desha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500410.epw site_zip_code=71639 site_time_zone_utc_offset=-6 +County "AR, Drew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500430.epw site_zip_code=71655 site_time_zone_utc_offset=-6 +County "AR, Faulkner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500450.epw site_zip_code=72034 site_time_zone_utc_offset=-6 +County "AR, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500470.epw site_zip_code=72949 site_time_zone_utc_offset=-6 +County "AR, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500490.epw site_zip_code=72554 site_time_zone_utc_offset=-6 +County "AR, Garland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500510.epw site_zip_code=71913 site_time_zone_utc_offset=-6 +County "AR, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500530.epw site_zip_code=72150 site_time_zone_utc_offset=-6 +County "AR, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500550.epw site_zip_code=72450 site_time_zone_utc_offset=-6 +County "AR, Hempstead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500570.epw site_zip_code=71801 site_time_zone_utc_offset=-6 +County "AR, Hot Spring County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500590.epw site_zip_code=72104 site_time_zone_utc_offset=-6 +County "AR, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500610.epw site_zip_code=71852 site_time_zone_utc_offset=-6 +County "AR, Independence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500630.epw site_zip_code=72501 site_time_zone_utc_offset=-6 +County "AR, Izard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500650.epw site_zip_code=72556 site_time_zone_utc_offset=-6 +County "AR, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500670.epw site_zip_code=72112 site_time_zone_utc_offset=-6 +County "AR, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500690.epw site_zip_code=71603 site_time_zone_utc_offset=-6 +County "AR, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500710.epw site_zip_code=72830 site_time_zone_utc_offset=-6 +County "AR, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500730.epw site_zip_code=71860 site_time_zone_utc_offset=-6 +County "AR, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500750.epw site_zip_code=72476 site_time_zone_utc_offset=-6 +County "AR, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500770.epw site_zip_code=72360 site_time_zone_utc_offset=-6 +County "AR, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500790.epw site_zip_code=71667 site_time_zone_utc_offset=-6 +County "AR, Little River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500810.epw site_zip_code=71822 site_time_zone_utc_offset=-6 +County "AR, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500830.epw site_zip_code=72927 site_time_zone_utc_offset=-6 +County "AR, Lonoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500850.epw site_zip_code=72023 site_time_zone_utc_offset=-6 +County "AR, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500870.epw site_zip_code=72740 site_time_zone_utc_offset=-6 +County "AR, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500890.epw site_zip_code=72687 site_time_zone_utc_offset=-6 +County "AR, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500910.epw site_zip_code=71854 site_time_zone_utc_offset=-6 +County "AR, Mississippi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500930.epw site_zip_code=72315 site_time_zone_utc_offset=-6 +County "AR, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500950.epw site_zip_code=72021 site_time_zone_utc_offset=-6 +County "AR, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500970.epw site_zip_code=71957 site_time_zone_utc_offset=-6 +County "AR, Nevada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500990.epw site_zip_code=71857 site_time_zone_utc_offset=-6 +County "AR, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501010.epw site_zip_code=72641 site_time_zone_utc_offset=-6 +County "AR, Ouachita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501030.epw site_zip_code=71701 site_time_zone_utc_offset=-6 +County "AR, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501050.epw site_zip_code=72126 site_time_zone_utc_offset=-6 +County "AR, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501070.epw site_zip_code=72390 site_time_zone_utc_offset=-6 +County "AR, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501090.epw site_zip_code=71943 site_time_zone_utc_offset=-6 +County "AR, Poinsett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501110.epw site_zip_code=72472 site_time_zone_utc_offset=-6 +County "AR, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501130.epw site_zip_code=71953 site_time_zone_utc_offset=-6 +County "AR, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501150.epw site_zip_code=72802 site_time_zone_utc_offset=-6 +County "AR, Prairie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501170.epw site_zip_code=72040 site_time_zone_utc_offset=-6 +County "AR, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501190.epw site_zip_code=72076 site_time_zone_utc_offset=-6 +County "AR, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501210.epw site_zip_code=72455 site_time_zone_utc_offset=-6 +County "AR, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501250.epw site_zip_code=72019 site_time_zone_utc_offset=-6 +County "AR, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501270.epw site_zip_code=72958 site_time_zone_utc_offset=-6 +County "AR, Searcy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501290.epw site_zip_code=72650 site_time_zone_utc_offset=-6 +County "AR, Sebastian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501310.epw site_zip_code=72903 site_time_zone_utc_offset=-6 +County "AR, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501330.epw site_zip_code=71832 site_time_zone_utc_offset=-6 +County "AR, Sharp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501350.epw site_zip_code=72529 site_time_zone_utc_offset=-6 +County "AR, St. Francis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501230.epw site_zip_code=72335 site_time_zone_utc_offset=-6 +County "AR, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501370.epw site_zip_code=72560 site_time_zone_utc_offset=-6 +County "AR, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501390.epw site_zip_code=71730 site_time_zone_utc_offset=-6 +County "AR, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501410.epw site_zip_code=72031 site_time_zone_utc_offset=-6 +County "AR, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501430.epw site_zip_code=72701 site_time_zone_utc_offset=-6 +County "AR, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501450.epw site_zip_code=72143 site_time_zone_utc_offset=-6 +County "AR, Woodruff County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501470.epw site_zip_code=72006 site_time_zone_utc_offset=-6 +County "AR, Yell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501490.epw site_zip_code=72834 site_time_zone_utc_offset=-6 +County "AZ, Apache County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400010.epw site_zip_code=85936 site_time_zone_utc_offset=-7 +County "AZ, Cochise County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400030.epw site_zip_code=85635 site_time_zone_utc_offset=-7 +County "AZ, Coconino County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400050.epw site_zip_code=86001 site_time_zone_utc_offset=-7 +County "AZ, Gila County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400070.epw site_zip_code=85541 site_time_zone_utc_offset=-7 +County "AZ, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400090.epw site_zip_code=85546 site_time_zone_utc_offset=-7 +County "AZ, Greenlee County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400110.epw site_zip_code=85534 site_time_zone_utc_offset=-7 +County "AZ, La Paz County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400120.epw site_zip_code=85344 site_time_zone_utc_offset=-7 +County "AZ, Maricopa County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400130.epw site_zip_code=85281 site_time_zone_utc_offset=-7 +County "AZ, Mohave County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400150.epw site_zip_code=86442 site_time_zone_utc_offset=-7 +County "AZ, Navajo County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400170.epw site_zip_code=85901 site_time_zone_utc_offset=-7 +County "AZ, Pima County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400190.epw site_zip_code=85705 site_time_zone_utc_offset=-7 +County "AZ, Pinal County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400210.epw site_zip_code=85122 site_time_zone_utc_offset=-7 +County "AZ, Santa Cruz County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400230.epw site_zip_code=85621 site_time_zone_utc_offset=-7 +County "AZ, Yavapai County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400250.epw site_zip_code=86314 site_time_zone_utc_offset=-7 +County "AZ, Yuma County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400270.epw site_zip_code=85364 site_time_zone_utc_offset=-7 +County "CA, Alameda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600010.epw site_zip_code=94501 site_time_zone_utc_offset=-8 +County "CA, Alpine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600030.epw site_zip_code=96120 site_time_zone_utc_offset=-8 +County "CA, Amador County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600050.epw site_zip_code=95642 site_time_zone_utc_offset=-8 +County "CA, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600070.epw site_zip_code=95928 site_time_zone_utc_offset=-8 +County "CA, Calaveras County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600090.epw site_zip_code=95252 site_time_zone_utc_offset=-8 +County "CA, Colusa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600110.epw site_zip_code=95932 site_time_zone_utc_offset=-8 +County "CA, Contra Costa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600130.epw site_zip_code=94565 site_time_zone_utc_offset=-8 +County "CA, Del Norte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600150.epw site_zip_code=95531 site_time_zone_utc_offset=-8 +County "CA, El Dorado County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600170.epw site_zip_code=95762 site_time_zone_utc_offset=-8 +County "CA, Fresno County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600190.epw site_zip_code=93722 site_time_zone_utc_offset=-8 +County "CA, Glenn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600210.epw site_zip_code=95963 site_time_zone_utc_offset=-8 +County "CA, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600230.epw site_zip_code=95501 site_time_zone_utc_offset=-8 +County "CA, Imperial County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600250.epw site_zip_code=92243 site_time_zone_utc_offset=-8 +County "CA, Inyo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600270.epw site_zip_code=93514 site_time_zone_utc_offset=-8 +County "CA, Kern County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600290.epw site_zip_code=93306 site_time_zone_utc_offset=-8 +County "CA, Kings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600310.epw site_zip_code=93230 site_time_zone_utc_offset=-8 +County "CA, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600330.epw site_zip_code=95422 site_time_zone_utc_offset=-8 +County "CA, Lassen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600350.epw site_zip_code=96130 site_time_zone_utc_offset=-8 +County "CA, Los Angeles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600370.epw site_zip_code=90250 site_time_zone_utc_offset=-8 +County "CA, Madera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600390.epw site_zip_code=93637 site_time_zone_utc_offset=-8 +County "CA, Marin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600410.epw site_zip_code=94901 site_time_zone_utc_offset=-8 +County "CA, Mariposa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600430.epw site_zip_code=95338 site_time_zone_utc_offset=-8 +County "CA, Mendocino County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600450.epw site_zip_code=95482 site_time_zone_utc_offset=-8 +County "CA, Merced County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600470.epw site_zip_code=93635 site_time_zone_utc_offset=-8 +County "CA, Modoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600490.epw site_zip_code=96101 site_time_zone_utc_offset=-8 +County "CA, Mono County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600510.epw site_zip_code=93546 site_time_zone_utc_offset=-8 +County "CA, Monterey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600530.epw site_zip_code=93906 site_time_zone_utc_offset=-8 +County "CA, Napa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600550.epw site_zip_code=94558 site_time_zone_utc_offset=-8 +County "CA, Nevada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600570.epw site_zip_code=95945 site_time_zone_utc_offset=-8 +County "CA, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600590.epw site_zip_code=92683 site_time_zone_utc_offset=-8 +County "CA, Placer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600610.epw site_zip_code=95747 site_time_zone_utc_offset=-8 +County "CA, Plumas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600630.epw site_zip_code=96122 site_time_zone_utc_offset=-8 +County "CA, Riverside County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600650.epw site_zip_code=92503 site_time_zone_utc_offset=-8 +County "CA, Sacramento County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600670.epw site_zip_code=95630 site_time_zone_utc_offset=-8 +County "CA, San Benito County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600690.epw site_zip_code=95023 site_time_zone_utc_offset=-8 +County "CA, San Bernardino County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600710.epw site_zip_code=92336 site_time_zone_utc_offset=-8 +County "CA, San Diego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600730.epw site_zip_code=92101 site_time_zone_utc_offset=-8 +County "CA, San Francisco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600750.epw site_zip_code=94109 site_time_zone_utc_offset=-8 +County "CA, San Joaquin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600770.epw site_zip_code=95206 site_time_zone_utc_offset=-8 +County "CA, San Luis Obispo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600790.epw site_zip_code=93446 site_time_zone_utc_offset=-8 +County "CA, San Mateo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600810.epw site_zip_code=94080 site_time_zone_utc_offset=-8 +County "CA, Santa Barbara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600830.epw site_zip_code=93436 site_time_zone_utc_offset=-8 +County "CA, Santa Clara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600850.epw site_zip_code=95035 site_time_zone_utc_offset=-8 +County "CA, Santa Cruz County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600870.epw site_zip_code=95076 site_time_zone_utc_offset=-8 +County "CA, Shasta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600890.epw site_zip_code=96003 site_time_zone_utc_offset=-8 +County "CA, Sierra County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600910.epw site_zip_code=95960 site_time_zone_utc_offset=-8 +County "CA, Siskiyou County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600930.epw site_zip_code=96097 site_time_zone_utc_offset=-8 +County "CA, Solano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600950.epw site_zip_code=94533 site_time_zone_utc_offset=-8 +County "CA, Sonoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600970.epw site_zip_code=95403 site_time_zone_utc_offset=-8 +County "CA, Stanislaus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600990.epw site_zip_code=95355 site_time_zone_utc_offset=-8 +County "CA, Sutter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601010.epw site_zip_code=95991 site_time_zone_utc_offset=-8 +County "CA, Tehama County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601030.epw site_zip_code=96080 site_time_zone_utc_offset=-8 +County "CA, Trinity County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601050.epw site_zip_code=96091 site_time_zone_utc_offset=-8 +County "CA, Tulare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601070.epw site_zip_code=93274 site_time_zone_utc_offset=-8 +County "CA, Tuolumne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601090.epw site_zip_code=95370 site_time_zone_utc_offset=-8 +County "CA, Ventura County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601110.epw site_zip_code=93065 site_time_zone_utc_offset=-8 +County "CA, Yolo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601130.epw site_zip_code=95616 site_time_zone_utc_offset=-8 +County "CA, Yuba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601150.epw site_zip_code=95901 site_time_zone_utc_offset=-8 +County "CO, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800010.epw site_zip_code=80229 site_time_zone_utc_offset=-7 +County "CO, Alamosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800030.epw site_zip_code=81101 site_time_zone_utc_offset=-7 +County "CO, Arapahoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800050.epw site_zip_code=80013 site_time_zone_utc_offset=-7 +County "CO, Archuleta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800070.epw site_zip_code=81147 site_time_zone_utc_offset=-7 +County "CO, Baca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800090.epw site_zip_code=81073 site_time_zone_utc_offset=-7 +County "CO, Bent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800110.epw site_zip_code=81054 site_time_zone_utc_offset=-7 +County "CO, Boulder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800130.epw site_zip_code=80501 site_time_zone_utc_offset=-7 +County "CO, Broomfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800140.epw site_zip_code=80020 site_time_zone_utc_offset=-7 +County "CO, Chaffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800150.epw site_zip_code=81201 site_time_zone_utc_offset=-7 +County "CO, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800170.epw site_zip_code=80810 site_time_zone_utc_offset=-7 +County "CO, Clear Creek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800190.epw site_zip_code=80439 site_time_zone_utc_offset=-7 +County "CO, Conejos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800210.epw site_zip_code=81120 site_time_zone_utc_offset=-7 +County "CO, Costilla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800230.epw site_zip_code=81133 site_time_zone_utc_offset=-7 +County "CO, Crowley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800250.epw site_zip_code=81063 site_time_zone_utc_offset=-7 +County "CO, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800270.epw site_zip_code=81252 site_time_zone_utc_offset=-7 +County "CO, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800290.epw site_zip_code=81416 site_time_zone_utc_offset=-7 +County "CO, Denver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800310.epw site_zip_code=80211 site_time_zone_utc_offset=-7 +County "CO, Dolores County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800330.epw site_zip_code=81324 site_time_zone_utc_offset=-7 +County "CO, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800350.epw site_zip_code=80134 site_time_zone_utc_offset=-7 +County "CO, Eagle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800370.epw site_zip_code=81620 site_time_zone_utc_offset=-7 +County "CO, El Paso County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800410.epw site_zip_code=80918 site_time_zone_utc_offset=-7 +County "CO, Elbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800390.epw site_zip_code=80107 site_time_zone_utc_offset=-7 +County "CO, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800430.epw site_zip_code=81212 site_time_zone_utc_offset=-7 +County "CO, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800450.epw site_zip_code=81601 site_time_zone_utc_offset=-7 +County "CO, Gilpin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800470.epw site_zip_code=80422 site_time_zone_utc_offset=-7 +County "CO, Grand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800490.epw site_zip_code=80459 site_time_zone_utc_offset=-7 +County "CO, Gunnison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800510.epw site_zip_code=81230 site_time_zone_utc_offset=-7 +County "CO, Hinsdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800530.epw site_zip_code=81235 site_time_zone_utc_offset=-7 +County "CO, Huerfano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800550.epw site_zip_code=81089 site_time_zone_utc_offset=-7 +County "CO, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800570.epw site_zip_code=80480 site_time_zone_utc_offset=-7 +County "CO, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800590.epw site_zip_code=80127 site_time_zone_utc_offset=-7 +County "CO, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800610.epw site_zip_code=81036 site_time_zone_utc_offset=-7 +County "CO, Kit Carson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800630.epw site_zip_code=80807 site_time_zone_utc_offset=-7 +County "CO, La Plata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800670.epw site_zip_code=81301 site_time_zone_utc_offset=-7 +County "CO, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800650.epw site_zip_code=80461 site_time_zone_utc_offset=-7 +County "CO, Larimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800690.epw site_zip_code=80525 site_time_zone_utc_offset=-7 +County "CO, Las Animas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800710.epw site_zip_code=81082 site_time_zone_utc_offset=-7 +County "CO, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800730.epw site_zip_code=80828 site_time_zone_utc_offset=-7 +County "CO, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800750.epw site_zip_code=80751 site_time_zone_utc_offset=-7 +County "CO, Mesa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800770.epw site_zip_code=81504 site_time_zone_utc_offset=-7 +County "CO, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800790.epw site_zip_code=81130 site_time_zone_utc_offset=-7 +County "CO, Moffat County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800810.epw site_zip_code=81625 site_time_zone_utc_offset=-7 +County "CO, Montezuma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800830.epw site_zip_code=81321 site_time_zone_utc_offset=-7 +County "CO, Montrose County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800850.epw site_zip_code=81401 site_time_zone_utc_offset=-7 +County "CO, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800870.epw site_zip_code=80701 site_time_zone_utc_offset=-7 +County "CO, Otero County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800890.epw site_zip_code=81050 site_time_zone_utc_offset=-7 +County "CO, Ouray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800910.epw site_zip_code=81432 site_time_zone_utc_offset=-7 +County "CO, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800930.epw site_zip_code=80421 site_time_zone_utc_offset=-7 +County "CO, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800950.epw site_zip_code=80734 site_time_zone_utc_offset=-7 +County "CO, Pitkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800970.epw site_zip_code=81612 site_time_zone_utc_offset=-7 +County "CO, Prowers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800990.epw site_zip_code=81052 site_time_zone_utc_offset=-7 +County "CO, Pueblo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801010.epw site_zip_code=81001 site_time_zone_utc_offset=-7 +County "CO, Rio Blanco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801030.epw site_zip_code=81648 site_time_zone_utc_offset=-7 +County "CO, Rio Grande County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801050.epw site_zip_code=81144 site_time_zone_utc_offset=-7 +County "CO, Routt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801070.epw site_zip_code=80487 site_time_zone_utc_offset=-7 +County "CO, Saguache County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801090.epw site_zip_code=81125 site_time_zone_utc_offset=-7 +County "CO, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801110.epw site_zip_code=81433 site_time_zone_utc_offset=-7 +County "CO, San Miguel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801130.epw site_zip_code=81435 site_time_zone_utc_offset=-7 +County "CO, Sedgwick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801150.epw site_zip_code=80737 site_time_zone_utc_offset=-7 +County "CO, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801170.epw site_zip_code=80424 site_time_zone_utc_offset=-7 +County "CO, Teller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801190.epw site_zip_code=80863 site_time_zone_utc_offset=-7 +County "CO, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801210.epw site_zip_code=80720 site_time_zone_utc_offset=-7 +County "CO, Weld County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801230.epw site_zip_code=80634 site_time_zone_utc_offset=-7 +County "CO, Yuma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801250.epw site_zip_code=80759 site_time_zone_utc_offset=-7 +County "CT, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900010.epw site_zip_code=06902 site_time_zone_utc_offset=-5 +County "CT, Hartford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900030.epw site_zip_code=06010 site_time_zone_utc_offset=-5 +County "CT, Litchfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900050.epw site_zip_code=06790 site_time_zone_utc_offset=-5 +County "CT, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900070.epw site_zip_code=06457 site_time_zone_utc_offset=-5 +County "CT, New Haven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900090.epw site_zip_code=06516 site_time_zone_utc_offset=-5 +County "CT, New London County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900110.epw site_zip_code=06360 site_time_zone_utc_offset=-5 +County "CT, Tolland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900130.epw site_zip_code=06066 site_time_zone_utc_offset=-5 +County "CT, Windham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900150.epw site_zip_code=06226 site_time_zone_utc_offset=-5 +County "DC, District of Columbia" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1100010.epw site_zip_code=20002 site_time_zone_utc_offset=-5 +County "DE, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000010.epw site_zip_code=19904 site_time_zone_utc_offset=-5 +County "DE, New Castle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000030.epw site_zip_code=19720 site_time_zone_utc_offset=-5 +County "DE, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000050.epw site_zip_code=19966 site_time_zone_utc_offset=-5 +County "FL, Alachua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200010.epw site_zip_code=32608 site_time_zone_utc_offset=-5 +County "FL, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200030.epw site_zip_code=32063 site_time_zone_utc_offset=-5 +County "FL, Bay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200050.epw site_zip_code=32404 site_time_zone_utc_offset=-6 +County "FL, Bradford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200070.epw site_zip_code=32091 site_time_zone_utc_offset=-5 +County "FL, Brevard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200090.epw site_zip_code=32940 site_time_zone_utc_offset=-5 +County "FL, Broward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200110.epw site_zip_code=33027 site_time_zone_utc_offset=-5 +County "FL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200130.epw site_zip_code=32424 site_time_zone_utc_offset=-6 +County "FL, Charlotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200150.epw site_zip_code=33950 site_time_zone_utc_offset=-5 +County "FL, Citrus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200170.epw site_zip_code=34446 site_time_zone_utc_offset=-5 +County "FL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200190.epw site_zip_code=32068 site_time_zone_utc_offset=-5 +County "FL, Collier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200210.epw site_zip_code=34112 site_time_zone_utc_offset=-5 +County "FL, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200230.epw site_zip_code=32025 site_time_zone_utc_offset=-5 +County "FL, DeSoto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200270.epw site_zip_code=34266 site_time_zone_utc_offset=-5 +County "FL, Dixie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200290.epw site_zip_code=32680 site_time_zone_utc_offset=-5 +County "FL, Duval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200310.epw site_zip_code=32256 site_time_zone_utc_offset=-5 +County "FL, Escambia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200330.epw site_zip_code=32507 site_time_zone_utc_offset=-6 +County "FL, Flagler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200350.epw site_zip_code=32137 site_time_zone_utc_offset=-5 +County "FL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200370.epw site_zip_code=32328 site_time_zone_utc_offset=-5 +County "FL, Gadsden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200390.epw site_zip_code=32351 site_time_zone_utc_offset=-5 +County "FL, Gilchrist County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200410.epw site_zip_code=32693 site_time_zone_utc_offset=-5 +County "FL, Glades County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200430.epw site_zip_code=33471 site_time_zone_utc_offset=-5 +County "FL, Gulf County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200450.epw site_zip_code=32456 site_time_zone_utc_offset=-6 +County "FL, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200470.epw site_zip_code=32052 site_time_zone_utc_offset=-5 +County "FL, Hardee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200490.epw site_zip_code=33873 site_time_zone_utc_offset=-5 +County "FL, Hendry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200510.epw site_zip_code=33440 site_time_zone_utc_offset=-5 +County "FL, Hernando County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200530.epw site_zip_code=34609 site_time_zone_utc_offset=-5 +County "FL, Highlands County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200550.epw site_zip_code=33870 site_time_zone_utc_offset=-5 +County "FL, Hillsborough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200570.epw site_zip_code=33647 site_time_zone_utc_offset=-5 +County "FL, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200590.epw site_zip_code=32425 site_time_zone_utc_offset=-6 +County "FL, Indian River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200610.epw site_zip_code=32958 site_time_zone_utc_offset=-5 +County "FL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200630.epw site_zip_code=32446 site_time_zone_utc_offset=-6 +County "FL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200650.epw site_zip_code=32344 site_time_zone_utc_offset=-5 +County "FL, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200670.epw site_zip_code=32066 site_time_zone_utc_offset=-5 +County "FL, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200690.epw site_zip_code=34711 site_time_zone_utc_offset=-5 +County "FL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200710.epw site_zip_code=34135 site_time_zone_utc_offset=-5 +County "FL, Leon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200730.epw site_zip_code=32303 site_time_zone_utc_offset=-5 +County "FL, Levy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200750.epw site_zip_code=32696 site_time_zone_utc_offset=-5 +County "FL, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200770.epw site_zip_code=32321 site_time_zone_utc_offset=-5 +County "FL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200790.epw site_zip_code=32340 site_time_zone_utc_offset=-5 +County "FL, Manatee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200810.epw site_zip_code=34221 site_time_zone_utc_offset=-5 +County "FL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200830.epw site_zip_code=34491 site_time_zone_utc_offset=-5 +County "FL, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200850.epw site_zip_code=34997 site_time_zone_utc_offset=-5 +County "FL, Miami-Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200860.epw site_zip_code=33160 site_time_zone_utc_offset=-5 +County "FL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200870.epw site_zip_code=33040 site_time_zone_utc_offset=-5 +County "FL, Nassau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200890.epw site_zip_code=32034 site_time_zone_utc_offset=-5 +County "FL, Okaloosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200910.epw site_zip_code=32541 site_time_zone_utc_offset=-6 +County "FL, Okeechobee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200930.epw site_zip_code=34974 site_time_zone_utc_offset=-5 +County "FL, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200950.epw site_zip_code=34787 site_time_zone_utc_offset=-5 +County "FL, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200970.epw site_zip_code=34746 site_time_zone_utc_offset=-5 +County "FL, Palm Beach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200990.epw site_zip_code=33411 site_time_zone_utc_offset=-5 +County "FL, Pasco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201010.epw site_zip_code=34668 site_time_zone_utc_offset=-5 +County "FL, Pinellas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201030.epw site_zip_code=34698 site_time_zone_utc_offset=-5 +County "FL, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201050.epw site_zip_code=33810 site_time_zone_utc_offset=-5 +County "FL, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201070.epw site_zip_code=32177 site_time_zone_utc_offset=-5 +County "FL, Santa Rosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201130.epw site_zip_code=32566 site_time_zone_utc_offset=-6 +County "FL, Sarasota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201150.epw site_zip_code=34293 site_time_zone_utc_offset=-5 +County "FL, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201170.epw site_zip_code=32771 site_time_zone_utc_offset=-5 +County "FL, St. Johns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201090.epw site_zip_code=32259 site_time_zone_utc_offset=-5 +County "FL, St. Lucie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201110.epw site_zip_code=34953 site_time_zone_utc_offset=-5 +County "FL, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201190.epw site_zip_code=32162 site_time_zone_utc_offset=-5 +County "FL, Suwannee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201210.epw site_zip_code=32060 site_time_zone_utc_offset=-5 +County "FL, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201230.epw site_zip_code=32348 site_time_zone_utc_offset=-5 +County "FL, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201250.epw site_zip_code=32054 site_time_zone_utc_offset=-5 +County "FL, Volusia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201270.epw site_zip_code=32174 site_time_zone_utc_offset=-5 +County "FL, Wakulla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201290.epw site_zip_code=32327 site_time_zone_utc_offset=-5 +County "FL, Walton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201310.epw site_zip_code=32459 site_time_zone_utc_offset=-6 +County "FL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201330.epw site_zip_code=32428 site_time_zone_utc_offset=-6 +County "GA, Appling County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300010.epw site_zip_code=31513 site_time_zone_utc_offset=-5 +County "GA, Atkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300030.epw site_zip_code=31642 site_time_zone_utc_offset=-5 +County "GA, Bacon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300050.epw site_zip_code=31510 site_time_zone_utc_offset=-5 +County "GA, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300070.epw site_zip_code=39870 site_time_zone_utc_offset=-5 +County "GA, Baldwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300090.epw site_zip_code=31061 site_time_zone_utc_offset=-5 +County "GA, Banks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300110.epw site_zip_code=30547 site_time_zone_utc_offset=-5 +County "GA, Barrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300130.epw site_zip_code=30680 site_time_zone_utc_offset=-5 +County "GA, Bartow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300150.epw site_zip_code=30120 site_time_zone_utc_offset=-5 +County "GA, Ben Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300170.epw site_zip_code=31750 site_time_zone_utc_offset=-5 +County "GA, Berrien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300190.epw site_zip_code=31639 site_time_zone_utc_offset=-5 +County "GA, Bibb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300210.epw site_zip_code=31204 site_time_zone_utc_offset=-5 +County "GA, Bleckley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300230.epw site_zip_code=31014 site_time_zone_utc_offset=-5 +County "GA, Brantley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300250.epw site_zip_code=31553 site_time_zone_utc_offset=-5 +County "GA, Brooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300270.epw site_zip_code=31643 site_time_zone_utc_offset=-5 +County "GA, Bryan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300290.epw site_zip_code=31324 site_time_zone_utc_offset=-5 +County "GA, Bulloch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300310.epw site_zip_code=30458 site_time_zone_utc_offset=-5 +County "GA, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300330.epw site_zip_code=30830 site_time_zone_utc_offset=-5 +County "GA, Butts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300350.epw site_zip_code=30233 site_time_zone_utc_offset=-5 +County "GA, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300370.epw site_zip_code=39846 site_time_zone_utc_offset=-5 +County "GA, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300390.epw site_zip_code=31558 site_time_zone_utc_offset=-5 +County "GA, Candler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300430.epw site_zip_code=30439 site_time_zone_utc_offset=-5 +County "GA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300450.epw site_zip_code=30117 site_time_zone_utc_offset=-5 +County "GA, Catoosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300470.epw site_zip_code=30736 site_time_zone_utc_offset=-5 +County "GA, Charlton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300490.epw site_zip_code=31537 site_time_zone_utc_offset=-5 +County "GA, Chatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300510.epw site_zip_code=31419 site_time_zone_utc_offset=-5 +County "GA, Chattahoochee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300530.epw site_zip_code=31905 site_time_zone_utc_offset=-5 +County "GA, Chattooga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300550.epw site_zip_code=30747 site_time_zone_utc_offset=-5 +County "GA, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300570.epw site_zip_code=30188 site_time_zone_utc_offset=-5 +County "GA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300590.epw site_zip_code=30606 site_time_zone_utc_offset=-5 +County "GA, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300610.epw site_zip_code=39851 site_time_zone_utc_offset=-5 +County "GA, Clayton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300630.epw site_zip_code=30236 site_time_zone_utc_offset=-5 +County "GA, Clinch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300650.epw site_zip_code=31634 site_time_zone_utc_offset=-5 +County "GA, Cobb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300670.epw site_zip_code=30080 site_time_zone_utc_offset=-5 +County "GA, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300690.epw site_zip_code=31533 site_time_zone_utc_offset=-5 +County "GA, Colquitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300710.epw site_zip_code=31768 site_time_zone_utc_offset=-5 +County "GA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300730.epw site_zip_code=30809 site_time_zone_utc_offset=-5 +County "GA, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300750.epw site_zip_code=31620 site_time_zone_utc_offset=-5 +County "GA, Coweta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300770.epw site_zip_code=30263 site_time_zone_utc_offset=-5 +County "GA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300790.epw site_zip_code=31078 site_time_zone_utc_offset=-5 +County "GA, Crisp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300810.epw site_zip_code=31015 site_time_zone_utc_offset=-5 +County "GA, Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300830.epw site_zip_code=30752 site_time_zone_utc_offset=-5 +County "GA, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300850.epw site_zip_code=30534 site_time_zone_utc_offset=-5 +County "GA, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300890.epw site_zip_code=30058 site_time_zone_utc_offset=-5 +County "GA, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300870.epw site_zip_code=39819 site_time_zone_utc_offset=-5 +County "GA, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300910.epw site_zip_code=31023 site_time_zone_utc_offset=-5 +County "GA, Dooly County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300930.epw site_zip_code=31092 site_time_zone_utc_offset=-5 +County "GA, Dougherty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300950.epw site_zip_code=31705 site_time_zone_utc_offset=-5 +County "GA, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300970.epw site_zip_code=30135 site_time_zone_utc_offset=-5 +County "GA, Early County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300990.epw site_zip_code=39823 site_time_zone_utc_offset=-5 +County "GA, Echols County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301010.epw site_zip_code=31636 site_time_zone_utc_offset=-5 +County "GA, Effingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301030.epw site_zip_code=31326 site_time_zone_utc_offset=-5 +County "GA, Elbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301050.epw site_zip_code=30635 site_time_zone_utc_offset=-5 +County "GA, Emanuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301070.epw site_zip_code=30401 site_time_zone_utc_offset=-5 +County "GA, Evans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301090.epw site_zip_code=30417 site_time_zone_utc_offset=-5 +County "GA, Fannin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301110.epw site_zip_code=30513 site_time_zone_utc_offset=-5 +County "GA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301130.epw site_zip_code=30269 site_time_zone_utc_offset=-5 +County "GA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301150.epw site_zip_code=30165 site_time_zone_utc_offset=-5 +County "GA, Forsyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301170.epw site_zip_code=30040 site_time_zone_utc_offset=-5 +County "GA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301190.epw site_zip_code=30553 site_time_zone_utc_offset=-5 +County "GA, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301210.epw site_zip_code=30318 site_time_zone_utc_offset=-5 +County "GA, Gilmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301230.epw site_zip_code=30540 site_time_zone_utc_offset=-5 +County "GA, Glascock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301250.epw site_zip_code=30810 site_time_zone_utc_offset=-5 +County "GA, Glynn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301270.epw site_zip_code=31525 site_time_zone_utc_offset=-5 +County "GA, Gordon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301290.epw site_zip_code=30701 site_time_zone_utc_offset=-5 +County "GA, Grady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301310.epw site_zip_code=39828 site_time_zone_utc_offset=-5 +County "GA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301330.epw site_zip_code=30642 site_time_zone_utc_offset=-5 +County "GA, Gwinnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301350.epw site_zip_code=30044 site_time_zone_utc_offset=-5 +County "GA, Habersham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301370.epw site_zip_code=30531 site_time_zone_utc_offset=-5 +County "GA, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301390.epw site_zip_code=30542 site_time_zone_utc_offset=-5 +County "GA, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301410.epw site_zip_code=31087 site_time_zone_utc_offset=-5 +County "GA, Haralson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301430.epw site_zip_code=30110 site_time_zone_utc_offset=-5 +County "GA, Harris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301450.epw site_zip_code=31804 site_time_zone_utc_offset=-5 +County "GA, Hart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301470.epw site_zip_code=30643 site_time_zone_utc_offset=-5 +County "GA, Heard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301490.epw site_zip_code=30217 site_time_zone_utc_offset=-5 +County "GA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301510.epw site_zip_code=30253 site_time_zone_utc_offset=-5 +County "GA, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301530.epw site_zip_code=31088 site_time_zone_utc_offset=-5 +County "GA, Irwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301550.epw site_zip_code=31774 site_time_zone_utc_offset=-5 +County "GA, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301570.epw site_zip_code=30549 site_time_zone_utc_offset=-5 +County "GA, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301590.epw site_zip_code=31064 site_time_zone_utc_offset=-5 +County "GA, Jeff Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301610.epw site_zip_code=31539 site_time_zone_utc_offset=-5 +County "GA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301630.epw site_zip_code=30434 site_time_zone_utc_offset=-5 +County "GA, Jenkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301650.epw site_zip_code=30442 site_time_zone_utc_offset=-5 +County "GA, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301670.epw site_zip_code=31096 site_time_zone_utc_offset=-5 +County "GA, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301690.epw site_zip_code=31032 site_time_zone_utc_offset=-5 +County "GA, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301710.epw site_zip_code=30204 site_time_zone_utc_offset=-5 +County "GA, Lanier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301730.epw site_zip_code=31635 site_time_zone_utc_offset=-5 +County "GA, Laurens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301750.epw site_zip_code=31021 site_time_zone_utc_offset=-5 +County "GA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301770.epw site_zip_code=31763 site_time_zone_utc_offset=-5 +County "GA, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301790.epw site_zip_code=31313 site_time_zone_utc_offset=-5 +County "GA, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301810.epw site_zip_code=30817 site_time_zone_utc_offset=-5 +County "GA, Long County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301830.epw site_zip_code=31316 site_time_zone_utc_offset=-5 +County "GA, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301850.epw site_zip_code=31601 site_time_zone_utc_offset=-5 +County "GA, Lumpkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301870.epw site_zip_code=30533 site_time_zone_utc_offset=-5 +County "GA, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301930.epw site_zip_code=31063 site_time_zone_utc_offset=-5 +County "GA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301950.epw site_zip_code=30633 site_time_zone_utc_offset=-5 +County "GA, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301970.epw site_zip_code=31803 site_time_zone_utc_offset=-5 +County "GA, McDuffie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301890.epw site_zip_code=30824 site_time_zone_utc_offset=-5 +County "GA, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301910.epw site_zip_code=31331 site_time_zone_utc_offset=-5 +County "GA, Meriwether County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301990.epw site_zip_code=31816 site_time_zone_utc_offset=-5 +County "GA, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302010.epw site_zip_code=39837 site_time_zone_utc_offset=-5 +County "GA, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302050.epw site_zip_code=31730 site_time_zone_utc_offset=-5 +County "GA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302070.epw site_zip_code=31029 site_time_zone_utc_offset=-5 +County "GA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302090.epw site_zip_code=30445 site_time_zone_utc_offset=-5 +County "GA, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302110.epw site_zip_code=30650 site_time_zone_utc_offset=-5 +County "GA, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302130.epw site_zip_code=30705 site_time_zone_utc_offset=-5 +County "GA, Muscogee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302150.epw site_zip_code=31907 site_time_zone_utc_offset=-5 +County "GA, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302170.epw site_zip_code=30016 site_time_zone_utc_offset=-5 +County "GA, Oconee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302190.epw site_zip_code=30677 site_time_zone_utc_offset=-5 +County "GA, Oglethorpe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302210.epw site_zip_code=30683 site_time_zone_utc_offset=-5 +County "GA, Paulding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302230.epw site_zip_code=30132 site_time_zone_utc_offset=-5 +County "GA, Peach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302250.epw site_zip_code=31030 site_time_zone_utc_offset=-5 +County "GA, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302270.epw site_zip_code=30143 site_time_zone_utc_offset=-5 +County "GA, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302290.epw site_zip_code=31516 site_time_zone_utc_offset=-5 +County "GA, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302310.epw site_zip_code=30292 site_time_zone_utc_offset=-5 +County "GA, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302330.epw site_zip_code=30125 site_time_zone_utc_offset=-5 +County "GA, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302350.epw site_zip_code=31036 site_time_zone_utc_offset=-5 +County "GA, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302370.epw site_zip_code=31024 site_time_zone_utc_offset=-5 +County "GA, Quitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302390.epw site_zip_code=39854 site_time_zone_utc_offset=-5 +County "GA, Rabun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302410.epw site_zip_code=30525 site_time_zone_utc_offset=-5 +County "GA, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302430.epw site_zip_code=39840 site_time_zone_utc_offset=-5 +County "GA, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302450.epw site_zip_code=30909 site_time_zone_utc_offset=-5 +County "GA, Rockdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302470.epw site_zip_code=30094 site_time_zone_utc_offset=-5 +County "GA, Schley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302490.epw site_zip_code=31806 site_time_zone_utc_offset=-5 +County "GA, Screven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302510.epw site_zip_code=30467 site_time_zone_utc_offset=-5 +County "GA, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302530.epw site_zip_code=39845 site_time_zone_utc_offset=-5 +County "GA, Spalding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302550.epw site_zip_code=30223 site_time_zone_utc_offset=-5 +County "GA, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302570.epw site_zip_code=30577 site_time_zone_utc_offset=-5 +County "GA, Stewart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302590.epw site_zip_code=31825 site_time_zone_utc_offset=-5 +County "GA, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302610.epw site_zip_code=31709 site_time_zone_utc_offset=-5 +County "GA, Talbot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302630.epw site_zip_code=31827 site_time_zone_utc_offset=-5 +County "GA, Taliaferro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302650.epw site_zip_code=30631 site_time_zone_utc_offset=-5 +County "GA, Tattnall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302670.epw site_zip_code=30427 site_time_zone_utc_offset=-5 +County "GA, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302690.epw site_zip_code=31006 site_time_zone_utc_offset=-5 +County "GA, Telfair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302710.epw site_zip_code=31055 site_time_zone_utc_offset=-5 +County "GA, Terrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302730.epw site_zip_code=39842 site_time_zone_utc_offset=-5 +County "GA, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302750.epw site_zip_code=31792 site_time_zone_utc_offset=-5 +County "GA, Tift County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302770.epw site_zip_code=31794 site_time_zone_utc_offset=-5 +County "GA, Toombs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302790.epw site_zip_code=30474 site_time_zone_utc_offset=-5 +County "GA, Towns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302810.epw site_zip_code=30546 site_time_zone_utc_offset=-5 +County "GA, Treutlen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302830.epw site_zip_code=30457 site_time_zone_utc_offset=-5 +County "GA, Troup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302850.epw site_zip_code=30241 site_time_zone_utc_offset=-5 +County "GA, Turner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302870.epw site_zip_code=31714 site_time_zone_utc_offset=-5 +County "GA, Twiggs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302890.epw site_zip_code=31044 site_time_zone_utc_offset=-5 +County "GA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302910.epw site_zip_code=30512 site_time_zone_utc_offset=-5 +County "GA, Upson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302930.epw site_zip_code=30286 site_time_zone_utc_offset=-5 +County "GA, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302950.epw site_zip_code=30741 site_time_zone_utc_offset=-5 +County "GA, Walton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302970.epw site_zip_code=30052 site_time_zone_utc_offset=-5 +County "GA, Ware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302990.epw site_zip_code=31503 site_time_zone_utc_offset=-5 +County "GA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303010.epw site_zip_code=30828 site_time_zone_utc_offset=-5 +County "GA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303030.epw site_zip_code=31082 site_time_zone_utc_offset=-5 +County "GA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303050.epw site_zip_code=31545 site_time_zone_utc_offset=-5 +County "GA, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303070.epw site_zip_code=31824 site_time_zone_utc_offset=-5 +County "GA, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303090.epw site_zip_code=30428 site_time_zone_utc_offset=-5 +County "GA, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303110.epw site_zip_code=30528 site_time_zone_utc_offset=-5 +County "GA, Whitfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303130.epw site_zip_code=30721 site_time_zone_utc_offset=-5 +County "GA, Wilcox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303150.epw site_zip_code=31001 site_time_zone_utc_offset=-5 +County "GA, Wilkes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303170.epw site_zip_code=30673 site_time_zone_utc_offset=-5 +County "GA, Wilkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303190.epw site_zip_code=31031 site_time_zone_utc_offset=-5 +County "GA, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303210.epw site_zip_code=31791 site_time_zone_utc_offset=-5 +County "HI, Hawaii County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500010.epw site_zip_code=96721 site_time_zone_utc_offset=-10 +County "HI, Honolulu County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500030.epw site_zip_code=96813 site_time_zone_utc_offset=-10 +County "HI, Kalawao County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500050.epw site_zip_code=96742 site_time_zone_utc_offset=-10 +County "HI, Kauai County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500070.epw site_zip_code=96746 site_time_zone_utc_offset=-10 +County "HI, Maui County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500090.epw site_zip_code=96793 site_time_zone_utc_offset=-10 +County "IA, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900010.epw site_zip_code=50849 site_time_zone_utc_offset=-6 +County "IA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900030.epw site_zip_code=50841 site_time_zone_utc_offset=-6 +County "IA, Allamakee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900050.epw site_zip_code=52172 site_time_zone_utc_offset=-6 +County "IA, Appanoose County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900070.epw site_zip_code=52544 site_time_zone_utc_offset=-6 +County "IA, Audubon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900090.epw site_zip_code=50025 site_time_zone_utc_offset=-6 +County "IA, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900110.epw site_zip_code=52349 site_time_zone_utc_offset=-6 +County "IA, Black Hawk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900130.epw site_zip_code=50613 site_time_zone_utc_offset=-6 +County "IA, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900150.epw site_zip_code=50036 site_time_zone_utc_offset=-6 +County "IA, Bremer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900170.epw site_zip_code=50677 site_time_zone_utc_offset=-6 +County "IA, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900190.epw site_zip_code=50644 site_time_zone_utc_offset=-6 +County "IA, Buena Vista County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900210.epw site_zip_code=50588 site_time_zone_utc_offset=-6 +County "IA, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900230.epw site_zip_code=50665 site_time_zone_utc_offset=-6 +County "IA, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900250.epw site_zip_code=50563 site_time_zone_utc_offset=-6 +County "IA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900270.epw site_zip_code=51401 site_time_zone_utc_offset=-6 +County "IA, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900290.epw site_zip_code=50022 site_time_zone_utc_offset=-6 +County "IA, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900310.epw site_zip_code=52772 site_time_zone_utc_offset=-6 +County "IA, Cerro Gordo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900330.epw site_zip_code=50401 site_time_zone_utc_offset=-6 +County "IA, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900350.epw site_zip_code=51012 site_time_zone_utc_offset=-6 +County "IA, Chickasaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900370.epw site_zip_code=50659 site_time_zone_utc_offset=-6 +County "IA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900390.epw site_zip_code=50213 site_time_zone_utc_offset=-6 +County "IA, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900410.epw site_zip_code=51301 site_time_zone_utc_offset=-6 +County "IA, Clayton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900430.epw site_zip_code=52052 site_time_zone_utc_offset=-6 +County "IA, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900450.epw site_zip_code=52732 site_time_zone_utc_offset=-6 +County "IA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900470.epw site_zip_code=51442 site_time_zone_utc_offset=-6 +County "IA, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900490.epw site_zip_code=50263 site_time_zone_utc_offset=-6 +County "IA, Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900510.epw site_zip_code=52537 site_time_zone_utc_offset=-6 +County "IA, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900530.epw site_zip_code=50144 site_time_zone_utc_offset=-6 +County "IA, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900550.epw site_zip_code=52057 site_time_zone_utc_offset=-6 +County "IA, Des Moines County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900570.epw site_zip_code=52601 site_time_zone_utc_offset=-6 +County "IA, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900590.epw site_zip_code=51360 site_time_zone_utc_offset=-6 +County "IA, Dubuque County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900610.epw site_zip_code=52001 site_time_zone_utc_offset=-6 +County "IA, Emmet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900630.epw site_zip_code=51334 site_time_zone_utc_offset=-6 +County "IA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900650.epw site_zip_code=50662 site_time_zone_utc_offset=-6 +County "IA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900670.epw site_zip_code=50616 site_time_zone_utc_offset=-6 +County "IA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900690.epw site_zip_code=50441 site_time_zone_utc_offset=-6 +County "IA, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900710.epw site_zip_code=51652 site_time_zone_utc_offset=-6 +County "IA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900730.epw site_zip_code=50129 site_time_zone_utc_offset=-6 +County "IA, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900750.epw site_zip_code=50638 site_time_zone_utc_offset=-6 +County "IA, Guthrie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900770.epw site_zip_code=50216 site_time_zone_utc_offset=-6 +County "IA, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900790.epw site_zip_code=50595 site_time_zone_utc_offset=-6 +County "IA, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900810.epw site_zip_code=50438 site_time_zone_utc_offset=-6 +County "IA, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900830.epw site_zip_code=50126 site_time_zone_utc_offset=-6 +County "IA, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900850.epw site_zip_code=51555 site_time_zone_utc_offset=-6 +County "IA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900870.epw site_zip_code=52641 site_time_zone_utc_offset=-6 +County "IA, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900890.epw site_zip_code=52136 site_time_zone_utc_offset=-6 +County "IA, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900910.epw site_zip_code=50548 site_time_zone_utc_offset=-6 +County "IA, Ida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900930.epw site_zip_code=51445 site_time_zone_utc_offset=-6 +County "IA, Iowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900950.epw site_zip_code=52361 site_time_zone_utc_offset=-6 +County "IA, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900970.epw site_zip_code=52060 site_time_zone_utc_offset=-6 +County "IA, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900990.epw site_zip_code=50208 site_time_zone_utc_offset=-6 +County "IA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901010.epw site_zip_code=52556 site_time_zone_utc_offset=-6 +County "IA, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901030.epw site_zip_code=52240 site_time_zone_utc_offset=-6 +County "IA, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901050.epw site_zip_code=52205 site_time_zone_utc_offset=-6 +County "IA, Keokuk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901070.epw site_zip_code=52591 site_time_zone_utc_offset=-6 +County "IA, Kossuth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901090.epw site_zip_code=50511 site_time_zone_utc_offset=-6 +County "IA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901110.epw site_zip_code=52627 site_time_zone_utc_offset=-6 +County "IA, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901130.epw site_zip_code=52404 site_time_zone_utc_offset=-6 +County "IA, Louisa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901150.epw site_zip_code=52653 site_time_zone_utc_offset=-6 +County "IA, Lucas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901170.epw site_zip_code=50049 site_time_zone_utc_offset=-6 +County "IA, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901190.epw site_zip_code=51246 site_time_zone_utc_offset=-6 +County "IA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901210.epw site_zip_code=50273 site_time_zone_utc_offset=-6 +County "IA, Mahaska County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901230.epw site_zip_code=52577 site_time_zone_utc_offset=-6 +County "IA, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901250.epw site_zip_code=50219 site_time_zone_utc_offset=-6 +County "IA, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901270.epw site_zip_code=50158 site_time_zone_utc_offset=-6 +County "IA, Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901290.epw site_zip_code=51534 site_time_zone_utc_offset=-6 +County "IA, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901310.epw site_zip_code=50461 site_time_zone_utc_offset=-6 +County "IA, Monona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901330.epw site_zip_code=51040 site_time_zone_utc_offset=-6 +County "IA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901350.epw site_zip_code=52531 site_time_zone_utc_offset=-6 +County "IA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901370.epw site_zip_code=51566 site_time_zone_utc_offset=-6 +County "IA, Muscatine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901390.epw site_zip_code=52761 site_time_zone_utc_offset=-6 +County "IA, O'Brien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901410.epw site_zip_code=51201 site_time_zone_utc_offset=-6 +County "IA, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901430.epw site_zip_code=51249 site_time_zone_utc_offset=-6 +County "IA, Page County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901450.epw site_zip_code=51632 site_time_zone_utc_offset=-6 +County "IA, Palo Alto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901470.epw site_zip_code=50536 site_time_zone_utc_offset=-6 +County "IA, Plymouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901490.epw site_zip_code=51031 site_time_zone_utc_offset=-6 +County "IA, Pocahontas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901510.epw site_zip_code=50574 site_time_zone_utc_offset=-6 +County "IA, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901530.epw site_zip_code=50023 site_time_zone_utc_offset=-6 +County "IA, Pottawattamie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901550.epw site_zip_code=51503 site_time_zone_utc_offset=-6 +County "IA, Poweshiek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901570.epw site_zip_code=50112 site_time_zone_utc_offset=-6 +County "IA, Ringgold County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901590.epw site_zip_code=50854 site_time_zone_utc_offset=-6 +County "IA, Sac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901610.epw site_zip_code=50583 site_time_zone_utc_offset=-6 +County "IA, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901630.epw site_zip_code=52722 site_time_zone_utc_offset=-6 +County "IA, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901650.epw site_zip_code=51537 site_time_zone_utc_offset=-6 +County "IA, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901670.epw site_zip_code=51250 site_time_zone_utc_offset=-6 +County "IA, Story County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901690.epw site_zip_code=50010 site_time_zone_utc_offset=-6 +County "IA, Tama County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901710.epw site_zip_code=52339 site_time_zone_utc_offset=-6 +County "IA, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901730.epw site_zip_code=50833 site_time_zone_utc_offset=-6 +County "IA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901750.epw site_zip_code=50801 site_time_zone_utc_offset=-6 +County "IA, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901770.epw site_zip_code=52565 site_time_zone_utc_offset=-6 +County "IA, Wapello County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901790.epw site_zip_code=52501 site_time_zone_utc_offset=-6 +County "IA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901810.epw site_zip_code=50125 site_time_zone_utc_offset=-6 +County "IA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901830.epw site_zip_code=52353 site_time_zone_utc_offset=-6 +County "IA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901850.epw site_zip_code=50060 site_time_zone_utc_offset=-6 +County "IA, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901870.epw site_zip_code=50501 site_time_zone_utc_offset=-6 +County "IA, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901890.epw site_zip_code=50436 site_time_zone_utc_offset=-6 +County "IA, Winneshiek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901910.epw site_zip_code=52101 site_time_zone_utc_offset=-6 +County "IA, Woodbury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901930.epw site_zip_code=51106 site_time_zone_utc_offset=-6 +County "IA, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901950.epw site_zip_code=50459 site_time_zone_utc_offset=-6 +County "IA, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901970.epw site_zip_code=50533 site_time_zone_utc_offset=-6 +County "ID, Ada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600010.epw site_zip_code=83646 site_time_zone_utc_offset=-7 +County "ID, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600030.epw site_zip_code=83612 site_time_zone_utc_offset=-7 +County "ID, Bannock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600050.epw site_zip_code=83201 site_time_zone_utc_offset=-7 +County "ID, Bear Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600070.epw site_zip_code=83254 site_time_zone_utc_offset=-7 +County "ID, Benewah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600090.epw site_zip_code=83861 site_time_zone_utc_offset=-8 +County "ID, Bingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600110.epw site_zip_code=83221 site_time_zone_utc_offset=-7 +County "ID, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600130.epw site_zip_code=83333 site_time_zone_utc_offset=-7 +County "ID, Boise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600150.epw site_zip_code=83716 site_time_zone_utc_offset=-7 +County "ID, Bonner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600170.epw site_zip_code=83864 site_time_zone_utc_offset=-8 +County "ID, Bonneville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600190.epw site_zip_code=83401 site_time_zone_utc_offset=-7 +County "ID, Boundary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600210.epw site_zip_code=83805 site_time_zone_utc_offset=-8 +County "ID, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600230.epw site_zip_code=83213 site_time_zone_utc_offset=-7 +County "ID, Camas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600250.epw site_zip_code=83327 site_time_zone_utc_offset=-7 +County "ID, Canyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600270.epw site_zip_code=83686 site_time_zone_utc_offset=-7 +County "ID, Caribou County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600290.epw site_zip_code=83276 site_time_zone_utc_offset=-7 +County "ID, Cassia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600310.epw site_zip_code=83318 site_time_zone_utc_offset=-7 +County "ID, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600330.epw site_zip_code=83423 site_time_zone_utc_offset=-7 +County "ID, Clearwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600350.epw site_zip_code=83544 site_time_zone_utc_offset=-8 +County "ID, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600370.epw site_zip_code=83226 site_time_zone_utc_offset=-7 +County "ID, Elmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600390.epw site_zip_code=83647 site_time_zone_utc_offset=-7 +County "ID, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600410.epw site_zip_code=83263 site_time_zone_utc_offset=-7 +County "ID, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600430.epw site_zip_code=83445 site_time_zone_utc_offset=-7 +County "ID, Gem County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600450.epw site_zip_code=83617 site_time_zone_utc_offset=-7 +County "ID, Gooding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600470.epw site_zip_code=83330 site_time_zone_utc_offset=-7 +County "ID, Idaho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600490.epw site_zip_code=83530 site_time_zone_utc_offset=-8 +County "ID, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600510.epw site_zip_code=83442 site_time_zone_utc_offset=-7 +County "ID, Jerome County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600530.epw site_zip_code=83338 site_time_zone_utc_offset=-7 +County "ID, Kootenai County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600550.epw site_zip_code=83854 site_time_zone_utc_offset=-8 +County "ID, Latah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600570.epw site_zip_code=83843 site_time_zone_utc_offset=-8 +County "ID, Lemhi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600590.epw site_zip_code=83467 site_time_zone_utc_offset=-7 +County "ID, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600610.epw site_zip_code=83536 site_time_zone_utc_offset=-8 +County "ID, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600630.epw site_zip_code=83352 site_time_zone_utc_offset=-7 +County "ID, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600650.epw site_zip_code=83440 site_time_zone_utc_offset=-7 +County "ID, Minidoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600670.epw site_zip_code=83350 site_time_zone_utc_offset=-7 +County "ID, Nez Perce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600690.epw site_zip_code=83501 site_time_zone_utc_offset=-8 +County "ID, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600710.epw site_zip_code=83252 site_time_zone_utc_offset=-7 +County "ID, Owyhee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600730.epw site_zip_code=83628 site_time_zone_utc_offset=-7 +County "ID, Payette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600750.epw site_zip_code=83661 site_time_zone_utc_offset=-7 +County "ID, Power County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600770.epw site_zip_code=83211 site_time_zone_utc_offset=-7 +County "ID, Shoshone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600790.epw site_zip_code=83837 site_time_zone_utc_offset=-8 +County "ID, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600810.epw site_zip_code=83455 site_time_zone_utc_offset=-7 +County "ID, Twin Falls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600830.epw site_zip_code=83301 site_time_zone_utc_offset=-7 +County "ID, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600850.epw site_zip_code=83638 site_time_zone_utc_offset=-7 +County "ID, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600870.epw site_zip_code=83672 site_time_zone_utc_offset=-7 +County "IL, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700010.epw site_zip_code=62301 site_time_zone_utc_offset=-6 +County "IL, Alexander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700030.epw site_zip_code=62914 site_time_zone_utc_offset=-6 +County "IL, Bond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700050.epw site_zip_code=62246 site_time_zone_utc_offset=-6 +County "IL, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700070.epw site_zip_code=61008 site_time_zone_utc_offset=-6 +County "IL, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700090.epw site_zip_code=62353 site_time_zone_utc_offset=-6 +County "IL, Bureau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700110.epw site_zip_code=61356 site_time_zone_utc_offset=-6 +County "IL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700130.epw site_zip_code=62047 site_time_zone_utc_offset=-6 +County "IL, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700150.epw site_zip_code=61074 site_time_zone_utc_offset=-6 +County "IL, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700170.epw site_zip_code=62618 site_time_zone_utc_offset=-6 +County "IL, Champaign County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700190.epw site_zip_code=61820 site_time_zone_utc_offset=-6 +County "IL, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700210.epw site_zip_code=62568 site_time_zone_utc_offset=-6 +County "IL, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700230.epw site_zip_code=62441 site_time_zone_utc_offset=-6 +County "IL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700250.epw site_zip_code=62839 site_time_zone_utc_offset=-6 +County "IL, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700270.epw site_zip_code=62231 site_time_zone_utc_offset=-6 +County "IL, Coles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700290.epw site_zip_code=61938 site_time_zone_utc_offset=-6 +County "IL, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700310.epw site_zip_code=60657 site_time_zone_utc_offset=-6 +County "IL, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700330.epw site_zip_code=62454 site_time_zone_utc_offset=-6 +County "IL, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700350.epw site_zip_code=62428 site_time_zone_utc_offset=-6 +County "IL, De Witt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700390.epw site_zip_code=61727 site_time_zone_utc_offset=-6 +County "IL, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700370.epw site_zip_code=60115 site_time_zone_utc_offset=-6 +County "IL, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700410.epw site_zip_code=61953 site_time_zone_utc_offset=-6 +County "IL, DuPage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700430.epw site_zip_code=60148 site_time_zone_utc_offset=-6 +County "IL, Edgar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700450.epw site_zip_code=61944 site_time_zone_utc_offset=-6 +County "IL, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700470.epw site_zip_code=62806 site_time_zone_utc_offset=-6 +County "IL, Effingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700490.epw site_zip_code=62401 site_time_zone_utc_offset=-6 +County "IL, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700510.epw site_zip_code=62471 site_time_zone_utc_offset=-6 +County "IL, Ford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700530.epw site_zip_code=60957 site_time_zone_utc_offset=-6 +County "IL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700550.epw site_zip_code=62896 site_time_zone_utc_offset=-6 +County "IL, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700570.epw site_zip_code=61520 site_time_zone_utc_offset=-6 +County "IL, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700590.epw site_zip_code=62984 site_time_zone_utc_offset=-6 +County "IL, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700610.epw site_zip_code=62016 site_time_zone_utc_offset=-6 +County "IL, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700630.epw site_zip_code=60450 site_time_zone_utc_offset=-6 +County "IL, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700650.epw site_zip_code=62859 site_time_zone_utc_offset=-6 +County "IL, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700670.epw site_zip_code=62321 site_time_zone_utc_offset=-6 +County "IL, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700690.epw site_zip_code=62931 site_time_zone_utc_offset=-6 +County "IL, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700710.epw site_zip_code=61469 site_time_zone_utc_offset=-6 +County "IL, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700730.epw site_zip_code=61443 site_time_zone_utc_offset=-6 +County "IL, Iroquois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700750.epw site_zip_code=60970 site_time_zone_utc_offset=-6 +County "IL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700770.epw site_zip_code=62901 site_time_zone_utc_offset=-6 +County "IL, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700790.epw site_zip_code=62448 site_time_zone_utc_offset=-6 +County "IL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700810.epw site_zip_code=62864 site_time_zone_utc_offset=-6 +County "IL, Jersey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700830.epw site_zip_code=62052 site_time_zone_utc_offset=-6 +County "IL, Jo Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700850.epw site_zip_code=61036 site_time_zone_utc_offset=-6 +County "IL, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700870.epw site_zip_code=62995 site_time_zone_utc_offset=-6 +County "IL, Kane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700890.epw site_zip_code=60506 site_time_zone_utc_offset=-6 +County "IL, Kankakee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700910.epw site_zip_code=60901 site_time_zone_utc_offset=-6 +County "IL, Kendall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700930.epw site_zip_code=60543 site_time_zone_utc_offset=-6 +County "IL, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700950.epw site_zip_code=61401 site_time_zone_utc_offset=-6 +County "IL, LaSalle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700990.epw site_zip_code=61350 site_time_zone_utc_offset=-6 +County "IL, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700970.epw site_zip_code=60085 site_time_zone_utc_offset=-6 +County "IL, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701010.epw site_zip_code=62439 site_time_zone_utc_offset=-6 +County "IL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701030.epw site_zip_code=61021 site_time_zone_utc_offset=-6 +County "IL, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701050.epw site_zip_code=61764 site_time_zone_utc_offset=-6 +County "IL, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701070.epw site_zip_code=62656 site_time_zone_utc_offset=-6 +County "IL, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701150.epw site_zip_code=62521 site_time_zone_utc_offset=-6 +County "IL, Macoupin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701170.epw site_zip_code=62626 site_time_zone_utc_offset=-6 +County "IL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701190.epw site_zip_code=62040 site_time_zone_utc_offset=-6 +County "IL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701210.epw site_zip_code=62801 site_time_zone_utc_offset=-6 +County "IL, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701230.epw site_zip_code=61540 site_time_zone_utc_offset=-6 +County "IL, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701250.epw site_zip_code=62644 site_time_zone_utc_offset=-6 +County "IL, Massac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701270.epw site_zip_code=62960 site_time_zone_utc_offset=-6 +County "IL, McDonough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701090.epw site_zip_code=61455 site_time_zone_utc_offset=-6 +County "IL, McHenry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701110.epw site_zip_code=60014 site_time_zone_utc_offset=-6 +County "IL, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701130.epw site_zip_code=61761 site_time_zone_utc_offset=-6 +County "IL, Menard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701290.epw site_zip_code=62675 site_time_zone_utc_offset=-6 +County "IL, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701310.epw site_zip_code=61231 site_time_zone_utc_offset=-6 +County "IL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701330.epw site_zip_code=62298 site_time_zone_utc_offset=-6 +County "IL, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701350.epw site_zip_code=62056 site_time_zone_utc_offset=-6 +County "IL, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701370.epw site_zip_code=62650 site_time_zone_utc_offset=-6 +County "IL, Moultrie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701390.epw site_zip_code=61951 site_time_zone_utc_offset=-6 +County "IL, Ogle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701410.epw site_zip_code=61068 site_time_zone_utc_offset=-6 +County "IL, Peoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701430.epw site_zip_code=61604 site_time_zone_utc_offset=-6 +County "IL, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701450.epw site_zip_code=62832 site_time_zone_utc_offset=-6 +County "IL, Piatt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701470.epw site_zip_code=61856 site_time_zone_utc_offset=-6 +County "IL, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701490.epw site_zip_code=62363 site_time_zone_utc_offset=-6 +County "IL, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701510.epw site_zip_code=62938 site_time_zone_utc_offset=-6 +County "IL, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701530.epw site_zip_code=62964 site_time_zone_utc_offset=-6 +County "IL, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701550.epw site_zip_code=61326 site_time_zone_utc_offset=-6 +County "IL, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701570.epw site_zip_code=62286 site_time_zone_utc_offset=-6 +County "IL, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701590.epw site_zip_code=62450 site_time_zone_utc_offset=-6 +County "IL, Rock Island County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701610.epw site_zip_code=61265 site_time_zone_utc_offset=-6 +County "IL, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701650.epw site_zip_code=62946 site_time_zone_utc_offset=-6 +County "IL, Sangamon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701670.epw site_zip_code=62704 site_time_zone_utc_offset=-6 +County "IL, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701690.epw site_zip_code=62681 site_time_zone_utc_offset=-6 +County "IL, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701710.epw site_zip_code=62694 site_time_zone_utc_offset=-6 +County "IL, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701730.epw site_zip_code=62565 site_time_zone_utc_offset=-6 +County "IL, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701630.epw site_zip_code=62269 site_time_zone_utc_offset=-6 +County "IL, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701750.epw site_zip_code=61491 site_time_zone_utc_offset=-6 +County "IL, Stephenson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701770.epw site_zip_code=61032 site_time_zone_utc_offset=-6 +County "IL, Tazewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701790.epw site_zip_code=61554 site_time_zone_utc_offset=-6 +County "IL, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701810.epw site_zip_code=62906 site_time_zone_utc_offset=-6 +County "IL, Vermilion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701830.epw site_zip_code=61832 site_time_zone_utc_offset=-6 +County "IL, Wabash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701850.epw site_zip_code=62863 site_time_zone_utc_offset=-6 +County "IL, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701870.epw site_zip_code=61462 site_time_zone_utc_offset=-6 +County "IL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701890.epw site_zip_code=62263 site_time_zone_utc_offset=-6 +County "IL, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701910.epw site_zip_code=62837 site_time_zone_utc_offset=-6 +County "IL, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701930.epw site_zip_code=62821 site_time_zone_utc_offset=-6 +County "IL, Whiteside County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701950.epw site_zip_code=61081 site_time_zone_utc_offset=-6 +County "IL, Will County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701970.epw site_zip_code=60435 site_time_zone_utc_offset=-6 +County "IL, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701990.epw site_zip_code=62959 site_time_zone_utc_offset=-6 +County "IL, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1702010.epw site_zip_code=61107 site_time_zone_utc_offset=-6 +County "IL, Woodford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1702030.epw site_zip_code=61548 site_time_zone_utc_offset=-6 +County "IN, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800010.epw site_zip_code=46733 site_time_zone_utc_offset=-5 +County "IN, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800030.epw site_zip_code=46835 site_time_zone_utc_offset=-5 +County "IN, Bartholomew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800050.epw site_zip_code=47201 site_time_zone_utc_offset=-5 +County "IN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800070.epw site_zip_code=47944 site_time_zone_utc_offset=-5 +County "IN, Blackford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800090.epw site_zip_code=47348 site_time_zone_utc_offset=-5 +County "IN, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800110.epw site_zip_code=46077 site_time_zone_utc_offset=-5 +County "IN, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800130.epw site_zip_code=47448 site_time_zone_utc_offset=-5 +County "IN, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800150.epw site_zip_code=46923 site_time_zone_utc_offset=-5 +County "IN, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800170.epw site_zip_code=46947 site_time_zone_utc_offset=-5 +County "IN, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800190.epw site_zip_code=47130 site_time_zone_utc_offset=-5 +County "IN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800210.epw site_zip_code=47834 site_time_zone_utc_offset=-5 +County "IN, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800230.epw site_zip_code=46041 site_time_zone_utc_offset=-5 +County "IN, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800250.epw site_zip_code=47118 site_time_zone_utc_offset=-5 +County "IN, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800270.epw site_zip_code=47501 site_time_zone_utc_offset=-5 +County "IN, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800330.epw site_zip_code=46706 site_time_zone_utc_offset=-5 +County "IN, Dearborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800290.epw site_zip_code=47025 site_time_zone_utc_offset=-5 +County "IN, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800310.epw site_zip_code=47240 site_time_zone_utc_offset=-5 +County "IN, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800350.epw site_zip_code=47304 site_time_zone_utc_offset=-5 +County "IN, Dubois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800370.epw site_zip_code=47546 site_time_zone_utc_offset=-5 +County "IN, Elkhart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800390.epw site_zip_code=46514 site_time_zone_utc_offset=-5 +County "IN, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800410.epw site_zip_code=47331 site_time_zone_utc_offset=-5 +County "IN, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800430.epw site_zip_code=47150 site_time_zone_utc_offset=-5 +County "IN, Fountain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800450.epw site_zip_code=47918 site_time_zone_utc_offset=-5 +County "IN, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800470.epw site_zip_code=47012 site_time_zone_utc_offset=-5 +County "IN, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800490.epw site_zip_code=46975 site_time_zone_utc_offset=-5 +County "IN, Gibson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800510.epw site_zip_code=47670 site_time_zone_utc_offset=-6 +County "IN, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800530.epw site_zip_code=46953 site_time_zone_utc_offset=-5 +County "IN, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800550.epw site_zip_code=47441 site_time_zone_utc_offset=-5 +County "IN, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800570.epw site_zip_code=46032 site_time_zone_utc_offset=-5 +County "IN, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800590.epw site_zip_code=46140 site_time_zone_utc_offset=-5 +County "IN, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800610.epw site_zip_code=47112 site_time_zone_utc_offset=-5 +County "IN, Hendricks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800630.epw site_zip_code=46112 site_time_zone_utc_offset=-5 +County "IN, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800650.epw site_zip_code=47362 site_time_zone_utc_offset=-5 +County "IN, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800670.epw site_zip_code=46901 site_time_zone_utc_offset=-5 +County "IN, Huntington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800690.epw site_zip_code=46750 site_time_zone_utc_offset=-5 +County "IN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800710.epw site_zip_code=47274 site_time_zone_utc_offset=-5 +County "IN, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800730.epw site_zip_code=47978 site_time_zone_utc_offset=-6 +County "IN, Jay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800750.epw site_zip_code=47371 site_time_zone_utc_offset=-5 +County "IN, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800770.epw site_zip_code=47250 site_time_zone_utc_offset=-5 +County "IN, Jennings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800790.epw site_zip_code=47265 site_time_zone_utc_offset=-5 +County "IN, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800810.epw site_zip_code=46143 site_time_zone_utc_offset=-5 +County "IN, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800830.epw site_zip_code=47591 site_time_zone_utc_offset=-5 +County "IN, Kosciusko County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800850.epw site_zip_code=46580 site_time_zone_utc_offset=-5 +County "IN, LaGrange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800870.epw site_zip_code=46761 site_time_zone_utc_offset=-5 +County "IN, LaPorte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800910.epw site_zip_code=46360 site_time_zone_utc_offset=-6 +County "IN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800890.epw site_zip_code=46307 site_time_zone_utc_offset=-6 +County "IN, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800930.epw site_zip_code=47421 site_time_zone_utc_offset=-5 +County "IN, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800950.epw site_zip_code=46016 site_time_zone_utc_offset=-5 +County "IN, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800970.epw site_zip_code=46227 site_time_zone_utc_offset=-5 +County "IN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800990.epw site_zip_code=46563 site_time_zone_utc_offset=-5 +County "IN, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801010.epw site_zip_code=47581 site_time_zone_utc_offset=-5 +County "IN, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801030.epw site_zip_code=46970 site_time_zone_utc_offset=-5 +County "IN, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801050.epw site_zip_code=47401 site_time_zone_utc_offset=-5 +County "IN, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801070.epw site_zip_code=47933 site_time_zone_utc_offset=-5 +County "IN, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801090.epw site_zip_code=46151 site_time_zone_utc_offset=-5 +County "IN, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801110.epw site_zip_code=46349 site_time_zone_utc_offset=-6 +County "IN, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801130.epw site_zip_code=46755 site_time_zone_utc_offset=-5 +County "IN, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801150.epw site_zip_code=47040 site_time_zone_utc_offset=-5 +County "IN, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801170.epw site_zip_code=47454 site_time_zone_utc_offset=-5 +County "IN, Owen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801190.epw site_zip_code=47460 site_time_zone_utc_offset=-5 +County "IN, Parke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801210.epw site_zip_code=47872 site_time_zone_utc_offset=-5 +County "IN, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801230.epw site_zip_code=47586 site_time_zone_utc_offset=-6 +County "IN, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801250.epw site_zip_code=47567 site_time_zone_utc_offset=-5 +County "IN, Porter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801270.epw site_zip_code=46383 site_time_zone_utc_offset=-6 +County "IN, Posey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801290.epw site_zip_code=47620 site_time_zone_utc_offset=-6 +County "IN, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801310.epw site_zip_code=46996 site_time_zone_utc_offset=-5 +County "IN, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801330.epw site_zip_code=46135 site_time_zone_utc_offset=-5 +County "IN, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801350.epw site_zip_code=47394 site_time_zone_utc_offset=-5 +County "IN, Ripley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801370.epw site_zip_code=47006 site_time_zone_utc_offset=-5 +County "IN, Rush County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801390.epw site_zip_code=46173 site_time_zone_utc_offset=-5 +County "IN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801430.epw site_zip_code=47170 site_time_zone_utc_offset=-5 +County "IN, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801450.epw site_zip_code=46176 site_time_zone_utc_offset=-5 +County "IN, Spencer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801470.epw site_zip_code=47635 site_time_zone_utc_offset=-6 +County "IN, St. Joseph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801410.epw site_zip_code=46544 site_time_zone_utc_offset=-5 +County "IN, Starke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801490.epw site_zip_code=46534 site_time_zone_utc_offset=-6 +County "IN, Steuben County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801510.epw site_zip_code=46703 site_time_zone_utc_offset=-5 +County "IN, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801530.epw site_zip_code=47882 site_time_zone_utc_offset=-5 +County "IN, Switzerland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801550.epw site_zip_code=47043 site_time_zone_utc_offset=-5 +County "IN, Tippecanoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801570.epw site_zip_code=47906 site_time_zone_utc_offset=-5 +County "IN, Tipton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801590.epw site_zip_code=46072 site_time_zone_utc_offset=-5 +County "IN, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801610.epw site_zip_code=47353 site_time_zone_utc_offset=-5 +County "IN, Vanderburgh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801630.epw site_zip_code=47714 site_time_zone_utc_offset=-6 +County "IN, Vermillion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801650.epw site_zip_code=47842 site_time_zone_utc_offset=-5 +County "IN, Vigo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801670.epw site_zip_code=47802 site_time_zone_utc_offset=-5 +County "IN, Wabash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801690.epw site_zip_code=46992 site_time_zone_utc_offset=-5 +County "IN, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801710.epw site_zip_code=47993 site_time_zone_utc_offset=-5 +County "IN, Warrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801730.epw site_zip_code=47630 site_time_zone_utc_offset=-6 +County "IN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801750.epw site_zip_code=47167 site_time_zone_utc_offset=-5 +County "IN, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801770.epw site_zip_code=47374 site_time_zone_utc_offset=-5 +County "IN, Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801790.epw site_zip_code=46714 site_time_zone_utc_offset=-5 +County "IN, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801810.epw site_zip_code=47960 site_time_zone_utc_offset=-5 +County "IN, Whitley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801830.epw site_zip_code=46725 site_time_zone_utc_offset=-5 +County "KS, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000010.epw site_zip_code=66749 site_time_zone_utc_offset=-6 +County "KS, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000030.epw site_zip_code=66032 site_time_zone_utc_offset=-6 +County "KS, Atchison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000050.epw site_zip_code=66002 site_time_zone_utc_offset=-6 +County "KS, Barber County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000070.epw site_zip_code=67104 site_time_zone_utc_offset=-6 +County "KS, Barton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000090.epw site_zip_code=67530 site_time_zone_utc_offset=-6 +County "KS, Bourbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000110.epw site_zip_code=66701 site_time_zone_utc_offset=-6 +County "KS, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000130.epw site_zip_code=66434 site_time_zone_utc_offset=-6 +County "KS, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000150.epw site_zip_code=67042 site_time_zone_utc_offset=-6 +County "KS, Chase County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000170.epw site_zip_code=66845 site_time_zone_utc_offset=-6 +County "KS, Chautauqua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000190.epw site_zip_code=67361 site_time_zone_utc_offset=-6 +County "KS, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000210.epw site_zip_code=66713 site_time_zone_utc_offset=-6 +County "KS, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000230.epw site_zip_code=67756 site_time_zone_utc_offset=-6 +County "KS, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000250.epw site_zip_code=67865 site_time_zone_utc_offset=-6 +County "KS, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000270.epw site_zip_code=67432 site_time_zone_utc_offset=-6 +County "KS, Cloud County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000290.epw site_zip_code=66901 site_time_zone_utc_offset=-6 +County "KS, Coffey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000310.epw site_zip_code=66839 site_time_zone_utc_offset=-6 +County "KS, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000330.epw site_zip_code=67029 site_time_zone_utc_offset=-6 +County "KS, Cowley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000350.epw site_zip_code=67005 site_time_zone_utc_offset=-6 +County "KS, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000370.epw site_zip_code=66762 site_time_zone_utc_offset=-6 +County "KS, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000390.epw site_zip_code=67749 site_time_zone_utc_offset=-6 +County "KS, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000410.epw site_zip_code=67410 site_time_zone_utc_offset=-6 +County "KS, Doniphan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000430.epw site_zip_code=66090 site_time_zone_utc_offset=-6 +County "KS, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000450.epw site_zip_code=66049 site_time_zone_utc_offset=-6 +County "KS, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000470.epw site_zip_code=67547 site_time_zone_utc_offset=-6 +County "KS, Elk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000490.epw site_zip_code=67349 site_time_zone_utc_offset=-6 +County "KS, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000510.epw site_zip_code=67601 site_time_zone_utc_offset=-6 +County "KS, Ellsworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000530.epw site_zip_code=67439 site_time_zone_utc_offset=-6 +County "KS, Finney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000550.epw site_zip_code=67846 site_time_zone_utc_offset=-6 +County "KS, Ford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000570.epw site_zip_code=67801 site_time_zone_utc_offset=-6 +County "KS, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000590.epw site_zip_code=66067 site_time_zone_utc_offset=-6 +County "KS, Geary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000610.epw site_zip_code=66441 site_time_zone_utc_offset=-6 +County "KS, Gove County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000630.epw site_zip_code=67752 site_time_zone_utc_offset=-6 +County "KS, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000650.epw site_zip_code=67642 site_time_zone_utc_offset=-6 +County "KS, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000670.epw site_zip_code=67880 site_time_zone_utc_offset=-6 +County "KS, Gray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000690.epw site_zip_code=67867 site_time_zone_utc_offset=-6 +County "KS, Greeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000710.epw site_zip_code=67879 site_time_zone_utc_offset=-7 +County "KS, Greenwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000730.epw site_zip_code=67045 site_time_zone_utc_offset=-6 +County "KS, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000750.epw site_zip_code=67878 site_time_zone_utc_offset=-7 +County "KS, Harper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000770.epw site_zip_code=67003 site_time_zone_utc_offset=-6 +County "KS, Harvey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000790.epw site_zip_code=67114 site_time_zone_utc_offset=-6 +County "KS, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000810.epw site_zip_code=67877 site_time_zone_utc_offset=-6 +County "KS, Hodgeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000830.epw site_zip_code=67854 site_time_zone_utc_offset=-6 +County "KS, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000850.epw site_zip_code=66436 site_time_zone_utc_offset=-6 +County "KS, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000870.epw site_zip_code=66512 site_time_zone_utc_offset=-6 +County "KS, Jewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000890.epw site_zip_code=66956 site_time_zone_utc_offset=-6 +County "KS, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000910.epw site_zip_code=66062 site_time_zone_utc_offset=-6 +County "KS, Kearny County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000930.epw site_zip_code=67860 site_time_zone_utc_offset=-6 +County "KS, Kingman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000950.epw site_zip_code=67068 site_time_zone_utc_offset=-6 +County "KS, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000970.epw site_zip_code=67054 site_time_zone_utc_offset=-6 +County "KS, Labette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000990.epw site_zip_code=67357 site_time_zone_utc_offset=-6 +County "KS, Lane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001010.epw site_zip_code=67839 site_time_zone_utc_offset=-6 +County "KS, Leavenworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001030.epw site_zip_code=66048 site_time_zone_utc_offset=-6 +County "KS, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001050.epw site_zip_code=67455 site_time_zone_utc_offset=-6 +County "KS, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001070.epw site_zip_code=66040 site_time_zone_utc_offset=-6 +County "KS, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001090.epw site_zip_code=67748 site_time_zone_utc_offset=-6 +County "KS, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001110.epw site_zip_code=66801 site_time_zone_utc_offset=-6 +County "KS, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001150.epw site_zip_code=67063 site_time_zone_utc_offset=-6 +County "KS, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001170.epw site_zip_code=66508 site_time_zone_utc_offset=-6 +County "KS, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001130.epw site_zip_code=67460 site_time_zone_utc_offset=-6 +County "KS, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001190.epw site_zip_code=67864 site_time_zone_utc_offset=-6 +County "KS, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001210.epw site_zip_code=66071 site_time_zone_utc_offset=-6 +County "KS, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001230.epw site_zip_code=67420 site_time_zone_utc_offset=-6 +County "KS, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001250.epw site_zip_code=67301 site_time_zone_utc_offset=-6 +County "KS, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001270.epw site_zip_code=66846 site_time_zone_utc_offset=-6 +County "KS, Morton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001290.epw site_zip_code=67950 site_time_zone_utc_offset=-6 +County "KS, Nemaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001310.epw site_zip_code=66538 site_time_zone_utc_offset=-6 +County "KS, Neosho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001330.epw site_zip_code=66720 site_time_zone_utc_offset=-6 +County "KS, Ness County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001350.epw site_zip_code=67560 site_time_zone_utc_offset=-6 +County "KS, Norton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001370.epw site_zip_code=67654 site_time_zone_utc_offset=-6 +County "KS, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001390.epw site_zip_code=66523 site_time_zone_utc_offset=-6 +County "KS, Osborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001410.epw site_zip_code=67473 site_time_zone_utc_offset=-6 +County "KS, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001430.epw site_zip_code=67467 site_time_zone_utc_offset=-6 +County "KS, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001450.epw site_zip_code=67550 site_time_zone_utc_offset=-6 +County "KS, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001470.epw site_zip_code=67661 site_time_zone_utc_offset=-6 +County "KS, Pottawatomie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001490.epw site_zip_code=66547 site_time_zone_utc_offset=-6 +County "KS, Pratt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001510.epw site_zip_code=67124 site_time_zone_utc_offset=-6 +County "KS, Rawlins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001530.epw site_zip_code=67730 site_time_zone_utc_offset=-6 +County "KS, Reno County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001550.epw site_zip_code=67501 site_time_zone_utc_offset=-6 +County "KS, Republic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001570.epw site_zip_code=66935 site_time_zone_utc_offset=-6 +County "KS, Rice County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001590.epw site_zip_code=67554 site_time_zone_utc_offset=-6 +County "KS, Riley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001610.epw site_zip_code=66502 site_time_zone_utc_offset=-6 +County "KS, Rooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001630.epw site_zip_code=67663 site_time_zone_utc_offset=-6 +County "KS, Rush County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001650.epw site_zip_code=67548 site_time_zone_utc_offset=-6 +County "KS, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001670.epw site_zip_code=67665 site_time_zone_utc_offset=-6 +County "KS, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001690.epw site_zip_code=67401 site_time_zone_utc_offset=-6 +County "KS, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001710.epw site_zip_code=67871 site_time_zone_utc_offset=-6 +County "KS, Sedgwick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001730.epw site_zip_code=67212 site_time_zone_utc_offset=-6 +County "KS, Seward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001750.epw site_zip_code=67901 site_time_zone_utc_offset=-6 +County "KS, Shawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001770.epw site_zip_code=66614 site_time_zone_utc_offset=-6 +County "KS, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001790.epw site_zip_code=67740 site_time_zone_utc_offset=-6 +County "KS, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001810.epw site_zip_code=67735 site_time_zone_utc_offset=-7 +County "KS, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001830.epw site_zip_code=66967 site_time_zone_utc_offset=-6 +County "KS, Stafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001850.epw site_zip_code=67576 site_time_zone_utc_offset=-6 +County "KS, Stanton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001870.epw site_zip_code=67855 site_time_zone_utc_offset=-6 +County "KS, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001890.epw site_zip_code=67951 site_time_zone_utc_offset=-6 +County "KS, Sumner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001910.epw site_zip_code=67152 site_time_zone_utc_offset=-6 +County "KS, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001930.epw site_zip_code=67701 site_time_zone_utc_offset=-6 +County "KS, Trego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001950.epw site_zip_code=67672 site_time_zone_utc_offset=-6 +County "KS, Wabaunsee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001970.epw site_zip_code=66401 site_time_zone_utc_offset=-6 +County "KS, Wallace County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001990.epw site_zip_code=67758 site_time_zone_utc_offset=-7 +County "KS, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002010.epw site_zip_code=66968 site_time_zone_utc_offset=-6 +County "KS, Wichita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002030.epw site_zip_code=67861 site_time_zone_utc_offset=-6 +County "KS, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002050.epw site_zip_code=66736 site_time_zone_utc_offset=-6 +County "KS, Woodson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002070.epw site_zip_code=66783 site_time_zone_utc_offset=-6 +County "KS, Wyandotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002090.epw site_zip_code=66102 site_time_zone_utc_offset=-6 +County "KY, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100010.epw site_zip_code=42728 site_time_zone_utc_offset=-6 +County "KY, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100030.epw site_zip_code=42164 site_time_zone_utc_offset=-6 +County "KY, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100050.epw site_zip_code=40342 site_time_zone_utc_offset=-5 +County "KY, Ballard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100070.epw site_zip_code=42053 site_time_zone_utc_offset=-6 +County "KY, Barren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100090.epw site_zip_code=42141 site_time_zone_utc_offset=-6 +County "KY, Bath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100110.epw site_zip_code=40360 site_time_zone_utc_offset=-5 +County "KY, Bell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100130.epw site_zip_code=40965 site_time_zone_utc_offset=-5 +County "KY, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100150.epw site_zip_code=41042 site_time_zone_utc_offset=-5 +County "KY, Bourbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100170.epw site_zip_code=40361 site_time_zone_utc_offset=-5 +County "KY, Boyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100190.epw site_zip_code=41102 site_time_zone_utc_offset=-5 +County "KY, Boyle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100210.epw site_zip_code=40422 site_time_zone_utc_offset=-5 +County "KY, Bracken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100230.epw site_zip_code=41004 site_time_zone_utc_offset=-5 +County "KY, Breathitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100250.epw site_zip_code=41339 site_time_zone_utc_offset=-5 +County "KY, Breckinridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100270.epw site_zip_code=40143 site_time_zone_utc_offset=-6 +County "KY, Bullitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100290.epw site_zip_code=40165 site_time_zone_utc_offset=-5 +County "KY, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100310.epw site_zip_code=42261 site_time_zone_utc_offset=-6 +County "KY, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100330.epw site_zip_code=42445 site_time_zone_utc_offset=-6 +County "KY, Calloway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100350.epw site_zip_code=42071 site_time_zone_utc_offset=-6 +County "KY, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100370.epw site_zip_code=41071 site_time_zone_utc_offset=-5 +County "KY, Carlisle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100390.epw site_zip_code=42023 site_time_zone_utc_offset=-6 +County "KY, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100410.epw site_zip_code=41008 site_time_zone_utc_offset=-5 +County "KY, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100430.epw site_zip_code=41143 site_time_zone_utc_offset=-5 +County "KY, Casey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100450.epw site_zip_code=42539 site_time_zone_utc_offset=-5 +County "KY, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100470.epw site_zip_code=42240 site_time_zone_utc_offset=-6 +County "KY, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100490.epw site_zip_code=40391 site_time_zone_utc_offset=-5 +County "KY, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100510.epw site_zip_code=40962 site_time_zone_utc_offset=-5 +County "KY, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100530.epw site_zip_code=42602 site_time_zone_utc_offset=-6 +County "KY, Crittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100550.epw site_zip_code=42064 site_time_zone_utc_offset=-6 +County "KY, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100570.epw site_zip_code=42717 site_time_zone_utc_offset=-6 +County "KY, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100590.epw site_zip_code=42301 site_time_zone_utc_offset=-6 +County "KY, Edmonson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100610.epw site_zip_code=42210 site_time_zone_utc_offset=-6 +County "KY, Elliott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100630.epw site_zip_code=41171 site_time_zone_utc_offset=-5 +County "KY, Estill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100650.epw site_zip_code=40336 site_time_zone_utc_offset=-5 +County "KY, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100670.epw site_zip_code=40509 site_time_zone_utc_offset=-5 +County "KY, Fleming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100690.epw site_zip_code=41041 site_time_zone_utc_offset=-5 +County "KY, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100710.epw site_zip_code=41653 site_time_zone_utc_offset=-5 +County "KY, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100730.epw site_zip_code=40601 site_time_zone_utc_offset=-5 +County "KY, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100750.epw site_zip_code=42041 site_time_zone_utc_offset=-6 +County "KY, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100770.epw site_zip_code=41095 site_time_zone_utc_offset=-5 +County "KY, Garrard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100790.epw site_zip_code=40444 site_time_zone_utc_offset=-5 +County "KY, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100810.epw site_zip_code=41035 site_time_zone_utc_offset=-5 +County "KY, Graves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100830.epw site_zip_code=42066 site_time_zone_utc_offset=-6 +County "KY, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100850.epw site_zip_code=42754 site_time_zone_utc_offset=-6 +County "KY, Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100870.epw site_zip_code=42743 site_time_zone_utc_offset=-6 +County "KY, Greenup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100890.epw site_zip_code=41144 site_time_zone_utc_offset=-5 +County "KY, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100910.epw site_zip_code=42348 site_time_zone_utc_offset=-6 +County "KY, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100930.epw site_zip_code=42701 site_time_zone_utc_offset=-5 +County "KY, Harlan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100950.epw site_zip_code=40831 site_time_zone_utc_offset=-5 +County "KY, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100970.epw site_zip_code=41031 site_time_zone_utc_offset=-5 +County "KY, Hart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100990.epw site_zip_code=42765 site_time_zone_utc_offset=-6 +County "KY, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101010.epw site_zip_code=42420 site_time_zone_utc_offset=-6 +County "KY, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101030.epw site_zip_code=40019 site_time_zone_utc_offset=-5 +County "KY, Hickman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101050.epw site_zip_code=42031 site_time_zone_utc_offset=-6 +County "KY, Hopkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101070.epw site_zip_code=42431 site_time_zone_utc_offset=-6 +County "KY, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101090.epw site_zip_code=40447 site_time_zone_utc_offset=-5 +County "KY, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101110.epw site_zip_code=40214 site_time_zone_utc_offset=-5 +County "KY, Jessamine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101130.epw site_zip_code=40356 site_time_zone_utc_offset=-5 +County "KY, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101150.epw site_zip_code=41240 site_time_zone_utc_offset=-5 +County "KY, Kenton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101170.epw site_zip_code=41017 site_time_zone_utc_offset=-5 +County "KY, Knott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101190.epw site_zip_code=41822 site_time_zone_utc_offset=-5 +County "KY, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101210.epw site_zip_code=40906 site_time_zone_utc_offset=-5 +County "KY, Larue County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101230.epw site_zip_code=42748 site_time_zone_utc_offset=-5 +County "KY, Laurel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101250.epw site_zip_code=40741 site_time_zone_utc_offset=-5 +County "KY, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101270.epw site_zip_code=41230 site_time_zone_utc_offset=-5 +County "KY, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101290.epw site_zip_code=41311 site_time_zone_utc_offset=-5 +County "KY, Leslie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101310.epw site_zip_code=41749 site_time_zone_utc_offset=-5 +County "KY, Letcher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101330.epw site_zip_code=41858 site_time_zone_utc_offset=-5 +County "KY, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101350.epw site_zip_code=41179 site_time_zone_utc_offset=-5 +County "KY, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101370.epw site_zip_code=40484 site_time_zone_utc_offset=-5 +County "KY, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101390.epw site_zip_code=42045 site_time_zone_utc_offset=-6 +County "KY, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101410.epw site_zip_code=42276 site_time_zone_utc_offset=-6 +County "KY, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101430.epw site_zip_code=42038 site_time_zone_utc_offset=-6 +County "KY, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101510.epw site_zip_code=40475 site_time_zone_utc_offset=-5 +County "KY, Magoffin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101530.epw site_zip_code=41465 site_time_zone_utc_offset=-5 +County "KY, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101550.epw site_zip_code=40033 site_time_zone_utc_offset=-5 +County "KY, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101570.epw site_zip_code=42025 site_time_zone_utc_offset=-6 +County "KY, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101590.epw site_zip_code=41224 site_time_zone_utc_offset=-5 +County "KY, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101610.epw site_zip_code=41056 site_time_zone_utc_offset=-5 +County "KY, McCracken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101450.epw site_zip_code=42001 site_time_zone_utc_offset=-6 +County "KY, McCreary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101470.epw site_zip_code=42653 site_time_zone_utc_offset=-5 +County "KY, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101490.epw site_zip_code=42327 site_time_zone_utc_offset=-6 +County "KY, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101630.epw site_zip_code=40108 site_time_zone_utc_offset=-5 +County "KY, Menifee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101650.epw site_zip_code=40322 site_time_zone_utc_offset=-5 +County "KY, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101670.epw site_zip_code=40330 site_time_zone_utc_offset=-5 +County "KY, Metcalfe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101690.epw site_zip_code=42129 site_time_zone_utc_offset=-6 +County "KY, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101710.epw site_zip_code=42167 site_time_zone_utc_offset=-6 +County "KY, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101730.epw site_zip_code=40353 site_time_zone_utc_offset=-5 +County "KY, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101750.epw site_zip_code=41472 site_time_zone_utc_offset=-5 +County "KY, Muhlenberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101770.epw site_zip_code=42345 site_time_zone_utc_offset=-6 +County "KY, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101790.epw site_zip_code=40004 site_time_zone_utc_offset=-5 +County "KY, Nicholas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101810.epw site_zip_code=40311 site_time_zone_utc_offset=-5 +County "KY, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101830.epw site_zip_code=42320 site_time_zone_utc_offset=-6 +County "KY, Oldham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101850.epw site_zip_code=40014 site_time_zone_utc_offset=-5 +County "KY, Owen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101870.epw site_zip_code=40359 site_time_zone_utc_offset=-5 +County "KY, Owsley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101890.epw site_zip_code=41314 site_time_zone_utc_offset=-5 +County "KY, Pendleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101910.epw site_zip_code=41040 site_time_zone_utc_offset=-5 +County "KY, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101930.epw site_zip_code=41701 site_time_zone_utc_offset=-5 +County "KY, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101950.epw site_zip_code=41501 site_time_zone_utc_offset=-5 +County "KY, Powell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101970.epw site_zip_code=40380 site_time_zone_utc_offset=-5 +County "KY, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101990.epw site_zip_code=42503 site_time_zone_utc_offset=-5 +County "KY, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102010.epw site_zip_code=41064 site_time_zone_utc_offset=-5 +County "KY, Rockcastle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102030.epw site_zip_code=40456 site_time_zone_utc_offset=-5 +County "KY, Rowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102050.epw site_zip_code=40351 site_time_zone_utc_offset=-5 +County "KY, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102070.epw site_zip_code=42642 site_time_zone_utc_offset=-6 +County "KY, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102090.epw site_zip_code=40324 site_time_zone_utc_offset=-5 +County "KY, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102110.epw site_zip_code=40065 site_time_zone_utc_offset=-5 +County "KY, Simpson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102130.epw site_zip_code=42134 site_time_zone_utc_offset=-6 +County "KY, Spencer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102150.epw site_zip_code=40071 site_time_zone_utc_offset=-5 +County "KY, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102170.epw site_zip_code=42718 site_time_zone_utc_offset=-5 +County "KY, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102190.epw site_zip_code=42220 site_time_zone_utc_offset=-6 +County "KY, Trigg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102210.epw site_zip_code=42211 site_time_zone_utc_offset=-6 +County "KY, Trimble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102230.epw site_zip_code=40006 site_time_zone_utc_offset=-5 +County "KY, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102250.epw site_zip_code=42437 site_time_zone_utc_offset=-6 +County "KY, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102270.epw site_zip_code=42101 site_time_zone_utc_offset=-6 +County "KY, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102290.epw site_zip_code=40069 site_time_zone_utc_offset=-5 +County "KY, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102310.epw site_zip_code=42633 site_time_zone_utc_offset=-5 +County "KY, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102330.epw site_zip_code=42450 site_time_zone_utc_offset=-6 +County "KY, Whitley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102350.epw site_zip_code=40769 site_time_zone_utc_offset=-5 +County "KY, Wolfe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102370.epw site_zip_code=41301 site_time_zone_utc_offset=-5 +County "KY, Woodford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102390.epw site_zip_code=40383 site_time_zone_utc_offset=-5 +County "LA, Acadia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200010.epw site_zip_code=70526 site_time_zone_utc_offset=-6 +County "LA, Allen Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200030.epw site_zip_code=71463 site_time_zone_utc_offset=-6 +County "LA, Ascension Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200050.epw site_zip_code=70737 site_time_zone_utc_offset=-6 +County "LA, Assumption Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200070.epw site_zip_code=70339 site_time_zone_utc_offset=-6 +County "LA, Avoyelles Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200090.epw site_zip_code=71351 site_time_zone_utc_offset=-6 +County "LA, Beauregard Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200110.epw site_zip_code=70634 site_time_zone_utc_offset=-6 +County "LA, Bienville Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200130.epw site_zip_code=71001 site_time_zone_utc_offset=-6 +County "LA, Bossier Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200150.epw site_zip_code=71111 site_time_zone_utc_offset=-6 +County "LA, Caddo Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200170.epw site_zip_code=71106 site_time_zone_utc_offset=-6 +County "LA, Calcasieu Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200190.epw site_zip_code=70605 site_time_zone_utc_offset=-6 +County "LA, Caldwell Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200210.epw site_zip_code=71418 site_time_zone_utc_offset=-6 +County "LA, Cameron Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200230.epw site_zip_code=70607 site_time_zone_utc_offset=-6 +County "LA, Catahoula Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200250.epw site_zip_code=71343 site_time_zone_utc_offset=-6 +County "LA, Claiborne Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200270.epw site_zip_code=71040 site_time_zone_utc_offset=-6 +County "LA, Concordia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200290.epw site_zip_code=71334 site_time_zone_utc_offset=-6 +County "LA, De Soto Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200310.epw site_zip_code=71052 site_time_zone_utc_offset=-6 +County "LA, East Baton Rouge Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200330.epw site_zip_code=70816 site_time_zone_utc_offset=-6 +County "LA, East Carroll Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200350.epw site_zip_code=71254 site_time_zone_utc_offset=-6 +County "LA, East Feliciana Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200370.epw site_zip_code=70722 site_time_zone_utc_offset=-6 +County "LA, Evangeline Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200390.epw site_zip_code=70586 site_time_zone_utc_offset=-6 +County "LA, Franklin Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200410.epw site_zip_code=71295 site_time_zone_utc_offset=-6 +County "LA, Grant Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200430.epw site_zip_code=71467 site_time_zone_utc_offset=-6 +County "LA, Iberia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200450.epw site_zip_code=70560 site_time_zone_utc_offset=-6 +County "LA, Iberville Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200470.epw site_zip_code=70764 site_time_zone_utc_offset=-6 +County "LA, Jackson Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200490.epw site_zip_code=71251 site_time_zone_utc_offset=-6 +County "LA, Jefferson Davis Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200530.epw site_zip_code=70546 site_time_zone_utc_offset=-6 +County "LA, Jefferson Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200510.epw site_zip_code=70072 site_time_zone_utc_offset=-6 +County "LA, La Salle Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200590.epw site_zip_code=71342 site_time_zone_utc_offset=-6 +County "LA, Lafayette Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200550.epw site_zip_code=70506 site_time_zone_utc_offset=-6 +County "LA, Lafourche Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200570.epw site_zip_code=70301 site_time_zone_utc_offset=-6 +County "LA, Lincoln Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200610.epw site_zip_code=71270 site_time_zone_utc_offset=-6 +County "LA, Livingston Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200630.epw site_zip_code=70726 site_time_zone_utc_offset=-6 +County "LA, Madison Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200650.epw site_zip_code=71282 site_time_zone_utc_offset=-6 +County "LA, Morehouse Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200670.epw site_zip_code=71220 site_time_zone_utc_offset=-6 +County "LA, Natchitoches Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200690.epw site_zip_code=71457 site_time_zone_utc_offset=-6 +County "LA, Orleans Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200710.epw site_zip_code=70119 site_time_zone_utc_offset=-6 +County "LA, Ouachita Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200730.epw site_zip_code=71203 site_time_zone_utc_offset=-6 +County "LA, Plaquemines Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200750.epw site_zip_code=70037 site_time_zone_utc_offset=-6 +County "LA, Pointe Coupee Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200770.epw site_zip_code=70760 site_time_zone_utc_offset=-6 +County "LA, Rapides Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200790.epw site_zip_code=71360 site_time_zone_utc_offset=-6 +County "LA, Red River Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200810.epw site_zip_code=71019 site_time_zone_utc_offset=-6 +County "LA, Richland Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200830.epw site_zip_code=71269 site_time_zone_utc_offset=-6 +County "LA, Sabine Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200850.epw site_zip_code=71449 site_time_zone_utc_offset=-6 +County "LA, St. Bernard Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200870.epw site_zip_code=70043 site_time_zone_utc_offset=-6 +County "LA, St. Charles Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200890.epw site_zip_code=70070 site_time_zone_utc_offset=-6 +County "LA, St. Helena Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200910.epw site_zip_code=70441 site_time_zone_utc_offset=-6 +County "LA, St. James Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200930.epw site_zip_code=70090 site_time_zone_utc_offset=-6 +County "LA, St. John the Baptist Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200950.epw site_zip_code=70068 site_time_zone_utc_offset=-6 +County "LA, St. Landry Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200970.epw site_zip_code=70570 site_time_zone_utc_offset=-6 +County "LA, St. Martin Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200990.epw site_zip_code=70517 site_time_zone_utc_offset=-6 +County "LA, St. Mary Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201010.epw site_zip_code=70380 site_time_zone_utc_offset=-6 +County "LA, St. Tammany Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201030.epw site_zip_code=70433 site_time_zone_utc_offset=-6 +County "LA, Tangipahoa Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201050.epw site_zip_code=70454 site_time_zone_utc_offset=-6 +County "LA, Tensas Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201070.epw site_zip_code=71366 site_time_zone_utc_offset=-6 +County "LA, Terrebonne Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201090.epw site_zip_code=70360 site_time_zone_utc_offset=-6 +County "LA, Union Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201110.epw site_zip_code=71241 site_time_zone_utc_offset=-6 +County "LA, Vermilion Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201130.epw site_zip_code=70510 site_time_zone_utc_offset=-6 +County "LA, Vernon Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201150.epw site_zip_code=71446 site_time_zone_utc_offset=-6 +County "LA, Washington Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201170.epw site_zip_code=70427 site_time_zone_utc_offset=-6 +County "LA, Webster Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201190.epw site_zip_code=71055 site_time_zone_utc_offset=-6 +County "LA, West Baton Rouge Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201210.epw site_zip_code=70767 site_time_zone_utc_offset=-6 +County "LA, West Carroll Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201230.epw site_zip_code=71263 site_time_zone_utc_offset=-6 +County "LA, West Feliciana Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201250.epw site_zip_code=70775 site_time_zone_utc_offset=-6 +County "LA, Winn Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201270.epw site_zip_code=71483 site_time_zone_utc_offset=-6 +County "MA, Barnstable County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500010.epw site_zip_code=02536 site_time_zone_utc_offset=-5 +County "MA, Berkshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500030.epw site_zip_code=01201 site_time_zone_utc_offset=-5 +County "MA, Bristol County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500050.epw site_zip_code=02780 site_time_zone_utc_offset=-5 +County "MA, Dukes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500070.epw site_zip_code=02568 site_time_zone_utc_offset=-5 +County "MA, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500090.epw site_zip_code=01960 site_time_zone_utc_offset=-5 +County "MA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500110.epw site_zip_code=01301 site_time_zone_utc_offset=-5 +County "MA, Hampden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500130.epw site_zip_code=01085 site_time_zone_utc_offset=-5 +County "MA, Hampshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500150.epw site_zip_code=01002 site_time_zone_utc_offset=-5 +County "MA, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500170.epw site_zip_code=02148 site_time_zone_utc_offset=-5 +County "MA, Nantucket County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500190.epw site_zip_code=02554 site_time_zone_utc_offset=-5 +County "MA, Norfolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500210.epw site_zip_code=02169 site_time_zone_utc_offset=-5 +County "MA, Plymouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500230.epw site_zip_code=02360 site_time_zone_utc_offset=-5 +County "MA, Suffolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500250.epw site_zip_code=02151 site_time_zone_utc_offset=-5 +County "MA, Worcester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500270.epw site_zip_code=01453 site_time_zone_utc_offset=-5 +County "MD, Allegany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400010.epw site_zip_code=21502 site_time_zone_utc_offset=-5 +County "MD, Anne Arundel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400030.epw site_zip_code=21122 site_time_zone_utc_offset=-5 +County "MD, Baltimore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400050.epw site_zip_code=21117 site_time_zone_utc_offset=-5 +County "MD, Baltimore city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2405100.epw site_zip_code=21215 site_time_zone_utc_offset=-5 +County "MD, Calvert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400090.epw site_zip_code=20657 site_time_zone_utc_offset=-5 +County "MD, Caroline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400110.epw site_zip_code=21629 site_time_zone_utc_offset=-5 +County "MD, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400130.epw site_zip_code=21157 site_time_zone_utc_offset=-5 +County "MD, Cecil County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400150.epw site_zip_code=21921 site_time_zone_utc_offset=-5 +County "MD, Charles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400170.epw site_zip_code=20603 site_time_zone_utc_offset=-5 +County "MD, Dorchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400190.epw site_zip_code=21613 site_time_zone_utc_offset=-5 +County "MD, Frederick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400210.epw site_zip_code=21702 site_time_zone_utc_offset=-5 +County "MD, Garrett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400230.epw site_zip_code=21550 site_time_zone_utc_offset=-5 +County "MD, Harford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400250.epw site_zip_code=21014 site_time_zone_utc_offset=-5 +County "MD, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400270.epw site_zip_code=21044 site_time_zone_utc_offset=-5 +County "MD, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400290.epw site_zip_code=21620 site_time_zone_utc_offset=-5 +County "MD, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400310.epw site_zip_code=20906 site_time_zone_utc_offset=-5 +County "MD, Prince George's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400330.epw site_zip_code=20774 site_time_zone_utc_offset=-5 +County "MD, Queen Anne's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400350.epw site_zip_code=21666 site_time_zone_utc_offset=-5 +County "MD, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400390.epw site_zip_code=21853 site_time_zone_utc_offset=-5 +County "MD, St. Mary's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400370.epw site_zip_code=20653 site_time_zone_utc_offset=-5 +County "MD, Talbot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400410.epw site_zip_code=21601 site_time_zone_utc_offset=-5 +County "MD, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400430.epw site_zip_code=21740 site_time_zone_utc_offset=-5 +County "MD, Wicomico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400450.epw site_zip_code=21804 site_time_zone_utc_offset=-5 +County "MD, Worcester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400470.epw site_zip_code=21842 site_time_zone_utc_offset=-5 +County "ME, Androscoggin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300010.epw site_zip_code=04240 site_time_zone_utc_offset=-5 +County "ME, Aroostook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300030.epw site_zip_code=04769 site_time_zone_utc_offset=-5 +County "ME, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300050.epw site_zip_code=04103 site_time_zone_utc_offset=-5 +County "ME, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300070.epw site_zip_code=04938 site_time_zone_utc_offset=-5 +County "ME, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300090.epw site_zip_code=04605 site_time_zone_utc_offset=-5 +County "ME, Kennebec County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300110.epw site_zip_code=04901 site_time_zone_utc_offset=-5 +County "ME, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300130.epw site_zip_code=04841 site_time_zone_utc_offset=-5 +County "ME, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300150.epw site_zip_code=04572 site_time_zone_utc_offset=-5 +County "ME, Oxford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300170.epw site_zip_code=04276 site_time_zone_utc_offset=-5 +County "ME, Penobscot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300190.epw site_zip_code=04401 site_time_zone_utc_offset=-5 +County "ME, Piscataquis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300210.epw site_zip_code=04426 site_time_zone_utc_offset=-5 +County "ME, Sagadahoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300230.epw site_zip_code=04530 site_time_zone_utc_offset=-5 +County "ME, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300250.epw site_zip_code=04976 site_time_zone_utc_offset=-5 +County "ME, Waldo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300270.epw site_zip_code=04915 site_time_zone_utc_offset=-5 +County "ME, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300290.epw site_zip_code=04654 site_time_zone_utc_offset=-5 +County "ME, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300310.epw site_zip_code=04005 site_time_zone_utc_offset=-5 +County "MI, Alcona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600010.epw site_zip_code=48740 site_time_zone_utc_offset=-5 +County "MI, Alger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600030.epw site_zip_code=49862 site_time_zone_utc_offset=-5 +County "MI, Allegan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600050.epw site_zip_code=49010 site_time_zone_utc_offset=-5 +County "MI, Alpena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600070.epw site_zip_code=49707 site_time_zone_utc_offset=-5 +County "MI, Antrim County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600090.epw site_zip_code=49615 site_time_zone_utc_offset=-5 +County "MI, Arenac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600110.epw site_zip_code=48658 site_time_zone_utc_offset=-5 +County "MI, Baraga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600130.epw site_zip_code=49946 site_time_zone_utc_offset=-5 +County "MI, Barry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600150.epw site_zip_code=49058 site_time_zone_utc_offset=-5 +County "MI, Bay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600170.epw site_zip_code=48706 site_time_zone_utc_offset=-5 +County "MI, Benzie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600190.epw site_zip_code=49635 site_time_zone_utc_offset=-5 +County "MI, Berrien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600210.epw site_zip_code=49022 site_time_zone_utc_offset=-5 +County "MI, Branch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600230.epw site_zip_code=49036 site_time_zone_utc_offset=-5 +County "MI, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600250.epw site_zip_code=49015 site_time_zone_utc_offset=-5 +County "MI, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600270.epw site_zip_code=49047 site_time_zone_utc_offset=-5 +County "MI, Charlevoix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600290.epw site_zip_code=49720 site_time_zone_utc_offset=-5 +County "MI, Cheboygan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600310.epw site_zip_code=49721 site_time_zone_utc_offset=-5 +County "MI, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600330.epw site_zip_code=49783 site_time_zone_utc_offset=-5 +County "MI, Clare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600350.epw site_zip_code=48625 site_time_zone_utc_offset=-5 +County "MI, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600370.epw site_zip_code=48820 site_time_zone_utc_offset=-5 +County "MI, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600390.epw site_zip_code=49738 site_time_zone_utc_offset=-5 +County "MI, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600410.epw site_zip_code=49829 site_time_zone_utc_offset=-5 +County "MI, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600430.epw site_zip_code=49801 site_time_zone_utc_offset=-6 +County "MI, Eaton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600450.epw site_zip_code=48917 site_time_zone_utc_offset=-5 +County "MI, Emmet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600470.epw site_zip_code=49770 site_time_zone_utc_offset=-5 +County "MI, Genesee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600490.epw site_zip_code=48439 site_time_zone_utc_offset=-5 +County "MI, Gladwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600510.epw site_zip_code=48624 site_time_zone_utc_offset=-5 +County "MI, Gogebic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600530.epw site_zip_code=49938 site_time_zone_utc_offset=-6 +County "MI, Grand Traverse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600550.epw site_zip_code=49686 site_time_zone_utc_offset=-5 +County "MI, Gratiot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600570.epw site_zip_code=48801 site_time_zone_utc_offset=-5 +County "MI, Hillsdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600590.epw site_zip_code=49242 site_time_zone_utc_offset=-5 +County "MI, Houghton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600610.epw site_zip_code=49931 site_time_zone_utc_offset=-5 +County "MI, Huron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600630.epw site_zip_code=48413 site_time_zone_utc_offset=-5 +County "MI, Ingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600650.epw site_zip_code=48823 site_time_zone_utc_offset=-5 +County "MI, Ionia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600670.epw site_zip_code=48846 site_time_zone_utc_offset=-5 +County "MI, Iosco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600690.epw site_zip_code=48750 site_time_zone_utc_offset=-5 +County "MI, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600710.epw site_zip_code=49935 site_time_zone_utc_offset=-6 +County "MI, Isabella County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600730.epw site_zip_code=48858 site_time_zone_utc_offset=-5 +County "MI, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600750.epw site_zip_code=49201 site_time_zone_utc_offset=-5 +County "MI, Kalamazoo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600770.epw site_zip_code=49009 site_time_zone_utc_offset=-5 +County "MI, Kalkaska County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600790.epw site_zip_code=49646 site_time_zone_utc_offset=-5 +County "MI, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600810.epw site_zip_code=49503 site_time_zone_utc_offset=-5 +County "MI, Keweenaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600830.epw site_zip_code=49950 site_time_zone_utc_offset=-5 +County "MI, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600850.epw site_zip_code=49304 site_time_zone_utc_offset=-5 +County "MI, Lapeer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600870.epw site_zip_code=48446 site_time_zone_utc_offset=-5 +County "MI, Leelanau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600890.epw site_zip_code=49684 site_time_zone_utc_offset=-5 +County "MI, Lenawee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600910.epw site_zip_code=49221 site_time_zone_utc_offset=-5 +County "MI, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600930.epw site_zip_code=48843 site_time_zone_utc_offset=-5 +County "MI, Luce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600950.epw site_zip_code=49868 site_time_zone_utc_offset=-5 +County "MI, Mackinac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600970.epw site_zip_code=49781 site_time_zone_utc_offset=-5 +County "MI, Macomb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600990.epw site_zip_code=48038 site_time_zone_utc_offset=-5 +County "MI, Manistee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601010.epw site_zip_code=49660 site_time_zone_utc_offset=-5 +County "MI, Marquette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601030.epw site_zip_code=49855 site_time_zone_utc_offset=-5 +County "MI, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601050.epw site_zip_code=49431 site_time_zone_utc_offset=-5 +County "MI, Mecosta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601070.epw site_zip_code=49307 site_time_zone_utc_offset=-5 +County "MI, Menominee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601090.epw site_zip_code=49858 site_time_zone_utc_offset=-6 +County "MI, Midland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601110.epw site_zip_code=48642 site_time_zone_utc_offset=-5 +County "MI, Missaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601130.epw site_zip_code=49651 site_time_zone_utc_offset=-5 +County "MI, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601150.epw site_zip_code=48162 site_time_zone_utc_offset=-5 +County "MI, Montcalm County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601170.epw site_zip_code=48838 site_time_zone_utc_offset=-5 +County "MI, Montmorency County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601190.epw site_zip_code=49709 site_time_zone_utc_offset=-5 +County "MI, Muskegon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601210.epw site_zip_code=49442 site_time_zone_utc_offset=-5 +County "MI, Newaygo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601230.epw site_zip_code=49337 site_time_zone_utc_offset=-5 +County "MI, Oakland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601250.epw site_zip_code=48307 site_time_zone_utc_offset=-5 +County "MI, Oceana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601270.epw site_zip_code=49420 site_time_zone_utc_offset=-5 +County "MI, Ogemaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601290.epw site_zip_code=48661 site_time_zone_utc_offset=-5 +County "MI, Ontonagon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601310.epw site_zip_code=49953 site_time_zone_utc_offset=-5 +County "MI, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601330.epw site_zip_code=49631 site_time_zone_utc_offset=-5 +County "MI, Oscoda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601350.epw site_zip_code=48647 site_time_zone_utc_offset=-5 +County "MI, Otsego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601370.epw site_zip_code=49735 site_time_zone_utc_offset=-5 +County "MI, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601390.epw site_zip_code=49424 site_time_zone_utc_offset=-5 +County "MI, Presque Isle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601410.epw site_zip_code=49779 site_time_zone_utc_offset=-5 +County "MI, Roscommon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601430.epw site_zip_code=48629 site_time_zone_utc_offset=-5 +County "MI, Saginaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601450.epw site_zip_code=48601 site_time_zone_utc_offset=-5 +County "MI, Sanilac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601510.epw site_zip_code=48450 site_time_zone_utc_offset=-5 +County "MI, Schoolcraft County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601530.epw site_zip_code=49854 site_time_zone_utc_offset=-5 +County "MI, Shiawassee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601550.epw site_zip_code=48867 site_time_zone_utc_offset=-5 +County "MI, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601470.epw site_zip_code=48060 site_time_zone_utc_offset=-5 +County "MI, St. Joseph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601490.epw site_zip_code=49091 site_time_zone_utc_offset=-5 +County "MI, Tuscola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601570.epw site_zip_code=48723 site_time_zone_utc_offset=-5 +County "MI, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601590.epw site_zip_code=49090 site_time_zone_utc_offset=-5 +County "MI, Washtenaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601610.epw site_zip_code=48197 site_time_zone_utc_offset=-5 +County "MI, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601630.epw site_zip_code=48180 site_time_zone_utc_offset=-5 +County "MI, Wexford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601650.epw site_zip_code=49601 site_time_zone_utc_offset=-5 +County "MN, Aitkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700010.epw site_zip_code=56431 site_time_zone_utc_offset=-6 +County "MN, Anoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700030.epw site_zip_code=55303 site_time_zone_utc_offset=-6 +County "MN, Becker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700050.epw site_zip_code=56501 site_time_zone_utc_offset=-6 +County "MN, Beltrami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700070.epw site_zip_code=56601 site_time_zone_utc_offset=-6 +County "MN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700090.epw site_zip_code=56379 site_time_zone_utc_offset=-6 +County "MN, Big Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700110.epw site_zip_code=56278 site_time_zone_utc_offset=-6 +County "MN, Blue Earth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700130.epw site_zip_code=56001 site_time_zone_utc_offset=-6 +County "MN, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700150.epw site_zip_code=56073 site_time_zone_utc_offset=-6 +County "MN, Carlton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700170.epw site_zip_code=55720 site_time_zone_utc_offset=-6 +County "MN, Carver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700190.epw site_zip_code=55318 site_time_zone_utc_offset=-6 +County "MN, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700210.epw site_zip_code=56474 site_time_zone_utc_offset=-6 +County "MN, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700230.epw site_zip_code=56265 site_time_zone_utc_offset=-6 +County "MN, Chisago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700250.epw site_zip_code=55056 site_time_zone_utc_offset=-6 +County "MN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700270.epw site_zip_code=56560 site_time_zone_utc_offset=-6 +County "MN, Clearwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700290.epw site_zip_code=56621 site_time_zone_utc_offset=-6 +County "MN, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700310.epw site_zip_code=55604 site_time_zone_utc_offset=-6 +County "MN, Cottonwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700330.epw site_zip_code=56101 site_time_zone_utc_offset=-6 +County "MN, Crow Wing County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700350.epw site_zip_code=56401 site_time_zone_utc_offset=-6 +County "MN, Dakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700370.epw site_zip_code=55124 site_time_zone_utc_offset=-6 +County "MN, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700390.epw site_zip_code=55944 site_time_zone_utc_offset=-6 +County "MN, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700410.epw site_zip_code=56308 site_time_zone_utc_offset=-6 +County "MN, Faribault County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700430.epw site_zip_code=56013 site_time_zone_utc_offset=-6 +County "MN, Fillmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700450.epw site_zip_code=55975 site_time_zone_utc_offset=-6 +County "MN, Freeborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700470.epw site_zip_code=56007 site_time_zone_utc_offset=-6 +County "MN, Goodhue County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700490.epw site_zip_code=55066 site_time_zone_utc_offset=-6 +County "MN, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700510.epw site_zip_code=56531 site_time_zone_utc_offset=-6 +County "MN, Hennepin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700530.epw site_zip_code=55408 site_time_zone_utc_offset=-6 +County "MN, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700550.epw site_zip_code=55947 site_time_zone_utc_offset=-6 +County "MN, Hubbard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700570.epw site_zip_code=56470 site_time_zone_utc_offset=-6 +County "MN, Isanti County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700590.epw site_zip_code=55008 site_time_zone_utc_offset=-6 +County "MN, Itasca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700610.epw site_zip_code=55744 site_time_zone_utc_offset=-6 +County "MN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700630.epw site_zip_code=56143 site_time_zone_utc_offset=-6 +County "MN, Kanabec County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700650.epw site_zip_code=55051 site_time_zone_utc_offset=-6 +County "MN, Kandiyohi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700670.epw site_zip_code=56201 site_time_zone_utc_offset=-6 +County "MN, Kittson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700690.epw site_zip_code=56728 site_time_zone_utc_offset=-6 +County "MN, Koochiching County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700710.epw site_zip_code=56649 site_time_zone_utc_offset=-6 +County "MN, Lac qui Parle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700730.epw site_zip_code=56256 site_time_zone_utc_offset=-6 +County "MN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700750.epw site_zip_code=55616 site_time_zone_utc_offset=-6 +County "MN, Lake of the Woods County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700770.epw site_zip_code=56623 site_time_zone_utc_offset=-6 +County "MN, Le Sueur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700790.epw site_zip_code=56058 site_time_zone_utc_offset=-6 +County "MN, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700810.epw site_zip_code=56178 site_time_zone_utc_offset=-6 +County "MN, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700830.epw site_zip_code=56258 site_time_zone_utc_offset=-6 +County "MN, Mahnomen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700870.epw site_zip_code=56557 site_time_zone_utc_offset=-6 +County "MN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700890.epw site_zip_code=56762 site_time_zone_utc_offset=-6 +County "MN, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700910.epw site_zip_code=56031 site_time_zone_utc_offset=-6 +County "MN, McLeod County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700850.epw site_zip_code=55350 site_time_zone_utc_offset=-6 +County "MN, Meeker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700930.epw site_zip_code=55355 site_time_zone_utc_offset=-6 +County "MN, Mille Lacs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700950.epw site_zip_code=56353 site_time_zone_utc_offset=-6 +County "MN, Morrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700970.epw site_zip_code=56345 site_time_zone_utc_offset=-6 +County "MN, Mower County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700990.epw site_zip_code=55912 site_time_zone_utc_offset=-6 +County "MN, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701010.epw site_zip_code=56172 site_time_zone_utc_offset=-6 +County "MN, Nicollet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701030.epw site_zip_code=56003 site_time_zone_utc_offset=-6 +County "MN, Nobles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701050.epw site_zip_code=56187 site_time_zone_utc_offset=-6 +County "MN, Norman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701070.epw site_zip_code=56510 site_time_zone_utc_offset=-6 +County "MN, Olmsted County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701090.epw site_zip_code=55901 site_time_zone_utc_offset=-6 +County "MN, Otter Tail County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701110.epw site_zip_code=56537 site_time_zone_utc_offset=-6 +County "MN, Pennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701130.epw site_zip_code=56701 site_time_zone_utc_offset=-6 +County "MN, Pine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701150.epw site_zip_code=55063 site_time_zone_utc_offset=-6 +County "MN, Pipestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701170.epw site_zip_code=56164 site_time_zone_utc_offset=-6 +County "MN, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701190.epw site_zip_code=56721 site_time_zone_utc_offset=-6 +County "MN, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701210.epw site_zip_code=56334 site_time_zone_utc_offset=-6 +County "MN, Ramsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701230.epw site_zip_code=55106 site_time_zone_utc_offset=-6 +County "MN, Red Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701250.epw site_zip_code=56750 site_time_zone_utc_offset=-6 +County "MN, Redwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701270.epw site_zip_code=56283 site_time_zone_utc_offset=-6 +County "MN, Renville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701290.epw site_zip_code=56277 site_time_zone_utc_offset=-6 +County "MN, Rice County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701310.epw site_zip_code=55021 site_time_zone_utc_offset=-6 +County "MN, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701330.epw site_zip_code=56156 site_time_zone_utc_offset=-6 +County "MN, Roseau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701350.epw site_zip_code=56751 site_time_zone_utc_offset=-6 +County "MN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701390.epw site_zip_code=55379 site_time_zone_utc_offset=-6 +County "MN, Sherburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701410.epw site_zip_code=55330 site_time_zone_utc_offset=-6 +County "MN, Sibley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701430.epw site_zip_code=55334 site_time_zone_utc_offset=-6 +County "MN, St. Louis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701370.epw site_zip_code=55811 site_time_zone_utc_offset=-6 +County "MN, Stearns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701450.epw site_zip_code=56301 site_time_zone_utc_offset=-6 +County "MN, Steele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701470.epw site_zip_code=55060 site_time_zone_utc_offset=-6 +County "MN, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701490.epw site_zip_code=56267 site_time_zone_utc_offset=-6 +County "MN, Swift County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701510.epw site_zip_code=56215 site_time_zone_utc_offset=-6 +County "MN, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701530.epw site_zip_code=56347 site_time_zone_utc_offset=-6 +County "MN, Traverse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701550.epw site_zip_code=56296 site_time_zone_utc_offset=-6 +County "MN, Wabasha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701570.epw site_zip_code=55041 site_time_zone_utc_offset=-6 +County "MN, Wadena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701590.epw site_zip_code=56482 site_time_zone_utc_offset=-6 +County "MN, Waseca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701610.epw site_zip_code=56093 site_time_zone_utc_offset=-6 +County "MN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701630.epw site_zip_code=55125 site_time_zone_utc_offset=-6 +County "MN, Watonwan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701650.epw site_zip_code=56081 site_time_zone_utc_offset=-6 +County "MN, Wilkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701670.epw site_zip_code=56520 site_time_zone_utc_offset=-6 +County "MN, Winona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701690.epw site_zip_code=55987 site_time_zone_utc_offset=-6 +County "MN, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701710.epw site_zip_code=55313 site_time_zone_utc_offset=-6 +County "MN, Yellow Medicine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701730.epw site_zip_code=56220 site_time_zone_utc_offset=-6 +County "MO, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900010.epw site_zip_code=63501 site_time_zone_utc_offset=-6 +County "MO, Andrew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900030.epw site_zip_code=64485 site_time_zone_utc_offset=-6 +County "MO, Atchison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900050.epw site_zip_code=64491 site_time_zone_utc_offset=-6 +County "MO, Audrain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900070.epw site_zip_code=65265 site_time_zone_utc_offset=-6 +County "MO, Barry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900090.epw site_zip_code=65625 site_time_zone_utc_offset=-6 +County "MO, Barton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900110.epw site_zip_code=64759 site_time_zone_utc_offset=-6 +County "MO, Bates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900130.epw site_zip_code=64730 site_time_zone_utc_offset=-6 +County "MO, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900150.epw site_zip_code=65355 site_time_zone_utc_offset=-6 +County "MO, Bollinger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900170.epw site_zip_code=63764 site_time_zone_utc_offset=-6 +County "MO, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900190.epw site_zip_code=65203 site_time_zone_utc_offset=-6 +County "MO, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900210.epw site_zip_code=64506 site_time_zone_utc_offset=-6 +County "MO, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900230.epw site_zip_code=63901 site_time_zone_utc_offset=-6 +County "MO, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900250.epw site_zip_code=64644 site_time_zone_utc_offset=-6 +County "MO, Callaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900270.epw site_zip_code=65251 site_time_zone_utc_offset=-6 +County "MO, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900290.epw site_zip_code=65020 site_time_zone_utc_offset=-6 +County "MO, Cape Girardeau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900310.epw site_zip_code=63701 site_time_zone_utc_offset=-6 +County "MO, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900330.epw site_zip_code=64633 site_time_zone_utc_offset=-6 +County "MO, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900350.epw site_zip_code=63965 site_time_zone_utc_offset=-6 +County "MO, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900370.epw site_zip_code=64012 site_time_zone_utc_offset=-6 +County "MO, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900390.epw site_zip_code=64744 site_time_zone_utc_offset=-6 +County "MO, Chariton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900410.epw site_zip_code=65281 site_time_zone_utc_offset=-6 +County "MO, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900430.epw site_zip_code=65714 site_time_zone_utc_offset=-6 +County "MO, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900450.epw site_zip_code=63445 site_time_zone_utc_offset=-6 +County "MO, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900470.epw site_zip_code=64118 site_time_zone_utc_offset=-6 +County "MO, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900490.epw site_zip_code=64429 site_time_zone_utc_offset=-6 +County "MO, Cole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900510.epw site_zip_code=65109 site_time_zone_utc_offset=-6 +County "MO, Cooper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900530.epw site_zip_code=65233 site_time_zone_utc_offset=-6 +County "MO, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900550.epw site_zip_code=65453 site_time_zone_utc_offset=-6 +County "MO, Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900570.epw site_zip_code=65661 site_time_zone_utc_offset=-6 +County "MO, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900590.epw site_zip_code=65622 site_time_zone_utc_offset=-6 +County "MO, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900610.epw site_zip_code=64640 site_time_zone_utc_offset=-6 +County "MO, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900630.epw site_zip_code=64429 site_time_zone_utc_offset=-6 +County "MO, Dent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900650.epw site_zip_code=65560 site_time_zone_utc_offset=-6 +County "MO, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900670.epw site_zip_code=65608 site_time_zone_utc_offset=-6 +County "MO, Dunklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900690.epw site_zip_code=63857 site_time_zone_utc_offset=-6 +County "MO, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900710.epw site_zip_code=63090 site_time_zone_utc_offset=-6 +County "MO, Gasconade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900730.epw site_zip_code=65066 site_time_zone_utc_offset=-6 +County "MO, Gentry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900750.epw site_zip_code=64402 site_time_zone_utc_offset=-6 +County "MO, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900770.epw site_zip_code=65807 site_time_zone_utc_offset=-6 +County "MO, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900790.epw site_zip_code=64683 site_time_zone_utc_offset=-6 +County "MO, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900810.epw site_zip_code=64424 site_time_zone_utc_offset=-6 +County "MO, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900830.epw site_zip_code=64735 site_time_zone_utc_offset=-6 +County "MO, Hickory County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900850.epw site_zip_code=65779 site_time_zone_utc_offset=-6 +County "MO, Holt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900870.epw site_zip_code=64470 site_time_zone_utc_offset=-6 +County "MO, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900890.epw site_zip_code=65248 site_time_zone_utc_offset=-6 +County "MO, Howell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900910.epw site_zip_code=65775 site_time_zone_utc_offset=-6 +County "MO, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900930.epw site_zip_code=63650 site_time_zone_utc_offset=-6 +County "MO, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900950.epw site_zip_code=64055 site_time_zone_utc_offset=-6 +County "MO, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900970.epw site_zip_code=64801 site_time_zone_utc_offset=-6 +County "MO, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900990.epw site_zip_code=63010 site_time_zone_utc_offset=-6 +County "MO, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901010.epw site_zip_code=64093 site_time_zone_utc_offset=-6 +County "MO, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901030.epw site_zip_code=63537 site_time_zone_utc_offset=-6 +County "MO, Laclede County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901050.epw site_zip_code=65536 site_time_zone_utc_offset=-6 +County "MO, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901070.epw site_zip_code=64076 site_time_zone_utc_offset=-6 +County "MO, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901090.epw site_zip_code=65605 site_time_zone_utc_offset=-6 +County "MO, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901110.epw site_zip_code=63435 site_time_zone_utc_offset=-6 +County "MO, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901130.epw site_zip_code=63379 site_time_zone_utc_offset=-6 +County "MO, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901150.epw site_zip_code=64628 site_time_zone_utc_offset=-6 +County "MO, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901170.epw site_zip_code=64601 site_time_zone_utc_offset=-6 +County "MO, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901210.epw site_zip_code=63552 site_time_zone_utc_offset=-6 +County "MO, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901230.epw site_zip_code=63645 site_time_zone_utc_offset=-6 +County "MO, Maries County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901250.epw site_zip_code=65582 site_time_zone_utc_offset=-6 +County "MO, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901270.epw site_zip_code=63401 site_time_zone_utc_offset=-6 +County "MO, McDonald County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901190.epw site_zip_code=64831 site_time_zone_utc_offset=-6 +County "MO, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901290.epw site_zip_code=64673 site_time_zone_utc_offset=-6 +County "MO, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901310.epw site_zip_code=65026 site_time_zone_utc_offset=-6 +County "MO, Mississippi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901330.epw site_zip_code=63845 site_time_zone_utc_offset=-6 +County "MO, Moniteau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901350.epw site_zip_code=65018 site_time_zone_utc_offset=-6 +County "MO, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901370.epw site_zip_code=65275 site_time_zone_utc_offset=-6 +County "MO, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901390.epw site_zip_code=63361 site_time_zone_utc_offset=-6 +County "MO, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901410.epw site_zip_code=65037 site_time_zone_utc_offset=-6 +County "MO, New Madrid County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901430.epw site_zip_code=63873 site_time_zone_utc_offset=-6 +County "MO, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901450.epw site_zip_code=64850 site_time_zone_utc_offset=-6 +County "MO, Nodaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901470.epw site_zip_code=64468 site_time_zone_utc_offset=-6 +County "MO, Oregon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901490.epw site_zip_code=65606 site_time_zone_utc_offset=-6 +County "MO, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901510.epw site_zip_code=65051 site_time_zone_utc_offset=-6 +County "MO, Ozark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901530.epw site_zip_code=65655 site_time_zone_utc_offset=-6 +County "MO, Pemiscot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901550.epw site_zip_code=63830 site_time_zone_utc_offset=-6 +County "MO, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901570.epw site_zip_code=63775 site_time_zone_utc_offset=-6 +County "MO, Pettis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901590.epw site_zip_code=65301 site_time_zone_utc_offset=-6 +County "MO, Phelps County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901610.epw site_zip_code=65401 site_time_zone_utc_offset=-6 +County "MO, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901630.epw site_zip_code=63334 site_time_zone_utc_offset=-6 +County "MO, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901650.epw site_zip_code=64151 site_time_zone_utc_offset=-6 +County "MO, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901670.epw site_zip_code=65613 site_time_zone_utc_offset=-6 +County "MO, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901690.epw site_zip_code=65473 site_time_zone_utc_offset=-6 +County "MO, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901710.epw site_zip_code=63565 site_time_zone_utc_offset=-6 +County "MO, Ralls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901730.epw site_zip_code=63459 site_time_zone_utc_offset=-6 +County "MO, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901750.epw site_zip_code=65270 site_time_zone_utc_offset=-6 +County "MO, Ray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901770.epw site_zip_code=64085 site_time_zone_utc_offset=-6 +County "MO, Reynolds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901790.epw site_zip_code=63638 site_time_zone_utc_offset=-6 +County "MO, Ripley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901810.epw site_zip_code=63935 site_time_zone_utc_offset=-6 +County "MO, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901950.epw site_zip_code=65340 site_time_zone_utc_offset=-6 +County "MO, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901970.epw site_zip_code=63548 site_time_zone_utc_offset=-6 +County "MO, Scotland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901990.epw site_zip_code=63555 site_time_zone_utc_offset=-6 +County "MO, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902010.epw site_zip_code=63801 site_time_zone_utc_offset=-6 +County "MO, Shannon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902030.epw site_zip_code=65588 site_time_zone_utc_offset=-6 +County "MO, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902050.epw site_zip_code=63468 site_time_zone_utc_offset=-6 +County "MO, St. Charles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901830.epw site_zip_code=63376 site_time_zone_utc_offset=-6 +County "MO, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901850.epw site_zip_code=64776 site_time_zone_utc_offset=-6 +County "MO, St. Francois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901870.epw site_zip_code=63640 site_time_zone_utc_offset=-6 +County "MO, St. Louis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901890.epw site_zip_code=63021 site_time_zone_utc_offset=-6 +County "MO, St. Louis city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2905100.epw site_zip_code=63116 site_time_zone_utc_offset=-6 +County "MO, Ste. Genevieve County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901860.epw site_zip_code=63670 site_time_zone_utc_offset=-6 +County "MO, Stoddard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902070.epw site_zip_code=63841 site_time_zone_utc_offset=-6 +County "MO, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902090.epw site_zip_code=65737 site_time_zone_utc_offset=-6 +County "MO, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902110.epw site_zip_code=63556 site_time_zone_utc_offset=-6 +County "MO, Taney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902130.epw site_zip_code=65616 site_time_zone_utc_offset=-6 +County "MO, Texas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902150.epw site_zip_code=65483 site_time_zone_utc_offset=-6 +County "MO, Vernon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902170.epw site_zip_code=64772 site_time_zone_utc_offset=-6 +County "MO, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902190.epw site_zip_code=63383 site_time_zone_utc_offset=-6 +County "MO, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902210.epw site_zip_code=63664 site_time_zone_utc_offset=-6 +County "MO, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902230.epw site_zip_code=63957 site_time_zone_utc_offset=-6 +County "MO, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902250.epw site_zip_code=65706 site_time_zone_utc_offset=-6 +County "MO, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902270.epw site_zip_code=64456 site_time_zone_utc_offset=-6 +County "MO, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902290.epw site_zip_code=65711 site_time_zone_utc_offset=-6 +County "MS, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800010.epw site_zip_code=39120 site_time_zone_utc_offset=-6 +County "MS, Alcorn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800030.epw site_zip_code=38834 site_time_zone_utc_offset=-6 +County "MS, Amite County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800050.epw site_zip_code=39645 site_time_zone_utc_offset=-6 +County "MS, Attala County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800070.epw site_zip_code=39090 site_time_zone_utc_offset=-6 +County "MS, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800090.epw site_zip_code=38603 site_time_zone_utc_offset=-6 +County "MS, Bolivar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800110.epw site_zip_code=38732 site_time_zone_utc_offset=-6 +County "MS, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800130.epw site_zip_code=38916 site_time_zone_utc_offset=-6 +County "MS, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800150.epw site_zip_code=38917 site_time_zone_utc_offset=-6 +County "MS, Chickasaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800170.epw site_zip_code=38851 site_time_zone_utc_offset=-6 +County "MS, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800190.epw site_zip_code=39735 site_time_zone_utc_offset=-6 +County "MS, Claiborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800210.epw site_zip_code=39150 site_time_zone_utc_offset=-6 +County "MS, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800230.epw site_zip_code=39355 site_time_zone_utc_offset=-6 +County "MS, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800250.epw site_zip_code=39773 site_time_zone_utc_offset=-6 +County "MS, Coahoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800270.epw site_zip_code=38614 site_time_zone_utc_offset=-6 +County "MS, Copiah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800290.epw site_zip_code=39059 site_time_zone_utc_offset=-6 +County "MS, Covington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800310.epw site_zip_code=39428 site_time_zone_utc_offset=-6 +County "MS, DeSoto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800330.epw site_zip_code=38654 site_time_zone_utc_offset=-6 +County "MS, Forrest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800350.epw site_zip_code=39401 site_time_zone_utc_offset=-6 +County "MS, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800370.epw site_zip_code=39653 site_time_zone_utc_offset=-6 +County "MS, George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800390.epw site_zip_code=39452 site_time_zone_utc_offset=-6 +County "MS, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800410.epw site_zip_code=39451 site_time_zone_utc_offset=-6 +County "MS, Grenada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800430.epw site_zip_code=38901 site_time_zone_utc_offset=-6 +County "MS, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800450.epw site_zip_code=39520 site_time_zone_utc_offset=-6 +County "MS, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800470.epw site_zip_code=39503 site_time_zone_utc_offset=-6 +County "MS, Hinds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800490.epw site_zip_code=39209 site_time_zone_utc_offset=-6 +County "MS, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800510.epw site_zip_code=39095 site_time_zone_utc_offset=-6 +County "MS, Humphreys County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800530.epw site_zip_code=39038 site_time_zone_utc_offset=-6 +County "MS, Issaquena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800550.epw site_zip_code=39159 site_time_zone_utc_offset=-6 +County "MS, Itawamba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800570.epw site_zip_code=38843 site_time_zone_utc_offset=-6 +County "MS, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800590.epw site_zip_code=39564 site_time_zone_utc_offset=-6 +County "MS, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800610.epw site_zip_code=39422 site_time_zone_utc_offset=-6 +County "MS, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800630.epw site_zip_code=39069 site_time_zone_utc_offset=-6 +County "MS, Jefferson Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800650.epw site_zip_code=39474 site_time_zone_utc_offset=-6 +County "MS, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800670.epw site_zip_code=39443 site_time_zone_utc_offset=-6 +County "MS, Kemper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800690.epw site_zip_code=39328 site_time_zone_utc_offset=-6 +County "MS, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800710.epw site_zip_code=38655 site_time_zone_utc_offset=-6 +County "MS, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800730.epw site_zip_code=39402 site_time_zone_utc_offset=-6 +County "MS, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800750.epw site_zip_code=39301 site_time_zone_utc_offset=-6 +County "MS, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800770.epw site_zip_code=39654 site_time_zone_utc_offset=-6 +County "MS, Leake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800790.epw site_zip_code=39051 site_time_zone_utc_offset=-6 +County "MS, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800810.epw site_zip_code=38801 site_time_zone_utc_offset=-6 +County "MS, Leflore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800830.epw site_zip_code=38930 site_time_zone_utc_offset=-6 +County "MS, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800850.epw site_zip_code=39601 site_time_zone_utc_offset=-6 +County "MS, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800870.epw site_zip_code=39702 site_time_zone_utc_offset=-6 +County "MS, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800890.epw site_zip_code=39110 site_time_zone_utc_offset=-6 +County "MS, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800910.epw site_zip_code=39429 site_time_zone_utc_offset=-6 +County "MS, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800930.epw site_zip_code=38611 site_time_zone_utc_offset=-6 +County "MS, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800950.epw site_zip_code=38821 site_time_zone_utc_offset=-6 +County "MS, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800970.epw site_zip_code=38967 site_time_zone_utc_offset=-6 +County "MS, Neshoba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800990.epw site_zip_code=39350 site_time_zone_utc_offset=-6 +County "MS, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801010.epw site_zip_code=39345 site_time_zone_utc_offset=-6 +County "MS, Noxubee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801030.epw site_zip_code=39341 site_time_zone_utc_offset=-6 +County "MS, Oktibbeha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801050.epw site_zip_code=39759 site_time_zone_utc_offset=-6 +County "MS, Panola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801070.epw site_zip_code=38606 site_time_zone_utc_offset=-6 +County "MS, Pearl River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801090.epw site_zip_code=39466 site_time_zone_utc_offset=-6 +County "MS, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801110.epw site_zip_code=39476 site_time_zone_utc_offset=-6 +County "MS, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801130.epw site_zip_code=39648 site_time_zone_utc_offset=-6 +County "MS, Pontotoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801150.epw site_zip_code=38863 site_time_zone_utc_offset=-6 +County "MS, Prentiss County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801170.epw site_zip_code=38829 site_time_zone_utc_offset=-6 +County "MS, Quitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801190.epw site_zip_code=38646 site_time_zone_utc_offset=-6 +County "MS, Rankin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801210.epw site_zip_code=39047 site_time_zone_utc_offset=-6 +County "MS, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801230.epw site_zip_code=39074 site_time_zone_utc_offset=-6 +County "MS, Sharkey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801250.epw site_zip_code=39159 site_time_zone_utc_offset=-6 +County "MS, Simpson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801270.epw site_zip_code=39111 site_time_zone_utc_offset=-6 +County "MS, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801290.epw site_zip_code=39168 site_time_zone_utc_offset=-6 +County "MS, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801310.epw site_zip_code=39577 site_time_zone_utc_offset=-6 +County "MS, Sunflower County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801330.epw site_zip_code=38751 site_time_zone_utc_offset=-6 +County "MS, Tallahatchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801350.epw site_zip_code=38921 site_time_zone_utc_offset=-6 +County "MS, Tate County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801370.epw site_zip_code=38668 site_time_zone_utc_offset=-6 +County "MS, Tippah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801390.epw site_zip_code=38663 site_time_zone_utc_offset=-6 +County "MS, Tishomingo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801410.epw site_zip_code=38852 site_time_zone_utc_offset=-6 +County "MS, Tunica County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801430.epw site_zip_code=38676 site_time_zone_utc_offset=-6 +County "MS, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801450.epw site_zip_code=38652 site_time_zone_utc_offset=-6 +County "MS, Walthall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801470.epw site_zip_code=39667 site_time_zone_utc_offset=-6 +County "MS, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801490.epw site_zip_code=39180 site_time_zone_utc_offset=-6 +County "MS, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801510.epw site_zip_code=38701 site_time_zone_utc_offset=-6 +County "MS, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801530.epw site_zip_code=39367 site_time_zone_utc_offset=-6 +County "MS, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801550.epw site_zip_code=39744 site_time_zone_utc_offset=-6 +County "MS, Wilkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801570.epw site_zip_code=39669 site_time_zone_utc_offset=-6 +County "MS, Winston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801590.epw site_zip_code=39339 site_time_zone_utc_offset=-6 +County "MS, Yalobusha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801610.epw site_zip_code=38965 site_time_zone_utc_offset=-6 +County "MS, Yazoo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801630.epw site_zip_code=39194 site_time_zone_utc_offset=-6 +County "MT, Beaverhead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000010.epw site_zip_code=59725 site_time_zone_utc_offset=-7 +County "MT, Big Horn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000030.epw site_zip_code=59034 site_time_zone_utc_offset=-7 +County "MT, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000050.epw site_zip_code=59526 site_time_zone_utc_offset=-7 +County "MT, Broadwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000070.epw site_zip_code=59644 site_time_zone_utc_offset=-7 +County "MT, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000090.epw site_zip_code=59068 site_time_zone_utc_offset=-7 +County "MT, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000110.epw site_zip_code=59324 site_time_zone_utc_offset=-7 +County "MT, Cascade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000130.epw site_zip_code=59405 site_time_zone_utc_offset=-7 +County "MT, Chouteau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000150.epw site_zip_code=59442 site_time_zone_utc_offset=-7 +County "MT, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000170.epw site_zip_code=59301 site_time_zone_utc_offset=-7 +County "MT, Daniels County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000190.epw site_zip_code=59263 site_time_zone_utc_offset=-7 +County "MT, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000210.epw site_zip_code=59330 site_time_zone_utc_offset=-7 +County "MT, Deer Lodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000230.epw site_zip_code=59711 site_time_zone_utc_offset=-7 +County "MT, Fallon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000250.epw site_zip_code=59313 site_time_zone_utc_offset=-7 +County "MT, Fergus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000270.epw site_zip_code=59457 site_time_zone_utc_offset=-7 +County "MT, Flathead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000290.epw site_zip_code=59901 site_time_zone_utc_offset=-7 +County "MT, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000310.epw site_zip_code=59718 site_time_zone_utc_offset=-7 +County "MT, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000330.epw site_zip_code=59337 site_time_zone_utc_offset=-7 +County "MT, Glacier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000350.epw site_zip_code=59427 site_time_zone_utc_offset=-7 +County "MT, Golden Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000370.epw site_zip_code=59074 site_time_zone_utc_offset=-7 +County "MT, Granite County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000390.epw site_zip_code=59858 site_time_zone_utc_offset=-7 +County "MT, Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000410.epw site_zip_code=59501 site_time_zone_utc_offset=-7 +County "MT, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000430.epw site_zip_code=59634 site_time_zone_utc_offset=-7 +County "MT, Judith Basin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000450.epw site_zip_code=59479 site_time_zone_utc_offset=-7 +County "MT, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000470.epw site_zip_code=59860 site_time_zone_utc_offset=-7 +County "MT, Lewis and Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000490.epw site_zip_code=59601 site_time_zone_utc_offset=-7 +County "MT, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000510.epw site_zip_code=59522 site_time_zone_utc_offset=-7 +County "MT, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000530.epw site_zip_code=59923 site_time_zone_utc_offset=-7 +County "MT, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000570.epw site_zip_code=59729 site_time_zone_utc_offset=-7 +County "MT, McCone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000550.epw site_zip_code=59215 site_time_zone_utc_offset=-7 +County "MT, Meagher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000590.epw site_zip_code=59645 site_time_zone_utc_offset=-7 +County "MT, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000610.epw site_zip_code=59872 site_time_zone_utc_offset=-7 +County "MT, Missoula County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000630.epw site_zip_code=59801 site_time_zone_utc_offset=-7 +County "MT, Musselshell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000650.epw site_zip_code=59072 site_time_zone_utc_offset=-7 +County "MT, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000670.epw site_zip_code=59047 site_time_zone_utc_offset=-7 +County "MT, Petroleum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000690.epw site_zip_code=59087 site_time_zone_utc_offset=-7 +County "MT, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000710.epw site_zip_code=59538 site_time_zone_utc_offset=-7 +County "MT, Pondera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000730.epw site_zip_code=59425 site_time_zone_utc_offset=-7 +County "MT, Powder River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000750.epw site_zip_code=59317 site_time_zone_utc_offset=-7 +County "MT, Powell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000770.epw site_zip_code=59722 site_time_zone_utc_offset=-7 +County "MT, Prairie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000790.epw site_zip_code=59349 site_time_zone_utc_offset=-7 +County "MT, Ravalli County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000810.epw site_zip_code=59840 site_time_zone_utc_offset=-7 +County "MT, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000830.epw site_zip_code=59270 site_time_zone_utc_offset=-7 +County "MT, Roosevelt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000850.epw site_zip_code=59201 site_time_zone_utc_offset=-7 +County "MT, Rosebud County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000870.epw site_zip_code=59327 site_time_zone_utc_offset=-7 +County "MT, Sanders County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000890.epw site_zip_code=59859 site_time_zone_utc_offset=-7 +County "MT, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000910.epw site_zip_code=59254 site_time_zone_utc_offset=-7 +County "MT, Silver Bow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000930.epw site_zip_code=59701 site_time_zone_utc_offset=-7 +County "MT, Stillwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000950.epw site_zip_code=59019 site_time_zone_utc_offset=-7 +County "MT, Sweet Grass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000970.epw site_zip_code=59011 site_time_zone_utc_offset=-7 +County "MT, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000990.epw site_zip_code=59422 site_time_zone_utc_offset=-7 +County "MT, Toole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001010.epw site_zip_code=59474 site_time_zone_utc_offset=-7 +County "MT, Treasure County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001030.epw site_zip_code=59038 site_time_zone_utc_offset=-7 +County "MT, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001050.epw site_zip_code=59230 site_time_zone_utc_offset=-7 +County "MT, Wheatland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001070.epw site_zip_code=59036 site_time_zone_utc_offset=-7 +County "MT, Wibaux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001090.epw site_zip_code=59353 site_time_zone_utc_offset=-7 +County "MT, Yellowstone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001110.epw site_zip_code=59102 site_time_zone_utc_offset=-7 +County "NC, Alamance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700010.epw site_zip_code=27215 site_time_zone_utc_offset=-5 +County "NC, Alexander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700030.epw site_zip_code=28681 site_time_zone_utc_offset=-5 +County "NC, Alleghany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700050.epw site_zip_code=28675 site_time_zone_utc_offset=-5 +County "NC, Anson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700070.epw site_zip_code=28170 site_time_zone_utc_offset=-5 +County "NC, Ashe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700090.epw site_zip_code=28694 site_time_zone_utc_offset=-5 +County "NC, Avery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700110.epw site_zip_code=28657 site_time_zone_utc_offset=-5 +County "NC, Beaufort County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700130.epw site_zip_code=27889 site_time_zone_utc_offset=-5 +County "NC, Bertie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700150.epw site_zip_code=27983 site_time_zone_utc_offset=-5 +County "NC, Bladen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700170.epw site_zip_code=28337 site_time_zone_utc_offset=-5 +County "NC, Brunswick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700190.epw site_zip_code=28451 site_time_zone_utc_offset=-5 +County "NC, Buncombe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700210.epw site_zip_code=28806 site_time_zone_utc_offset=-5 +County "NC, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700230.epw site_zip_code=28655 site_time_zone_utc_offset=-5 +County "NC, Cabarrus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700250.epw site_zip_code=28027 site_time_zone_utc_offset=-5 +County "NC, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700270.epw site_zip_code=28645 site_time_zone_utc_offset=-5 +County "NC, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700290.epw site_zip_code=27921 site_time_zone_utc_offset=-5 +County "NC, Carteret County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700310.epw site_zip_code=28570 site_time_zone_utc_offset=-5 +County "NC, Caswell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700330.epw site_zip_code=27379 site_time_zone_utc_offset=-5 +County "NC, Catawba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700350.epw site_zip_code=28601 site_time_zone_utc_offset=-5 +County "NC, Chatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700370.epw site_zip_code=27312 site_time_zone_utc_offset=-5 +County "NC, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700390.epw site_zip_code=28906 site_time_zone_utc_offset=-5 +County "NC, Chowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700410.epw site_zip_code=27932 site_time_zone_utc_offset=-5 +County "NC, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700430.epw site_zip_code=28904 site_time_zone_utc_offset=-5 +County "NC, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700450.epw site_zip_code=28150 site_time_zone_utc_offset=-5 +County "NC, Columbus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700470.epw site_zip_code=28472 site_time_zone_utc_offset=-5 +County "NC, Craven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700490.epw site_zip_code=28562 site_time_zone_utc_offset=-5 +County "NC, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700510.epw site_zip_code=28314 site_time_zone_utc_offset=-5 +County "NC, Currituck County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700530.epw site_zip_code=27958 site_time_zone_utc_offset=-5 +County "NC, Dare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700550.epw site_zip_code=27949 site_time_zone_utc_offset=-5 +County "NC, Davidson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700570.epw site_zip_code=27360 site_time_zone_utc_offset=-5 +County "NC, Davie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700590.epw site_zip_code=27028 site_time_zone_utc_offset=-5 +County "NC, Duplin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700610.epw site_zip_code=28466 site_time_zone_utc_offset=-5 +County "NC, Durham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700630.epw site_zip_code=27703 site_time_zone_utc_offset=-5 +County "NC, Edgecombe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700650.epw site_zip_code=27801 site_time_zone_utc_offset=-5 +County "NC, Forsyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700670.epw site_zip_code=27284 site_time_zone_utc_offset=-5 +County "NC, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700690.epw site_zip_code=27549 site_time_zone_utc_offset=-5 +County "NC, Gaston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700710.epw site_zip_code=28054 site_time_zone_utc_offset=-5 +County "NC, Gates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700730.epw site_zip_code=27937 site_time_zone_utc_offset=-5 +County "NC, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700750.epw site_zip_code=28771 site_time_zone_utc_offset=-5 +County "NC, Granville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700770.epw site_zip_code=27565 site_time_zone_utc_offset=-5 +County "NC, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700790.epw site_zip_code=28580 site_time_zone_utc_offset=-5 +County "NC, Guilford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700810.epw site_zip_code=27406 site_time_zone_utc_offset=-5 +County "NC, Halifax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700830.epw site_zip_code=27870 site_time_zone_utc_offset=-5 +County "NC, Harnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700850.epw site_zip_code=27546 site_time_zone_utc_offset=-5 +County "NC, Haywood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700870.epw site_zip_code=28786 site_time_zone_utc_offset=-5 +County "NC, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700890.epw site_zip_code=28792 site_time_zone_utc_offset=-5 +County "NC, Hertford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700910.epw site_zip_code=27910 site_time_zone_utc_offset=-5 +County "NC, Hoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700930.epw site_zip_code=28376 site_time_zone_utc_offset=-5 +County "NC, Hyde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700950.epw site_zip_code=27824 site_time_zone_utc_offset=-5 +County "NC, Iredell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700970.epw site_zip_code=28117 site_time_zone_utc_offset=-5 +County "NC, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700990.epw site_zip_code=28779 site_time_zone_utc_offset=-5 +County "NC, Johnston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701010.epw site_zip_code=27520 site_time_zone_utc_offset=-5 +County "NC, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701030.epw site_zip_code=28585 site_time_zone_utc_offset=-5 +County "NC, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701050.epw site_zip_code=27330 site_time_zone_utc_offset=-5 +County "NC, Lenoir County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701070.epw site_zip_code=28501 site_time_zone_utc_offset=-5 +County "NC, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701090.epw site_zip_code=28092 site_time_zone_utc_offset=-5 +County "NC, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701130.epw site_zip_code=28734 site_time_zone_utc_offset=-5 +County "NC, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701150.epw site_zip_code=28753 site_time_zone_utc_offset=-5 +County "NC, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701170.epw site_zip_code=27892 site_time_zone_utc_offset=-5 +County "NC, McDowell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701110.epw site_zip_code=28752 site_time_zone_utc_offset=-5 +County "NC, Mecklenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701190.epw site_zip_code=28269 site_time_zone_utc_offset=-5 +County "NC, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701210.epw site_zip_code=28777 site_time_zone_utc_offset=-5 +County "NC, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701230.epw site_zip_code=27371 site_time_zone_utc_offset=-5 +County "NC, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701250.epw site_zip_code=28374 site_time_zone_utc_offset=-5 +County "NC, Nash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701270.epw site_zip_code=27804 site_time_zone_utc_offset=-5 +County "NC, New Hanover County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701290.epw site_zip_code=28412 site_time_zone_utc_offset=-5 +County "NC, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701310.epw site_zip_code=27831 site_time_zone_utc_offset=-5 +County "NC, Onslow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701330.epw site_zip_code=28540 site_time_zone_utc_offset=-5 +County "NC, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701350.epw site_zip_code=27514 site_time_zone_utc_offset=-5 +County "NC, Pamlico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701370.epw site_zip_code=28571 site_time_zone_utc_offset=-5 +County "NC, Pasquotank County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701390.epw site_zip_code=27909 site_time_zone_utc_offset=-5 +County "NC, Pender County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701410.epw site_zip_code=28443 site_time_zone_utc_offset=-5 +County "NC, Perquimans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701430.epw site_zip_code=27944 site_time_zone_utc_offset=-5 +County "NC, Person County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701450.epw site_zip_code=27574 site_time_zone_utc_offset=-5 +County "NC, Pitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701470.epw site_zip_code=27858 site_time_zone_utc_offset=-5 +County "NC, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701490.epw site_zip_code=28782 site_time_zone_utc_offset=-5 +County "NC, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701510.epw site_zip_code=27205 site_time_zone_utc_offset=-5 +County "NC, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701530.epw site_zip_code=28379 site_time_zone_utc_offset=-5 +County "NC, Robeson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701550.epw site_zip_code=28358 site_time_zone_utc_offset=-5 +County "NC, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701570.epw site_zip_code=27320 site_time_zone_utc_offset=-5 +County "NC, Rowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701590.epw site_zip_code=28146 site_time_zone_utc_offset=-5 +County "NC, Rutherford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701610.epw site_zip_code=28043 site_time_zone_utc_offset=-5 +County "NC, Sampson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701630.epw site_zip_code=28328 site_time_zone_utc_offset=-5 +County "NC, Scotland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701650.epw site_zip_code=28352 site_time_zone_utc_offset=-5 +County "NC, Stanly County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701670.epw site_zip_code=28001 site_time_zone_utc_offset=-5 +County "NC, Stokes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701690.epw site_zip_code=27021 site_time_zone_utc_offset=-5 +County "NC, Surry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701710.epw site_zip_code=27030 site_time_zone_utc_offset=-5 +County "NC, Swain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701730.epw site_zip_code=28713 site_time_zone_utc_offset=-5 +County "NC, Transylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701750.epw site_zip_code=28712 site_time_zone_utc_offset=-5 +County "NC, Tyrrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701770.epw site_zip_code=27925 site_time_zone_utc_offset=-5 +County "NC, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701790.epw site_zip_code=28173 site_time_zone_utc_offset=-5 +County "NC, Vance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701810.epw site_zip_code=27537 site_time_zone_utc_offset=-5 +County "NC, Wake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701830.epw site_zip_code=27610 site_time_zone_utc_offset=-5 +County "NC, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701850.epw site_zip_code=27589 site_time_zone_utc_offset=-5 +County "NC, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701870.epw site_zip_code=27962 site_time_zone_utc_offset=-5 +County "NC, Watauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701890.epw site_zip_code=28607 site_time_zone_utc_offset=-5 +County "NC, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701910.epw site_zip_code=27530 site_time_zone_utc_offset=-5 +County "NC, Wilkes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701930.epw site_zip_code=28659 site_time_zone_utc_offset=-5 +County "NC, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701950.epw site_zip_code=27893 site_time_zone_utc_offset=-5 +County "NC, Yadkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701970.epw site_zip_code=27055 site_time_zone_utc_offset=-5 +County "NC, Yancey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701990.epw site_zip_code=28714 site_time_zone_utc_offset=-5 +County "ND, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800010.epw site_zip_code=58639 site_time_zone_utc_offset=-7 +County "ND, Barnes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800030.epw site_zip_code=58072 site_time_zone_utc_offset=-6 +County "ND, Benson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800050.epw site_zip_code=58348 site_time_zone_utc_offset=-6 +County "ND, Billings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800070.epw site_zip_code=58622 site_time_zone_utc_offset=-7 +County "ND, Bottineau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800090.epw site_zip_code=58318 site_time_zone_utc_offset=-6 +County "ND, Bowman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800110.epw site_zip_code=58623 site_time_zone_utc_offset=-7 +County "ND, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800130.epw site_zip_code=58773 site_time_zone_utc_offset=-6 +County "ND, Burleigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800150.epw site_zip_code=58503 site_time_zone_utc_offset=-6 +County "ND, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800170.epw site_zip_code=58103 site_time_zone_utc_offset=-6 +County "ND, Cavalier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800190.epw site_zip_code=58249 site_time_zone_utc_offset=-6 +County "ND, Dickey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800210.epw site_zip_code=58474 site_time_zone_utc_offset=-6 +County "ND, Divide County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800230.epw site_zip_code=58730 site_time_zone_utc_offset=-6 +County "ND, Dunn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800250.epw site_zip_code=58640 site_time_zone_utc_offset=-7 +County "ND, Eddy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800270.epw site_zip_code=58356 site_time_zone_utc_offset=-6 +County "ND, Emmons County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800290.epw site_zip_code=58552 site_time_zone_utc_offset=-6 +County "ND, Foster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800310.epw site_zip_code=58421 site_time_zone_utc_offset=-6 +County "ND, Golden Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800330.epw site_zip_code=58621 site_time_zone_utc_offset=-7 +County "ND, Grand Forks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800350.epw site_zip_code=58201 site_time_zone_utc_offset=-6 +County "ND, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800370.epw site_zip_code=58533 site_time_zone_utc_offset=-7 +County "ND, Griggs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800390.epw site_zip_code=58425 site_time_zone_utc_offset=-6 +County "ND, Hettinger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800410.epw site_zip_code=58646 site_time_zone_utc_offset=-7 +County "ND, Kidder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800430.epw site_zip_code=58482 site_time_zone_utc_offset=-6 +County "ND, LaMoure County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800450.epw site_zip_code=58458 site_time_zone_utc_offset=-6 +County "ND, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800470.epw site_zip_code=58561 site_time_zone_utc_offset=-6 +County "ND, McHenry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800490.epw site_zip_code=58790 site_time_zone_utc_offset=-6 +County "ND, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800510.epw site_zip_code=58495 site_time_zone_utc_offset=-6 +County "ND, McKenzie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800530.epw site_zip_code=58854 site_time_zone_utc_offset=-7 +County "ND, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800550.epw site_zip_code=58540 site_time_zone_utc_offset=-6 +County "ND, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800570.epw site_zip_code=58545 site_time_zone_utc_offset=-6 +County "ND, Morton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800590.epw site_zip_code=58554 site_time_zone_utc_offset=-6 +County "ND, Mountrail County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800610.epw site_zip_code=58763 site_time_zone_utc_offset=-6 +County "ND, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800630.epw site_zip_code=58344 site_time_zone_utc_offset=-6 +County "ND, Oliver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800650.epw site_zip_code=58530 site_time_zone_utc_offset=-6 +County "ND, Pembina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800670.epw site_zip_code=58220 site_time_zone_utc_offset=-6 +County "ND, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800690.epw site_zip_code=58368 site_time_zone_utc_offset=-6 +County "ND, Ramsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800710.epw site_zip_code=58301 site_time_zone_utc_offset=-6 +County "ND, Ransom County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800730.epw site_zip_code=58054 site_time_zone_utc_offset=-6 +County "ND, Renville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800750.epw site_zip_code=58761 site_time_zone_utc_offset=-6 +County "ND, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800770.epw site_zip_code=58075 site_time_zone_utc_offset=-6 +County "ND, Rolette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800790.epw site_zip_code=58367 site_time_zone_utc_offset=-6 +County "ND, Sargent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800810.epw site_zip_code=58060 site_time_zone_utc_offset=-6 +County "ND, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800830.epw site_zip_code=58463 site_time_zone_utc_offset=-6 +County "ND, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800850.epw site_zip_code=58538 site_time_zone_utc_offset=-6 +County "ND, Slope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800870.epw site_zip_code=58620 site_time_zone_utc_offset=-7 +County "ND, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800890.epw site_zip_code=58601 site_time_zone_utc_offset=-7 +County "ND, Steele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800910.epw site_zip_code=58230 site_time_zone_utc_offset=-6 +County "ND, Stutsman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800930.epw site_zip_code=58401 site_time_zone_utc_offset=-6 +County "ND, Towner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800950.epw site_zip_code=58324 site_time_zone_utc_offset=-6 +County "ND, Traill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800970.epw site_zip_code=58257 site_time_zone_utc_offset=-6 +County "ND, Walsh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800990.epw site_zip_code=58237 site_time_zone_utc_offset=-6 +County "ND, Ward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801010.epw site_zip_code=58701 site_time_zone_utc_offset=-6 +County "ND, Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801030.epw site_zip_code=58341 site_time_zone_utc_offset=-6 +County "ND, Williams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801050.epw site_zip_code=58801 site_time_zone_utc_offset=-6 +County "NE, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100010.epw site_zip_code=68901 site_time_zone_utc_offset=-6 +County "NE, Antelope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100030.epw site_zip_code=68756 site_time_zone_utc_offset=-6 +County "NE, Arthur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100050.epw site_zip_code=69121 site_time_zone_utc_offset=-7 +County "NE, Banner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100070.epw site_zip_code=69345 site_time_zone_utc_offset=-7 +County "NE, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100090.epw site_zip_code=68833 site_time_zone_utc_offset=-6 +County "NE, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100110.epw site_zip_code=68620 site_time_zone_utc_offset=-6 +County "NE, Box Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100130.epw site_zip_code=69301 site_time_zone_utc_offset=-7 +County "NE, Boyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100150.epw site_zip_code=68777 site_time_zone_utc_offset=-6 +County "NE, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100170.epw site_zip_code=69210 site_time_zone_utc_offset=-6 +County "NE, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100190.epw site_zip_code=68845 site_time_zone_utc_offset=-6 +County "NE, Burt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100210.epw site_zip_code=68061 site_time_zone_utc_offset=-6 +County "NE, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100230.epw site_zip_code=68632 site_time_zone_utc_offset=-6 +County "NE, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100250.epw site_zip_code=68048 site_time_zone_utc_offset=-6 +County "NE, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100270.epw site_zip_code=68739 site_time_zone_utc_offset=-6 +County "NE, Chase County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100290.epw site_zip_code=69033 site_time_zone_utc_offset=-7 +County "NE, Cherry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100310.epw site_zip_code=69201 site_time_zone_utc_offset=-6 +County "NE, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100330.epw site_zip_code=69162 site_time_zone_utc_offset=-7 +County "NE, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100350.epw site_zip_code=68979 site_time_zone_utc_offset=-6 +County "NE, Colfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100370.epw site_zip_code=68661 site_time_zone_utc_offset=-6 +County "NE, Cuming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100390.epw site_zip_code=68788 site_time_zone_utc_offset=-6 +County "NE, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100410.epw site_zip_code=68822 site_time_zone_utc_offset=-6 +County "NE, Dakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100430.epw site_zip_code=68776 site_time_zone_utc_offset=-6 +County "NE, Dawes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100450.epw site_zip_code=69337 site_time_zone_utc_offset=-7 +County "NE, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100470.epw site_zip_code=68850 site_time_zone_utc_offset=-6 +County "NE, Deuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100490.epw site_zip_code=69129 site_time_zone_utc_offset=-7 +County "NE, Dixon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100510.epw site_zip_code=68770 site_time_zone_utc_offset=-6 +County "NE, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100530.epw site_zip_code=68025 site_time_zone_utc_offset=-6 +County "NE, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100550.epw site_zip_code=68022 site_time_zone_utc_offset=-6 +County "NE, Dundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100570.epw site_zip_code=69021 site_time_zone_utc_offset=-7 +County "NE, Fillmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100590.epw site_zip_code=68361 site_time_zone_utc_offset=-6 +County "NE, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100610.epw site_zip_code=68939 site_time_zone_utc_offset=-6 +County "NE, Frontier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100630.epw site_zip_code=69025 site_time_zone_utc_offset=-6 +County "NE, Furnas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100650.epw site_zip_code=69022 site_time_zone_utc_offset=-6 +County "NE, Gage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100670.epw site_zip_code=68310 site_time_zone_utc_offset=-6 +County "NE, Garden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100690.epw site_zip_code=69154 site_time_zone_utc_offset=-7 +County "NE, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100710.epw site_zip_code=68823 site_time_zone_utc_offset=-6 +County "NE, Gosper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100730.epw site_zip_code=68937 site_time_zone_utc_offset=-6 +County "NE, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100750.epw site_zip_code=69350 site_time_zone_utc_offset=-7 +County "NE, Greeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100770.epw site_zip_code=68665 site_time_zone_utc_offset=-6 +County "NE, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100790.epw site_zip_code=68801 site_time_zone_utc_offset=-6 +County "NE, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100810.epw site_zip_code=68818 site_time_zone_utc_offset=-6 +County "NE, Harlan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100830.epw site_zip_code=68920 site_time_zone_utc_offset=-6 +County "NE, Hayes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100850.epw site_zip_code=69032 site_time_zone_utc_offset=-6 +County "NE, Hitchcock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100870.epw site_zip_code=69024 site_time_zone_utc_offset=-6 +County "NE, Holt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100890.epw site_zip_code=68763 site_time_zone_utc_offset=-6 +County "NE, Hooker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100910.epw site_zip_code=69152 site_time_zone_utc_offset=-7 +County "NE, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100930.epw site_zip_code=68873 site_time_zone_utc_offset=-6 +County "NE, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100950.epw site_zip_code=68352 site_time_zone_utc_offset=-6 +County "NE, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100970.epw site_zip_code=68450 site_time_zone_utc_offset=-6 +County "NE, Kearney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100990.epw site_zip_code=68959 site_time_zone_utc_offset=-6 +County "NE, Keith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101010.epw site_zip_code=69153 site_time_zone_utc_offset=-7 +County "NE, Keya Paha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101030.epw site_zip_code=68778 site_time_zone_utc_offset=-6 +County "NE, Kimball County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101050.epw site_zip_code=69145 site_time_zone_utc_offset=-7 +County "NE, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101070.epw site_zip_code=68718 site_time_zone_utc_offset=-6 +County "NE, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101090.epw site_zip_code=68516 site_time_zone_utc_offset=-6 +County "NE, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101110.epw site_zip_code=69101 site_time_zone_utc_offset=-6 +County "NE, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101130.epw site_zip_code=69163 site_time_zone_utc_offset=-6 +County "NE, Loup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101150.epw site_zip_code=68823 site_time_zone_utc_offset=-6 +County "NE, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101190.epw site_zip_code=68701 site_time_zone_utc_offset=-6 +County "NE, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101170.epw site_zip_code=69167 site_time_zone_utc_offset=-6 +County "NE, Merrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101210.epw site_zip_code=68826 site_time_zone_utc_offset=-6 +County "NE, Morrill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101230.epw site_zip_code=69336 site_time_zone_utc_offset=-7 +County "NE, Nance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101250.epw site_zip_code=68638 site_time_zone_utc_offset=-6 +County "NE, Nemaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101270.epw site_zip_code=68305 site_time_zone_utc_offset=-6 +County "NE, Nuckolls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101290.epw site_zip_code=68978 site_time_zone_utc_offset=-6 +County "NE, Otoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101310.epw site_zip_code=68410 site_time_zone_utc_offset=-6 +County "NE, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101330.epw site_zip_code=68420 site_time_zone_utc_offset=-6 +County "NE, Perkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101350.epw site_zip_code=69140 site_time_zone_utc_offset=-7 +County "NE, Phelps County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101370.epw site_zip_code=68949 site_time_zone_utc_offset=-6 +County "NE, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101390.epw site_zip_code=68767 site_time_zone_utc_offset=-6 +County "NE, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101410.epw site_zip_code=68601 site_time_zone_utc_offset=-6 +County "NE, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101430.epw site_zip_code=68666 site_time_zone_utc_offset=-6 +County "NE, Red Willow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101450.epw site_zip_code=69001 site_time_zone_utc_offset=-6 +County "NE, Richardson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101470.epw site_zip_code=68355 site_time_zone_utc_offset=-6 +County "NE, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101490.epw site_zip_code=68714 site_time_zone_utc_offset=-6 +County "NE, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101510.epw site_zip_code=68333 site_time_zone_utc_offset=-6 +County "NE, Sarpy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101530.epw site_zip_code=68046 site_time_zone_utc_offset=-6 +County "NE, Saunders County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101550.epw site_zip_code=68066 site_time_zone_utc_offset=-6 +County "NE, Scotts Bluff County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101570.epw site_zip_code=69361 site_time_zone_utc_offset=-7 +County "NE, Seward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101590.epw site_zip_code=68434 site_time_zone_utc_offset=-6 +County "NE, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101610.epw site_zip_code=69343 site_time_zone_utc_offset=-7 +County "NE, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101630.epw site_zip_code=68853 site_time_zone_utc_offset=-6 +County "NE, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101650.epw site_zip_code=69346 site_time_zone_utc_offset=-7 +County "NE, Stanton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101670.epw site_zip_code=68779 site_time_zone_utc_offset=-6 +County "NE, Thayer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101690.epw site_zip_code=68370 site_time_zone_utc_offset=-6 +County "NE, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101710.epw site_zip_code=69166 site_time_zone_utc_offset=-6 +County "NE, Thurston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101730.epw site_zip_code=68071 site_time_zone_utc_offset=-6 +County "NE, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101750.epw site_zip_code=68862 site_time_zone_utc_offset=-6 +County "NE, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101770.epw site_zip_code=68008 site_time_zone_utc_offset=-6 +County "NE, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101790.epw site_zip_code=68787 site_time_zone_utc_offset=-6 +County "NE, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101810.epw site_zip_code=68970 site_time_zone_utc_offset=-6 +County "NE, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101830.epw site_zip_code=68637 site_time_zone_utc_offset=-6 +County "NE, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101850.epw site_zip_code=68467 site_time_zone_utc_offset=-6 +County "NH, Belknap County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300010.epw site_zip_code=03246 site_time_zone_utc_offset=-5 +County "NH, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300030.epw site_zip_code=03894 site_time_zone_utc_offset=-5 +County "NH, Cheshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300050.epw site_zip_code=03431 site_time_zone_utc_offset=-5 +County "NH, Coos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300070.epw site_zip_code=03570 site_time_zone_utc_offset=-5 +County "NH, Grafton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300090.epw site_zip_code=03766 site_time_zone_utc_offset=-5 +County "NH, Hillsborough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300110.epw site_zip_code=03103 site_time_zone_utc_offset=-5 +County "NH, Merrimack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300130.epw site_zip_code=03301 site_time_zone_utc_offset=-5 +County "NH, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300150.epw site_zip_code=03038 site_time_zone_utc_offset=-5 +County "NH, Strafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300170.epw site_zip_code=03820 site_time_zone_utc_offset=-5 +County "NH, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300190.epw site_zip_code=03743 site_time_zone_utc_offset=-5 +County "NJ, Atlantic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400010.epw site_zip_code=08401 site_time_zone_utc_offset=-5 +County "NJ, Bergen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400030.epw site_zip_code=07410 site_time_zone_utc_offset=-5 +County "NJ, Burlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400050.epw site_zip_code=08054 site_time_zone_utc_offset=-5 +County "NJ, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400070.epw site_zip_code=08021 site_time_zone_utc_offset=-5 +County "NJ, Cape May County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400090.epw site_zip_code=08260 site_time_zone_utc_offset=-5 +County "NJ, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400110.epw site_zip_code=08332 site_time_zone_utc_offset=-5 +County "NJ, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400130.epw site_zip_code=07111 site_time_zone_utc_offset=-5 +County "NJ, Gloucester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400150.epw site_zip_code=08096 site_time_zone_utc_offset=-5 +County "NJ, Hudson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400170.epw site_zip_code=07302 site_time_zone_utc_offset=-5 +County "NJ, Hunterdon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400190.epw site_zip_code=08822 site_time_zone_utc_offset=-5 +County "NJ, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400210.epw site_zip_code=08618 site_time_zone_utc_offset=-5 +County "NJ, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400230.epw site_zip_code=08831 site_time_zone_utc_offset=-5 +County "NJ, Monmouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400250.epw site_zip_code=07728 site_time_zone_utc_offset=-5 +County "NJ, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400270.epw site_zip_code=07960 site_time_zone_utc_offset=-5 +County "NJ, Ocean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400290.epw site_zip_code=08701 site_time_zone_utc_offset=-5 +County "NJ, Passaic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400310.epw site_zip_code=07055 site_time_zone_utc_offset=-5 +County "NJ, Salem County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400330.epw site_zip_code=08069 site_time_zone_utc_offset=-5 +County "NJ, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400350.epw site_zip_code=08873 site_time_zone_utc_offset=-5 +County "NJ, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400370.epw site_zip_code=07860 site_time_zone_utc_offset=-5 +County "NJ, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400390.epw site_zip_code=07083 site_time_zone_utc_offset=-5 +County "NJ, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400410.epw site_zip_code=08865 site_time_zone_utc_offset=-5 +County "NM, Bernalillo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500010.epw site_zip_code=87111 site_time_zone_utc_offset=-7 +County "NM, Catron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500030.epw site_zip_code=87829 site_time_zone_utc_offset=-7 +County "NM, Chaves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500050.epw site_zip_code=88203 site_time_zone_utc_offset=-7 +County "NM, Cibola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500060.epw site_zip_code=87020 site_time_zone_utc_offset=-7 +County "NM, Colfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500070.epw site_zip_code=87740 site_time_zone_utc_offset=-7 +County "NM, Curry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500090.epw site_zip_code=88101 site_time_zone_utc_offset=-7 +County "NM, De Baca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500110.epw site_zip_code=88119 site_time_zone_utc_offset=-7 +County "NM, Dona Ana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500130.epw site_zip_code=88001 site_time_zone_utc_offset=-7 +County "NM, Eddy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500150.epw site_zip_code=88220 site_time_zone_utc_offset=-7 +County "NM, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500170.epw site_zip_code=88061 site_time_zone_utc_offset=-7 +County "NM, Guadalupe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500190.epw site_zip_code=88435 site_time_zone_utc_offset=-7 +County "NM, Harding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500210.epw site_zip_code=87743 site_time_zone_utc_offset=-7 +County "NM, Hidalgo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500230.epw site_zip_code=88045 site_time_zone_utc_offset=-7 +County "NM, Lea County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500250.epw site_zip_code=88240 site_time_zone_utc_offset=-7 +County "NM, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500270.epw site_zip_code=88355 site_time_zone_utc_offset=-7 +County "NM, Los Alamos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500280.epw site_zip_code=87544 site_time_zone_utc_offset=-7 +County "NM, Luna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500290.epw site_zip_code=88030 site_time_zone_utc_offset=-7 +County "NM, McKinley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500310.epw site_zip_code=87301 site_time_zone_utc_offset=-7 +County "NM, Mora County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500330.epw site_zip_code=87722 site_time_zone_utc_offset=-7 +County "NM, Otero County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500350.epw site_zip_code=88310 site_time_zone_utc_offset=-7 +County "NM, Quay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500370.epw site_zip_code=88401 site_time_zone_utc_offset=-7 +County "NM, Rio Arriba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500390.epw site_zip_code=87532 site_time_zone_utc_offset=-7 +County "NM, Roosevelt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500410.epw site_zip_code=88130 site_time_zone_utc_offset=-7 +County "NM, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500450.epw site_zip_code=87401 site_time_zone_utc_offset=-7 +County "NM, San Miguel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500470.epw site_zip_code=87701 site_time_zone_utc_offset=-7 +County "NM, Sandoval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500430.epw site_zip_code=87124 site_time_zone_utc_offset=-7 +County "NM, Santa Fe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500490.epw site_zip_code=87507 site_time_zone_utc_offset=-7 +County "NM, Sierra County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500510.epw site_zip_code=87901 site_time_zone_utc_offset=-7 +County "NM, Socorro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500530.epw site_zip_code=87801 site_time_zone_utc_offset=-7 +County "NM, Taos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500550.epw site_zip_code=87571 site_time_zone_utc_offset=-7 +County "NM, Torrance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500570.epw site_zip_code=87035 site_time_zone_utc_offset=-7 +County "NM, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500590.epw site_zip_code=88415 site_time_zone_utc_offset=-7 +County "NM, Valencia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500610.epw site_zip_code=87031 site_time_zone_utc_offset=-7 +County "NV, Carson City" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3205100.epw site_zip_code=89701 site_time_zone_utc_offset=-8 +County "NV, Churchill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200010.epw site_zip_code=89406 site_time_zone_utc_offset=-8 +County "NV, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200030.epw site_zip_code=89052 site_time_zone_utc_offset=-8 +County "NV, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200050.epw site_zip_code=89460 site_time_zone_utc_offset=-8 +County "NV, Elko County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200070.epw site_zip_code=89801 site_time_zone_utc_offset=-8 +County "NV, Esmeralda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200090.epw site_zip_code=89010 site_time_zone_utc_offset=-8 +County "NV, Eureka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200110.epw site_zip_code=89316 site_time_zone_utc_offset=-8 +County "NV, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200130.epw site_zip_code=89445 site_time_zone_utc_offset=-8 +County "NV, Lander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200150.epw site_zip_code=89820 site_time_zone_utc_offset=-8 +County "NV, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200170.epw site_zip_code=89017 site_time_zone_utc_offset=-8 +County "NV, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200190.epw site_zip_code=89408 site_time_zone_utc_offset=-8 +County "NV, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200210.epw site_zip_code=89415 site_time_zone_utc_offset=-8 +County "NV, Nye County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200230.epw site_zip_code=89048 site_time_zone_utc_offset=-8 +County "NV, Pershing County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200270.epw site_zip_code=89419 site_time_zone_utc_offset=-8 +County "NV, Storey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200290.epw site_zip_code=89521 site_time_zone_utc_offset=-8 +County "NV, Washoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200310.epw site_zip_code=89502 site_time_zone_utc_offset=-8 +County "NV, White Pine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200330.epw site_zip_code=89301 site_time_zone_utc_offset=-8 +County "NY, Albany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600010.epw site_zip_code=12203 site_time_zone_utc_offset=-5 +County "NY, Allegany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600030.epw site_zip_code=14895 site_time_zone_utc_offset=-5 +County "NY, Bronx County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600050.epw site_zip_code=10467 site_time_zone_utc_offset=-5 +County "NY, Broome County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600070.epw site_zip_code=13760 site_time_zone_utc_offset=-5 +County "NY, Cattaraugus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600090.epw site_zip_code=14760 site_time_zone_utc_offset=-5 +County "NY, Cayuga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600110.epw site_zip_code=13021 site_time_zone_utc_offset=-5 +County "NY, Chautauqua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600130.epw site_zip_code=14701 site_time_zone_utc_offset=-5 +County "NY, Chemung County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600150.epw site_zip_code=14845 site_time_zone_utc_offset=-5 +County "NY, Chenango County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600170.epw site_zip_code=13815 site_time_zone_utc_offset=-5 +County "NY, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600190.epw site_zip_code=12901 site_time_zone_utc_offset=-5 +County "NY, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600210.epw site_zip_code=12534 site_time_zone_utc_offset=-5 +County "NY, Cortland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600230.epw site_zip_code=13045 site_time_zone_utc_offset=-5 +County "NY, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600250.epw site_zip_code=13856 site_time_zone_utc_offset=-5 +County "NY, Dutchess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600270.epw site_zip_code=12601 site_time_zone_utc_offset=-5 +County "NY, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600290.epw site_zip_code=14221 site_time_zone_utc_offset=-5 +County "NY, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600310.epw site_zip_code=12946 site_time_zone_utc_offset=-5 +County "NY, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600330.epw site_zip_code=12953 site_time_zone_utc_offset=-5 +County "NY, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600350.epw site_zip_code=12078 site_time_zone_utc_offset=-5 +County "NY, Genesee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600370.epw site_zip_code=14020 site_time_zone_utc_offset=-5 +County "NY, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600390.epw site_zip_code=12414 site_time_zone_utc_offset=-5 +County "NY, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600410.epw site_zip_code=12842 site_time_zone_utc_offset=-5 +County "NY, Herkimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600430.epw site_zip_code=13357 site_time_zone_utc_offset=-5 +County "NY, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600450.epw site_zip_code=13601 site_time_zone_utc_offset=-5 +County "NY, Kings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600470.epw site_zip_code=11226 site_time_zone_utc_offset=-5 +County "NY, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600490.epw site_zip_code=13367 site_time_zone_utc_offset=-5 +County "NY, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600510.epw site_zip_code=14454 site_time_zone_utc_offset=-5 +County "NY, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600530.epw site_zip_code=13032 site_time_zone_utc_offset=-5 +County "NY, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600550.epw site_zip_code=14580 site_time_zone_utc_offset=-5 +County "NY, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600570.epw site_zip_code=12010 site_time_zone_utc_offset=-5 +County "NY, Nassau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600590.epw site_zip_code=11758 site_time_zone_utc_offset=-5 +County "NY, New York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600610.epw site_zip_code=10025 site_time_zone_utc_offset=-5 +County "NY, Niagara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600630.epw site_zip_code=14094 site_time_zone_utc_offset=-5 +County "NY, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600650.epw site_zip_code=13440 site_time_zone_utc_offset=-5 +County "NY, Onondaga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600670.epw site_zip_code=13027 site_time_zone_utc_offset=-5 +County "NY, Ontario County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600690.epw site_zip_code=14424 site_time_zone_utc_offset=-5 +County "NY, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600710.epw site_zip_code=12550 site_time_zone_utc_offset=-5 +County "NY, Orleans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600730.epw site_zip_code=14411 site_time_zone_utc_offset=-5 +County "NY, Oswego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600750.epw site_zip_code=13126 site_time_zone_utc_offset=-5 +County "NY, Otsego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600770.epw site_zip_code=13820 site_time_zone_utc_offset=-5 +County "NY, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600790.epw site_zip_code=10512 site_time_zone_utc_offset=-5 +County "NY, Queens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600810.epw site_zip_code=11375 site_time_zone_utc_offset=-5 +County "NY, Rensselaer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600830.epw site_zip_code=12180 site_time_zone_utc_offset=-5 +County "NY, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600850.epw site_zip_code=10314 site_time_zone_utc_offset=-5 +County "NY, Rockland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600870.epw site_zip_code=10977 site_time_zone_utc_offset=-5 +County "NY, Saratoga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600910.epw site_zip_code=12866 site_time_zone_utc_offset=-5 +County "NY, Schenectady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600930.epw site_zip_code=12306 site_time_zone_utc_offset=-5 +County "NY, Schoharie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600950.epw site_zip_code=12043 site_time_zone_utc_offset=-5 +County "NY, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600970.epw site_zip_code=14891 site_time_zone_utc_offset=-5 +County "NY, Seneca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600990.epw site_zip_code=13148 site_time_zone_utc_offset=-5 +County "NY, St. Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600890.epw site_zip_code=13676 site_time_zone_utc_offset=-5 +County "NY, Steuben County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601010.epw site_zip_code=14830 site_time_zone_utc_offset=-5 +County "NY, Suffolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601030.epw site_zip_code=11746 site_time_zone_utc_offset=-5 +County "NY, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601050.epw site_zip_code=12701 site_time_zone_utc_offset=-5 +County "NY, Tioga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601070.epw site_zip_code=13827 site_time_zone_utc_offset=-5 +County "NY, Tompkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601090.epw site_zip_code=14850 site_time_zone_utc_offset=-5 +County "NY, Ulster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601110.epw site_zip_code=12401 site_time_zone_utc_offset=-5 +County "NY, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601130.epw site_zip_code=12804 site_time_zone_utc_offset=-5 +County "NY, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601150.epw site_zip_code=12839 site_time_zone_utc_offset=-5 +County "NY, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601170.epw site_zip_code=14513 site_time_zone_utc_offset=-5 +County "NY, Westchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601190.epw site_zip_code=10701 site_time_zone_utc_offset=-5 +County "NY, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601210.epw site_zip_code=14569 site_time_zone_utc_offset=-5 +County "NY, Yates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601230.epw site_zip_code=14527 site_time_zone_utc_offset=-5 +County "OH, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900010.epw site_zip_code=45693 site_time_zone_utc_offset=-5 +County "OH, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900030.epw site_zip_code=45805 site_time_zone_utc_offset=-5 +County "OH, Ashland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900050.epw site_zip_code=44805 site_time_zone_utc_offset=-5 +County "OH, Ashtabula County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900070.epw site_zip_code=44004 site_time_zone_utc_offset=-5 +County "OH, Athens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900090.epw site_zip_code=45701 site_time_zone_utc_offset=-5 +County "OH, Auglaize County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900110.epw site_zip_code=45895 site_time_zone_utc_offset=-5 +County "OH, Belmont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900130.epw site_zip_code=43950 site_time_zone_utc_offset=-5 +County "OH, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900150.epw site_zip_code=45121 site_time_zone_utc_offset=-5 +County "OH, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900170.epw site_zip_code=45011 site_time_zone_utc_offset=-5 +County "OH, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900190.epw site_zip_code=44615 site_time_zone_utc_offset=-5 +County "OH, Champaign County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900210.epw site_zip_code=43078 site_time_zone_utc_offset=-5 +County "OH, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900230.epw site_zip_code=45503 site_time_zone_utc_offset=-5 +County "OH, Clermont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900250.epw site_zip_code=45103 site_time_zone_utc_offset=-5 +County "OH, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900270.epw site_zip_code=45177 site_time_zone_utc_offset=-5 +County "OH, Columbiana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900290.epw site_zip_code=43920 site_time_zone_utc_offset=-5 +County "OH, Coshocton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900310.epw site_zip_code=43812 site_time_zone_utc_offset=-5 +County "OH, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900330.epw site_zip_code=44820 site_time_zone_utc_offset=-5 +County "OH, Cuyahoga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900350.epw site_zip_code=44107 site_time_zone_utc_offset=-5 +County "OH, Darke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900370.epw site_zip_code=45331 site_time_zone_utc_offset=-5 +County "OH, Defiance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900390.epw site_zip_code=43512 site_time_zone_utc_offset=-5 +County "OH, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900410.epw site_zip_code=43015 site_time_zone_utc_offset=-5 +County "OH, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900430.epw site_zip_code=44870 site_time_zone_utc_offset=-5 +County "OH, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900450.epw site_zip_code=43130 site_time_zone_utc_offset=-5 +County "OH, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900470.epw site_zip_code=43160 site_time_zone_utc_offset=-5 +County "OH, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900490.epw site_zip_code=43081 site_time_zone_utc_offset=-5 +County "OH, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900510.epw site_zip_code=43567 site_time_zone_utc_offset=-5 +County "OH, Gallia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900530.epw site_zip_code=45631 site_time_zone_utc_offset=-5 +County "OH, Geauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900550.epw site_zip_code=44024 site_time_zone_utc_offset=-5 +County "OH, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900570.epw site_zip_code=45324 site_time_zone_utc_offset=-5 +County "OH, Guernsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900590.epw site_zip_code=43725 site_time_zone_utc_offset=-5 +County "OH, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900610.epw site_zip_code=45238 site_time_zone_utc_offset=-5 +County "OH, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900630.epw site_zip_code=45840 site_time_zone_utc_offset=-5 +County "OH, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900650.epw site_zip_code=43326 site_time_zone_utc_offset=-5 +County "OH, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900670.epw site_zip_code=43907 site_time_zone_utc_offset=-5 +County "OH, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900690.epw site_zip_code=43545 site_time_zone_utc_offset=-5 +County "OH, Highland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900710.epw site_zip_code=45133 site_time_zone_utc_offset=-5 +County "OH, Hocking County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900730.epw site_zip_code=43138 site_time_zone_utc_offset=-5 +County "OH, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900750.epw site_zip_code=44654 site_time_zone_utc_offset=-5 +County "OH, Huron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900770.epw site_zip_code=44857 site_time_zone_utc_offset=-5 +County "OH, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900790.epw site_zip_code=45640 site_time_zone_utc_offset=-5 +County "OH, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900810.epw site_zip_code=43952 site_time_zone_utc_offset=-5 +County "OH, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900830.epw site_zip_code=43050 site_time_zone_utc_offset=-5 +County "OH, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900850.epw site_zip_code=44060 site_time_zone_utc_offset=-5 +County "OH, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900870.epw site_zip_code=45638 site_time_zone_utc_offset=-5 +County "OH, Licking County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900890.epw site_zip_code=43055 site_time_zone_utc_offset=-5 +County "OH, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900910.epw site_zip_code=43311 site_time_zone_utc_offset=-5 +County "OH, Lorain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900930.epw site_zip_code=44035 site_time_zone_utc_offset=-5 +County "OH, Lucas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900950.epw site_zip_code=43615 site_time_zone_utc_offset=-5 +County "OH, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900970.epw site_zip_code=43140 site_time_zone_utc_offset=-5 +County "OH, Mahoning County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900990.epw site_zip_code=44512 site_time_zone_utc_offset=-5 +County "OH, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901010.epw site_zip_code=43302 site_time_zone_utc_offset=-5 +County "OH, Medina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901030.epw site_zip_code=44256 site_time_zone_utc_offset=-5 +County "OH, Meigs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901050.epw site_zip_code=45769 site_time_zone_utc_offset=-5 +County "OH, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901070.epw site_zip_code=45822 site_time_zone_utc_offset=-5 +County "OH, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901090.epw site_zip_code=45373 site_time_zone_utc_offset=-5 +County "OH, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901110.epw site_zip_code=43793 site_time_zone_utc_offset=-5 +County "OH, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901130.epw site_zip_code=45424 site_time_zone_utc_offset=-5 +County "OH, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901150.epw site_zip_code=43756 site_time_zone_utc_offset=-5 +County "OH, Morrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901170.epw site_zip_code=43338 site_time_zone_utc_offset=-5 +County "OH, Muskingum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901190.epw site_zip_code=43701 site_time_zone_utc_offset=-5 +County "OH, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901210.epw site_zip_code=43724 site_time_zone_utc_offset=-5 +County "OH, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901230.epw site_zip_code=43452 site_time_zone_utc_offset=-5 +County "OH, Paulding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901250.epw site_zip_code=45879 site_time_zone_utc_offset=-5 +County "OH, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901270.epw site_zip_code=43764 site_time_zone_utc_offset=-5 +County "OH, Pickaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901290.epw site_zip_code=43113 site_time_zone_utc_offset=-5 +County "OH, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901310.epw site_zip_code=45690 site_time_zone_utc_offset=-5 +County "OH, Portage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901330.epw site_zip_code=44240 site_time_zone_utc_offset=-5 +County "OH, Preble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901350.epw site_zip_code=45320 site_time_zone_utc_offset=-5 +County "OH, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901370.epw site_zip_code=45875 site_time_zone_utc_offset=-5 +County "OH, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901390.epw site_zip_code=44903 site_time_zone_utc_offset=-5 +County "OH, Ross County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901410.epw site_zip_code=45601 site_time_zone_utc_offset=-5 +County "OH, Sandusky County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901430.epw site_zip_code=43420 site_time_zone_utc_offset=-5 +County "OH, Scioto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901450.epw site_zip_code=45662 site_time_zone_utc_offset=-5 +County "OH, Seneca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901470.epw site_zip_code=44883 site_time_zone_utc_offset=-5 +County "OH, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901490.epw site_zip_code=45365 site_time_zone_utc_offset=-5 +County "OH, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901510.epw site_zip_code=44646 site_time_zone_utc_offset=-5 +County "OH, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901530.epw site_zip_code=44224 site_time_zone_utc_offset=-5 +County "OH, Trumbull County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901550.epw site_zip_code=44483 site_time_zone_utc_offset=-5 +County "OH, Tuscarawas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901570.epw site_zip_code=44663 site_time_zone_utc_offset=-5 +County "OH, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901590.epw site_zip_code=43040 site_time_zone_utc_offset=-5 +County "OH, Van Wert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901610.epw site_zip_code=45891 site_time_zone_utc_offset=-5 +County "OH, Vinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901630.epw site_zip_code=45651 site_time_zone_utc_offset=-5 +County "OH, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901650.epw site_zip_code=45040 site_time_zone_utc_offset=-5 +County "OH, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901670.epw site_zip_code=45750 site_time_zone_utc_offset=-5 +County "OH, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901690.epw site_zip_code=44691 site_time_zone_utc_offset=-5 +County "OH, Williams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901710.epw site_zip_code=43506 site_time_zone_utc_offset=-5 +County "OH, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901730.epw site_zip_code=43551 site_time_zone_utc_offset=-5 +County "OH, Wyandot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901750.epw site_zip_code=43351 site_time_zone_utc_offset=-5 +County "OK, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000010.epw site_zip_code=74960 site_time_zone_utc_offset=-6 +County "OK, Alfalfa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000030.epw site_zip_code=73728 site_time_zone_utc_offset=-6 +County "OK, Atoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000050.epw site_zip_code=74525 site_time_zone_utc_offset=-6 +County "OK, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000070.epw site_zip_code=73932 site_time_zone_utc_offset=-6 +County "OK, Beckham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000090.epw site_zip_code=73644 site_time_zone_utc_offset=-6 +County "OK, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000110.epw site_zip_code=73772 site_time_zone_utc_offset=-6 +County "OK, Bryan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000130.epw site_zip_code=74701 site_time_zone_utc_offset=-6 +County "OK, Caddo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000150.epw site_zip_code=73005 site_time_zone_utc_offset=-6 +County "OK, Canadian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000170.epw site_zip_code=73099 site_time_zone_utc_offset=-6 +County "OK, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000190.epw site_zip_code=73401 site_time_zone_utc_offset=-6 +County "OK, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000210.epw site_zip_code=74464 site_time_zone_utc_offset=-6 +County "OK, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000230.epw site_zip_code=74743 site_time_zone_utc_offset=-6 +County "OK, Cimarron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000250.epw site_zip_code=73933 site_time_zone_utc_offset=-6 +County "OK, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000270.epw site_zip_code=73160 site_time_zone_utc_offset=-6 +County "OK, Coal County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000290.epw site_zip_code=74538 site_time_zone_utc_offset=-6 +County "OK, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000310.epw site_zip_code=73505 site_time_zone_utc_offset=-6 +County "OK, Cotton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000330.epw site_zip_code=73572 site_time_zone_utc_offset=-6 +County "OK, Craig County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000350.epw site_zip_code=74301 site_time_zone_utc_offset=-6 +County "OK, Creek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000370.epw site_zip_code=74066 site_time_zone_utc_offset=-6 +County "OK, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000390.epw site_zip_code=73096 site_time_zone_utc_offset=-6 +County "OK, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000410.epw site_zip_code=74344 site_time_zone_utc_offset=-6 +County "OK, Dewey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000430.epw site_zip_code=73859 site_time_zone_utc_offset=-6 +County "OK, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000450.epw site_zip_code=73858 site_time_zone_utc_offset=-6 +County "OK, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000470.epw site_zip_code=73703 site_time_zone_utc_offset=-6 +County "OK, Garvin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000490.epw site_zip_code=73075 site_time_zone_utc_offset=-6 +County "OK, Grady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000510.epw site_zip_code=73018 site_time_zone_utc_offset=-6 +County "OK, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000530.epw site_zip_code=73759 site_time_zone_utc_offset=-6 +County "OK, Greer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000550.epw site_zip_code=73554 site_time_zone_utc_offset=-6 +County "OK, Harmon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000570.epw site_zip_code=73550 site_time_zone_utc_offset=-6 +County "OK, Harper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000590.epw site_zip_code=73848 site_time_zone_utc_offset=-6 +County "OK, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000610.epw site_zip_code=74462 site_time_zone_utc_offset=-6 +County "OK, Hughes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000630.epw site_zip_code=74848 site_time_zone_utc_offset=-6 +County "OK, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000650.epw site_zip_code=73521 site_time_zone_utc_offset=-6 +County "OK, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000670.epw site_zip_code=73573 site_time_zone_utc_offset=-6 +County "OK, Johnston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000690.epw site_zip_code=73460 site_time_zone_utc_offset=-6 +County "OK, Kay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000710.epw site_zip_code=74601 site_time_zone_utc_offset=-6 +County "OK, Kingfisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000730.epw site_zip_code=73750 site_time_zone_utc_offset=-6 +County "OK, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000750.epw site_zip_code=73651 site_time_zone_utc_offset=-6 +County "OK, Latimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000770.epw site_zip_code=74578 site_time_zone_utc_offset=-6 +County "OK, Le Flore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000790.epw site_zip_code=74953 site_time_zone_utc_offset=-6 +County "OK, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000810.epw site_zip_code=74834 site_time_zone_utc_offset=-6 +County "OK, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000830.epw site_zip_code=73044 site_time_zone_utc_offset=-6 +County "OK, Love County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000850.epw site_zip_code=73448 site_time_zone_utc_offset=-6 +County "OK, Major County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000930.epw site_zip_code=73737 site_time_zone_utc_offset=-6 +County "OK, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000950.epw site_zip_code=73439 site_time_zone_utc_offset=-6 +County "OK, Mayes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000970.epw site_zip_code=74361 site_time_zone_utc_offset=-6 +County "OK, McClain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000870.epw site_zip_code=73080 site_time_zone_utc_offset=-6 +County "OK, McCurtain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000890.epw site_zip_code=74728 site_time_zone_utc_offset=-6 +County "OK, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000910.epw site_zip_code=74432 site_time_zone_utc_offset=-6 +County "OK, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000990.epw site_zip_code=73086 site_time_zone_utc_offset=-6 +County "OK, Muskogee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001010.epw site_zip_code=74403 site_time_zone_utc_offset=-6 +County "OK, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001030.epw site_zip_code=73077 site_time_zone_utc_offset=-6 +County "OK, Nowata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001050.epw site_zip_code=74048 site_time_zone_utc_offset=-6 +County "OK, Okfuskee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001070.epw site_zip_code=74859 site_time_zone_utc_offset=-6 +County "OK, Oklahoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001090.epw site_zip_code=73013 site_time_zone_utc_offset=-6 +County "OK, Okmulgee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001110.epw site_zip_code=74447 site_time_zone_utc_offset=-6 +County "OK, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001130.epw site_zip_code=74070 site_time_zone_utc_offset=-6 +County "OK, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001150.epw site_zip_code=74354 site_time_zone_utc_offset=-6 +County "OK, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001170.epw site_zip_code=74020 site_time_zone_utc_offset=-6 +County "OK, Payne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001190.epw site_zip_code=74074 site_time_zone_utc_offset=-6 +County "OK, Pittsburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001210.epw site_zip_code=74501 site_time_zone_utc_offset=-6 +County "OK, Pontotoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001230.epw site_zip_code=74820 site_time_zone_utc_offset=-6 +County "OK, Pottawatomie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001250.epw site_zip_code=74801 site_time_zone_utc_offset=-6 +County "OK, Pushmataha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001270.epw site_zip_code=74523 site_time_zone_utc_offset=-6 +County "OK, Roger Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001290.epw site_zip_code=73628 site_time_zone_utc_offset=-6 +County "OK, Rogers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001310.epw site_zip_code=74017 site_time_zone_utc_offset=-6 +County "OK, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001330.epw site_zip_code=74868 site_time_zone_utc_offset=-6 +County "OK, Sequoyah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001350.epw site_zip_code=74955 site_time_zone_utc_offset=-6 +County "OK, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001370.epw site_zip_code=73533 site_time_zone_utc_offset=-6 +County "OK, Texas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001390.epw site_zip_code=73942 site_time_zone_utc_offset=-6 +County "OK, Tillman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001410.epw site_zip_code=73542 site_time_zone_utc_offset=-6 +County "OK, Tulsa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001430.epw site_zip_code=74012 site_time_zone_utc_offset=-6 +County "OK, Wagoner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001450.epw site_zip_code=74014 site_time_zone_utc_offset=-6 +County "OK, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001470.epw site_zip_code=74006 site_time_zone_utc_offset=-6 +County "OK, Washita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001490.epw site_zip_code=73632 site_time_zone_utc_offset=-6 +County "OK, Woods County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001510.epw site_zip_code=73717 site_time_zone_utc_offset=-6 +County "OK, Woodward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001530.epw site_zip_code=73801 site_time_zone_utc_offset=-6 +County "OR, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100010.epw site_zip_code=97814 site_time_zone_utc_offset=-8 +County "OR, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100030.epw site_zip_code=97330 site_time_zone_utc_offset=-8 +County "OR, Clackamas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100050.epw site_zip_code=97045 site_time_zone_utc_offset=-8 +County "OR, Clatsop County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100070.epw site_zip_code=97103 site_time_zone_utc_offset=-8 +County "OR, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100090.epw site_zip_code=97051 site_time_zone_utc_offset=-8 +County "OR, Coos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100110.epw site_zip_code=97420 site_time_zone_utc_offset=-8 +County "OR, Crook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100130.epw site_zip_code=97754 site_time_zone_utc_offset=-8 +County "OR, Curry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100150.epw site_zip_code=97415 site_time_zone_utc_offset=-8 +County "OR, Deschutes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100170.epw site_zip_code=97702 site_time_zone_utc_offset=-8 +County "OR, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100190.epw site_zip_code=97471 site_time_zone_utc_offset=-8 +County "OR, Gilliam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100210.epw site_zip_code=97823 site_time_zone_utc_offset=-8 +County "OR, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100230.epw site_zip_code=97845 site_time_zone_utc_offset=-8 +County "OR, Harney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100250.epw site_zip_code=97720 site_time_zone_utc_offset=-8 +County "OR, Hood River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100270.epw site_zip_code=97031 site_time_zone_utc_offset=-8 +County "OR, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100290.epw site_zip_code=97504 site_time_zone_utc_offset=-8 +County "OR, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100310.epw site_zip_code=97741 site_time_zone_utc_offset=-8 +County "OR, Josephine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100330.epw site_zip_code=97526 site_time_zone_utc_offset=-8 +County "OR, Klamath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100350.epw site_zip_code=97603 site_time_zone_utc_offset=-8 +County "OR, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100370.epw site_zip_code=97630 site_time_zone_utc_offset=-8 +County "OR, Lane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100390.epw site_zip_code=97402 site_time_zone_utc_offset=-8 +County "OR, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100410.epw site_zip_code=97367 site_time_zone_utc_offset=-8 +County "OR, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100430.epw site_zip_code=97322 site_time_zone_utc_offset=-8 +County "OR, Malheur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100450.epw site_zip_code=97914 site_time_zone_utc_offset=-7 +County "OR, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100470.epw site_zip_code=97301 site_time_zone_utc_offset=-8 +County "OR, Morrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100490.epw site_zip_code=97818 site_time_zone_utc_offset=-8 +County "OR, Multnomah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100510.epw site_zip_code=97206 site_time_zone_utc_offset=-8 +County "OR, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100530.epw site_zip_code=97304 site_time_zone_utc_offset=-8 +County "OR, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100550.epw site_zip_code=97065 site_time_zone_utc_offset=-8 +County "OR, Tillamook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100570.epw site_zip_code=97141 site_time_zone_utc_offset=-8 +County "OR, Umatilla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100590.epw site_zip_code=97838 site_time_zone_utc_offset=-8 +County "OR, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100610.epw site_zip_code=97850 site_time_zone_utc_offset=-8 +County "OR, Wallowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100630.epw site_zip_code=97828 site_time_zone_utc_offset=-8 +County "OR, Wasco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100650.epw site_zip_code=97058 site_time_zone_utc_offset=-8 +County "OR, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100670.epw site_zip_code=97229 site_time_zone_utc_offset=-8 +County "OR, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100690.epw site_zip_code=97830 site_time_zone_utc_offset=-8 +County "OR, Yamhill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100710.epw site_zip_code=97128 site_time_zone_utc_offset=-8 +County "PA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200010.epw site_zip_code=17325 site_time_zone_utc_offset=-5 +County "PA, Allegheny County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200030.epw site_zip_code=15237 site_time_zone_utc_offset=-5 +County "PA, Armstrong County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200050.epw site_zip_code=16201 site_time_zone_utc_offset=-5 +County "PA, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200070.epw site_zip_code=15001 site_time_zone_utc_offset=-5 +County "PA, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200090.epw site_zip_code=15522 site_time_zone_utc_offset=-5 +County "PA, Berks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200110.epw site_zip_code=19606 site_time_zone_utc_offset=-5 +County "PA, Blair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200130.epw site_zip_code=16601 site_time_zone_utc_offset=-5 +County "PA, Bradford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200150.epw site_zip_code=18840 site_time_zone_utc_offset=-5 +County "PA, Bucks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200170.epw site_zip_code=19020 site_time_zone_utc_offset=-5 +County "PA, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200190.epw site_zip_code=16001 site_time_zone_utc_offset=-5 +County "PA, Cambria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200210.epw site_zip_code=15905 site_time_zone_utc_offset=-5 +County "PA, Cameron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200230.epw site_zip_code=15834 site_time_zone_utc_offset=-5 +County "PA, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200250.epw site_zip_code=18235 site_time_zone_utc_offset=-5 +County "PA, Centre County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200270.epw site_zip_code=16801 site_time_zone_utc_offset=-5 +County "PA, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200290.epw site_zip_code=19380 site_time_zone_utc_offset=-5 +County "PA, Clarion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200310.epw site_zip_code=16214 site_time_zone_utc_offset=-5 +County "PA, Clearfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200330.epw site_zip_code=15801 site_time_zone_utc_offset=-5 +County "PA, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200350.epw site_zip_code=17745 site_time_zone_utc_offset=-5 +County "PA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200370.epw site_zip_code=17815 site_time_zone_utc_offset=-5 +County "PA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200390.epw site_zip_code=16335 site_time_zone_utc_offset=-5 +County "PA, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200410.epw site_zip_code=17055 site_time_zone_utc_offset=-5 +County "PA, Dauphin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200430.epw site_zip_code=17112 site_time_zone_utc_offset=-5 +County "PA, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200450.epw site_zip_code=19063 site_time_zone_utc_offset=-5 +County "PA, Elk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200470.epw site_zip_code=15857 site_time_zone_utc_offset=-5 +County "PA, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200490.epw site_zip_code=16509 site_time_zone_utc_offset=-5 +County "PA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200510.epw site_zip_code=15401 site_time_zone_utc_offset=-5 +County "PA, Forest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200530.epw site_zip_code=16353 site_time_zone_utc_offset=-5 +County "PA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200550.epw site_zip_code=17268 site_time_zone_utc_offset=-5 +County "PA, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200570.epw site_zip_code=17233 site_time_zone_utc_offset=-5 +County "PA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200590.epw site_zip_code=15370 site_time_zone_utc_offset=-5 +County "PA, Huntingdon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200610.epw site_zip_code=16652 site_time_zone_utc_offset=-5 +County "PA, Indiana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200630.epw site_zip_code=15701 site_time_zone_utc_offset=-5 +County "PA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200650.epw site_zip_code=15767 site_time_zone_utc_offset=-5 +County "PA, Juniata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200670.epw site_zip_code=17059 site_time_zone_utc_offset=-5 +County "PA, Lackawanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200690.epw site_zip_code=18505 site_time_zone_utc_offset=-5 +County "PA, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200710.epw site_zip_code=17603 site_time_zone_utc_offset=-5 +County "PA, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200730.epw site_zip_code=16101 site_time_zone_utc_offset=-5 +County "PA, Lebanon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200750.epw site_zip_code=17042 site_time_zone_utc_offset=-5 +County "PA, Lehigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200770.epw site_zip_code=18103 site_time_zone_utc_offset=-5 +County "PA, Luzerne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200790.epw site_zip_code=18702 site_time_zone_utc_offset=-5 +County "PA, Lycoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200810.epw site_zip_code=17701 site_time_zone_utc_offset=-5 +County "PA, McKean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200830.epw site_zip_code=16701 site_time_zone_utc_offset=-5 +County "PA, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200850.epw site_zip_code=16148 site_time_zone_utc_offset=-5 +County "PA, Mifflin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200870.epw site_zip_code=17044 site_time_zone_utc_offset=-5 +County "PA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200890.epw site_zip_code=18301 site_time_zone_utc_offset=-5 +County "PA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200910.epw site_zip_code=19446 site_time_zone_utc_offset=-5 +County "PA, Montour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200930.epw site_zip_code=17821 site_time_zone_utc_offset=-5 +County "PA, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200950.epw site_zip_code=18042 site_time_zone_utc_offset=-5 +County "PA, Northumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200970.epw site_zip_code=17801 site_time_zone_utc_offset=-5 +County "PA, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200990.epw site_zip_code=17020 site_time_zone_utc_offset=-5 +County "PA, Philadelphia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201010.epw site_zip_code=19143 site_time_zone_utc_offset=-5 +County "PA, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201030.epw site_zip_code=18337 site_time_zone_utc_offset=-5 +County "PA, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201050.epw site_zip_code=16915 site_time_zone_utc_offset=-5 +County "PA, Schuylkill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201070.epw site_zip_code=17901 site_time_zone_utc_offset=-5 +County "PA, Snyder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201090.epw site_zip_code=17870 site_time_zone_utc_offset=-5 +County "PA, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201110.epw site_zip_code=15501 site_time_zone_utc_offset=-5 +County "PA, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201130.epw site_zip_code=18614 site_time_zone_utc_offset=-5 +County "PA, Susquehanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201150.epw site_zip_code=18801 site_time_zone_utc_offset=-5 +County "PA, Tioga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201170.epw site_zip_code=16901 site_time_zone_utc_offset=-5 +County "PA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201190.epw site_zip_code=17837 site_time_zone_utc_offset=-5 +County "PA, Venango County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201210.epw site_zip_code=16301 site_time_zone_utc_offset=-5 +County "PA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201230.epw site_zip_code=16365 site_time_zone_utc_offset=-5 +County "PA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201250.epw site_zip_code=15301 site_time_zone_utc_offset=-5 +County "PA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201270.epw site_zip_code=18431 site_time_zone_utc_offset=-5 +County "PA, Westmoreland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201290.epw site_zip_code=15601 site_time_zone_utc_offset=-5 +County "PA, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201310.epw site_zip_code=18657 site_time_zone_utc_offset=-5 +County "PA, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201330.epw site_zip_code=17331 site_time_zone_utc_offset=-5 +County "RI, Bristol County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400010.epw site_zip_code=02809 site_time_zone_utc_offset=-5 +County "RI, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400030.epw site_zip_code=02893 site_time_zone_utc_offset=-5 +County "RI, Newport County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400050.epw site_zip_code=02840 site_time_zone_utc_offset=-5 +County "RI, Providence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400070.epw site_zip_code=02860 site_time_zone_utc_offset=-5 +County "RI, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400090.epw site_zip_code=02891 site_time_zone_utc_offset=-5 +County "SC, Abbeville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500010.epw site_zip_code=29620 site_time_zone_utc_offset=-5 +County "SC, Aiken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500030.epw site_zip_code=29803 site_time_zone_utc_offset=-5 +County "SC, Allendale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500050.epw site_zip_code=29810 site_time_zone_utc_offset=-5 +County "SC, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500070.epw site_zip_code=29621 site_time_zone_utc_offset=-5 +County "SC, Bamberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500090.epw site_zip_code=29003 site_time_zone_utc_offset=-5 +County "SC, Barnwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500110.epw site_zip_code=29812 site_time_zone_utc_offset=-5 +County "SC, Beaufort County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500130.epw site_zip_code=29910 site_time_zone_utc_offset=-5 +County "SC, Berkeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500150.epw site_zip_code=29445 site_time_zone_utc_offset=-5 +County "SC, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500170.epw site_zip_code=29135 site_time_zone_utc_offset=-5 +County "SC, Charleston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500190.epw site_zip_code=29464 site_time_zone_utc_offset=-5 +County "SC, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500210.epw site_zip_code=29340 site_time_zone_utc_offset=-5 +County "SC, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500230.epw site_zip_code=29706 site_time_zone_utc_offset=-5 +County "SC, Chesterfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500250.epw site_zip_code=29520 site_time_zone_utc_offset=-5 +County "SC, Clarendon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500270.epw site_zip_code=29102 site_time_zone_utc_offset=-5 +County "SC, Colleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500290.epw site_zip_code=29488 site_time_zone_utc_offset=-5 +County "SC, Darlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500310.epw site_zip_code=29550 site_time_zone_utc_offset=-5 +County "SC, Dillon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500330.epw site_zip_code=29536 site_time_zone_utc_offset=-5 +County "SC, Dorchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500350.epw site_zip_code=29485 site_time_zone_utc_offset=-5 +County "SC, Edgefield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500370.epw site_zip_code=29860 site_time_zone_utc_offset=-5 +County "SC, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500390.epw site_zip_code=29180 site_time_zone_utc_offset=-5 +County "SC, Florence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500410.epw site_zip_code=29501 site_time_zone_utc_offset=-5 +County "SC, Georgetown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500430.epw site_zip_code=29440 site_time_zone_utc_offset=-5 +County "SC, Greenville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500450.epw site_zip_code=29681 site_time_zone_utc_offset=-5 +County "SC, Greenwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500470.epw site_zip_code=29649 site_time_zone_utc_offset=-5 +County "SC, Hampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500490.epw site_zip_code=29918 site_time_zone_utc_offset=-5 +County "SC, Horry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500510.epw site_zip_code=29579 site_time_zone_utc_offset=-5 +County "SC, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500530.epw site_zip_code=29936 site_time_zone_utc_offset=-5 +County "SC, Kershaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500550.epw site_zip_code=29020 site_time_zone_utc_offset=-5 +County "SC, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500570.epw site_zip_code=29720 site_time_zone_utc_offset=-5 +County "SC, Laurens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500590.epw site_zip_code=29360 site_time_zone_utc_offset=-5 +County "SC, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500610.epw site_zip_code=29010 site_time_zone_utc_offset=-5 +County "SC, Lexington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500630.epw site_zip_code=29072 site_time_zone_utc_offset=-5 +County "SC, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500670.epw site_zip_code=29571 site_time_zone_utc_offset=-5 +County "SC, Marlboro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500690.epw site_zip_code=29512 site_time_zone_utc_offset=-5 +County "SC, McCormick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500650.epw site_zip_code=29835 site_time_zone_utc_offset=-5 +County "SC, Newberry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500710.epw site_zip_code=29108 site_time_zone_utc_offset=-5 +County "SC, Oconee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500730.epw site_zip_code=29678 site_time_zone_utc_offset=-5 +County "SC, Orangeburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500750.epw site_zip_code=29115 site_time_zone_utc_offset=-5 +County "SC, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500770.epw site_zip_code=29640 site_time_zone_utc_offset=-5 +County "SC, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500790.epw site_zip_code=29223 site_time_zone_utc_offset=-5 +County "SC, Saluda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500810.epw site_zip_code=29138 site_time_zone_utc_offset=-5 +County "SC, Spartanburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500830.epw site_zip_code=29301 site_time_zone_utc_offset=-5 +County "SC, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500850.epw site_zip_code=29150 site_time_zone_utc_offset=-5 +County "SC, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500870.epw site_zip_code=29379 site_time_zone_utc_offset=-5 +County "SC, Williamsburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500890.epw site_zip_code=29556 site_time_zone_utc_offset=-5 +County "SC, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500910.epw site_zip_code=29732 site_time_zone_utc_offset=-5 +County "SD, Aurora County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600030.epw site_zip_code=57368 site_time_zone_utc_offset=-6 +County "SD, Beadle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600050.epw site_zip_code=57350 site_time_zone_utc_offset=-6 +County "SD, Bennett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600070.epw site_zip_code=57551 site_time_zone_utc_offset=-7 +County "SD, Bon Homme County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600090.epw site_zip_code=57066 site_time_zone_utc_offset=-6 +County "SD, Brookings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600110.epw site_zip_code=57006 site_time_zone_utc_offset=-6 +County "SD, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600130.epw site_zip_code=57401 site_time_zone_utc_offset=-6 +County "SD, Brule County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600150.epw site_zip_code=57325 site_time_zone_utc_offset=-6 +County "SD, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600170.epw site_zip_code=57341 site_time_zone_utc_offset=-6 +County "SD, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600190.epw site_zip_code=57717 site_time_zone_utc_offset=-7 +County "SD, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600210.epw site_zip_code=57632 site_time_zone_utc_offset=-6 +County "SD, Charles Mix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600230.epw site_zip_code=57380 site_time_zone_utc_offset=-6 +County "SD, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600250.epw site_zip_code=57225 site_time_zone_utc_offset=-6 +County "SD, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600270.epw site_zip_code=57069 site_time_zone_utc_offset=-6 +County "SD, Codington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600290.epw site_zip_code=57201 site_time_zone_utc_offset=-6 +County "SD, Corson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600310.epw site_zip_code=57642 site_time_zone_utc_offset=-7 +County "SD, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600330.epw site_zip_code=57730 site_time_zone_utc_offset=-7 +County "SD, Davison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600350.epw site_zip_code=57301 site_time_zone_utc_offset=-6 +County "SD, Day County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600370.epw site_zip_code=57274 site_time_zone_utc_offset=-6 +County "SD, Deuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600390.epw site_zip_code=57226 site_time_zone_utc_offset=-6 +County "SD, Dewey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600410.epw site_zip_code=57625 site_time_zone_utc_offset=-7 +County "SD, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600430.epw site_zip_code=57328 site_time_zone_utc_offset=-6 +County "SD, Edmunds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600450.epw site_zip_code=57451 site_time_zone_utc_offset=-6 +County "SD, Fall River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600470.epw site_zip_code=57747 site_time_zone_utc_offset=-7 +County "SD, Faulk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600490.epw site_zip_code=57438 site_time_zone_utc_offset=-6 +County "SD, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600510.epw site_zip_code=57252 site_time_zone_utc_offset=-6 +County "SD, Gregory County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600530.epw site_zip_code=57533 site_time_zone_utc_offset=-6 +County "SD, Haakon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600550.epw site_zip_code=57552 site_time_zone_utc_offset=-7 +County "SD, Hamlin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600570.epw site_zip_code=57223 site_time_zone_utc_offset=-6 +County "SD, Hand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600590.epw site_zip_code=57362 site_time_zone_utc_offset=-6 +County "SD, Hanson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600610.epw site_zip_code=57311 site_time_zone_utc_offset=-6 +County "SD, Harding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600630.epw site_zip_code=57720 site_time_zone_utc_offset=-7 +County "SD, Hughes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600650.epw site_zip_code=57501 site_time_zone_utc_offset=-6 +County "SD, Hutchinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600670.epw site_zip_code=57366 site_time_zone_utc_offset=-6 +County "SD, Hyde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600690.epw site_zip_code=57345 site_time_zone_utc_offset=-6 +County "SD, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600710.epw site_zip_code=57543 site_time_zone_utc_offset=-7 +County "SD, Jerauld County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600730.epw site_zip_code=57382 site_time_zone_utc_offset=-6 +County "SD, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600750.epw site_zip_code=57559 site_time_zone_utc_offset=-6 +County "SD, Kingsbury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600770.epw site_zip_code=57231 site_time_zone_utc_offset=-6 +County "SD, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600790.epw site_zip_code=57042 site_time_zone_utc_offset=-6 +County "SD, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600810.epw site_zip_code=57783 site_time_zone_utc_offset=-7 +County "SD, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600830.epw site_zip_code=57108 site_time_zone_utc_offset=-6 +County "SD, Lyman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600850.epw site_zip_code=57569 site_time_zone_utc_offset=-6 +County "SD, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600910.epw site_zip_code=57430 site_time_zone_utc_offset=-6 +County "SD, McCook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600870.epw site_zip_code=57058 site_time_zone_utc_offset=-6 +County "SD, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600890.epw site_zip_code=57437 site_time_zone_utc_offset=-6 +County "SD, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600930.epw site_zip_code=57785 site_time_zone_utc_offset=-7 +County "SD, Mellette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600950.epw site_zip_code=57579 site_time_zone_utc_offset=-6 +County "SD, Miner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600970.epw site_zip_code=57349 site_time_zone_utc_offset=-6 +County "SD, Minnehaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600990.epw site_zip_code=57106 site_time_zone_utc_offset=-6 +County "SD, Moody County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601010.epw site_zip_code=57028 site_time_zone_utc_offset=-6 +County "SD, Oglala Lakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601020.epw site_zip_code=57770 site_time_zone_utc_offset=-7 +County "SD, Pennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601030.epw site_zip_code=57701 site_time_zone_utc_offset=-7 +County "SD, Perkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601050.epw site_zip_code=57638 site_time_zone_utc_offset=-7 +County "SD, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601070.epw site_zip_code=57442 site_time_zone_utc_offset=-6 +County "SD, Roberts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601090.epw site_zip_code=57262 site_time_zone_utc_offset=-6 +County "SD, Sanborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601110.epw site_zip_code=57385 site_time_zone_utc_offset=-6 +County "SD, Spink County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601150.epw site_zip_code=57469 site_time_zone_utc_offset=-6 +County "SD, Stanley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601170.epw site_zip_code=57532 site_time_zone_utc_offset=-7 +County "SD, Sully County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601190.epw site_zip_code=57564 site_time_zone_utc_offset=-6 +County "SD, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601210.epw site_zip_code=57555 site_time_zone_utc_offset=-6 +County "SD, Tripp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601230.epw site_zip_code=57580 site_time_zone_utc_offset=-6 +County "SD, Turner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601250.epw site_zip_code=57053 site_time_zone_utc_offset=-6 +County "SD, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601270.epw site_zip_code=57049 site_time_zone_utc_offset=-6 +County "SD, Walworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601290.epw site_zip_code=57601 site_time_zone_utc_offset=-6 +County "SD, Yankton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601350.epw site_zip_code=57078 site_time_zone_utc_offset=-6 +County "SD, Ziebach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601370.epw site_zip_code=57623 site_time_zone_utc_offset=-7 +County "TN, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700010.epw site_zip_code=37830 site_time_zone_utc_offset=-5 +County "TN, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700030.epw site_zip_code=37160 site_time_zone_utc_offset=-6 +County "TN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700050.epw site_zip_code=38320 site_time_zone_utc_offset=-6 +County "TN, Bledsoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700070.epw site_zip_code=37367 site_time_zone_utc_offset=-6 +County "TN, Blount County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700090.epw site_zip_code=37803 site_time_zone_utc_offset=-5 +County "TN, Bradley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700110.epw site_zip_code=37312 site_time_zone_utc_offset=-5 +County "TN, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700130.epw site_zip_code=37766 site_time_zone_utc_offset=-5 +County "TN, Cannon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700150.epw site_zip_code=37190 site_time_zone_utc_offset=-6 +County "TN, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700170.epw site_zip_code=38344 site_time_zone_utc_offset=-6 +County "TN, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700190.epw site_zip_code=37643 site_time_zone_utc_offset=-5 +County "TN, Cheatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700210.epw site_zip_code=37015 site_time_zone_utc_offset=-6 +County "TN, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700230.epw site_zip_code=38340 site_time_zone_utc_offset=-6 +County "TN, Claiborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700250.epw site_zip_code=37879 site_time_zone_utc_offset=-5 +County "TN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700270.epw site_zip_code=38551 site_time_zone_utc_offset=-6 +County "TN, Cocke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700290.epw site_zip_code=37821 site_time_zone_utc_offset=-5 +County "TN, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700310.epw site_zip_code=37355 site_time_zone_utc_offset=-6 +County "TN, Crockett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700330.epw site_zip_code=38006 site_time_zone_utc_offset=-6 +County "TN, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700350.epw site_zip_code=38555 site_time_zone_utc_offset=-6 +County "TN, Davidson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700370.epw site_zip_code=37013 site_time_zone_utc_offset=-6 +County "TN, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700410.epw site_zip_code=37166 site_time_zone_utc_offset=-6 +County "TN, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700390.epw site_zip_code=38363 site_time_zone_utc_offset=-6 +County "TN, Dickson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700430.epw site_zip_code=37055 site_time_zone_utc_offset=-6 +County "TN, Dyer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700450.epw site_zip_code=38024 site_time_zone_utc_offset=-6 +County "TN, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700470.epw site_zip_code=38060 site_time_zone_utc_offset=-6 +County "TN, Fentress County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700490.epw site_zip_code=38556 site_time_zone_utc_offset=-6 +County "TN, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700510.epw site_zip_code=37398 site_time_zone_utc_offset=-6 +County "TN, Gibson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700530.epw site_zip_code=38343 site_time_zone_utc_offset=-6 +County "TN, Giles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700550.epw site_zip_code=38478 site_time_zone_utc_offset=-6 +County "TN, Grainger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700570.epw site_zip_code=37861 site_time_zone_utc_offset=-5 +County "TN, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700590.epw site_zip_code=37743 site_time_zone_utc_offset=-5 +County "TN, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700610.epw site_zip_code=37387 site_time_zone_utc_offset=-6 +County "TN, Hamblen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700630.epw site_zip_code=37814 site_time_zone_utc_offset=-5 +County "TN, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700650.epw site_zip_code=37421 site_time_zone_utc_offset=-5 +County "TN, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700670.epw site_zip_code=37869 site_time_zone_utc_offset=-5 +County "TN, Hardeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700690.epw site_zip_code=38008 site_time_zone_utc_offset=-6 +County "TN, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700710.epw site_zip_code=38372 site_time_zone_utc_offset=-6 +County "TN, Hawkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700730.epw site_zip_code=37857 site_time_zone_utc_offset=-5 +County "TN, Haywood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700750.epw site_zip_code=38012 site_time_zone_utc_offset=-6 +County "TN, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700770.epw site_zip_code=38351 site_time_zone_utc_offset=-6 +County "TN, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700790.epw site_zip_code=38242 site_time_zone_utc_offset=-6 +County "TN, Hickman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700810.epw site_zip_code=37033 site_time_zone_utc_offset=-6 +County "TN, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700830.epw site_zip_code=37061 site_time_zone_utc_offset=-6 +County "TN, Humphreys County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700850.epw site_zip_code=37185 site_time_zone_utc_offset=-6 +County "TN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700870.epw site_zip_code=38562 site_time_zone_utc_offset=-6 +County "TN, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700890.epw site_zip_code=37725 site_time_zone_utc_offset=-5 +County "TN, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700910.epw site_zip_code=37683 site_time_zone_utc_offset=-5 +County "TN, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700930.epw site_zip_code=37920 site_time_zone_utc_offset=-5 +County "TN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700950.epw site_zip_code=38079 site_time_zone_utc_offset=-6 +County "TN, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700970.epw site_zip_code=38063 site_time_zone_utc_offset=-6 +County "TN, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700990.epw site_zip_code=38464 site_time_zone_utc_offset=-6 +County "TN, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701010.epw site_zip_code=38462 site_time_zone_utc_offset=-6 +County "TN, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701030.epw site_zip_code=37334 site_time_zone_utc_offset=-6 +County "TN, Loudon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701050.epw site_zip_code=37774 site_time_zone_utc_offset=-5 +County "TN, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701110.epw site_zip_code=37083 site_time_zone_utc_offset=-6 +County "TN, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701130.epw site_zip_code=38305 site_time_zone_utc_offset=-6 +County "TN, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701150.epw site_zip_code=37397 site_time_zone_utc_offset=-6 +County "TN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701170.epw site_zip_code=37091 site_time_zone_utc_offset=-6 +County "TN, Maury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701190.epw site_zip_code=38401 site_time_zone_utc_offset=-6 +County "TN, McMinn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701070.epw site_zip_code=37303 site_time_zone_utc_offset=-5 +County "TN, McNairy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701090.epw site_zip_code=38375 site_time_zone_utc_offset=-6 +County "TN, Meigs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701210.epw site_zip_code=37322 site_time_zone_utc_offset=-5 +County "TN, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701230.epw site_zip_code=37354 site_time_zone_utc_offset=-5 +County "TN, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701250.epw site_zip_code=37042 site_time_zone_utc_offset=-6 +County "TN, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701270.epw site_zip_code=37352 site_time_zone_utc_offset=-6 +County "TN, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701290.epw site_zip_code=37887 site_time_zone_utc_offset=-5 +County "TN, Obion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701310.epw site_zip_code=38261 site_time_zone_utc_offset=-6 +County "TN, Overton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701330.epw site_zip_code=38570 site_time_zone_utc_offset=-6 +County "TN, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701350.epw site_zip_code=37096 site_time_zone_utc_offset=-6 +County "TN, Pickett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701370.epw site_zip_code=38549 site_time_zone_utc_offset=-6 +County "TN, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701390.epw site_zip_code=37307 site_time_zone_utc_offset=-5 +County "TN, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701410.epw site_zip_code=38501 site_time_zone_utc_offset=-6 +County "TN, Rhea County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701430.epw site_zip_code=37321 site_time_zone_utc_offset=-5 +County "TN, Roane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701450.epw site_zip_code=37748 site_time_zone_utc_offset=-5 +County "TN, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701470.epw site_zip_code=37172 site_time_zone_utc_offset=-6 +County "TN, Rutherford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701490.epw site_zip_code=37128 site_time_zone_utc_offset=-6 +County "TN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701510.epw site_zip_code=37841 site_time_zone_utc_offset=-5 +County "TN, Sequatchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701530.epw site_zip_code=37327 site_time_zone_utc_offset=-6 +County "TN, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701550.epw site_zip_code=37876 site_time_zone_utc_offset=-5 +County "TN, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701570.epw site_zip_code=38111 site_time_zone_utc_offset=-6 +County "TN, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701590.epw site_zip_code=37030 site_time_zone_utc_offset=-6 +County "TN, Stewart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701610.epw site_zip_code=37058 site_time_zone_utc_offset=-6 +County "TN, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701630.epw site_zip_code=37660 site_time_zone_utc_offset=-5 +County "TN, Sumner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701650.epw site_zip_code=37075 site_time_zone_utc_offset=-6 +County "TN, Tipton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701670.epw site_zip_code=38019 site_time_zone_utc_offset=-6 +County "TN, Trousdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701690.epw site_zip_code=37074 site_time_zone_utc_offset=-6 +County "TN, Unicoi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701710.epw site_zip_code=37650 site_time_zone_utc_offset=-5 +County "TN, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701730.epw site_zip_code=37807 site_time_zone_utc_offset=-5 +County "TN, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701750.epw site_zip_code=38585 site_time_zone_utc_offset=-6 +County "TN, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701770.epw site_zip_code=37110 site_time_zone_utc_offset=-6 +County "TN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701790.epw site_zip_code=37604 site_time_zone_utc_offset=-5 +County "TN, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701810.epw site_zip_code=38485 site_time_zone_utc_offset=-6 +County "TN, Weakley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701830.epw site_zip_code=38237 site_time_zone_utc_offset=-6 +County "TN, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701850.epw site_zip_code=38583 site_time_zone_utc_offset=-6 +County "TN, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701870.epw site_zip_code=37064 site_time_zone_utc_offset=-6 +County "TN, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701890.epw site_zip_code=37122 site_time_zone_utc_offset=-6 +County "TX, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800010.epw site_zip_code=75803 site_time_zone_utc_offset=-6 +County "TX, Andrews County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800030.epw site_zip_code=79714 site_time_zone_utc_offset=-6 +County "TX, Angelina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800050.epw site_zip_code=75904 site_time_zone_utc_offset=-6 +County "TX, Aransas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800070.epw site_zip_code=78382 site_time_zone_utc_offset=-6 +County "TX, Archer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800090.epw site_zip_code=76310 site_time_zone_utc_offset=-6 +County "TX, Armstrong County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800110.epw site_zip_code=79019 site_time_zone_utc_offset=-6 +County "TX, Atascosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800130.epw site_zip_code=78064 site_time_zone_utc_offset=-6 +County "TX, Austin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800150.epw site_zip_code=77474 site_time_zone_utc_offset=-6 +County "TX, Bailey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800170.epw site_zip_code=79347 site_time_zone_utc_offset=-6 +County "TX, Bandera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800190.epw site_zip_code=78003 site_time_zone_utc_offset=-6 +County "TX, Bastrop County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800210.epw site_zip_code=78602 site_time_zone_utc_offset=-6 +County "TX, Baylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800230.epw site_zip_code=76380 site_time_zone_utc_offset=-6 +County "TX, Bee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800250.epw site_zip_code=78102 site_time_zone_utc_offset=-6 +County "TX, Bell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800270.epw site_zip_code=76502 site_time_zone_utc_offset=-6 +County "TX, Bexar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800290.epw site_zip_code=78245 site_time_zone_utc_offset=-6 +County "TX, Blanco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800310.epw site_zip_code=78606 site_time_zone_utc_offset=-6 +County "TX, Borden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800330.epw site_zip_code=79351 site_time_zone_utc_offset=-6 +County "TX, Bosque County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800350.epw site_zip_code=76634 site_time_zone_utc_offset=-6 +County "TX, Bowie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800370.epw site_zip_code=75501 site_time_zone_utc_offset=-6 +County "TX, Brazoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800390.epw site_zip_code=77584 site_time_zone_utc_offset=-6 +County "TX, Brazos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800410.epw site_zip_code=77845 site_time_zone_utc_offset=-6 +County "TX, Brewster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800430.epw site_zip_code=79830 site_time_zone_utc_offset=-6 +County "TX, Briscoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800450.epw site_zip_code=79257 site_time_zone_utc_offset=-6 +County "TX, Brooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800470.epw site_zip_code=78355 site_time_zone_utc_offset=-6 +County "TX, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800490.epw site_zip_code=76801 site_time_zone_utc_offset=-6 +County "TX, Burleson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800510.epw site_zip_code=77836 site_time_zone_utc_offset=-6 +County "TX, Burnet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800530.epw site_zip_code=78654 site_time_zone_utc_offset=-6 +County "TX, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800550.epw site_zip_code=78644 site_time_zone_utc_offset=-6 +County "TX, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800570.epw site_zip_code=77979 site_time_zone_utc_offset=-6 +County "TX, Callahan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800590.epw site_zip_code=79510 site_time_zone_utc_offset=-6 +County "TX, Cameron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800610.epw site_zip_code=78521 site_time_zone_utc_offset=-6 +County "TX, Camp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800630.epw site_zip_code=75686 site_time_zone_utc_offset=-6 +County "TX, Carson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800650.epw site_zip_code=79068 site_time_zone_utc_offset=-6 +County "TX, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800670.epw site_zip_code=75551 site_time_zone_utc_offset=-6 +County "TX, Castro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800690.epw site_zip_code=79027 site_time_zone_utc_offset=-6 +County "TX, Chambers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800710.epw site_zip_code=77523 site_time_zone_utc_offset=-6 +County "TX, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800730.epw site_zip_code=75766 site_time_zone_utc_offset=-6 +County "TX, Childress County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800750.epw site_zip_code=79201 site_time_zone_utc_offset=-6 +County "TX, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800770.epw site_zip_code=76365 site_time_zone_utc_offset=-6 +County "TX, Cochran County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800790.epw site_zip_code=79346 site_time_zone_utc_offset=-6 +County "TX, Coke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800810.epw site_zip_code=76945 site_time_zone_utc_offset=-6 +County "TX, Coleman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800830.epw site_zip_code=76834 site_time_zone_utc_offset=-6 +County "TX, Collin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800850.epw site_zip_code=75035 site_time_zone_utc_offset=-6 +County "TX, Collingsworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800870.epw site_zip_code=79095 site_time_zone_utc_offset=-6 +County "TX, Colorado County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800890.epw site_zip_code=78934 site_time_zone_utc_offset=-6 +County "TX, Comal County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800910.epw site_zip_code=78130 site_time_zone_utc_offset=-6 +County "TX, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800930.epw site_zip_code=76442 site_time_zone_utc_offset=-6 +County "TX, Concho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800950.epw site_zip_code=76837 site_time_zone_utc_offset=-6 +County "TX, Cooke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800970.epw site_zip_code=76240 site_time_zone_utc_offset=-6 +County "TX, Coryell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800990.epw site_zip_code=76522 site_time_zone_utc_offset=-6 +County "TX, Cottle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801010.epw site_zip_code=79248 site_time_zone_utc_offset=-6 +County "TX, Crane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801030.epw site_zip_code=79731 site_time_zone_utc_offset=-6 +County "TX, Crockett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801050.epw site_zip_code=76943 site_time_zone_utc_offset=-6 +County "TX, Crosby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801070.epw site_zip_code=79322 site_time_zone_utc_offset=-6 +County "TX, Culberson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801090.epw site_zip_code=79847 site_time_zone_utc_offset=-6 +County "TX, Dallam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801110.epw site_zip_code=79022 site_time_zone_utc_offset=-6 +County "TX, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801130.epw site_zip_code=75243 site_time_zone_utc_offset=-6 +County "TX, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801150.epw site_zip_code=79331 site_time_zone_utc_offset=-6 +County "TX, DeWitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801230.epw site_zip_code=77954 site_time_zone_utc_offset=-6 +County "TX, Deaf Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801170.epw site_zip_code=79045 site_time_zone_utc_offset=-6 +County "TX, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801190.epw site_zip_code=75432 site_time_zone_utc_offset=-6 +County "TX, Denton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801210.epw site_zip_code=75056 site_time_zone_utc_offset=-6 +County "TX, Dickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801250.epw site_zip_code=79370 site_time_zone_utc_offset=-6 +County "TX, Dimmit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801270.epw site_zip_code=78834 site_time_zone_utc_offset=-6 +County "TX, Donley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801290.epw site_zip_code=79226 site_time_zone_utc_offset=-6 +County "TX, Duval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801310.epw site_zip_code=78384 site_time_zone_utc_offset=-6 +County "TX, Eastland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801330.epw site_zip_code=76437 site_time_zone_utc_offset=-6 +County "TX, Ector County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801350.epw site_zip_code=79762 site_time_zone_utc_offset=-6 +County "TX, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801370.epw site_zip_code=78880 site_time_zone_utc_offset=-6 +County "TX, El Paso County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801410.epw site_zip_code=79936 site_time_zone_utc_offset=-7 +County "TX, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801390.epw site_zip_code=75165 site_time_zone_utc_offset=-6 +County "TX, Erath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801430.epw site_zip_code=76401 site_time_zone_utc_offset=-6 +County "TX, Falls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801450.epw site_zip_code=76661 site_time_zone_utc_offset=-6 +County "TX, Fannin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801470.epw site_zip_code=75418 site_time_zone_utc_offset=-6 +County "TX, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801490.epw site_zip_code=78945 site_time_zone_utc_offset=-6 +County "TX, Fisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801510.epw site_zip_code=79546 site_time_zone_utc_offset=-6 +County "TX, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801530.epw site_zip_code=79235 site_time_zone_utc_offset=-6 +County "TX, Foard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801550.epw site_zip_code=79227 site_time_zone_utc_offset=-6 +County "TX, Fort Bend County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801570.epw site_zip_code=77494 site_time_zone_utc_offset=-6 +County "TX, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801590.epw site_zip_code=75457 site_time_zone_utc_offset=-6 +County "TX, Freestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801610.epw site_zip_code=75860 site_time_zone_utc_offset=-6 +County "TX, Frio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801630.epw site_zip_code=78061 site_time_zone_utc_offset=-6 +County "TX, Gaines County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801650.epw site_zip_code=79360 site_time_zone_utc_offset=-6 +County "TX, Galveston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801670.epw site_zip_code=77573 site_time_zone_utc_offset=-6 +County "TX, Garza County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801690.epw site_zip_code=79356 site_time_zone_utc_offset=-6 +County "TX, Gillespie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801710.epw site_zip_code=78624 site_time_zone_utc_offset=-6 +County "TX, Glasscock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801730.epw site_zip_code=79739 site_time_zone_utc_offset=-6 +County "TX, Goliad County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801750.epw site_zip_code=77963 site_time_zone_utc_offset=-6 +County "TX, Gonzales County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801770.epw site_zip_code=78629 site_time_zone_utc_offset=-6 +County "TX, Gray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801790.epw site_zip_code=79065 site_time_zone_utc_offset=-6 +County "TX, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801810.epw site_zip_code=75092 site_time_zone_utc_offset=-6 +County "TX, Gregg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801830.epw site_zip_code=75605 site_time_zone_utc_offset=-6 +County "TX, Grimes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801850.epw site_zip_code=77868 site_time_zone_utc_offset=-6 +County "TX, Guadalupe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801870.epw site_zip_code=78155 site_time_zone_utc_offset=-6 +County "TX, Hale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801890.epw site_zip_code=79072 site_time_zone_utc_offset=-6 +County "TX, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801910.epw site_zip_code=79245 site_time_zone_utc_offset=-6 +County "TX, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801930.epw site_zip_code=76531 site_time_zone_utc_offset=-6 +County "TX, Hansford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801950.epw site_zip_code=79081 site_time_zone_utc_offset=-6 +County "TX, Hardeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801970.epw site_zip_code=79252 site_time_zone_utc_offset=-6 +County "TX, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801990.epw site_zip_code=77657 site_time_zone_utc_offset=-6 +County "TX, Harris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802010.epw site_zip_code=77449 site_time_zone_utc_offset=-6 +County "TX, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802030.epw site_zip_code=75672 site_time_zone_utc_offset=-6 +County "TX, Hartley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802050.epw site_zip_code=79022 site_time_zone_utc_offset=-6 +County "TX, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802070.epw site_zip_code=79521 site_time_zone_utc_offset=-6 +County "TX, Hays County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802090.epw site_zip_code=78666 site_time_zone_utc_offset=-6 +County "TX, Hemphill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802110.epw site_zip_code=79014 site_time_zone_utc_offset=-6 +County "TX, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802130.epw site_zip_code=75156 site_time_zone_utc_offset=-6 +County "TX, Hidalgo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802150.epw site_zip_code=78572 site_time_zone_utc_offset=-6 +County "TX, Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802170.epw site_zip_code=76692 site_time_zone_utc_offset=-6 +County "TX, Hockley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802190.epw site_zip_code=79336 site_time_zone_utc_offset=-6 +County "TX, Hood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802210.epw site_zip_code=76048 site_time_zone_utc_offset=-6 +County "TX, Hopkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802230.epw site_zip_code=75482 site_time_zone_utc_offset=-6 +County "TX, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802250.epw site_zip_code=75835 site_time_zone_utc_offset=-6 +County "TX, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802270.epw site_zip_code=79720 site_time_zone_utc_offset=-6 +County "TX, Hudspeth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802290.epw site_zip_code=79839 site_time_zone_utc_offset=-7 +County "TX, Hunt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802310.epw site_zip_code=75401 site_time_zone_utc_offset=-6 +County "TX, Hutchinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802330.epw site_zip_code=79007 site_time_zone_utc_offset=-6 +County "TX, Irion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802350.epw site_zip_code=76941 site_time_zone_utc_offset=-6 +County "TX, Jack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802370.epw site_zip_code=76458 site_time_zone_utc_offset=-6 +County "TX, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802390.epw site_zip_code=77957 site_time_zone_utc_offset=-6 +County "TX, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802410.epw site_zip_code=75951 site_time_zone_utc_offset=-6 +County "TX, Jeff Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802430.epw site_zip_code=79734 site_time_zone_utc_offset=-6 +County "TX, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802450.epw site_zip_code=77642 site_time_zone_utc_offset=-6 +County "TX, Jim Hogg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802470.epw site_zip_code=78361 site_time_zone_utc_offset=-6 +County "TX, Jim Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802490.epw site_zip_code=78332 site_time_zone_utc_offset=-6 +County "TX, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802510.epw site_zip_code=76028 site_time_zone_utc_offset=-6 +County "TX, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802530.epw site_zip_code=79501 site_time_zone_utc_offset=-6 +County "TX, Karnes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802550.epw site_zip_code=78119 site_time_zone_utc_offset=-6 +County "TX, Kaufman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802570.epw site_zip_code=75126 site_time_zone_utc_offset=-6 +County "TX, Kendall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802590.epw site_zip_code=78006 site_time_zone_utc_offset=-6 +County "TX, Kenedy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802610.epw site_zip_code=78385 site_time_zone_utc_offset=-6 +County "TX, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802630.epw site_zip_code=79549 site_time_zone_utc_offset=-6 +County "TX, Kerr County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802650.epw site_zip_code=78028 site_time_zone_utc_offset=-6 +County "TX, Kimble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802670.epw site_zip_code=76849 site_time_zone_utc_offset=-6 +County "TX, King County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802690.epw site_zip_code=79248 site_time_zone_utc_offset=-6 +County "TX, Kinney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802710.epw site_zip_code=78832 site_time_zone_utc_offset=-6 +County "TX, Kleberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802730.epw site_zip_code=78363 site_time_zone_utc_offset=-6 +County "TX, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802750.epw site_zip_code=76371 site_time_zone_utc_offset=-6 +County "TX, La Salle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802830.epw site_zip_code=78014 site_time_zone_utc_offset=-6 +County "TX, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802770.epw site_zip_code=75460 site_time_zone_utc_offset=-6 +County "TX, Lamb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802790.epw site_zip_code=79339 site_time_zone_utc_offset=-6 +County "TX, Lampasas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802810.epw site_zip_code=76550 site_time_zone_utc_offset=-6 +County "TX, Lavaca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802850.epw site_zip_code=77964 site_time_zone_utc_offset=-6 +County "TX, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802870.epw site_zip_code=78942 site_time_zone_utc_offset=-6 +County "TX, Leon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802890.epw site_zip_code=75831 site_time_zone_utc_offset=-6 +County "TX, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802910.epw site_zip_code=77327 site_time_zone_utc_offset=-6 +County "TX, Limestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802930.epw site_zip_code=76667 site_time_zone_utc_offset=-6 +County "TX, Lipscomb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802950.epw site_zip_code=79005 site_time_zone_utc_offset=-6 +County "TX, Live Oak County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802970.epw site_zip_code=78022 site_time_zone_utc_offset=-6 +County "TX, Llano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802990.epw site_zip_code=78657 site_time_zone_utc_offset=-6 +County "TX, Loving County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803010.epw site_zip_code=79754 site_time_zone_utc_offset=-6 +County "TX, Lubbock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803030.epw site_zip_code=79424 site_time_zone_utc_offset=-6 +County "TX, Lynn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803050.epw site_zip_code=79373 site_time_zone_utc_offset=-6 +County "TX, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803130.epw site_zip_code=77864 site_time_zone_utc_offset=-6 +County "TX, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803150.epw site_zip_code=75657 site_time_zone_utc_offset=-6 +County "TX, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803170.epw site_zip_code=79782 site_time_zone_utc_offset=-6 +County "TX, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803190.epw site_zip_code=76856 site_time_zone_utc_offset=-6 +County "TX, Matagorda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803210.epw site_zip_code=77414 site_time_zone_utc_offset=-6 +County "TX, Maverick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803230.epw site_zip_code=78852 site_time_zone_utc_offset=-6 +County "TX, McCulloch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803070.epw site_zip_code=76825 site_time_zone_utc_offset=-6 +County "TX, McLennan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803090.epw site_zip_code=76706 site_time_zone_utc_offset=-6 +County "TX, McMullen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803110.epw site_zip_code=78072 site_time_zone_utc_offset=-6 +County "TX, Medina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803250.epw site_zip_code=78861 site_time_zone_utc_offset=-6 +County "TX, Menard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803270.epw site_zip_code=76859 site_time_zone_utc_offset=-6 +County "TX, Midland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803290.epw site_zip_code=79705 site_time_zone_utc_offset=-6 +County "TX, Milam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803310.epw site_zip_code=76567 site_time_zone_utc_offset=-6 +County "TX, Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803330.epw site_zip_code=76844 site_time_zone_utc_offset=-6 +County "TX, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803350.epw site_zip_code=79512 site_time_zone_utc_offset=-6 +County "TX, Montague County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803370.epw site_zip_code=76230 site_time_zone_utc_offset=-6 +County "TX, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803390.epw site_zip_code=77386 site_time_zone_utc_offset=-6 +County "TX, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803410.epw site_zip_code=79029 site_time_zone_utc_offset=-6 +County "TX, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803430.epw site_zip_code=75638 site_time_zone_utc_offset=-6 +County "TX, Motley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803450.epw site_zip_code=79234 site_time_zone_utc_offset=-6 +County "TX, Nacogdoches County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803470.epw site_zip_code=75964 site_time_zone_utc_offset=-6 +County "TX, Navarro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803490.epw site_zip_code=75110 site_time_zone_utc_offset=-6 +County "TX, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803510.epw site_zip_code=75966 site_time_zone_utc_offset=-6 +County "TX, Nolan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803530.epw site_zip_code=79556 site_time_zone_utc_offset=-6 +County "TX, Nueces County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803550.epw site_zip_code=78414 site_time_zone_utc_offset=-6 +County "TX, Ochiltree County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803570.epw site_zip_code=79070 site_time_zone_utc_offset=-6 +County "TX, Oldham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803590.epw site_zip_code=79092 site_time_zone_utc_offset=-6 +County "TX, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803610.epw site_zip_code=77630 site_time_zone_utc_offset=-6 +County "TX, Palo Pinto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803630.epw site_zip_code=76067 site_time_zone_utc_offset=-6 +County "TX, Panola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803650.epw site_zip_code=75633 site_time_zone_utc_offset=-6 +County "TX, Parker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803670.epw site_zip_code=76087 site_time_zone_utc_offset=-6 +County "TX, Parmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803690.epw site_zip_code=79035 site_time_zone_utc_offset=-6 +County "TX, Pecos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803710.epw site_zip_code=79735 site_time_zone_utc_offset=-6 +County "TX, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803730.epw site_zip_code=77351 site_time_zone_utc_offset=-6 +County "TX, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803750.epw site_zip_code=79107 site_time_zone_utc_offset=-6 +County "TX, Presidio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803770.epw site_zip_code=79845 site_time_zone_utc_offset=-6 +County "TX, Rains County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803790.epw site_zip_code=75440 site_time_zone_utc_offset=-6 +County "TX, Randall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803810.epw site_zip_code=79109 site_time_zone_utc_offset=-6 +County "TX, Reagan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803830.epw site_zip_code=76932 site_time_zone_utc_offset=-6 +County "TX, Real County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803850.epw site_zip_code=78873 site_time_zone_utc_offset=-6 +County "TX, Red River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803870.epw site_zip_code=75426 site_time_zone_utc_offset=-6 +County "TX, Reeves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803890.epw site_zip_code=79772 site_time_zone_utc_offset=-6 +County "TX, Refugio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803910.epw site_zip_code=78377 site_time_zone_utc_offset=-6 +County "TX, Roberts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803930.epw site_zip_code=79059 site_time_zone_utc_offset=-6 +County "TX, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803950.epw site_zip_code=77859 site_time_zone_utc_offset=-6 +County "TX, Rockwall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803970.epw site_zip_code=75087 site_time_zone_utc_offset=-6 +County "TX, Runnels County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803990.epw site_zip_code=76821 site_time_zone_utc_offset=-6 +County "TX, Rusk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804010.epw site_zip_code=75652 site_time_zone_utc_offset=-6 +County "TX, Sabine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804030.epw site_zip_code=75948 site_time_zone_utc_offset=-6 +County "TX, San Augustine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804050.epw site_zip_code=75972 site_time_zone_utc_offset=-6 +County "TX, San Jacinto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804070.epw site_zip_code=77331 site_time_zone_utc_offset=-6 +County "TX, San Patricio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804090.epw site_zip_code=78374 site_time_zone_utc_offset=-6 +County "TX, San Saba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804110.epw site_zip_code=76877 site_time_zone_utc_offset=-6 +County "TX, Schleicher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804130.epw site_zip_code=76936 site_time_zone_utc_offset=-6 +County "TX, Scurry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804150.epw site_zip_code=79549 site_time_zone_utc_offset=-6 +County "TX, Shackelford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804170.epw site_zip_code=76430 site_time_zone_utc_offset=-6 +County "TX, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804190.epw site_zip_code=75935 site_time_zone_utc_offset=-6 +County "TX, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804210.epw site_zip_code=79084 site_time_zone_utc_offset=-6 +County "TX, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804230.epw site_zip_code=75703 site_time_zone_utc_offset=-6 +County "TX, Somervell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804250.epw site_zip_code=76043 site_time_zone_utc_offset=-6 +County "TX, Starr County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804270.epw site_zip_code=78582 site_time_zone_utc_offset=-6 +County "TX, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804290.epw site_zip_code=76424 site_time_zone_utc_offset=-6 +County "TX, Sterling County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804310.epw site_zip_code=76951 site_time_zone_utc_offset=-6 +County "TX, Stonewall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804330.epw site_zip_code=79502 site_time_zone_utc_offset=-6 +County "TX, Sutton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804350.epw site_zip_code=76950 site_time_zone_utc_offset=-6 +County "TX, Swisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804370.epw site_zip_code=79088 site_time_zone_utc_offset=-6 +County "TX, Tarrant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804390.epw site_zip_code=76244 site_time_zone_utc_offset=-6 +County "TX, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804410.epw site_zip_code=79605 site_time_zone_utc_offset=-6 +County "TX, Terrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804430.epw site_zip_code=78851 site_time_zone_utc_offset=-6 +County "TX, Terry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804450.epw site_zip_code=79316 site_time_zone_utc_offset=-6 +County "TX, Throckmorton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804470.epw site_zip_code=76483 site_time_zone_utc_offset=-6 +County "TX, Titus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804490.epw site_zip_code=75455 site_time_zone_utc_offset=-6 +County "TX, Tom Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804510.epw site_zip_code=76904 site_time_zone_utc_offset=-6 +County "TX, Travis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804530.epw site_zip_code=78660 site_time_zone_utc_offset=-6 +County "TX, Trinity County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804550.epw site_zip_code=75862 site_time_zone_utc_offset=-6 +County "TX, Tyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804570.epw site_zip_code=75979 site_time_zone_utc_offset=-6 +County "TX, Upshur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804590.epw site_zip_code=75644 site_time_zone_utc_offset=-6 +County "TX, Upton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804610.epw site_zip_code=79778 site_time_zone_utc_offset=-6 +County "TX, Uvalde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804630.epw site_zip_code=78801 site_time_zone_utc_offset=-6 +County "TX, Val Verde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804650.epw site_zip_code=78840 site_time_zone_utc_offset=-6 +County "TX, Van Zandt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804670.epw site_zip_code=75103 site_time_zone_utc_offset=-6 +County "TX, Victoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804690.epw site_zip_code=77901 site_time_zone_utc_offset=-6 +County "TX, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804710.epw site_zip_code=77340 site_time_zone_utc_offset=-6 +County "TX, Waller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804730.epw site_zip_code=77423 site_time_zone_utc_offset=-6 +County "TX, Ward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804750.epw site_zip_code=79756 site_time_zone_utc_offset=-6 +County "TX, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804770.epw site_zip_code=77833 site_time_zone_utc_offset=-6 +County "TX, Webb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804790.epw site_zip_code=78045 site_time_zone_utc_offset=-6 +County "TX, Wharton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804810.epw site_zip_code=77437 site_time_zone_utc_offset=-6 +County "TX, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804830.epw site_zip_code=79079 site_time_zone_utc_offset=-6 +County "TX, Wichita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804850.epw site_zip_code=76311 site_time_zone_utc_offset=-6 +County "TX, Wilbarger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804870.epw site_zip_code=76384 site_time_zone_utc_offset=-6 +County "TX, Willacy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804890.epw site_zip_code=78580 site_time_zone_utc_offset=-6 +County "TX, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804910.epw site_zip_code=78641 site_time_zone_utc_offset=-6 +County "TX, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804930.epw site_zip_code=78114 site_time_zone_utc_offset=-6 +County "TX, Winkler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804950.epw site_zip_code=79745 site_time_zone_utc_offset=-6 +County "TX, Wise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804970.epw site_zip_code=76234 site_time_zone_utc_offset=-6 +County "TX, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804990.epw site_zip_code=75773 site_time_zone_utc_offset=-6 +County "TX, Yoakum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805010.epw site_zip_code=79323 site_time_zone_utc_offset=-6 +County "TX, Young County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805030.epw site_zip_code=76450 site_time_zone_utc_offset=-6 +County "TX, Zapata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805050.epw site_zip_code=78076 site_time_zone_utc_offset=-6 +County "TX, Zavala County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805070.epw site_zip_code=78839 site_time_zone_utc_offset=-6 +County "UT, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900010.epw site_zip_code=84713 site_time_zone_utc_offset=-7 +County "UT, Box Elder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900030.epw site_zip_code=84302 site_time_zone_utc_offset=-7 +County "UT, Cache County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900050.epw site_zip_code=84321 site_time_zone_utc_offset=-7 +County "UT, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900070.epw site_zip_code=84501 site_time_zone_utc_offset=-7 +County "UT, Daggett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900090.epw site_zip_code=84046 site_time_zone_utc_offset=-7 +County "UT, Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900110.epw site_zip_code=84015 site_time_zone_utc_offset=-7 +County "UT, Duchesne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900130.epw site_zip_code=84066 site_time_zone_utc_offset=-7 +County "UT, Emery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900150.epw site_zip_code=84528 site_time_zone_utc_offset=-7 +County "UT, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900170.epw site_zip_code=84726 site_time_zone_utc_offset=-7 +County "UT, Grand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900190.epw site_zip_code=84532 site_time_zone_utc_offset=-7 +County "UT, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900210.epw site_zip_code=84721 site_time_zone_utc_offset=-7 +County "UT, Juab County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900230.epw site_zip_code=84648 site_time_zone_utc_offset=-7 +County "UT, Kane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900250.epw site_zip_code=84741 site_time_zone_utc_offset=-7 +County "UT, Millard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900270.epw site_zip_code=84624 site_time_zone_utc_offset=-7 +County "UT, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900290.epw site_zip_code=84050 site_time_zone_utc_offset=-7 +County "UT, Piute County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900310.epw site_zip_code=84750 site_time_zone_utc_offset=-7 +County "UT, Rich County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900330.epw site_zip_code=84028 site_time_zone_utc_offset=-7 +County "UT, Salt Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900350.epw site_zip_code=84096 site_time_zone_utc_offset=-7 +County "UT, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900370.epw site_zip_code=84511 site_time_zone_utc_offset=-7 +County "UT, Sanpete County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900390.epw site_zip_code=84627 site_time_zone_utc_offset=-7 +County "UT, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900410.epw site_zip_code=84701 site_time_zone_utc_offset=-7 +County "UT, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900430.epw site_zip_code=84098 site_time_zone_utc_offset=-7 +County "UT, Tooele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900450.epw site_zip_code=84074 site_time_zone_utc_offset=-7 +County "UT, Uintah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900470.epw site_zip_code=84078 site_time_zone_utc_offset=-7 +County "UT, Utah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900490.epw site_zip_code=84043 site_time_zone_utc_offset=-7 +County "UT, Wasatch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900510.epw site_zip_code=84032 site_time_zone_utc_offset=-7 +County "UT, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900530.epw site_zip_code=84770 site_time_zone_utc_offset=-7 +County "UT, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900550.epw site_zip_code=84775 site_time_zone_utc_offset=-7 +County "UT, Weber County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900570.epw site_zip_code=84404 site_time_zone_utc_offset=-7 +County "VA, Accomack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100010.epw site_zip_code=23336 site_time_zone_utc_offset=-5 +County "VA, Albemarle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100030.epw site_zip_code=22901 site_time_zone_utc_offset=-5 +County "VA, Alexandria city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105100.epw site_zip_code=22304 site_time_zone_utc_offset=-5 +County "VA, Alleghany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100050.epw site_zip_code=24426 site_time_zone_utc_offset=-5 +County "VA, Amelia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100070.epw site_zip_code=23002 site_time_zone_utc_offset=-5 +County "VA, Amherst County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100090.epw site_zip_code=24572 site_time_zone_utc_offset=-5 +County "VA, Appomattox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100110.epw site_zip_code=24522 site_time_zone_utc_offset=-5 +County "VA, Arlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100130.epw site_zip_code=22204 site_time_zone_utc_offset=-5 +County "VA, Augusta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100150.epw site_zip_code=24401 site_time_zone_utc_offset=-5 +County "VA, Bath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100170.epw site_zip_code=24460 site_time_zone_utc_offset=-5 +County "VA, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100190.epw site_zip_code=24551 site_time_zone_utc_offset=-5 +County "VA, Bland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100210.epw site_zip_code=24315 site_time_zone_utc_offset=-5 +County "VA, Botetourt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100230.epw site_zip_code=24175 site_time_zone_utc_offset=-5 +County "VA, Bristol city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105200.epw site_zip_code=24201 site_time_zone_utc_offset=-5 +County "VA, Brunswick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100250.epw site_zip_code=23868 site_time_zone_utc_offset=-5 +County "VA, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100270.epw site_zip_code=24614 site_time_zone_utc_offset=-5 +County "VA, Buckingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100290.epw site_zip_code=23936 site_time_zone_utc_offset=-5 +County "VA, Buena Vista city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105300.epw site_zip_code=24416 site_time_zone_utc_offset=-5 +County "VA, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100310.epw site_zip_code=24502 site_time_zone_utc_offset=-5 +County "VA, Caroline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100330.epw site_zip_code=22546 site_time_zone_utc_offset=-5 +County "VA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100350.epw site_zip_code=24343 site_time_zone_utc_offset=-5 +County "VA, Charles City County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100360.epw site_zip_code=23030 site_time_zone_utc_offset=-5 +County "VA, Charlotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100370.epw site_zip_code=23923 site_time_zone_utc_offset=-5 +County "VA, Charlottesville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105400.epw site_zip_code=22903 site_time_zone_utc_offset=-5 +County "VA, Chesapeake city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105500.epw site_zip_code=23320 site_time_zone_utc_offset=-5 +County "VA, Chesterfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100410.epw site_zip_code=23112 site_time_zone_utc_offset=-5 +County "VA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100430.epw site_zip_code=22611 site_time_zone_utc_offset=-5 +County "VA, Colonial Heights city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105700.epw site_zip_code=23834 site_time_zone_utc_offset=-5 +County "VA, Covington city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105800.epw site_zip_code=24426 site_time_zone_utc_offset=-5 +County "VA, Craig County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100450.epw site_zip_code=24127 site_time_zone_utc_offset=-5 +County "VA, Culpeper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100470.epw site_zip_code=22701 site_time_zone_utc_offset=-5 +County "VA, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100490.epw site_zip_code=23040 site_time_zone_utc_offset=-5 +County "VA, Danville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105900.epw site_zip_code=24541 site_time_zone_utc_offset=-5 +County "VA, Dickenson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100510.epw site_zip_code=24228 site_time_zone_utc_offset=-5 +County "VA, Dinwiddie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100530.epw site_zip_code=23803 site_time_zone_utc_offset=-5 +County "VA, Emporia city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105950.epw site_zip_code=23847 site_time_zone_utc_offset=-5 +County "VA, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100570.epw site_zip_code=22560 site_time_zone_utc_offset=-5 +County "VA, Fairfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100590.epw site_zip_code=20171 site_time_zone_utc_offset=-5 +County "VA, Fairfax city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106000.epw site_zip_code=22030 site_time_zone_utc_offset=-5 +County "VA, Falls Church city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106100.epw site_zip_code=22046 site_time_zone_utc_offset=-5 +County "VA, Fauquier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100610.epw site_zip_code=20187 site_time_zone_utc_offset=-5 +County "VA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100630.epw site_zip_code=24091 site_time_zone_utc_offset=-5 +County "VA, Fluvanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100650.epw site_zip_code=22963 site_time_zone_utc_offset=-5 +County "VA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100670.epw site_zip_code=24151 site_time_zone_utc_offset=-5 +County "VA, Franklin city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106200.epw site_zip_code=23851 site_time_zone_utc_offset=-5 +County "VA, Frederick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100690.epw site_zip_code=22602 site_time_zone_utc_offset=-5 +County "VA, Fredericksburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106300.epw site_zip_code=22401 site_time_zone_utc_offset=-5 +County "VA, Galax city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106400.epw site_zip_code=24333 site_time_zone_utc_offset=-5 +County "VA, Giles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100710.epw site_zip_code=24134 site_time_zone_utc_offset=-5 +County "VA, Gloucester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100730.epw site_zip_code=23061 site_time_zone_utc_offset=-5 +County "VA, Goochland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100750.epw site_zip_code=23103 site_time_zone_utc_offset=-5 +County "VA, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100770.epw site_zip_code=24333 site_time_zone_utc_offset=-5 +County "VA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100790.epw site_zip_code=22968 site_time_zone_utc_offset=-5 +County "VA, Greensville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100810.epw site_zip_code=23847 site_time_zone_utc_offset=-5 +County "VA, Halifax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100830.epw site_zip_code=24592 site_time_zone_utc_offset=-5 +County "VA, Hampton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106500.epw site_zip_code=23666 site_time_zone_utc_offset=-5 +County "VA, Hanover County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100850.epw site_zip_code=23111 site_time_zone_utc_offset=-5 +County "VA, Harrisonburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106600.epw site_zip_code=22801 site_time_zone_utc_offset=-5 +County "VA, Henrico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100870.epw site_zip_code=23228 site_time_zone_utc_offset=-5 +County "VA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100890.epw site_zip_code=24112 site_time_zone_utc_offset=-5 +County "VA, Highland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100910.epw site_zip_code=24465 site_time_zone_utc_offset=-5 +County "VA, Hopewell city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106700.epw site_zip_code=23860 site_time_zone_utc_offset=-5 +County "VA, Isle of Wight County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100930.epw site_zip_code=23430 site_time_zone_utc_offset=-5 +County "VA, James City County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100950.epw site_zip_code=23188 site_time_zone_utc_offset=-5 +County "VA, King George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100990.epw site_zip_code=22485 site_time_zone_utc_offset=-5 +County "VA, King William County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101010.epw site_zip_code=23009 site_time_zone_utc_offset=-5 +County "VA, King and Queen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100970.epw site_zip_code=23156 site_time_zone_utc_offset=-5 +County "VA, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101030.epw site_zip_code=22503 site_time_zone_utc_offset=-5 +County "VA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101050.epw site_zip_code=24263 site_time_zone_utc_offset=-5 +County "VA, Lexington city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106780.epw site_zip_code=24450 site_time_zone_utc_offset=-5 +County "VA, Loudoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101070.epw site_zip_code=20189 site_time_zone_utc_offset=-5 +County "VA, Louisa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101090.epw site_zip_code=23093 site_time_zone_utc_offset=-5 +County "VA, Lunenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101110.epw site_zip_code=23974 site_time_zone_utc_offset=-5 +County "VA, Lynchburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106800.epw site_zip_code=24502 site_time_zone_utc_offset=-5 +County "VA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101130.epw site_zip_code=22727 site_time_zone_utc_offset=-5 +County "VA, Manassas Park city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106850.epw site_zip_code=20111 site_time_zone_utc_offset=-5 +County "VA, Manassas city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106830.epw site_zip_code=20110 site_time_zone_utc_offset=-5 +County "VA, Martinsville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106900.epw site_zip_code=24112 site_time_zone_utc_offset=-5 +County "VA, Mathews County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101150.epw site_zip_code=23109 site_time_zone_utc_offset=-5 +County "VA, Mecklenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101170.epw site_zip_code=23970 site_time_zone_utc_offset=-5 +County "VA, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101190.epw site_zip_code=23043 site_time_zone_utc_offset=-5 +County "VA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101210.epw site_zip_code=24060 site_time_zone_utc_offset=-5 +County "VA, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101250.epw site_zip_code=22967 site_time_zone_utc_offset=-5 +County "VA, New Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101270.epw site_zip_code=23141 site_time_zone_utc_offset=-5 +County "VA, Newport News city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107000.epw site_zip_code=23608 site_time_zone_utc_offset=-5 +County "VA, Norfolk city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107100.epw site_zip_code=23503 site_time_zone_utc_offset=-5 +County "VA, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101310.epw site_zip_code=23310 site_time_zone_utc_offset=-5 +County "VA, Northumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101330.epw site_zip_code=22473 site_time_zone_utc_offset=-5 +County "VA, Norton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107200.epw site_zip_code=24273 site_time_zone_utc_offset=-5 +County "VA, Nottoway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101350.epw site_zip_code=23824 site_time_zone_utc_offset=-5 +County "VA, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101370.epw site_zip_code=22508 site_time_zone_utc_offset=-5 +County "VA, Page County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101390.epw site_zip_code=22835 site_time_zone_utc_offset=-5 +County "VA, Patrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101410.epw site_zip_code=24171 site_time_zone_utc_offset=-5 +County "VA, Petersburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107300.epw site_zip_code=23803 site_time_zone_utc_offset=-5 +County "VA, Pittsylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101430.epw site_zip_code=24540 site_time_zone_utc_offset=-5 +County "VA, Poquoson city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107350.epw site_zip_code=23662 site_time_zone_utc_offset=-5 +County "VA, Portsmouth city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107400.epw site_zip_code=23703 site_time_zone_utc_offset=-5 +County "VA, Powhatan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101450.epw site_zip_code=23139 site_time_zone_utc_offset=-5 +County "VA, Prince Edward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101470.epw site_zip_code=23901 site_time_zone_utc_offset=-5 +County "VA, Prince George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101490.epw site_zip_code=23875 site_time_zone_utc_offset=-5 +County "VA, Prince William County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101530.epw site_zip_code=22191 site_time_zone_utc_offset=-5 +County "VA, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101550.epw site_zip_code=24301 site_time_zone_utc_offset=-5 +County "VA, Radford city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107500.epw site_zip_code=24141 site_time_zone_utc_offset=-5 +County "VA, Rappahannock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101570.epw site_zip_code=20106 site_time_zone_utc_offset=-5 +County "VA, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101590.epw site_zip_code=22572 site_time_zone_utc_offset=-5 +County "VA, Richmond city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107600.epw site_zip_code=23220 site_time_zone_utc_offset=-5 +County "VA, Roanoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101610.epw site_zip_code=24018 site_time_zone_utc_offset=-5 +County "VA, Roanoke city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107700.epw site_zip_code=24017 site_time_zone_utc_offset=-5 +County "VA, Rockbridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101630.epw site_zip_code=24450 site_time_zone_utc_offset=-5 +County "VA, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101650.epw site_zip_code=22801 site_time_zone_utc_offset=-5 +County "VA, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101670.epw site_zip_code=24266 site_time_zone_utc_offset=-5 +County "VA, Salem city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107750.epw site_zip_code=24153 site_time_zone_utc_offset=-5 +County "VA, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101690.epw site_zip_code=24251 site_time_zone_utc_offset=-5 +County "VA, Shenandoah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101710.epw site_zip_code=22657 site_time_zone_utc_offset=-5 +County "VA, Smyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101730.epw site_zip_code=24354 site_time_zone_utc_offset=-5 +County "VA, Southampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101750.epw site_zip_code=23851 site_time_zone_utc_offset=-5 +County "VA, Spotsylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101770.epw site_zip_code=22407 site_time_zone_utc_offset=-5 +County "VA, Stafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101790.epw site_zip_code=22554 site_time_zone_utc_offset=-5 +County "VA, Staunton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107900.epw site_zip_code=24401 site_time_zone_utc_offset=-5 +County "VA, Suffolk city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108000.epw site_zip_code=23434 site_time_zone_utc_offset=-5 +County "VA, Surry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101810.epw site_zip_code=23883 site_time_zone_utc_offset=-5 +County "VA, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101830.epw site_zip_code=23890 site_time_zone_utc_offset=-5 +County "VA, Tazewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101850.epw site_zip_code=24605 site_time_zone_utc_offset=-5 +County "VA, Virginia Beach city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108100.epw site_zip_code=23462 site_time_zone_utc_offset=-5 +County "VA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101870.epw site_zip_code=22630 site_time_zone_utc_offset=-5 +County "VA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101910.epw site_zip_code=24210 site_time_zone_utc_offset=-5 +County "VA, Waynesboro city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108200.epw site_zip_code=22980 site_time_zone_utc_offset=-5 +County "VA, Westmoreland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101930.epw site_zip_code=22443 site_time_zone_utc_offset=-5 +County "VA, Williamsburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108300.epw site_zip_code=23185 site_time_zone_utc_offset=-5 +County "VA, Winchester city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108400.epw site_zip_code=22601 site_time_zone_utc_offset=-5 +County "VA, Wise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101950.epw site_zip_code=24219 site_time_zone_utc_offset=-5 +County "VA, Wythe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101970.epw site_zip_code=24382 site_time_zone_utc_offset=-5 +County "VA, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101990.epw site_zip_code=23692 site_time_zone_utc_offset=-5 +County "VT, Addison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000010.epw site_zip_code=05753 site_time_zone_utc_offset=-5 +County "VT, Bennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000030.epw site_zip_code=05201 site_time_zone_utc_offset=-5 +County "VT, Caledonia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000050.epw site_zip_code=05819 site_time_zone_utc_offset=-5 +County "VT, Chittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000070.epw site_zip_code=05401 site_time_zone_utc_offset=-5 +County "VT, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000090.epw site_zip_code=05906 site_time_zone_utc_offset=-5 +County "VT, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000110.epw site_zip_code=05478 site_time_zone_utc_offset=-5 +County "VT, Grand Isle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000130.epw site_zip_code=05440 site_time_zone_utc_offset=-5 +County "VT, Lamoille County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000150.epw site_zip_code=05672 site_time_zone_utc_offset=-5 +County "VT, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000170.epw site_zip_code=05060 site_time_zone_utc_offset=-5 +County "VT, Orleans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000190.epw site_zip_code=05855 site_time_zone_utc_offset=-5 +County "VT, Rutland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000210.epw site_zip_code=05701 site_time_zone_utc_offset=-5 +County "VT, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000230.epw site_zip_code=05641 site_time_zone_utc_offset=-5 +County "VT, Windham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000250.epw site_zip_code=05301 site_time_zone_utc_offset=-5 +County "VT, Windsor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000270.epw site_zip_code=05156 site_time_zone_utc_offset=-5 +County "WA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300010.epw site_zip_code=99344 site_time_zone_utc_offset=-8 +County "WA, Asotin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300030.epw site_zip_code=99403 site_time_zone_utc_offset=-8 +County "WA, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300050.epw site_zip_code=99336 site_time_zone_utc_offset=-8 +County "WA, Chelan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300070.epw site_zip_code=98801 site_time_zone_utc_offset=-8 +County "WA, Clallam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300090.epw site_zip_code=98382 site_time_zone_utc_offset=-8 +County "WA, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300110.epw site_zip_code=98682 site_time_zone_utc_offset=-8 +County "WA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300130.epw site_zip_code=99328 site_time_zone_utc_offset=-8 +County "WA, Cowlitz County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300150.epw site_zip_code=98632 site_time_zone_utc_offset=-8 +County "WA, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300170.epw site_zip_code=98802 site_time_zone_utc_offset=-8 +County "WA, Ferry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300190.epw site_zip_code=99166 site_time_zone_utc_offset=-8 +County "WA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300210.epw site_zip_code=99301 site_time_zone_utc_offset=-8 +County "WA, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300230.epw site_zip_code=99347 site_time_zone_utc_offset=-8 +County "WA, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300250.epw site_zip_code=98837 site_time_zone_utc_offset=-8 +County "WA, Grays Harbor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300270.epw site_zip_code=98520 site_time_zone_utc_offset=-8 +County "WA, Island County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300290.epw site_zip_code=98277 site_time_zone_utc_offset=-8 +County "WA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300310.epw site_zip_code=98368 site_time_zone_utc_offset=-8 +County "WA, King County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300330.epw site_zip_code=98052 site_time_zone_utc_offset=-8 +County "WA, Kitsap County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300350.epw site_zip_code=98312 site_time_zone_utc_offset=-8 +County "WA, Kittitas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300370.epw site_zip_code=98926 site_time_zone_utc_offset=-8 +County "WA, Klickitat County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300390.epw site_zip_code=98672 site_time_zone_utc_offset=-8 +County "WA, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300410.epw site_zip_code=98531 site_time_zone_utc_offset=-8 +County "WA, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300430.epw site_zip_code=99122 site_time_zone_utc_offset=-8 +County "WA, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300450.epw site_zip_code=98584 site_time_zone_utc_offset=-8 +County "WA, Okanogan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300470.epw site_zip_code=98841 site_time_zone_utc_offset=-8 +County "WA, Pacific County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300490.epw site_zip_code=98640 site_time_zone_utc_offset=-8 +County "WA, Pend Oreille County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300510.epw site_zip_code=99156 site_time_zone_utc_offset=-8 +County "WA, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300530.epw site_zip_code=98391 site_time_zone_utc_offset=-8 +County "WA, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300550.epw site_zip_code=98250 site_time_zone_utc_offset=-8 +County "WA, Skagit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300570.epw site_zip_code=98273 site_time_zone_utc_offset=-8 +County "WA, Skamania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300590.epw site_zip_code=98648 site_time_zone_utc_offset=-8 +County "WA, Snohomish County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300610.epw site_zip_code=98012 site_time_zone_utc_offset=-8 +County "WA, Spokane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300630.epw site_zip_code=99208 site_time_zone_utc_offset=-8 +County "WA, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300650.epw site_zip_code=99114 site_time_zone_utc_offset=-8 +County "WA, Thurston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300670.epw site_zip_code=98501 site_time_zone_utc_offset=-8 +County "WA, Wahkiakum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300690.epw site_zip_code=98612 site_time_zone_utc_offset=-8 +County "WA, Walla Walla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300710.epw site_zip_code=99362 site_time_zone_utc_offset=-8 +County "WA, Whatcom County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300730.epw site_zip_code=98225 site_time_zone_utc_offset=-8 +County "WA, Whitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300750.epw site_zip_code=99163 site_time_zone_utc_offset=-8 +County "WA, Yakima County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300770.epw site_zip_code=98902 site_time_zone_utc_offset=-8 +County "WI, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500010.epw site_zip_code=53934 site_time_zone_utc_offset=-6 +County "WI, Ashland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500030.epw site_zip_code=54806 site_time_zone_utc_offset=-6 +County "WI, Barron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500050.epw site_zip_code=54868 site_time_zone_utc_offset=-6 +County "WI, Bayfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500070.epw site_zip_code=54891 site_time_zone_utc_offset=-6 +County "WI, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500090.epw site_zip_code=54115 site_time_zone_utc_offset=-6 +County "WI, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500110.epw site_zip_code=54755 site_time_zone_utc_offset=-6 +County "WI, Burnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500130.epw site_zip_code=54830 site_time_zone_utc_offset=-6 +County "WI, Calumet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500150.epw site_zip_code=54915 site_time_zone_utc_offset=-6 +County "WI, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500170.epw site_zip_code=54729 site_time_zone_utc_offset=-6 +County "WI, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500190.epw site_zip_code=54456 site_time_zone_utc_offset=-6 +County "WI, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500210.epw site_zip_code=53901 site_time_zone_utc_offset=-6 +County "WI, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500230.epw site_zip_code=53821 site_time_zone_utc_offset=-6 +County "WI, Dane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500250.epw site_zip_code=53711 site_time_zone_utc_offset=-6 +County "WI, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500270.epw site_zip_code=53916 site_time_zone_utc_offset=-6 +County "WI, Door County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500290.epw site_zip_code=54235 site_time_zone_utc_offset=-6 +County "WI, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500310.epw site_zip_code=54880 site_time_zone_utc_offset=-6 +County "WI, Dunn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500330.epw site_zip_code=54751 site_time_zone_utc_offset=-6 +County "WI, Eau Claire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500350.epw site_zip_code=54703 site_time_zone_utc_offset=-6 +County "WI, Florence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500370.epw site_zip_code=54121 site_time_zone_utc_offset=-6 +County "WI, Fond du Lac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500390.epw site_zip_code=54935 site_time_zone_utc_offset=-6 +County "WI, Forest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500410.epw site_zip_code=54520 site_time_zone_utc_offset=-6 +County "WI, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500430.epw site_zip_code=53818 site_time_zone_utc_offset=-6 +County "WI, Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500450.epw site_zip_code=53566 site_time_zone_utc_offset=-6 +County "WI, Green Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500470.epw site_zip_code=54923 site_time_zone_utc_offset=-6 +County "WI, Iowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500490.epw site_zip_code=53533 site_time_zone_utc_offset=-6 +County "WI, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500510.epw site_zip_code=54547 site_time_zone_utc_offset=-6 +County "WI, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500530.epw site_zip_code=54615 site_time_zone_utc_offset=-6 +County "WI, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500550.epw site_zip_code=53538 site_time_zone_utc_offset=-6 +County "WI, Juneau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500570.epw site_zip_code=53948 site_time_zone_utc_offset=-6 +County "WI, Kenosha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500590.epw site_zip_code=53142 site_time_zone_utc_offset=-6 +County "WI, Kewaunee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500610.epw site_zip_code=54216 site_time_zone_utc_offset=-6 +County "WI, La Crosse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500630.epw site_zip_code=54601 site_time_zone_utc_offset=-6 +County "WI, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500650.epw site_zip_code=53530 site_time_zone_utc_offset=-6 +County "WI, Langlade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500670.epw site_zip_code=54409 site_time_zone_utc_offset=-6 +County "WI, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500690.epw site_zip_code=54452 site_time_zone_utc_offset=-6 +County "WI, Manitowoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500710.epw site_zip_code=54220 site_time_zone_utc_offset=-6 +County "WI, Marathon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500730.epw site_zip_code=54401 site_time_zone_utc_offset=-6 +County "WI, Marinette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500750.epw site_zip_code=54143 site_time_zone_utc_offset=-6 +County "WI, Marquette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500770.epw site_zip_code=53949 site_time_zone_utc_offset=-6 +County "WI, Menominee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500780.epw site_zip_code=54135 site_time_zone_utc_offset=-6 +County "WI, Milwaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500790.epw site_zip_code=53209 site_time_zone_utc_offset=-6 +County "WI, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500810.epw site_zip_code=54656 site_time_zone_utc_offset=-6 +County "WI, Oconto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500830.epw site_zip_code=54153 site_time_zone_utc_offset=-6 +County "WI, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500850.epw site_zip_code=54501 site_time_zone_utc_offset=-6 +County "WI, Outagamie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500870.epw site_zip_code=54911 site_time_zone_utc_offset=-6 +County "WI, Ozaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500890.epw site_zip_code=53092 site_time_zone_utc_offset=-6 +County "WI, Pepin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500910.epw site_zip_code=54736 site_time_zone_utc_offset=-6 +County "WI, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500930.epw site_zip_code=54022 site_time_zone_utc_offset=-6 +County "WI, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500950.epw site_zip_code=54001 site_time_zone_utc_offset=-6 +County "WI, Portage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500970.epw site_zip_code=54481 site_time_zone_utc_offset=-6 +County "WI, Price County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500990.epw site_zip_code=54555 site_time_zone_utc_offset=-6 +County "WI, Racine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501010.epw site_zip_code=53402 site_time_zone_utc_offset=-6 +County "WI, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501030.epw site_zip_code=53581 site_time_zone_utc_offset=-6 +County "WI, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501050.epw site_zip_code=53511 site_time_zone_utc_offset=-6 +County "WI, Rusk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501070.epw site_zip_code=54848 site_time_zone_utc_offset=-6 +County "WI, Sauk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501110.epw site_zip_code=53913 site_time_zone_utc_offset=-6 +County "WI, Sawyer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501130.epw site_zip_code=54843 site_time_zone_utc_offset=-6 +County "WI, Shawano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501150.epw site_zip_code=54166 site_time_zone_utc_offset=-6 +County "WI, Sheboygan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501170.epw site_zip_code=53081 site_time_zone_utc_offset=-6 +County "WI, St. Croix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501090.epw site_zip_code=54016 site_time_zone_utc_offset=-6 +County "WI, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501190.epw site_zip_code=54451 site_time_zone_utc_offset=-6 +County "WI, Trempealeau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501210.epw site_zip_code=54612 site_time_zone_utc_offset=-6 +County "WI, Vernon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501230.epw site_zip_code=54665 site_time_zone_utc_offset=-6 +County "WI, Vilas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501250.epw site_zip_code=54521 site_time_zone_utc_offset=-6 +County "WI, Walworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501270.epw site_zip_code=53147 site_time_zone_utc_offset=-6 +County "WI, Washburn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501290.epw site_zip_code=54801 site_time_zone_utc_offset=-6 +County "WI, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501310.epw site_zip_code=53022 site_time_zone_utc_offset=-6 +County "WI, Waukesha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501330.epw site_zip_code=53051 site_time_zone_utc_offset=-6 +County "WI, Waupaca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501350.epw site_zip_code=54981 site_time_zone_utc_offset=-6 +County "WI, Waushara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501370.epw site_zip_code=54982 site_time_zone_utc_offset=-6 +County "WI, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501390.epw site_zip_code=54956 site_time_zone_utc_offset=-6 +County "WI, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501410.epw site_zip_code=54449 site_time_zone_utc_offset=-6 +County "WV, Barbour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400010.epw site_zip_code=26416 site_time_zone_utc_offset=-5 +County "WV, Berkeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400030.epw site_zip_code=25404 site_time_zone_utc_offset=-5 +County "WV, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400050.epw site_zip_code=25130 site_time_zone_utc_offset=-5 +County "WV, Braxton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400070.epw site_zip_code=26601 site_time_zone_utc_offset=-5 +County "WV, Brooke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400090.epw site_zip_code=26070 site_time_zone_utc_offset=-5 +County "WV, Cabell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400110.epw site_zip_code=25701 site_time_zone_utc_offset=-5 +County "WV, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400130.epw site_zip_code=26147 site_time_zone_utc_offset=-5 +County "WV, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400150.epw site_zip_code=25043 site_time_zone_utc_offset=-5 +County "WV, Doddridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400170.epw site_zip_code=26456 site_time_zone_utc_offset=-5 +County "WV, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400190.epw site_zip_code=25901 site_time_zone_utc_offset=-5 +County "WV, Gilmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400210.epw site_zip_code=26351 site_time_zone_utc_offset=-5 +County "WV, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400230.epw site_zip_code=26847 site_time_zone_utc_offset=-5 +County "WV, Greenbrier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400250.epw site_zip_code=24901 site_time_zone_utc_offset=-5 +County "WV, Hampshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400270.epw site_zip_code=26757 site_time_zone_utc_offset=-5 +County "WV, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400290.epw site_zip_code=26062 site_time_zone_utc_offset=-5 +County "WV, Hardy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400310.epw site_zip_code=26836 site_time_zone_utc_offset=-5 +County "WV, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400330.epw site_zip_code=26301 site_time_zone_utc_offset=-5 +County "WV, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400350.epw site_zip_code=25271 site_time_zone_utc_offset=-5 +County "WV, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400370.epw site_zip_code=25414 site_time_zone_utc_offset=-5 +County "WV, Kanawha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400390.epw site_zip_code=25177 site_time_zone_utc_offset=-5 +County "WV, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400410.epw site_zip_code=26452 site_time_zone_utc_offset=-5 +County "WV, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400430.epw site_zip_code=25506 site_time_zone_utc_offset=-5 +County "WV, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400450.epw site_zip_code=25601 site_time_zone_utc_offset=-5 +County "WV, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400490.epw site_zip_code=26554 site_time_zone_utc_offset=-5 +County "WV, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400510.epw site_zip_code=26041 site_time_zone_utc_offset=-5 +County "WV, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400530.epw site_zip_code=25550 site_time_zone_utc_offset=-5 +County "WV, McDowell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400470.epw site_zip_code=24801 site_time_zone_utc_offset=-5 +County "WV, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400550.epw site_zip_code=24701 site_time_zone_utc_offset=-5 +County "WV, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400570.epw site_zip_code=26726 site_time_zone_utc_offset=-5 +County "WV, Mingo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400590.epw site_zip_code=25661 site_time_zone_utc_offset=-5 +County "WV, Monongalia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400610.epw site_zip_code=26505 site_time_zone_utc_offset=-5 +County "WV, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400630.epw site_zip_code=24963 site_time_zone_utc_offset=-5 +County "WV, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400650.epw site_zip_code=25411 site_time_zone_utc_offset=-5 +County "WV, Nicholas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400670.epw site_zip_code=26651 site_time_zone_utc_offset=-5 +County "WV, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400690.epw site_zip_code=26003 site_time_zone_utc_offset=-5 +County "WV, Pendleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400710.epw site_zip_code=26807 site_time_zone_utc_offset=-5 +County "WV, Pleasants County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400730.epw site_zip_code=26170 site_time_zone_utc_offset=-5 +County "WV, Pocahontas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400750.epw site_zip_code=24954 site_time_zone_utc_offset=-5 +County "WV, Preston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400770.epw site_zip_code=26537 site_time_zone_utc_offset=-5 +County "WV, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400790.epw site_zip_code=25526 site_time_zone_utc_offset=-5 +County "WV, Raleigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400810.epw site_zip_code=25801 site_time_zone_utc_offset=-5 +County "WV, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400830.epw site_zip_code=26241 site_time_zone_utc_offset=-5 +County "WV, Ritchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400850.epw site_zip_code=26362 site_time_zone_utc_offset=-5 +County "WV, Roane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400870.epw site_zip_code=25276 site_time_zone_utc_offset=-5 +County "WV, Summers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400890.epw site_zip_code=25951 site_time_zone_utc_offset=-5 +County "WV, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400910.epw site_zip_code=26354 site_time_zone_utc_offset=-5 +County "WV, Tucker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400930.epw site_zip_code=26287 site_time_zone_utc_offset=-5 +County "WV, Tyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400950.epw site_zip_code=26175 site_time_zone_utc_offset=-5 +County "WV, Upshur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400970.epw site_zip_code=26201 site_time_zone_utc_offset=-5 +County "WV, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400990.epw site_zip_code=25704 site_time_zone_utc_offset=-5 +County "WV, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401010.epw site_zip_code=26288 site_time_zone_utc_offset=-5 +County "WV, Wetzel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401030.epw site_zip_code=26155 site_time_zone_utc_offset=-5 +County "WV, Wirt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401050.epw site_zip_code=26143 site_time_zone_utc_offset=-5 +County "WV, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401070.epw site_zip_code=26101 site_time_zone_utc_offset=-5 +County "WV, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401090.epw site_zip_code=25882 site_time_zone_utc_offset=-5 +County "WY, Albany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600010.epw site_zip_code=82070 site_time_zone_utc_offset=-7 +County "WY, Big Horn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600030.epw site_zip_code=82431 site_time_zone_utc_offset=-7 +County "WY, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600050.epw site_zip_code=82718 site_time_zone_utc_offset=-7 +County "WY, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600070.epw site_zip_code=82301 site_time_zone_utc_offset=-7 +County "WY, Converse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600090.epw site_zip_code=82633 site_time_zone_utc_offset=-7 +County "WY, Crook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600110.epw site_zip_code=82729 site_time_zone_utc_offset=-7 +County "WY, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600130.epw site_zip_code=82501 site_time_zone_utc_offset=-7 +County "WY, Goshen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600150.epw site_zip_code=82240 site_time_zone_utc_offset=-7 +County "WY, Hot Springs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600170.epw site_zip_code=82443 site_time_zone_utc_offset=-7 +County "WY, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600190.epw site_zip_code=82834 site_time_zone_utc_offset=-7 +County "WY, Laramie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600210.epw site_zip_code=82001 site_time_zone_utc_offset=-7 +County "WY, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600230.epw site_zip_code=83127 site_time_zone_utc_offset=-7 +County "WY, Natrona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600250.epw site_zip_code=82601 site_time_zone_utc_offset=-7 +County "WY, Niobrara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600270.epw site_zip_code=82225 site_time_zone_utc_offset=-7 +County "WY, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600290.epw site_zip_code=82414 site_time_zone_utc_offset=-7 +County "WY, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600310.epw site_zip_code=82201 site_time_zone_utc_offset=-7 +County "WY, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600330.epw site_zip_code=82801 site_time_zone_utc_offset=-7 +County "WY, Sublette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600350.epw site_zip_code=82941 site_time_zone_utc_offset=-7 +County "WY, Sweetwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600370.epw site_zip_code=82901 site_time_zone_utc_offset=-7 +County "WY, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600390.epw site_zip_code=83001 site_time_zone_utc_offset=-7 +County "WY, Uinta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600410.epw site_zip_code=82930 site_time_zone_utc_offset=-7 +County "WY, Washakie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600430.epw site_zip_code=82401 site_time_zone_utc_offset=-7 +County "WY, Weston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600450.epw site_zip_code=82701 site_time_zone_utc_offset=-7 +County Metro Status Metropolitan +County Metro Status Non-Metropolitan +County and PUMA "G0100010, G01002100" +County and PUMA "G0100030, G01002600" +County and PUMA "G0100050, G01002400" +County and PUMA "G0100070, G01001700" +County and PUMA "G0100090, G01000800" +County and PUMA "G0100110, G01002400" +County and PUMA "G0100130, G01002300" +County and PUMA "G0100150, G01001100" +County and PUMA "G0100170, G01001800" +County and PUMA "G0100190, G01001000" +County and PUMA "G0100210, G01001800" +County and PUMA "G0100230, G01002200" +County and PUMA "G0100250, G01002200" +County and PUMA "G0100270, G01001000" +County and PUMA "G0100290, G01001000" +County and PUMA "G0100310, G01002300" +County and PUMA "G0100330, G01000100" +County and PUMA "G0100350, G01002200" +County and PUMA "G0100370, G01001800" +County and PUMA "G0100390, G01002300" +County and PUMA "G0100410, G01002300" +County and PUMA "G0100430, G01000700" +County and PUMA "G0100450, G01002500" +County and PUMA "G0100470, G01001700" +County and PUMA "G0100490, G01000400" +County and PUMA "G0100510, G01002100" +County and PUMA "G0100530, G01002200" +County and PUMA "G0100550, G01000900" +County and PUMA "G0100570, G01001400" +County and PUMA "G0100590, G01000100" +County and PUMA "G0100610, G01002500" +County and PUMA "G0100630, G01001700" +County and PUMA "G0100650, G01001700" +County and PUMA "G0100670, G01002500" +County and PUMA "G0100690, G01002500" +County and PUMA "G0100710, G01000400" +County and PUMA "G0100730, G01001301" +County and PUMA "G0100730, G01001302" +County and PUMA "G0100730, G01001303" +County and PUMA "G0100730, G01001304" +County and PUMA "G0100730, G01001305" +County and PUMA "G0100750, G01001400" +County and PUMA "G0100770, G01000100" +County and PUMA "G0100790, G01000600" +County and PUMA "G0100810, G01001900" +County and PUMA "G0100830, G01000200" +County and PUMA "G0100850, G01002100" +County and PUMA "G0100870, G01002400" +County and PUMA "G0100890, G01000200" +County and PUMA "G0100890, G01000301" +County and PUMA "G0100890, G01000302" +County and PUMA "G0100890, G01000500" +County and PUMA "G0100910, G01001700" +County and PUMA "G0100930, G01000100" +County and PUMA "G0100930, G01001400" +County and PUMA "G0100950, G01000500" +County and PUMA "G0100970, G01002701" +County and PUMA "G0100970, G01002702" +County and PUMA "G0100970, G01002703" +County and PUMA "G0100990, G01002200" +County and PUMA "G0101010, G01002000" +County and PUMA "G0101010, G01002100" +County and PUMA "G0101030, G01000600" +County and PUMA "G0101050, G01001700" +County and PUMA "G0101070, G01001500" +County and PUMA "G0101090, G01002400" +County and PUMA "G0101110, G01001000" +County and PUMA "G0101130, G01002400" +County and PUMA "G0101150, G01000800" +County and PUMA "G0101170, G01001200" +County and PUMA "G0101190, G01001700" +County and PUMA "G0101210, G01001000" +County and PUMA "G0101230, G01001800" +County and PUMA "G0101250, G01001500" +County and PUMA "G0101250, G01001600" +County and PUMA "G0101270, G01001400" +County and PUMA "G0101290, G01002200" +County and PUMA "G0101310, G01002200" +County and PUMA "G0101330, G01000700" +County and PUMA "G0200130, G02000400" +County and PUMA "G0200160, G02000400" +County and PUMA "G0200200, G02000101" +County and PUMA "G0200200, G02000102" +County and PUMA "G0200500, G02000400" +County and PUMA "G0200600, G02000400" +County and PUMA "G0200680, G02000300" +County and PUMA "G0200700, G02000400" +County and PUMA "G0200900, G02000300" +County and PUMA "G0201000, G02000300" +County and PUMA "G0201050, G02000400" +County and PUMA "G0201100, G02000300" +County and PUMA "G0201220, G02000200" +County and PUMA "G0201300, G02000300" +County and PUMA "G0201500, G02000400" +County and PUMA "G0201580, G02000400" +County and PUMA "G0201640, G02000400" +County and PUMA "G0201700, G02000200" +County and PUMA "G0201800, G02000400" +County and PUMA "G0201850, G02000400" +County and PUMA "G0201880, G02000400" +County and PUMA "G0201950, G02000400" +County and PUMA "G0201980, G02000400" +County and PUMA "G0202200, G02000400" +County and PUMA "G0202300, G02000300" +County and PUMA "G0202400, G02000300" +County and PUMA "G0202610, G02000300" +County and PUMA "G0202750, G02000400" +County and PUMA "G0202820, G02000400" +County and PUMA "G0202900, G02000400" +County and PUMA "G0400010, G04000300" +County and PUMA "G0400030, G04000900" +County and PUMA "G0400050, G04000400" +County and PUMA "G0400070, G04000800" +County and PUMA "G0400090, G04000800" +County and PUMA "G0400110, G04000800" +County and PUMA "G0400120, G04000600" +County and PUMA "G0400130, G04000100" +County and PUMA "G0400130, G04000101" +County and PUMA "G0400130, G04000102" +County and PUMA "G0400130, G04000103" +County and PUMA "G0400130, G04000104" +County and PUMA "G0400130, G04000105" +County and PUMA "G0400130, G04000106" +County and PUMA "G0400130, G04000107" +County and PUMA "G0400130, G04000108" +County and PUMA "G0400130, G04000109" +County and PUMA "G0400130, G04000110" +County and PUMA "G0400130, G04000111" +County and PUMA "G0400130, G04000112" +County and PUMA "G0400130, G04000113" +County and PUMA "G0400130, G04000114" +County and PUMA "G0400130, G04000115" +County and PUMA "G0400130, G04000116" +County and PUMA "G0400130, G04000117" +County and PUMA "G0400130, G04000118" +County and PUMA "G0400130, G04000119" +County and PUMA "G0400130, G04000120" +County and PUMA "G0400130, G04000121" +County and PUMA "G0400130, G04000122" +County and PUMA "G0400130, G04000123" +County and PUMA "G0400130, G04000124" +County and PUMA "G0400130, G04000125" +County and PUMA "G0400130, G04000126" +County and PUMA "G0400130, G04000127" +County and PUMA "G0400130, G04000128" +County and PUMA "G0400130, G04000129" +County and PUMA "G0400130, G04000130" +County and PUMA "G0400130, G04000131" +County and PUMA "G0400130, G04000132" +County and PUMA "G0400130, G04000133" +County and PUMA "G0400130, G04000134" +County and PUMA "G0400150, G04000600" +County and PUMA "G0400170, G04000300" +County and PUMA "G0400190, G04000201" +County and PUMA "G0400190, G04000202" +County and PUMA "G0400190, G04000203" +County and PUMA "G0400190, G04000204" +County and PUMA "G0400190, G04000205" +County and PUMA "G0400190, G04000206" +County and PUMA "G0400190, G04000207" +County and PUMA "G0400190, G04000208" +County and PUMA "G0400190, G04000209" +County and PUMA "G0400210, G04000800" +County and PUMA "G0400210, G04000803" +County and PUMA "G0400210, G04000805" +County and PUMA "G0400210, G04000807" +County and PUMA "G0400230, G04000900" +County and PUMA "G0400250, G04000500" +County and PUMA "G0400270, G04000700" +County and PUMA "G0500010, G05001700" +County and PUMA "G0500010, G05001800" +County and PUMA "G0500030, G05001800" +County and PUMA "G0500050, G05000300" +County and PUMA "G0500070, G05000100" +County and PUMA "G0500090, G05000300" +County and PUMA "G0500110, G05001800" +County and PUMA "G0500130, G05001900" +County and PUMA "G0500150, G05000300" +County and PUMA "G0500170, G05001800" +County and PUMA "G0500190, G05001600" +County and PUMA "G0500210, G05000500" +County and PUMA "G0500230, G05000400" +County and PUMA "G0500250, G05001800" +County and PUMA "G0500270, G05001900" +County and PUMA "G0500290, G05001300" +County and PUMA "G0500310, G05000500" +County and PUMA "G0500310, G05000600" +County and PUMA "G0500330, G05001400" +County and PUMA "G0500350, G05000600" +County and PUMA "G0500370, G05000700" +County and PUMA "G0500390, G05001900" +County and PUMA "G0500410, G05001800" +County and PUMA "G0500430, G05001800" +County and PUMA "G0500450, G05001100" +County and PUMA "G0500470, G05001500" +County and PUMA "G0500490, G05000400" +County and PUMA "G0500510, G05001600" +County and PUMA "G0500530, G05001700" +County and PUMA "G0500550, G05000500" +County and PUMA "G0500570, G05002000" +County and PUMA "G0500590, G05001600" +County and PUMA "G0500610, G05001500" +County and PUMA "G0500630, G05000400" +County and PUMA "G0500650, G05000400" +County and PUMA "G0500670, G05000800" +County and PUMA "G0500690, G05001700" +County and PUMA "G0500710, G05001300" +County and PUMA "G0500730, G05002000" +County and PUMA "G0500750, G05000500" +County and PUMA "G0500770, G05000700" +County and PUMA "G0500790, G05001800" +County and PUMA "G0500810, G05002000" +County and PUMA "G0500830, G05001500" +County and PUMA "G0500850, G05001100" +County and PUMA "G0500870, G05000300" +County and PUMA "G0500890, G05000300" +County and PUMA "G0500910, G05002000" +County and PUMA "G0500930, G05000600" +County and PUMA "G0500950, G05000700" +County and PUMA "G0500970, G05001600" +County and PUMA "G0500990, G05002000" +County and PUMA "G0501010, G05000300" +County and PUMA "G0501030, G05001900" +County and PUMA "G0501050, G05001300" +County and PUMA "G0501070, G05000700" +County and PUMA "G0501090, G05002000" +County and PUMA "G0501110, G05000700" +County and PUMA "G0501130, G05001500" +County and PUMA "G0501150, G05001300" +County and PUMA "G0501170, G05000800" +County and PUMA "G0501190, G05000900" +County and PUMA "G0501190, G05001000" +County and PUMA "G0501210, G05000500" +County and PUMA "G0501230, G05000700" +County and PUMA "G0501250, G05001200" +County and PUMA "G0501270, G05001500" +County and PUMA "G0501290, G05000300" +County and PUMA "G0501310, G05001400" +County and PUMA "G0501330, G05001500" +County and PUMA "G0501350, G05000400" +County and PUMA "G0501370, G05000400" +County and PUMA "G0501390, G05001900" +County and PUMA "G0501410, G05000400" +County and PUMA "G0501430, G05000200" +County and PUMA "G0501450, G05000800" +County and PUMA "G0501470, G05000800" +County and PUMA "G0501490, G05001300" +County and PUMA "G0600010, G06000101" +County and PUMA "G0600010, G06000102" +County and PUMA "G0600010, G06000103" +County and PUMA "G0600010, G06000104" +County and PUMA "G0600010, G06000105" +County and PUMA "G0600010, G06000106" +County and PUMA "G0600010, G06000107" +County and PUMA "G0600010, G06000108" +County and PUMA "G0600010, G06000109" +County and PUMA "G0600010, G06000110" +County and PUMA "G0600030, G06000300" +County and PUMA "G0600050, G06000300" +County and PUMA "G0600070, G06000701" +County and PUMA "G0600070, G06000702" +County and PUMA "G0600090, G06000300" +County and PUMA "G0600110, G06001100" +County and PUMA "G0600130, G06001301" +County and PUMA "G0600130, G06001302" +County and PUMA "G0600130, G06001303" +County and PUMA "G0600130, G06001304" +County and PUMA "G0600130, G06001305" +County and PUMA "G0600130, G06001306" +County and PUMA "G0600130, G06001307" +County and PUMA "G0600130, G06001308" +County and PUMA "G0600130, G06001309" +County and PUMA "G0600150, G06001500" +County and PUMA "G0600170, G06001700" +County and PUMA "G0600190, G06001901" +County and PUMA "G0600190, G06001902" +County and PUMA "G0600190, G06001903" +County and PUMA "G0600190, G06001904" +County and PUMA "G0600190, G06001905" +County and PUMA "G0600190, G06001906" +County and PUMA "G0600190, G06001907" +County and PUMA "G0600210, G06001100" +County and PUMA "G0600230, G06002300" +County and PUMA "G0600250, G06002500" +County and PUMA "G0600270, G06000300" +County and PUMA "G0600290, G06002901" +County and PUMA "G0600290, G06002902" +County and PUMA "G0600290, G06002903" +County and PUMA "G0600290, G06002904" +County and PUMA "G0600290, G06002905" +County and PUMA "G0600310, G06003100" +County and PUMA "G0600330, G06003300" +County and PUMA "G0600350, G06001500" +County and PUMA "G0600370, G06003701" +County and PUMA "G0600370, G06003702" +County and PUMA "G0600370, G06003703" +County and PUMA "G0600370, G06003704" +County and PUMA "G0600370, G06003705" +County and PUMA "G0600370, G06003706" +County and PUMA "G0600370, G06003707" +County and PUMA "G0600370, G06003708" +County and PUMA "G0600370, G06003709" +County and PUMA "G0600370, G06003710" +County and PUMA "G0600370, G06003711" +County and PUMA "G0600370, G06003712" +County and PUMA "G0600370, G06003713" +County and PUMA "G0600370, G06003714" +County and PUMA "G0600370, G06003715" +County and PUMA "G0600370, G06003716" +County and PUMA "G0600370, G06003717" +County and PUMA "G0600370, G06003718" +County and PUMA "G0600370, G06003719" +County and PUMA "G0600370, G06003720" +County and PUMA "G0600370, G06003721" +County and PUMA "G0600370, G06003722" +County and PUMA "G0600370, G06003723" +County and PUMA "G0600370, G06003724" +County and PUMA "G0600370, G06003725" +County and PUMA "G0600370, G06003726" +County and PUMA "G0600370, G06003727" +County and PUMA "G0600370, G06003728" +County and PUMA "G0600370, G06003729" +County and PUMA "G0600370, G06003730" +County and PUMA "G0600370, G06003731" +County and PUMA "G0600370, G06003732" +County and PUMA "G0600370, G06003733" +County and PUMA "G0600370, G06003734" +County and PUMA "G0600370, G06003735" +County and PUMA "G0600370, G06003736" +County and PUMA "G0600370, G06003737" +County and PUMA "G0600370, G06003738" +County and PUMA "G0600370, G06003739" +County and PUMA "G0600370, G06003740" +County and PUMA "G0600370, G06003741" +County and PUMA "G0600370, G06003742" +County and PUMA "G0600370, G06003743" +County and PUMA "G0600370, G06003744" +County and PUMA "G0600370, G06003745" +County and PUMA "G0600370, G06003746" +County and PUMA "G0600370, G06003747" +County and PUMA "G0600370, G06003748" +County and PUMA "G0600370, G06003749" +County and PUMA "G0600370, G06003750" +County and PUMA "G0600370, G06003751" +County and PUMA "G0600370, G06003752" +County and PUMA "G0600370, G06003753" +County and PUMA "G0600370, G06003754" +County and PUMA "G0600370, G06003755" +County and PUMA "G0600370, G06003756" +County and PUMA "G0600370, G06003757" +County and PUMA "G0600370, G06003758" +County and PUMA "G0600370, G06003759" +County and PUMA "G0600370, G06003760" +County and PUMA "G0600370, G06003761" +County and PUMA "G0600370, G06003762" +County and PUMA "G0600370, G06003763" +County and PUMA "G0600370, G06003764" +County and PUMA "G0600370, G06003765" +County and PUMA "G0600370, G06003766" +County and PUMA "G0600370, G06003767" +County and PUMA "G0600370, G06003768" +County and PUMA "G0600370, G06003769" +County and PUMA "G0600390, G06003900" +County and PUMA "G0600410, G06004101" +County and PUMA "G0600410, G06004102" +County and PUMA "G0600430, G06000300" +County and PUMA "G0600450, G06003300" +County and PUMA "G0600470, G06004701" +County and PUMA "G0600470, G06004702" +County and PUMA "G0600490, G06001500" +County and PUMA "G0600510, G06000300" +County and PUMA "G0600530, G06005301" +County and PUMA "G0600530, G06005302" +County and PUMA "G0600530, G06005303" +County and PUMA "G0600550, G06005500" +County and PUMA "G0600570, G06005700" +County and PUMA "G0600590, G06005901" +County and PUMA "G0600590, G06005902" +County and PUMA "G0600590, G06005903" +County and PUMA "G0600590, G06005904" +County and PUMA "G0600590, G06005905" +County and PUMA "G0600590, G06005906" +County and PUMA "G0600590, G06005907" +County and PUMA "G0600590, G06005908" +County and PUMA "G0600590, G06005909" +County and PUMA "G0600590, G06005910" +County and PUMA "G0600590, G06005911" +County and PUMA "G0600590, G06005912" +County and PUMA "G0600590, G06005913" +County and PUMA "G0600590, G06005914" +County and PUMA "G0600590, G06005915" +County and PUMA "G0600590, G06005916" +County and PUMA "G0600590, G06005917" +County and PUMA "G0600590, G06005918" +County and PUMA "G0600610, G06006101" +County and PUMA "G0600610, G06006102" +County and PUMA "G0600610, G06006103" +County and PUMA "G0600630, G06001500" +County and PUMA "G0600650, G06006501" +County and PUMA "G0600650, G06006502" +County and PUMA "G0600650, G06006503" +County and PUMA "G0600650, G06006504" +County and PUMA "G0600650, G06006505" +County and PUMA "G0600650, G06006506" +County and PUMA "G0600650, G06006507" +County and PUMA "G0600650, G06006508" +County and PUMA "G0600650, G06006509" +County and PUMA "G0600650, G06006510" +County and PUMA "G0600650, G06006511" +County and PUMA "G0600650, G06006512" +County and PUMA "G0600650, G06006513" +County and PUMA "G0600650, G06006514" +County and PUMA "G0600650, G06006515" +County and PUMA "G0600670, G06006701" +County and PUMA "G0600670, G06006702" +County and PUMA "G0600670, G06006703" +County and PUMA "G0600670, G06006704" +County and PUMA "G0600670, G06006705" +County and PUMA "G0600670, G06006706" +County and PUMA "G0600670, G06006707" +County and PUMA "G0600670, G06006708" +County and PUMA "G0600670, G06006709" +County and PUMA "G0600670, G06006710" +County and PUMA "G0600670, G06006711" +County and PUMA "G0600670, G06006712" +County and PUMA "G0600690, G06005303" +County and PUMA "G0600710, G06007101" +County and PUMA "G0600710, G06007102" +County and PUMA "G0600710, G06007103" +County and PUMA "G0600710, G06007104" +County and PUMA "G0600710, G06007105" +County and PUMA "G0600710, G06007106" +County and PUMA "G0600710, G06007107" +County and PUMA "G0600710, G06007108" +County and PUMA "G0600710, G06007109" +County and PUMA "G0600710, G06007110" +County and PUMA "G0600710, G06007111" +County and PUMA "G0600710, G06007112" +County and PUMA "G0600710, G06007113" +County and PUMA "G0600710, G06007114" +County and PUMA "G0600710, G06007115" +County and PUMA "G0600730, G06007301" +County and PUMA "G0600730, G06007302" +County and PUMA "G0600730, G06007303" +County and PUMA "G0600730, G06007304" +County and PUMA "G0600730, G06007305" +County and PUMA "G0600730, G06007306" +County and PUMA "G0600730, G06007307" +County and PUMA "G0600730, G06007308" +County and PUMA "G0600730, G06007309" +County and PUMA "G0600730, G06007310" +County and PUMA "G0600730, G06007311" +County and PUMA "G0600730, G06007312" +County and PUMA "G0600730, G06007313" +County and PUMA "G0600730, G06007314" +County and PUMA "G0600730, G06007315" +County and PUMA "G0600730, G06007316" +County and PUMA "G0600730, G06007317" +County and PUMA "G0600730, G06007318" +County and PUMA "G0600730, G06007319" +County and PUMA "G0600730, G06007320" +County and PUMA "G0600730, G06007321" +County and PUMA "G0600730, G06007322" +County and PUMA "G0600750, G06007501" +County and PUMA "G0600750, G06007502" +County and PUMA "G0600750, G06007503" +County and PUMA "G0600750, G06007504" +County and PUMA "G0600750, G06007505" +County and PUMA "G0600750, G06007506" +County and PUMA "G0600750, G06007507" +County and PUMA "G0600770, G06007701" +County and PUMA "G0600770, G06007702" +County and PUMA "G0600770, G06007703" +County and PUMA "G0600770, G06007704" +County and PUMA "G0600790, G06007901" +County and PUMA "G0600790, G06007902" +County and PUMA "G0600810, G06008101" +County and PUMA "G0600810, G06008102" +County and PUMA "G0600810, G06008103" +County and PUMA "G0600810, G06008104" +County and PUMA "G0600810, G06008105" +County and PUMA "G0600810, G06008106" +County and PUMA "G0600830, G06008301" +County and PUMA "G0600830, G06008302" +County and PUMA "G0600830, G06008303" +County and PUMA "G0600850, G06008501" +County and PUMA "G0600850, G06008502" +County and PUMA "G0600850, G06008503" +County and PUMA "G0600850, G06008504" +County and PUMA "G0600850, G06008505" +County and PUMA "G0600850, G06008506" +County and PUMA "G0600850, G06008507" +County and PUMA "G0600850, G06008508" +County and PUMA "G0600850, G06008509" +County and PUMA "G0600850, G06008510" +County and PUMA "G0600850, G06008511" +County and PUMA "G0600850, G06008512" +County and PUMA "G0600850, G06008513" +County and PUMA "G0600850, G06008514" +County and PUMA "G0600870, G06008701" +County and PUMA "G0600870, G06008702" +County and PUMA "G0600890, G06008900" +County and PUMA "G0600910, G06005700" +County and PUMA "G0600930, G06001500" +County and PUMA "G0600950, G06009501" +County and PUMA "G0600950, G06009502" +County and PUMA "G0600950, G06009503" +County and PUMA "G0600970, G06009701" +County and PUMA "G0600970, G06009702" +County and PUMA "G0600970, G06009703" +County and PUMA "G0600990, G06009901" +County and PUMA "G0600990, G06009902" +County and PUMA "G0600990, G06009903" +County and PUMA "G0600990, G06009904" +County and PUMA "G0601010, G06010100" +County and PUMA "G0601030, G06001100" +County and PUMA "G0601050, G06001100" +County and PUMA "G0601070, G06010701" +County and PUMA "G0601070, G06010702" +County and PUMA "G0601070, G06010703" +County and PUMA "G0601090, G06000300" +County and PUMA "G0601110, G06011101" +County and PUMA "G0601110, G06011102" +County and PUMA "G0601110, G06011103" +County and PUMA "G0601110, G06011104" +County and PUMA "G0601110, G06011105" +County and PUMA "G0601110, G06011106" +County and PUMA "G0601130, G06011300" +County and PUMA "G0601150, G06010100" +County and PUMA "G0800010, G08000804" +County and PUMA "G0800010, G08000805" +County and PUMA "G0800010, G08000806" +County and PUMA "G0800010, G08000807" +County and PUMA "G0800010, G08000809" +County and PUMA "G0800010, G08000810" +County and PUMA "G0800010, G08000817" +County and PUMA "G0800010, G08000824" +County and PUMA "G0800030, G08000800" +County and PUMA "G0800050, G08000808" +County and PUMA "G0800050, G08000809" +County and PUMA "G0800050, G08000810" +County and PUMA "G0800050, G08000811" +County and PUMA "G0800050, G08000815" +County and PUMA "G0800050, G08000820" +County and PUMA "G0800050, G08000824" +County and PUMA "G0800070, G08000900" +County and PUMA "G0800090, G08000800" +County and PUMA "G0800110, G08000100" +County and PUMA "G0800130, G08000801" +County and PUMA "G0800130, G08000802" +County and PUMA "G0800130, G08000803" +County and PUMA "G0800130, G08000804" +County and PUMA "G0800140, G08000804" +County and PUMA "G0800140, G08000805" +County and PUMA "G0800150, G08000600" +County and PUMA "G0800170, G08000100" +County and PUMA "G0800190, G08000801" +County and PUMA "G0800210, G08000800" +County and PUMA "G0800230, G08000800" +County and PUMA "G0800250, G08000100" +County and PUMA "G0800270, G08000600" +County and PUMA "G0800290, G08001002" +County and PUMA "G0800310, G08000812" +County and PUMA "G0800310, G08000813" +County and PUMA "G0800310, G08000814" +County and PUMA "G0800310, G08000815" +County and PUMA "G0800310, G08000816" +County and PUMA "G0800330, G08000900" +County and PUMA "G0800350, G08000821" +County and PUMA "G0800350, G08000822" +County and PUMA "G0800350, G08000823" +County and PUMA "G0800370, G08000400" +County and PUMA "G0800390, G08000100" +County and PUMA "G0800390, G08000823" +County and PUMA "G0800410, G08004101" +County and PUMA "G0800410, G08004102" +County and PUMA "G0800410, G08004103" +County and PUMA "G0800410, G08004104" +County and PUMA "G0800410, G08004105" +County and PUMA "G0800410, G08004106" +County and PUMA "G0800430, G08000600" +County and PUMA "G0800450, G08000200" +County and PUMA "G0800470, G08000801" +County and PUMA "G0800490, G08000400" +County and PUMA "G0800510, G08000900" +County and PUMA "G0800530, G08000900" +County and PUMA "G0800550, G08000600" +County and PUMA "G0800570, G08000400" +County and PUMA "G0800590, G08000801" +County and PUMA "G0800590, G08000804" +County and PUMA "G0800590, G08000805" +County and PUMA "G0800590, G08000817" +County and PUMA "G0800590, G08000818" +County and PUMA "G0800590, G08000819" +County and PUMA "G0800590, G08000820" +County and PUMA "G0800590, G08000821" +County and PUMA "G0800610, G08000100" +County and PUMA "G0800630, G08000100" +County and PUMA "G0800650, G08000600" +County and PUMA "G0800670, G08000900" +County and PUMA "G0800690, G08000102" +County and PUMA "G0800690, G08000103" +County and PUMA "G0800710, G08000800" +County and PUMA "G0800730, G08000100" +County and PUMA "G0800750, G08000100" +County and PUMA "G0800770, G08001001" +County and PUMA "G0800770, G08001002" +County and PUMA "G0800790, G08000800" +County and PUMA "G0800810, G08000200" +County and PUMA "G0800830, G08000900" +County and PUMA "G0800850, G08001002" +County and PUMA "G0800870, G08000100" +County and PUMA "G0800890, G08000800" +County and PUMA "G0800910, G08001002" +County and PUMA "G0800930, G08000600" +County and PUMA "G0800950, G08000100" +County and PUMA "G0800970, G08000400" +County and PUMA "G0800990, G08000800" +County and PUMA "G0801010, G08000600" +County and PUMA "G0801010, G08000700" +County and PUMA "G0801010, G08000800" +County and PUMA "G0801030, G08000200" +County and PUMA "G0801050, G08000800" +County and PUMA "G0801070, G08000200" +County and PUMA "G0801090, G08000800" +County and PUMA "G0801110, G08000900" +County and PUMA "G0801130, G08001002" +County and PUMA "G0801150, G08000100" +County and PUMA "G0801170, G08000400" +County and PUMA "G0801190, G08004101" +County and PUMA "G0801210, G08000100" +County and PUMA "G0801230, G08000100" +County and PUMA "G0801230, G08000300" +County and PUMA "G0801230, G08000802" +County and PUMA "G0801230, G08000824" +County and PUMA "G0801250, G08000100" +County and PUMA "G0900010, G09000100" +County and PUMA "G0900010, G09000101" +County and PUMA "G0900010, G09000102" +County and PUMA "G0900010, G09000103" +County and PUMA "G0900010, G09000104" +County and PUMA "G0900010, G09000105" +County and PUMA "G0900030, G09000300" +County and PUMA "G0900030, G09000301" +County and PUMA "G0900030, G09000302" +County and PUMA "G0900030, G09000303" +County and PUMA "G0900030, G09000304" +County and PUMA "G0900030, G09000305" +County and PUMA "G0900030, G09000306" +County and PUMA "G0900050, G09000500" +County and PUMA "G0900070, G09000700" +County and PUMA "G0900090, G09000900" +County and PUMA "G0900090, G09000901" +County and PUMA "G0900090, G09000902" +County and PUMA "G0900090, G09000903" +County and PUMA "G0900090, G09000904" +County and PUMA "G0900090, G09000905" +County and PUMA "G0900090, G09000906" +County and PUMA "G0900110, G09001100" +County and PUMA "G0900110, G09001101" +County and PUMA "G0900130, G09001300" +County and PUMA "G0900150, G09001500" +County and PUMA "G1000010, G10000200" +County and PUMA "G1000030, G10000101" +County and PUMA "G1000030, G10000102" +County and PUMA "G1000030, G10000103" +County and PUMA "G1000030, G10000104" +County and PUMA "G1000050, G10000300" +County and PUMA "G1100010, G11000101" +County and PUMA "G1100010, G11000102" +County and PUMA "G1100010, G11000103" +County and PUMA "G1100010, G11000104" +County and PUMA "G1100010, G11000105" +County and PUMA "G1200010, G12000101" +County and PUMA "G1200010, G12000102" +County and PUMA "G1200030, G12008900" +County and PUMA "G1200050, G12000500" +County and PUMA "G1200070, G12002300" +County and PUMA "G1200090, G12000901" +County and PUMA "G1200090, G12000902" +County and PUMA "G1200090, G12000903" +County and PUMA "G1200090, G12000904" +County and PUMA "G1200110, G12001101" +County and PUMA "G1200110, G12001102" +County and PUMA "G1200110, G12001103" +County and PUMA "G1200110, G12001104" +County and PUMA "G1200110, G12001105" +County and PUMA "G1200110, G12001106" +County and PUMA "G1200110, G12001107" +County and PUMA "G1200110, G12001108" +County and PUMA "G1200110, G12001109" +County and PUMA "G1200110, G12001110" +County and PUMA "G1200110, G12001111" +County and PUMA "G1200110, G12001112" +County and PUMA "G1200110, G12001113" +County and PUMA "G1200110, G12001114" +County and PUMA "G1200130, G12006300" +County and PUMA "G1200150, G12001500" +County and PUMA "G1200170, G12001701" +County and PUMA "G1200190, G12001900" +County and PUMA "G1200210, G12002101" +County and PUMA "G1200210, G12002102" +County and PUMA "G1200210, G12002103" +County and PUMA "G1200230, G12002300" +County and PUMA "G1200270, G12002700" +County and PUMA "G1200290, G12002300" +County and PUMA "G1200310, G12003101" +County and PUMA "G1200310, G12003102" +County and PUMA "G1200310, G12003103" +County and PUMA "G1200310, G12003104" +County and PUMA "G1200310, G12003105" +County and PUMA "G1200310, G12003106" +County and PUMA "G1200310, G12003107" +County and PUMA "G1200330, G12003301" +County and PUMA "G1200330, G12003302" +County and PUMA "G1200350, G12003500" +County and PUMA "G1200370, G12006300" +County and PUMA "G1200390, G12006300" +County and PUMA "G1200410, G12002300" +County and PUMA "G1200430, G12009300" +County and PUMA "G1200450, G12006300" +County and PUMA "G1200470, G12012100" +County and PUMA "G1200490, G12002700" +County and PUMA "G1200510, G12009300" +County and PUMA "G1200530, G12005301" +County and PUMA "G1200550, G12002700" +County and PUMA "G1200550, G12009300" +County and PUMA "G1200570, G12005701" +County and PUMA "G1200570, G12005702" +County and PUMA "G1200570, G12005703" +County and PUMA "G1200570, G12005704" +County and PUMA "G1200570, G12005705" +County and PUMA "G1200570, G12005706" +County and PUMA "G1200570, G12005707" +County and PUMA "G1200570, G12005708" +County and PUMA "G1200590, G12000500" +County and PUMA "G1200610, G12006100" +County and PUMA "G1200630, G12006300" +County and PUMA "G1200650, G12006300" +County and PUMA "G1200670, G12012100" +County and PUMA "G1200690, G12006901" +County and PUMA "G1200690, G12006902" +County and PUMA "G1200690, G12006903" +County and PUMA "G1200710, G12007101" +County and PUMA "G1200710, G12007102" +County and PUMA "G1200710, G12007103" +County and PUMA "G1200710, G12007104" +County and PUMA "G1200710, G12007105" +County and PUMA "G1200730, G12007300" +County and PUMA "G1200730, G12007301" +County and PUMA "G1200750, G12002300" +County and PUMA "G1200770, G12006300" +County and PUMA "G1200790, G12012100" +County and PUMA "G1200810, G12008101" +County and PUMA "G1200810, G12008102" +County and PUMA "G1200810, G12008103" +County and PUMA "G1200830, G12008301" +County and PUMA "G1200830, G12008302" +County and PUMA "G1200830, G12008303" +County and PUMA "G1200850, G12008500" +County and PUMA "G1200860, G12008601" +County and PUMA "G1200860, G12008602" +County and PUMA "G1200860, G12008603" +County and PUMA "G1200860, G12008604" +County and PUMA "G1200860, G12008605" +County and PUMA "G1200860, G12008606" +County and PUMA "G1200860, G12008607" +County and PUMA "G1200860, G12008608" +County and PUMA "G1200860, G12008609" +County and PUMA "G1200860, G12008610" +County and PUMA "G1200860, G12008611" +County and PUMA "G1200860, G12008612" +County and PUMA "G1200860, G12008613" +County and PUMA "G1200860, G12008614" +County and PUMA "G1200860, G12008615" +County and PUMA "G1200860, G12008616" +County and PUMA "G1200860, G12008617" +County and PUMA "G1200860, G12008618" +County and PUMA "G1200860, G12008619" +County and PUMA "G1200860, G12008620" +County and PUMA "G1200860, G12008621" +County and PUMA "G1200860, G12008622" +County and PUMA "G1200860, G12008623" +County and PUMA "G1200860, G12008624" +County and PUMA "G1200860, G12008700" +County and PUMA "G1200870, G12008700" +County and PUMA "G1200890, G12008900" +County and PUMA "G1200910, G12009100" +County and PUMA "G1200930, G12009300" +County and PUMA "G1200950, G12009501" +County and PUMA "G1200950, G12009502" +County and PUMA "G1200950, G12009503" +County and PUMA "G1200950, G12009504" +County and PUMA "G1200950, G12009505" +County and PUMA "G1200950, G12009506" +County and PUMA "G1200950, G12009507" +County and PUMA "G1200950, G12009508" +County and PUMA "G1200950, G12009509" +County and PUMA "G1200950, G12009510" +County and PUMA "G1200970, G12009701" +County and PUMA "G1200970, G12009702" +County and PUMA "G1200990, G12009901" +County and PUMA "G1200990, G12009902" +County and PUMA "G1200990, G12009903" +County and PUMA "G1200990, G12009904" +County and PUMA "G1200990, G12009905" +County and PUMA "G1200990, G12009906" +County and PUMA "G1200990, G12009907" +County and PUMA "G1200990, G12009908" +County and PUMA "G1200990, G12009909" +County and PUMA "G1200990, G12009910" +County and PUMA "G1200990, G12009911" +County and PUMA "G1201010, G12010101" +County and PUMA "G1201010, G12010102" +County and PUMA "G1201010, G12010103" +County and PUMA "G1201010, G12010104" +County and PUMA "G1201030, G12010301" +County and PUMA "G1201030, G12010302" +County and PUMA "G1201030, G12010303" +County and PUMA "G1201030, G12010304" +County and PUMA "G1201030, G12010305" +County and PUMA "G1201030, G12010306" +County and PUMA "G1201030, G12010307" +County and PUMA "G1201030, G12010308" +County and PUMA "G1201050, G12010501" +County and PUMA "G1201050, G12010502" +County and PUMA "G1201050, G12010503" +County and PUMA "G1201050, G12010504" +County and PUMA "G1201070, G12010700" +County and PUMA "G1201090, G12010700" +County and PUMA "G1201090, G12010900" +County and PUMA "G1201110, G12011101" +County and PUMA "G1201110, G12011102" +County and PUMA "G1201130, G12011300" +County and PUMA "G1201150, G12011501" +County and PUMA "G1201150, G12011502" +County and PUMA "G1201150, G12011503" +County and PUMA "G1201170, G12011701" +County and PUMA "G1201170, G12011702" +County and PUMA "G1201170, G12011703" +County and PUMA "G1201170, G12011704" +County and PUMA "G1201190, G12006902" +County and PUMA "G1201190, G12006903" +County and PUMA "G1201210, G12012100" +County and PUMA "G1201230, G12012100" +County and PUMA "G1201250, G12002300" +County and PUMA "G1201270, G12003500" +County and PUMA "G1201270, G12012701" +County and PUMA "G1201270, G12012702" +County and PUMA "G1201270, G12012703" +County and PUMA "G1201270, G12012704" +County and PUMA "G1201290, G12006300" +County and PUMA "G1201310, G12000500" +County and PUMA "G1201330, G12000500" +County and PUMA "G1300010, G13001200" +County and PUMA "G1300030, G13000500" +County and PUMA "G1300050, G13000500" +County and PUMA "G1300070, G13001100" +County and PUMA "G1300090, G13001600" +County and PUMA "G1300110, G13003500" +County and PUMA "G1300130, G13003800" +County and PUMA "G1300150, G13002900" +County and PUMA "G1300170, G13000700" +County and PUMA "G1300190, G13000700" +County and PUMA "G1300210, G13001400" +County and PUMA "G1300230, G13001300" +County and PUMA "G1300250, G13000500" +County and PUMA "G1300270, G13000700" +County and PUMA "G1300290, G13000200" +County and PUMA "G1300310, G13000300" +County and PUMA "G1300330, G13004200" +County and PUMA "G1300350, G13001900" +County and PUMA "G1300370, G13001100" +County and PUMA "G1300390, G13000100" +County and PUMA "G1300430, G13001300" +County and PUMA "G1300450, G13002300" +County and PUMA "G1300470, G13002600" +County and PUMA "G1300490, G13000500" +County and PUMA "G1300510, G13000401" +County and PUMA "G1300510, G13000402" +County and PUMA "G1300530, G13001700" +County and PUMA "G1300550, G13002600" +County and PUMA "G1300570, G13003101" +County and PUMA "G1300570, G13003102" +County and PUMA "G1300590, G13003600" +County and PUMA "G1300610, G13001800" +County and PUMA "G1300630, G13005001" +County and PUMA "G1300630, G13005002" +County and PUMA "G1300650, G13000500" +County and PUMA "G1300670, G13003001" +County and PUMA "G1300670, G13003002" +County and PUMA "G1300670, G13003003" +County and PUMA "G1300670, G13003004" +County and PUMA "G1300670, G13003005" +County and PUMA "G1300690, G13000500" +County and PUMA "G1300710, G13000800" +County and PUMA "G1300730, G13004100" +County and PUMA "G1300750, G13000700" +County and PUMA "G1300770, G13002100" +County and PUMA "G1300790, G13001600" +County and PUMA "G1300810, G13001800" +County and PUMA "G1300830, G13002600" +County and PUMA "G1300850, G13003200" +County and PUMA "G1300870, G13001100" +County and PUMA "G1300890, G13001007" +County and PUMA "G1300890, G13001008" +County and PUMA "G1300890, G13002001" +County and PUMA "G1300890, G13002002" +County and PUMA "G1300890, G13002003" +County and PUMA "G1300890, G13002004" +County and PUMA "G1300910, G13001300" +County and PUMA "G1300930, G13001800" +County and PUMA "G1300950, G13000900" +County and PUMA "G1300970, G13004400" +County and PUMA "G1300990, G13001100" +County and PUMA "G1301010, G13000500" +County and PUMA "G1301030, G13000300" +County and PUMA "G1301050, G13003700" +County and PUMA "G1301070, G13001300" +County and PUMA "G1301090, G13001200" +County and PUMA "G1301110, G13002800" +County and PUMA "G1301130, G13002400" +County and PUMA "G1301150, G13002500" +County and PUMA "G1301170, G13003300" +County and PUMA "G1301190, G13003500" +County and PUMA "G1301210, G13001001" +County and PUMA "G1301210, G13001002" +County and PUMA "G1301210, G13001003" +County and PUMA "G1301210, G13001004" +County and PUMA "G1301210, G13001005" +County and PUMA "G1301210, G13001006" +County and PUMA "G1301210, G13001007" +County and PUMA "G1301210, G13004600" +County and PUMA "G1301230, G13002800" +County and PUMA "G1301250, G13004200" +County and PUMA "G1301270, G13000100" +County and PUMA "G1301290, G13002800" +County and PUMA "G1301310, G13001100" +County and PUMA "G1301330, G13003700" +County and PUMA "G1301350, G13004001" +County and PUMA "G1301350, G13004002" +County and PUMA "G1301350, G13004003" +County and PUMA "G1301350, G13004004" +County and PUMA "G1301350, G13004005" +County and PUMA "G1301350, G13004006" +County and PUMA "G1301370, G13003500" +County and PUMA "G1301390, G13003400" +County and PUMA "G1301410, G13004200" +County and PUMA "G1301430, G13002500" +County and PUMA "G1301450, G13001800" +County and PUMA "G1301470, G13003500" +County and PUMA "G1301490, G13002200" +County and PUMA "G1301510, G13006001" +County and PUMA "G1301510, G13006002" +County and PUMA "G1301530, G13001500" +County and PUMA "G1301550, G13000700" +County and PUMA "G1301570, G13003800" +County and PUMA "G1301590, G13003900" +County and PUMA "G1301610, G13001200" +County and PUMA "G1301630, G13004200" +County and PUMA "G1301650, G13004200" +County and PUMA "G1301670, G13001300" +County and PUMA "G1301690, G13001600" +County and PUMA "G1301710, G13001900" +County and PUMA "G1301730, G13000500" +County and PUMA "G1301750, G13001300" +County and PUMA "G1301770, G13000900" +County and PUMA "G1301790, G13000200" +County and PUMA "G1301810, G13004200" +County and PUMA "G1301830, G13000200" +County and PUMA "G1301850, G13000600" +County and PUMA "G1301870, G13003200" +County and PUMA "G1301890, G13004200" +County and PUMA "G1301910, G13000100" +County and PUMA "G1301930, G13001800" +County and PUMA "G1301950, G13003700" +County and PUMA "G1301970, G13001800" +County and PUMA "G1301990, G13002200" +County and PUMA "G1302010, G13001100" +County and PUMA "G1302050, G13001100" +County and PUMA "G1302070, G13001600" +County and PUMA "G1302090, G13001200" +County and PUMA "G1302110, G13003900" +County and PUMA "G1302130, G13002800" +County and PUMA "G1302150, G13001700" +County and PUMA "G1302170, G13004300" +County and PUMA "G1302190, G13003700" +County and PUMA "G1302210, G13003700" +County and PUMA "G1302230, G13004500" +County and PUMA "G1302250, G13001600" +County and PUMA "G1302270, G13002800" +County and PUMA "G1302290, G13000500" +County and PUMA "G1302310, G13001900" +County and PUMA "G1302330, G13002500" +County and PUMA "G1302350, G13001500" +County and PUMA "G1302370, G13001600" +County and PUMA "G1302390, G13001800" +County and PUMA "G1302410, G13003200" +County and PUMA "G1302430, G13001800" +County and PUMA "G1302450, G13004000" +County and PUMA "G1302470, G13004300" +County and PUMA "G1302490, G13001800" +County and PUMA "G1302510, G13000300" +County and PUMA "G1302530, G13001100" +County and PUMA "G1302550, G13001900" +County and PUMA "G1302570, G13003500" +County and PUMA "G1302590, G13001800" +County and PUMA "G1302610, G13001800" +County and PUMA "G1302630, G13001800" +County and PUMA "G1302650, G13004200" +County and PUMA "G1302670, G13001200" +County and PUMA "G1302690, G13001800" +County and PUMA "G1302710, G13001200" +County and PUMA "G1302730, G13001100" +County and PUMA "G1302750, G13000800" +County and PUMA "G1302770, G13000700" +County and PUMA "G1302790, G13001200" +County and PUMA "G1302810, G13003200" +County and PUMA "G1302830, G13001300" +County and PUMA "G1302850, G13002200" +County and PUMA "G1302870, G13000700" +County and PUMA "G1302890, G13001600" +County and PUMA "G1302910, G13003200" +County and PUMA "G1302930, G13001900" +County and PUMA "G1302950, G13002600" +County and PUMA "G1302970, G13003900" +County and PUMA "G1302990, G13000500" +County and PUMA "G1303010, G13004200" +County and PUMA "G1303030, G13004200" +County and PUMA "G1303050, G13001200" +County and PUMA "G1303070, G13001800" +County and PUMA "G1303090, G13001200" +County and PUMA "G1303110, G13003200" +County and PUMA "G1303130, G13002700" +County and PUMA "G1303150, G13001300" +County and PUMA "G1303170, G13004200" +County and PUMA "G1303190, G13001600" +County and PUMA "G1303210, G13000800" +County and PUMA "G1500010, G15000200" +County and PUMA "G1500030, G15000301" +County and PUMA "G1500030, G15000302" +County and PUMA "G1500030, G15000303" +County and PUMA "G1500030, G15000304" +County and PUMA "G1500030, G15000305" +County and PUMA "G1500030, G15000306" +County and PUMA "G1500030, G15000307" +County and PUMA "G1500030, G15000308" +County and PUMA "G1500050, G15000100" +County and PUMA "G1500070, G15000100" +County and PUMA "G1500090, G15000100" +County and PUMA "G1600010, G16000400" +County and PUMA "G1600010, G16000600" +County and PUMA "G1600010, G16000701" +County and PUMA "G1600010, G16000702" +County and PUMA "G1600010, G16000800" +County and PUMA "G1600030, G16000300" +County and PUMA "G1600050, G16001300" +County and PUMA "G1600070, G16001300" +County and PUMA "G1600090, G16000100" +County and PUMA "G1600110, G16001100" +County and PUMA "G1600110, G16001300" +County and PUMA "G1600130, G16001000" +County and PUMA "G1600150, G16000300" +County and PUMA "G1600170, G16000100" +County and PUMA "G1600190, G16001200" +County and PUMA "G1600210, G16000100" +County and PUMA "G1600230, G16000300" +County and PUMA "G1600250, G16001000" +County and PUMA "G1600270, G16000400" +County and PUMA "G1600270, G16000500" +County and PUMA "G1600270, G16000600" +County and PUMA "G1600290, G16001300" +County and PUMA "G1600310, G16000900" +County and PUMA "G1600330, G16000300" +County and PUMA "G1600350, G16000300" +County and PUMA "G1600370, G16000300" +County and PUMA "G1600390, G16001000" +County and PUMA "G1600410, G16001300" +County and PUMA "G1600430, G16001100" +County and PUMA "G1600450, G16000400" +County and PUMA "G1600470, G16001000" +County and PUMA "G1600490, G16000300" +County and PUMA "G1600510, G16001100" +County and PUMA "G1600530, G16001000" +County and PUMA "G1600550, G16000100" +County and PUMA "G1600550, G16000200" +County and PUMA "G1600570, G16000100" +County and PUMA "G1600590, G16000300" +County and PUMA "G1600610, G16000300" +County and PUMA "G1600630, G16001000" +County and PUMA "G1600650, G16001100" +County and PUMA "G1600670, G16001000" +County and PUMA "G1600690, G16000300" +County and PUMA "G1600710, G16001300" +County and PUMA "G1600730, G16000500" +County and PUMA "G1600750, G16000400" +County and PUMA "G1600770, G16001300" +County and PUMA "G1600790, G16000100" +County and PUMA "G1600810, G16001100" +County and PUMA "G1600830, G16000900" +County and PUMA "G1600850, G16000300" +County and PUMA "G1600870, G16000400" +County and PUMA "G1700010, G17000300" +County and PUMA "G1700030, G17000800" +County and PUMA "G1700050, G17000501" +County and PUMA "G1700070, G17002901" +County and PUMA "G1700090, G17000300" +County and PUMA "G1700110, G17002501" +County and PUMA "G1700130, G17000401" +County and PUMA "G1700150, G17000104" +County and PUMA "G1700170, G17000401" +County and PUMA "G1700190, G17002100" +County and PUMA "G1700210, G17001602" +County and PUMA "G1700230, G17000700" +County and PUMA "G1700250, G17000700" +County and PUMA "G1700270, G17000501" +County and PUMA "G1700290, G17000600" +County and PUMA "G1700310, G17003401" +County and PUMA "G1700310, G17003407" +County and PUMA "G1700310, G17003408" +County and PUMA "G1700310, G17003409" +County and PUMA "G1700310, G17003410" +County and PUMA "G1700310, G17003411" +County and PUMA "G1700310, G17003412" +County and PUMA "G1700310, G17003413" +County and PUMA "G1700310, G17003414" +County and PUMA "G1700310, G17003415" +County and PUMA "G1700310, G17003416" +County and PUMA "G1700310, G17003417" +County and PUMA "G1700310, G17003418" +County and PUMA "G1700310, G17003419" +County and PUMA "G1700310, G17003420" +County and PUMA "G1700310, G17003421" +County and PUMA "G1700310, G17003422" +County and PUMA "G1700310, G17003501" +County and PUMA "G1700310, G17003502" +County and PUMA "G1700310, G17003503" +County and PUMA "G1700310, G17003504" +County and PUMA "G1700310, G17003520" +County and PUMA "G1700310, G17003521" +County and PUMA "G1700310, G17003522" +County and PUMA "G1700310, G17003523" +County and PUMA "G1700310, G17003524" +County and PUMA "G1700310, G17003525" +County and PUMA "G1700310, G17003526" +County and PUMA "G1700310, G17003527" +County and PUMA "G1700310, G17003528" +County and PUMA "G1700310, G17003529" +County and PUMA "G1700310, G17003530" +County and PUMA "G1700310, G17003531" +County and PUMA "G1700310, G17003532" +County and PUMA "G1700330, G17000700" +County and PUMA "G1700350, G17000600" +County and PUMA "G1700370, G17002601" +County and PUMA "G1700390, G17001602" +County and PUMA "G1700410, G17000600" +County and PUMA "G1700430, G17003202" +County and PUMA "G1700430, G17003203" +County and PUMA "G1700430, G17003204" +County and PUMA "G1700430, G17003205" +County and PUMA "G1700430, G17003207" +County and PUMA "G1700430, G17003208" +County and PUMA "G1700430, G17003209" +County and PUMA "G1700450, G17000600" +County and PUMA "G1700470, G17000800" +County and PUMA "G1700490, G17000501" +County and PUMA "G1700510, G17000501" +County and PUMA "G1700530, G17002200" +County and PUMA "G1700550, G17000900" +County and PUMA "G1700570, G17000202" +County and PUMA "G1700590, G17000800" +County and PUMA "G1700610, G17000401" +County and PUMA "G1700630, G17003700" +County and PUMA "G1700650, G17000800" +County and PUMA "G1700670, G17000202" +County and PUMA "G1700690, G17000800" +County and PUMA "G1700710, G17000202" +County and PUMA "G1700730, G17000202" +County and PUMA "G1700750, G17002200" +County and PUMA "G1700770, G17000900" +County and PUMA "G1700790, G17000700" +County and PUMA "G1700810, G17001001" +County and PUMA "G1700830, G17000401" +County and PUMA "G1700850, G17000104" +County and PUMA "G1700870, G17000800" +County and PUMA "G1700890, G17003005" +County and PUMA "G1700890, G17003007" +County and PUMA "G1700890, G17003008" +County and PUMA "G1700890, G17003009" +County and PUMA "G1700910, G17002300" +County and PUMA "G1700930, G17003700" +County and PUMA "G1700950, G17002501" +County and PUMA "G1700970, G17003306" +County and PUMA "G1700970, G17003307" +County and PUMA "G1700970, G17003308" +County and PUMA "G1700970, G17003309" +County and PUMA "G1700970, G17003310" +County and PUMA "G1700990, G17002400" +County and PUMA "G1701010, G17000700" +County and PUMA "G1701030, G17000104" +County and PUMA "G1701050, G17002200" +County and PUMA "G1701070, G17001602" +County and PUMA "G1701090, G17000202" +County and PUMA "G1701110, G17003601" +County and PUMA "G1701110, G17003602" +County and PUMA "G1701130, G17002000" +County and PUMA "G1701150, G17001500" +County and PUMA "G1701170, G17000401" +County and PUMA "G1701190, G17001204" +County and PUMA "G1701190, G17001205" +County and PUMA "G1701210, G17001001" +County and PUMA "G1701230, G17002501" +County and PUMA "G1701250, G17000300" +County and PUMA "G1701270, G17000800" +County and PUMA "G1701290, G17001602" +County and PUMA "G1701310, G17000202" +County and PUMA "G1701330, G17001001" +County and PUMA "G1701350, G17000501" +County and PUMA "G1701370, G17000401" +County and PUMA "G1701390, G17001602" +County and PUMA "G1701410, G17002700" +County and PUMA "G1701430, G17001701" +County and PUMA "G1701450, G17000900" +County and PUMA "G1701470, G17001602" +County and PUMA "G1701490, G17000300" +County and PUMA "G1701510, G17000800" +County and PUMA "G1701530, G17000800" +County and PUMA "G1701550, G17002501" +County and PUMA "G1701570, G17001001" +County and PUMA "G1701590, G17000700" +County and PUMA "G1701610, G17000105" +County and PUMA "G1701630, G17001104" +County and PUMA "G1701630, G17001105" +County and PUMA "G1701650, G17000800" +County and PUMA "G1701670, G17001300" +County and PUMA "G1701690, G17000300" +County and PUMA "G1701710, G17000401" +County and PUMA "G1701730, G17001602" +County and PUMA "G1701750, G17002501" +County and PUMA "G1701770, G17002700" +County and PUMA "G1701790, G17001900" +County and PUMA "G1701810, G17000800" +County and PUMA "G1701830, G17002200" +County and PUMA "G1701850, G17000800" +County and PUMA "G1701870, G17000202" +County and PUMA "G1701890, G17001001" +County and PUMA "G1701910, G17000700" +County and PUMA "G1701930, G17000800" +County and PUMA "G1701950, G17000104" +County and PUMA "G1701970, G17003102" +County and PUMA "G1701970, G17003105" +County and PUMA "G1701970, G17003106" +County and PUMA "G1701970, G17003107" +County and PUMA "G1701970, G17003108" +County and PUMA "G1701990, G17000900" +County and PUMA "G1702010, G17002801" +County and PUMA "G1702010, G17002901" +County and PUMA "G1702030, G17002501" +County and PUMA "G1800010, G18000900" +County and PUMA "G1800030, G18001001" +County and PUMA "G1800030, G18001002" +County and PUMA "G1800030, G18001003" +County and PUMA "G1800050, G18002900" +County and PUMA "G1800070, G18001100" +County and PUMA "G1800090, G18001500" +County and PUMA "G1800110, G18001801" +County and PUMA "G1800130, G18002100" +County and PUMA "G1800150, G18001100" +County and PUMA "G1800170, G18001300" +County and PUMA "G1800190, G18003600" +County and PUMA "G1800210, G18001600" +County and PUMA "G1800230, G18001100" +County and PUMA "G1800250, G18003400" +County and PUMA "G1800270, G18002700" +County and PUMA "G1800290, G18003100" +County and PUMA "G1800310, G18003000" +County and PUMA "G1800330, G18000600" +County and PUMA "G1800350, G18002000" +County and PUMA "G1800370, G18003400" +County and PUMA "G1800390, G18000500" +County and PUMA "G1800410, G18002600" +County and PUMA "G1800430, G18003500" +County and PUMA "G1800450, G18001600" +County and PUMA "G1800470, G18003100" +County and PUMA "G1800490, G18000700" +County and PUMA "G1800510, G18003200" +County and PUMA "G1800530, G18001400" +County and PUMA "G1800550, G18002700" +County and PUMA "G1800570, G18001801" +County and PUMA "G1800570, G18001802" +County and PUMA "G1800570, G18001803" +County and PUMA "G1800590, G18002500" +County and PUMA "G1800610, G18003500" +County and PUMA "G1800630, G18002200" +County and PUMA "G1800650, G18001500" +County and PUMA "G1800670, G18001300" +County and PUMA "G1800690, G18000900" +County and PUMA "G1800710, G18002900" +County and PUMA "G1800730, G18000700" +County and PUMA "G1800750, G18001500" +County and PUMA "G1800770, G18003000" +County and PUMA "G1800790, G18003000" +County and PUMA "G1800810, G18002400" +County and PUMA "G1800830, G18003400" +County and PUMA "G1800850, G18000800" +County and PUMA "G1800870, G18000600" +County and PUMA "G1800890, G18000101" +County and PUMA "G1800890, G18000102" +County and PUMA "G1800890, G18000103" +County and PUMA "G1800890, G18000104" +County and PUMA "G1800910, G18000300" +County and PUMA "G1800930, G18002700" +County and PUMA "G1800950, G18001900" +County and PUMA "G1800970, G18002301" +County and PUMA "G1800970, G18002302" +County and PUMA "G1800970, G18002303" +County and PUMA "G1800970, G18002304" +County and PUMA "G1800970, G18002305" +County and PUMA "G1800970, G18002306" +County and PUMA "G1800970, G18002307" +County and PUMA "G1800990, G18000800" +County and PUMA "G1801010, G18002700" +County and PUMA "G1801030, G18001400" +County and PUMA "G1801050, G18002800" +County and PUMA "G1801070, G18001100" +County and PUMA "G1801090, G18002100" +County and PUMA "G1801110, G18000700" +County and PUMA "G1801130, G18000600" +County and PUMA "G1801150, G18003100" +County and PUMA "G1801170, G18002700" +County and PUMA "G1801190, G18002700" +County and PUMA "G1801210, G18001600" +County and PUMA "G1801230, G18003400" +County and PUMA "G1801250, G18003400" +County and PUMA "G1801270, G18000200" +County and PUMA "G1801290, G18003200" +County and PUMA "G1801310, G18000700" +County and PUMA "G1801330, G18002100" +County and PUMA "G1801350, G18001500" +County and PUMA "G1801370, G18003100" +County and PUMA "G1801390, G18002600" +County and PUMA "G1801410, G18000401" +County and PUMA "G1801410, G18000402" +County and PUMA "G1801430, G18003000" +County and PUMA "G1801450, G18002500" +County and PUMA "G1801470, G18003400" +County and PUMA "G1801490, G18000700" +County and PUMA "G1801510, G18000600" +County and PUMA "G1801530, G18001600" +County and PUMA "G1801550, G18003100" +County and PUMA "G1801570, G18001200" +County and PUMA "G1801590, G18001300" +County and PUMA "G1801610, G18002600" +County and PUMA "G1801630, G18003300" +County and PUMA "G1801650, G18001600" +County and PUMA "G1801670, G18001700" +County and PUMA "G1801690, G18001400" +County and PUMA "G1801710, G18001600" +County and PUMA "G1801730, G18003200" +County and PUMA "G1801750, G18003500" +County and PUMA "G1801770, G18002600" +County and PUMA "G1801790, G18000900" +County and PUMA "G1801810, G18001100" +County and PUMA "G1801830, G18000900" +County and PUMA "G1900010, G19001800" +County and PUMA "G1900030, G19001800" +County and PUMA "G1900050, G19000400" +County and PUMA "G1900070, G19001800" +County and PUMA "G1900090, G19001800" +County and PUMA "G1900110, G19001200" +County and PUMA "G1900130, G19000500" +County and PUMA "G1900150, G19001300" +County and PUMA "G1900170, G19000400" +County and PUMA "G1900190, G19000700" +County and PUMA "G1900210, G19001900" +County and PUMA "G1900230, G19000600" +County and PUMA "G1900250, G19001900" +County and PUMA "G1900270, G19001900" +County and PUMA "G1900290, G19002100" +County and PUMA "G1900310, G19000800" +County and PUMA "G1900330, G19000200" +County and PUMA "G1900350, G19001900" +County and PUMA "G1900370, G19000400" +County and PUMA "G1900390, G19001800" +County and PUMA "G1900410, G19000100" +County and PUMA "G1900430, G19000400" +County and PUMA "G1900450, G19000800" +County and PUMA "G1900470, G19001900" +County and PUMA "G1900490, G19001400" +County and PUMA "G1900490, G19001500" +County and PUMA "G1900510, G19002200" +County and PUMA "G1900530, G19001800" +County and PUMA "G1900550, G19000700" +County and PUMA "G1900570, G19002300" +County and PUMA "G1900590, G19000100" +County and PUMA "G1900610, G19000700" +County and PUMA "G1900630, G19000100" +County and PUMA "G1900650, G19000400" +County and PUMA "G1900670, G19000200" +County and PUMA "G1900690, G19000600" +County and PUMA "G1900710, G19002100" +County and PUMA "G1900730, G19001900" +County and PUMA "G1900750, G19000600" +County and PUMA "G1900770, G19001800" +County and PUMA "G1900790, G19000600" +County and PUMA "G1900810, G19000200" +County and PUMA "G1900830, G19000600" +County and PUMA "G1900850, G19002100" +County and PUMA "G1900870, G19002300" +County and PUMA "G1900890, G19000400" +County and PUMA "G1900910, G19000600" +County and PUMA "G1900930, G19001900" +County and PUMA "G1900950, G19001200" +County and PUMA "G1900970, G19000700" +County and PUMA "G1900990, G19001400" +County and PUMA "G1901010, G19002200" +County and PUMA "G1901030, G19001100" +County and PUMA "G1901050, G19000800" +County and PUMA "G1901070, G19002200" +County and PUMA "G1901090, G19000200" +County and PUMA "G1901110, G19002300" +County and PUMA "G1901130, G19001000" +County and PUMA "G1901150, G19002300" +County and PUMA "G1901170, G19001800" +County and PUMA "G1901190, G19000100" +County and PUMA "G1901210, G19001400" +County and PUMA "G1901230, G19002200" +County and PUMA "G1901250, G19001400" +County and PUMA "G1901270, G19001200" +County and PUMA "G1901290, G19002100" +County and PUMA "G1901310, G19000200" +County and PUMA "G1901330, G19001900" +County and PUMA "G1901350, G19001800" +County and PUMA "G1901370, G19002100" +County and PUMA "G1901390, G19000800" +County and PUMA "G1901410, G19000100" +County and PUMA "G1901430, G19000100" +County and PUMA "G1901450, G19002100" +County and PUMA "G1901470, G19000100" +County and PUMA "G1901490, G19002000" +County and PUMA "G1901510, G19001900" +County and PUMA "G1901530, G19001500" +County and PUMA "G1901530, G19001600" +County and PUMA "G1901530, G19001700" +County and PUMA "G1901550, G19002100" +County and PUMA "G1901570, G19001200" +County and PUMA "G1901590, G19001800" +County and PUMA "G1901610, G19001900" +County and PUMA "G1901630, G19000900" +County and PUMA "G1901650, G19002100" +County and PUMA "G1901670, G19000100" +County and PUMA "G1901690, G19001300" +County and PUMA "G1901710, G19001200" +County and PUMA "G1901730, G19001800" +County and PUMA "G1901750, G19001800" +County and PUMA "G1901770, G19002200" +County and PUMA "G1901790, G19002200" +County and PUMA "G1901810, G19001400" +County and PUMA "G1901830, G19002200" +County and PUMA "G1901850, G19001800" +County and PUMA "G1901870, G19000600" +County and PUMA "G1901890, G19000200" +County and PUMA "G1901910, G19000400" +County and PUMA "G1901930, G19002000" +County and PUMA "G1901950, G19000200" +County and PUMA "G1901970, G19000600" +County and PUMA "G2000010, G20001400" +County and PUMA "G2000030, G20001400" +County and PUMA "G2000050, G20000400" +County and PUMA "G2000070, G20001100" +County and PUMA "G2000090, G20001100" +County and PUMA "G2000110, G20001400" +County and PUMA "G2000130, G20000802" +County and PUMA "G2000150, G20001302" +County and PUMA "G2000150, G20001304" +County and PUMA "G2000170, G20000900" +County and PUMA "G2000190, G20000900" +County and PUMA "G2000210, G20001500" +County and PUMA "G2000230, G20000100" +County and PUMA "G2000250, G20001200" +County and PUMA "G2000270, G20000200" +County and PUMA "G2000290, G20000200" +County and PUMA "G2000310, G20000900" +County and PUMA "G2000330, G20001100" +County and PUMA "G2000350, G20000900" +County and PUMA "G2000350, G20001100" +County and PUMA "G2000370, G20001500" +County and PUMA "G2000390, G20000100" +County and PUMA "G2000410, G20000200" +County and PUMA "G2000430, G20000400" +County and PUMA "G2000450, G20000700" +County and PUMA "G2000470, G20001100" +County and PUMA "G2000490, G20000900" +County and PUMA "G2000510, G20000100" +County and PUMA "G2000530, G20000200" +County and PUMA "G2000550, G20001200" +County and PUMA "G2000570, G20001200" +County and PUMA "G2000590, G20001400" +County and PUMA "G2000610, G20000300" +County and PUMA "G2000630, G20000100" +County and PUMA "G2000650, G20000100" +County and PUMA "G2000670, G20001200" +County and PUMA "G2000690, G20001200" +County and PUMA "G2000710, G20000100" +County and PUMA "G2000730, G20000900" +County and PUMA "G2000750, G20001200" +County and PUMA "G2000770, G20001100" +County and PUMA "G2000790, G20001301" +County and PUMA "G2000810, G20001200" +County and PUMA "G2000830, G20001200" +County and PUMA "G2000850, G20000802" +County and PUMA "G2000870, G20000400" +County and PUMA "G2000890, G20000200" +County and PUMA "G2000910, G20000601" +County and PUMA "G2000910, G20000602" +County and PUMA "G2000910, G20000603" +County and PUMA "G2000910, G20000604" +County and PUMA "G2000930, G20001200" +County and PUMA "G2000950, G20001100" +County and PUMA "G2000970, G20001100" +County and PUMA "G2000990, G20001500" +County and PUMA "G2001010, G20000100" +County and PUMA "G2001030, G20000400" +County and PUMA "G2001050, G20000200" +County and PUMA "G2001070, G20001400" +County and PUMA "G2001090, G20000100" +County and PUMA "G2001110, G20000900" +County and PUMA "G2001130, G20001000" +County and PUMA "G2001150, G20000900" +County and PUMA "G2001170, G20000200" +County and PUMA "G2001190, G20001200" +County and PUMA "G2001210, G20001400" +County and PUMA "G2001230, G20000200" +County and PUMA "G2001250, G20001500" +County and PUMA "G2001270, G20000900" +County and PUMA "G2001290, G20001200" +County and PUMA "G2001310, G20000200" +County and PUMA "G2001330, G20001500" +County and PUMA "G2001350, G20000100" +County and PUMA "G2001370, G20000100" +County and PUMA "G2001390, G20000802" +County and PUMA "G2001410, G20000100" +County and PUMA "G2001430, G20000200" +County and PUMA "G2001450, G20001100" +County and PUMA "G2001470, G20000100" +County and PUMA "G2001490, G20000300" +County and PUMA "G2001510, G20001100" +County and PUMA "G2001530, G20000100" +County and PUMA "G2001550, G20001000" +County and PUMA "G2001570, G20000200" +County and PUMA "G2001590, G20001000" +County and PUMA "G2001610, G20000300" +County and PUMA "G2001630, G20000100" +County and PUMA "G2001650, G20001100" +County and PUMA "G2001670, G20000100" +County and PUMA "G2001690, G20000200" +County and PUMA "G2001710, G20000100" +County and PUMA "G2001730, G20001301" +County and PUMA "G2001730, G20001302" +County and PUMA "G2001730, G20001303" +County and PUMA "G2001730, G20001304" +County and PUMA "G2001750, G20001200" +County and PUMA "G2001770, G20000801" +County and PUMA "G2001770, G20000802" +County and PUMA "G2001790, G20000100" +County and PUMA "G2001810, G20000100" +County and PUMA "G2001830, G20000100" +County and PUMA "G2001850, G20001100" +County and PUMA "G2001870, G20001200" +County and PUMA "G2001890, G20001200" +County and PUMA "G2001910, G20001100" +County and PUMA "G2001930, G20000100" +County and PUMA "G2001950, G20000100" +County and PUMA "G2001970, G20000802" +County and PUMA "G2001990, G20000100" +County and PUMA "G2002010, G20000200" +County and PUMA "G2002030, G20000100" +County and PUMA "G2002050, G20000900" +County and PUMA "G2002070, G20000900" +County and PUMA "G2002090, G20000500" +County and PUMA "G2100010, G21000600" +County and PUMA "G2100030, G21000400" +County and PUMA "G2100050, G21002000" +County and PUMA "G2100070, G21000100" +County and PUMA "G2100090, G21000400" +County and PUMA "G2100110, G21002700" +County and PUMA "G2100130, G21000900" +County and PUMA "G2100150, G21002500" +County and PUMA "G2100170, G21002300" +County and PUMA "G2100190, G21002800" +County and PUMA "G2100210, G21002100" +County and PUMA "G2100230, G21002700" +County and PUMA "G2100250, G21001000" +County and PUMA "G2100270, G21001300" +County and PUMA "G2100290, G21001600" +County and PUMA "G2100310, G21000400" +County and PUMA "G2100330, G21000200" +County and PUMA "G2100350, G21000100" +County and PUMA "G2100370, G21002600" +County and PUMA "G2100390, G21000100" +County and PUMA "G2100410, G21002600" +County and PUMA "G2100430, G21002800" +County and PUMA "G2100450, G21000600" +County and PUMA "G2100470, G21000300" +County and PUMA "G2100490, G21002300" +County and PUMA "G2100510, G21000800" +County and PUMA "G2100530, G21000600" +County and PUMA "G2100550, G21000200" +County and PUMA "G2100570, G21000600" +County and PUMA "G2100590, G21001500" +County and PUMA "G2100610, G21000400" +County and PUMA "G2100630, G21002800" +County and PUMA "G2100650, G21002200" +County and PUMA "G2100670, G21001901" +County and PUMA "G2100670, G21001902" +County and PUMA "G2100690, G21002700" +County and PUMA "G2100710, G21001100" +County and PUMA "G2100730, G21002000" +County and PUMA "G2100750, G21000100" +County and PUMA "G2100770, G21002600" +County and PUMA "G2100790, G21002100" +County and PUMA "G2100810, G21002600" +County and PUMA "G2100830, G21000100" +County and PUMA "G2100850, G21001300" +County and PUMA "G2100870, G21000600" +County and PUMA "G2100890, G21002800" +County and PUMA "G2100910, G21001500" +County and PUMA "G2100930, G21001200" +County and PUMA "G2100930, G21001300" +County and PUMA "G2100950, G21000900" +County and PUMA "G2100970, G21002300" +County and PUMA "G2100990, G21000400" +County and PUMA "G2101010, G21001400" +County and PUMA "G2101030, G21001800" +County and PUMA "G2101050, G21000100" +County and PUMA "G2101070, G21000200" +County and PUMA "G2101090, G21000800" +County and PUMA "G2101110, G21001701" +County and PUMA "G2101110, G21001702" +County and PUMA "G2101110, G21001703" +County and PUMA "G2101110, G21001704" +County and PUMA "G2101110, G21001705" +County and PUMA "G2101110, G21001706" +County and PUMA "G2101130, G21002100" +County and PUMA "G2101150, G21001100" +County and PUMA "G2101170, G21002400" +County and PUMA "G2101190, G21001000" +County and PUMA "G2101210, G21000900" +County and PUMA "G2101230, G21001200" +County and PUMA "G2101250, G21000800" +County and PUMA "G2101270, G21002800" +County and PUMA "G2101290, G21001000" +County and PUMA "G2101310, G21001000" +County and PUMA "G2101330, G21001000" +County and PUMA "G2101350, G21002700" +County and PUMA "G2101370, G21002100" +County and PUMA "G2101390, G21000200" +County and PUMA "G2101410, G21000400" +County and PUMA "G2101430, G21000300" +County and PUMA "G2101450, G21000100" +County and PUMA "G2101470, G21000700" +County and PUMA "G2101490, G21001400" +County and PUMA "G2101510, G21002200" +County and PUMA "G2101530, G21001100" +County and PUMA "G2101550, G21001200" +County and PUMA "G2101570, G21000100" +County and PUMA "G2101590, G21001100" +County and PUMA "G2101610, G21002700" +County and PUMA "G2101630, G21001300" +County and PUMA "G2101650, G21002700" +County and PUMA "G2101670, G21002000" +County and PUMA "G2101690, G21000400" +County and PUMA "G2101710, G21000400" +County and PUMA "G2101730, G21002700" +County and PUMA "G2101750, G21002700" +County and PUMA "G2101770, G21000200" +County and PUMA "G2101790, G21001200" +County and PUMA "G2101810, G21002300" +County and PUMA "G2101830, G21001400" +County and PUMA "G2101850, G21001800" +County and PUMA "G2101870, G21002600" +County and PUMA "G2101890, G21001000" +County and PUMA "G2101910, G21002600" +County and PUMA "G2101930, G21001000" +County and PUMA "G2101950, G21001100" +County and PUMA "G2101970, G21002200" +County and PUMA "G2101990, G21000700" +County and PUMA "G2102010, G21002700" +County and PUMA "G2102030, G21000800" +County and PUMA "G2102050, G21002700" +County and PUMA "G2102070, G21000600" +County and PUMA "G2102090, G21002300" +County and PUMA "G2102110, G21001600" +County and PUMA "G2102110, G21001800" +County and PUMA "G2102130, G21000400" +County and PUMA "G2102150, G21001600" +County and PUMA "G2102170, G21000600" +County and PUMA "G2102190, G21000300" +County and PUMA "G2102210, G21000300" +County and PUMA "G2102230, G21001800" +County and PUMA "G2102250, G21001400" +County and PUMA "G2102270, G21000500" +County and PUMA "G2102290, G21001200" +County and PUMA "G2102310, G21000700" +County and PUMA "G2102330, G21001400" +County and PUMA "G2102350, G21000900" +County and PUMA "G2102370, G21001000" +County and PUMA "G2102390, G21002000" +County and PUMA "G2200010, G22001100" +County and PUMA "G2200030, G22000800" +County and PUMA "G2200050, G22001600" +County and PUMA "G2200070, G22002000" +County and PUMA "G2200090, G22000600" +County and PUMA "G2200110, G22000800" +County and PUMA "G2200130, G22000300" +County and PUMA "G2200150, G22000200" +County and PUMA "G2200170, G22000100" +County and PUMA "G2200170, G22000101" +County and PUMA "G2200190, G22000800" +County and PUMA "G2200190, G22000900" +County and PUMA "G2200210, G22000500" +County and PUMA "G2200230, G22000900" +County and PUMA "G2200250, G22000600" +County and PUMA "G2200270, G22000300" +County and PUMA "G2200290, G22000600" +County and PUMA "G2200310, G22000300" +County and PUMA "G2200330, G22001500" +County and PUMA "G2200330, G22001501" +County and PUMA "G2200330, G22001502" +County and PUMA "G2200350, G22000500" +County and PUMA "G2200370, G22001400" +County and PUMA "G2200390, G22001000" +County and PUMA "G2200410, G22000500" +County and PUMA "G2200430, G22000600" +County and PUMA "G2200450, G22001300" +County and PUMA "G2200470, G22001400" +County and PUMA "G2200490, G22000500" +County and PUMA "G2200510, G22002300" +County and PUMA "G2200510, G22002301" +County and PUMA "G2200510, G22002302" +County and PUMA "G2200510, G22002500" +County and PUMA "G2200530, G22000900" +County and PUMA "G2200550, G22001200" +County and PUMA "G2200550, G22001201" +County and PUMA "G2200570, G22002000" +County and PUMA "G2200590, G22000600" +County and PUMA "G2200610, G22000300" +County and PUMA "G2200630, G22001700" +County and PUMA "G2200650, G22000500" +County and PUMA "G2200670, G22000500" +County and PUMA "G2200690, G22000300" +County and PUMA "G2200710, G22002400" +County and PUMA "G2200710, G22002401" +County and PUMA "G2200710, G22002402" +County and PUMA "G2200730, G22000400" +County and PUMA "G2200750, G22002500" +County and PUMA "G2200770, G22001400" +County and PUMA "G2200790, G22000700" +County and PUMA "G2200810, G22000300" +County and PUMA "G2200830, G22000500" +County and PUMA "G2200850, G22000300" +County and PUMA "G2200870, G22002500" +County and PUMA "G2200890, G22001900" +County and PUMA "G2200910, G22001700" +County and PUMA "G2200930, G22001900" +County and PUMA "G2200950, G22001900" +County and PUMA "G2200970, G22001000" +County and PUMA "G2200990, G22001300" +County and PUMA "G2201010, G22001300" +County and PUMA "G2201030, G22002200" +County and PUMA "G2201030, G22002201" +County and PUMA "G2201050, G22001800" +County and PUMA "G2201070, G22000500" +County and PUMA "G2201090, G22002100" +County and PUMA "G2201110, G22000500" +County and PUMA "G2201130, G22001100" +County and PUMA "G2201150, G22000700" +County and PUMA "G2201170, G22001800" +County and PUMA "G2201190, G22000200" +County and PUMA "G2201210, G22001400" +County and PUMA "G2201230, G22000500" +County and PUMA "G2201250, G22001400" +County and PUMA "G2201270, G22000600" +County and PUMA "G2300010, G23000600" +County and PUMA "G2300030, G23000100" +County and PUMA "G2300050, G23000700" +County and PUMA "G2300050, G23000800" +County and PUMA "G2300050, G23000900" +County and PUMA "G2300050, G23001000" +County and PUMA "G2300070, G23000200" +County and PUMA "G2300090, G23000500" +County and PUMA "G2300110, G23000400" +County and PUMA "G2300130, G23000500" +County and PUMA "G2300150, G23000500" +County and PUMA "G2300170, G23000200" +County and PUMA "G2300190, G23000300" +County and PUMA "G2300210, G23000200" +County and PUMA "G2300230, G23000700" +County and PUMA "G2300250, G23000200" +County and PUMA "G2300270, G23000500" +County and PUMA "G2300290, G23000100" +County and PUMA "G2300310, G23000800" +County and PUMA "G2300310, G23000900" +County and PUMA "G2400010, G24000100" +County and PUMA "G2400030, G24001201" +County and PUMA "G2400030, G24001202" +County and PUMA "G2400030, G24001203" +County and PUMA "G2400030, G24001204" +County and PUMA "G2400050, G24000501" +County and PUMA "G2400050, G24000502" +County and PUMA "G2400050, G24000503" +County and PUMA "G2400050, G24000504" +County and PUMA "G2400050, G24000505" +County and PUMA "G2400050, G24000506" +County and PUMA "G2400050, G24000507" +County and PUMA "G2400090, G24001500" +County and PUMA "G2400110, G24001300" +County and PUMA "G2400130, G24000400" +County and PUMA "G2400150, G24000700" +County and PUMA "G2400170, G24001600" +County and PUMA "G2400190, G24001300" +County and PUMA "G2400210, G24000301" +County and PUMA "G2400210, G24000302" +County and PUMA "G2400230, G24000100" +County and PUMA "G2400250, G24000601" +County and PUMA "G2400250, G24000602" +County and PUMA "G2400270, G24000901" +County and PUMA "G2400270, G24000902" +County and PUMA "G2400290, G24001300" +County and PUMA "G2400310, G24001001" +County and PUMA "G2400310, G24001002" +County and PUMA "G2400310, G24001003" +County and PUMA "G2400310, G24001004" +County and PUMA "G2400310, G24001005" +County and PUMA "G2400310, G24001006" +County and PUMA "G2400310, G24001007" +County and PUMA "G2400330, G24001101" +County and PUMA "G2400330, G24001102" +County and PUMA "G2400330, G24001103" +County and PUMA "G2400330, G24001104" +County and PUMA "G2400330, G24001105" +County and PUMA "G2400330, G24001106" +County and PUMA "G2400330, G24001107" +County and PUMA "G2400350, G24001300" +County and PUMA "G2400370, G24001500" +County and PUMA "G2400390, G24001400" +County and PUMA "G2400410, G24001300" +County and PUMA "G2400430, G24000200" +County and PUMA "G2400450, G24001400" +County and PUMA "G2400470, G24001400" +County and PUMA "G2405100, G24000801" +County and PUMA "G2405100, G24000802" +County and PUMA "G2405100, G24000803" +County and PUMA "G2405100, G24000804" +County and PUMA "G2405100, G24000805" +County and PUMA "G2500010, G25004700" +County and PUMA "G2500010, G25004800" +County and PUMA "G2500030, G25000100" +County and PUMA "G2500050, G25004200" +County and PUMA "G2500050, G25004301" +County and PUMA "G2500050, G25004302" +County and PUMA "G2500050, G25004303" +County and PUMA "G2500050, G25004500" +County and PUMA "G2500050, G25004901" +County and PUMA "G2500070, G25004800" +County and PUMA "G2500090, G25000701" +County and PUMA "G2500090, G25000702" +County and PUMA "G2500090, G25000703" +County and PUMA "G2500090, G25000704" +County and PUMA "G2500090, G25001000" +County and PUMA "G2500090, G25001300" +County and PUMA "G2500090, G25002800" +County and PUMA "G2500110, G25000200" +County and PUMA "G2500130, G25001600" +County and PUMA "G2500130, G25001900" +County and PUMA "G2500130, G25001901" +County and PUMA "G2500130, G25001902" +County and PUMA "G2500150, G25000200" +County and PUMA "G2500150, G25001600" +County and PUMA "G2500170, G25000400" +County and PUMA "G2500170, G25000501" +County and PUMA "G2500170, G25000502" +County and PUMA "G2500170, G25000503" +County and PUMA "G2500170, G25000504" +County and PUMA "G2500170, G25000505" +County and PUMA "G2500170, G25000506" +County and PUMA "G2500170, G25000507" +County and PUMA "G2500170, G25000508" +County and PUMA "G2500170, G25001000" +County and PUMA "G2500170, G25001300" +County and PUMA "G2500170, G25001400" +County and PUMA "G2500170, G25002400" +County and PUMA "G2500170, G25002800" +County and PUMA "G2500170, G25003400" +County and PUMA "G2500170, G25003500" +County and PUMA "G2500190, G25004800" +County and PUMA "G2500210, G25002400" +County and PUMA "G2500210, G25003400" +County and PUMA "G2500210, G25003500" +County and PUMA "G2500210, G25003601" +County and PUMA "G2500210, G25003602" +County and PUMA "G2500210, G25003603" +County and PUMA "G2500210, G25003900" +County and PUMA "G2500210, G25004000" +County and PUMA "G2500210, G25004200" +County and PUMA "G2500230, G25003900" +County and PUMA "G2500230, G25004000" +County and PUMA "G2500230, G25004301" +County and PUMA "G2500230, G25004901" +County and PUMA "G2500230, G25004902" +County and PUMA "G2500230, G25004903" +County and PUMA "G2500250, G25003301" +County and PUMA "G2500250, G25003302" +County and PUMA "G2500250, G25003303" +County and PUMA "G2500250, G25003304" +County and PUMA "G2500250, G25003305" +County and PUMA "G2500250, G25003306" +County and PUMA "G2500270, G25000300" +County and PUMA "G2500270, G25000301" +County and PUMA "G2500270, G25000302" +County and PUMA "G2500270, G25000303" +County and PUMA "G2500270, G25000304" +County and PUMA "G2500270, G25000400" +County and PUMA "G2500270, G25001400" +County and PUMA "G2500270, G25002400" +County and PUMA "G2600010, G26000300" +County and PUMA "G2600030, G26000200" +County and PUMA "G2600050, G26000900" +County and PUMA "G2600070, G26000300" +County and PUMA "G2600090, G26000400" +County and PUMA "G2600110, G26001300" +County and PUMA "G2600130, G26000100" +County and PUMA "G2600150, G26002000" +County and PUMA "G2600170, G26001400" +County and PUMA "G2600190, G26000500" +County and PUMA "G2600210, G26002400" +County and PUMA "G2600230, G26002200" +County and PUMA "G2600250, G26002000" +County and PUMA "G2600270, G26002300" +County and PUMA "G2600290, G26000400" +County and PUMA "G2600310, G26000300" +County and PUMA "G2600330, G26000200" +County and PUMA "G2600350, G26001200" +County and PUMA "G2600370, G26001900" +County and PUMA "G2600390, G26000300" +County and PUMA "G2600410, G26000200" +County and PUMA "G2600430, G26000100" +County and PUMA "G2600450, G26001900" +County and PUMA "G2600470, G26000400" +County and PUMA "G2600490, G26001701" +County and PUMA "G2600490, G26001702" +County and PUMA "G2600490, G26001703" +County and PUMA "G2600490, G26001704" +County and PUMA "G2600510, G26001300" +County and PUMA "G2600530, G26000100" +County and PUMA "G2600550, G26000500" +County and PUMA "G2600570, G26001200" +County and PUMA "G2600590, G26002500" +County and PUMA "G2600610, G26000100" +County and PUMA "G2600630, G26001600" +County and PUMA "G2600650, G26001801" +County and PUMA "G2600650, G26001802" +County and PUMA "G2600670, G26001100" +County and PUMA "G2600690, G26001300" +County and PUMA "G2600710, G26000100" +County and PUMA "G2600730, G26001200" +County and PUMA "G2600750, G26002600" +County and PUMA "G2600770, G26002101" +County and PUMA "G2600770, G26002102" +County and PUMA "G2600790, G26000400" +County and PUMA "G2600810, G26001001" +County and PUMA "G2600810, G26001002" +County and PUMA "G2600810, G26001003" +County and PUMA "G2600810, G26001004" +County and PUMA "G2600830, G26000100" +County and PUMA "G2600850, G26000600" +County and PUMA "G2600870, G26001701" +County and PUMA "G2600890, G26000500" +County and PUMA "G2600910, G26002500" +County and PUMA "G2600930, G26002800" +County and PUMA "G2600950, G26000200" +County and PUMA "G2600970, G26000200" +County and PUMA "G2600990, G26003001" +County and PUMA "G2600990, G26003002" +County and PUMA "G2600990, G26003003" +County and PUMA "G2600990, G26003004" +County and PUMA "G2600990, G26003005" +County and PUMA "G2600990, G26003006" +County and PUMA "G2601010, G26000500" +County and PUMA "G2601030, G26000100" +County and PUMA "G2601050, G26000600" +County and PUMA "G2601070, G26001100" +County and PUMA "G2601090, G26000200" +County and PUMA "G2601110, G26001400" +County and PUMA "G2601130, G26000400" +County and PUMA "G2601150, G26003300" +County and PUMA "G2601170, G26001100" +County and PUMA "G2601190, G26000300" +County and PUMA "G2601210, G26000700" +County and PUMA "G2601230, G26000600" +County and PUMA "G2601250, G26002901" +County and PUMA "G2601250, G26002902" +County and PUMA "G2601250, G26002903" +County and PUMA "G2601250, G26002904" +County and PUMA "G2601250, G26002905" +County and PUMA "G2601250, G26002906" +County and PUMA "G2601250, G26002907" +County and PUMA "G2601250, G26002908" +County and PUMA "G2601270, G26000600" +County and PUMA "G2601290, G26001300" +County and PUMA "G2601310, G26000100" +County and PUMA "G2601330, G26001100" +County and PUMA "G2601350, G26000300" +County and PUMA "G2601370, G26000300" +County and PUMA "G2601390, G26000801" +County and PUMA "G2601390, G26000802" +County and PUMA "G2601410, G26000300" +County and PUMA "G2601430, G26001300" +County and PUMA "G2601450, G26001500" +County and PUMA "G2601470, G26003100" +County and PUMA "G2601490, G26002200" +County and PUMA "G2601510, G26001600" +County and PUMA "G2601530, G26000200" +County and PUMA "G2601550, G26001704" +County and PUMA "G2601570, G26001600" +County and PUMA "G2601590, G26002300" +County and PUMA "G2601610, G26002701" +County and PUMA "G2601610, G26002702" +County and PUMA "G2601610, G26002703" +County and PUMA "G2601630, G26003201" +County and PUMA "G2601630, G26003202" +County and PUMA "G2601630, G26003203" +County and PUMA "G2601630, G26003204" +County and PUMA "G2601630, G26003205" +County and PUMA "G2601630, G26003206" +County and PUMA "G2601630, G26003207" +County and PUMA "G2601630, G26003208" +County and PUMA "G2601630, G26003209" +County and PUMA "G2601630, G26003210" +County and PUMA "G2601630, G26003211" +County and PUMA "G2601630, G26003212" +County and PUMA "G2601630, G26003213" +County and PUMA "G2601650, G26000400" +County and PUMA "G2700010, G27000300" +County and PUMA "G2700030, G27001101" +County and PUMA "G2700030, G27001102" +County and PUMA "G2700030, G27001103" +County and PUMA "G2700050, G27000200" +County and PUMA "G2700070, G27000200" +County and PUMA "G2700090, G27001000" +County and PUMA "G2700110, G27000800" +County and PUMA "G2700130, G27002200" +County and PUMA "G2700150, G27002000" +County and PUMA "G2700170, G27000300" +County and PUMA "G2700170, G27000400" +County and PUMA "G2700190, G27001700" +County and PUMA "G2700210, G27000300" +County and PUMA "G2700230, G27002000" +County and PUMA "G2700250, G27000600" +County and PUMA "G2700270, G27000100" +County and PUMA "G2700290, G27000200" +County and PUMA "G2700310, G27000400" +County and PUMA "G2700330, G27002100" +County and PUMA "G2700350, G27000700" +County and PUMA "G2700370, G27001501" +County and PUMA "G2700370, G27001502" +County and PUMA "G2700370, G27001503" +County and PUMA "G2700390, G27002400" +County and PUMA "G2700410, G27000800" +County and PUMA "G2700430, G27002100" +County and PUMA "G2700450, G27002600" +County and PUMA "G2700470, G27002400" +County and PUMA "G2700490, G27002300" +County and PUMA "G2700510, G27000800" +County and PUMA "G2700530, G27001401" +County and PUMA "G2700530, G27001402" +County and PUMA "G2700530, G27001403" +County and PUMA "G2700530, G27001404" +County and PUMA "G2700530, G27001405" +County and PUMA "G2700530, G27001406" +County and PUMA "G2700530, G27001407" +County and PUMA "G2700530, G27001408" +County and PUMA "G2700530, G27001409" +County and PUMA "G2700530, G27001410" +County and PUMA "G2700550, G27002600" +County and PUMA "G2700570, G27000200" +County and PUMA "G2700590, G27000600" +County and PUMA "G2700610, G27000300" +County and PUMA "G2700630, G27002100" +County and PUMA "G2700650, G27000600" +County and PUMA "G2700670, G27001900" +County and PUMA "G2700690, G27000100" +County and PUMA "G2700710, G27000400" +County and PUMA "G2700730, G27002000" +County and PUMA "G2700750, G27000400" +County and PUMA "G2700770, G27000200" +County and PUMA "G2700790, G27002300" +County and PUMA "G2700810, G27002000" +County and PUMA "G2700830, G27002000" +County and PUMA "G2700850, G27001900" +County and PUMA "G2700870, G27000200" +County and PUMA "G2700890, G27000100" +County and PUMA "G2700910, G27002100" +County and PUMA "G2700930, G27001900" +County and PUMA "G2700950, G27000600" +County and PUMA "G2700970, G27000700" +County and PUMA "G2700990, G27002400" +County and PUMA "G2701010, G27002100" +County and PUMA "G2701030, G27002200" +County and PUMA "G2701050, G27002100" +County and PUMA "G2701070, G27000100" +County and PUMA "G2701090, G27002500" +County and PUMA "G2701110, G27000800" +County and PUMA "G2701130, G27000100" +County and PUMA "G2701150, G27000600" +County and PUMA "G2701170, G27002100" +County and PUMA "G2701190, G27000100" +County and PUMA "G2701210, G27000800" +County and PUMA "G2701230, G27001301" +County and PUMA "G2701230, G27001302" +County and PUMA "G2701230, G27001303" +County and PUMA "G2701230, G27001304" +County and PUMA "G2701250, G27000100" +County and PUMA "G2701270, G27002000" +County and PUMA "G2701290, G27001900" +County and PUMA "G2701310, G27002300" +County and PUMA "G2701330, G27002100" +County and PUMA "G2701350, G27000100" +County and PUMA "G2701370, G27000400" +County and PUMA "G2701370, G27000500" +County and PUMA "G2701390, G27001600" +County and PUMA "G2701390, G27001700" +County and PUMA "G2701410, G27001000" +County and PUMA "G2701430, G27001900" +County and PUMA "G2701450, G27000900" +County and PUMA "G2701470, G27002400" +County and PUMA "G2701490, G27000800" +County and PUMA "G2701510, G27000800" +County and PUMA "G2701530, G27000700" +County and PUMA "G2701550, G27000800" +County and PUMA "G2701570, G27002600" +County and PUMA "G2701590, G27000700" +County and PUMA "G2701610, G27002200" +County and PUMA "G2701630, G27001201" +County and PUMA "G2701630, G27001202" +County and PUMA "G2701650, G27002100" +County and PUMA "G2701670, G27000800" +County and PUMA "G2701690, G27002600" +County and PUMA "G2701710, G27001800" +County and PUMA "G2701730, G27002000" +County and PUMA "G2800010, G28001600" +County and PUMA "G2800030, G28000200" +County and PUMA "G2800050, G28001600" +County and PUMA "G2800070, G28000700" +County and PUMA "G2800090, G28000200" +County and PUMA "G2800110, G28000800" +County and PUMA "G2800130, G28000400" +County and PUMA "G2800150, G28000700" +County and PUMA "G2800170, G28000400" +County and PUMA "G2800190, G28000600" +County and PUMA "G2800210, G28001600" +County and PUMA "G2800230, G28001500" +County and PUMA "G2800250, G28000600" +County and PUMA "G2800270, G28000300" +County and PUMA "G2800290, G28001200" +County and PUMA "G2800310, G28001700" +County and PUMA "G2800330, G28000100" +County and PUMA "G2800350, G28001800" +County and PUMA "G2800370, G28001600" +County and PUMA "G2800390, G28001900" +County and PUMA "G2800410, G28001700" +County and PUMA "G2800430, G28000700" +County and PUMA "G2800450, G28001900" +County and PUMA "G2800470, G28002000" +County and PUMA "G2800490, G28001000" +County and PUMA "G2800490, G28001100" +County and PUMA "G2800490, G28001200" +County and PUMA "G2800510, G28000700" +County and PUMA "G2800530, G28000800" +County and PUMA "G2800550, G28000800" +County and PUMA "G2800570, G28000400" +County and PUMA "G2800590, G28002100" +County and PUMA "G2800610, G28001400" +County and PUMA "G2800630, G28001600" +County and PUMA "G2800650, G28001700" +County and PUMA "G2800670, G28001700" +County and PUMA "G2800690, G28001400" +County and PUMA "G2800710, G28000400" +County and PUMA "G2800730, G28001800" +County and PUMA "G2800750, G28001500" +County and PUMA "G2800770, G28001600" +County and PUMA "G2800790, G28001400" +County and PUMA "G2800810, G28000500" +County and PUMA "G2800830, G28000700" +County and PUMA "G2800850, G28001600" +County and PUMA "G2800870, G28000600" +County and PUMA "G2800890, G28000900" +County and PUMA "G2800890, G28001000" +County and PUMA "G2800910, G28001800" +County and PUMA "G2800930, G28000200" +County and PUMA "G2800950, G28000400" +County and PUMA "G2800970, G28000700" +County and PUMA "G2800990, G28001400" +County and PUMA "G2801010, G28001500" +County and PUMA "G2801030, G28000600" +County and PUMA "G2801050, G28000600" +County and PUMA "G2801070, G28000300" +County and PUMA "G2801090, G28001900" +County and PUMA "G2801110, G28001800" +County and PUMA "G2801130, G28001600" +County and PUMA "G2801150, G28000500" +County and PUMA "G2801170, G28000200" +County and PUMA "G2801190, G28000300" +County and PUMA "G2801210, G28001300" +County and PUMA "G2801230, G28001400" +County and PUMA "G2801250, G28000800" +County and PUMA "G2801270, G28001300" +County and PUMA "G2801290, G28001400" +County and PUMA "G2801310, G28001900" +County and PUMA "G2801330, G28000800" +County and PUMA "G2801350, G28000300" +County and PUMA "G2801370, G28000300" +County and PUMA "G2801390, G28000200" +County and PUMA "G2801410, G28000200" +County and PUMA "G2801430, G28000300" +County and PUMA "G2801450, G28000500" +County and PUMA "G2801470, G28001600" +County and PUMA "G2801490, G28001200" +County and PUMA "G2801510, G28000800" +County and PUMA "G2801530, G28001700" +County and PUMA "G2801550, G28000600" +County and PUMA "G2801570, G28001600" +County and PUMA "G2801590, G28000600" +County and PUMA "G2801610, G28000700" +County and PUMA "G2801630, G28000900" +County and PUMA "G2900010, G29000300" +County and PUMA "G2900030, G29000200" +County and PUMA "G2900050, G29000100" +County and PUMA "G2900070, G29000400" +County and PUMA "G2900090, G29002700" +County and PUMA "G2900110, G29001200" +County and PUMA "G2900130, G29001100" +County and PUMA "G2900150, G29001300" +County and PUMA "G2900170, G29002200" +County and PUMA "G2900190, G29000600" +County and PUMA "G2900210, G29000200" +County and PUMA "G2900230, G29002400" +County and PUMA "G2900250, G29000800" +County and PUMA "G2900270, G29000500" +County and PUMA "G2900290, G29001400" +County and PUMA "G2900310, G29002200" +County and PUMA "G2900330, G29000700" +County and PUMA "G2900350, G29002400" +County and PUMA "G2900370, G29001100" +County and PUMA "G2900390, G29001200" +County and PUMA "G2900410, G29000700" +County and PUMA "G2900430, G29002601" +County and PUMA "G2900450, G29000300" +County and PUMA "G2900470, G29000901" +County and PUMA "G2900470, G29000902" +County and PUMA "G2900470, G29000903" +County and PUMA "G2900490, G29000800" +County and PUMA "G2900510, G29000500" +County and PUMA "G2900530, G29000700" +County and PUMA "G2900550, G29001500" +County and PUMA "G2900570, G29001200" +County and PUMA "G2900590, G29001300" +County and PUMA "G2900610, G29000100" +County and PUMA "G2900630, G29000200" +County and PUMA "G2900650, G29001500" +County and PUMA "G2900670, G29002500" +County and PUMA "G2900690, G29002300" +County and PUMA "G2900710, G29001600" +County and PUMA "G2900730, G29001500" +County and PUMA "G2900750, G29000100" +County and PUMA "G2900770, G29002601" +County and PUMA "G2900770, G29002602" +County and PUMA "G2900770, G29002603" +County and PUMA "G2900790, G29000100" +County and PUMA "G2900810, G29000100" +County and PUMA "G2900830, G29001200" +County and PUMA "G2900850, G29001300" +County and PUMA "G2900870, G29000100" +County and PUMA "G2900890, G29000700" +County and PUMA "G2900910, G29002500" +County and PUMA "G2900930, G29002400" +County and PUMA "G2900950, G29001001" +County and PUMA "G2900950, G29001002" +County and PUMA "G2900950, G29001003" +County and PUMA "G2900950, G29001004" +County and PUMA "G2900950, G29001005" +County and PUMA "G2900970, G29002800" +County and PUMA "G2900990, G29002001" +County and PUMA "G2900990, G29002002" +County and PUMA "G2901010, G29000800" +County and PUMA "G2901030, G29000300" +County and PUMA "G2901050, G29001300" +County and PUMA "G2901070, G29000800" +County and PUMA "G2901090, G29001200" +County and PUMA "G2901110, G29000300" +County and PUMA "G2901130, G29000400" +County and PUMA "G2901150, G29000100" +County and PUMA "G2901170, G29000100" +County and PUMA "G2901190, G29002700" +County and PUMA "G2901210, G29000300" +County and PUMA "G2901230, G29002400" +County and PUMA "G2901250, G29001500" +County and PUMA "G2901270, G29000300" +County and PUMA "G2901290, G29000100" +County and PUMA "G2901310, G29001400" +County and PUMA "G2901330, G29002300" +County and PUMA "G2901350, G29000500" +County and PUMA "G2901370, G29000300" +County and PUMA "G2901390, G29000400" +County and PUMA "G2901410, G29001400" +County and PUMA "G2901430, G29002300" +County and PUMA "G2901450, G29002800" +County and PUMA "G2901470, G29000100" +County and PUMA "G2901490, G29002500" +County and PUMA "G2901510, G29000500" +County and PUMA "G2901530, G29002500" +County and PUMA "G2901550, G29002300" +County and PUMA "G2901570, G29002100" +County and PUMA "G2901590, G29000700" +County and PUMA "G2901610, G29001500" +County and PUMA "G2901630, G29000400" +County and PUMA "G2901650, G29000903" +County and PUMA "G2901670, G29001300" +County and PUMA "G2901690, G29001400" +County and PUMA "G2901710, G29000100" +County and PUMA "G2901730, G29000300" +County and PUMA "G2901750, G29000700" +County and PUMA "G2901770, G29000800" +County and PUMA "G2901790, G29002400" +County and PUMA "G2901810, G29002400" +County and PUMA "G2901830, G29001701" +County and PUMA "G2901830, G29001702" +County and PUMA "G2901830, G29001703" +County and PUMA "G2901850, G29001200" +County and PUMA "G2901860, G29002100" +County and PUMA "G2901870, G29002100" +County and PUMA "G2901890, G29001801" +County and PUMA "G2901890, G29001802" +County and PUMA "G2901890, G29001803" +County and PUMA "G2901890, G29001804" +County and PUMA "G2901890, G29001805" +County and PUMA "G2901890, G29001806" +County and PUMA "G2901890, G29001807" +County and PUMA "G2901890, G29001808" +County and PUMA "G2901950, G29000700" +County and PUMA "G2901970, G29000300" +County and PUMA "G2901990, G29000300" +County and PUMA "G2902010, G29002200" +County and PUMA "G2902030, G29002500" +County and PUMA "G2902050, G29000300" +County and PUMA "G2902070, G29002300" +County and PUMA "G2902090, G29002700" +County and PUMA "G2902110, G29000100" +County and PUMA "G2902130, G29002700" +County and PUMA "G2902150, G29002500" +County and PUMA "G2902170, G29001200" +County and PUMA "G2902190, G29000400" +County and PUMA "G2902210, G29002100" +County and PUMA "G2902230, G29002400" +County and PUMA "G2902250, G29002601" +County and PUMA "G2902270, G29000100" +County and PUMA "G2902290, G29002500" +County and PUMA "G2905100, G29001901" +County and PUMA "G2905100, G29001902" +County and PUMA "G3000010, G30000300" +County and PUMA "G3000030, G30000600" +County and PUMA "G3000050, G30000400" +County and PUMA "G3000070, G30000300" +County and PUMA "G3000090, G30000500" +County and PUMA "G3000110, G30000600" +County and PUMA "G3000130, G30000400" +County and PUMA "G3000150, G30000400" +County and PUMA "G3000170, G30000600" +County and PUMA "G3000190, G30000600" +County and PUMA "G3000210, G30000600" +County and PUMA "G3000230, G30000300" +County and PUMA "G3000250, G30000600" +County and PUMA "G3000270, G30000400" +County and PUMA "G3000290, G30000100" +County and PUMA "G3000310, G30000500" +County and PUMA "G3000330, G30000600" +County and PUMA "G3000350, G30000100" +County and PUMA "G3000370, G30000600" +County and PUMA "G3000390, G30000300" +County and PUMA "G3000410, G30000400" +County and PUMA "G3000430, G30000300" +County and PUMA "G3000450, G30000400" +County and PUMA "G3000470, G30000200" +County and PUMA "G3000490, G30000300" +County and PUMA "G3000510, G30000400" +County and PUMA "G3000530, G30000100" +County and PUMA "G3000550, G30000600" +County and PUMA "G3000570, G30000300" +County and PUMA "G3000590, G30000400" +County and PUMA "G3000610, G30000200" +County and PUMA "G3000630, G30000200" +County and PUMA "G3000650, G30000600" +County and PUMA "G3000670, G30000500" +County and PUMA "G3000690, G30000400" +County and PUMA "G3000710, G30000600" +County and PUMA "G3000730, G30000400" +County and PUMA "G3000750, G30000600" +County and PUMA "G3000770, G30000300" +County and PUMA "G3000790, G30000600" +County and PUMA "G3000810, G30000200" +County and PUMA "G3000830, G30000600" +County and PUMA "G3000850, G30000600" +County and PUMA "G3000870, G30000600" +County and PUMA "G3000890, G30000200" +County and PUMA "G3000910, G30000600" +County and PUMA "G3000930, G30000300" +County and PUMA "G3000950, G30000500" +County and PUMA "G3000970, G30000500" +County and PUMA "G3000990, G30000400" +County and PUMA "G3001010, G30000400" +County and PUMA "G3001030, G30000600" +County and PUMA "G3001050, G30000600" +County and PUMA "G3001070, G30000400" +County and PUMA "G3001090, G30000600" +County and PUMA "G3001110, G30000600" +County and PUMA "G3001110, G30000700" +County and PUMA "G3100010, G31000500" +County and PUMA "G3100030, G31000200" +County and PUMA "G3100050, G31000400" +County and PUMA "G3100070, G31000100" +County and PUMA "G3100090, G31000300" +County and PUMA "G3100110, G31000200" +County and PUMA "G3100130, G31000100" +County and PUMA "G3100150, G31000100" +County and PUMA "G3100170, G31000100" +County and PUMA "G3100190, G31000500" +County and PUMA "G3100210, G31000200" +County and PUMA "G3100230, G31000600" +County and PUMA "G3100250, G31000701" +County and PUMA "G3100270, G31000200" +County and PUMA "G3100290, G31000400" +County and PUMA "G3100310, G31000100" +County and PUMA "G3100330, G31000100" +County and PUMA "G3100350, G31000500" +County and PUMA "G3100370, G31000200" +County and PUMA "G3100390, G31000200" +County and PUMA "G3100410, G31000300" +County and PUMA "G3100430, G31000200" +County and PUMA "G3100450, G31000100" +County and PUMA "G3100470, G31000400" +County and PUMA "G3100490, G31000100" +County and PUMA "G3100510, G31000200" +County and PUMA "G3100530, G31000701" +County and PUMA "G3100550, G31000901" +County and PUMA "G3100550, G31000902" +County and PUMA "G3100550, G31000903" +County and PUMA "G3100550, G31000904" +County and PUMA "G3100570, G31000400" +County and PUMA "G3100590, G31000600" +County and PUMA "G3100610, G31000500" +County and PUMA "G3100630, G31000400" +County and PUMA "G3100650, G31000400" +County and PUMA "G3100670, G31000600" +County and PUMA "G3100690, G31000100" +County and PUMA "G3100710, G31000300" +County and PUMA "G3100730, G31000400" +County and PUMA "G3100750, G31000400" +County and PUMA "G3100770, G31000300" +County and PUMA "G3100790, G31000300" +County and PUMA "G3100810, G31000300" +County and PUMA "G3100830, G31000500" +County and PUMA "G3100850, G31000400" +County and PUMA "G3100870, G31000400" +County and PUMA "G3100890, G31000100" +County and PUMA "G3100910, G31000400" +County and PUMA "G3100930, G31000300" +County and PUMA "G3100950, G31000600" +County and PUMA "G3100970, G31000600" +County and PUMA "G3100990, G31000500" +County and PUMA "G3101010, G31000400" +County and PUMA "G3101030, G31000100" +County and PUMA "G3101050, G31000100" +County and PUMA "G3101070, G31000200" +County and PUMA "G3101090, G31000801" +County and PUMA "G3101090, G31000802" +County and PUMA "G3101110, G31000400" +County and PUMA "G3101130, G31000400" +County and PUMA "G3101150, G31000300" +County and PUMA "G3101170, G31000400" +County and PUMA "G3101190, G31000200" +County and PUMA "G3101210, G31000300" +County and PUMA "G3101230, G31000100" +County and PUMA "G3101250, G31000200" +County and PUMA "G3101270, G31000600" +County and PUMA "G3101290, G31000500" +County and PUMA "G3101310, G31000600" +County and PUMA "G3101330, G31000600" +County and PUMA "G3101350, G31000400" +County and PUMA "G3101370, G31000500" +County and PUMA "G3101390, G31000200" +County and PUMA "G3101410, G31000200" +County and PUMA "G3101430, G31000600" +County and PUMA "G3101450, G31000400" +County and PUMA "G3101470, G31000600" +County and PUMA "G3101490, G31000100" +County and PUMA "G3101510, G31000600" +County and PUMA "G3101530, G31000702" +County and PUMA "G3101550, G31000701" +County and PUMA "G3101570, G31000100" +County and PUMA "G3101590, G31000600" +County and PUMA "G3101610, G31000100" +County and PUMA "G3101630, G31000300" +County and PUMA "G3101650, G31000100" +County and PUMA "G3101670, G31000200" +County and PUMA "G3101690, G31000600" +County and PUMA "G3101710, G31000400" +County and PUMA "G3101730, G31000200" +County and PUMA "G3101750, G31000300" +County and PUMA "G3101770, G31000701" +County and PUMA "G3101790, G31000200" +County and PUMA "G3101810, G31000500" +County and PUMA "G3101830, G31000300" +County and PUMA "G3101850, G31000600" +County and PUMA "G3200010, G32000300" +County and PUMA "G3200030, G32000401" +County and PUMA "G3200030, G32000402" +County and PUMA "G3200030, G32000403" +County and PUMA "G3200030, G32000404" +County and PUMA "G3200030, G32000405" +County and PUMA "G3200030, G32000406" +County and PUMA "G3200030, G32000407" +County and PUMA "G3200030, G32000408" +County and PUMA "G3200030, G32000409" +County and PUMA "G3200030, G32000410" +County and PUMA "G3200030, G32000411" +County and PUMA "G3200030, G32000412" +County and PUMA "G3200030, G32000413" +County and PUMA "G3200050, G32000200" +County and PUMA "G3200070, G32000300" +County and PUMA "G3200090, G32000300" +County and PUMA "G3200110, G32000300" +County and PUMA "G3200130, G32000300" +County and PUMA "G3200150, G32000300" +County and PUMA "G3200170, G32000300" +County and PUMA "G3200190, G32000200" +County and PUMA "G3200210, G32000300" +County and PUMA "G3200230, G32000300" +County and PUMA "G3200270, G32000300" +County and PUMA "G3200290, G32000200" +County and PUMA "G3200310, G32000101" +County and PUMA "G3200310, G32000102" +County and PUMA "G3200310, G32000103" +County and PUMA "G3200330, G32000300" +County and PUMA "G3205100, G32000200" +County and PUMA "G3300010, G33000200" +County and PUMA "G3300030, G33000200" +County and PUMA "G3300030, G33000300" +County and PUMA "G3300050, G33000500" +County and PUMA "G3300070, G33000100" +County and PUMA "G3300090, G33000100" +County and PUMA "G3300110, G33000600" +County and PUMA "G3300110, G33000700" +County and PUMA "G3300110, G33000800" +County and PUMA "G3300110, G33000900" +County and PUMA "G3300130, G33000200" +County and PUMA "G3300130, G33000400" +County and PUMA "G3300130, G33000700" +County and PUMA "G3300150, G33000300" +County and PUMA "G3300150, G33000700" +County and PUMA "G3300150, G33001000" +County and PUMA "G3300170, G33000300" +County and PUMA "G3300190, G33000500" +County and PUMA "G3400010, G34000101" +County and PUMA "G3400010, G34000102" +County and PUMA "G3400010, G34002600" +County and PUMA "G3400030, G34000301" +County and PUMA "G3400030, G34000302" +County and PUMA "G3400030, G34000303" +County and PUMA "G3400030, G34000304" +County and PUMA "G3400030, G34000305" +County and PUMA "G3400030, G34000306" +County and PUMA "G3400030, G34000307" +County and PUMA "G3400030, G34000308" +County and PUMA "G3400050, G34002001" +County and PUMA "G3400050, G34002002" +County and PUMA "G3400050, G34002003" +County and PUMA "G3400070, G34002101" +County and PUMA "G3400070, G34002102" +County and PUMA "G3400070, G34002103" +County and PUMA "G3400070, G34002104" +County and PUMA "G3400090, G34002600" +County and PUMA "G3400110, G34002400" +County and PUMA "G3400110, G34002500" +County and PUMA "G3400130, G34001301" +County and PUMA "G3400130, G34001302" +County and PUMA "G3400130, G34001401" +County and PUMA "G3400130, G34001402" +County and PUMA "G3400130, G34001403" +County and PUMA "G3400130, G34001404" +County and PUMA "G3400150, G34002201" +County and PUMA "G3400150, G34002202" +County and PUMA "G3400170, G34000601" +County and PUMA "G3400170, G34000602" +County and PUMA "G3400170, G34000701" +County and PUMA "G3400170, G34000702" +County and PUMA "G3400170, G34000703" +County and PUMA "G3400190, G34000800" +County and PUMA "G3400210, G34002301" +County and PUMA "G3400210, G34002302" +County and PUMA "G3400210, G34002303" +County and PUMA "G3400230, G34000901" +County and PUMA "G3400230, G34000902" +County and PUMA "G3400230, G34000903" +County and PUMA "G3400230, G34000904" +County and PUMA "G3400230, G34000905" +County and PUMA "G3400230, G34000906" +County and PUMA "G3400230, G34000907" +County and PUMA "G3400250, G34001101" +County and PUMA "G3400250, G34001102" +County and PUMA "G3400250, G34001103" +County and PUMA "G3400250, G34001104" +County and PUMA "G3400250, G34001105" +County and PUMA "G3400250, G34001106" +County and PUMA "G3400270, G34001501" +County and PUMA "G3400270, G34001502" +County and PUMA "G3400270, G34001503" +County and PUMA "G3400270, G34001504" +County and PUMA "G3400290, G34001201" +County and PUMA "G3400290, G34001202" +County and PUMA "G3400290, G34001203" +County and PUMA "G3400290, G34001204" +County and PUMA "G3400290, G34001205" +County and PUMA "G3400310, G34000400" +County and PUMA "G3400310, G34000501" +County and PUMA "G3400310, G34000502" +County and PUMA "G3400310, G34000503" +County and PUMA "G3400330, G34002500" +County and PUMA "G3400350, G34001001" +County and PUMA "G3400350, G34001002" +County and PUMA "G3400350, G34001003" +County and PUMA "G3400370, G34001600" +County and PUMA "G3400390, G34001800" +County and PUMA "G3400390, G34001901" +County and PUMA "G3400390, G34001902" +County and PUMA "G3400390, G34001903" +County and PUMA "G3400390, G34001904" +County and PUMA "G3400410, G34001700" +County and PUMA "G3500010, G35000700" +County and PUMA "G3500010, G35000801" +County and PUMA "G3500010, G35000802" +County and PUMA "G3500010, G35000803" +County and PUMA "G3500010, G35000804" +County and PUMA "G3500010, G35000805" +County and PUMA "G3500010, G35000806" +County and PUMA "G3500030, G35000900" +County and PUMA "G3500050, G35001100" +County and PUMA "G3500060, G35000100" +County and PUMA "G3500070, G35000400" +County and PUMA "G3500090, G35000400" +County and PUMA "G3500110, G35000400" +County and PUMA "G3500130, G35001001" +County and PUMA "G3500130, G35001002" +County and PUMA "G3500150, G35001200" +County and PUMA "G3500170, G35000900" +County and PUMA "G3500190, G35000400" +County and PUMA "G3500210, G35000400" +County and PUMA "G3500230, G35000900" +County and PUMA "G3500250, G35001200" +County and PUMA "G3500270, G35001100" +County and PUMA "G3500280, G35000300" +County and PUMA "G3500290, G35000900" +County and PUMA "G3500310, G35000100" +County and PUMA "G3500330, G35000300" +County and PUMA "G3500350, G35001100" +County and PUMA "G3500370, G35000400" +County and PUMA "G3500390, G35000300" +County and PUMA "G3500410, G35000400" +County and PUMA "G3500430, G35000600" +County and PUMA "G3500450, G35000100" +County and PUMA "G3500450, G35000200" +County and PUMA "G3500470, G35000300" +County and PUMA "G3500490, G35000500" +County and PUMA "G3500510, G35000900" +County and PUMA "G3500530, G35000900" +County and PUMA "G3500550, G35000300" +County and PUMA "G3500570, G35000900" +County and PUMA "G3500590, G35000400" +County and PUMA "G3500610, G35000700" +County and PUMA "G3600010, G36002001" +County and PUMA "G3600010, G36002002" +County and PUMA "G3600030, G36002500" +County and PUMA "G3600050, G36003701" +County and PUMA "G3600050, G36003702" +County and PUMA "G3600050, G36003703" +County and PUMA "G3600050, G36003704" +County and PUMA "G3600050, G36003705" +County and PUMA "G3600050, G36003706" +County and PUMA "G3600050, G36003707" +County and PUMA "G3600050, G36003708" +County and PUMA "G3600050, G36003709" +County and PUMA "G3600050, G36003710" +County and PUMA "G3600070, G36002201" +County and PUMA "G3600070, G36002202" +County and PUMA "G3600070, G36002203" +County and PUMA "G3600090, G36002500" +County and PUMA "G3600110, G36000704" +County and PUMA "G3600130, G36002600" +County and PUMA "G3600150, G36002401" +County and PUMA "G3600150, G36002402" +County and PUMA "G3600170, G36002203" +County and PUMA "G3600190, G36000200" +County and PUMA "G3600210, G36002100" +County and PUMA "G3600230, G36001500" +County and PUMA "G3600250, G36002203" +County and PUMA "G3600270, G36002801" +County and PUMA "G3600270, G36002802" +County and PUMA "G3600290, G36001201" +County and PUMA "G3600290, G36001202" +County and PUMA "G3600290, G36001203" +County and PUMA "G3600290, G36001204" +County and PUMA "G3600290, G36001205" +County and PUMA "G3600290, G36001206" +County and PUMA "G3600290, G36001207" +County and PUMA "G3600310, G36000200" +County and PUMA "G3600330, G36000200" +County and PUMA "G3600350, G36001600" +County and PUMA "G3600370, G36001000" +County and PUMA "G3600390, G36002100" +County and PUMA "G3600410, G36000200" +County and PUMA "G3600430, G36000401" +County and PUMA "G3600430, G36000403" +County and PUMA "G3600450, G36000500" +County and PUMA "G3600470, G36004001" +County and PUMA "G3600470, G36004002" +County and PUMA "G3600470, G36004003" +County and PUMA "G3600470, G36004004" +County and PUMA "G3600470, G36004005" +County and PUMA "G3600470, G36004006" +County and PUMA "G3600470, G36004007" +County and PUMA "G3600470, G36004008" +County and PUMA "G3600470, G36004009" +County and PUMA "G3600470, G36004010" +County and PUMA "G3600470, G36004011" +County and PUMA "G3600470, G36004012" +County and PUMA "G3600470, G36004013" +County and PUMA "G3600470, G36004014" +County and PUMA "G3600470, G36004015" +County and PUMA "G3600470, G36004016" +County and PUMA "G3600470, G36004017" +County and PUMA "G3600470, G36004018" +County and PUMA "G3600490, G36000500" +County and PUMA "G3600510, G36001300" +County and PUMA "G3600530, G36001500" +County and PUMA "G3600550, G36000901" +County and PUMA "G3600550, G36000902" +County and PUMA "G3600550, G36000903" +County and PUMA "G3600550, G36000904" +County and PUMA "G3600550, G36000905" +County and PUMA "G3600550, G36000906" +County and PUMA "G3600570, G36001600" +County and PUMA "G3600590, G36003201" +County and PUMA "G3600590, G36003202" +County and PUMA "G3600590, G36003203" +County and PUMA "G3600590, G36003204" +County and PUMA "G3600590, G36003205" +County and PUMA "G3600590, G36003206" +County and PUMA "G3600590, G36003207" +County and PUMA "G3600590, G36003208" +County and PUMA "G3600590, G36003209" +County and PUMA "G3600590, G36003210" +County and PUMA "G3600590, G36003211" +County and PUMA "G3600590, G36003212" +County and PUMA "G3600610, G36003801" +County and PUMA "G3600610, G36003802" +County and PUMA "G3600610, G36003803" +County and PUMA "G3600610, G36003804" +County and PUMA "G3600610, G36003805" +County and PUMA "G3600610, G36003806" +County and PUMA "G3600610, G36003807" +County and PUMA "G3600610, G36003808" +County and PUMA "G3600610, G36003809" +County and PUMA "G3600610, G36003810" +County and PUMA "G3600630, G36001101" +County and PUMA "G3600630, G36001102" +County and PUMA "G3600650, G36000401" +County and PUMA "G3600650, G36000402" +County and PUMA "G3600650, G36000403" +County and PUMA "G3600670, G36000701" +County and PUMA "G3600670, G36000702" +County and PUMA "G3600670, G36000703" +County and PUMA "G3600670, G36000704" +County and PUMA "G3600690, G36001400" +County and PUMA "G3600710, G36002901" +County and PUMA "G3600710, G36002902" +County and PUMA "G3600710, G36002903" +County and PUMA "G3600730, G36001000" +County and PUMA "G3600750, G36000600" +County and PUMA "G3600770, G36000403" +County and PUMA "G3600790, G36003101" +County and PUMA "G3600810, G36004101" +County and PUMA "G3600810, G36004102" +County and PUMA "G3600810, G36004103" +County and PUMA "G3600810, G36004104" +County and PUMA "G3600810, G36004105" +County and PUMA "G3600810, G36004106" +County and PUMA "G3600810, G36004107" +County and PUMA "G3600810, G36004108" +County and PUMA "G3600810, G36004109" +County and PUMA "G3600810, G36004110" +County and PUMA "G3600810, G36004111" +County and PUMA "G3600810, G36004112" +County and PUMA "G3600810, G36004113" +County and PUMA "G3600810, G36004114" +County and PUMA "G3600830, G36001900" +County and PUMA "G3600850, G36003901" +County and PUMA "G3600850, G36003902" +County and PUMA "G3600850, G36003903" +County and PUMA "G3600870, G36003001" +County and PUMA "G3600870, G36003002" +County and PUMA "G3600870, G36003003" +County and PUMA "G3600890, G36000100" +County and PUMA "G3600910, G36001801" +County and PUMA "G3600910, G36001802" +County and PUMA "G3600930, G36001700" +County and PUMA "G3600950, G36000403" +County and PUMA "G3600970, G36002402" +County and PUMA "G3600990, G36000800" +County and PUMA "G3601010, G36002401" +County and PUMA "G3601010, G36002402" +County and PUMA "G3601030, G36003301" +County and PUMA "G3601030, G36003302" +County and PUMA "G3601030, G36003303" +County and PUMA "G3601030, G36003304" +County and PUMA "G3601030, G36003305" +County and PUMA "G3601030, G36003306" +County and PUMA "G3601030, G36003307" +County and PUMA "G3601030, G36003308" +County and PUMA "G3601030, G36003309" +County and PUMA "G3601030, G36003310" +County and PUMA "G3601030, G36003311" +County and PUMA "G3601030, G36003312" +County and PUMA "G3601030, G36003313" +County and PUMA "G3601050, G36002701" +County and PUMA "G3601070, G36002202" +County and PUMA "G3601090, G36002300" +County and PUMA "G3601110, G36002701" +County and PUMA "G3601110, G36002702" +County and PUMA "G3601130, G36000300" +County and PUMA "G3601150, G36000300" +County and PUMA "G3601170, G36000800" +County and PUMA "G3601190, G36003101" +County and PUMA "G3601190, G36003102" +County and PUMA "G3601190, G36003103" +County and PUMA "G3601190, G36003104" +County and PUMA "G3601190, G36003105" +County and PUMA "G3601190, G36003106" +County and PUMA "G3601190, G36003107" +County and PUMA "G3601210, G36001300" +County and PUMA "G3601230, G36001400" +County and PUMA "G3700010, G37001600" +County and PUMA "G3700030, G37002000" +County and PUMA "G3700050, G37000200" +County and PUMA "G3700070, G37005300" +County and PUMA "G3700090, G37000100" +County and PUMA "G3700110, G37000100" +County and PUMA "G3700130, G37004400" +County and PUMA "G3700150, G37000800" +County and PUMA "G3700170, G37004900" +County and PUMA "G3700190, G37004800" +County and PUMA "G3700210, G37002201" +County and PUMA "G3700210, G37002202" +County and PUMA "G3700230, G37002100" +County and PUMA "G3700250, G37003200" +County and PUMA "G3700250, G37003300" +County and PUMA "G3700270, G37002000" +County and PUMA "G3700290, G37000700" +County and PUMA "G3700310, G37004400" +County and PUMA "G3700330, G37000400" +County and PUMA "G3700350, G37002800" +County and PUMA "G3700370, G37001500" +County and PUMA "G3700390, G37002400" +County and PUMA "G3700410, G37000700" +County and PUMA "G3700430, G37002400" +County and PUMA "G3700450, G37002600" +County and PUMA "G3700450, G37002700" +County and PUMA "G3700470, G37004900" +County and PUMA "G3700490, G37004300" +County and PUMA "G3700510, G37005001" +County and PUMA "G3700510, G37005002" +County and PUMA "G3700510, G37005003" +County and PUMA "G3700530, G37000700" +County and PUMA "G3700550, G37000800" +County and PUMA "G3700570, G37003500" +County and PUMA "G3700590, G37001900" +County and PUMA "G3700610, G37003900" +County and PUMA "G3700630, G37001301" +County and PUMA "G3700630, G37001302" +County and PUMA "G3700650, G37000900" +County and PUMA "G3700670, G37001801" +County and PUMA "G3700670, G37001802" +County and PUMA "G3700670, G37001803" +County and PUMA "G3700690, G37000500" +County and PUMA "G3700710, G37003001" +County and PUMA "G3700710, G37003002" +County and PUMA "G3700730, G37000700" +County and PUMA "G3700750, G37002300" +County and PUMA "G3700770, G37000400" +County and PUMA "G3700790, G37001000" +County and PUMA "G3700810, G37001701" +County and PUMA "G3700810, G37001702" +County and PUMA "G3700810, G37001703" +County and PUMA "G3700810, G37001704" +County and PUMA "G3700830, G37000600" +County and PUMA "G3700850, G37003800" +County and PUMA "G3700870, G37002300" +County and PUMA "G3700890, G37002500" +County and PUMA "G3700910, G37000600" +County and PUMA "G3700930, G37005200" +County and PUMA "G3700950, G37000800" +County and PUMA "G3700970, G37001900" +County and PUMA "G3700970, G37002900" +County and PUMA "G3700990, G37002300" +County and PUMA "G3700990, G37002400" +County and PUMA "G3701010, G37001100" +County and PUMA "G3701030, G37004100" +County and PUMA "G3701050, G37001500" +County and PUMA "G3701070, G37004100" +County and PUMA "G3701090, G37002700" +County and PUMA "G3701110, G37002100" +County and PUMA "G3701130, G37002400" +County and PUMA "G3701150, G37002300" +County and PUMA "G3701170, G37000800" +County and PUMA "G3701190, G37003101" +County and PUMA "G3701190, G37003102" +County and PUMA "G3701190, G37003103" +County and PUMA "G3701190, G37003104" +County and PUMA "G3701190, G37003105" +County and PUMA "G3701190, G37003106" +County and PUMA "G3701190, G37003107" +County and PUMA "G3701190, G37003108" +County and PUMA "G3701210, G37000100" +County and PUMA "G3701230, G37003700" +County and PUMA "G3701250, G37003700" +County and PUMA "G3701270, G37000900" +County and PUMA "G3701290, G37004600" +County and PUMA "G3701290, G37004700" +County and PUMA "G3701310, G37000600" +County and PUMA "G3701330, G37004100" +County and PUMA "G3701330, G37004500" +County and PUMA "G3701350, G37001400" +County and PUMA "G3701370, G37004400" +County and PUMA "G3701390, G37000700" +County and PUMA "G3701410, G37004600" +County and PUMA "G3701430, G37000700" +County and PUMA "G3701450, G37000400" +County and PUMA "G3701470, G37004200" +County and PUMA "G3701490, G37002600" +County and PUMA "G3701510, G37003600" +County and PUMA "G3701530, G37005200" +County and PUMA "G3701550, G37004900" +County and PUMA "G3701550, G37005100" +County and PUMA "G3701570, G37000300" +County and PUMA "G3701590, G37003400" +County and PUMA "G3701610, G37002600" +County and PUMA "G3701630, G37003900" +County and PUMA "G3701650, G37005200" +County and PUMA "G3701670, G37003300" +County and PUMA "G3701690, G37000300" +County and PUMA "G3701710, G37000200" +County and PUMA "G3701730, G37002300" +County and PUMA "G3701750, G37002500" +County and PUMA "G3701770, G37000800" +County and PUMA "G3701790, G37005300" +County and PUMA "G3701790, G37005400" +County and PUMA "G3701810, G37000500" +County and PUMA "G3701830, G37001201" +County and PUMA "G3701830, G37001202" +County and PUMA "G3701830, G37001203" +County and PUMA "G3701830, G37001204" +County and PUMA "G3701830, G37001205" +County and PUMA "G3701830, G37001206" +County and PUMA "G3701830, G37001207" +County and PUMA "G3701830, G37001208" +County and PUMA "G3701850, G37000500" +County and PUMA "G3701850, G37000600" +County and PUMA "G3701870, G37000800" +County and PUMA "G3701890, G37000100" +County and PUMA "G3701910, G37004000" +County and PUMA "G3701930, G37000200" +County and PUMA "G3701950, G37001000" +County and PUMA "G3701970, G37001900" +County and PUMA "G3701990, G37000100" +County and PUMA "G3800010, G38000100" +County and PUMA "G3800030, G38000200" +County and PUMA "G3800050, G38000200" +County and PUMA "G3800070, G38000100" +County and PUMA "G3800090, G38000200" +County and PUMA "G3800110, G38000100" +County and PUMA "G3800130, G38000100" +County and PUMA "G3800150, G38000300" +County and PUMA "G3800170, G38000500" +County and PUMA "G3800190, G38000400" +County and PUMA "G3800210, G38000200" +County and PUMA "G3800230, G38000100" +County and PUMA "G3800250, G38000100" +County and PUMA "G3800270, G38000200" +County and PUMA "G3800290, G38000300" +County and PUMA "G3800310, G38000200" +County and PUMA "G3800330, G38000100" +County and PUMA "G3800350, G38000400" +County and PUMA "G3800370, G38000100" +County and PUMA "G3800390, G38000400" +County and PUMA "G3800410, G38000100" +County and PUMA "G3800430, G38000300" +County and PUMA "G3800450, G38000200" +County and PUMA "G3800470, G38000300" +County and PUMA "G3800490, G38000100" +County and PUMA "G3800510, G38000300" +County and PUMA "G3800530, G38000100" +County and PUMA "G3800550, G38000100" +County and PUMA "G3800570, G38000100" +County and PUMA "G3800590, G38000300" +County and PUMA "G3800610, G38000100" +County and PUMA "G3800630, G38000200" +County and PUMA "G3800650, G38000100" +County and PUMA "G3800670, G38000400" +County and PUMA "G3800690, G38000200" +County and PUMA "G3800710, G38000200" +County and PUMA "G3800730, G38000200" +County and PUMA "G3800750, G38000100" +County and PUMA "G3800770, G38000200" +County and PUMA "G3800790, G38000200" +County and PUMA "G3800810, G38000200" +County and PUMA "G3800830, G38000200" +County and PUMA "G3800850, G38000100" +County and PUMA "G3800870, G38000100" +County and PUMA "G3800890, G38000100" +County and PUMA "G3800910, G38000400" +County and PUMA "G3800930, G38000200" +County and PUMA "G3800950, G38000400" +County and PUMA "G3800970, G38000400" +County and PUMA "G3800990, G38000400" +County and PUMA "G3801010, G38000100" +County and PUMA "G3801030, G38000200" +County and PUMA "G3801050, G38000100" +County and PUMA "G3900010, G39005200" +County and PUMA "G3900030, G39002500" +County and PUMA "G3900050, G39002100" +County and PUMA "G3900070, G39001300" +County and PUMA "G3900090, G39005000" +County and PUMA "G3900110, G39002600" +County and PUMA "G3900130, G39003500" +County and PUMA "G3900150, G39005700" +County and PUMA "G3900170, G39005401" +County and PUMA "G3900170, G39005402" +County and PUMA "G3900170, G39005403" +County and PUMA "G3900190, G39003300" +County and PUMA "G3900210, G39002700" +County and PUMA "G3900230, G39004300" +County and PUMA "G3900250, G39005600" +County and PUMA "G3900250, G39005700" +County and PUMA "G3900270, G39005200" +County and PUMA "G3900290, G39003400" +County and PUMA "G3900310, G39002900" +County and PUMA "G3900330, G39002300" +County and PUMA "G3900350, G39000901" +County and PUMA "G3900350, G39000902" +County and PUMA "G3900350, G39000903" +County and PUMA "G3900350, G39000904" +County and PUMA "G3900350, G39000905" +County and PUMA "G3900350, G39000906" +County and PUMA "G3900350, G39000907" +County and PUMA "G3900350, G39000908" +County and PUMA "G3900350, G39000909" +County and PUMA "G3900350, G39000910" +County and PUMA "G3900370, G39004500" +County and PUMA "G3900390, G39000100" +County and PUMA "G3900410, G39004000" +County and PUMA "G3900430, G39000700" +County and PUMA "G3900450, G39003900" +County and PUMA "G3900470, G39004800" +County and PUMA "G3900490, G39004101" +County and PUMA "G3900490, G39004102" +County and PUMA "G3900490, G39004103" +County and PUMA "G3900490, G39004104" +County and PUMA "G3900490, G39004105" +County and PUMA "G3900490, G39004106" +County and PUMA "G3900490, G39004107" +County and PUMA "G3900490, G39004108" +County and PUMA "G3900490, G39004109" +County and PUMA "G3900490, G39004110" +County and PUMA "G3900490, G39004111" +County and PUMA "G3900510, G39000200" +County and PUMA "G3900530, G39005000" +County and PUMA "G3900550, G39001200" +County and PUMA "G3900570, G39004700" +County and PUMA "G3900590, G39002900" +County and PUMA "G3900610, G39005501" +County and PUMA "G3900610, G39005502" +County and PUMA "G3900610, G39005503" +County and PUMA "G3900610, G39005504" +County and PUMA "G3900610, G39005505" +County and PUMA "G3900610, G39005506" +County and PUMA "G3900610, G39005507" +County and PUMA "G3900630, G39002400" +County and PUMA "G3900650, G39002700" +County and PUMA "G3900670, G39003000" +County and PUMA "G3900690, G39000100" +County and PUMA "G3900710, G39005200" +County and PUMA "G3900730, G39004900" +County and PUMA "G3900750, G39002900" +County and PUMA "G3900770, G39002100" +County and PUMA "G3900790, G39004900" +County and PUMA "G3900810, G39003500" +County and PUMA "G3900830, G39002800" +County and PUMA "G3900850, G39001000" +County and PUMA "G3900850, G39001100" +County and PUMA "G3900850, G39001200" +County and PUMA "G3900870, G39005100" +County and PUMA "G3900890, G39003800" +County and PUMA "G3900910, G39002700" +County and PUMA "G3900930, G39000801" +County and PUMA "G3900930, G39000802" +County and PUMA "G3900950, G39000200" +County and PUMA "G3900950, G39000300" +County and PUMA "G3900950, G39000400" +County and PUMA "G3900950, G39000500" +County and PUMA "G3900950, G39000600" +County and PUMA "G3900970, G39004200" +County and PUMA "G3900990, G39001400" +County and PUMA "G3900990, G39001500" +County and PUMA "G3901010, G39002800" +County and PUMA "G3901030, G39001900" +County and PUMA "G3901050, G39005000" +County and PUMA "G3901070, G39002600" +County and PUMA "G3901090, G39004400" +County and PUMA "G3901110, G39003600" +County and PUMA "G3901130, G39004601" +County and PUMA "G3901130, G39004602" +County and PUMA "G3901130, G39004603" +County and PUMA "G3901130, G39004604" +County and PUMA "G3901150, G39003600" +County and PUMA "G3901170, G39002800" +County and PUMA "G3901190, G39003700" +County and PUMA "G3901210, G39003600" +County and PUMA "G3901230, G39000600" +County and PUMA "G3901250, G39000100" +County and PUMA "G3901270, G39003700" +County and PUMA "G3901290, G39004200" +County and PUMA "G3901310, G39004900" +County and PUMA "G3901330, G39001700" +County and PUMA "G3901350, G39004500" +County and PUMA "G3901370, G39002400" +County and PUMA "G3901390, G39002200" +County and PUMA "G3901410, G39004800" +County and PUMA "G3901430, G39000700" +County and PUMA "G3901450, G39005100" +County and PUMA "G3901470, G39002300" +County and PUMA "G3901490, G39004500" +County and PUMA "G3901510, G39003100" +County and PUMA "G3901510, G39003200" +County and PUMA "G3901510, G39003300" +County and PUMA "G3901530, G39001801" +County and PUMA "G3901530, G39001802" +County and PUMA "G3901530, G39001803" +County and PUMA "G3901530, G39001804" +County and PUMA "G3901530, G39001805" +County and PUMA "G3901550, G39001400" +County and PUMA "G3901550, G39001600" +County and PUMA "G3901570, G39003000" +County and PUMA "G3901590, G39004200" +County and PUMA "G3901610, G39002600" +County and PUMA "G3901630, G39004900" +County and PUMA "G3901650, G39005301" +County and PUMA "G3901650, G39005302" +County and PUMA "G3901670, G39003600" +County and PUMA "G3901690, G39002000" +County and PUMA "G3901710, G39000100" +County and PUMA "G3901730, G39000200" +County and PUMA "G3901730, G39000300" +County and PUMA "G3901730, G39000600" +County and PUMA "G3901750, G39002300" +County and PUMA "G4000010, G40000200" +County and PUMA "G4000030, G40000500" +County and PUMA "G4000050, G40000702" +County and PUMA "G4000070, G40000500" +County and PUMA "G4000090, G40000400" +County and PUMA "G4000110, G40000500" +County and PUMA "G4000130, G40000702" +County and PUMA "G4000150, G40000602" +County and PUMA "G4000170, G40000800" +County and PUMA "G4000190, G40000701" +County and PUMA "G4000210, G40000200" +County and PUMA "G4000230, G40000300" +County and PUMA "G4000250, G40000500" +County and PUMA "G4000270, G40000900" +County and PUMA "G4000290, G40000702" +County and PUMA "G4000310, G40000601" +County and PUMA "G4000310, G40000602" +County and PUMA "G4000330, G40000602" +County and PUMA "G4000350, G40000100" +County and PUMA "G4000370, G40001204" +County and PUMA "G4000370, G40001501" +County and PUMA "G4000370, G40001601" +County and PUMA "G4000390, G40000400" +County and PUMA "G4000410, G40000100" +County and PUMA "G4000430, G40000500" +County and PUMA "G4000450, G40000500" +County and PUMA "G4000470, G40001400" +County and PUMA "G4000490, G40000701" +County and PUMA "G4000510, G40001101" +County and PUMA "G4000530, G40000500" +County and PUMA "G4000550, G40000400" +County and PUMA "G4000570, G40000400" +County and PUMA "G4000590, G40000500" +County and PUMA "G4000610, G40000300" +County and PUMA "G4000630, G40001501" +County and PUMA "G4000650, G40000400" +County and PUMA "G4000670, G40000602" +County and PUMA "G4000690, G40000702" +County and PUMA "G4000710, G40001400" +County and PUMA "G4000730, G40000500" +County and PUMA "G4000750, G40000400" +County and PUMA "G4000770, G40000300" +County and PUMA "G4000790, G40000300" +County and PUMA "G4000810, G40001102" +County and PUMA "G4000830, G40001102" +County and PUMA "G4000850, G40000701" +County and PUMA "G4000870, G40001101" +County and PUMA "G4000890, G40000300" +County and PUMA "G4000910, G40001302" +County and PUMA "G4000930, G40000500" +County and PUMA "G4000950, G40000702" +County and PUMA "G4000970, G40000100" +County and PUMA "G4000990, G40000701" +County and PUMA "G4001010, G40001302" +County and PUMA "G4001030, G40001400" +County and PUMA "G4001050, G40000100" +County and PUMA "G4001070, G40001501" +County and PUMA "G4001090, G40001001" +County and PUMA "G4001090, G40001002" +County and PUMA "G4001090, G40001003" +County and PUMA "G4001090, G40001004" +County and PUMA "G4001090, G40001005" +County and PUMA "G4001090, G40001006" +County and PUMA "G4001110, G40001302" +County and PUMA "G4001130, G40001204" +County and PUMA "G4001130, G40001601" +County and PUMA "G4001150, G40000100" +County and PUMA "G4001170, G40001601" +County and PUMA "G4001190, G40001501" +County and PUMA "G4001210, G40000300" +County and PUMA "G4001230, G40000701" +County and PUMA "G4001230, G40000702" +County and PUMA "G4001250, G40001101" +County and PUMA "G4001250, G40001102" +County and PUMA "G4001270, G40000300" +County and PUMA "G4001290, G40000400" +County and PUMA "G4001310, G40000100" +County and PUMA "G4001310, G40001301" +County and PUMA "G4001330, G40001501" +County and PUMA "G4001350, G40000200" +County and PUMA "G4001370, G40000602" +County and PUMA "G4001390, G40000500" +County and PUMA "G4001410, G40000602" +County and PUMA "G4001430, G40001201" +County and PUMA "G4001430, G40001202" +County and PUMA "G4001430, G40001203" +County and PUMA "G4001430, G40001204" +County and PUMA "G4001450, G40001301" +County and PUMA "G4001450, G40001302" +County and PUMA "G4001470, G40001601" +County and PUMA "G4001490, G40000400" +County and PUMA "G4001510, G40000500" +County and PUMA "G4001530, G40000500" +County and PUMA "G4100010, G41000100" +County and PUMA "G4100030, G41000600" +County and PUMA "G4100050, G41001317" +County and PUMA "G4100050, G41001318" +County and PUMA "G4100050, G41001319" +County and PUMA "G4100070, G41000500" +County and PUMA "G4100090, G41000500" +County and PUMA "G4100110, G41000800" +County and PUMA "G4100130, G41000200" +County and PUMA "G4100150, G41000800" +County and PUMA "G4100170, G41000400" +County and PUMA "G4100190, G41001000" +County and PUMA "G4100210, G41000200" +County and PUMA "G4100230, G41000200" +County and PUMA "G4100250, G41000300" +County and PUMA "G4100270, G41000200" +County and PUMA "G4100290, G41000901" +County and PUMA "G4100290, G41000902" +County and PUMA "G4100310, G41000200" +County and PUMA "G4100330, G41000800" +County and PUMA "G4100350, G41000300" +County and PUMA "G4100370, G41000300" +County and PUMA "G4100390, G41000703" +County and PUMA "G4100390, G41000704" +County and PUMA "G4100390, G41000705" +County and PUMA "G4100410, G41000500" +County and PUMA "G4100430, G41000600" +County and PUMA "G4100450, G41000300" +County and PUMA "G4100470, G41001103" +County and PUMA "G4100470, G41001104" +County and PUMA "G4100470, G41001105" +County and PUMA "G4100490, G41000200" +County and PUMA "G4100510, G41001301" +County and PUMA "G4100510, G41001302" +County and PUMA "G4100510, G41001303" +County and PUMA "G4100510, G41001305" +County and PUMA "G4100510, G41001314" +County and PUMA "G4100510, G41001316" +County and PUMA "G4100530, G41001200" +County and PUMA "G4100550, G41000200" +County and PUMA "G4100570, G41000500" +County and PUMA "G4100590, G41000100" +County and PUMA "G4100610, G41000100" +County and PUMA "G4100630, G41000100" +County and PUMA "G4100650, G41000200" +County and PUMA "G4100670, G41001320" +County and PUMA "G4100670, G41001321" +County and PUMA "G4100670, G41001322" +County and PUMA "G4100670, G41001323" +County and PUMA "G4100670, G41001324" +County and PUMA "G4100690, G41000200" +County and PUMA "G4100710, G41001200" +County and PUMA "G4200010, G42003701" +County and PUMA "G4200030, G42001701" +County and PUMA "G4200030, G42001702" +County and PUMA "G4200030, G42001801" +County and PUMA "G4200030, G42001802" +County and PUMA "G4200030, G42001803" +County and PUMA "G4200030, G42001804" +County and PUMA "G4200030, G42001805" +County and PUMA "G4200030, G42001806" +County and PUMA "G4200030, G42001807" +County and PUMA "G4200050, G42001900" +County and PUMA "G4200070, G42001501" +County and PUMA "G4200070, G42001502" +County and PUMA "G4200090, G42003800" +County and PUMA "G4200110, G42002701" +County and PUMA "G4200110, G42002702" +County and PUMA "G4200110, G42002703" +County and PUMA "G4200130, G42002200" +County and PUMA "G4200150, G42000400" +County and PUMA "G4200170, G42003001" +County and PUMA "G4200170, G42003002" +County and PUMA "G4200170, G42003003" +County and PUMA "G4200170, G42003004" +County and PUMA "G4200190, G42001600" +County and PUMA "G4200210, G42002100" +County and PUMA "G4200230, G42000300" +County and PUMA "G4200250, G42002801" +County and PUMA "G4200270, G42001200" +County and PUMA "G4200290, G42003401" +County and PUMA "G4200290, G42003402" +County and PUMA "G4200290, G42003403" +County and PUMA "G4200290, G42003404" +County and PUMA "G4200310, G42001300" +County and PUMA "G4200330, G42000300" +County and PUMA "G4200350, G42000900" +County and PUMA "G4200370, G42000803" +County and PUMA "G4200390, G42000200" +County and PUMA "G4200410, G42002301" +County and PUMA "G4200410, G42002302" +County and PUMA "G4200430, G42002401" +County and PUMA "G4200430, G42002402" +County and PUMA "G4200450, G42003301" +County and PUMA "G4200450, G42003302" +County and PUMA "G4200450, G42003303" +County and PUMA "G4200450, G42003304" +County and PUMA "G4200470, G42000300" +County and PUMA "G4200490, G42000101" +County and PUMA "G4200490, G42000102" +County and PUMA "G4200510, G42003900" +County and PUMA "G4200530, G42001300" +County and PUMA "G4200550, G42003701" +County and PUMA "G4200550, G42003702" +County and PUMA "G4200570, G42003800" +County and PUMA "G4200590, G42004002" +County and PUMA "G4200610, G42002200" +County and PUMA "G4200630, G42001900" +County and PUMA "G4200650, G42001300" +County and PUMA "G4200670, G42001100" +County and PUMA "G4200690, G42000701" +County and PUMA "G4200690, G42000702" +County and PUMA "G4200710, G42003501" +County and PUMA "G4200710, G42003502" +County and PUMA "G4200710, G42003503" +County and PUMA "G4200710, G42003504" +County and PUMA "G4200730, G42001501" +County and PUMA "G4200750, G42002500" +County and PUMA "G4200770, G42002801" +County and PUMA "G4200770, G42002802" +County and PUMA "G4200770, G42002803" +County and PUMA "G4200770, G42002901" +County and PUMA "G4200790, G42000801" +County and PUMA "G4200790, G42000802" +County and PUMA "G4200790, G42000803" +County and PUMA "G4200810, G42000900" +County and PUMA "G4200830, G42000300" +County and PUMA "G4200850, G42001400" +County and PUMA "G4200870, G42001100" +County and PUMA "G4200890, G42000600" +County and PUMA "G4200910, G42003101" +County and PUMA "G4200910, G42003102" +County and PUMA "G4200910, G42003103" +County and PUMA "G4200910, G42003104" +County and PUMA "G4200910, G42003105" +County and PUMA "G4200910, G42003106" +County and PUMA "G4200930, G42001000" +County and PUMA "G4200950, G42002901" +County and PUMA "G4200950, G42002902" +County and PUMA "G4200970, G42001000" +County and PUMA "G4200990, G42002301" +County and PUMA "G4201010, G42003201" +County and PUMA "G4201010, G42003202" +County and PUMA "G4201010, G42003203" +County and PUMA "G4201010, G42003204" +County and PUMA "G4201010, G42003205" +County and PUMA "G4201010, G42003206" +County and PUMA "G4201010, G42003207" +County and PUMA "G4201010, G42003208" +County and PUMA "G4201010, G42003209" +County and PUMA "G4201010, G42003210" +County and PUMA "G4201010, G42003211" +County and PUMA "G4201030, G42000500" +County and PUMA "G4201050, G42000300" +County and PUMA "G4201070, G42002600" +County and PUMA "G4201090, G42001100" +County and PUMA "G4201110, G42003800" +County and PUMA "G4201130, G42000400" +County and PUMA "G4201150, G42000500" +County and PUMA "G4201170, G42000400" +County and PUMA "G4201190, G42001100" +County and PUMA "G4201210, G42001300" +County and PUMA "G4201230, G42000200" +County and PUMA "G4201250, G42004001" +County and PUMA "G4201250, G42004002" +County and PUMA "G4201270, G42000500" +County and PUMA "G4201290, G42002001" +County and PUMA "G4201290, G42002002" +County and PUMA "G4201290, G42002003" +County and PUMA "G4201310, G42000702" +County and PUMA "G4201330, G42003601" +County and PUMA "G4201330, G42003602" +County and PUMA "G4201330, G42003603" +County and PUMA "G4400010, G44000300" +County and PUMA "G4400030, G44000201" +County and PUMA "G4400050, G44000300" +County and PUMA "G4400070, G44000101" +County and PUMA "G4400070, G44000102" +County and PUMA "G4400070, G44000103" +County and PUMA "G4400070, G44000104" +County and PUMA "G4400090, G44000400" +County and PUMA "G4500010, G45001600" +County and PUMA "G4500030, G45001500" +County and PUMA "G4500050, G45001300" +County and PUMA "G4500070, G45000200" +County and PUMA "G4500090, G45001300" +County and PUMA "G4500110, G45001300" +County and PUMA "G4500130, G45001400" +County and PUMA "G4500150, G45001201" +County and PUMA "G4500150, G45001202" +County and PUMA "G4500150, G45001203" +County and PUMA "G4500150, G45001204" +County and PUMA "G4500170, G45000605" +County and PUMA "G4500190, G45001201" +County and PUMA "G4500190, G45001202" +County and PUMA "G4500190, G45001203" +County and PUMA "G4500190, G45001204" +County and PUMA "G4500210, G45000400" +County and PUMA "G4500230, G45000400" +County and PUMA "G4500250, G45000700" +County and PUMA "G4500270, G45000800" +County and PUMA "G4500290, G45001300" +County and PUMA "G4500310, G45000900" +County and PUMA "G4500330, G45001000" +County and PUMA "G4500350, G45001201" +County and PUMA "G4500350, G45001204" +County and PUMA "G4500370, G45001500" +County and PUMA "G4500390, G45000603" +County and PUMA "G4500410, G45000900" +County and PUMA "G4500430, G45001000" +County and PUMA "G4500450, G45000102" +County and PUMA "G4500450, G45000103" +County and PUMA "G4500450, G45000104" +County and PUMA "G4500450, G45000105" +County and PUMA "G4500470, G45001600" +County and PUMA "G4500490, G45001300" +County and PUMA "G4500510, G45001101" +County and PUMA "G4500510, G45001102" +County and PUMA "G4500530, G45001400" +County and PUMA "G4500550, G45000605" +County and PUMA "G4500570, G45000700" +County and PUMA "G4500590, G45000105" +County and PUMA "G4500610, G45000800" +County and PUMA "G4500630, G45000601" +County and PUMA "G4500630, G45000602" +County and PUMA "G4500650, G45001600" +County and PUMA "G4500670, G45001000" +County and PUMA "G4500690, G45000700" +County and PUMA "G4500710, G45000400" +County and PUMA "G4500730, G45000101" +County and PUMA "G4500750, G45001300" +County and PUMA "G4500770, G45000101" +County and PUMA "G4500790, G45000603" +County and PUMA "G4500790, G45000604" +County and PUMA "G4500790, G45000605" +County and PUMA "G4500810, G45000601" +County and PUMA "G4500830, G45000301" +County and PUMA "G4500830, G45000302" +County and PUMA "G4500850, G45000800" +County and PUMA "G4500870, G45000400" +County and PUMA "G4500890, G45000800" +County and PUMA "G4500910, G45000501" +County and PUMA "G4500910, G45000502" +County and PUMA "G4600030, G46000400" +County and PUMA "G4600050, G46000400" +County and PUMA "G4600070, G46000200" +County and PUMA "G4600090, G46000400" +County and PUMA "G4600110, G46000400" +County and PUMA "G4600130, G46000300" +County and PUMA "G4600150, G46000400" +County and PUMA "G4600170, G46000200" +County and PUMA "G4600190, G46000100" +County and PUMA "G4600210, G46000300" +County and PUMA "G4600230, G46000200" +County and PUMA "G4600250, G46000300" +County and PUMA "G4600270, G46000500" +County and PUMA "G4600290, G46000300" +County and PUMA "G4600310, G46000200" +County and PUMA "G4600330, G46000100" +County and PUMA "G4600350, G46000400" +County and PUMA "G4600370, G46000300" +County and PUMA "G4600390, G46000300" +County and PUMA "G4600410, G46000200" +County and PUMA "G4600430, G46000400" +County and PUMA "G4600450, G46000300" +County and PUMA "G4600470, G46000200" +County and PUMA "G4600490, G46000300" +County and PUMA "G4600510, G46000300" +County and PUMA "G4600530, G46000200" +County and PUMA "G4600550, G46000200" +County and PUMA "G4600570, G46000300" +County and PUMA "G4600590, G46000400" +County and PUMA "G4600610, G46000400" +County and PUMA "G4600630, G46000100" +County and PUMA "G4600650, G46000200" +County and PUMA "G4600670, G46000400" +County and PUMA "G4600690, G46000200" +County and PUMA "G4600710, G46000200" +County and PUMA "G4600730, G46000400" +County and PUMA "G4600750, G46000200" +County and PUMA "G4600770, G46000400" +County and PUMA "G4600790, G46000400" +County and PUMA "G4600810, G46000100" +County and PUMA "G4600830, G46000500" +County and PUMA "G4600830, G46000600" +County and PUMA "G4600850, G46000200" +County and PUMA "G4600870, G46000500" +County and PUMA "G4600890, G46000300" +County and PUMA "G4600910, G46000300" +County and PUMA "G4600930, G46000100" +County and PUMA "G4600950, G46000200" +County and PUMA "G4600970, G46000400" +County and PUMA "G4600990, G46000500" +County and PUMA "G4600990, G46000600" +County and PUMA "G4601010, G46000400" +County and PUMA "G4601020, G46000200" +County and PUMA "G4601030, G46000100" +County and PUMA "G4601050, G46000100" +County and PUMA "G4601070, G46000300" +County and PUMA "G4601090, G46000300" +County and PUMA "G4601110, G46000400" +County and PUMA "G4601150, G46000300" +County and PUMA "G4601170, G46000200" +County and PUMA "G4601190, G46000200" +County and PUMA "G4601210, G46000200" +County and PUMA "G4601230, G46000200" +County and PUMA "G4601250, G46000500" +County and PUMA "G4601270, G46000500" +County and PUMA "G4601290, G46000300" +County and PUMA "G4601350, G46000500" +County and PUMA "G4601370, G46000200" +County and PUMA "G4700010, G47001601" +County and PUMA "G4700030, G47002700" +County and PUMA "G4700050, G47000200" +County and PUMA "G4700070, G47002100" +County and PUMA "G4700090, G47001700" +County and PUMA "G4700110, G47001900" +County and PUMA "G4700130, G47000900" +County and PUMA "G4700150, G47000600" +County and PUMA "G4700170, G47000200" +County and PUMA "G4700190, G47001200" +County and PUMA "G4700210, G47000400" +County and PUMA "G4700230, G47003000" +County and PUMA "G4700250, G47000900" +County and PUMA "G4700270, G47000700" +County and PUMA "G4700290, G47001400" +County and PUMA "G4700310, G47002200" +County and PUMA "G4700330, G47000100" +County and PUMA "G4700350, G47000800" +County and PUMA "G4700370, G47002501" +County and PUMA "G4700370, G47002502" +County and PUMA "G4700370, G47002503" +County and PUMA "G4700370, G47002504" +County and PUMA "G4700370, G47002505" +County and PUMA "G4700390, G47002900" +County and PUMA "G4700410, G47000600" +County and PUMA "G4700430, G47000400" +County and PUMA "G4700450, G47000100" +County and PUMA "G4700470, G47003100" +County and PUMA "G4700490, G47000800" +County and PUMA "G4700510, G47002200" +County and PUMA "G4700530, G47000100" +County and PUMA "G4700550, G47002800" +County and PUMA "G4700570, G47001400" +County and PUMA "G4700590, G47001200" +County and PUMA "G4700610, G47002100" +County and PUMA "G4700630, G47001400" +County and PUMA "G4700650, G47002001" +County and PUMA "G4700650, G47002002" +County and PUMA "G4700650, G47002003" +County and PUMA "G4700670, G47000900" +County and PUMA "G4700690, G47002900" +County and PUMA "G4700710, G47002900" +County and PUMA "G4700730, G47001000" +County and PUMA "G4700750, G47002900" +County and PUMA "G4700770, G47002900" +County and PUMA "G4700790, G47000200" +County and PUMA "G4700810, G47000400" +County and PUMA "G4700830, G47000200" +County and PUMA "G4700850, G47000200" +County and PUMA "G4700870, G47000700" +County and PUMA "G4700890, G47001500" +County and PUMA "G4700910, G47001200" +County and PUMA "G4700930, G47001601" +County and PUMA "G4700930, G47001602" +County and PUMA "G4700930, G47001603" +County and PUMA "G4700930, G47001604" +County and PUMA "G4700950, G47000100" +County and PUMA "G4700970, G47003100" +County and PUMA "G4700990, G47002800" +County and PUMA "G4701010, G47002800" +County and PUMA "G4701030, G47002200" +County and PUMA "G4701050, G47001800" +County and PUMA "G4701070, G47001900" +County and PUMA "G4701090, G47002900" +County and PUMA "G4701110, G47000600" +County and PUMA "G4701130, G47003000" +County and PUMA "G4701150, G47002100" +County and PUMA "G4701170, G47002700" +County and PUMA "G4701190, G47002700" +County and PUMA "G4701210, G47002100" +County and PUMA "G4701230, G47001800" +County and PUMA "G4701250, G47000300" +County and PUMA "G4701270, G47002200" +County and PUMA "G4701290, G47000900" +County and PUMA "G4701310, G47000100" +County and PUMA "G4701330, G47000700" +County and PUMA "G4701350, G47002800" +County and PUMA "G4701370, G47000700" +County and PUMA "G4701390, G47001900" +County and PUMA "G4701410, G47000700" +County and PUMA "G4701430, G47002100" +County and PUMA "G4701450, G47001800" +County and PUMA "G4701470, G47000400" +County and PUMA "G4701490, G47002401" +County and PUMA "G4701490, G47002402" +County and PUMA "G4701510, G47000900" +County and PUMA "G4701530, G47002100" +County and PUMA "G4701550, G47001500" +County and PUMA "G4701570, G47003201" +County and PUMA "G4701570, G47003202" +County and PUMA "G4701570, G47003203" +County and PUMA "G4701570, G47003204" +County and PUMA "G4701570, G47003205" +County and PUMA "G4701570, G47003206" +County and PUMA "G4701570, G47003207" +County and PUMA "G4701570, G47003208" +County and PUMA "G4701590, G47000600" +County and PUMA "G4701610, G47000300" +County and PUMA "G4701630, G47001000" +County and PUMA "G4701630, G47001100" +County and PUMA "G4701650, G47000500" +County and PUMA "G4701670, G47003100" +County and PUMA "G4701690, G47000600" +County and PUMA "G4701710, G47001200" +County and PUMA "G4701730, G47001601" +County and PUMA "G4701750, G47000800" +County and PUMA "G4701770, G47000600" +County and PUMA "G4701790, G47001300" +County and PUMA "G4701810, G47002800" +County and PUMA "G4701830, G47000200" +County and PUMA "G4701850, G47000800" +County and PUMA "G4701870, G47002600" +County and PUMA "G4701890, G47002300" +County and PUMA "G4800010, G48001800" +County and PUMA "G4800030, G48003200" +County and PUMA "G4800050, G48004000" +County and PUMA "G4800070, G48006500" +County and PUMA "G4800090, G48000600" +County and PUMA "G4800110, G48000100" +County and PUMA "G4800130, G48006100" +County and PUMA "G4800150, G48005000" +County and PUMA "G4800170, G48000400" +County and PUMA "G4800190, G48006100" +County and PUMA "G4800210, G48005100" +County and PUMA "G4800230, G48000600" +County and PUMA "G4800250, G48006500" +County and PUMA "G4800270, G48003501" +County and PUMA "G4800270, G48003502" +County and PUMA "G4800290, G48005901" +County and PUMA "G4800290, G48005902" +County and PUMA "G4800290, G48005903" +County and PUMA "G4800290, G48005904" +County and PUMA "G4800290, G48005905" +County and PUMA "G4800290, G48005906" +County and PUMA "G4800290, G48005907" +County and PUMA "G4800290, G48005908" +County and PUMA "G4800290, G48005909" +County and PUMA "G4800290, G48005910" +County and PUMA "G4800290, G48005911" +County and PUMA "G4800290, G48005912" +County and PUMA "G4800290, G48005913" +County and PUMA "G4800290, G48005914" +County and PUMA "G4800290, G48005915" +County and PUMA "G4800290, G48005916" +County and PUMA "G4800310, G48006000" +County and PUMA "G4800330, G48002800" +County and PUMA "G4800350, G48003700" +County and PUMA "G4800370, G48001100" +County and PUMA "G4800390, G48004801" +County and PUMA "G4800390, G48004802" +County and PUMA "G4800390, G48004803" +County and PUMA "G4800410, G48003602" +County and PUMA "G4800430, G48003200" +County and PUMA "G4800450, G48000100" +County and PUMA "G4800470, G48006900" +County and PUMA "G4800490, G48002600" +County and PUMA "G4800510, G48003601" +County and PUMA "G4800530, G48003400" +County and PUMA "G4800550, G48005100" +County and PUMA "G4800570, G48005600" +County and PUMA "G4800590, G48002600" +County and PUMA "G4800610, G48006701" +County and PUMA "G4800610, G48006702" +County and PUMA "G4800610, G48006703" +County and PUMA "G4800630, G48001300" +County and PUMA "G4800650, G48000100" +County and PUMA "G4800670, G48001100" +County and PUMA "G4800690, G48000100" +County and PUMA "G4800710, G48004400" +County and PUMA "G4800730, G48001700" +County and PUMA "G4800750, G48000100" +County and PUMA "G4800770, G48000600" +County and PUMA "G4800790, G48000400" +County and PUMA "G4800810, G48002800" +County and PUMA "G4800830, G48002600" +County and PUMA "G4800850, G48001901" +County and PUMA "G4800850, G48001902" +County and PUMA "G4800850, G48001903" +County and PUMA "G4800850, G48001904" +County and PUMA "G4800850, G48001905" +County and PUMA "G4800850, G48001906" +County and PUMA "G4800850, G48001907" +County and PUMA "G4800870, G48000100" +County and PUMA "G4800890, G48005000" +County and PUMA "G4800910, G48005800" +County and PUMA "G4800930, G48002600" +County and PUMA "G4800950, G48002800" +County and PUMA "G4800970, G48000800" +County and PUMA "G4800990, G48003400" +County and PUMA "G4801010, G48000600" +County and PUMA "G4801030, G48003200" +County and PUMA "G4801050, G48002800" +County and PUMA "G4801070, G48000400" +County and PUMA "G4801090, G48003200" +County and PUMA "G4801110, G48000100" +County and PUMA "G4801130, G48002301" +County and PUMA "G4801130, G48002302" +County and PUMA "G4801130, G48002303" +County and PUMA "G4801130, G48002304" +County and PUMA "G4801130, G48002305" +County and PUMA "G4801130, G48002306" +County and PUMA "G4801130, G48002307" +County and PUMA "G4801130, G48002308" +County and PUMA "G4801130, G48002309" +County and PUMA "G4801130, G48002310" +County and PUMA "G4801130, G48002311" +County and PUMA "G4801130, G48002312" +County and PUMA "G4801130, G48002313" +County and PUMA "G4801130, G48002314" +County and PUMA "G4801130, G48002315" +County and PUMA "G4801130, G48002316" +County and PUMA "G4801130, G48002317" +County and PUMA "G4801130, G48002318" +County and PUMA "G4801130, G48002319" +County and PUMA "G4801130, G48002320" +County and PUMA "G4801130, G48002321" +County and PUMA "G4801130, G48002322" +County and PUMA "G4801150, G48002800" +County and PUMA "G4801170, G48000100" +County and PUMA "G4801190, G48001000" +County and PUMA "G4801210, G48002001" +County and PUMA "G4801210, G48002002" +County and PUMA "G4801210, G48002003" +County and PUMA "G4801210, G48002004" +County and PUMA "G4801210, G48002005" +County and PUMA "G4801210, G48002006" +County and PUMA "G4801230, G48005500" +County and PUMA "G4801250, G48000400" +County and PUMA "G4801270, G48006200" +County and PUMA "G4801290, G48000100" +County and PUMA "G4801310, G48006400" +County and PUMA "G4801330, G48002600" +County and PUMA "G4801350, G48003100" +County and PUMA "G4801370, G48006200" +County and PUMA "G4801390, G48002101" +County and PUMA "G4801410, G48003301" +County and PUMA "G4801410, G48003302" +County and PUMA "G4801410, G48003303" +County and PUMA "G4801410, G48003304" +County and PUMA "G4801410, G48003305" +County and PUMA "G4801410, G48003306" +County and PUMA "G4801430, G48002200" +County and PUMA "G4801450, G48003700" +County and PUMA "G4801470, G48000800" +County and PUMA "G4801490, G48005100" +County and PUMA "G4801510, G48002600" +County and PUMA "G4801530, G48000400" +County and PUMA "G4801550, G48000600" +County and PUMA "G4801570, G48004901" +County and PUMA "G4801570, G48004902" +County and PUMA "G4801570, G48004903" +County and PUMA "G4801570, G48004904" +County and PUMA "G4801570, G48004905" +County and PUMA "G4801590, G48001000" +County and PUMA "G4801610, G48003700" +County and PUMA "G4801630, G48006100" +County and PUMA "G4801650, G48003200" +County and PUMA "G4801670, G48004701" +County and PUMA "G4801670, G48004702" +County and PUMA "G4801690, G48000400" +County and PUMA "G4801710, G48006000" +County and PUMA "G4801730, G48002800" +County and PUMA "G4801750, G48005500" +County and PUMA "G4801770, G48005500" +County and PUMA "G4801790, G48000100" +County and PUMA "G4801810, G48000800" +County and PUMA "G4801830, G48001600" +County and PUMA "G4801850, G48003601" +County and PUMA "G4801870, G48005700" +County and PUMA "G4801890, G48000400" +County and PUMA "G4801910, G48000100" +County and PUMA "G4801930, G48003400" +County and PUMA "G4801950, G48000100" +County and PUMA "G4801970, G48000600" +County and PUMA "G4801990, G48004200" +County and PUMA "G4802010, G48004601" +County and PUMA "G4802010, G48004602" +County and PUMA "G4802010, G48004603" +County and PUMA "G4802010, G48004604" +County and PUMA "G4802010, G48004605" +County and PUMA "G4802010, G48004606" +County and PUMA "G4802010, G48004607" +County and PUMA "G4802010, G48004608" +County and PUMA "G4802010, G48004609" +County and PUMA "G4802010, G48004610" +County and PUMA "G4802010, G48004611" +County and PUMA "G4802010, G48004612" +County and PUMA "G4802010, G48004613" +County and PUMA "G4802010, G48004614" +County and PUMA "G4802010, G48004615" +County and PUMA "G4802010, G48004616" +County and PUMA "G4802010, G48004617" +County and PUMA "G4802010, G48004618" +County and PUMA "G4802010, G48004619" +County and PUMA "G4802010, G48004620" +County and PUMA "G4802010, G48004621" +County and PUMA "G4802010, G48004622" +County and PUMA "G4802010, G48004623" +County and PUMA "G4802010, G48004624" +County and PUMA "G4802010, G48004625" +County and PUMA "G4802010, G48004626" +County and PUMA "G4802010, G48004627" +County and PUMA "G4802010, G48004628" +County and PUMA "G4802010, G48004629" +County and PUMA "G4802010, G48004630" +County and PUMA "G4802010, G48004631" +County and PUMA "G4802010, G48004632" +County and PUMA "G4802010, G48004633" +County and PUMA "G4802010, G48004634" +County and PUMA "G4802010, G48004635" +County and PUMA "G4802010, G48004636" +County and PUMA "G4802010, G48004637" +County and PUMA "G4802010, G48004638" +County and PUMA "G4802030, G48001200" +County and PUMA "G4802050, G48000100" +County and PUMA "G4802070, G48002600" +County and PUMA "G4802090, G48005400" +County and PUMA "G4802110, G48000100" +County and PUMA "G4802130, G48001800" +County and PUMA "G4802150, G48006801" +County and PUMA "G4802150, G48006802" +County and PUMA "G4802150, G48006803" +County and PUMA "G4802150, G48006804" +County and PUMA "G4802150, G48006805" +County and PUMA "G4802150, G48006806" +County and PUMA "G4802150, G48006807" +County and PUMA "G4802170, G48003700" +County and PUMA "G4802190, G48000400" +County and PUMA "G4802210, G48002200" +County and PUMA "G4802230, G48001000" +County and PUMA "G4802250, G48003900" +County and PUMA "G4802270, G48002800" +County and PUMA "G4802290, G48003200" +County and PUMA "G4802310, G48000900" +County and PUMA "G4802330, G48000100" +County and PUMA "G4802350, G48002800" +County and PUMA "G4802370, G48000600" +County and PUMA "G4802390, G48005500" +County and PUMA "G4802410, G48004100" +County and PUMA "G4802430, G48003200" +County and PUMA "G4802450, G48004301" +County and PUMA "G4802450, G48004302" +County and PUMA "G4802470, G48006400" +County and PUMA "G4802490, G48006900" +County and PUMA "G4802510, G48002102" +County and PUMA "G4802530, G48002600" +County and PUMA "G4802550, G48005500" +County and PUMA "G4802570, G48001400" +County and PUMA "G4802590, G48006000" +County and PUMA "G4802610, G48006900" +County and PUMA "G4802630, G48002600" +County and PUMA "G4802650, G48006000" +County and PUMA "G4802670, G48002800" +County and PUMA "G4802690, G48000400" +County and PUMA "G4802710, G48006200" +County and PUMA "G4802730, G48006900" +County and PUMA "G4802750, G48002600" +County and PUMA "G4802770, G48001000" +County and PUMA "G4802790, G48000400" +County and PUMA "G4802810, G48003400" +County and PUMA "G4802830, G48006200" +County and PUMA "G4802850, G48005500" +County and PUMA "G4802870, G48005100" +County and PUMA "G4802890, G48003601" +County and PUMA "G4802910, G48004400" +County and PUMA "G4802930, G48003700" +County and PUMA "G4802950, G48000100" +County and PUMA "G4802970, G48006400" +County and PUMA "G4802990, G48003400" +County and PUMA "G4803010, G48003200" +County and PUMA "G4803030, G48000501" +County and PUMA "G4803030, G48000502" +County and PUMA "G4803050, G48000400" +County and PUMA "G4803070, G48002800" +County and PUMA "G4803090, G48003801" +County and PUMA "G4803090, G48003802" +County and PUMA "G4803110, G48006400" +County and PUMA "G4803130, G48003601" +County and PUMA "G4803150, G48001200" +County and PUMA "G4803170, G48002800" +County and PUMA "G4803190, G48002800" +County and PUMA "G4803210, G48005000" +County and PUMA "G4803230, G48006200" +County and PUMA "G4803250, G48006100" +County and PUMA "G4803270, G48002800" +County and PUMA "G4803290, G48003000" +County and PUMA "G4803310, G48003601" +County and PUMA "G4803330, G48003400" +County and PUMA "G4803350, G48002600" +County and PUMA "G4803370, G48000600" +County and PUMA "G4803390, G48004501" +County and PUMA "G4803390, G48004502" +County and PUMA "G4803390, G48004503" +County and PUMA "G4803390, G48004504" +County and PUMA "G4803410, G48000100" +County and PUMA "G4803430, G48001000" +County and PUMA "G4803450, G48000400" +County and PUMA "G4803470, G48004000" +County and PUMA "G4803490, G48003700" +County and PUMA "G4803510, G48004100" +County and PUMA "G4803530, G48002600" +County and PUMA "G4803550, G48006601" +County and PUMA "G4803550, G48006602" +County and PUMA "G4803550, G48006603" +County and PUMA "G4803570, G48000100" +County and PUMA "G4803590, G48000100" +County and PUMA "G4803610, G48004200" +County and PUMA "G4803630, G48002200" +County and PUMA "G4803650, G48001700" +County and PUMA "G4803670, G48002400" +County and PUMA "G4803690, G48000100" +County and PUMA "G4803710, G48003200" +County and PUMA "G4803730, G48003900" +County and PUMA "G4803750, G48000200" +County and PUMA "G4803770, G48003200" +County and PUMA "G4803790, G48001300" +County and PUMA "G4803810, G48000300" +County and PUMA "G4803830, G48002800" +County and PUMA "G4803850, G48006200" +County and PUMA "G4803870, G48001000" +County and PUMA "G4803890, G48003200" +County and PUMA "G4803910, G48006500" +County and PUMA "G4803930, G48000100" +County and PUMA "G4803950, G48003601" +County and PUMA "G4803970, G48000900" +County and PUMA "G4803990, G48002600" +County and PUMA "G4804010, G48001700" +County and PUMA "G4804030, G48004100" +County and PUMA "G4804050, G48004100" +County and PUMA "G4804070, G48003900" +County and PUMA "G4804090, G48006500" +County and PUMA "G4804110, G48003400" +County and PUMA "G4804130, G48002800" +County and PUMA "G4804150, G48002600" +County and PUMA "G4804170, G48002600" +County and PUMA "G4804190, G48004100" +County and PUMA "G4804210, G48000100" +County and PUMA "G4804230, G48001501" +County and PUMA "G4804230, G48001502" +County and PUMA "G4804250, G48002200" +County and PUMA "G4804270, G48006400" +County and PUMA "G4804290, G48002600" +County and PUMA "G4804310, G48002800" +County and PUMA "G4804330, G48002600" +County and PUMA "G4804350, G48002800" +County and PUMA "G4804370, G48000100" +County and PUMA "G4804390, G48002501" +County and PUMA "G4804390, G48002502" +County and PUMA "G4804390, G48002503" +County and PUMA "G4804390, G48002504" +County and PUMA "G4804390, G48002505" +County and PUMA "G4804390, G48002506" +County and PUMA "G4804390, G48002507" +County and PUMA "G4804390, G48002508" +County and PUMA "G4804390, G48002509" +County and PUMA "G4804390, G48002510" +County and PUMA "G4804390, G48002511" +County and PUMA "G4804390, G48002512" +County and PUMA "G4804390, G48002513" +County and PUMA "G4804390, G48002514" +County and PUMA "G4804390, G48002515" +County and PUMA "G4804390, G48002516" +County and PUMA "G4804410, G48002700" +County and PUMA "G4804430, G48003200" +County and PUMA "G4804450, G48000400" +County and PUMA "G4804470, G48002600" +County and PUMA "G4804490, G48001000" +County and PUMA "G4804510, G48002900" +County and PUMA "G4804530, G48005301" +County and PUMA "G4804530, G48005302" +County and PUMA "G4804530, G48005303" +County and PUMA "G4804530, G48005304" +County and PUMA "G4804530, G48005305" +County and PUMA "G4804530, G48005306" +County and PUMA "G4804530, G48005307" +County and PUMA "G4804530, G48005308" +County and PUMA "G4804530, G48005309" +County and PUMA "G4804550, G48003900" +County and PUMA "G4804570, G48004100" +County and PUMA "G4804590, G48001200" +County and PUMA "G4804610, G48002800" +County and PUMA "G4804630, G48006200" +County and PUMA "G4804650, G48006200" +County and PUMA "G4804670, G48001300" +County and PUMA "G4804690, G48005600" +County and PUMA "G4804710, G48003900" +County and PUMA "G4804730, G48005000" +County and PUMA "G4804750, G48003200" +County and PUMA "G4804770, G48003601" +County and PUMA "G4804790, G48006301" +County and PUMA "G4804790, G48006302" +County and PUMA "G4804810, G48005000" +County and PUMA "G4804830, G48000100" +County and PUMA "G4804850, G48000700" +County and PUMA "G4804870, G48000600" +County and PUMA "G4804890, G48006900" +County and PUMA "G4804910, G48005201" +County and PUMA "G4804910, G48005202" +County and PUMA "G4804910, G48005203" +County and PUMA "G4804910, G48005204" +County and PUMA "G4804930, G48005500" +County and PUMA "G4804950, G48003200" +County and PUMA "G4804970, G48000600" +County and PUMA "G4804990, G48001300" +County and PUMA "G4805010, G48000400" +County and PUMA "G4805030, G48000600" +County and PUMA "G4805050, G48006400" +County and PUMA "G4805070, G48006200" +County and PUMA "G4900010, G49021001" +County and PUMA "G4900030, G49003001" +County and PUMA "G4900050, G49005001" +County and PUMA "G4900070, G49013001" +County and PUMA "G4900090, G49013001" +County and PUMA "G4900110, G49011001" +County and PUMA "G4900110, G49011002" +County and PUMA "G4900130, G49013001" +County and PUMA "G4900150, G49013001" +County and PUMA "G4900170, G49021001" +County and PUMA "G4900190, G49013001" +County and PUMA "G4900210, G49021001" +County and PUMA "G4900230, G49021001" +County and PUMA "G4900250, G49021001" +County and PUMA "G4900270, G49021001" +County and PUMA "G4900290, G49005001" +County and PUMA "G4900310, G49021001" +County and PUMA "G4900330, G49005001" +County and PUMA "G4900350, G49035001" +County and PUMA "G4900350, G49035002" +County and PUMA "G4900350, G49035003" +County and PUMA "G4900350, G49035004" +County and PUMA "G4900350, G49035005" +County and PUMA "G4900350, G49035006" +County and PUMA "G4900350, G49035007" +County and PUMA "G4900350, G49035008" +County and PUMA "G4900350, G49035009" +County and PUMA "G4900370, G49013001" +County and PUMA "G4900390, G49021001" +County and PUMA "G4900410, G49021001" +County and PUMA "G4900430, G49005001" +County and PUMA "G4900450, G49003001" +County and PUMA "G4900470, G49013001" +County and PUMA "G4900490, G49049001" +County and PUMA "G4900490, G49049002" +County and PUMA "G4900490, G49049003" +County and PUMA "G4900490, G49049004" +County and PUMA "G4900510, G49013001" +County and PUMA "G4900530, G49053001" +County and PUMA "G4900550, G49021001" +County and PUMA "G4900570, G49057001" +County and PUMA "G4900570, G49057002" +County and PUMA "G5000010, G50000400" +County and PUMA "G5000030, G50000400" +County and PUMA "G5000050, G50000200" +County and PUMA "G5000070, G50000100" +County and PUMA "G5000090, G50000200" +County and PUMA "G5000110, G50000100" +County and PUMA "G5000130, G50000100" +County and PUMA "G5000150, G50000200" +County and PUMA "G5000170, G50000300" +County and PUMA "G5000190, G50000200" +County and PUMA "G5000210, G50000400" +County and PUMA "G5000230, G50000200" +County and PUMA "G5000250, G50000300" +County and PUMA "G5000270, G50000300" +County and PUMA "G5100010, G51051125" +County and PUMA "G5100030, G51051089" +County and PUMA "G5100030, G51051090" +County and PUMA "G5100050, G51051045" +County and PUMA "G5100070, G51051105" +County and PUMA "G5100090, G51051095" +County and PUMA "G5100110, G51051095" +County and PUMA "G5100130, G51001301" +County and PUMA "G5100130, G51001302" +County and PUMA "G5100150, G51051080" +County and PUMA "G5100170, G51051080" +County and PUMA "G5100190, G51051095" +County and PUMA "G5100210, G51051020" +County and PUMA "G5100230, G51051045" +County and PUMA "G5100250, G51051105" +County and PUMA "G5100270, G51051010" +County and PUMA "G5100290, G51051105" +County and PUMA "G5100310, G51051096" +County and PUMA "G5100330, G51051120" +County and PUMA "G5100350, G51051020" +County and PUMA "G5100360, G51051215" +County and PUMA "G5100370, G51051105" +County and PUMA "G5100410, G51004101" +County and PUMA "G5100410, G51004102" +County and PUMA "G5100410, G51004103" +County and PUMA "G5100430, G51051084" +County and PUMA "G5100450, G51051045" +County and PUMA "G5100470, G51051087" +County and PUMA "G5100490, G51051105" +County and PUMA "G5100510, G51051010" +County and PUMA "G5100530, G51051135" +County and PUMA "G5100570, G51051125" +County and PUMA "G5100590, G51059301" +County and PUMA "G5100590, G51059302" +County and PUMA "G5100590, G51059303" +County and PUMA "G5100590, G51059304" +County and PUMA "G5100590, G51059305" +County and PUMA "G5100590, G51059306" +County and PUMA "G5100590, G51059307" +County and PUMA "G5100590, G51059308" +County and PUMA "G5100590, G51059309" +County and PUMA "G5100610, G51051087" +County and PUMA "G5100630, G51051040" +County and PUMA "G5100650, G51051089" +County and PUMA "G5100670, G51051045" +County and PUMA "G5100690, G51051084" +County and PUMA "G5100710, G51051040" +County and PUMA "G5100730, G51051125" +County and PUMA "G5100750, G51051215" +County and PUMA "G5100770, G51051020" +County and PUMA "G5100790, G51051090" +County and PUMA "G5100810, G51051135" +County and PUMA "G5100830, G51051105" +County and PUMA "G5100850, G51051215" +County and PUMA "G5100870, G51051224" +County and PUMA "G5100870, G51051225" +County and PUMA "G5100890, G51051097" +County and PUMA "G5100910, G51051080" +County and PUMA "G5100930, G51051145" +County and PUMA "G5100950, G51051206" +County and PUMA "G5100970, G51051125" +County and PUMA "G5100990, G51051120" +County and PUMA "G5101010, G51051215" +County and PUMA "G5101030, G51051125" +County and PUMA "G5101050, G51051010" +County and PUMA "G5101070, G51010701" +County and PUMA "G5101070, G51010702" +County and PUMA "G5101070, G51010703" +County and PUMA "G5101090, G51051089" +County and PUMA "G5101110, G51051105" +County and PUMA "G5101130, G51051087" +County and PUMA "G5101150, G51051125" +County and PUMA "G5101170, G51051105" +County and PUMA "G5101190, G51051125" +County and PUMA "G5101210, G51051040" +County and PUMA "G5101250, G51051089" +County and PUMA "G5101270, G51051215" +County and PUMA "G5101310, G51051125" +County and PUMA "G5101330, G51051125" +County and PUMA "G5101350, G51051105" +County and PUMA "G5101370, G51051087" +County and PUMA "G5101390, G51051085" +County and PUMA "G5101410, G51051097" +County and PUMA "G5101430, G51051097" +County and PUMA "G5101450, G51051215" +County and PUMA "G5101470, G51051105" +County and PUMA "G5101490, G51051135" +County and PUMA "G5101530, G51051244" +County and PUMA "G5101530, G51051245" +County and PUMA "G5101530, G51051246" +County and PUMA "G5101550, G51051040" +County and PUMA "G5101570, G51051087" +County and PUMA "G5101590, G51051125" +County and PUMA "G5101610, G51051044" +County and PUMA "G5101610, G51051045" +County and PUMA "G5101630, G51051080" +County and PUMA "G5101650, G51051110" +County and PUMA "G5101670, G51051010" +County and PUMA "G5101690, G51051010" +County and PUMA "G5101710, G51051085" +County and PUMA "G5101730, G51051020" +County and PUMA "G5101750, G51051145" +County and PUMA "G5101770, G51051120" +County and PUMA "G5101790, G51051115" +County and PUMA "G5101810, G51051135" +County and PUMA "G5101830, G51051135" +County and PUMA "G5101850, G51051010" +County and PUMA "G5101870, G51051085" +County and PUMA "G5101910, G51051020" +County and PUMA "G5101930, G51051125" +County and PUMA "G5101950, G51051010" +County and PUMA "G5101970, G51051020" +County and PUMA "G5101990, G51051206" +County and PUMA "G5105100, G51051255" +County and PUMA "G5105200, G51051020" +County and PUMA "G5105300, G51051080" +County and PUMA "G5105400, G51051090" +County and PUMA "G5105500, G51055001" +County and PUMA "G5105500, G51055002" +County and PUMA "G5105700, G51051135" +County and PUMA "G5105800, G51051045" +County and PUMA "G5105900, G51051097" +County and PUMA "G5105950, G51051135" +County and PUMA "G5106000, G51059303" +County and PUMA "G5106100, G51059308" +County and PUMA "G5106200, G51051145" +County and PUMA "G5106300, G51051115" +County and PUMA "G5106400, G51051020" +County and PUMA "G5106500, G51051186" +County and PUMA "G5106600, G51051110" +County and PUMA "G5106700, G51051135" +County and PUMA "G5106780, G51051080" +County and PUMA "G5106800, G51051096" +County and PUMA "G5106830, G51051245" +County and PUMA "G5106850, G51051245" +County and PUMA "G5106900, G51051097" +County and PUMA "G5107000, G51051175" +County and PUMA "G5107100, G51051154" +County and PUMA "G5107100, G51051155" +County and PUMA "G5107200, G51051010" +County and PUMA "G5107300, G51051135" +County and PUMA "G5107350, G51051206" +County and PUMA "G5107400, G51051155" +County and PUMA "G5107500, G51051040" +County and PUMA "G5107600, G51051235" +County and PUMA "G5107700, G51051044" +County and PUMA "G5107750, G51051044" +County and PUMA "G5107900, G51051080" +County and PUMA "G5108000, G51051145" +County and PUMA "G5108100, G51051164" +County and PUMA "G5108100, G51051165" +County and PUMA "G5108100, G51051167" +County and PUMA "G5108200, G51051080" +County and PUMA "G5108300, G51051206" +County and PUMA "G5108400, G51051084" +County and PUMA "G5300010, G53010600" +County and PUMA "G5300030, G53010600" +County and PUMA "G5300050, G53010701" +County and PUMA "G5300050, G53010702" +County and PUMA "G5300050, G53010703" +County and PUMA "G5300070, G53010300" +County and PUMA "G5300090, G53011900" +County and PUMA "G5300110, G53011101" +County and PUMA "G5300110, G53011102" +County and PUMA "G5300110, G53011103" +County and PUMA "G5300110, G53011104" +County and PUMA "G5300130, G53010600" +County and PUMA "G5300150, G53011200" +County and PUMA "G5300170, G53010300" +County and PUMA "G5300190, G53010400" +County and PUMA "G5300210, G53010701" +County and PUMA "G5300210, G53010703" +County and PUMA "G5300230, G53010600" +County and PUMA "G5300250, G53010800" +County and PUMA "G5300270, G53011300" +County and PUMA "G5300290, G53010200" +County and PUMA "G5300310, G53011900" +County and PUMA "G5300330, G53011601" +County and PUMA "G5300330, G53011602" +County and PUMA "G5300330, G53011603" +County and PUMA "G5300330, G53011604" +County and PUMA "G5300330, G53011605" +County and PUMA "G5300330, G53011606" +County and PUMA "G5300330, G53011607" +County and PUMA "G5300330, G53011608" +County and PUMA "G5300330, G53011609" +County and PUMA "G5300330, G53011610" +County and PUMA "G5300330, G53011611" +County and PUMA "G5300330, G53011612" +County and PUMA "G5300330, G53011613" +County and PUMA "G5300330, G53011614" +County and PUMA "G5300330, G53011615" +County and PUMA "G5300330, G53011616" +County and PUMA "G5300350, G53011801" +County and PUMA "G5300350, G53011802" +County and PUMA "G5300370, G53010800" +County and PUMA "G5300390, G53011000" +County and PUMA "G5300410, G53011000" +County and PUMA "G5300430, G53010600" +County and PUMA "G5300450, G53011300" +County and PUMA "G5300470, G53010400" +County and PUMA "G5300490, G53011200" +County and PUMA "G5300510, G53010400" +County and PUMA "G5300530, G53011501" +County and PUMA "G5300530, G53011502" +County and PUMA "G5300530, G53011503" +County and PUMA "G5300530, G53011504" +County and PUMA "G5300530, G53011505" +County and PUMA "G5300530, G53011506" +County and PUMA "G5300530, G53011507" +County and PUMA "G5300550, G53010200" +County and PUMA "G5300570, G53010200" +County and PUMA "G5300590, G53011000" +County and PUMA "G5300610, G53011701" +County and PUMA "G5300610, G53011702" +County and PUMA "G5300610, G53011703" +County and PUMA "G5300610, G53011704" +County and PUMA "G5300610, G53011705" +County and PUMA "G5300610, G53011706" +County and PUMA "G5300630, G53010501" +County and PUMA "G5300630, G53010502" +County and PUMA "G5300630, G53010503" +County and PUMA "G5300630, G53010504" +County and PUMA "G5300650, G53010400" +County and PUMA "G5300670, G53011401" +County and PUMA "G5300670, G53011402" +County and PUMA "G5300690, G53011200" +County and PUMA "G5300710, G53010703" +County and PUMA "G5300730, G53010100" +County and PUMA "G5300750, G53010600" +County and PUMA "G5300770, G53010901" +County and PUMA "G5300770, G53010902" +County and PUMA "G5400010, G54000500" +County and PUMA "G5400030, G54000400" +County and PUMA "G5400050, G54000900" +County and PUMA "G5400070, G54000600" +County and PUMA "G5400090, G54000100" +County and PUMA "G5400110, G54000800" +County and PUMA "G5400130, G54000600" +County and PUMA "G5400150, G54001000" +County and PUMA "G5400170, G54000200" +County and PUMA "G5400190, G54001200" +County and PUMA "G5400210, G54000600" +County and PUMA "G5400230, G54000500" +County and PUMA "G5400250, G54001100" +County and PUMA "G5400270, G54000400" +County and PUMA "G5400290, G54000100" +County and PUMA "G5400310, G54000500" +County and PUMA "G5400330, G54000200" +County and PUMA "G5400350, G54000600" +County and PUMA "G5400370, G54000400" +County and PUMA "G5400390, G54001000" +County and PUMA "G5400410, G54000500" +County and PUMA "G5400430, G54000900" +County and PUMA "G5400450, G54001300" +County and PUMA "G5400470, G54001300" +County and PUMA "G5400490, G54000200" +County and PUMA "G5400510, G54000100" +County and PUMA "G5400530, G54000800" +County and PUMA "G5400550, G54001200" +County and PUMA "G5400570, G54000400" +County and PUMA "G5400590, G54001300" +County and PUMA "G5400610, G54000300" +County and PUMA "G5400630, G54001100" +County and PUMA "G5400650, G54000400" +County and PUMA "G5400670, G54001100" +County and PUMA "G5400690, G54000100" +County and PUMA "G5400710, G54000500" +County and PUMA "G5400730, G54000700" +County and PUMA "G5400750, G54001100" +County and PUMA "G5400770, G54000300" +County and PUMA "G5400790, G54000900" +County and PUMA "G5400810, G54001200" +County and PUMA "G5400830, G54000500" +County and PUMA "G5400850, G54000600" +County and PUMA "G5400870, G54000600" +County and PUMA "G5400890, G54001100" +County and PUMA "G5400910, G54000200" +County and PUMA "G5400930, G54000500" +County and PUMA "G5400950, G54000600" +County and PUMA "G5400970, G54000500" +County and PUMA "G5400990, G54000800" +County and PUMA "G5401010, G54001100" +County and PUMA "G5401030, G54000600" +County and PUMA "G5401050, G54000700" +County and PUMA "G5401070, G54000700" +County and PUMA "G5401090, G54001300" +County and PUMA "G5500010, G55001601" +County and PUMA "G5500030, G55000100" +County and PUMA "G5500050, G55055101" +County and PUMA "G5500070, G55000100" +County and PUMA "G5500090, G55000200" +County and PUMA "G5500090, G55000300" +County and PUMA "G5500110, G55000700" +County and PUMA "G5500130, G55000100" +County and PUMA "G5500150, G55001401" +County and PUMA "G5500170, G55055101" +County and PUMA "G5500170, G55055103" +County and PUMA "G5500190, G55055101" +County and PUMA "G5500210, G55001000" +County and PUMA "G5500230, G55000700" +County and PUMA "G5500250, G55000101" +County and PUMA "G5500250, G55000102" +County and PUMA "G5500250, G55000103" +County and PUMA "G5500270, G55001001" +County and PUMA "G5500290, G55001300" +County and PUMA "G5500310, G55000100" +County and PUMA "G5500330, G55055102" +County and PUMA "G5500350, G55055103" +County and PUMA "G5500370, G55001300" +County and PUMA "G5500390, G55001401" +County and PUMA "G5500410, G55000600" +County and PUMA "G5500430, G55000800" +County and PUMA "G5500450, G55000800" +County and PUMA "G5500470, G55001400" +County and PUMA "G5500490, G55000800" +County and PUMA "G5500510, G55000100" +County and PUMA "G5500530, G55000700" +County and PUMA "G5500550, G55001001" +County and PUMA "G5500570, G55001601" +County and PUMA "G5500590, G55010000" +County and PUMA "G5500610, G55001301" +County and PUMA "G5500630, G55000900" +County and PUMA "G5500650, G55000800" +County and PUMA "G5500670, G55000600" +County and PUMA "G5500690, G55000600" +County and PUMA "G5500710, G55001301" +County and PUMA "G5500730, G55001600" +County and PUMA "G5500750, G55001300" +County and PUMA "G5500770, G55001400" +County and PUMA "G5500780, G55001400" +County and PUMA "G5500790, G55040101" +County and PUMA "G5500790, G55040301" +County and PUMA "G5500790, G55040701" +County and PUMA "G5500790, G55041001" +County and PUMA "G5500790, G55041002" +County and PUMA "G5500790, G55041003" +County and PUMA "G5500790, G55041004" +County and PUMA "G5500790, G55041005" +County and PUMA "G5500810, G55000700" +County and PUMA "G5500830, G55001300" +County and PUMA "G5500850, G55000600" +County and PUMA "G5500870, G55001500" +County and PUMA "G5500890, G55020000" +County and PUMA "G5500910, G55000700" +County and PUMA "G5500930, G55000700" +County and PUMA "G5500950, G55055101" +County and PUMA "G5500970, G55001601" +County and PUMA "G5500990, G55000100" +County and PUMA "G5501010, G55030000" +County and PUMA "G5501030, G55000800" +County and PUMA "G5501050, G55002400" +County and PUMA "G5501070, G55000100" +County and PUMA "G5501090, G55055102" +County and PUMA "G5501110, G55001000" +County and PUMA "G5501130, G55000100" +County and PUMA "G5501150, G55001400" +County and PUMA "G5501170, G55002500" +County and PUMA "G5501190, G55000100" +County and PUMA "G5501210, G55000700" +County and PUMA "G5501230, G55000700" +County and PUMA "G5501250, G55000600" +County and PUMA "G5501270, G55050000" +County and PUMA "G5501290, G55000100" +County and PUMA "G5501310, G55020000" +County and PUMA "G5501330, G55070101" +County and PUMA "G5501330, G55070201" +County and PUMA "G5501330, G55070301" +County and PUMA "G5501350, G55001400" +County and PUMA "G5501370, G55001400" +County and PUMA "G5501390, G55001501" +County and PUMA "G5501410, G55001601" +County and PUMA "G5600010, G56000300" +County and PUMA "G5600030, G56000100" +County and PUMA "G5600050, G56000200" +County and PUMA "G5600070, G56000400" +County and PUMA "G5600090, G56000400" +County and PUMA "G5600110, G56000200" +County and PUMA "G5600130, G56000500" +County and PUMA "G5600150, G56000200" +County and PUMA "G5600170, G56000500" +County and PUMA "G5600190, G56000200" +County and PUMA "G5600210, G56000300" +County and PUMA "G5600230, G56000100" +County and PUMA "G5600250, G56000400" +County and PUMA "G5600270, G56000200" +County and PUMA "G5600290, G56000100" +County and PUMA "G5600310, G56000200" +County and PUMA "G5600330, G56000100" +County and PUMA "G5600350, G56000500" +County and PUMA "G5600370, G56000500" +County and PUMA "G5600390, G56000100" +County and PUMA "G5600410, G56000500" +County and PUMA "G5600430, G56000200" +County and PUMA "G5600450, G56000200" +County and PUMA "G7200010, G72000401" +County and PUMA "G7200030, G72000101" +County and PUMA "G7200050, G72000102" +County and PUMA "G7200070, G72000602" +County and PUMA "G7200090, G72000602" +County and PUMA "G7200110, G72000101" +County and PUMA "G7200130, G72000301" +County and PUMA "G7200150, G72000701" +County and PUMA "G7200170, G72000301" +County and PUMA "G7200190, G72000601" +County and PUMA "G7200210, G72000801" +County and PUMA "G7200210, G72000802" +County and PUMA "G7200230, G72000201" +County and PUMA "G7200250, G72001001" +County and PUMA "G7200270, G72000302" +County and PUMA "G7200290, G72000902" +County and PUMA "G7200310, G72000901" +County and PUMA "G7200310, G72000902" +County and PUMA "G7200330, G72000803" +County and PUMA "G7200350, G72000602" +County and PUMA "G7200370, G72001101" +County and PUMA "G7200390, G72000501" +County and PUMA "G7200410, G72000602" +County and PUMA "G7200430, G72000403" +County and PUMA "G7200450, G72000601" +County and PUMA "G7200470, G72000601" +County and PUMA "G7200490, G72001101" +County and PUMA "G7200510, G72000502" +County and PUMA "G7200530, G72001101" +County and PUMA "G7200540, G72000301" +County and PUMA "G7200550, G72000401" +County and PUMA "G7200570, G72000701" +County and PUMA "G7200590, G72000401" +County and PUMA "G7200610, G72000803" +County and PUMA "G7200630, G72001002" +County and PUMA "G7200650, G72000302" +County and PUMA "G7200670, G72000202" +County and PUMA "G7200690, G72001102" +County and PUMA "G7200710, G72000102" +County and PUMA "G7200730, G72000402" +County and PUMA "G7200750, G72000403" +County and PUMA "G7200770, G72001002" +County and PUMA "G7200790, G72000201" +County and PUMA "G7200810, G72000302" +County and PUMA "G7200830, G72000202" +County and PUMA "G7200850, G72001002" +County and PUMA "G7200870, G72000902" +County and PUMA "G7200890, G72001101" +County and PUMA "G7200910, G72000501" +County and PUMA "G7200930, G72000202" +County and PUMA "G7200950, G72000701" +County and PUMA "G7200970, G72000202" +County and PUMA "G7200990, G72000101" +County and PUMA "G7201010, G72000501" +County and PUMA "G7201030, G72001102" +County and PUMA "G7201050, G72000601" +County and PUMA "G7201070, G72000601" +County and PUMA "G7201090, G72000701" +County and PUMA "G7201110, G72000401" +County and PUMA "G7201130, G72000402" +County and PUMA "G7201150, G72000102" +County and PUMA "G7201170, G72000101" +County and PUMA "G7201190, G72001101" +County and PUMA "G7201210, G72000201" +County and PUMA "G7201230, G72000701" +County and PUMA "G7201250, G72000201" +County and PUMA "G7201270, G72000804" +County and PUMA "G7201270, G72000805" +County and PUMA "G7201270, G72000806" +County and PUMA "G7201290, G72001002" +County and PUMA "G7201310, G72000101" +County and PUMA "G7201330, G72000403" +County and PUMA "G7201350, G72000503" +County and PUMA "G7201370, G72000502" +County and PUMA "G7201390, G72000902" +County and PUMA "G7201410, G72000302" +County and PUMA "G7201430, G72000503" +County and PUMA "G7201450, G72000501" +County and PUMA "G7201470, G72001101" +County and PUMA "G7201490, G72000403" +County and PUMA "G7201510, G72001102" +County and PUMA "G7201530, G72000401" +Custom State AK +Custom State Others +Dehumidifier "65 pints/day, 50% RH" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=1.8 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 +Dehumidifier "65 pints/day, 50% RH, 2.0 EF" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=2 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 +Dehumidifier "65 pints/day, 60% RH" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=1.8 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.6 dehumidifier_fraction_dehumidification_load_served=1 +Dehumidifier None ResStockArguments dehumidifier_type=none dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=0 dehumidifier_capacity=40 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 +Dishwasher 144 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=144 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=13 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 199 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=199 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=18 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 220 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=220 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=19 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 255 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=255 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=21 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 270 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=270 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=22 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 290 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=290 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=23 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 318 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=318 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=25 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher None ResStockArguments dishwasher_present=false dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=0 dishwasher_label_electric_rate=0 dishwasher_label_gas_rate=0 dishwasher_label_annual_gas_cost=0 dishwasher_label_usage=0 dishwasher_place_setting_capacity=0 +Dishwasher Void +Dishwasher Usage Level 100% Usage ResStockArguments dishwasher_usage_multiplier=1.0 +Dishwasher Usage Level 120% Usage ResStockArguments dishwasher_usage_multiplier=1.2 +Dishwasher Usage Level 80% Usage ResStockArguments dishwasher_usage_multiplier=0.8 +Door Area 20 ft^2 ResStockArguments door_area=20 +Door Area 30 ft^2 ResStockArguments door_area=30 +Door Area 40 ft^2 ResStockArguments door_area=40 +Doors Fiberglass ResStockArguments door_rvalue=5 +Doors Steel ResStockArguments door_rvalue=5 +Doors Wood ResStockArguments door_rvalue=2.1 +Duct Leakage and Insulation "0% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0 ducts_return_leakage_to_outside_value=0 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "10% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "10% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "10% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "10% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "14% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "14% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "14% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "14% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "15% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "15% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "15% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "15% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "20% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "20% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "20% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "20% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "22.5% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "22.5% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "22.5% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "22.5% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "24% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "24% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "24% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "24% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "30% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "30% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "30% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "30% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "34% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "34% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "34% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "34% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "53% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "53% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "53% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "53% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "6% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "6% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "6% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "6% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "7.5% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "7.5% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "7.5% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "7.5% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "85% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "85% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "85% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "85% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation None ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0 ducts_return_leakage_to_outside_value=0 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Location Attic ResStockArguments ducts_supply_location=attic ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=attic ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location Crawlspace ResStockArguments ducts_supply_location=crawlspace ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=crawlspace ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location Garage ResStockArguments ducts_supply_location=garage ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=garage ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location Heated Basement ResStockArguments ducts_supply_location=basement - conditioned ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=basement - conditioned ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location Living Space ResStockArguments ducts_supply_location=conditioned space ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=conditioned space ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location None ResStockArguments ducts_supply_location=conditioned space ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=conditioned space ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=0 +Duct Location Unheated Basement ResStockArguments ducts_supply_location=basement - unconditioned ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=basement - unconditioned ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Eaves 1 ft ResStockArguments geometry_eaves_depth=1 +Eaves 2 ft ResStockArguments geometry_eaves_depth=2 +Eaves 3 ft ResStockArguments geometry_eaves_depth=3 +Eaves None ResStockArguments geometry_eaves_depth=0 +Electric Vehicle "EV, 4000 miles, 0.3 kWh/mi" ResStockArguments misc_plug_loads_vehicle_present=true misc_plug_loads_vehicle_annual_kwh=1481 misc_plug_loads_vehicle_usage_multiplier=1.0 misc_plug_loads_vehicle_2_usage_multiplier=1.0 +Electric Vehicle "EV, 5000 miles, 0.3 kWh/mi" ResStockArguments misc_plug_loads_vehicle_present=true misc_plug_loads_vehicle_annual_kwh=1852 misc_plug_loads_vehicle_usage_multiplier=1.0 misc_plug_loads_vehicle_2_usage_multiplier=1.0 +Electric Vehicle None ResStockArguments misc_plug_loads_vehicle_present=false misc_plug_loads_vehicle_annual_kwh=0 misc_plug_loads_vehicle_usage_multiplier=0 misc_plug_loads_vehicle_2_usage_multiplier=0 +Energystar Climate Zone 2023 North-Central +Energystar Climate Zone 2023 Northern +Energystar Climate Zone 2023 South-Central +Energystar Climate Zone 2023 Southern +Energystar Climate Zone 2023 Void +Federal Poverty Level 0-100% +Federal Poverty Level 100-150% +Federal Poverty Level 150-200% +Federal Poverty Level 200-300% +Federal Poverty Level 300-400% +Federal Poverty Level 400%+ +Federal Poverty Level Not Available +Generation And Emissions Assessment Region AZNMc +Generation And Emissions Assessment Region CAMXc +Generation And Emissions Assessment Region ERCTc +Generation And Emissions Assessment Region FRCCc +Generation And Emissions Assessment Region MROEc +Generation And Emissions Assessment Region MROWc +Generation And Emissions Assessment Region NEWEc +Generation And Emissions Assessment Region NWPPc +Generation And Emissions Assessment Region NYSTc +Generation And Emissions Assessment Region None +Generation And Emissions Assessment Region RFCEc +Generation And Emissions Assessment Region RFCMc +Generation And Emissions Assessment Region RFCWc +Generation And Emissions Assessment Region RMPAc +Generation And Emissions Assessment Region SPNOc +Generation And Emissions Assessment Region SPSOc +Generation And Emissions Assessment Region SRMVc +Generation And Emissions Assessment Region SRMWc +Generation And Emissions Assessment Region SRSOc +Generation And Emissions Assessment Region SRTVc +Generation And Emissions Assessment Region SRVCc +Geometry Attic Type Finished Attic or Cathedral Ceilings ResStockArguments geometry_attic_type=ConditionedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 +Geometry Attic Type None ResStockArguments geometry_attic_type=FlatRoof geometry_roof_type=gable geometry_roof_pitch=6:12 +Geometry Attic Type Unvented Attic ResStockArguments geometry_attic_type=UnventedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 +Geometry Attic Type Vented Attic ResStockArguments geometry_attic_type=VentedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 +Geometry Building Horizontal Location MF Left ResStockArguments geometry_unit_horizontal_location=Left +Geometry Building Horizontal Location MF Middle ResStockArguments geometry_unit_horizontal_location=Middle +Geometry Building Horizontal Location MF None +Geometry Building Horizontal Location MF Not Applicable ResStockArguments geometry_unit_horizontal_location=None +Geometry Building Horizontal Location MF Right ResStockArguments geometry_unit_horizontal_location=Right +Geometry Building Horizontal Location SFA Left ResStockArguments geometry_unit_horizontal_location=Left +Geometry Building Horizontal Location SFA Middle ResStockArguments geometry_unit_horizontal_location=Middle +Geometry Building Horizontal Location SFA None +Geometry Building Horizontal Location SFA Right ResStockArguments geometry_unit_horizontal_location=Right +Geometry Building Level MF Bottom ResStockArguments geometry_unit_level=Bottom +Geometry Building Level MF Middle ResStockArguments geometry_unit_level=Middle +Geometry Building Level MF None +Geometry Building Level MF Top ResStockArguments geometry_unit_level=Top +Geometry Building Number Units MF 10 ResStockArguments geometry_building_num_units=10 +Geometry Building Number Units MF 102 ResStockArguments geometry_building_num_units=102 +Geometry Building Number Units MF 11 ResStockArguments geometry_building_num_units=11 +Geometry Building Number Units MF 116 ResStockArguments geometry_building_num_units=116 +Geometry Building Number Units MF 12 ResStockArguments geometry_building_num_units=12 +Geometry Building Number Units MF 13 ResStockArguments geometry_building_num_units=13 +Geometry Building Number Units MF 14 ResStockArguments geometry_building_num_units=14 +Geometry Building Number Units MF 15 ResStockArguments geometry_building_num_units=15 +Geometry Building Number Units MF 16 ResStockArguments geometry_building_num_units=16 +Geometry Building Number Units MF 17 ResStockArguments geometry_building_num_units=17 +Geometry Building Number Units MF 18 ResStockArguments geometry_building_num_units=18 +Geometry Building Number Units MF 183 ResStockArguments geometry_building_num_units=183 +Geometry Building Number Units MF 19 ResStockArguments geometry_building_num_units=19 +Geometry Building Number Units MF 2 ResStockArguments geometry_building_num_units=2 +Geometry Building Number Units MF 20 ResStockArguments geometry_building_num_units=20 +Geometry Building Number Units MF 21 ResStockArguments geometry_building_num_units=21 +Geometry Building Number Units MF 24 ResStockArguments geometry_building_num_units=24 +Geometry Building Number Units MF 3 ResStockArguments geometry_building_num_units=3 +Geometry Building Number Units MF 30 ResStockArguments geometry_building_num_units=30 +Geometry Building Number Units MF 323 ResStockArguments geometry_building_num_units=323 +Geometry Building Number Units MF 326 ResStockArguments geometry_building_num_units=326 +Geometry Building Number Units MF 36 ResStockArguments geometry_building_num_units=36 +Geometry Building Number Units MF 4 ResStockArguments geometry_building_num_units=4 +Geometry Building Number Units MF 43 ResStockArguments geometry_building_num_units=43 +Geometry Building Number Units MF 5 ResStockArguments geometry_building_num_units=5 +Geometry Building Number Units MF 6 ResStockArguments geometry_building_num_units=6 +Geometry Building Number Units MF 67 ResStockArguments geometry_building_num_units=67 +Geometry Building Number Units MF 7 ResStockArguments geometry_building_num_units=7 +Geometry Building Number Units MF 8 ResStockArguments geometry_building_num_units=8 +Geometry Building Number Units MF 9 ResStockArguments geometry_building_num_units=9 +Geometry Building Number Units MF None +Geometry Building Number Units SFA 10 ResStockArguments geometry_building_num_units=10 +Geometry Building Number Units SFA 12 ResStockArguments geometry_building_num_units=12 +Geometry Building Number Units SFA 144 ResStockArguments geometry_building_num_units=144 +Geometry Building Number Units SFA 15 ResStockArguments geometry_building_num_units=15 +Geometry Building Number Units SFA 16 ResStockArguments geometry_building_num_units=16 +Geometry Building Number Units SFA 2 ResStockArguments geometry_building_num_units=2 +Geometry Building Number Units SFA 20 ResStockArguments geometry_building_num_units=20 +Geometry Building Number Units SFA 24 ResStockArguments geometry_building_num_units=24 +Geometry Building Number Units SFA 3 ResStockArguments geometry_building_num_units=3 +Geometry Building Number Units SFA 30 ResStockArguments geometry_building_num_units=30 +Geometry Building Number Units SFA 36 ResStockArguments geometry_building_num_units=36 +Geometry Building Number Units SFA 4 ResStockArguments geometry_building_num_units=4 +Geometry Building Number Units SFA 5 ResStockArguments geometry_building_num_units=5 +Geometry Building Number Units SFA 50 ResStockArguments geometry_building_num_units=50 +Geometry Building Number Units SFA 6 ResStockArguments geometry_building_num_units=6 +Geometry Building Number Units SFA 60 ResStockArguments geometry_building_num_units=60 +Geometry Building Number Units SFA 7 ResStockArguments geometry_building_num_units=7 +Geometry Building Number Units SFA 8 ResStockArguments geometry_building_num_units=8 +Geometry Building Number Units SFA 9 ResStockArguments geometry_building_num_units=9 +Geometry Building Number Units SFA 90 ResStockArguments geometry_building_num_units=90 +Geometry Building Number Units SFA None +Geometry Building Type ACS 10 to 19 Unit +Geometry Building Type ACS 2 Unit +Geometry Building Type ACS 20 to 49 Unit +Geometry Building Type ACS 3 or 4 Unit +Geometry Building Type ACS 5 to 9 Unit +Geometry Building Type ACS 50 or more Unit +Geometry Building Type ACS Mobile Home +Geometry Building Type ACS Single-Family Attached +Geometry Building Type ACS Single-Family Detached +Geometry Building Type Height "Multifamily with 5+ units, 1-3 stories" +Geometry Building Type Height "Multifamily with 5+ units, 4-7 stories" +Geometry Building Type Height "Multifamily with 5+ units, 8+ stories" +Geometry Building Type Height Mobile Home +Geometry Building Type Height Multifamily with 2-4 Units +Geometry Building Type Height Single-Family Attached +Geometry Building Type Height Single-Family Detached +Geometry Building Type RECS Mobile Home ResStockArguments geometry_unit_type=single-family detached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=1.8 +Geometry Building Type RECS Multi-Family with 2 - 4 Units ResStockArguments geometry_unit_type=apartment unit geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 +Geometry Building Type RECS Multi-Family with 5+ Units ResStockArguments geometry_unit_type=apartment unit geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 +Geometry Building Type RECS Single-Family Attached ResStockArguments geometry_unit_type=single-family attached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 +Geometry Building Type RECS Single-Family Detached ResStockArguments geometry_unit_type=single-family detached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=1.8 +Geometry Floor Area 0-499 ResStockArguments geometry_unit_cfa_bin=0-499 geometry_unit_cfa=auto geometry_garage_protrusion=0.75 +Geometry Floor Area 1000-1499 ResStockArguments geometry_unit_cfa_bin=1000-1499 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 1500-1999 ResStockArguments geometry_unit_cfa_bin=1500-1999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 2000-2499 ResStockArguments geometry_unit_cfa_bin=2000-2499 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 2500-2999 ResStockArguments geometry_unit_cfa_bin=2500-2999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 3000-3999 ResStockArguments geometry_unit_cfa_bin=3000-3999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 4000+ ResStockArguments geometry_unit_cfa_bin=4000+ geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 500-749 ResStockArguments geometry_unit_cfa_bin=500-749 geometry_unit_cfa=auto geometry_garage_protrusion=0.75 +Geometry Floor Area 750-999 ResStockArguments geometry_unit_cfa_bin=750-999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area Bin 0-1499 +Geometry Floor Area Bin 1500-2499 +Geometry Floor Area Bin 2500-3999 +Geometry Floor Area Bin 4000+ +Geometry Foundation Type Ambient ResStockArguments geometry_foundation_type=Ambient geometry_foundation_height=4 geometry_foundation_height_above_grade=4 geometry_rim_joist_height=0 +Geometry Foundation Type Conditioned Crawlspace ResStockArguments geometry_foundation_type=ConditionedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Foundation Type Heated Basement ResStockArguments geometry_foundation_type=ConditionedBasement geometry_foundation_height=8 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Foundation Type Slab ResStockArguments geometry_foundation_type=SlabOnGrade geometry_foundation_height=0 geometry_foundation_height_above_grade=0 geometry_rim_joist_height=0 +Geometry Foundation Type Unheated Basement ResStockArguments geometry_foundation_type=UnconditionedBasement geometry_foundation_height=8 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Foundation Type Unvented Crawlspace ResStockArguments geometry_foundation_type=UnventedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Foundation Type Vented Crawlspace ResStockArguments geometry_foundation_type=VentedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Garage 1 Car ResStockArguments geometry_garage_width=12 geometry_garage_depth=24 geometry_garage_position=Right +Geometry Garage 2 Car ResStockArguments geometry_garage_width=24 geometry_garage_depth=24 geometry_garage_position=Right +Geometry Garage 3 Car ResStockArguments geometry_garage_width=36 geometry_garage_depth=24 geometry_garage_position=Right +Geometry Garage None ResStockArguments geometry_garage_width=0 geometry_garage_depth=24 geometry_garage_position=Right +Geometry Heated Basement No +Geometry Heated Basement Yes +Geometry Number Units ACS bins 10 to 19 Units +Geometry Number Units ACS bins 20 to 49 Units +Geometry Number Units ACS bins 5 to 9 Units +Geometry Number Units ACS bins 50 or more +Geometry Number Units ACS bins <5 +Geometry Space Combination "Mobile Home, Ambient, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Slab, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Slab, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage" +Geometry Space Combination Void +Geometry Stories 1 ResStockArguments geometry_num_floors_above_grade=1 +Geometry Stories 10 ResStockArguments geometry_num_floors_above_grade=10 +Geometry Stories 11 ResStockArguments geometry_num_floors_above_grade=11 +Geometry Stories 12 ResStockArguments geometry_num_floors_above_grade=12 +Geometry Stories 13 ResStockArguments geometry_num_floors_above_grade=13 +Geometry Stories 14 ResStockArguments geometry_num_floors_above_grade=14 +Geometry Stories 15 ResStockArguments geometry_num_floors_above_grade=15 +Geometry Stories 2 ResStockArguments geometry_num_floors_above_grade=2 +Geometry Stories 20 ResStockArguments geometry_num_floors_above_grade=20 +Geometry Stories 21 ResStockArguments geometry_num_floors_above_grade=21 +Geometry Stories 3 ResStockArguments geometry_num_floors_above_grade=3 +Geometry Stories 35 ResStockArguments geometry_num_floors_above_grade=35 +Geometry Stories 4 ResStockArguments geometry_num_floors_above_grade=4 +Geometry Stories 5 ResStockArguments geometry_num_floors_above_grade=5 +Geometry Stories 6 ResStockArguments geometry_num_floors_above_grade=6 +Geometry Stories 7 ResStockArguments geometry_num_floors_above_grade=7 +Geometry Stories 8 ResStockArguments geometry_num_floors_above_grade=8 +Geometry Stories 9 ResStockArguments geometry_num_floors_above_grade=9 +Geometry Stories Low Rise 1 +Geometry Stories Low Rise 2 +Geometry Stories Low Rise 3 +Geometry Stories Low Rise 4+ +Geometry Story Bin 8+ +Geometry Story Bin <8 +Geometry Wall Exterior Finish "Aluminum, Light" ResStockArguments wall_siding_type=aluminum siding wall_color=light exterior_finish_r=0.6 +Geometry Wall Exterior Finish "Brick, Light" ResStockArguments wall_siding_type=brick veneer wall_color=light exterior_finish_r=0.7 +Geometry Wall Exterior Finish "Brick, Medium/Dark" ResStockArguments wall_siding_type=brick veneer wall_color=medium dark exterior_finish_r=0.7 +Geometry Wall Exterior Finish "Fiber-Cement, Light" ResStockArguments wall_siding_type=fiber cement siding wall_color=light exterior_finish_r=0.2 +Geometry Wall Exterior Finish "Shingle, Asbestos, Medium" ResStockArguments wall_siding_type=asbestos siding wall_color=medium exterior_finish_r=0.6 +Geometry Wall Exterior Finish "Shingle, Composition, Medium" ResStockArguments wall_siding_type=composite shingle siding wall_color=medium exterior_finish_r=0.6 +Geometry Wall Exterior Finish "Stucco, Light" ResStockArguments wall_siding_type=stucco wall_color=light exterior_finish_r=0.2 +Geometry Wall Exterior Finish "Stucco, Medium/Dark" ResStockArguments wall_siding_type=stucco wall_color=medium dark exterior_finish_r=0.2 +Geometry Wall Exterior Finish "Vinyl, Light" ResStockArguments wall_siding_type=vinyl siding wall_color=light exterior_finish_r=0.6 +Geometry Wall Exterior Finish "Wood, Medium/Dark" ResStockArguments wall_siding_type=wood siding wall_color=medium dark exterior_finish_r=1.4 +Geometry Wall Exterior Finish None ResStockArguments wall_siding_type=none wall_color=medium exterior_finish_r=0 +Geometry Wall Type Brick +Geometry Wall Type Concrete +Geometry Wall Type Steel Frame +Geometry Wall Type Void +Geometry Wall Type Wood Frame +Ground Thermal Conductivity 0.5 ResStockArguments site_ground_conductivity=0.5 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 0.8 ResStockArguments site_ground_conductivity=0.8 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 1.1 ResStockArguments site_ground_conductivity=1.1 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 1.4 ResStockArguments site_ground_conductivity=1.4 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 1.7 ResStockArguments site_ground_conductivity=1.7 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 2 ResStockArguments site_ground_conductivity=2.0 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 2.3 ResStockArguments site_ground_conductivity=2.3 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 2.6 ResStockArguments site_ground_conductivity=2.6 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +HVAC Cooling Autosizing Factor 40% Oversized ResStockArguments cooling_system_cooling_autosizing_factor=1.4 heat_pump_cooling_autosizing_factor=auto +HVAC Cooling Autosizing Factor None +HVAC Cooling Efficiency "AC, SEER 10" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=10 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 13" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 14" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=14 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 15" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=15 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 18" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=18 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 24.5" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=24.5 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 8" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=8 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "Room AC, EER 10.7" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=10.7 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "Room AC, EER 12.0" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=12 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "Room AC, EER 8.5" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=8.5 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "Room AC, EER 9.8" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=9.8 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency Ducted Heat Pump ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency Evaporative Cooler ResStockArguments cooling_system_type=evaporative cooler cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency Non-Ducted Heat Pump ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency None ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency Shared Cooling +HVAC Cooling Partial Space Conditioning 100% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=1 +HVAC Cooling Partial Space Conditioning 20% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.2 +HVAC Cooling Partial Space Conditioning 40% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.4 +HVAC Cooling Partial Space Conditioning 60% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.6 +HVAC Cooling Partial Space Conditioning 80% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.8 +HVAC Cooling Partial Space Conditioning <10% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.1 +HVAC Cooling Partial Space Conditioning None ResStockArguments cooling_system_fraction_cool_load_served=0 +HVAC Cooling Partial Space Conditioning Void +HVAC Cooling Type Central AC +HVAC Cooling Type Ducted Heat Pump +HVAC Cooling Type Evaporative or Swamp Cooler +HVAC Cooling Type Non-Ducted Heat Pump +HVAC Cooling Type None +HVAC Cooling Type Room AC +HVAC Detailed Performance Data Default ResStockArguments hvac_perf_data_capacity_type=auto hvac_perf_data_heating_outdoor_temperatures=auto hvac_perf_data_heating_min_speed_capacities=auto hvac_perf_data_heating_max_speed_capacities=auto hvac_perf_data_heating_min_speed_cops=auto hvac_perf_data_heating_max_speed_cops=auto hvac_perf_data_cooling_outdoor_temperatures=auto hvac_perf_data_cooling_min_speed_capacities=auto hvac_perf_data_cooling_max_speed_capacities=auto hvac_perf_data_cooling_min_speed_cops=auto hvac_perf_data_cooling_max_speed_cops=auto +HVAC Has Ducts No ResStockArguments hvac_blower_fan_watts_per_cfm=auto +HVAC Has Ducts Void +HVAC Has Ducts Yes ResStockArguments hvac_blower_fan_watts_per_cfm=auto +HVAC Has Shared System Cooling Only +HVAC Has Shared System Heating Only +HVAC Has Shared System Heating and Cooling +HVAC Has Shared System None +HVAC Has Shared System Void +HVAC Has Zonal Electric Heating No +HVAC Has Zonal Electric Heating Yes +HVAC Heating Autosizing Factor 40% Oversized ResStockArguments heating_system_heating_autosizing_factor=1.4 heating_system_2_heating_autosizing_factor=auto heat_pump_heating_autosizing_factor=auto heat_pump_backup_heating_autosizing_factor=auto +HVAC Heating Autosizing Factor None +HVAC Heating Efficiency "ASHP, SEER 10, 6.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=6.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 10.3, 7.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 11.5, 7.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=11.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 13, 7.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=13 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 13, 8.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=13 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 14, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 14.3, 8.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 15, 8.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 15, 9.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 16, 9.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 17, 8.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 18, 9.3 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 22, 10 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=10 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=22 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 14, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Electric Baseboard, 100% Efficiency" ResStockArguments heating_system_type=ElectricResistance heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Electric Boiler, 100% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Electric Furnace, 100% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Electric Wall Furnace, 100% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 72% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.72 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.76 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.8 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 82% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.82 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 85% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.85 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.9 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 95% AFUE, OAT Reset" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.95 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 96% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.96 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 60% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.6 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 68% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.68 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 72% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.72 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 76% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.76 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 80% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.8 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 85% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.85 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 90% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.9 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 92.5% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.925 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 96% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.96 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Wall/Floor Furnace, 60% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=0.6 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Wall/Floor Furnace, 68% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=0.68 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "GSHP, EER 16.6, COP 3.6" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=3.6 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=16.6 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=vertical geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "GSHP, EER 20.2, COP 4.2" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=4.2 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=20.2 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=vertical geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto HVAC Heating Efficiency "MSHP, SEER 14.5, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto HVAC Heating Efficiency "MSHP, SEER 14.5, 8.2 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto HVAC Heating Efficiency "MSHP, SEER 17, 9.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto @@ -9743,4215 +9743,4216 @@ HVAC Heating Efficiency "MSHP, SEER 29.3, 14 HSPF" ResStockArguments heating_sys HVAC Heating Efficiency "MSHP, SEER 29.3, 14 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=14 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=29.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto HVAC Heating Efficiency "MSHP, SEER 33, 13.3 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=13.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=33.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto HVAC Heating Efficiency "MSHP, SEER 33, 13.3 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=13.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=33.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency None ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=6.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency Shared Heating -HVAC Heating Efficiency Void -HVAC Heating Type Ducted Heat Pump -HVAC Heating Type Ducted Heating -HVAC Heating Type Non-Ducted Heat Pump -HVAC Heating Type Non-Ducted Heating -HVAC Heating Type None -HVAC Heating Type And Fuel Electricity ASHP -HVAC Heating Type And Fuel Electricity Baseboard -HVAC Heating Type And Fuel Electricity Electric Boiler -HVAC Heating Type And Fuel Electricity Electric Furnace -HVAC Heating Type And Fuel Electricity Electric Wall Furnace -HVAC Heating Type And Fuel Electricity MSHP -HVAC Heating Type And Fuel Electricity Other -HVAC Heating Type And Fuel Electricity Shared Heating -HVAC Heating Type And Fuel Fuel Oil Fuel Boiler -HVAC Heating Type And Fuel Fuel Oil Fuel Furnace -HVAC Heating Type And Fuel Fuel Oil Fuel Wall/Floor Furnace -HVAC Heating Type And Fuel Fuel Oil Shared Heating -HVAC Heating Type And Fuel Natural Gas Fuel Boiler -HVAC Heating Type And Fuel Natural Gas Fuel Furnace -HVAC Heating Type And Fuel Natural Gas Fuel Wall/Floor Furnace -HVAC Heating Type And Fuel Natural Gas Shared Heating -HVAC Heating Type And Fuel None -HVAC Heating Type And Fuel Other Fuel Fuel Boiler -HVAC Heating Type And Fuel Other Fuel Fuel Furnace -HVAC Heating Type And Fuel Other Fuel Fuel Wall/Floor Furnace -HVAC Heating Type And Fuel Other Fuel Shared Heating -HVAC Heating Type And Fuel Propane Fuel Boiler -HVAC Heating Type And Fuel Propane Fuel Furnace -HVAC Heating Type And Fuel Propane Fuel Wall/Floor Furnace -HVAC Heating Type And Fuel Propane Shared Heating -HVAC Heating Type And Fuel Void -HVAC Secondary Heating Efficiency "Electric Baseboard, 100% Efficiency" ResStockArguments heating_system_2_type=ElectricResistance heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Electric Portable Heater, 100% Efficiency" ResStockArguments heating_system_2_type=SpaceHeater heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Boiler, 60% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.76 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.8 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.90 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Boiler, 92.5% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.925 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Fireplace, 60% AFUE" ResStockArguments heating_system_2_type=Fireplace heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Furnace, 60% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Furnace, 76% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.76 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Furnace, 80% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.8 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Furnace, 92.5% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.925 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency None ResStockArguments heating_system_2_type=none heating_system_2_heating_efficiency=0 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency Shared Heating ResStockArguments heating_system_2_type=none heating_system_2_heating_efficiency=0 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency Void -HVAC Secondary Heating Fuel Electricity ResStockArguments heating_system_2_fuel=electricity -HVAC Secondary Heating Fuel Fuel Oil ResStockArguments heating_system_2_fuel=fuel oil -HVAC Secondary Heating Fuel Natural Gas ResStockArguments heating_system_2_fuel=natural gas -HVAC Secondary Heating Fuel None ResStockArguments heating_system_2_fuel=electricity -HVAC Secondary Heating Fuel Other Fuel ResStockArguments heating_system_2_fuel=wood -HVAC Secondary Heating Fuel Propane ResStockArguments heating_system_2_fuel=propane -HVAC Secondary Heating Fuel Wood ResStockArguments heating_system_2_fuel=wood -HVAC Secondary Heating Partial Space Conditioning 0% ResStockArguments heating_system_2_fraction_heat_load_served=0 -HVAC Secondary Heating Partial Space Conditioning 10% ResStockArguments heating_system_2_fraction_heat_load_served=0.1 -HVAC Secondary Heating Partial Space Conditioning 20% ResStockArguments heating_system_2_fraction_heat_load_served=0.2 -HVAC Secondary Heating Partial Space Conditioning 30% ResStockArguments heating_system_2_fraction_heat_load_served=0.3 -HVAC Secondary Heating Partial Space Conditioning 40% ResStockArguments heating_system_2_fraction_heat_load_served=0.4 -HVAC Secondary Heating Partial Space Conditioning 49% ResStockArguments heating_system_2_fraction_heat_load_served=0.49 -HVAC Secondary Heating Partial Space Conditioning None ResStockArguments heating_system_2_fraction_heat_load_served=0 -HVAC Secondary Heating Partial Space Conditioning Void -HVAC Secondary Heating Type Ducted Heating -HVAC Secondary Heating Type Non-Ducted Heating -HVAC Secondary Heating Type None -HVAC Shared Efficiencies "Boiler Baseboards Heating Only, Electricity" ResStockArguments heating_system_type=Shared Boiler w/ Baseboard heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Shared Efficiencies "Boiler Baseboards Heating Only, Fuel" ResStockArguments heating_system_type=Shared Boiler w/ Baseboard heating_system_heating_efficiency=0.78 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Shared Efficiencies "Fan Coil Heating and Cooling, Electricity" ResStockArguments heating_system_type=Shared Boiler w/ Ductless Fan Coil heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Shared Efficiencies "Fan Coil Heating and Cooling, Fuel" ResStockArguments heating_system_type=Shared Boiler w/ Ductless Fan Coil heating_system_heating_efficiency=0.78 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Shared Efficiencies Fan Coil Cooling Only ResStockArguments cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false -HVAC Shared Efficiencies None -HVAC Shared Efficiencies Void -HVAC System Is Faulted No -HVAC System Is Faulted Yes -HVAC System Is Scaled No -HVAC System Is Scaled Yes -HVAC System Single Speed AC Airflow 154.8 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=154.8 -HVAC System Single Speed AC Airflow 204.4 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=204.4 -HVAC System Single Speed AC Airflow 254.0 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=254.0 -HVAC System Single Speed AC Airflow 303.5 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=303.5 -HVAC System Single Speed AC Airflow 353.1 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=353.1 -HVAC System Single Speed AC Airflow 402.7 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=402.7 -HVAC System Single Speed AC Airflow 452.3 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=452.3 -HVAC System Single Speed AC Airflow 501.9 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=501.9 -HVAC System Single Speed AC Airflow 551.5 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=551.5 -HVAC System Single Speed AC Airflow 601.0 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=601.0 -HVAC System Single Speed AC Airflow 650.6 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=650.6 -HVAC System Single Speed AC Airflow 700.2 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=700.2 -HVAC System Single Speed AC Airflow None -HVAC System Single Speed AC Charge 0.570 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.570 -HVAC System Single Speed AC Charge 0.709 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.709 -HVAC System Single Speed AC Charge 0.848 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.848 -HVAC System Single Speed AC Charge 0.988 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.988 -HVAC System Single Speed AC Charge 1.127 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.127 -HVAC System Single Speed AC Charge 1.266 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.266 -HVAC System Single Speed AC Charge 1.405 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.405 -HVAC System Single Speed AC Charge None -HVAC System Single Speed ASHP Airflow 154.8 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=154.8 -HVAC System Single Speed ASHP Airflow 204.4 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=204.4 -HVAC System Single Speed ASHP Airflow 254.0 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=254.0 -HVAC System Single Speed ASHP Airflow 303.5 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=303.5 -HVAC System Single Speed ASHP Airflow 353.1 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=353.1 -HVAC System Single Speed ASHP Airflow 402.7 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=402.7 -HVAC System Single Speed ASHP Airflow 452.3 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=452.3 -HVAC System Single Speed ASHP Airflow 501.9 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=501.9 -HVAC System Single Speed ASHP Airflow 551.5 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=551.5 -HVAC System Single Speed ASHP Airflow 601.0 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=601.0 -HVAC System Single Speed ASHP Airflow 650.6 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=650.6 -HVAC System Single Speed ASHP Airflow 700.2 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=700.2 -HVAC System Single Speed ASHP Airflow None -HVAC System Single Speed ASHP Charge 0.570 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.570 -HVAC System Single Speed ASHP Charge 0.709 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.709 -HVAC System Single Speed ASHP Charge 0.848 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.848 -HVAC System Single Speed ASHP Charge 0.988 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.988 -HVAC System Single Speed ASHP Charge 1.127 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.127 -HVAC System Single Speed ASHP Charge 1.266 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.266 -HVAC System Single Speed ASHP Charge 1.405 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.405 -HVAC System Single Speed ASHP Charge None -Has PV No -Has PV Yes -Heat Pump Backup Use Existing System ResStockArguments heat_pump_backup_use_existing_system=true -Heating Fuel Electricity ResStockArguments heating_system_fuel=electricity -Heating Fuel Fuel Oil ResStockArguments heating_system_fuel=fuel oil -Heating Fuel Natural Gas ResStockArguments heating_system_fuel=natural gas -Heating Fuel None ResStockArguments heating_system_fuel=natural gas -Heating Fuel Other Fuel ResStockArguments heating_system_fuel=wood -Heating Fuel Propane ResStockArguments heating_system_fuel=propane -Heating Fuel Wood ResStockArguments heating_system_fuel=wood -Heating Setpoint 55F ResStockArguments hvac_control_heating_weekday_setpoint_temp=55 hvac_control_heating_weekend_setpoint_temp=55 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 60F ResStockArguments hvac_control_heating_weekday_setpoint_temp=60 hvac_control_heating_weekend_setpoint_temp=60 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 62F ResStockArguments hvac_control_heating_weekday_setpoint_temp=62 hvac_control_heating_weekend_setpoint_temp=62 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 63F ResStockArguments hvac_control_heating_weekday_setpoint_temp=63 hvac_control_heating_weekend_setpoint_temp=63 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 64F ResStockArguments hvac_control_heating_weekday_setpoint_temp=64 hvac_control_heating_weekend_setpoint_temp=64 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 65F ResStockArguments hvac_control_heating_weekday_setpoint_temp=65 hvac_control_heating_weekend_setpoint_temp=65 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 66F ResStockArguments hvac_control_heating_weekday_setpoint_temp=66 hvac_control_heating_weekend_setpoint_temp=66 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 67F ResStockArguments hvac_control_heating_weekday_setpoint_temp=67 hvac_control_heating_weekend_setpoint_temp=67 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 68F ResStockArguments hvac_control_heating_weekday_setpoint_temp=68 hvac_control_heating_weekend_setpoint_temp=68 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 69F ResStockArguments hvac_control_heating_weekday_setpoint_temp=69 hvac_control_heating_weekend_setpoint_temp=69 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 70F ResStockArguments hvac_control_heating_weekday_setpoint_temp=70 hvac_control_heating_weekend_setpoint_temp=70 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 71F ResStockArguments hvac_control_heating_weekday_setpoint_temp=71 hvac_control_heating_weekend_setpoint_temp=71 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 71F w/ Building America season ResStockArguments hvac_control_heating_weekday_setpoint_temp=71 hvac_control_heating_weekend_setpoint_temp=71 use_auto_heating_season=true hvac_control_heating_season_period=auto -Heating Setpoint 72F ResStockArguments hvac_control_heating_weekday_setpoint_temp=72 hvac_control_heating_weekend_setpoint_temp=72 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 73F ResStockArguments hvac_control_heating_weekday_setpoint_temp=73 hvac_control_heating_weekend_setpoint_temp=73 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 74F ResStockArguments hvac_control_heating_weekday_setpoint_temp=74 hvac_control_heating_weekend_setpoint_temp=74 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 75F ResStockArguments hvac_control_heating_weekday_setpoint_temp=75 hvac_control_heating_weekend_setpoint_temp=75 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 76F ResStockArguments hvac_control_heating_weekday_setpoint_temp=76 hvac_control_heating_weekend_setpoint_temp=76 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 78F ResStockArguments hvac_control_heating_weekday_setpoint_temp=78 hvac_control_heating_weekend_setpoint_temp=78 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 80F ResStockArguments hvac_control_heating_weekday_setpoint_temp=80 hvac_control_heating_weekend_setpoint_temp=80 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint Has Offset No -Heating Setpoint Has Offset Yes -Heating Setpoint Offset Magnitude 0F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=0 hvac_control_heating_weekend_setpoint_offset_magnitude=0 -Heating Setpoint Offset Magnitude 12F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=12 hvac_control_heating_weekend_setpoint_offset_magnitude=12 -Heating Setpoint Offset Magnitude 3F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=3 hvac_control_heating_weekend_setpoint_offset_magnitude=3 -Heating Setpoint Offset Magnitude 6F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=6 hvac_control_heating_weekend_setpoint_offset_magnitude=6 -Heating Setpoint Offset Period Day ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day and Night ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1" -Heating Setpoint Offset Period Day and Night +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1" -Heating Setpoint Offset Period Day and Night +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Heating Setpoint Offset Period Day and Night +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Heating Setpoint Offset Period Day and Night +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0" -Heating Setpoint Offset Period Day and Night +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0" -Heating Setpoint Offset Period Day and Night -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1" -Heating Setpoint Offset Period Day and Night -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1" -Heating Setpoint Offset Period Day and Night -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1" -Heating Setpoint Offset Period Day and Night -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1" -Heating Setpoint Offset Period Day and Night -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" -Heating Setpoint Offset Period Night ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" -Heating Setpoint Offset Period Night +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" -Heating Setpoint Offset Period Night +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Night +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Night +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Night +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Night -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" -Heating Setpoint Offset Period Night -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" -Heating Setpoint Offset Period Night -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" -Heating Setpoint Offset Period Night -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" -Heating Setpoint Offset Period Night -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" -Heating Setpoint Offset Period None ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Holiday Lighting No Exterior Use ResStockArguments holiday_lighting_present=false holiday_lighting_daily_kwh=0 holiday_lighting_period=auto -Holiday Lighting None ResStockArguments holiday_lighting_present=false holiday_lighting_daily_kwh=0 holiday_lighting_period=auto -Hot Water Distribution "R-2, Demand" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=presence sensor demand control hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Distribution "R-2, Timer" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=timer hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Distribution "R-5, Timer" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=timer hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=5 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Distribution R-2 ResStockArguments hot_water_distribution_system_type=Standard hot_water_distribution_standard_piping_length=auto hot_water_distribution_recirc_control_type=no control hot_water_distribution_recirc_piping_length=0 hot_water_distribution_recirc_branch_piping_length=0 hot_water_distribution_recirc_pump_power=0 hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Distribution Uninsulated ResStockArguments hot_water_distribution_system_type=Standard hot_water_distribution_standard_piping_length=auto hot_water_distribution_recirc_control_type=no control hot_water_distribution_recirc_piping_length=0 hot_water_distribution_recirc_branch_piping_length=0 hot_water_distribution_recirc_pump_power=0 hot_water_distribution_pipe_r=0 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Fixtures "100% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=1.0 -Hot Water Fixtures "200% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=2.0 -Hot Water Fixtures "50% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=0.5 -Hot Water Fixtures 100% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.0 -Hot Water Fixtures 110% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.1 -Hot Water Fixtures 120% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.2 -Hot Water Fixtures 130% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.3 -Hot Water Fixtures 140% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.4 -Hot Water Fixtures 150% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.5 -Hot Water Fixtures 160% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.6 -Hot Water Fixtures 170% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.7 -Hot Water Fixtures 180% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.8 -Hot Water Fixtures 190% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.9 -Hot Water Fixtures 200% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=2.0 -Hot Water Fixtures 40% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.4 -Hot Water Fixtures 50% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.5 -Hot Water Fixtures 60% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.6 -Hot Water Fixtures 70% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.7 -Hot Water Fixtures 80% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.8 -Hot Water Fixtures 90% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.9 -Household Has Tribal Persons No -Household Has Tribal Persons Not Available -Household Has Tribal Persons Yes -ISO RTO Region CAISO -ISO RTO Region ERCOT -ISO RTO Region MISO -ISO RTO Region NEISO -ISO RTO Region NYISO -ISO RTO Region None -ISO RTO Region PJM -ISO RTO Region SPP -Income 10000-14999 -Income 100000-119999 -Income 120000-139999 -Income 140000-159999 -Income 15000-19999 -Income 160000-179999 -Income 180000-199999 -Income 20000-24999 -Income 200000+ -Income 25000-29999 -Income 30000-34999 -Income 35000-39999 -Income 40000-44999 -Income 45000-49999 -Income 50000-59999 -Income 60000-69999 -Income 70000-79999 -Income 80000-99999 -Income <10000 -Income Not Available -Income RECS2015 100000-119999 -Income RECS2015 120000-139999 -Income RECS2015 140000+ -Income RECS2015 20000-39999 -Income RECS2015 40000-59999 -Income RECS2015 60000-79999 -Income RECS2015 80000-99999 -Income RECS2015 <20000 -Income RECS2015 Not Available -Income RECS2020 100000-149999 -Income RECS2020 150000+ -Income RECS2020 20000-39999 -Income RECS2020 40000-59999 -Income RECS2020 60000-99999 -Income RECS2020 <20000 -Income RECS2020 Not Available -Infiltration "7 ACH50, 0.5 Shelter Coefficient" ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 0.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 0.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 0.75 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.75 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 1 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=1 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 1.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=1.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 10 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=10 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 11.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=11.25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 15 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=15 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 18.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=18.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 2 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=2 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 2.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=2.25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 20 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=20 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 3 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=3 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 3.75 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=3.75 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 30 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=30 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 4 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=4 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 4.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=4.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 40 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=40 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 5.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=5.25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 50 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=50 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 6 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=6 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 7 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 7.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 8 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=8 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration Reduction 15% ResStockArguments air_leakage_percent_reduction=15 -Infiltration Reduction 20% ResStockArguments air_leakage_percent_reduction=20 -Infiltration Reduction 25% ResStockArguments air_leakage_percent_reduction=25 -Insulation Ceiling None ResStockArguments ceiling_assembly_r=0 ceiling_insulation_r=0 -Insulation Ceiling R-13 ResStockArguments ceiling_assembly_r=14.6 ceiling_insulation_r=13 -Insulation Ceiling R-19 ResStockArguments ceiling_assembly_r=20.6 ceiling_insulation_r=19 -Insulation Ceiling R-30 ResStockArguments ceiling_assembly_r=31.6 ceiling_insulation_r=30 -Insulation Ceiling R-38 ResStockArguments ceiling_assembly_r=39.6 ceiling_insulation_r=38 -Insulation Ceiling R-49 ResStockArguments ceiling_assembly_r=50.6 ceiling_insulation_r=49 -Insulation Ceiling R-60 ResStockArguments ceiling_assembly_r=61.6 ceiling_insulation_r=60 -Insulation Ceiling R-7 ResStockArguments ceiling_assembly_r=8.7 ceiling_insulation_r=7 -Insulation Ceiling Uninsulated ResStockArguments ceiling_assembly_r=2.1 ceiling_insulation_r=0 -Insulation Floor Ceiling R-13 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=17.8 floor_over_garage_assembly_r=17.8 -Insulation Floor Ceiling R-19 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=22.6 floor_over_garage_assembly_r=22.6 -Insulation Floor Ceiling R-30 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=30.3 floor_over_garage_assembly_r=30.3 -Insulation Floor Ceiling R-38 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=35.1 floor_over_garage_assembly_r=35.1 -Insulation Floor None ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=0 floor_over_garage_assembly_r=5.3 -Insulation Floor Uninsulated ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=5.3 floor_over_garage_assembly_r=5.3 -Insulation Foundation Wall "Wall R-10, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=10 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto -Insulation Foundation Wall "Wall R-13, Interior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=13 foundation_wall_insulation_location=interior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto -Insulation Foundation Wall "Wall R-15, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=15 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto -Insulation Foundation Wall "Wall R-5, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=5 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto -Insulation Foundation Wall None ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=0 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=0 foundation_wall_assembly_r=auto -Insulation Foundation Wall Uninsulated ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=0 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=0 foundation_wall_assembly_r=auto -Insulation Rim Joist "R-10, Exterior" ResStockArguments rim_joist_continuous_exterior_r=10 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Rim Joist "R-13, Interior" ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=13 rim_joist_assembly_interior_r=10.4 rim_joist_assembly_r=auto -Insulation Rim Joist "R-15, Exterior" ResStockArguments rim_joist_continuous_exterior_r=15 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Rim Joist "R-5, Exterior" ResStockArguments rim_joist_continuous_exterior_r=5 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Rim Joist None ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Rim Joist Uninsulated ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Roof "Finished, R-13" ResStockArguments roof_assembly_r=14.3 -Insulation Roof "Finished, R-19" ResStockArguments roof_assembly_r=21.2 -Insulation Roof "Finished, R-30" ResStockArguments roof_assembly_r=29.7 -Insulation Roof "Finished, R-38" ResStockArguments roof_assembly_r=36.5 -Insulation Roof "Finished, R-49" ResStockArguments roof_assembly_r=47.0 -Insulation Roof "Finished, R-7" ResStockArguments roof_assembly_r=10.2 -Insulation Roof "Finished, Uninsulated" ResStockArguments roof_assembly_r=3.7 -Insulation Roof "Unfinished, Uninsulated" ResStockArguments roof_assembly_r=2.3 -Insulation Sheathing R-10 ResStockArguments wall_continuous_exterior_r=10 -Insulation Sheathing R-15 ResStockArguments wall_continuous_exterior_r=15 -Insulation Sheathing R-5 ResStockArguments wall_continuous_exterior_r=5 -Insulation Slab "2ft R10 Perimeter, Vertical" ResStockArguments slab_perimeter_insulation_r=10 slab_perimeter_depth=2 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "2ft R10 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=10 slab_under_width=2 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "2ft R5 Perimeter, Vertical" ResStockArguments slab_perimeter_insulation_r=5 slab_perimeter_depth=2 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "2ft R5 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=5 slab_under_width=2 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "4ft R5 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=5 slab_under_width=4 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "R10 Whole Slab, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=10 slab_under_width=999 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab None ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab Uninsulated ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Wall "Brick, 12-in, 3-wythe, R-11" ResStockArguments wall_type=StructuralBrick wall_assembly_r=13.3 -Insulation Wall "Brick, 12-in, 3-wythe, R-15" ResStockArguments wall_type=StructuralBrick wall_assembly_r=15.9 -Insulation Wall "Brick, 12-in, 3-wythe, R-19" ResStockArguments wall_type=StructuralBrick wall_assembly_r=18.3 -Insulation Wall "Brick, 12-in, 3-wythe, R-7" ResStockArguments wall_type=StructuralBrick wall_assembly_r=10.3 -Insulation Wall "Brick, 12-in, 3-wythe, Uninsulated" ResStockArguments wall_type=StructuralBrick wall_assembly_r=4.9 -Insulation Wall "CMU, 12-in Hollow" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=4.9 -Insulation Wall "CMU, 12-in Hollow, R-10" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=12.9 -Insulation Wall "CMU, 6-in Concrete Filled" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=3.7 -Insulation Wall "CMU, 6-in Concrete-Filled, R-10" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=11.4 -Insulation Wall "CMU, 6-in Hollow, R-11" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=12.4 -Insulation Wall "CMU, 6-in Hollow, R-15" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=15 -Insulation Wall "CMU, 6-in Hollow, R-19" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=17.4 -Insulation Wall "CMU, 6-in Hollow, R-7" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=9.4 -Insulation Wall "CMU, 6-in Hollow, Uninsulated" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=4 -Insulation Wall "Double Wood Stud, R-33" ResStockArguments wall_type=DoubleWoodStud wall_assembly_r=28.1 -Insulation Wall "Double Wood Stud, R-45, Grade 3" ResStockArguments wall_type=DoubleWoodStud wall_assembly_r=25.1 -Insulation Wall "Generic, 10-in Grid ICF" ResStockArguments wall_type=WoodStud wall_assembly_r=12.4 -Insulation Wall "Generic, T-Mass Wall w/Metal Ties" ResStockArguments wall_type=WoodStud wall_assembly_r=9 -Insulation Wall "ICF, 2-in EPS, 12-in Concrete, 2-in EPS" ResStockArguments wall_type=InsulatedConcreteForms wall_assembly_r=22.5 -Insulation Wall "ICF, 2-in EPS, 4-in Concrete, 2-in EPS" ResStockArguments wall_type=InsulatedConcreteForms wall_assembly_r=20.4 -Insulation Wall "SIP, 3.6 in EPS Core, OSB int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=15.5 -Insulation Wall "SIP, 9.4 in EPS Core, Gypsum int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=35.8 -Insulation Wall "SIP, 9.4 in EPS Core, OSB int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=36 -Insulation Wall "Steel Stud, R-13" ResStockArguments wall_type=SteelFrame wall_assembly_r=7.9 -Insulation Wall "Steel Stud, R-25, Grade 3" ResStockArguments wall_type=SteelFrame wall_assembly_r=10.4 -Insulation Wall "Steel Stud, Uninsulated" ResStockArguments wall_type=SteelFrame wall_assembly_r=3 -Insulation Wall "Wood Stud, R-11" ResStockArguments wall_type=WoodStud wall_assembly_r=10.3 -Insulation Wall "Wood Stud, R-11, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=15.3 -Insulation Wall "Wood Stud, R-13" ResStockArguments wall_type=WoodStud wall_assembly_r=11.3 -Insulation Wall "Wood Stud, R-13, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=16.3 -Insulation Wall "Wood Stud, R-15" ResStockArguments wall_type=WoodStud wall_assembly_r=12.1 -Insulation Wall "Wood Stud, R-15, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=17.1 -Insulation Wall "Wood Stud, R-19" ResStockArguments wall_type=WoodStud wall_assembly_r=15.4 -Insulation Wall "Wood Stud, R-19, Grade 2" ResStockArguments wall_type=WoodStud wall_assembly_r=14.5 -Insulation Wall "Wood Stud, R-19, Grade 2, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=19.5 -Insulation Wall "Wood Stud, R-19, Grade 3" ResStockArguments wall_type=WoodStud wall_assembly_r=13.4 -Insulation Wall "Wood Stud, R-19, Grade 3, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=18.4 -Insulation Wall "Wood Stud, R-19, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=20.4 -Insulation Wall "Wood Stud, R-23 Closed Cell Spray Foam, 2x4, 16 in o.c." ResStockArguments wall_type=WoodStud wall_assembly_r=14.7 -Insulation Wall "Wood Stud, R-23 Closed Cell Spray Foam, 2x4, 16 in o.c., R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=19.7 -Insulation Wall "Wood Stud, R-36" ResStockArguments wall_type=WoodStud wall_assembly_r=22.3 -Insulation Wall "Wood Stud, R-36, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=27.3 -Insulation Wall "Wood Stud, R-7" ResStockArguments wall_type=WoodStud wall_assembly_r=8.7 -Insulation Wall "Wood Stud, R-7, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=13.7 -Insulation Wall "Wood Stud, Uninsulated" ResStockArguments wall_type=WoodStud wall_assembly_r=3.4 -Insulation Wall "Wood Stud, Uninsulated, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=8.4 -Insulation Wall Void -Interior Shading "Summer = 0.5, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.5 window_interior_shading_winter=0.7 -Interior Shading "Summer = 0.5, Winter = 0.95" ResStockArguments window_interior_shading_summer=0.5 window_interior_shading_winter=0.95 -Interior Shading "Summer = 0.6, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.6 window_interior_shading_winter=0.7 -Interior Shading "Summer = 0.7, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.7 -Interior Shading "Summer = 0.7, Winter = 0.85" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.85 -Interior Shading "Summer = 0.7, Winter = 0.95" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.95 -Lighting 100% CFL ResStockArguments lighting_present=true lighting_interior_fraction_cfl=1 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=1 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=1 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 -Lighting 100% Incandescent ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 -Lighting 100% LED ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=1 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=1 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=1 -Lighting 20% LED ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0.2 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0.2 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0.2 -Lighting 60% CFL ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0.6 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0.6 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0.6 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 -Lighting None ResStockArguments lighting_present=false lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 -Lighting Interior Use 100% Usage ResStockArguments lighting_interior_usage_multiplier=1.0 -Lighting Interior Use 95% Usage ResStockArguments lighting_interior_usage_multiplier=0.95 -Lighting Interior Use None ResStockArguments lighting_interior_usage_multiplier=0.0 -Lighting Other Use 100% Usage ResStockArguments lighting_exterior_usage_multiplier=1.0 lighting_garage_usage_multiplier=1.0 -Lighting Other Use 95% Usage ResStockArguments lighting_exterior_usage_multiplier=0.95 lighting_garage_usage_multiplier=0.95 -Lighting Other Use None ResStockArguments lighting_exterior_usage_multiplier=0.0 lighting_garage_usage_multiplier=0.0 -Location Region CR02 -Location Region CR03 -Location Region CR04 -Location Region CR05 -Location Region CR06 -Location Region CR07 -Location Region CR08 -Location Region CR09 -Location Region CR10 -Location Region CR11 -Location Region CRAK -Location Region CRHI -Mechanical Ventilation "ERV, 72%" ResStockArguments mech_vent_fan_type=energy recovery ventilator mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0.48 mech_vent_sensible_recovery_efficiency=0.72 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Mechanical Ventilation "HRV, 60%" ResStockArguments mech_vent_fan_type=heat recovery ventilator mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0.6 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Mechanical Ventilation Exhaust ResStockArguments mech_vent_fan_type=exhaust only mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Mechanical Ventilation None ResStockArguments mech_vent_fan_type=none mech_vent_flow_rate=0 mech_vent_hours_in_operation=0 mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=0 mech_vent_num_units_served=0 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Mechanical Ventilation Supply ResStockArguments mech_vent_fan_type=supply only mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Metropolitan and Micropolitan Statistical Area "Aberdeen, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Aberdeen, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Abilene, TX MSA" -Metropolitan and Micropolitan Statistical Area "Ada, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Adrian, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Akron, OH MSA" -Metropolitan and Micropolitan Statistical Area "Alamogordo, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Albany, GA MSA" -Metropolitan and Micropolitan Statistical Area "Albany, OR MSA" -Metropolitan and Micropolitan Statistical Area "Albany-Schenectady-Troy, NY MSA" -Metropolitan and Micropolitan Statistical Area "Albemarle, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Albert Lea, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Albertville, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Albuquerque, NM MSA" -Metropolitan and Micropolitan Statistical Area "Alexandria, LA MSA" -Metropolitan and Micropolitan Statistical Area "Alexandria, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Alice, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Allentown-Bethlehem-Easton, PA-NJ MSA" -Metropolitan and Micropolitan Statistical Area "Alma, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Alpena, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Altoona, PA MSA" -Metropolitan and Micropolitan Statistical Area "Altus, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Amarillo, TX MSA" -Metropolitan and Micropolitan Statistical Area "Americus, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Ames, IA MSA" -Metropolitan and Micropolitan Statistical Area "Amsterdam, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Anchorage, AK MSA" -Metropolitan and Micropolitan Statistical Area "Andrews, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Angola, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Ann Arbor, MI MSA" -Metropolitan and Micropolitan Statistical Area "Anniston-Oxford-Jacksonville, AL MSA" -Metropolitan and Micropolitan Statistical Area "Appleton, WI MSA" -Metropolitan and Micropolitan Statistical Area "Arcadia, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Ardmore, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Arkadelphia, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Arkansas City-Winfield, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Asheville, NC MSA" -Metropolitan and Micropolitan Statistical Area "Ashland, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Ashtabula, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Astoria, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Atchison, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Athens, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Athens, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Athens, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Athens-Clarke County, GA MSA" -Metropolitan and Micropolitan Statistical Area "Atlanta-Sandy Springs-Roswell, GA MSA" -Metropolitan and Micropolitan Statistical Area "Atlantic City-Hammonton, NJ MSA" -Metropolitan and Micropolitan Statistical Area "Auburn, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Auburn, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Auburn-Opelika, AL MSA" -Metropolitan and Micropolitan Statistical Area "Augusta-Richmond County, GA-SC MSA" -Metropolitan and Micropolitan Statistical Area "Augusta-Waterville, ME MicroSA" -Metropolitan and Micropolitan Statistical Area "Austin, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Austin-Round Rock, TX MSA" -Metropolitan and Micropolitan Statistical Area "Bainbridge, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Bakersfield, CA MSA" -Metropolitan and Micropolitan Statistical Area "Baltimore-Columbia-Towson, MD MSA" -Metropolitan and Micropolitan Statistical Area "Bangor, ME MSA" -Metropolitan and Micropolitan Statistical Area "Baraboo, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Bardstown, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Barnstable Town, MA MSA" -Metropolitan and Micropolitan Statistical Area "Barre, VT MicroSA" -Metropolitan and Micropolitan Statistical Area "Bartlesville, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Bastrop, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Batavia, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Batesville, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Baton Rouge, LA MSA" -Metropolitan and Micropolitan Statistical Area "Battle Creek, MI MSA" -Metropolitan and Micropolitan Statistical Area "Bay City, MI MSA" -Metropolitan and Micropolitan Statistical Area "Bay City, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Beatrice, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Beaumont-Port Arthur, TX MSA" -Metropolitan and Micropolitan Statistical Area "Beaver Dam, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Beckley, WV MSA" -Metropolitan and Micropolitan Statistical Area "Bedford, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Beeville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Bellefontaine, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Bellingham, WA MSA" -Metropolitan and Micropolitan Statistical Area "Bemidji, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Bend-Redmond, OR MSA" -Metropolitan and Micropolitan Statistical Area "Bennettsville, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Bennington, VT MicroSA" -Metropolitan and Micropolitan Statistical Area "Berlin, NH-VT MicroSA" -Metropolitan and Micropolitan Statistical Area "Big Rapids, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Big Spring, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Big Stone Gap, VA MicroSA" -Metropolitan and Micropolitan Statistical Area "Billings, MT MSA" -Metropolitan and Micropolitan Statistical Area "Binghamton, NY MSA" -Metropolitan and Micropolitan Statistical Area "Birmingham-Hoover, AL MSA" -Metropolitan and Micropolitan Statistical Area "Bismarck, ND MSA" -Metropolitan and Micropolitan Statistical Area "Blackfoot, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Blacksburg-Christiansburg-Radford, VA MSA" -Metropolitan and Micropolitan Statistical Area "Bloomington, IL MSA" -Metropolitan and Micropolitan Statistical Area "Bloomington, IN MSA" -Metropolitan and Micropolitan Statistical Area "Bloomsburg-Berwick, PA MSA" -Metropolitan and Micropolitan Statistical Area "Bluefield, WV-VA MicroSA" -Metropolitan and Micropolitan Statistical Area "Blytheville, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Bogalusa, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Boise City, ID MSA" -Metropolitan and Micropolitan Statistical Area "Boone, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Boone, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Borger, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Boston-Cambridge-Newton, MA-NH MSA" -Metropolitan and Micropolitan Statistical Area "Boulder, CO MSA" -Metropolitan and Micropolitan Statistical Area "Bowling Green, KY MSA" -Metropolitan and Micropolitan Statistical Area "Bozeman, MT MicroSA" -Metropolitan and Micropolitan Statistical Area "Bradford, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Brainerd, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Branson, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Breckenridge, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Bremerton-Silverdale, WA MSA" -Metropolitan and Micropolitan Statistical Area "Brenham, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Brevard, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Bridgeport-Stamford-Norwalk, CT MSA" -Metropolitan and Micropolitan Statistical Area "Brookhaven, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Brookings, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Brookings, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Brownsville-Harlingen, TX MSA" -Metropolitan and Micropolitan Statistical Area "Brownwood, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Brunswick, GA MSA" -Metropolitan and Micropolitan Statistical Area "Bucyrus, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Buffalo-Cheektowaga-Niagara Falls, NY MSA" -Metropolitan and Micropolitan Statistical Area "Burley, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Burlington, IA-IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Burlington, NC MSA" -Metropolitan and Micropolitan Statistical Area "Burlington-South Burlington, VT MSA" -Metropolitan and Micropolitan Statistical Area "Butte-Silver Bow, MT MicroSA" -Metropolitan and Micropolitan Statistical Area "Cadillac, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Calhoun, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "California-Lexington Park, MD MSA" -Metropolitan and Micropolitan Statistical Area "Cambridge, MD MicroSA" -Metropolitan and Micropolitan Statistical Area "Cambridge, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Camden, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Campbellsville, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Canon City, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Canton, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Canton-Massillon, OH MSA" -Metropolitan and Micropolitan Statistical Area "Cape Coral-Fort Myers, FL MSA" -Metropolitan and Micropolitan Statistical Area "Cape Girardeau, MO-IL MSA" -Metropolitan and Micropolitan Statistical Area "Carbondale-Marion, IL MSA" -Metropolitan and Micropolitan Statistical Area "Carlsbad-Artesia, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Carson City, NV MSA" -Metropolitan and Micropolitan Statistical Area "Casper, WY MSA" -Metropolitan and Micropolitan Statistical Area "Cedar City, UT MicroSA" -Metropolitan and Micropolitan Statistical Area "Cedar Rapids, IA MSA" -Metropolitan and Micropolitan Statistical Area "Cedartown, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Celina, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Centralia, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Centralia, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Chambersburg-Waynesboro, PA MSA" -Metropolitan and Micropolitan Statistical Area "Champaign-Urbana, IL MSA" -Metropolitan and Micropolitan Statistical Area "Charleston, WV MSA" -Metropolitan and Micropolitan Statistical Area "Charleston-Mattoon, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Charleston-North Charleston, SC MSA" -Metropolitan and Micropolitan Statistical Area "Charlotte-Concord-Gastonia, NC-SC MSA" -Metropolitan and Micropolitan Statistical Area "Charlottesville, VA MSA" -Metropolitan and Micropolitan Statistical Area "Chattanooga, TN-GA MSA" -Metropolitan and Micropolitan Statistical Area "Cheyenne, WY MSA" -Metropolitan and Micropolitan Statistical Area "Chicago-Naperville-Elgin, IL-IN-WI MSA" -Metropolitan and Micropolitan Statistical Area "Chico, CA MSA" -Metropolitan and Micropolitan Statistical Area "Chillicothe, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Cincinnati, OH-KY-IN MSA" -Metropolitan and Micropolitan Statistical Area "Claremont-Lebanon, NH-VT MicroSA" -Metropolitan and Micropolitan Statistical Area "Clarksburg, WV MicroSA" -Metropolitan and Micropolitan Statistical Area "Clarksdale, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Clarksville, TN-KY MSA" -Metropolitan and Micropolitan Statistical Area "Clearlake, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Cleveland, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Cleveland, TN MSA" -Metropolitan and Micropolitan Statistical Area "Cleveland-Elyria, OH MSA" -Metropolitan and Micropolitan Statistical Area "Clewiston, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Clinton, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Clovis, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Coeur d'Alene, ID MSA" -Metropolitan and Micropolitan Statistical Area "Coffeyville, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Coldwater, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "College Station-Bryan, TX MSA" -Metropolitan and Micropolitan Statistical Area "Colorado Springs, CO MSA" -Metropolitan and Micropolitan Statistical Area "Columbia, MO MSA" -Metropolitan and Micropolitan Statistical Area "Columbia, SC MSA" -Metropolitan and Micropolitan Statistical Area "Columbus, GA-AL MSA" -Metropolitan and Micropolitan Statistical Area "Columbus, IN MSA" -Metropolitan and Micropolitan Statistical Area "Columbus, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Columbus, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Columbus, OH MSA" -Metropolitan and Micropolitan Statistical Area "Concord, NH MicroSA" -Metropolitan and Micropolitan Statistical Area "Connersville, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Cookeville, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Coos Bay, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Cordele, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Corinth, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Cornelia, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Corning, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Corpus Christi, TX MSA" -Metropolitan and Micropolitan Statistical Area "Corsicana, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Cortland, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Corvallis, OR MSA" -Metropolitan and Micropolitan Statistical Area "Coshocton, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Craig, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Crawfordsville, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Crescent City, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Crestview-Fort Walton Beach-Destin, FL MSA" -Metropolitan and Micropolitan Statistical Area "Crossville, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Cullman, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Cullowhee, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Cumberland, MD-WV MSA" -Metropolitan and Micropolitan Statistical Area "Dallas-Fort Worth-Arlington, TX MSA" -Metropolitan and Micropolitan Statistical Area "Dalton, GA MSA" -Metropolitan and Micropolitan Statistical Area "Danville, IL MSA" -Metropolitan and Micropolitan Statistical Area "Danville, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Danville, VA MicroSA" -Metropolitan and Micropolitan Statistical Area "Daphne-Fairhope-Foley, AL MSA" -Metropolitan and Micropolitan Statistical Area "Davenport-Moline-Rock Island, IA-IL MSA" -Metropolitan and Micropolitan Statistical Area "Dayton, OH MSA" -Metropolitan and Micropolitan Statistical Area "Dayton, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "DeRidder, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Decatur, AL MSA" -Metropolitan and Micropolitan Statistical Area "Decatur, IL MSA" -Metropolitan and Micropolitan Statistical Area "Decatur, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Defiance, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Del Rio, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Deltona-Daytona Beach-Ormond Beach, FL MSA" -Metropolitan and Micropolitan Statistical Area "Deming, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Denver-Aurora-Lakewood, CO MSA" -Metropolitan and Micropolitan Statistical Area "Des Moines-West Des Moines, IA MSA" -Metropolitan and Micropolitan Statistical Area "Detroit-Warren-Dearborn, MI MSA" -Metropolitan and Micropolitan Statistical Area "Dickinson, ND MicroSA" -Metropolitan and Micropolitan Statistical Area "Dixon, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Dodge City, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Dothan, AL MSA" -Metropolitan and Micropolitan Statistical Area "Douglas, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Dover, DE MSA" -Metropolitan and Micropolitan Statistical Area "DuBois, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Dublin, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Dubuque, IA MSA" -Metropolitan and Micropolitan Statistical Area "Duluth, MN-WI MSA" -Metropolitan and Micropolitan Statistical Area "Dumas, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Duncan, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Dunn, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Durango, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Durant, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Durham-Chapel Hill, NC MSA" -Metropolitan and Micropolitan Statistical Area "Dyersburg, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Eagle Pass, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "East Stroudsburg, PA MSA" -Metropolitan and Micropolitan Statistical Area "Easton, MD MicroSA" -Metropolitan and Micropolitan Statistical Area "Eau Claire, WI MSA" -Metropolitan and Micropolitan Statistical Area "Edwards, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Effingham, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "El Campo, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "El Centro, CA MSA" -Metropolitan and Micropolitan Statistical Area "El Dorado, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "El Paso, TX MSA" -Metropolitan and Micropolitan Statistical Area "Elizabeth City, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Elizabethtown-Fort Knox, KY MSA" -Metropolitan and Micropolitan Statistical Area "Elk City, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Elkhart-Goshen, IN MSA" -Metropolitan and Micropolitan Statistical Area "Elkins, WV MicroSA" -Metropolitan and Micropolitan Statistical Area "Elko, NV MicroSA" -Metropolitan and Micropolitan Statistical Area "Ellensburg, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Elmira, NY MSA" -Metropolitan and Micropolitan Statistical Area "Emporia, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Enid, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Enterprise, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Erie, PA MSA" -Metropolitan and Micropolitan Statistical Area "Escanaba, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Espanola, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Eugene, OR MSA" -Metropolitan and Micropolitan Statistical Area "Eureka-Arcata-Fortuna, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Evanston, WY MicroSA" -Metropolitan and Micropolitan Statistical Area "Evansville, IN-KY MSA" -Metropolitan and Micropolitan Statistical Area "Fairbanks, AK MSA" -Metropolitan and Micropolitan Statistical Area "Fairfield, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Fairmont, WV MicroSA" -Metropolitan and Micropolitan Statistical Area "Fallon, NV MicroSA" -Metropolitan and Micropolitan Statistical Area "Fargo, ND-MN MSA" -Metropolitan and Micropolitan Statistical Area "Faribault-Northfield, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Farmington, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Farmington, NM MSA" -Metropolitan and Micropolitan Statistical Area "Fayetteville, NC MSA" -Metropolitan and Micropolitan Statistical Area "Fayetteville-Springdale-Rogers, AR-MO MSA" -Metropolitan and Micropolitan Statistical Area "Fergus Falls, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Fernley, NV MicroSA" -Metropolitan and Micropolitan Statistical Area "Findlay, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Fitzgerald, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Flagstaff, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Flint, MI MSA" -Metropolitan and Micropolitan Statistical Area "Florence, SC MSA" -Metropolitan and Micropolitan Statistical Area "Florence-Muscle Shoals, AL MSA" -Metropolitan and Micropolitan Statistical Area "Fond du Lac, WI MSA" -Metropolitan and Micropolitan Statistical Area "Forest City, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Forrest City, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Fort Collins, CO MSA" -Metropolitan and Micropolitan Statistical Area "Fort Dodge, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Fort Leonard Wood, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Fort Madison-Keokuk, IA-IL-MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Fort Morgan, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Fort Polk South, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Fort Smith, AR-OK MSA" -Metropolitan and Micropolitan Statistical Area "Fort Wayne, IN MSA" -Metropolitan and Micropolitan Statistical Area "Frankfort, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Frankfort, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Fredericksburg, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Freeport, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Fremont, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Fremont, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Fresno, CA MSA" -Metropolitan and Micropolitan Statistical Area "Gadsden, AL MSA" -Metropolitan and Micropolitan Statistical Area "Gaffney, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Gainesville, FL MSA" -Metropolitan and Micropolitan Statistical Area "Gainesville, GA MSA" -Metropolitan and Micropolitan Statistical Area "Gainesville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Galesburg, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Gallup, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Garden City, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Gardnerville Ranchos, NV MicroSA" -Metropolitan and Micropolitan Statistical Area "Georgetown, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Gettysburg, PA MSA" -Metropolitan and Micropolitan Statistical Area "Gillette, WY MicroSA" -Metropolitan and Micropolitan Statistical Area "Glasgow, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Glens Falls, NY MSA" -Metropolitan and Micropolitan Statistical Area "Glenwood Springs, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Gloversville, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Goldsboro, NC MSA" -Metropolitan and Micropolitan Statistical Area "Grand Forks, ND-MN MSA" -Metropolitan and Micropolitan Statistical Area "Grand Island, NE MSA" -Metropolitan and Micropolitan Statistical Area "Grand Junction, CO MSA" -Metropolitan and Micropolitan Statistical Area "Grand Rapids-Wyoming, MI MSA" -Metropolitan and Micropolitan Statistical Area "Grants Pass, OR MSA" -Metropolitan and Micropolitan Statistical Area "Grants, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Great Bend, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Great Falls, MT MSA" -Metropolitan and Micropolitan Statistical Area "Greeley, CO MSA" -Metropolitan and Micropolitan Statistical Area "Green Bay, WI MSA" -Metropolitan and Micropolitan Statistical Area "Greeneville, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Greenfield Town, MA MicroSA" -Metropolitan and Micropolitan Statistical Area "Greensboro-High Point, NC MSA" -Metropolitan and Micropolitan Statistical Area "Greensburg, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Greenville, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Greenville, NC MSA" -Metropolitan and Micropolitan Statistical Area "Greenville, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Greenville-Anderson-Mauldin, SC MSA" -Metropolitan and Micropolitan Statistical Area "Greenwood, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Greenwood, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Grenada, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Gulfport-Biloxi-Pascagoula, MS MSA" -Metropolitan and Micropolitan Statistical Area "Guymon, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Hagerstown-Martinsburg, MD-WV MSA" -Metropolitan and Micropolitan Statistical Area "Hailey, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Hammond, LA MSA" -Metropolitan and Micropolitan Statistical Area "Hanford-Corcoran, CA MSA" -Metropolitan and Micropolitan Statistical Area "Hannibal, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Harrisburg-Carlisle, PA MSA" -Metropolitan and Micropolitan Statistical Area "Harrison, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Harrisonburg, VA MSA" -Metropolitan and Micropolitan Statistical Area "Hartford-West Hartford-East Hartford, CT MSA" -Metropolitan and Micropolitan Statistical Area "Hastings, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Hattiesburg, MS MSA" -Metropolitan and Micropolitan Statistical Area "Hays, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Heber, UT MicroSA" -Metropolitan and Micropolitan Statistical Area "Helena, MT MicroSA" -Metropolitan and Micropolitan Statistical Area "Helena-West Helena, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Henderson, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Hereford, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Hermiston-Pendleton, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Hickory-Lenoir-Morganton, NC MSA" -Metropolitan and Micropolitan Statistical Area "Hillsdale, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Hilo, HI MicroSA" -Metropolitan and Micropolitan Statistical Area "Hilton Head Island-Bluffton-Beaufort, SC MSA" -Metropolitan and Micropolitan Statistical Area "Hinesville, GA MSA" -Metropolitan and Micropolitan Statistical Area "Hobbs, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Holland, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Homosassa Springs, FL MSA" -Metropolitan and Micropolitan Statistical Area "Hood River, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Hot Springs, AR MSA" -Metropolitan and Micropolitan Statistical Area "Houghton, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Houma-Thibodaux, LA MSA" -Metropolitan and Micropolitan Statistical Area "Houston-The Woodlands-Sugar Land, TX MSA" -Metropolitan and Micropolitan Statistical Area "Hudson, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Huntingdon, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Huntington, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Huntington-Ashland, WV-KY-OH MSA" -Metropolitan and Micropolitan Statistical Area "Huntsville, AL MSA" -Metropolitan and Micropolitan Statistical Area "Huntsville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Huron, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Hutchinson, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Hutchinson, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Idaho Falls, ID MSA" -Metropolitan and Micropolitan Statistical Area "Indiana, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Indianapolis-Carmel-Anderson, IN MSA" -Metropolitan and Micropolitan Statistical Area "Indianola, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Ionia, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Iowa City, IA MSA" -Metropolitan and Micropolitan Statistical Area "Iron Mountain, MI-WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Ithaca, NY MSA" -Metropolitan and Micropolitan Statistical Area "Jackson, MI MSA" -Metropolitan and Micropolitan Statistical Area "Jackson, MS MSA" -Metropolitan and Micropolitan Statistical Area "Jackson, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Jackson, TN MSA" -Metropolitan and Micropolitan Statistical Area "Jackson, WY-ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Jacksonville, FL MSA" -Metropolitan and Micropolitan Statistical Area "Jacksonville, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Jacksonville, NC MSA" -Metropolitan and Micropolitan Statistical Area "Jacksonville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Jamestown, ND MicroSA" -Metropolitan and Micropolitan Statistical Area "Jamestown-Dunkirk-Fredonia, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Janesville-Beloit, WI MSA" -Metropolitan and Micropolitan Statistical Area "Jasper, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Jefferson City, MO MSA" -Metropolitan and Micropolitan Statistical Area "Jefferson, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Jesup, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Johnson City, TN MSA" -Metropolitan and Micropolitan Statistical Area "Johnstown, PA MSA" -Metropolitan and Micropolitan Statistical Area "Jonesboro, AR MSA" -Metropolitan and Micropolitan Statistical Area "Joplin, MO MSA" -Metropolitan and Micropolitan Statistical Area "Junction City, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Juneau, AK MicroSA" -Metropolitan and Micropolitan Statistical Area "Kahului-Wailuku-Lahaina, HI MSA" -Metropolitan and Micropolitan Statistical Area "Kalamazoo-Portage, MI MSA" -Metropolitan and Micropolitan Statistical Area "Kalispell, MT MicroSA" -Metropolitan and Micropolitan Statistical Area "Kankakee, IL MSA" -Metropolitan and Micropolitan Statistical Area "Kansas City, MO-KS MSA" -Metropolitan and Micropolitan Statistical Area "Kapaa, HI MicroSA" -Metropolitan and Micropolitan Statistical Area "Kearney, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Keene, NH MicroSA" -Metropolitan and Micropolitan Statistical Area "Kendallville, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Kennett, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Kennewick-Richland, WA MSA" -Metropolitan and Micropolitan Statistical Area "Kerrville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Ketchikan, AK MicroSA" -Metropolitan and Micropolitan Statistical Area "Key West, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Kill Devil Hills, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Killeen-Temple, TX MSA" -Metropolitan and Micropolitan Statistical Area "Kingsport-Bristol-Bristol, TN-VA MSA" -Metropolitan and Micropolitan Statistical Area "Kingston, NY MSA" -Metropolitan and Micropolitan Statistical Area "Kingsville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Kinston, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Kirksville, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Klamath Falls, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Knoxville, TN MSA" -Metropolitan and Micropolitan Statistical Area "Kokomo, IN MSA" -Metropolitan and Micropolitan Statistical Area "La Crosse-Onalaska, WI-MN MSA" -Metropolitan and Micropolitan Statistical Area "La Grande, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "LaGrange, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Laconia, NH MicroSA" -Metropolitan and Micropolitan Statistical Area "Lafayette, LA MSA" -Metropolitan and Micropolitan Statistical Area "Lafayette-West Lafayette, IN MSA" -Metropolitan and Micropolitan Statistical Area "Lake Charles, LA MSA" -Metropolitan and Micropolitan Statistical Area "Lake City, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Lake Havasu City-Kingman, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Lakeland-Winter Haven, FL MSA" -Metropolitan and Micropolitan Statistical Area "Lamesa, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Lancaster, PA MSA" -Metropolitan and Micropolitan Statistical Area "Lansing-East Lansing, MI MSA" -Metropolitan and Micropolitan Statistical Area "Laramie, WY MicroSA" -Metropolitan and Micropolitan Statistical Area "Laredo, TX MSA" -Metropolitan and Micropolitan Statistical Area "Las Cruces, NM MSA" -Metropolitan and Micropolitan Statistical Area "Las Vegas, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Las Vegas-Henderson-Paradise, NV MSA" -Metropolitan and Micropolitan Statistical Area "Laurel, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Laurinburg, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Lawrence, KS MSA" -Metropolitan and Micropolitan Statistical Area "Lawrenceburg, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Lawton, OK MSA" -Metropolitan and Micropolitan Statistical Area "Lebanon, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Lebanon, PA MSA" -Metropolitan and Micropolitan Statistical Area "Levelland, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Lewisburg, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Lewisburg, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Lewiston, ID-WA MSA" -Metropolitan and Micropolitan Statistical Area "Lewiston-Auburn, ME MSA" -Metropolitan and Micropolitan Statistical Area "Lewistown, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Lexington, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Lexington-Fayette, KY MSA" -Metropolitan and Micropolitan Statistical Area "Liberal, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Lima, OH MSA" -Metropolitan and Micropolitan Statistical Area "Lincoln, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Lincoln, NE MSA" -Metropolitan and Micropolitan Statistical Area "Little Rock-North Little Rock-Conway, AR MSA" -Metropolitan and Micropolitan Statistical Area "Lock Haven, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Logan, UT-ID MSA" -Metropolitan and Micropolitan Statistical Area "Logan, WV MicroSA" -Metropolitan and Micropolitan Statistical Area "Logansport, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "London, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Longview, TX MSA" -Metropolitan and Micropolitan Statistical Area "Longview, WA MSA" -Metropolitan and Micropolitan Statistical Area "Los Alamos, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Los Angeles-Long Beach-Anaheim, CA MSA" -Metropolitan and Micropolitan Statistical Area "Louisville/Jefferson County, KY-IN MSA" -Metropolitan and Micropolitan Statistical Area "Lubbock, TX MSA" -Metropolitan and Micropolitan Statistical Area "Ludington, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Lufkin, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Lumberton, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Lynchburg, VA MSA" -Metropolitan and Micropolitan Statistical Area "Macomb, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Macon, GA MSA" -Metropolitan and Micropolitan Statistical Area "Madera, CA MSA" -Metropolitan and Micropolitan Statistical Area "Madison, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Madison, WI MSA" -Metropolitan and Micropolitan Statistical Area "Madisonville, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Magnolia, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Malone, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Malvern, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Manchester-Nashua, NH MSA" -Metropolitan and Micropolitan Statistical Area "Manhattan, KS MSA" -Metropolitan and Micropolitan Statistical Area "Manitowoc, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Mankato-North Mankato, MN MSA" -Metropolitan and Micropolitan Statistical Area "Mansfield, OH MSA" -Metropolitan and Micropolitan Statistical Area "Marietta, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Marinette, WI-MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Marion, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Marion, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Marion, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Marquette, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Marshall, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Marshall, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Marshall, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Marshalltown, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Martin, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Martinsville, VA MicroSA" -Metropolitan and Micropolitan Statistical Area "Maryville, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Mason City, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Mayfield, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Maysville, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "McAlester, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "McAllen-Edinburg-Mission, TX MSA" -Metropolitan and Micropolitan Statistical Area "McComb, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "McMinnville, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "McPherson, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Meadville, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Medford, OR MSA" -Metropolitan and Micropolitan Statistical Area "Memphis, TN-MS-AR MSA" -Metropolitan and Micropolitan Statistical Area "Menomonie, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Merced, CA MSA" -Metropolitan and Micropolitan Statistical Area "Meridian, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Merrill, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Mexico, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Miami, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Miami-Fort Lauderdale-West Palm Beach, FL MSA" -Metropolitan and Micropolitan Statistical Area "Michigan City-La Porte, IN MSA" -Metropolitan and Micropolitan Statistical Area "Middlesborough, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Midland, MI MSA" -Metropolitan and Micropolitan Statistical Area "Midland, TX MSA" -Metropolitan and Micropolitan Statistical Area "Milledgeville, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Milwaukee-Waukesha-West Allis, WI MSA" -Metropolitan and Micropolitan Statistical Area "Mineral Wells, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Minneapolis-St. Paul-Bloomington, MN-WI MSA" -Metropolitan and Micropolitan Statistical Area "Minot, ND MicroSA" -Metropolitan and Micropolitan Statistical Area "Missoula, MT MSA" -Metropolitan and Micropolitan Statistical Area "Mitchell, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Moberly, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Mobile, AL MSA" -Metropolitan and Micropolitan Statistical Area "Modesto, CA MSA" -Metropolitan and Micropolitan Statistical Area "Monroe, LA MSA" -Metropolitan and Micropolitan Statistical Area "Monroe, MI MSA" -Metropolitan and Micropolitan Statistical Area "Montgomery, AL MSA" -Metropolitan and Micropolitan Statistical Area "Montrose, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Morehead City, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Morgan City, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Morgantown, WV MSA" -Metropolitan and Micropolitan Statistical Area "Morristown, TN MSA" -Metropolitan and Micropolitan Statistical Area "Moscow, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Moses Lake, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Moultrie, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Airy, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Pleasant, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Pleasant, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Sterling, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Vernon, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Vernon, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Vernon-Anacortes, WA MSA" -Metropolitan and Micropolitan Statistical Area "Mountain Home, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Mountain Home, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Muncie, IN MSA" -Metropolitan and Micropolitan Statistical Area "Murray, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Muscatine, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Muskegon, MI MSA" -Metropolitan and Micropolitan Statistical Area "Muskogee, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Myrtle Beach-Conway-North Myrtle Beach, SC-NC MSA" -Metropolitan and Micropolitan Statistical Area "Nacogdoches, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Napa, CA MSA" -Metropolitan and Micropolitan Statistical Area "Naples-Immokalee-Marco Island, FL MSA" -Metropolitan and Micropolitan Statistical Area "Nashville-Davidson--Murfreesboro--Franklin, TN MSA" -Metropolitan and Micropolitan Statistical Area "Natchez, MS-LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Natchitoches, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "New Bern, NC MSA" -Metropolitan and Micropolitan Statistical Area "New Castle, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "New Castle, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "New Haven-Milford, CT MSA" -Metropolitan and Micropolitan Statistical Area "New Orleans-Metairie, LA MSA" -Metropolitan and Micropolitan Statistical Area "New Philadelphia-Dover, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "New Ulm, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "New York-Newark-Jersey City, NY-NJ-PA MSA" -Metropolitan and Micropolitan Statistical Area "Newberry, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Newport, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Newport, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Newton, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Niles-Benton Harbor, MI MSA" -Metropolitan and Micropolitan Statistical Area "Nogales, AZ MicroSA" -Metropolitan and Micropolitan Statistical Area "Norfolk, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "North Platte, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "North Port-Sarasota-Bradenton, FL MSA" -Metropolitan and Micropolitan Statistical Area "North Vernon, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "North Wilkesboro, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Norwalk, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Norwich-New London, CT MSA" -Metropolitan and Micropolitan Statistical Area "Oak Harbor, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Ocala, FL MSA" -Metropolitan and Micropolitan Statistical Area "Ocean City, NJ MSA" -Metropolitan and Micropolitan Statistical Area "Odessa, TX MSA" -Metropolitan and Micropolitan Statistical Area "Ogden-Clearfield, UT MSA" -Metropolitan and Micropolitan Statistical Area "Ogdensburg-Massena, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Oil City, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Okeechobee, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Oklahoma City, OK MSA" -Metropolitan and Micropolitan Statistical Area "Olean, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Olympia-Tumwater, WA MSA" -Metropolitan and Micropolitan Statistical Area "Omaha-Council Bluffs, NE-IA MSA" -Metropolitan and Micropolitan Statistical Area "Oneonta, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Ontario, OR-ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Opelousas, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Orangeburg, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Orlando-Kissimmee-Sanford, FL MSA" -Metropolitan and Micropolitan Statistical Area "Oshkosh-Neenah, WI MSA" -Metropolitan and Micropolitan Statistical Area "Oskaloosa, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Othello, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Ottawa, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Ottawa-Peru, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Ottumwa, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Owatonna, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Owensboro, KY MSA" -Metropolitan and Micropolitan Statistical Area "Owosso, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Oxford, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Oxford, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Oxnard-Thousand Oaks-Ventura, CA MSA" -Metropolitan and Micropolitan Statistical Area "Ozark, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Paducah, KY-IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Pahrump, NV MicroSA" -Metropolitan and Micropolitan Statistical Area "Palatka, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Palestine, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Palm Bay-Melbourne-Titusville, FL MSA" -Metropolitan and Micropolitan Statistical Area "Pampa, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Panama City, FL MSA" -Metropolitan and Micropolitan Statistical Area "Paragould, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Paris, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Paris, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Parkersburg-Vienna, WV MSA" -Metropolitan and Micropolitan Statistical Area "Parsons, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Payson, AZ MicroSA" -Metropolitan and Micropolitan Statistical Area "Pecos, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Pensacola-Ferry Pass-Brent, FL MSA" -Metropolitan and Micropolitan Statistical Area "Peoria, IL MSA" -Metropolitan and Micropolitan Statistical Area "Peru, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Philadelphia-Camden-Wilmington, PA-NJ-DE-MD MSA" -Metropolitan and Micropolitan Statistical Area "Phoenix-Mesa-Scottsdale, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Picayune, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Pierre, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Pine Bluff, AR MSA" -Metropolitan and Micropolitan Statistical Area "Pinehurst-Southern Pines, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Pittsburg, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Pittsburgh, PA MSA" -Metropolitan and Micropolitan Statistical Area "Pittsfield, MA MSA" -Metropolitan and Micropolitan Statistical Area "Plainview, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Platteville, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Plattsburgh, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Plymouth, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Pocatello, ID MSA" -Metropolitan and Micropolitan Statistical Area "Point Pleasant, WV-OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Ponca City, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Pontiac, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Poplar Bluff, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Port Angeles, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Port Clinton, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Port Lavaca, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Port St. Lucie, FL MSA" -Metropolitan and Micropolitan Statistical Area "Portales, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Portland-South Portland, ME MSA" -Metropolitan and Micropolitan Statistical Area "Portland-Vancouver-Hillsboro, OR-WA MSA" -Metropolitan and Micropolitan Statistical Area "Portsmouth, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Pottsville, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Prescott, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Price, UT MicroSA" -Metropolitan and Micropolitan Statistical Area "Prineville, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Providence-Warwick, RI-MA MSA" -Metropolitan and Micropolitan Statistical Area "Provo-Orem, UT MSA" -Metropolitan and Micropolitan Statistical Area "Pueblo, CO MSA" -Metropolitan and Micropolitan Statistical Area "Pullman, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Punta Gorda, FL MSA" -Metropolitan and Micropolitan Statistical Area "Quincy, IL-MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Racine, WI MSA" -Metropolitan and Micropolitan Statistical Area "Raleigh, NC MSA" -Metropolitan and Micropolitan Statistical Area "Rapid City, SD MSA" -Metropolitan and Micropolitan Statistical Area "Raymondville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Reading, PA MSA" -Metropolitan and Micropolitan Statistical Area "Red Bluff, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Red Wing, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Redding, CA MSA" -Metropolitan and Micropolitan Statistical Area "Reno, NV MSA" -Metropolitan and Micropolitan Statistical Area "Rexburg, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Richmond, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Richmond, VA MSA" -Metropolitan and Micropolitan Statistical Area "Richmond-Berea, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Rio Grande City, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Riverside-San Bernardino-Ontario, CA MSA" -Metropolitan and Micropolitan Statistical Area "Riverton, WY MicroSA" -Metropolitan and Micropolitan Statistical Area "Roanoke Rapids, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Roanoke, VA MSA" -Metropolitan and Micropolitan Statistical Area "Rochelle, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Rochester, MN MSA" -Metropolitan and Micropolitan Statistical Area "Rochester, NY MSA" -Metropolitan and Micropolitan Statistical Area "Rock Springs, WY MicroSA" -Metropolitan and Micropolitan Statistical Area "Rockford, IL MSA" -Metropolitan and Micropolitan Statistical Area "Rockingham, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Rocky Mount, NC MSA" -Metropolitan and Micropolitan Statistical Area "Rolla, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Rome, GA MSA" -Metropolitan and Micropolitan Statistical Area "Roseburg, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Roswell, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Russellville, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Ruston, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Rutland, VT MicroSA" -Metropolitan and Micropolitan Statistical Area "Sacramento--Roseville--Arden-Arcade, CA MSA" -Metropolitan and Micropolitan Statistical Area "Safford, AZ MicroSA" -Metropolitan and Micropolitan Statistical Area "Saginaw, MI MSA" -Metropolitan and Micropolitan Statistical Area "Salem, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Salem, OR MSA" -Metropolitan and Micropolitan Statistical Area "Salina, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Salinas, CA MSA" -Metropolitan and Micropolitan Statistical Area "Salisbury, MD-DE MSA" -Metropolitan and Micropolitan Statistical Area "Salt Lake City, UT MSA" -Metropolitan and Micropolitan Statistical Area "San Angelo, TX MSA" -Metropolitan and Micropolitan Statistical Area "San Antonio-New Braunfels, TX MSA" -Metropolitan and Micropolitan Statistical Area "San Diego-Carlsbad, CA MSA" -Metropolitan and Micropolitan Statistical Area "San Francisco-Oakland-Hayward, CA MSA" -Metropolitan and Micropolitan Statistical Area "San Jose-Sunnyvale-Santa Clara, CA MSA" -Metropolitan and Micropolitan Statistical Area "San Luis Obispo-Paso Robles-Arroyo Grande, CA MSA" -Metropolitan and Micropolitan Statistical Area "Sandpoint, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Sandusky, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Sanford, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Santa Cruz-Watsonville, CA MSA" -Metropolitan and Micropolitan Statistical Area "Santa Fe, NM MSA" -Metropolitan and Micropolitan Statistical Area "Santa Maria-Santa Barbara, CA MSA" -Metropolitan and Micropolitan Statistical Area "Santa Rosa, CA MSA" -Metropolitan and Micropolitan Statistical Area "Sault Ste. Marie, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Savannah, GA MSA" -Metropolitan and Micropolitan Statistical Area "Sayre, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Scottsbluff, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Scottsboro, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Scranton--Wilkes-Barre--Hazleton, PA MSA" -Metropolitan and Micropolitan Statistical Area "Searcy, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Seattle-Tacoma-Bellevue, WA MSA" -Metropolitan and Micropolitan Statistical Area "Sebastian-Vero Beach, FL MSA" -Metropolitan and Micropolitan Statistical Area "Sebring, FL MSA" -Metropolitan and Micropolitan Statistical Area "Sedalia, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Selinsgrove, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Selma, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Seneca Falls, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Seneca, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Sevierville, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Seymour, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Shawano, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Shawnee, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Sheboygan, WI MSA" -Metropolitan and Micropolitan Statistical Area "Shelby, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Shelbyville, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Shelton, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Sheridan, WY MicroSA" -Metropolitan and Micropolitan Statistical Area "Sherman-Denison, TX MSA" -Metropolitan and Micropolitan Statistical Area "Show Low, AZ MicroSA" -Metropolitan and Micropolitan Statistical Area "Shreveport-Bossier City, LA MSA" -Metropolitan and Micropolitan Statistical Area "Sidney, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Sierra Vista-Douglas, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Sikeston, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Silver City, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Sioux City, IA-NE-SD MSA" -Metropolitan and Micropolitan Statistical Area "Sioux Falls, SD MSA" -Metropolitan and Micropolitan Statistical Area "Snyder, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Somerset, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Somerset, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Sonora, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "South Bend-Mishawaka, IN-MI MSA" -Metropolitan and Micropolitan Statistical Area "Spartanburg, SC MSA" -Metropolitan and Micropolitan Statistical Area "Spearfish, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Spencer, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Spirit Lake, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Spokane-Spokane Valley, WA MSA" -Metropolitan and Micropolitan Statistical Area "Springfield, IL MSA" -Metropolitan and Micropolitan Statistical Area "Springfield, MA MSA" -Metropolitan and Micropolitan Statistical Area "Springfield, MO MSA" -Metropolitan and Micropolitan Statistical Area "Springfield, OH MSA" -Metropolitan and Micropolitan Statistical Area "St. Cloud, MN MSA" -Metropolitan and Micropolitan Statistical Area "St. George, UT MSA" -Metropolitan and Micropolitan Statistical Area "St. Joseph, MO-KS MSA" -Metropolitan and Micropolitan Statistical Area "St. Louis, MO-IL MSA" -Metropolitan and Micropolitan Statistical Area "St. Marys, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Starkville, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "State College, PA MSA" -Metropolitan and Micropolitan Statistical Area "Statesboro, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Staunton-Waynesboro, VA MSA" -Metropolitan and Micropolitan Statistical Area "Steamboat Springs, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Stephenville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Sterling, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Sterling, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Stevens Point, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Stillwater, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Stockton-Lodi, CA MSA" -Metropolitan and Micropolitan Statistical Area "Storm Lake, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Sturgis, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Sulphur Springs, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Summerville, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Summit Park, UT MicroSA" -Metropolitan and Micropolitan Statistical Area "Sumter, SC MSA" -Metropolitan and Micropolitan Statistical Area "Sunbury, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Susanville, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Sweetwater, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Syracuse, NY MSA" -Metropolitan and Micropolitan Statistical Area "Tahlequah, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Talladega-Sylacauga, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Tallahassee, FL MSA" -Metropolitan and Micropolitan Statistical Area "Tampa-St. Petersburg-Clearwater, FL MSA" -Metropolitan and Micropolitan Statistical Area "Taos, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Taylorville, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Terre Haute, IN MSA" -Metropolitan and Micropolitan Statistical Area "Texarkana, TX-AR MSA" -Metropolitan and Micropolitan Statistical Area "The Dalles, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "The Villages, FL MSA" -Metropolitan and Micropolitan Statistical Area "Thomaston, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Thomasville, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Tiffin, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Tifton, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Toccoa, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Toledo, OH MSA" -Metropolitan and Micropolitan Statistical Area "Topeka, KS MSA" -Metropolitan and Micropolitan Statistical Area "Torrington, CT MicroSA" -Metropolitan and Micropolitan Statistical Area "Traverse City, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Trenton, NJ MSA" -Metropolitan and Micropolitan Statistical Area "Troy, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Truckee-Grass Valley, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Tucson, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Tullahoma-Manchester, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Tulsa, OK MSA" -Metropolitan and Micropolitan Statistical Area "Tupelo, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Tuscaloosa, AL MSA" -Metropolitan and Micropolitan Statistical Area "Twin Falls, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Tyler, TX MSA" -Metropolitan and Micropolitan Statistical Area "Ukiah, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Union City, TN-KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Urban Honolulu, HI MSA" -Metropolitan and Micropolitan Statistical Area "Urbana, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Utica-Rome, NY MSA" -Metropolitan and Micropolitan Statistical Area "Uvalde, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Valdosta, GA MSA" -Metropolitan and Micropolitan Statistical Area "Vallejo-Fairfield, CA MSA" -Metropolitan and Micropolitan Statistical Area "Valley, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Van Wert, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Vermillion, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Vernal, UT MicroSA" -Metropolitan and Micropolitan Statistical Area "Vernon, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Vicksburg, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Victoria, TX MSA" -Metropolitan and Micropolitan Statistical Area "Vidalia, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Vincennes, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Vineland-Bridgeton, NJ MSA" -Metropolitan and Micropolitan Statistical Area "Vineyard Haven, MA MicroSA" -Metropolitan and Micropolitan Statistical Area "Virginia Beach-Norfolk-Newport News, VA-NC MSA" -Metropolitan and Micropolitan Statistical Area "Visalia-Porterville, CA MSA" -Metropolitan and Micropolitan Statistical Area "Wabash, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Waco, TX MSA" -Metropolitan and Micropolitan Statistical Area "Wahpeton, ND-MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Walla Walla, WA MSA" -Metropolitan and Micropolitan Statistical Area "Wapakoneta, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Warner Robins, GA MSA" -Metropolitan and Micropolitan Statistical Area "Warren, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Warrensburg, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Warsaw, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Washington Court House, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Washington, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Washington, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Washington-Arlington-Alexandria, DC-VA-MD-WV MSA" -Metropolitan and Micropolitan Statistical Area "Waterloo-Cedar Falls, IA MSA" -Metropolitan and Micropolitan Statistical Area "Watertown, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Watertown-Fort Atkinson, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Watertown-Fort Drum, NY MSA" -Metropolitan and Micropolitan Statistical Area "Wauchula, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Wausau, WI MSA" -Metropolitan and Micropolitan Statistical Area "Waycross, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Weatherford, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Weirton-Steubenville, WV-OH MSA" -Metropolitan and Micropolitan Statistical Area "Wenatchee, WA MSA" -Metropolitan and Micropolitan Statistical Area "West Plains, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Wheeling, WV-OH MSA" -Metropolitan and Micropolitan Statistical Area "Whitewater-Elkhorn, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Wichita Falls, TX MSA" -Metropolitan and Micropolitan Statistical Area "Wichita, KS MSA" -Metropolitan and Micropolitan Statistical Area "Williamsport, PA MSA" -Metropolitan and Micropolitan Statistical Area "Williston, ND MicroSA" -Metropolitan and Micropolitan Statistical Area "Willmar, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Wilmington, NC MSA" -Metropolitan and Micropolitan Statistical Area "Wilmington, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Wilson, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Winchester, VA-WV MSA" -Metropolitan and Micropolitan Statistical Area "Winnemucca, NV MicroSA" -Metropolitan and Micropolitan Statistical Area "Winona, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Winston-Salem, NC MSA" -Metropolitan and Micropolitan Statistical Area "Wisconsin Rapids-Marshfield, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Woodward, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Wooster, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Worcester, MA-CT MSA" -Metropolitan and Micropolitan Statistical Area "Worthington, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Yakima, WA MSA" -Metropolitan and Micropolitan Statistical Area "Yankton, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "York-Hanover, PA MSA" -Metropolitan and Micropolitan Statistical Area "Youngstown-Warren-Boardman, OH-PA MSA" -Metropolitan and Micropolitan Statistical Area "Yuba City, CA MSA" -Metropolitan and Micropolitan Statistical Area "Yuma, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Zanesville, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Zapata, TX MicroSA" -Metropolitan and Micropolitan Statistical Area None -Misc Extra Refrigerator "EF 15.9, Fed Standard, bottom freezer-reference fridge" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=573 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator "EF 19.8, bottom freezer" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=458 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator "EF 6.9, Average Installed" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1102 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator "EF 6.9, National Average" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1102 extra_refrigerator_usage_multiplier=0.221 -Misc Extra Refrigerator EF 10.2 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=748 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 10.5 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=727 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 15.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=480 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 17.6 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=433 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 19.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=383 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 21.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=348 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 6.7 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1139 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator None ResStockArguments extra_refrigerator_present=false extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=0 extra_refrigerator_usage_multiplier=0 -Misc Extra Refrigerator Void -Misc Freezer "EF 12, Average Installed" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=935 freezer_usage_multiplier=1.0 -Misc Freezer "EF 12, National Average" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=935 freezer_usage_multiplier=0.342 -Misc Freezer "EF 16, 2001 Fed Standard-reference freezer" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=712 freezer_usage_multiplier=1.0 -Misc Freezer "EF 18, 2008 Energy Star" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=641 freezer_usage_multiplier=1.0 -Misc Freezer "EF 20, 2008 Energy Star Most Efficient" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=568 freezer_usage_multiplier=1.0 -Misc Freezer None ResStockArguments freezer_present=false freezer_location=auto freezer_rated_annual_kwh=0 freezer_usage_multiplier=0 -Misc Freezer Void -Misc Gas Fireplace Gas Fireplace ResStockArguments misc_fuel_loads_fireplace_present=true misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=auto misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=1.0 -Misc Gas Fireplace National Average ResStockArguments misc_fuel_loads_fireplace_present=true misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=auto misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=0.032 -Misc Gas Fireplace None ResStockArguments misc_fuel_loads_fireplace_present=false misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=0 misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=0 -Misc Gas Grill Gas Grill ResStockArguments misc_fuel_loads_grill_present=true misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=auto misc_fuel_loads_grill_usage_multiplier=1.0 -Misc Gas Grill National Average ResStockArguments misc_fuel_loads_grill_present=true misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=auto misc_fuel_loads_grill_usage_multiplier=0.029 -Misc Gas Grill None ResStockArguments misc_fuel_loads_grill_present=false misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=0 misc_fuel_loads_grill_usage_multiplier=0 -Misc Gas Lighting Gas Lighting ResStockArguments misc_fuel_loads_lighting_present=true misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=auto misc_fuel_loads_lighting_usage_multiplier=1.0 -Misc Gas Lighting National Average ResStockArguments misc_fuel_loads_lighting_present=true misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=auto misc_fuel_loads_lighting_usage_multiplier=0.012 -Misc Gas Lighting None ResStockArguments misc_fuel_loads_lighting_present=false misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=0 misc_fuel_loads_lighting_usage_multiplier=0 -Misc Hot Tub Spa Electricity ResStockArguments permanent_spa_present=true permanent_spa_pump_annual_kwh=auto permanent_spa_pump_usage_multiplier=1.0 permanent_spa_heater_type=electric resistance permanent_spa_heater_annual_kwh=auto permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=1.0 -Misc Hot Tub Spa Natural Gas ResStockArguments permanent_spa_present=true permanent_spa_pump_annual_kwh=auto permanent_spa_pump_usage_multiplier=1.0 permanent_spa_heater_type=gas fired permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=auto permanent_spa_heater_usage_multiplier=1.0 -Misc Hot Tub Spa None ResStockArguments permanent_spa_present=false permanent_spa_pump_annual_kwh=0 permanent_spa_pump_usage_multiplier=0 permanent_spa_heater_type=none permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=0 -Misc Hot Tub Spa Other Fuel ResStockArguments permanent_spa_present=false permanent_spa_pump_annual_kwh=0 permanent_spa_pump_usage_multiplier=0 permanent_spa_heater_type=none permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=0 -Misc Hot Tub Spa Void -Misc Pool Has Pool ResStockArguments pool_present=true -Misc Pool None ResStockArguments pool_present=false -Misc Pool Void -Misc Pool Heater "Electric, 78F" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.8 -Misc Pool Heater "Electric, Covered" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.3 -Misc Pool Heater "Electric, Covered, 78F" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.2 -Misc Pool Heater "Gas, 78F" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.8 -Misc Pool Heater "Gas, Covered" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.3 -Misc Pool Heater "Gas, Covered, 78F" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.2 -Misc Pool Heater Electricity ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=1.0 -Misc Pool Heater Natural Gas ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=1.0 -Misc Pool Heater None ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 -Misc Pool Heater Other Fuel ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 -Misc Pool Heater Solar ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 -Misc Pool Heater Unheated ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 -Misc Pool Pump 0.75 HP Pump ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=0.75 -Misc Pool Pump 1.0 HP Pump ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=1.0 -Misc Pool Pump National Average ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=0.075 -Misc Pool Pump None ResStockArguments pool_pump_annual_kwh=0 pool_pump_usage_multiplier=0 -Misc Well Pump High Efficiency ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=0.67 misc_plug_loads_well_pump_2_usage_multiplier=1.0 -Misc Well Pump National Average ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=0.127 misc_plug_loads_well_pump_2_usage_multiplier=1.0 -Misc Well Pump None ResStockArguments misc_plug_loads_well_pump_present=false misc_plug_loads_well_pump_annual_kwh=0 misc_plug_loads_well_pump_usage_multiplier=0 misc_plug_loads_well_pump_2_usage_multiplier=0 -Misc Well Pump Typical Efficiency ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=1.0 misc_plug_loads_well_pump_2_usage_multiplier=1.0 -Natural Ventilation "Cooling Season, 7 days/wk" ResStockArguments window_fraction_operable=0.67 -Natural Ventilation None ResStockArguments window_fraction_operable=0 -Neighbors "Left/Right at 15ft, Front/Back at 80ft" ResStockArguments neighbor_front_distance=80 neighbor_back_distance=80 neighbor_left_distance=15 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 12 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=12 neighbor_right_distance=12 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 2 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=2 neighbor_right_distance=2 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 27 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=27 neighbor_right_distance=27 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 4 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=4 neighbor_right_distance=4 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 7 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=7 neighbor_right_distance=7 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Back at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=15 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Front at 15ft ResStockArguments neighbor_front_distance=15 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Left at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=15 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Left/Right at 10ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=10 neighbor_right_distance=10 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Left/Right at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=15 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Left/Right at 20ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=20 neighbor_right_distance=20 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors None ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Right at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Occupants 0 ResStockArguments geometry_unit_num_occupants=0 general_water_use_usage_multiplier=auto -Occupants 1 ResStockArguments geometry_unit_num_occupants=1 general_water_use_usage_multiplier=auto -Occupants 10+ ResStockArguments geometry_unit_num_occupants=11 general_water_use_usage_multiplier=auto -Occupants 2 ResStockArguments geometry_unit_num_occupants=2 general_water_use_usage_multiplier=auto -Occupants 3 ResStockArguments geometry_unit_num_occupants=3 general_water_use_usage_multiplier=auto -Occupants 4 ResStockArguments geometry_unit_num_occupants=4 general_water_use_usage_multiplier=auto -Occupants 5 ResStockArguments geometry_unit_num_occupants=5 general_water_use_usage_multiplier=auto -Occupants 6 ResStockArguments geometry_unit_num_occupants=6 general_water_use_usage_multiplier=auto -Occupants 7 ResStockArguments geometry_unit_num_occupants=7 general_water_use_usage_multiplier=auto -Occupants 8 ResStockArguments geometry_unit_num_occupants=8 general_water_use_usage_multiplier=auto -Occupants 9 ResStockArguments geometry_unit_num_occupants=9 general_water_use_usage_multiplier=auto -Orientation ENE ResStockArguments geometry_unit_orientation=68 -Orientation ESE ResStockArguments geometry_unit_orientation=113 -Orientation East ResStockArguments geometry_unit_orientation=90 -Orientation NNE ResStockArguments geometry_unit_orientation=23 -Orientation NNW ResStockArguments geometry_unit_orientation=338 -Orientation North ResStockArguments geometry_unit_orientation=0 -Orientation Northeast ResStockArguments geometry_unit_orientation=45 -Orientation Northwest ResStockArguments geometry_unit_orientation=315 -Orientation SSE ResStockArguments geometry_unit_orientation=158 -Orientation SSW ResStockArguments geometry_unit_orientation=203 -Orientation South ResStockArguments geometry_unit_orientation=180 -Orientation Southeast ResStockArguments geometry_unit_orientation=135 -Orientation Southwest ResStockArguments geometry_unit_orientation=225 -Orientation WNW ResStockArguments geometry_unit_orientation=293 -Orientation WSW ResStockArguments geometry_unit_orientation=248 -Orientation West ResStockArguments geometry_unit_orientation=270 -Overhangs "2ft, All Windows" ResStockArguments overhangs_front_depth=2 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=2 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=2 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=2 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs "2ft, Back Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=2 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs "2ft, Front Windows" ResStockArguments overhangs_front_depth=2 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs "2ft, Left Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=2 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs "2ft, Right Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=2 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs None ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -PUMA "AK, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AK, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AK, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AK, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AK, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00115" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00116" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00117" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00118" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00119" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00120" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00121" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00122" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00123" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00124" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00125" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00126" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00127" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00128" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00129" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00130" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00131" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00132" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00133" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00134" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03709" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03710" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03711" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03712" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03713" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03714" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03715" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03716" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03717" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03718" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03719" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03720" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03721" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03722" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03723" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03724" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03725" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03726" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03727" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03728" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03729" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03730" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03731" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03732" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03733" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03734" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03735" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03736" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03737" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03738" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03739" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03740" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03741" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03742" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03743" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03744" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03745" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03746" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03747" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03748" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03749" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03750" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03751" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03752" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03753" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03754" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03755" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03756" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03757" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03758" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03759" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03760" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03761" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03762" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03763" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03764" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03765" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03766" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03767" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03768" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03769" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 04701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 04702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05911" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05912" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05913" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05914" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05915" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05916" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05917" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05918" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06511" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06512" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06513" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06514" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06515" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06709" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06710" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06711" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06712" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07115" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07311" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07312" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07313" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07314" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07315" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07316" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07317" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07318" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07319" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07320" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07321" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07322" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08511" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08512" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08513" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08514" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 10100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 10701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 10702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 10703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00808" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00809" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00810" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00811" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00812" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00813" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00814" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00815" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00816" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00817" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00818" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00819" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00820" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00821" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00822" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00823" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00824" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 04104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 04105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 04106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DC, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DC, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DC, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DC, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DC, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DE, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DE, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DE, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DE, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DE, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DE, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 02103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 06100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 06300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 06901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 06902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 06903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08606" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08607" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08608" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08609" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08610" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08611" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08612" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08613" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08614" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08615" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08616" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08617" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08618" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08619" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08620" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08621" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08622" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08623" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08624" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09911" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 12100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 12701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 12702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 12703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 12704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 05001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 05002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 06001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 06002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03009" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03407" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03408" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03409" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03410" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03411" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03412" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03413" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03414" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03415" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03416" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03417" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03418" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03419" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03420" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03421" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03422" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03520" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03521" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03522" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03523" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03524" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03525" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03526" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03527" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03528" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03529" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03530" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03531" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03532" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03210" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03211" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03212" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03213" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01405" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01406" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01407" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01408" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01409" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01410" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01808" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ND, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ND, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ND, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ND, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ND, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00405" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00406" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00407" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00408" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00409" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00410" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00411" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00412" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00413" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03210" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03211" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03212" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03311" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03312" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03313" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03709" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03710" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03808" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03809" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03810" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04009" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04010" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04011" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04012" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04013" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04014" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04015" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04016" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04017" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04018" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01314" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01316" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01317" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01318" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01319" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01320" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01321" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01322" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01323" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01324" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03210" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03211" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 04001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 04002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SD, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SD, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SD, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SD, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SD, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SD, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02311" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02312" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02313" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02314" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02315" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02316" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02317" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02318" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02319" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02320" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02321" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02322" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02511" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02512" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02513" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02514" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02515" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02516" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04606" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04607" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04608" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04609" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04610" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04611" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04612" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04613" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04614" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04615" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04616" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04617" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04618" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04619" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04620" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04621" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04622" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04623" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04624" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04625" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04626" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04627" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04628" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04629" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04630" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04631" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04632" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04633" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04634" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04635" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04636" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04637" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04638" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05911" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05912" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05913" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05914" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05915" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05916" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 05001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 11001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 11002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 13001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 21001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35009" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 49001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 49002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 49003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 49004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 53001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 57001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 57002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 10701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 10702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 10703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51010" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51020" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51040" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51044" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51045" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51080" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51084" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51085" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51087" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51089" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51090" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51095" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51096" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51097" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51115" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51120" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51125" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51135" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51145" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51154" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51155" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51164" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51165" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51167" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51175" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51186" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51215" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51224" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51225" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51235" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51244" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51245" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51246" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51255" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 55001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 55002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VT, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VT, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VT, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VT, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11606" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11607" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11608" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11609" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11610" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11611" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11612" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11613" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11614" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11615" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11616" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 10000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 20000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 30000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 40101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 40301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 40701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 41001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 41002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 41003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 41004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 41005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 50000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 55101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 55102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 55103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 70101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 70201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 70301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WY, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WY, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WY, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WY, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WY, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA Metro Status "In metro area, not/partially in principal city" -PUMA Metro Status "In metro area, principal city" -PUMA Metro Status Not/partially in metro area -PV Orientation East ResStockArguments pv_system_array_azimuth=90 pv_system_2_array_azimuth=0 -PV Orientation None ResStockArguments pv_system_array_azimuth=180 pv_system_2_array_azimuth=0 -PV Orientation North ResStockArguments pv_system_array_azimuth=0 pv_system_2_array_azimuth=0 -PV Orientation Northeast ResStockArguments pv_system_array_azimuth=45 pv_system_2_array_azimuth=0 -PV Orientation Northwest ResStockArguments pv_system_array_azimuth=315 pv_system_2_array_azimuth=0 -PV Orientation South ResStockArguments pv_system_array_azimuth=180 pv_system_2_array_azimuth=0 -PV Orientation Southeast ResStockArguments pv_system_array_azimuth=135 pv_system_2_array_azimuth=0 -PV Orientation Southwest ResStockArguments pv_system_array_azimuth=225 pv_system_2_array_azimuth=0 -PV Orientation West ResStockArguments pv_system_array_azimuth=270 pv_system_2_array_azimuth=0 -PV System Size 1.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=1000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 11.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=11000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 13.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=13000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 3.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=3000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 5.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=5000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 7.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=7000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 9.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=9000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size None ResStockArguments pv_system_present=false pv_system_module_type=auto pv_system_max_power_output=0 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -Plug Load Diversity 100% ResStockArguments misc_plug_loads_other_2_usage_multiplier=1.0 misc_plug_loads_television_2_usage_multiplier=1.0 -Plug Load Diversity 150% ResStockArguments misc_plug_loads_other_2_usage_multiplier=1.5 misc_plug_loads_television_2_usage_multiplier=1.5 -Plug Load Diversity 200% ResStockArguments misc_plug_loads_other_2_usage_multiplier=2.0 misc_plug_loads_television_2_usage_multiplier=2.0 -Plug Load Diversity 25% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.25 misc_plug_loads_television_2_usage_multiplier=0.25 -Plug Load Diversity 400% ResStockArguments misc_plug_loads_other_2_usage_multiplier=4.0 misc_plug_loads_television_2_usage_multiplier=4.0 -Plug Load Diversity 50% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.5 misc_plug_loads_television_2_usage_multiplier=0.5 -Plug Load Diversity 75% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.75 misc_plug_loads_television_2_usage_multiplier=0.75 -Plug Loads 100% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.0 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.0 -Plug Loads 101% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.01 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.01 -Plug Loads 102% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.02 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.02 -Plug Loads 103% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.03 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.03 -Plug Loads 104% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.04 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.04 -Plug Loads 105% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.05 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.05 -Plug Loads 106% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.06 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.06 -Plug Loads 108% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.08 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.08 -Plug Loads 110% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.1 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.1 -Plug Loads 113% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.13 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.13 -Plug Loads 119% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.19 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.19 -Plug Loads 121% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.21 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.21 -Plug Loads 123% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.23 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.23 -Plug Loads 134% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.34 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.34 -Plug Loads 137% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.37 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.37 -Plug Loads 140% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.4 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.4 -Plug Loads 144% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.44 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.44 -Plug Loads 166% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.66 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.66 -Plug Loads 78% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.78 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.78 -Plug Loads 79% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.79 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.79 -Plug Loads 82% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.82 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.82 -Plug Loads 84% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.84 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.84 -Plug Loads 85% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.85 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.85 -Plug Loads 86% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.86 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.86 -Plug Loads 89% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.89 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.89 -Plug Loads 91% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.91 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.91 -Plug Loads 93% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.93 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.93 -Plug Loads 94% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.94 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.94 -Plug Loads 95% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.95 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.95 -Plug Loads 96% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.96 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.96 -Plug Loads 97% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.97 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.97 -Plug Loads 99% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.99 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.99 -Power Outage Summer ResStockArguments schedules_power_outage_periods=Jul 1 5 - Jul 31 14 schedules_power_outage_periods_window_natvent_availability=always available -REEDS Balancing Area 1 -REEDS Balancing Area 10 -REEDS Balancing Area 100 -REEDS Balancing Area 101 -REEDS Balancing Area 102 -REEDS Balancing Area 103 -REEDS Balancing Area 104 -REEDS Balancing Area 105 -REEDS Balancing Area 106 -REEDS Balancing Area 107 -REEDS Balancing Area 108 -REEDS Balancing Area 109 -REEDS Balancing Area 11 -REEDS Balancing Area 110 -REEDS Balancing Area 111 -REEDS Balancing Area 112 -REEDS Balancing Area 113 -REEDS Balancing Area 114 -REEDS Balancing Area 115 -REEDS Balancing Area 116 -REEDS Balancing Area 117 -REEDS Balancing Area 118 -REEDS Balancing Area 119 -REEDS Balancing Area 12 -REEDS Balancing Area 120 -REEDS Balancing Area 121 -REEDS Balancing Area 122 -REEDS Balancing Area 123 -REEDS Balancing Area 124 -REEDS Balancing Area 125 -REEDS Balancing Area 126 -REEDS Balancing Area 127 -REEDS Balancing Area 128 -REEDS Balancing Area 129 -REEDS Balancing Area 13 -REEDS Balancing Area 130 -REEDS Balancing Area 131 -REEDS Balancing Area 132 -REEDS Balancing Area 133 -REEDS Balancing Area 134 -REEDS Balancing Area 14 -REEDS Balancing Area 15 -REEDS Balancing Area 16 -REEDS Balancing Area 17 -REEDS Balancing Area 18 -REEDS Balancing Area 19 -REEDS Balancing Area 2 -REEDS Balancing Area 20 -REEDS Balancing Area 21 -REEDS Balancing Area 22 -REEDS Balancing Area 23 -REEDS Balancing Area 24 -REEDS Balancing Area 25 -REEDS Balancing Area 26 -REEDS Balancing Area 27 -REEDS Balancing Area 28 -REEDS Balancing Area 29 -REEDS Balancing Area 3 -REEDS Balancing Area 30 -REEDS Balancing Area 31 -REEDS Balancing Area 32 -REEDS Balancing Area 33 -REEDS Balancing Area 34 -REEDS Balancing Area 35 -REEDS Balancing Area 36 -REEDS Balancing Area 37 -REEDS Balancing Area 38 -REEDS Balancing Area 39 -REEDS Balancing Area 4 -REEDS Balancing Area 40 -REEDS Balancing Area 41 -REEDS Balancing Area 42 -REEDS Balancing Area 43 -REEDS Balancing Area 44 -REEDS Balancing Area 45 -REEDS Balancing Area 46 -REEDS Balancing Area 47 -REEDS Balancing Area 48 -REEDS Balancing Area 49 -REEDS Balancing Area 5 -REEDS Balancing Area 50 -REEDS Balancing Area 51 -REEDS Balancing Area 52 -REEDS Balancing Area 53 -REEDS Balancing Area 54 -REEDS Balancing Area 55 -REEDS Balancing Area 56 -REEDS Balancing Area 57 -REEDS Balancing Area 58 -REEDS Balancing Area 59 -REEDS Balancing Area 6 -REEDS Balancing Area 60 -REEDS Balancing Area 61 -REEDS Balancing Area 62 -REEDS Balancing Area 63 -REEDS Balancing Area 64 -REEDS Balancing Area 65 -REEDS Balancing Area 66 -REEDS Balancing Area 67 -REEDS Balancing Area 68 -REEDS Balancing Area 69 -REEDS Balancing Area 7 -REEDS Balancing Area 70 -REEDS Balancing Area 71 -REEDS Balancing Area 72 -REEDS Balancing Area 73 -REEDS Balancing Area 74 -REEDS Balancing Area 75 -REEDS Balancing Area 76 -REEDS Balancing Area 77 -REEDS Balancing Area 78 -REEDS Balancing Area 79 -REEDS Balancing Area 8 -REEDS Balancing Area 80 -REEDS Balancing Area 81 -REEDS Balancing Area 82 -REEDS Balancing Area 83 -REEDS Balancing Area 84 -REEDS Balancing Area 85 -REEDS Balancing Area 86 -REEDS Balancing Area 87 -REEDS Balancing Area 88 -REEDS Balancing Area 89 -REEDS Balancing Area 9 -REEDS Balancing Area 90 -REEDS Balancing Area 91 -REEDS Balancing Area 92 -REEDS Balancing Area 93 -REEDS Balancing Area 94 -REEDS Balancing Area 95 -REEDS Balancing Area 96 -REEDS Balancing Area 97 -REEDS Balancing Area 98 -REEDS Balancing Area 99 -REEDS Balancing Area None -Radiant Barrier No ResStockArguments radiant_barrier_attic_location=none radiant_barrier_grade=1 -Radiant Barrier None ResStockArguments radiant_barrier_attic_location=none radiant_barrier_grade=1 -Radiant Barrier Yes ResStockArguments radiant_barrier_attic_location=Attic roof only radiant_barrier_grade=1 -Range Spot Vent Hour Hour0 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=0 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour1 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=1 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour10 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=10 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour11 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=11 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour12 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=12 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour13 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=13 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour14 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=14 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour15 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=15 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour16 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=16 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour17 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=17 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour18 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=18 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour19 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=19 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour2 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=2 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour20 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=20 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour21 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=21 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour22 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=22 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour23 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=23 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour3 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=3 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour4 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=4 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour5 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=5 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour6 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=6 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour7 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=7 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour8 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=8 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour9 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=9 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Refrigerator EF 10.2 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=748 -Refrigerator EF 10.5 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=727 -Refrigerator EF 15.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=480 -Refrigerator EF 17.6 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=433 -Refrigerator EF 19.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=383 -Refrigerator EF 21.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=348 -Refrigerator EF 6.7 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=1139 -Refrigerator None ResStockArguments refrigerator_present=false refrigerator_location=auto refrigerator_rated_annual_kwh=0 -Refrigerator Void -Refrigerator Usage Level 100% Usage ResStockArguments refrigerator_usage_multiplier=1.0 -Refrigerator Usage Level 105% Usage ResStockArguments refrigerator_usage_multiplier=1.05 -Refrigerator Usage Level 95% Usage ResStockArguments refrigerator_usage_multiplier=0.95 -Roof Material "Asphalt Shingles, Dark" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=dark -Roof Material "Asphalt Shingles, Light" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=light -Roof Material "Asphalt Shingles, Medium" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=medium -Roof Material "Asphalt Shingles, White or cool colors" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=reflective -Roof Material "Composition Shingles, White or Cool Colors" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=reflective -Roof Material "Metal, Cool Colors" ResStockArguments roof_material_type=metal surfacing roof_color=reflective -Roof Material "Metal, Dark" ResStockArguments roof_material_type=metal surfacing roof_color=dark -Roof Material "Metal, Light" ResStockArguments roof_material_type=metal surfacing roof_color=light -Roof Material "Metal, Medium" ResStockArguments roof_material_type=metal surfacing roof_color=medium -Roof Material "Metal, White" ResStockArguments roof_material_type=metal surfacing roof_color=reflective -Roof Material "Tile, Clay or Ceramic" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium -Roof Material "Tile, Clay or Ceramic, White or Cool Colors" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective -Roof Material "Tile, Concrete" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium -Roof Material "Tile, Concrete, White or Cool Colors" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective -Roof Material "Tile, Dark" ResStockArguments roof_material_type=slate or tile shingles roof_color=dark -Roof Material "Tile, Light" ResStockArguments roof_material_type=slate or tile shingles roof_color=light -Roof Material "Tile, Medium" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium -Roof Material "Tile, White" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective -Roof Material Composition Shingles ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=medium -Roof Material Galvanized Steel ResStockArguments roof_material_type=metal surfacing roof_color=medium -Roof Material Slate ResStockArguments roof_material_type=slate or tile shingles roof_color=medium -Roof Material Wood Shingles ResStockArguments roof_material_type=wood shingles or shakes roof_color=medium -Solar Hot Water "40 sqft, South, 10 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=10 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, South, Latitude - 15 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=latitude-15 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, South, Roof Pitch" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, West, 70 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=70 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, West, Latitude + 15 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=latitude+15 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, West, Roof Pitch" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water None ResStockArguments solar_thermal_system_type=none solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -State AK ResStockArguments site_state_code=AK -State AL ResStockArguments site_state_code=AL -State AR ResStockArguments site_state_code=AR -State AZ ResStockArguments site_state_code=AZ -State CA ResStockArguments site_state_code=CA -State CO ResStockArguments site_state_code=CO -State CT ResStockArguments site_state_code=CT -State DC ResStockArguments site_state_code=DC -State DE ResStockArguments site_state_code=DE -State FL ResStockArguments site_state_code=FL -State GA ResStockArguments site_state_code=GA -State HI ResStockArguments site_state_code=HI -State IA ResStockArguments site_state_code=IA -State ID ResStockArguments site_state_code=ID -State IL ResStockArguments site_state_code=IL -State IN ResStockArguments site_state_code=IN -State KS ResStockArguments site_state_code=KS -State KY ResStockArguments site_state_code=KY -State LA ResStockArguments site_state_code=LA -State MA ResStockArguments site_state_code=MA -State MD ResStockArguments site_state_code=MD -State ME ResStockArguments site_state_code=ME -State MI ResStockArguments site_state_code=MI -State MN ResStockArguments site_state_code=MN -State MO ResStockArguments site_state_code=MO -State MS ResStockArguments site_state_code=MS -State MT ResStockArguments site_state_code=MT -State NC ResStockArguments site_state_code=NC -State ND ResStockArguments site_state_code=ND -State NE ResStockArguments site_state_code=NE -State NH ResStockArguments site_state_code=NH -State NJ ResStockArguments site_state_code=NJ -State NM ResStockArguments site_state_code=NM -State NV ResStockArguments site_state_code=NV -State NY ResStockArguments site_state_code=NY -State OH ResStockArguments site_state_code=OH -State OK ResStockArguments site_state_code=OK -State OR ResStockArguments site_state_code=OR -State PA ResStockArguments site_state_code=PA -State RI ResStockArguments site_state_code=RI -State SC ResStockArguments site_state_code=SC -State SD ResStockArguments site_state_code=SD -State TN ResStockArguments site_state_code=TN -State TX ResStockArguments site_state_code=TX -State UT ResStockArguments site_state_code=UT -State VA ResStockArguments site_state_code=VA -State VT ResStockArguments site_state_code=VT -State WA ResStockArguments site_state_code=WA -State WI ResStockArguments site_state_code=WI -State WV ResStockArguments site_state_code=WV -State WY ResStockArguments site_state_code=WY -State Metro Median Income 0-30% -State Metro Median Income 100-120% -State Metro Median Income 120-150% -State Metro Median Income 150%+ -State Metro Median Income 30-60% -State Metro Median Income 60-80% -State Metro Median Income 80-100% -State Metro Median Income Not Available -Storm Windows Clear ResStockArguments window_storm_type=clear -Storm Windows Low-E ResStockArguments window_storm_type=low-e -Tenure Not Available -Tenure Owner -Tenure Renter -Usage Level Average -Usage Level High -Usage Level Low -Usage Level Medium -Vacancy Status Occupied -Vacancy Status Vacant ResStockArguments schedules_vacancy_periods=Jan 1 - Dec 31 -Vintage 1940s ResStockArguments vintage=1940s year_built=auto -Vintage 1950s ResStockArguments vintage=1950s year_built=auto -Vintage 1960s ResStockArguments vintage=1960s year_built=auto -Vintage 1970s ResStockArguments vintage=1970s year_built=auto -Vintage 1980s ResStockArguments vintage=1980s year_built=auto -Vintage 1990s ResStockArguments vintage=1990s year_built=auto -Vintage 2000s ResStockArguments vintage=2000s year_built=auto -Vintage 2010s ResStockArguments vintage=2010s year_built=auto -Vintage <1940 ResStockArguments vintage=<1940 year_built=auto -Vintage <1950 ResStockArguments vintage=<1950 year_built=auto -Vintage ACS 1940-59 -Vintage ACS 1960-79 -Vintage ACS 1980-99 -Vintage ACS 2000-09 -Vintage ACS 2010s -Vintage ACS <1940 -Water Heater Efficiency "Electric Heat Pump, 50 gal, 3.45 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Electric Heat Pump, 50 gal, 3.45 UEF, 140F" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=140 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Electric Heat Pump, 66 gal, 3.35 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=66 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.35 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Electric Heat Pump, 80 gal, 3.45 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=80 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Natural Gas Premium, Condensing" ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Natural Gas Tankless, Condensing" ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=natural gas water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.96 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Propane Premium, Condensing" ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Electric Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=electricity water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.95 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Electric Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=electricity water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.92 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Electric Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=electricity water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.99 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency FIXME Fuel Oil Indirect ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.62 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Fuel Oil Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.68 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Fuel Oil Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.62 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Natural Gas Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.67 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Natural Gas Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Natural Gas Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=natural gas water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Other Fuel ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=wood water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Propane Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.67 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Propane Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Propane Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=propane water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Fuel Electricity -Water Heater Fuel Fuel Oil -Water Heater Fuel Natural Gas -Water Heater Fuel Other Fuel -Water Heater Fuel Propane -Water Heater In Unit No -Water Heater In Unit Yes -Water Heater Location Attic ResStockArguments water_heater_location=attic -Water Heater Location Conditioned Mechanical Room ResStockArguments water_heater_location=other heated space -Water Heater Location Crawlspace ResStockArguments water_heater_location=crawlspace -Water Heater Location Garage ResStockArguments water_heater_location=garage -Water Heater Location Heated Basement ResStockArguments water_heater_location=basement - conditioned -Water Heater Location Living Space ResStockArguments water_heater_location=conditioned space -Water Heater Location Outside ResStockArguments water_heater_location=other exterior -Water Heater Location Unheated Basement ResStockArguments water_heater_location=basement - unconditioned -Window Areas F10 B30 L10 R10 ResStockArguments window_front_wwr=0.1 window_back_wwr=0.3 window_left_wwr=0.1 window_right_wwr=0.1 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F12 B12 L12 R12 ResStockArguments window_front_wwr=0.12 window_back_wwr=0.12 window_left_wwr=0.12 window_right_wwr=0.12 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F15 B15 L0 R0 ResStockArguments window_front_wwr=0.15 window_back_wwr=0.15 window_left_wwr=0 window_right_wwr=0 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F15 B15 L15 R15 ResStockArguments window_front_wwr=0.15 window_back_wwr=0.15 window_left_wwr=0.15 window_right_wwr=0.15 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F18 B18 L18 R18 ResStockArguments window_front_wwr=0.18 window_back_wwr=0.18 window_left_wwr=0.18 window_right_wwr=0.18 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F30 B30 L30 R30 ResStockArguments window_front_wwr=0.30 window_back_wwr=0.30 window_left_wwr=0.30 window_right_wwr=0.30 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F6 B6 L6 R6 ResStockArguments window_front_wwr=0.06 window_back_wwr=0.06 window_left_wwr=0.06 window_right_wwr=0.06 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F9 B9 L9 R9 ResStockArguments window_front_wwr=0.09 window_back_wwr=0.09 window_left_wwr=0.09 window_right_wwr=0.09 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas None ResStockArguments window_front_wwr=0.0 window_back_wwr=0.0 window_left_wwr=0.0 window_right_wwr=0.0 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Windows "Double, Clear, Metal, Air" ResStockArguments window_ufactor=0.76 window_shgc=0.67 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Metal, Air, Exterior Clear Storm" ResStockArguments window_ufactor=0.55 window_shgc=0.51 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.49 window_shgc=0.44 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Non-metal, Air" ResStockArguments window_ufactor=0.49 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Non-metal, Air, Exterior Clear Storm" ResStockArguments window_ufactor=0.34 window_shgc=0.49 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Non-metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.28 window_shgc=0.42 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Thermal-Break, Air" ResStockArguments window_ufactor=0.63 window_shgc=0.62 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Low-E, H-Gain" ResStockArguments window_ufactor=0.29 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Low-E, L-Gain" ResStockArguments window_ufactor=0.26 window_shgc=0.31 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Low-E, Non-metal, Air, L-Gain" ResStockArguments window_ufactor=0.37 window_shgc=0.3 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Low-E, Non-metal, Air, M-Gain" ResStockArguments window_ufactor=0.38 window_shgc=0.44 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Metal" ResStockArguments window_ufactor=1.16 window_shgc=0.76 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Metal, Exterior Clear Storm" ResStockArguments window_ufactor=0.67 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.57 window_shgc=0.47 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Non-metal" ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Non-metal, Exterior Clear Storm" ResStockArguments window_ufactor=0.47 window_shgc=0.54 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Non-metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.36 window_shgc=0.46 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Triple, Low-E, Insulated, Argon, H-Gain" ResStockArguments window_ufactor=0.18 window_shgc=0.40 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Triple, Low-E, Insulated, Argon, L-Gain" ResStockArguments window_ufactor=0.17 window_shgc=0.27 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Triple, Low-E, Non-metal, Air, L-Gain" ResStockArguments window_ufactor=0.29 window_shgc=0.26 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows No Windows ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows Void +HVAC Heating Efficiency None ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=6.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency Shared Heating +HVAC Heating Efficiency Void +HVAC Heating Type Ducted Heat Pump +HVAC Heating Type Ducted Heating +HVAC Heating Type Non-Ducted Heat Pump +HVAC Heating Type Non-Ducted Heating +HVAC Heating Type None +HVAC Heating Type And Fuel Electricity ASHP +HVAC Heating Type And Fuel Electricity Baseboard +HVAC Heating Type And Fuel Electricity Electric Boiler +HVAC Heating Type And Fuel Electricity Electric Furnace +HVAC Heating Type And Fuel Electricity Electric Wall Furnace +HVAC Heating Type And Fuel Electricity MSHP +HVAC Heating Type And Fuel Electricity Other +HVAC Heating Type And Fuel Electricity Shared Heating +HVAC Heating Type And Fuel Fuel Oil Fuel Boiler +HVAC Heating Type And Fuel Fuel Oil Fuel Furnace +HVAC Heating Type And Fuel Fuel Oil Fuel Wall/Floor Furnace +HVAC Heating Type And Fuel Fuel Oil Shared Heating +HVAC Heating Type And Fuel Natural Gas Fuel Boiler +HVAC Heating Type And Fuel Natural Gas Fuel Furnace +HVAC Heating Type And Fuel Natural Gas Fuel Wall/Floor Furnace +HVAC Heating Type And Fuel Natural Gas Shared Heating +HVAC Heating Type And Fuel None +HVAC Heating Type And Fuel Other Fuel Fuel Boiler +HVAC Heating Type And Fuel Other Fuel Fuel Furnace +HVAC Heating Type And Fuel Other Fuel Fuel Wall/Floor Furnace +HVAC Heating Type And Fuel Other Fuel Shared Heating +HVAC Heating Type And Fuel Propane Fuel Boiler +HVAC Heating Type And Fuel Propane Fuel Furnace +HVAC Heating Type And Fuel Propane Fuel Wall/Floor Furnace +HVAC Heating Type And Fuel Propane Shared Heating +HVAC Heating Type And Fuel Void +HVAC Secondary Heating Efficiency "Electric Baseboard, 100% Efficiency" ResStockArguments heating_system_2_type=ElectricResistance heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Electric Portable Heater, 100% Efficiency" ResStockArguments heating_system_2_type=SpaceHeater heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 60% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.76 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.8 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.90 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 92.5% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.925 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Fireplace, 60% AFUE" ResStockArguments heating_system_2_type=Fireplace heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Furnace, 60% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Furnace, 76% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.76 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Furnace, 80% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.8 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Furnace, 92.5% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.925 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency None ResStockArguments heating_system_2_type=none heating_system_2_heating_efficiency=0 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency Shared Heating ResStockArguments heating_system_2_type=none heating_system_2_heating_efficiency=0 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency Void +HVAC Secondary Heating Fuel Electricity ResStockArguments heating_system_2_fuel=electricity +HVAC Secondary Heating Fuel Fuel Oil ResStockArguments heating_system_2_fuel=fuel oil +HVAC Secondary Heating Fuel Natural Gas ResStockArguments heating_system_2_fuel=natural gas +HVAC Secondary Heating Fuel None ResStockArguments heating_system_2_fuel=electricity +HVAC Secondary Heating Fuel Other Fuel ResStockArguments heating_system_2_fuel=wood +HVAC Secondary Heating Fuel Propane ResStockArguments heating_system_2_fuel=propane +HVAC Secondary Heating Fuel Wood ResStockArguments heating_system_2_fuel=wood +HVAC Secondary Heating Partial Space Conditioning 0% ResStockArguments heating_system_2_fraction_heat_load_served=0 +HVAC Secondary Heating Partial Space Conditioning 10% ResStockArguments heating_system_2_fraction_heat_load_served=0.1 +HVAC Secondary Heating Partial Space Conditioning 20% ResStockArguments heating_system_2_fraction_heat_load_served=0.2 +HVAC Secondary Heating Partial Space Conditioning 30% ResStockArguments heating_system_2_fraction_heat_load_served=0.3 +HVAC Secondary Heating Partial Space Conditioning 40% ResStockArguments heating_system_2_fraction_heat_load_served=0.4 +HVAC Secondary Heating Partial Space Conditioning 49% ResStockArguments heating_system_2_fraction_heat_load_served=0.49 +HVAC Secondary Heating Partial Space Conditioning None ResStockArguments heating_system_2_fraction_heat_load_served=0 +HVAC Secondary Heating Partial Space Conditioning Void +HVAC Secondary Heating Type Ducted Heating +HVAC Secondary Heating Type Non-Ducted Heating +HVAC Secondary Heating Type None +HVAC Shared Efficiencies "Boiler Baseboards Heating Only, Electricity" ResStockArguments heating_system_type=Shared Boiler w/ Baseboard heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Shared Efficiencies "Boiler Baseboards Heating Only, Fuel" ResStockArguments heating_system_type=Shared Boiler w/ Baseboard heating_system_heating_efficiency=0.78 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Shared Efficiencies "Fan Coil Heating and Cooling, Electricity" ResStockArguments heating_system_type=Shared Boiler w/ Ductless Fan Coil heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Shared Efficiencies "Fan Coil Heating and Cooling, Fuel" ResStockArguments heating_system_type=Shared Boiler w/ Ductless Fan Coil heating_system_heating_efficiency=0.78 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Shared Efficiencies Fan Coil Cooling Only ResStockArguments cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false +HVAC Shared Efficiencies None +HVAC Shared Efficiencies Void +HVAC System Is Faulted No +HVAC System Is Faulted Yes +HVAC System Is Scaled No +HVAC System Is Scaled Yes +HVAC System Single Speed AC Airflow 154.8 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=154.8 +HVAC System Single Speed AC Airflow 204.4 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=204.4 +HVAC System Single Speed AC Airflow 254.0 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=254.0 +HVAC System Single Speed AC Airflow 303.5 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=303.5 +HVAC System Single Speed AC Airflow 353.1 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=353.1 +HVAC System Single Speed AC Airflow 402.7 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=402.7 +HVAC System Single Speed AC Airflow 452.3 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=452.3 +HVAC System Single Speed AC Airflow 501.9 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=501.9 +HVAC System Single Speed AC Airflow 551.5 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=551.5 +HVAC System Single Speed AC Airflow 601.0 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=601.0 +HVAC System Single Speed AC Airflow 650.6 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=650.6 +HVAC System Single Speed AC Airflow 700.2 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=700.2 +HVAC System Single Speed AC Airflow None +HVAC System Single Speed AC Charge 0.570 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.570 +HVAC System Single Speed AC Charge 0.709 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.709 +HVAC System Single Speed AC Charge 0.848 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.848 +HVAC System Single Speed AC Charge 0.988 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.988 +HVAC System Single Speed AC Charge 1.127 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.127 +HVAC System Single Speed AC Charge 1.266 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.266 +HVAC System Single Speed AC Charge 1.405 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.405 +HVAC System Single Speed AC Charge None +HVAC System Single Speed ASHP Airflow 154.8 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=154.8 +HVAC System Single Speed ASHP Airflow 204.4 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=204.4 +HVAC System Single Speed ASHP Airflow 254.0 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=254.0 +HVAC System Single Speed ASHP Airflow 303.5 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=303.5 +HVAC System Single Speed ASHP Airflow 353.1 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=353.1 +HVAC System Single Speed ASHP Airflow 402.7 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=402.7 +HVAC System Single Speed ASHP Airflow 452.3 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=452.3 +HVAC System Single Speed ASHP Airflow 501.9 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=501.9 +HVAC System Single Speed ASHP Airflow 551.5 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=551.5 +HVAC System Single Speed ASHP Airflow 601.0 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=601.0 +HVAC System Single Speed ASHP Airflow 650.6 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=650.6 +HVAC System Single Speed ASHP Airflow 700.2 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=700.2 +HVAC System Single Speed ASHP Airflow None +HVAC System Single Speed ASHP Charge 0.570 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.570 +HVAC System Single Speed ASHP Charge 0.709 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.709 +HVAC System Single Speed ASHP Charge 0.848 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.848 +HVAC System Single Speed ASHP Charge 0.988 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.988 +HVAC System Single Speed ASHP Charge 1.127 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.127 +HVAC System Single Speed ASHP Charge 1.266 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.266 +HVAC System Single Speed ASHP Charge 1.405 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.405 +HVAC System Single Speed ASHP Charge None +Has PV No +Has PV Yes +Heat Pump Backup Use Existing System ResStockArguments heat_pump_backup_use_existing_system=true +Heating Fuel Electricity ResStockArguments heating_system_fuel=electricity +Heating Fuel Fuel Oil ResStockArguments heating_system_fuel=fuel oil +Heating Fuel Natural Gas ResStockArguments heating_system_fuel=natural gas +Heating Fuel None ResStockArguments heating_system_fuel=natural gas +Heating Fuel Other Fuel ResStockArguments heating_system_fuel=wood +Heating Fuel Propane ResStockArguments heating_system_fuel=propane +Heating Fuel Wood ResStockArguments heating_system_fuel=wood +Heating Setpoint 55F ResStockArguments hvac_control_heating_weekday_setpoint_temp=55 hvac_control_heating_weekend_setpoint_temp=55 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 60F ResStockArguments hvac_control_heating_weekday_setpoint_temp=60 hvac_control_heating_weekend_setpoint_temp=60 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 62F ResStockArguments hvac_control_heating_weekday_setpoint_temp=62 hvac_control_heating_weekend_setpoint_temp=62 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 63F ResStockArguments hvac_control_heating_weekday_setpoint_temp=63 hvac_control_heating_weekend_setpoint_temp=63 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 64F ResStockArguments hvac_control_heating_weekday_setpoint_temp=64 hvac_control_heating_weekend_setpoint_temp=64 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 65F ResStockArguments hvac_control_heating_weekday_setpoint_temp=65 hvac_control_heating_weekend_setpoint_temp=65 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 66F ResStockArguments hvac_control_heating_weekday_setpoint_temp=66 hvac_control_heating_weekend_setpoint_temp=66 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 67F ResStockArguments hvac_control_heating_weekday_setpoint_temp=67 hvac_control_heating_weekend_setpoint_temp=67 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 68F ResStockArguments hvac_control_heating_weekday_setpoint_temp=68 hvac_control_heating_weekend_setpoint_temp=68 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 69F ResStockArguments hvac_control_heating_weekday_setpoint_temp=69 hvac_control_heating_weekend_setpoint_temp=69 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 70F ResStockArguments hvac_control_heating_weekday_setpoint_temp=70 hvac_control_heating_weekend_setpoint_temp=70 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 71F ResStockArguments hvac_control_heating_weekday_setpoint_temp=71 hvac_control_heating_weekend_setpoint_temp=71 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 71F w/ Building America season ResStockArguments hvac_control_heating_weekday_setpoint_temp=71 hvac_control_heating_weekend_setpoint_temp=71 use_auto_heating_season=true hvac_control_heating_season_period=auto +Heating Setpoint 72F ResStockArguments hvac_control_heating_weekday_setpoint_temp=72 hvac_control_heating_weekend_setpoint_temp=72 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 73F ResStockArguments hvac_control_heating_weekday_setpoint_temp=73 hvac_control_heating_weekend_setpoint_temp=73 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 74F ResStockArguments hvac_control_heating_weekday_setpoint_temp=74 hvac_control_heating_weekend_setpoint_temp=74 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 75F ResStockArguments hvac_control_heating_weekday_setpoint_temp=75 hvac_control_heating_weekend_setpoint_temp=75 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 76F ResStockArguments hvac_control_heating_weekday_setpoint_temp=76 hvac_control_heating_weekend_setpoint_temp=76 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 78F ResStockArguments hvac_control_heating_weekday_setpoint_temp=78 hvac_control_heating_weekend_setpoint_temp=78 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 80F ResStockArguments hvac_control_heating_weekday_setpoint_temp=80 hvac_control_heating_weekend_setpoint_temp=80 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint Has Offset No +Heating Setpoint Has Offset Yes +Heating Setpoint Offset Magnitude 0F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=0 hvac_control_heating_weekend_setpoint_offset_magnitude=0 +Heating Setpoint Offset Magnitude 12F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=12 hvac_control_heating_weekend_setpoint_offset_magnitude=12 +Heating Setpoint Offset Magnitude 3F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=3 hvac_control_heating_weekend_setpoint_offset_magnitude=3 +Heating Setpoint Offset Magnitude 6F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=6 hvac_control_heating_weekend_setpoint_offset_magnitude=6 +Heating Setpoint Offset Period Day ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day and Night ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1" +Heating Setpoint Offset Period Day and Night +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1" +Heating Setpoint Offset Period Day and Night +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Heating Setpoint Offset Period Day and Night +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Heating Setpoint Offset Period Day and Night +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0" +Heating Setpoint Offset Period Day and Night +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0" +Heating Setpoint Offset Period Day and Night -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1" +Heating Setpoint Offset Period Day and Night -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1" +Heating Setpoint Offset Period Day and Night -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1" +Heating Setpoint Offset Period Day and Night -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1" +Heating Setpoint Offset Period Day and Night -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" +Heating Setpoint Offset Period Night ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" +Heating Setpoint Offset Period Night +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" +Heating Setpoint Offset Period Night +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Night +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Night +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Night +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Night -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" +Heating Setpoint Offset Period Night -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" +Heating Setpoint Offset Period Night -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" +Heating Setpoint Offset Period Night -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" +Heating Setpoint Offset Period Night -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" +Heating Setpoint Offset Period None ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Holiday Lighting No Exterior Use ResStockArguments holiday_lighting_present=false holiday_lighting_daily_kwh=0 holiday_lighting_period=auto +Holiday Lighting None ResStockArguments holiday_lighting_present=false holiday_lighting_daily_kwh=0 holiday_lighting_period=auto +Hot Water Distribution "R-2, Demand" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=presence sensor demand control hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Distribution "R-2, Timer" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=timer hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Distribution "R-5, Timer" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=timer hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=5 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Distribution R-2 ResStockArguments hot_water_distribution_system_type=Standard hot_water_distribution_standard_piping_length=auto hot_water_distribution_recirc_control_type=no control hot_water_distribution_recirc_piping_length=0 hot_water_distribution_recirc_branch_piping_length=0 hot_water_distribution_recirc_pump_power=0 hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Distribution Uninsulated ResStockArguments hot_water_distribution_system_type=Standard hot_water_distribution_standard_piping_length=auto hot_water_distribution_recirc_control_type=no control hot_water_distribution_recirc_piping_length=0 hot_water_distribution_recirc_branch_piping_length=0 hot_water_distribution_recirc_pump_power=0 hot_water_distribution_pipe_r=0 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Fixtures "100% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=1.0 +Hot Water Fixtures "200% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=2.0 +Hot Water Fixtures "50% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=0.5 +Hot Water Fixtures 100% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.0 +Hot Water Fixtures 110% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.1 +Hot Water Fixtures 120% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.2 +Hot Water Fixtures 130% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.3 +Hot Water Fixtures 140% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.4 +Hot Water Fixtures 150% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.5 +Hot Water Fixtures 160% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.6 +Hot Water Fixtures 170% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.7 +Hot Water Fixtures 180% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.8 +Hot Water Fixtures 190% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.9 +Hot Water Fixtures 200% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=2.0 +Hot Water Fixtures 40% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.4 +Hot Water Fixtures 50% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.5 +Hot Water Fixtures 60% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.6 +Hot Water Fixtures 70% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.7 +Hot Water Fixtures 80% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.8 +Hot Water Fixtures 90% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.9 +Household Has Tribal Persons No +Household Has Tribal Persons Not Available +Household Has Tribal Persons Yes +ISO RTO Region CAISO +ISO RTO Region ERCOT +ISO RTO Region MISO +ISO RTO Region NEISO +ISO RTO Region NYISO +ISO RTO Region None +ISO RTO Region PJM +ISO RTO Region SPP +Income 10000-14999 +Income 100000-119999 +Income 120000-139999 +Income 140000-159999 +Income 15000-19999 +Income 160000-179999 +Income 180000-199999 +Income 20000-24999 +Income 200000+ +Income 25000-29999 +Income 30000-34999 +Income 35000-39999 +Income 40000-44999 +Income 45000-49999 +Income 50000-59999 +Income 60000-69999 +Income 70000-79999 +Income 80000-99999 +Income <10000 +Income Not Available +Income RECS2015 100000-119999 +Income RECS2015 120000-139999 +Income RECS2015 140000+ +Income RECS2015 20000-39999 +Income RECS2015 40000-59999 +Income RECS2015 60000-79999 +Income RECS2015 80000-99999 +Income RECS2015 <20000 +Income RECS2015 Not Available +Income RECS2020 100000-149999 +Income RECS2020 150000+ +Income RECS2020 20000-39999 +Income RECS2020 40000-59999 +Income RECS2020 60000-99999 +Income RECS2020 <20000 +Income RECS2020 Not Available +Infiltration "7 ACH50, 0.5 Shelter Coefficient" ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 0.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 0.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 0.75 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.75 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 1 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=1 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 1.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=1.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 10 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=10 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 11.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=11.25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 15 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=15 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 18.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=18.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 2 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=2 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 2.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=2.25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 20 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=20 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 3 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=3 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 3.75 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=3.75 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 30 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=30 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 4 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=4 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 4.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=4.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 40 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=40 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 5.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=5.25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 50 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=50 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 6 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=6 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 7 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 7.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 8 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=8 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration Reduction 15% ResStockArguments air_leakage_percent_reduction=15 +Infiltration Reduction 20% ResStockArguments air_leakage_percent_reduction=20 +Infiltration Reduction 25% ResStockArguments air_leakage_percent_reduction=25 +Insulation Ceiling None ResStockArguments ceiling_assembly_r=0 ceiling_insulation_r=0 +Insulation Ceiling R-13 ResStockArguments ceiling_assembly_r=14.6 ceiling_insulation_r=13 +Insulation Ceiling R-19 ResStockArguments ceiling_assembly_r=20.6 ceiling_insulation_r=19 +Insulation Ceiling R-30 ResStockArguments ceiling_assembly_r=31.6 ceiling_insulation_r=30 +Insulation Ceiling R-38 ResStockArguments ceiling_assembly_r=39.6 ceiling_insulation_r=38 +Insulation Ceiling R-49 ResStockArguments ceiling_assembly_r=50.6 ceiling_insulation_r=49 +Insulation Ceiling R-60 ResStockArguments ceiling_assembly_r=61.6 ceiling_insulation_r=60 +Insulation Ceiling R-7 ResStockArguments ceiling_assembly_r=8.7 ceiling_insulation_r=7 +Insulation Ceiling Uninsulated ResStockArguments ceiling_assembly_r=2.1 ceiling_insulation_r=0 +Insulation Floor Ceiling R-13 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=17.8 floor_over_garage_assembly_r=17.8 +Insulation Floor Ceiling R-19 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=22.6 floor_over_garage_assembly_r=22.6 +Insulation Floor Ceiling R-30 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=30.3 floor_over_garage_assembly_r=30.3 +Insulation Floor Ceiling R-38 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=35.1 floor_over_garage_assembly_r=35.1 +Insulation Floor None ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=0 floor_over_garage_assembly_r=5.3 +Insulation Floor Uninsulated ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=5.3 floor_over_garage_assembly_r=5.3 +Insulation Foundation Wall "Wall R-10, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=10 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto +Insulation Foundation Wall "Wall R-13, Interior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=13 foundation_wall_insulation_location=interior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto +Insulation Foundation Wall "Wall R-15, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=15 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto +Insulation Foundation Wall "Wall R-5, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=5 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto +Insulation Foundation Wall None ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=0 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=0 foundation_wall_assembly_r=auto +Insulation Foundation Wall Uninsulated ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=0 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=0 foundation_wall_assembly_r=auto +Insulation Rim Joist "R-10, Exterior" ResStockArguments rim_joist_continuous_exterior_r=10 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Rim Joist "R-13, Interior" ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=13 rim_joist_assembly_interior_r=10.4 rim_joist_assembly_r=auto +Insulation Rim Joist "R-15, Exterior" ResStockArguments rim_joist_continuous_exterior_r=15 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Rim Joist "R-5, Exterior" ResStockArguments rim_joist_continuous_exterior_r=5 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Rim Joist None ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Rim Joist Uninsulated ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Roof "Finished, R-13" ResStockArguments roof_assembly_r=14.3 +Insulation Roof "Finished, R-19" ResStockArguments roof_assembly_r=21.2 +Insulation Roof "Finished, R-30" ResStockArguments roof_assembly_r=29.7 +Insulation Roof "Finished, R-38" ResStockArguments roof_assembly_r=36.5 +Insulation Roof "Finished, R-49" ResStockArguments roof_assembly_r=47.0 +Insulation Roof "Finished, R-7" ResStockArguments roof_assembly_r=10.2 +Insulation Roof "Finished, Uninsulated" ResStockArguments roof_assembly_r=3.7 +Insulation Roof "Unfinished, Uninsulated" ResStockArguments roof_assembly_r=2.3 +Insulation Sheathing R-10 ResStockArguments wall_continuous_exterior_r=10 +Insulation Sheathing R-15 ResStockArguments wall_continuous_exterior_r=15 +Insulation Sheathing R-5 ResStockArguments wall_continuous_exterior_r=5 +Insulation Slab "2ft R10 Perimeter, Vertical" ResStockArguments slab_perimeter_insulation_r=10 slab_perimeter_depth=2 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "2ft R10 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=10 slab_under_width=2 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "2ft R5 Perimeter, Vertical" ResStockArguments slab_perimeter_insulation_r=5 slab_perimeter_depth=2 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "2ft R5 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=5 slab_under_width=2 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "4ft R5 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=5 slab_under_width=4 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "R10 Whole Slab, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=10 slab_under_width=999 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab None ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab Uninsulated ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Wall "Brick, 12-in, 3-wythe, R-11" ResStockArguments wall_type=StructuralBrick wall_assembly_r=13.3 +Insulation Wall "Brick, 12-in, 3-wythe, R-15" ResStockArguments wall_type=StructuralBrick wall_assembly_r=15.9 +Insulation Wall "Brick, 12-in, 3-wythe, R-19" ResStockArguments wall_type=StructuralBrick wall_assembly_r=18.3 +Insulation Wall "Brick, 12-in, 3-wythe, R-7" ResStockArguments wall_type=StructuralBrick wall_assembly_r=10.3 +Insulation Wall "Brick, 12-in, 3-wythe, Uninsulated" ResStockArguments wall_type=StructuralBrick wall_assembly_r=4.9 +Insulation Wall "CMU, 12-in Hollow" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=4.9 +Insulation Wall "CMU, 12-in Hollow, R-10" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=12.9 +Insulation Wall "CMU, 6-in Concrete Filled" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=3.7 +Insulation Wall "CMU, 6-in Concrete-Filled, R-10" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=11.4 +Insulation Wall "CMU, 6-in Hollow, R-11" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=12.4 +Insulation Wall "CMU, 6-in Hollow, R-15" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=15 +Insulation Wall "CMU, 6-in Hollow, R-19" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=17.4 +Insulation Wall "CMU, 6-in Hollow, R-7" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=9.4 +Insulation Wall "CMU, 6-in Hollow, Uninsulated" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=4 +Insulation Wall "Double Wood Stud, R-33" ResStockArguments wall_type=DoubleWoodStud wall_assembly_r=28.1 +Insulation Wall "Double Wood Stud, R-45, Grade 3" ResStockArguments wall_type=DoubleWoodStud wall_assembly_r=25.1 +Insulation Wall "Generic, 10-in Grid ICF" ResStockArguments wall_type=WoodStud wall_assembly_r=12.4 +Insulation Wall "Generic, T-Mass Wall w/Metal Ties" ResStockArguments wall_type=WoodStud wall_assembly_r=9 +Insulation Wall "ICF, 2-in EPS, 12-in Concrete, 2-in EPS" ResStockArguments wall_type=InsulatedConcreteForms wall_assembly_r=22.5 +Insulation Wall "ICF, 2-in EPS, 4-in Concrete, 2-in EPS" ResStockArguments wall_type=InsulatedConcreteForms wall_assembly_r=20.4 +Insulation Wall "SIP, 3.6 in EPS Core, OSB int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=15.5 +Insulation Wall "SIP, 9.4 in EPS Core, Gypsum int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=35.8 +Insulation Wall "SIP, 9.4 in EPS Core, OSB int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=36 +Insulation Wall "Steel Stud, R-13" ResStockArguments wall_type=SteelFrame wall_assembly_r=7.9 +Insulation Wall "Steel Stud, R-25, Grade 3" ResStockArguments wall_type=SteelFrame wall_assembly_r=10.4 +Insulation Wall "Steel Stud, Uninsulated" ResStockArguments wall_type=SteelFrame wall_assembly_r=3 +Insulation Wall "Wood Stud, R-11" ResStockArguments wall_type=WoodStud wall_assembly_r=10.3 +Insulation Wall "Wood Stud, R-11, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=15.3 +Insulation Wall "Wood Stud, R-13" ResStockArguments wall_type=WoodStud wall_assembly_r=11.3 +Insulation Wall "Wood Stud, R-13, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=16.3 +Insulation Wall "Wood Stud, R-15" ResStockArguments wall_type=WoodStud wall_assembly_r=12.1 +Insulation Wall "Wood Stud, R-15, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=17.1 +Insulation Wall "Wood Stud, R-19" ResStockArguments wall_type=WoodStud wall_assembly_r=15.4 +Insulation Wall "Wood Stud, R-19, Grade 2" ResStockArguments wall_type=WoodStud wall_assembly_r=14.5 +Insulation Wall "Wood Stud, R-19, Grade 2, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=19.5 +Insulation Wall "Wood Stud, R-19, Grade 3" ResStockArguments wall_type=WoodStud wall_assembly_r=13.4 +Insulation Wall "Wood Stud, R-19, Grade 3, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=18.4 +Insulation Wall "Wood Stud, R-19, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=20.4 +Insulation Wall "Wood Stud, R-23 Closed Cell Spray Foam, 2x4, 16 in o.c." ResStockArguments wall_type=WoodStud wall_assembly_r=14.7 +Insulation Wall "Wood Stud, R-23 Closed Cell Spray Foam, 2x4, 16 in o.c., R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=19.7 +Insulation Wall "Wood Stud, R-36" ResStockArguments wall_type=WoodStud wall_assembly_r=22.3 +Insulation Wall "Wood Stud, R-36, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=27.3 +Insulation Wall "Wood Stud, R-7" ResStockArguments wall_type=WoodStud wall_assembly_r=8.7 +Insulation Wall "Wood Stud, R-7, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=13.7 +Insulation Wall "Wood Stud, Uninsulated" ResStockArguments wall_type=WoodStud wall_assembly_r=3.4 +Insulation Wall "Wood Stud, Uninsulated, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=8.4 +Insulation Wall Void +Interior Shading "Summer = 0.5, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.5 window_interior_shading_winter=0.7 +Interior Shading "Summer = 0.5, Winter = 0.95" ResStockArguments window_interior_shading_summer=0.5 window_interior_shading_winter=0.95 +Interior Shading "Summer = 0.6, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.6 window_interior_shading_winter=0.7 +Interior Shading "Summer = 0.7, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.7 +Interior Shading "Summer = 0.7, Winter = 0.85" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.85 +Interior Shading "Summer = 0.7, Winter = 0.95" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.95 +Lighting 100% CFL ResStockArguments lighting_present=true lighting_interior_fraction_cfl=1 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=1 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=1 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 +Lighting 100% Incandescent ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 +Lighting 100% LED ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=1 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=1 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=1 +Lighting 20% LED ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0.2 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0.2 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0.2 +Lighting 60% CFL ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0.6 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0.6 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0.6 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 +Lighting None ResStockArguments lighting_present=false lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 +Lighting Interior Use 100% Usage ResStockArguments lighting_interior_usage_multiplier=1.0 +Lighting Interior Use 95% Usage ResStockArguments lighting_interior_usage_multiplier=0.95 +Lighting Interior Use None ResStockArguments lighting_interior_usage_multiplier=0.0 +Lighting Other Use 100% Usage ResStockArguments lighting_exterior_usage_multiplier=1.0 lighting_garage_usage_multiplier=1.0 +Lighting Other Use 95% Usage ResStockArguments lighting_exterior_usage_multiplier=0.95 lighting_garage_usage_multiplier=0.95 +Lighting Other Use None ResStockArguments lighting_exterior_usage_multiplier=0.0 lighting_garage_usage_multiplier=0.0 +Location Region CR02 +Location Region CR03 +Location Region CR04 +Location Region CR05 +Location Region CR06 +Location Region CR07 +Location Region CR08 +Location Region CR09 +Location Region CR10 +Location Region CR11 +Location Region CRAK +Location Region CRHI +Mechanical Ventilation "ERV, 72%" ResStockArguments mech_vent_fan_type=energy recovery ventilator mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0.48 mech_vent_sensible_recovery_efficiency=0.72 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Mechanical Ventilation "HRV, 60%" ResStockArguments mech_vent_fan_type=heat recovery ventilator mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0.6 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Mechanical Ventilation Exhaust ResStockArguments mech_vent_fan_type=exhaust only mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Mechanical Ventilation None ResStockArguments mech_vent_fan_type=none mech_vent_flow_rate=0 mech_vent_hours_in_operation=0 mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=0 mech_vent_num_units_served=0 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Mechanical Ventilation Supply ResStockArguments mech_vent_fan_type=supply only mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Metropolitan and Micropolitan Statistical Area "Aberdeen, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Aberdeen, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Abilene, TX MSA" +Metropolitan and Micropolitan Statistical Area "Ada, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Adrian, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Akron, OH MSA" +Metropolitan and Micropolitan Statistical Area "Alamogordo, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Albany, GA MSA" +Metropolitan and Micropolitan Statistical Area "Albany, OR MSA" +Metropolitan and Micropolitan Statistical Area "Albany-Schenectady-Troy, NY MSA" +Metropolitan and Micropolitan Statistical Area "Albemarle, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Albert Lea, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Albertville, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Albuquerque, NM MSA" +Metropolitan and Micropolitan Statistical Area "Alexandria, LA MSA" +Metropolitan and Micropolitan Statistical Area "Alexandria, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Alice, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Allentown-Bethlehem-Easton, PA-NJ MSA" +Metropolitan and Micropolitan Statistical Area "Alma, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Alpena, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Altoona, PA MSA" +Metropolitan and Micropolitan Statistical Area "Altus, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Amarillo, TX MSA" +Metropolitan and Micropolitan Statistical Area "Americus, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Ames, IA MSA" +Metropolitan and Micropolitan Statistical Area "Amsterdam, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Anchorage, AK MSA" +Metropolitan and Micropolitan Statistical Area "Andrews, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Angola, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Ann Arbor, MI MSA" +Metropolitan and Micropolitan Statistical Area "Anniston-Oxford-Jacksonville, AL MSA" +Metropolitan and Micropolitan Statistical Area "Appleton, WI MSA" +Metropolitan and Micropolitan Statistical Area "Arcadia, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Ardmore, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Arkadelphia, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Arkansas City-Winfield, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Asheville, NC MSA" +Metropolitan and Micropolitan Statistical Area "Ashland, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Ashtabula, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Astoria, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Atchison, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Athens, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Athens, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Athens, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Athens-Clarke County, GA MSA" +Metropolitan and Micropolitan Statistical Area "Atlanta-Sandy Springs-Roswell, GA MSA" +Metropolitan and Micropolitan Statistical Area "Atlantic City-Hammonton, NJ MSA" +Metropolitan and Micropolitan Statistical Area "Auburn, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Auburn, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Auburn-Opelika, AL MSA" +Metropolitan and Micropolitan Statistical Area "Augusta-Richmond County, GA-SC MSA" +Metropolitan and Micropolitan Statistical Area "Augusta-Waterville, ME MicroSA" +Metropolitan and Micropolitan Statistical Area "Austin, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Austin-Round Rock, TX MSA" +Metropolitan and Micropolitan Statistical Area "Bainbridge, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Bakersfield, CA MSA" +Metropolitan and Micropolitan Statistical Area "Baltimore-Columbia-Towson, MD MSA" +Metropolitan and Micropolitan Statistical Area "Bangor, ME MSA" +Metropolitan and Micropolitan Statistical Area "Baraboo, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Bardstown, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Barnstable Town, MA MSA" +Metropolitan and Micropolitan Statistical Area "Barre, VT MicroSA" +Metropolitan and Micropolitan Statistical Area "Bartlesville, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Bastrop, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Batavia, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Batesville, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Baton Rouge, LA MSA" +Metropolitan and Micropolitan Statistical Area "Battle Creek, MI MSA" +Metropolitan and Micropolitan Statistical Area "Bay City, MI MSA" +Metropolitan and Micropolitan Statistical Area "Bay City, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Beatrice, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Beaumont-Port Arthur, TX MSA" +Metropolitan and Micropolitan Statistical Area "Beaver Dam, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Beckley, WV MSA" +Metropolitan and Micropolitan Statistical Area "Bedford, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Beeville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Bellefontaine, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Bellingham, WA MSA" +Metropolitan and Micropolitan Statistical Area "Bemidji, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Bend-Redmond, OR MSA" +Metropolitan and Micropolitan Statistical Area "Bennettsville, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Bennington, VT MicroSA" +Metropolitan and Micropolitan Statistical Area "Berlin, NH-VT MicroSA" +Metropolitan and Micropolitan Statistical Area "Big Rapids, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Big Spring, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Big Stone Gap, VA MicroSA" +Metropolitan and Micropolitan Statistical Area "Billings, MT MSA" +Metropolitan and Micropolitan Statistical Area "Binghamton, NY MSA" +Metropolitan and Micropolitan Statistical Area "Birmingham-Hoover, AL MSA" +Metropolitan and Micropolitan Statistical Area "Bismarck, ND MSA" +Metropolitan and Micropolitan Statistical Area "Blackfoot, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Blacksburg-Christiansburg-Radford, VA MSA" +Metropolitan and Micropolitan Statistical Area "Bloomington, IL MSA" +Metropolitan and Micropolitan Statistical Area "Bloomington, IN MSA" +Metropolitan and Micropolitan Statistical Area "Bloomsburg-Berwick, PA MSA" +Metropolitan and Micropolitan Statistical Area "Bluefield, WV-VA MicroSA" +Metropolitan and Micropolitan Statistical Area "Blytheville, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Bogalusa, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Boise City, ID MSA" +Metropolitan and Micropolitan Statistical Area "Boone, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Boone, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Borger, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Boston-Cambridge-Newton, MA-NH MSA" +Metropolitan and Micropolitan Statistical Area "Boulder, CO MSA" +Metropolitan and Micropolitan Statistical Area "Bowling Green, KY MSA" +Metropolitan and Micropolitan Statistical Area "Bozeman, MT MicroSA" +Metropolitan and Micropolitan Statistical Area "Bradford, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Brainerd, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Branson, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Breckenridge, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Bremerton-Silverdale, WA MSA" +Metropolitan and Micropolitan Statistical Area "Brenham, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Brevard, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Bridgeport-Stamford-Norwalk, CT MSA" +Metropolitan and Micropolitan Statistical Area "Brookhaven, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Brookings, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Brookings, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Brownsville-Harlingen, TX MSA" +Metropolitan and Micropolitan Statistical Area "Brownwood, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Brunswick, GA MSA" +Metropolitan and Micropolitan Statistical Area "Bucyrus, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Buffalo-Cheektowaga-Niagara Falls, NY MSA" +Metropolitan and Micropolitan Statistical Area "Burley, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Burlington, IA-IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Burlington, NC MSA" +Metropolitan and Micropolitan Statistical Area "Burlington-South Burlington, VT MSA" +Metropolitan and Micropolitan Statistical Area "Butte-Silver Bow, MT MicroSA" +Metropolitan and Micropolitan Statistical Area "Cadillac, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Calhoun, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "California-Lexington Park, MD MSA" +Metropolitan and Micropolitan Statistical Area "Cambridge, MD MicroSA" +Metropolitan and Micropolitan Statistical Area "Cambridge, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Camden, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Campbellsville, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Canon City, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Canton, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Canton-Massillon, OH MSA" +Metropolitan and Micropolitan Statistical Area "Cape Coral-Fort Myers, FL MSA" +Metropolitan and Micropolitan Statistical Area "Cape Girardeau, MO-IL MSA" +Metropolitan and Micropolitan Statistical Area "Carbondale-Marion, IL MSA" +Metropolitan and Micropolitan Statistical Area "Carlsbad-Artesia, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Carson City, NV MSA" +Metropolitan and Micropolitan Statistical Area "Casper, WY MSA" +Metropolitan and Micropolitan Statistical Area "Cedar City, UT MicroSA" +Metropolitan and Micropolitan Statistical Area "Cedar Rapids, IA MSA" +Metropolitan and Micropolitan Statistical Area "Cedartown, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Celina, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Centralia, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Centralia, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Chambersburg-Waynesboro, PA MSA" +Metropolitan and Micropolitan Statistical Area "Champaign-Urbana, IL MSA" +Metropolitan and Micropolitan Statistical Area "Charleston, WV MSA" +Metropolitan and Micropolitan Statistical Area "Charleston-Mattoon, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Charleston-North Charleston, SC MSA" +Metropolitan and Micropolitan Statistical Area "Charlotte-Concord-Gastonia, NC-SC MSA" +Metropolitan and Micropolitan Statistical Area "Charlottesville, VA MSA" +Metropolitan and Micropolitan Statistical Area "Chattanooga, TN-GA MSA" +Metropolitan and Micropolitan Statistical Area "Cheyenne, WY MSA" +Metropolitan and Micropolitan Statistical Area "Chicago-Naperville-Elgin, IL-IN-WI MSA" +Metropolitan and Micropolitan Statistical Area "Chico, CA MSA" +Metropolitan and Micropolitan Statistical Area "Chillicothe, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Cincinnati, OH-KY-IN MSA" +Metropolitan and Micropolitan Statistical Area "Claremont-Lebanon, NH-VT MicroSA" +Metropolitan and Micropolitan Statistical Area "Clarksburg, WV MicroSA" +Metropolitan and Micropolitan Statistical Area "Clarksdale, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Clarksville, TN-KY MSA" +Metropolitan and Micropolitan Statistical Area "Clearlake, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Cleveland, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Cleveland, TN MSA" +Metropolitan and Micropolitan Statistical Area "Cleveland-Elyria, OH MSA" +Metropolitan and Micropolitan Statistical Area "Clewiston, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Clinton, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Clovis, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Coeur d'Alene, ID MSA" +Metropolitan and Micropolitan Statistical Area "Coffeyville, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Coldwater, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "College Station-Bryan, TX MSA" +Metropolitan and Micropolitan Statistical Area "Colorado Springs, CO MSA" +Metropolitan and Micropolitan Statistical Area "Columbia, MO MSA" +Metropolitan and Micropolitan Statistical Area "Columbia, SC MSA" +Metropolitan and Micropolitan Statistical Area "Columbus, GA-AL MSA" +Metropolitan and Micropolitan Statistical Area "Columbus, IN MSA" +Metropolitan and Micropolitan Statistical Area "Columbus, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Columbus, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Columbus, OH MSA" +Metropolitan and Micropolitan Statistical Area "Concord, NH MicroSA" +Metropolitan and Micropolitan Statistical Area "Connersville, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Cookeville, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Coos Bay, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Cordele, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Corinth, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Cornelia, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Corning, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Corpus Christi, TX MSA" +Metropolitan and Micropolitan Statistical Area "Corsicana, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Cortland, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Corvallis, OR MSA" +Metropolitan and Micropolitan Statistical Area "Coshocton, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Craig, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Crawfordsville, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Crescent City, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Crestview-Fort Walton Beach-Destin, FL MSA" +Metropolitan and Micropolitan Statistical Area "Crossville, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Cullman, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Cullowhee, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Cumberland, MD-WV MSA" +Metropolitan and Micropolitan Statistical Area "Dallas-Fort Worth-Arlington, TX MSA" +Metropolitan and Micropolitan Statistical Area "Dalton, GA MSA" +Metropolitan and Micropolitan Statistical Area "Danville, IL MSA" +Metropolitan and Micropolitan Statistical Area "Danville, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Danville, VA MicroSA" +Metropolitan and Micropolitan Statistical Area "Daphne-Fairhope-Foley, AL MSA" +Metropolitan and Micropolitan Statistical Area "Davenport-Moline-Rock Island, IA-IL MSA" +Metropolitan and Micropolitan Statistical Area "Dayton, OH MSA" +Metropolitan and Micropolitan Statistical Area "Dayton, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "DeRidder, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Decatur, AL MSA" +Metropolitan and Micropolitan Statistical Area "Decatur, IL MSA" +Metropolitan and Micropolitan Statistical Area "Decatur, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Defiance, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Del Rio, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Deltona-Daytona Beach-Ormond Beach, FL MSA" +Metropolitan and Micropolitan Statistical Area "Deming, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Denver-Aurora-Lakewood, CO MSA" +Metropolitan and Micropolitan Statistical Area "Des Moines-West Des Moines, IA MSA" +Metropolitan and Micropolitan Statistical Area "Detroit-Warren-Dearborn, MI MSA" +Metropolitan and Micropolitan Statistical Area "Dickinson, ND MicroSA" +Metropolitan and Micropolitan Statistical Area "Dixon, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Dodge City, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Dothan, AL MSA" +Metropolitan and Micropolitan Statistical Area "Douglas, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Dover, DE MSA" +Metropolitan and Micropolitan Statistical Area "DuBois, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Dublin, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Dubuque, IA MSA" +Metropolitan and Micropolitan Statistical Area "Duluth, MN-WI MSA" +Metropolitan and Micropolitan Statistical Area "Dumas, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Duncan, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Dunn, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Durango, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Durant, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Durham-Chapel Hill, NC MSA" +Metropolitan and Micropolitan Statistical Area "Dyersburg, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Eagle Pass, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "East Stroudsburg, PA MSA" +Metropolitan and Micropolitan Statistical Area "Easton, MD MicroSA" +Metropolitan and Micropolitan Statistical Area "Eau Claire, WI MSA" +Metropolitan and Micropolitan Statistical Area "Edwards, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Effingham, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "El Campo, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "El Centro, CA MSA" +Metropolitan and Micropolitan Statistical Area "El Dorado, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "El Paso, TX MSA" +Metropolitan and Micropolitan Statistical Area "Elizabeth City, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Elizabethtown-Fort Knox, KY MSA" +Metropolitan and Micropolitan Statistical Area "Elk City, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Elkhart-Goshen, IN MSA" +Metropolitan and Micropolitan Statistical Area "Elkins, WV MicroSA" +Metropolitan and Micropolitan Statistical Area "Elko, NV MicroSA" +Metropolitan and Micropolitan Statistical Area "Ellensburg, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Elmira, NY MSA" +Metropolitan and Micropolitan Statistical Area "Emporia, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Enid, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Enterprise, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Erie, PA MSA" +Metropolitan and Micropolitan Statistical Area "Escanaba, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Espanola, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Eugene, OR MSA" +Metropolitan and Micropolitan Statistical Area "Eureka-Arcata-Fortuna, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Evanston, WY MicroSA" +Metropolitan and Micropolitan Statistical Area "Evansville, IN-KY MSA" +Metropolitan and Micropolitan Statistical Area "Fairbanks, AK MSA" +Metropolitan and Micropolitan Statistical Area "Fairfield, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Fairmont, WV MicroSA" +Metropolitan and Micropolitan Statistical Area "Fallon, NV MicroSA" +Metropolitan and Micropolitan Statistical Area "Fargo, ND-MN MSA" +Metropolitan and Micropolitan Statistical Area "Faribault-Northfield, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Farmington, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Farmington, NM MSA" +Metropolitan and Micropolitan Statistical Area "Fayetteville, NC MSA" +Metropolitan and Micropolitan Statistical Area "Fayetteville-Springdale-Rogers, AR-MO MSA" +Metropolitan and Micropolitan Statistical Area "Fergus Falls, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Fernley, NV MicroSA" +Metropolitan and Micropolitan Statistical Area "Findlay, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Fitzgerald, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Flagstaff, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Flint, MI MSA" +Metropolitan and Micropolitan Statistical Area "Florence, SC MSA" +Metropolitan and Micropolitan Statistical Area "Florence-Muscle Shoals, AL MSA" +Metropolitan and Micropolitan Statistical Area "Fond du Lac, WI MSA" +Metropolitan and Micropolitan Statistical Area "Forest City, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Forrest City, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Fort Collins, CO MSA" +Metropolitan and Micropolitan Statistical Area "Fort Dodge, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Fort Leonard Wood, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Fort Madison-Keokuk, IA-IL-MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Fort Morgan, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Fort Polk South, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Fort Smith, AR-OK MSA" +Metropolitan and Micropolitan Statistical Area "Fort Wayne, IN MSA" +Metropolitan and Micropolitan Statistical Area "Frankfort, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Frankfort, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Fredericksburg, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Freeport, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Fremont, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Fremont, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Fresno, CA MSA" +Metropolitan and Micropolitan Statistical Area "Gadsden, AL MSA" +Metropolitan and Micropolitan Statistical Area "Gaffney, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Gainesville, FL MSA" +Metropolitan and Micropolitan Statistical Area "Gainesville, GA MSA" +Metropolitan and Micropolitan Statistical Area "Gainesville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Galesburg, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Gallup, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Garden City, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Gardnerville Ranchos, NV MicroSA" +Metropolitan and Micropolitan Statistical Area "Georgetown, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Gettysburg, PA MSA" +Metropolitan and Micropolitan Statistical Area "Gillette, WY MicroSA" +Metropolitan and Micropolitan Statistical Area "Glasgow, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Glens Falls, NY MSA" +Metropolitan and Micropolitan Statistical Area "Glenwood Springs, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Gloversville, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Goldsboro, NC MSA" +Metropolitan and Micropolitan Statistical Area "Grand Forks, ND-MN MSA" +Metropolitan and Micropolitan Statistical Area "Grand Island, NE MSA" +Metropolitan and Micropolitan Statistical Area "Grand Junction, CO MSA" +Metropolitan and Micropolitan Statistical Area "Grand Rapids-Wyoming, MI MSA" +Metropolitan and Micropolitan Statistical Area "Grants Pass, OR MSA" +Metropolitan and Micropolitan Statistical Area "Grants, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Great Bend, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Great Falls, MT MSA" +Metropolitan and Micropolitan Statistical Area "Greeley, CO MSA" +Metropolitan and Micropolitan Statistical Area "Green Bay, WI MSA" +Metropolitan and Micropolitan Statistical Area "Greeneville, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Greenfield Town, MA MicroSA" +Metropolitan and Micropolitan Statistical Area "Greensboro-High Point, NC MSA" +Metropolitan and Micropolitan Statistical Area "Greensburg, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Greenville, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Greenville, NC MSA" +Metropolitan and Micropolitan Statistical Area "Greenville, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Greenville-Anderson-Mauldin, SC MSA" +Metropolitan and Micropolitan Statistical Area "Greenwood, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Greenwood, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Grenada, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Gulfport-Biloxi-Pascagoula, MS MSA" +Metropolitan and Micropolitan Statistical Area "Guymon, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Hagerstown-Martinsburg, MD-WV MSA" +Metropolitan and Micropolitan Statistical Area "Hailey, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Hammond, LA MSA" +Metropolitan and Micropolitan Statistical Area "Hanford-Corcoran, CA MSA" +Metropolitan and Micropolitan Statistical Area "Hannibal, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Harrisburg-Carlisle, PA MSA" +Metropolitan and Micropolitan Statistical Area "Harrison, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Harrisonburg, VA MSA" +Metropolitan and Micropolitan Statistical Area "Hartford-West Hartford-East Hartford, CT MSA" +Metropolitan and Micropolitan Statistical Area "Hastings, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Hattiesburg, MS MSA" +Metropolitan and Micropolitan Statistical Area "Hays, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Heber, UT MicroSA" +Metropolitan and Micropolitan Statistical Area "Helena, MT MicroSA" +Metropolitan and Micropolitan Statistical Area "Helena-West Helena, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Henderson, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Hereford, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Hermiston-Pendleton, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Hickory-Lenoir-Morganton, NC MSA" +Metropolitan and Micropolitan Statistical Area "Hillsdale, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Hilo, HI MicroSA" +Metropolitan and Micropolitan Statistical Area "Hilton Head Island-Bluffton-Beaufort, SC MSA" +Metropolitan and Micropolitan Statistical Area "Hinesville, GA MSA" +Metropolitan and Micropolitan Statistical Area "Hobbs, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Holland, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Homosassa Springs, FL MSA" +Metropolitan and Micropolitan Statistical Area "Hood River, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Hot Springs, AR MSA" +Metropolitan and Micropolitan Statistical Area "Houghton, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Houma-Thibodaux, LA MSA" +Metropolitan and Micropolitan Statistical Area "Houston-The Woodlands-Sugar Land, TX MSA" +Metropolitan and Micropolitan Statistical Area "Hudson, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Huntingdon, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Huntington, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Huntington-Ashland, WV-KY-OH MSA" +Metropolitan and Micropolitan Statistical Area "Huntsville, AL MSA" +Metropolitan and Micropolitan Statistical Area "Huntsville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Huron, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Hutchinson, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Hutchinson, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Idaho Falls, ID MSA" +Metropolitan and Micropolitan Statistical Area "Indiana, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Indianapolis-Carmel-Anderson, IN MSA" +Metropolitan and Micropolitan Statistical Area "Indianola, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Ionia, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Iowa City, IA MSA" +Metropolitan and Micropolitan Statistical Area "Iron Mountain, MI-WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Ithaca, NY MSA" +Metropolitan and Micropolitan Statistical Area "Jackson, MI MSA" +Metropolitan and Micropolitan Statistical Area "Jackson, MS MSA" +Metropolitan and Micropolitan Statistical Area "Jackson, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Jackson, TN MSA" +Metropolitan and Micropolitan Statistical Area "Jackson, WY-ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Jacksonville, FL MSA" +Metropolitan and Micropolitan Statistical Area "Jacksonville, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Jacksonville, NC MSA" +Metropolitan and Micropolitan Statistical Area "Jacksonville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Jamestown, ND MicroSA" +Metropolitan and Micropolitan Statistical Area "Jamestown-Dunkirk-Fredonia, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Janesville-Beloit, WI MSA" +Metropolitan and Micropolitan Statistical Area "Jasper, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Jefferson City, MO MSA" +Metropolitan and Micropolitan Statistical Area "Jefferson, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Jesup, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Johnson City, TN MSA" +Metropolitan and Micropolitan Statistical Area "Johnstown, PA MSA" +Metropolitan and Micropolitan Statistical Area "Jonesboro, AR MSA" +Metropolitan and Micropolitan Statistical Area "Joplin, MO MSA" +Metropolitan and Micropolitan Statistical Area "Junction City, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Juneau, AK MicroSA" +Metropolitan and Micropolitan Statistical Area "Kahului-Wailuku-Lahaina, HI MSA" +Metropolitan and Micropolitan Statistical Area "Kalamazoo-Portage, MI MSA" +Metropolitan and Micropolitan Statistical Area "Kalispell, MT MicroSA" +Metropolitan and Micropolitan Statistical Area "Kankakee, IL MSA" +Metropolitan and Micropolitan Statistical Area "Kansas City, MO-KS MSA" +Metropolitan and Micropolitan Statistical Area "Kapaa, HI MicroSA" +Metropolitan and Micropolitan Statistical Area "Kearney, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Keene, NH MicroSA" +Metropolitan and Micropolitan Statistical Area "Kendallville, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Kennett, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Kennewick-Richland, WA MSA" +Metropolitan and Micropolitan Statistical Area "Kerrville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Ketchikan, AK MicroSA" +Metropolitan and Micropolitan Statistical Area "Key West, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Kill Devil Hills, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Killeen-Temple, TX MSA" +Metropolitan and Micropolitan Statistical Area "Kingsport-Bristol-Bristol, TN-VA MSA" +Metropolitan and Micropolitan Statistical Area "Kingston, NY MSA" +Metropolitan and Micropolitan Statistical Area "Kingsville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Kinston, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Kirksville, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Klamath Falls, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Knoxville, TN MSA" +Metropolitan and Micropolitan Statistical Area "Kokomo, IN MSA" +Metropolitan and Micropolitan Statistical Area "La Crosse-Onalaska, WI-MN MSA" +Metropolitan and Micropolitan Statistical Area "La Grande, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "LaGrange, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Laconia, NH MicroSA" +Metropolitan and Micropolitan Statistical Area "Lafayette, LA MSA" +Metropolitan and Micropolitan Statistical Area "Lafayette-West Lafayette, IN MSA" +Metropolitan and Micropolitan Statistical Area "Lake Charles, LA MSA" +Metropolitan and Micropolitan Statistical Area "Lake City, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Lake Havasu City-Kingman, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Lakeland-Winter Haven, FL MSA" +Metropolitan and Micropolitan Statistical Area "Lamesa, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Lancaster, PA MSA" +Metropolitan and Micropolitan Statistical Area "Lansing-East Lansing, MI MSA" +Metropolitan and Micropolitan Statistical Area "Laramie, WY MicroSA" +Metropolitan and Micropolitan Statistical Area "Laredo, TX MSA" +Metropolitan and Micropolitan Statistical Area "Las Cruces, NM MSA" +Metropolitan and Micropolitan Statistical Area "Las Vegas, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Las Vegas-Henderson-Paradise, NV MSA" +Metropolitan and Micropolitan Statistical Area "Laurel, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Laurinburg, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Lawrence, KS MSA" +Metropolitan and Micropolitan Statistical Area "Lawrenceburg, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Lawton, OK MSA" +Metropolitan and Micropolitan Statistical Area "Lebanon, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Lebanon, PA MSA" +Metropolitan and Micropolitan Statistical Area "Levelland, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Lewisburg, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Lewisburg, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Lewiston, ID-WA MSA" +Metropolitan and Micropolitan Statistical Area "Lewiston-Auburn, ME MSA" +Metropolitan and Micropolitan Statistical Area "Lewistown, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Lexington, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Lexington-Fayette, KY MSA" +Metropolitan and Micropolitan Statistical Area "Liberal, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Lima, OH MSA" +Metropolitan and Micropolitan Statistical Area "Lincoln, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Lincoln, NE MSA" +Metropolitan and Micropolitan Statistical Area "Little Rock-North Little Rock-Conway, AR MSA" +Metropolitan and Micropolitan Statistical Area "Lock Haven, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Logan, UT-ID MSA" +Metropolitan and Micropolitan Statistical Area "Logan, WV MicroSA" +Metropolitan and Micropolitan Statistical Area "Logansport, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "London, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Longview, TX MSA" +Metropolitan and Micropolitan Statistical Area "Longview, WA MSA" +Metropolitan and Micropolitan Statistical Area "Los Alamos, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Los Angeles-Long Beach-Anaheim, CA MSA" +Metropolitan and Micropolitan Statistical Area "Louisville/Jefferson County, KY-IN MSA" +Metropolitan and Micropolitan Statistical Area "Lubbock, TX MSA" +Metropolitan and Micropolitan Statistical Area "Ludington, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Lufkin, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Lumberton, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Lynchburg, VA MSA" +Metropolitan and Micropolitan Statistical Area "Macomb, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Macon, GA MSA" +Metropolitan and Micropolitan Statistical Area "Madera, CA MSA" +Metropolitan and Micropolitan Statistical Area "Madison, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Madison, WI MSA" +Metropolitan and Micropolitan Statistical Area "Madisonville, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Magnolia, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Malone, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Malvern, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Manchester-Nashua, NH MSA" +Metropolitan and Micropolitan Statistical Area "Manhattan, KS MSA" +Metropolitan and Micropolitan Statistical Area "Manitowoc, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Mankato-North Mankato, MN MSA" +Metropolitan and Micropolitan Statistical Area "Mansfield, OH MSA" +Metropolitan and Micropolitan Statistical Area "Marietta, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Marinette, WI-MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Marion, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Marion, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Marion, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Marquette, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Marshall, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Marshall, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Marshall, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Marshalltown, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Martin, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Martinsville, VA MicroSA" +Metropolitan and Micropolitan Statistical Area "Maryville, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Mason City, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Mayfield, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Maysville, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "McAlester, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "McAllen-Edinburg-Mission, TX MSA" +Metropolitan and Micropolitan Statistical Area "McComb, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "McMinnville, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "McPherson, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Meadville, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Medford, OR MSA" +Metropolitan and Micropolitan Statistical Area "Memphis, TN-MS-AR MSA" +Metropolitan and Micropolitan Statistical Area "Menomonie, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Merced, CA MSA" +Metropolitan and Micropolitan Statistical Area "Meridian, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Merrill, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Mexico, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Miami, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Miami-Fort Lauderdale-West Palm Beach, FL MSA" +Metropolitan and Micropolitan Statistical Area "Michigan City-La Porte, IN MSA" +Metropolitan and Micropolitan Statistical Area "Middlesborough, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Midland, MI MSA" +Metropolitan and Micropolitan Statistical Area "Midland, TX MSA" +Metropolitan and Micropolitan Statistical Area "Milledgeville, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Milwaukee-Waukesha-West Allis, WI MSA" +Metropolitan and Micropolitan Statistical Area "Mineral Wells, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Minneapolis-St. Paul-Bloomington, MN-WI MSA" +Metropolitan and Micropolitan Statistical Area "Minot, ND MicroSA" +Metropolitan and Micropolitan Statistical Area "Missoula, MT MSA" +Metropolitan and Micropolitan Statistical Area "Mitchell, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Moberly, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Mobile, AL MSA" +Metropolitan and Micropolitan Statistical Area "Modesto, CA MSA" +Metropolitan and Micropolitan Statistical Area "Monroe, LA MSA" +Metropolitan and Micropolitan Statistical Area "Monroe, MI MSA" +Metropolitan and Micropolitan Statistical Area "Montgomery, AL MSA" +Metropolitan and Micropolitan Statistical Area "Montrose, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Morehead City, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Morgan City, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Morgantown, WV MSA" +Metropolitan and Micropolitan Statistical Area "Morristown, TN MSA" +Metropolitan and Micropolitan Statistical Area "Moscow, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Moses Lake, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Moultrie, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Airy, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Pleasant, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Pleasant, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Sterling, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Vernon, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Vernon, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Vernon-Anacortes, WA MSA" +Metropolitan and Micropolitan Statistical Area "Mountain Home, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Mountain Home, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Muncie, IN MSA" +Metropolitan and Micropolitan Statistical Area "Murray, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Muscatine, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Muskegon, MI MSA" +Metropolitan and Micropolitan Statistical Area "Muskogee, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Myrtle Beach-Conway-North Myrtle Beach, SC-NC MSA" +Metropolitan and Micropolitan Statistical Area "Nacogdoches, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Napa, CA MSA" +Metropolitan and Micropolitan Statistical Area "Naples-Immokalee-Marco Island, FL MSA" +Metropolitan and Micropolitan Statistical Area "Nashville-Davidson--Murfreesboro--Franklin, TN MSA" +Metropolitan and Micropolitan Statistical Area "Natchez, MS-LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Natchitoches, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "New Bern, NC MSA" +Metropolitan and Micropolitan Statistical Area "New Castle, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "New Castle, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "New Haven-Milford, CT MSA" +Metropolitan and Micropolitan Statistical Area "New Orleans-Metairie, LA MSA" +Metropolitan and Micropolitan Statistical Area "New Philadelphia-Dover, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "New Ulm, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "New York-Newark-Jersey City, NY-NJ-PA MSA" +Metropolitan and Micropolitan Statistical Area "Newberry, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Newport, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Newport, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Newton, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Niles-Benton Harbor, MI MSA" +Metropolitan and Micropolitan Statistical Area "Nogales, AZ MicroSA" +Metropolitan and Micropolitan Statistical Area "Norfolk, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "North Platte, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "North Port-Sarasota-Bradenton, FL MSA" +Metropolitan and Micropolitan Statistical Area "North Vernon, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "North Wilkesboro, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Norwalk, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Norwich-New London, CT MSA" +Metropolitan and Micropolitan Statistical Area "Oak Harbor, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Ocala, FL MSA" +Metropolitan and Micropolitan Statistical Area "Ocean City, NJ MSA" +Metropolitan and Micropolitan Statistical Area "Odessa, TX MSA" +Metropolitan and Micropolitan Statistical Area "Ogden-Clearfield, UT MSA" +Metropolitan and Micropolitan Statistical Area "Ogdensburg-Massena, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Oil City, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Okeechobee, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Oklahoma City, OK MSA" +Metropolitan and Micropolitan Statistical Area "Olean, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Olympia-Tumwater, WA MSA" +Metropolitan and Micropolitan Statistical Area "Omaha-Council Bluffs, NE-IA MSA" +Metropolitan and Micropolitan Statistical Area "Oneonta, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Ontario, OR-ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Opelousas, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Orangeburg, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Orlando-Kissimmee-Sanford, FL MSA" +Metropolitan and Micropolitan Statistical Area "Oshkosh-Neenah, WI MSA" +Metropolitan and Micropolitan Statistical Area "Oskaloosa, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Othello, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Ottawa, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Ottawa-Peru, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Ottumwa, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Owatonna, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Owensboro, KY MSA" +Metropolitan and Micropolitan Statistical Area "Owosso, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Oxford, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Oxford, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Oxnard-Thousand Oaks-Ventura, CA MSA" +Metropolitan and Micropolitan Statistical Area "Ozark, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Paducah, KY-IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Pahrump, NV MicroSA" +Metropolitan and Micropolitan Statistical Area "Palatka, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Palestine, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Palm Bay-Melbourne-Titusville, FL MSA" +Metropolitan and Micropolitan Statistical Area "Pampa, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Panama City, FL MSA" +Metropolitan and Micropolitan Statistical Area "Paragould, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Paris, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Paris, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Parkersburg-Vienna, WV MSA" +Metropolitan and Micropolitan Statistical Area "Parsons, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Payson, AZ MicroSA" +Metropolitan and Micropolitan Statistical Area "Pecos, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Pensacola-Ferry Pass-Brent, FL MSA" +Metropolitan and Micropolitan Statistical Area "Peoria, IL MSA" +Metropolitan and Micropolitan Statistical Area "Peru, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Philadelphia-Camden-Wilmington, PA-NJ-DE-MD MSA" +Metropolitan and Micropolitan Statistical Area "Phoenix-Mesa-Scottsdale, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Picayune, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Pierre, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Pine Bluff, AR MSA" +Metropolitan and Micropolitan Statistical Area "Pinehurst-Southern Pines, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Pittsburg, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Pittsburgh, PA MSA" +Metropolitan and Micropolitan Statistical Area "Pittsfield, MA MSA" +Metropolitan and Micropolitan Statistical Area "Plainview, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Platteville, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Plattsburgh, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Plymouth, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Pocatello, ID MSA" +Metropolitan and Micropolitan Statistical Area "Point Pleasant, WV-OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Ponca City, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Pontiac, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Poplar Bluff, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Port Angeles, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Port Clinton, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Port Lavaca, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Port St. Lucie, FL MSA" +Metropolitan and Micropolitan Statistical Area "Portales, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Portland-South Portland, ME MSA" +Metropolitan and Micropolitan Statistical Area "Portland-Vancouver-Hillsboro, OR-WA MSA" +Metropolitan and Micropolitan Statistical Area "Portsmouth, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Pottsville, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Prescott, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Price, UT MicroSA" +Metropolitan and Micropolitan Statistical Area "Prineville, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Providence-Warwick, RI-MA MSA" +Metropolitan and Micropolitan Statistical Area "Provo-Orem, UT MSA" +Metropolitan and Micropolitan Statistical Area "Pueblo, CO MSA" +Metropolitan and Micropolitan Statistical Area "Pullman, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Punta Gorda, FL MSA" +Metropolitan and Micropolitan Statistical Area "Quincy, IL-MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Racine, WI MSA" +Metropolitan and Micropolitan Statistical Area "Raleigh, NC MSA" +Metropolitan and Micropolitan Statistical Area "Rapid City, SD MSA" +Metropolitan and Micropolitan Statistical Area "Raymondville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Reading, PA MSA" +Metropolitan and Micropolitan Statistical Area "Red Bluff, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Red Wing, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Redding, CA MSA" +Metropolitan and Micropolitan Statistical Area "Reno, NV MSA" +Metropolitan and Micropolitan Statistical Area "Rexburg, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Richmond, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Richmond, VA MSA" +Metropolitan and Micropolitan Statistical Area "Richmond-Berea, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Rio Grande City, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Riverside-San Bernardino-Ontario, CA MSA" +Metropolitan and Micropolitan Statistical Area "Riverton, WY MicroSA" +Metropolitan and Micropolitan Statistical Area "Roanoke Rapids, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Roanoke, VA MSA" +Metropolitan and Micropolitan Statistical Area "Rochelle, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Rochester, MN MSA" +Metropolitan and Micropolitan Statistical Area "Rochester, NY MSA" +Metropolitan and Micropolitan Statistical Area "Rock Springs, WY MicroSA" +Metropolitan and Micropolitan Statistical Area "Rockford, IL MSA" +Metropolitan and Micropolitan Statistical Area "Rockingham, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Rocky Mount, NC MSA" +Metropolitan and Micropolitan Statistical Area "Rolla, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Rome, GA MSA" +Metropolitan and Micropolitan Statistical Area "Roseburg, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Roswell, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Russellville, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Ruston, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Rutland, VT MicroSA" +Metropolitan and Micropolitan Statistical Area "Sacramento--Roseville--Arden-Arcade, CA MSA" +Metropolitan and Micropolitan Statistical Area "Safford, AZ MicroSA" +Metropolitan and Micropolitan Statistical Area "Saginaw, MI MSA" +Metropolitan and Micropolitan Statistical Area "Salem, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Salem, OR MSA" +Metropolitan and Micropolitan Statistical Area "Salina, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Salinas, CA MSA" +Metropolitan and Micropolitan Statistical Area "Salisbury, MD-DE MSA" +Metropolitan and Micropolitan Statistical Area "Salt Lake City, UT MSA" +Metropolitan and Micropolitan Statistical Area "San Angelo, TX MSA" +Metropolitan and Micropolitan Statistical Area "San Antonio-New Braunfels, TX MSA" +Metropolitan and Micropolitan Statistical Area "San Diego-Carlsbad, CA MSA" +Metropolitan and Micropolitan Statistical Area "San Francisco-Oakland-Hayward, CA MSA" +Metropolitan and Micropolitan Statistical Area "San Jose-Sunnyvale-Santa Clara, CA MSA" +Metropolitan and Micropolitan Statistical Area "San Luis Obispo-Paso Robles-Arroyo Grande, CA MSA" +Metropolitan and Micropolitan Statistical Area "Sandpoint, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Sandusky, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Sanford, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Santa Cruz-Watsonville, CA MSA" +Metropolitan and Micropolitan Statistical Area "Santa Fe, NM MSA" +Metropolitan and Micropolitan Statistical Area "Santa Maria-Santa Barbara, CA MSA" +Metropolitan and Micropolitan Statistical Area "Santa Rosa, CA MSA" +Metropolitan and Micropolitan Statistical Area "Sault Ste. Marie, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Savannah, GA MSA" +Metropolitan and Micropolitan Statistical Area "Sayre, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Scottsbluff, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Scottsboro, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Scranton--Wilkes-Barre--Hazleton, PA MSA" +Metropolitan and Micropolitan Statistical Area "Searcy, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Seattle-Tacoma-Bellevue, WA MSA" +Metropolitan and Micropolitan Statistical Area "Sebastian-Vero Beach, FL MSA" +Metropolitan and Micropolitan Statistical Area "Sebring, FL MSA" +Metropolitan and Micropolitan Statistical Area "Sedalia, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Selinsgrove, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Selma, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Seneca Falls, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Seneca, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Sevierville, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Seymour, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Shawano, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Shawnee, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Sheboygan, WI MSA" +Metropolitan and Micropolitan Statistical Area "Shelby, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Shelbyville, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Shelton, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Sheridan, WY MicroSA" +Metropolitan and Micropolitan Statistical Area "Sherman-Denison, TX MSA" +Metropolitan and Micropolitan Statistical Area "Show Low, AZ MicroSA" +Metropolitan and Micropolitan Statistical Area "Shreveport-Bossier City, LA MSA" +Metropolitan and Micropolitan Statistical Area "Sidney, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Sierra Vista-Douglas, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Sikeston, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Silver City, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Sioux City, IA-NE-SD MSA" +Metropolitan and Micropolitan Statistical Area "Sioux Falls, SD MSA" +Metropolitan and Micropolitan Statistical Area "Snyder, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Somerset, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Somerset, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Sonora, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "South Bend-Mishawaka, IN-MI MSA" +Metropolitan and Micropolitan Statistical Area "Spartanburg, SC MSA" +Metropolitan and Micropolitan Statistical Area "Spearfish, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Spencer, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Spirit Lake, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Spokane-Spokane Valley, WA MSA" +Metropolitan and Micropolitan Statistical Area "Springfield, IL MSA" +Metropolitan and Micropolitan Statistical Area "Springfield, MA MSA" +Metropolitan and Micropolitan Statistical Area "Springfield, MO MSA" +Metropolitan and Micropolitan Statistical Area "Springfield, OH MSA" +Metropolitan and Micropolitan Statistical Area "St. Cloud, MN MSA" +Metropolitan and Micropolitan Statistical Area "St. George, UT MSA" +Metropolitan and Micropolitan Statistical Area "St. Joseph, MO-KS MSA" +Metropolitan and Micropolitan Statistical Area "St. Louis, MO-IL MSA" +Metropolitan and Micropolitan Statistical Area "St. Marys, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Starkville, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "State College, PA MSA" +Metropolitan and Micropolitan Statistical Area "Statesboro, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Staunton-Waynesboro, VA MSA" +Metropolitan and Micropolitan Statistical Area "Steamboat Springs, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Stephenville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Sterling, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Sterling, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Stevens Point, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Stillwater, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Stockton-Lodi, CA MSA" +Metropolitan and Micropolitan Statistical Area "Storm Lake, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Sturgis, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Sulphur Springs, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Summerville, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Summit Park, UT MicroSA" +Metropolitan and Micropolitan Statistical Area "Sumter, SC MSA" +Metropolitan and Micropolitan Statistical Area "Sunbury, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Susanville, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Sweetwater, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Syracuse, NY MSA" +Metropolitan and Micropolitan Statistical Area "Tahlequah, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Talladega-Sylacauga, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Tallahassee, FL MSA" +Metropolitan and Micropolitan Statistical Area "Tampa-St. Petersburg-Clearwater, FL MSA" +Metropolitan and Micropolitan Statistical Area "Taos, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Taylorville, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Terre Haute, IN MSA" +Metropolitan and Micropolitan Statistical Area "Texarkana, TX-AR MSA" +Metropolitan and Micropolitan Statistical Area "The Dalles, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "The Villages, FL MSA" +Metropolitan and Micropolitan Statistical Area "Thomaston, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Thomasville, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Tiffin, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Tifton, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Toccoa, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Toledo, OH MSA" +Metropolitan and Micropolitan Statistical Area "Topeka, KS MSA" +Metropolitan and Micropolitan Statistical Area "Torrington, CT MicroSA" +Metropolitan and Micropolitan Statistical Area "Traverse City, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Trenton, NJ MSA" +Metropolitan and Micropolitan Statistical Area "Troy, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Truckee-Grass Valley, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Tucson, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Tullahoma-Manchester, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Tulsa, OK MSA" +Metropolitan and Micropolitan Statistical Area "Tupelo, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Tuscaloosa, AL MSA" +Metropolitan and Micropolitan Statistical Area "Twin Falls, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Tyler, TX MSA" +Metropolitan and Micropolitan Statistical Area "Ukiah, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Union City, TN-KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Urban Honolulu, HI MSA" +Metropolitan and Micropolitan Statistical Area "Urbana, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Utica-Rome, NY MSA" +Metropolitan and Micropolitan Statistical Area "Uvalde, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Valdosta, GA MSA" +Metropolitan and Micropolitan Statistical Area "Vallejo-Fairfield, CA MSA" +Metropolitan and Micropolitan Statistical Area "Valley, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Van Wert, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Vermillion, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Vernal, UT MicroSA" +Metropolitan and Micropolitan Statistical Area "Vernon, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Vicksburg, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Victoria, TX MSA" +Metropolitan and Micropolitan Statistical Area "Vidalia, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Vincennes, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Vineland-Bridgeton, NJ MSA" +Metropolitan and Micropolitan Statistical Area "Vineyard Haven, MA MicroSA" +Metropolitan and Micropolitan Statistical Area "Virginia Beach-Norfolk-Newport News, VA-NC MSA" +Metropolitan and Micropolitan Statistical Area "Visalia-Porterville, CA MSA" +Metropolitan and Micropolitan Statistical Area "Wabash, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Waco, TX MSA" +Metropolitan and Micropolitan Statistical Area "Wahpeton, ND-MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Walla Walla, WA MSA" +Metropolitan and Micropolitan Statistical Area "Wapakoneta, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Warner Robins, GA MSA" +Metropolitan and Micropolitan Statistical Area "Warren, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Warrensburg, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Warsaw, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Washington Court House, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Washington, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Washington, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Washington-Arlington-Alexandria, DC-VA-MD-WV MSA" +Metropolitan and Micropolitan Statistical Area "Waterloo-Cedar Falls, IA MSA" +Metropolitan and Micropolitan Statistical Area "Watertown, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Watertown-Fort Atkinson, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Watertown-Fort Drum, NY MSA" +Metropolitan and Micropolitan Statistical Area "Wauchula, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Wausau, WI MSA" +Metropolitan and Micropolitan Statistical Area "Waycross, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Weatherford, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Weirton-Steubenville, WV-OH MSA" +Metropolitan and Micropolitan Statistical Area "Wenatchee, WA MSA" +Metropolitan and Micropolitan Statistical Area "West Plains, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Wheeling, WV-OH MSA" +Metropolitan and Micropolitan Statistical Area "Whitewater-Elkhorn, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Wichita Falls, TX MSA" +Metropolitan and Micropolitan Statistical Area "Wichita, KS MSA" +Metropolitan and Micropolitan Statistical Area "Williamsport, PA MSA" +Metropolitan and Micropolitan Statistical Area "Williston, ND MicroSA" +Metropolitan and Micropolitan Statistical Area "Willmar, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Wilmington, NC MSA" +Metropolitan and Micropolitan Statistical Area "Wilmington, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Wilson, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Winchester, VA-WV MSA" +Metropolitan and Micropolitan Statistical Area "Winnemucca, NV MicroSA" +Metropolitan and Micropolitan Statistical Area "Winona, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Winston-Salem, NC MSA" +Metropolitan and Micropolitan Statistical Area "Wisconsin Rapids-Marshfield, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Woodward, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Wooster, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Worcester, MA-CT MSA" +Metropolitan and Micropolitan Statistical Area "Worthington, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Yakima, WA MSA" +Metropolitan and Micropolitan Statistical Area "Yankton, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "York-Hanover, PA MSA" +Metropolitan and Micropolitan Statistical Area "Youngstown-Warren-Boardman, OH-PA MSA" +Metropolitan and Micropolitan Statistical Area "Yuba City, CA MSA" +Metropolitan and Micropolitan Statistical Area "Yuma, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Zanesville, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Zapata, TX MicroSA" +Metropolitan and Micropolitan Statistical Area None +Misc Extra Refrigerator "EF 15.9, Fed Standard, bottom freezer-reference fridge" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=573 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator "EF 19.8, bottom freezer" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=458 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator "EF 6.9, Average Installed" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1102 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator "EF 6.9, National Average" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1102 extra_refrigerator_usage_multiplier=0.221 +Misc Extra Refrigerator EF 10.2 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=748 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 10.5 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=727 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 15.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=480 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 17.6 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=433 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 19.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=383 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 21.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=348 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 6.7 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1139 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator None ResStockArguments extra_refrigerator_present=false extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=0 extra_refrigerator_usage_multiplier=0 +Misc Extra Refrigerator Void +Misc Freezer "EF 12, Average Installed" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=935 freezer_usage_multiplier=1.0 +Misc Freezer "EF 12, National Average" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=935 freezer_usage_multiplier=0.342 +Misc Freezer "EF 16, 2001 Fed Standard-reference freezer" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=712 freezer_usage_multiplier=1.0 +Misc Freezer "EF 18, 2008 Energy Star" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=641 freezer_usage_multiplier=1.0 +Misc Freezer "EF 20, 2008 Energy Star Most Efficient" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=568 freezer_usage_multiplier=1.0 +Misc Freezer None ResStockArguments freezer_present=false freezer_location=auto freezer_rated_annual_kwh=0 freezer_usage_multiplier=0 +Misc Freezer Void +Misc Gas Fireplace Gas Fireplace ResStockArguments misc_fuel_loads_fireplace_present=true misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=auto misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=1.0 +Misc Gas Fireplace National Average ResStockArguments misc_fuel_loads_fireplace_present=true misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=auto misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=0.032 +Misc Gas Fireplace None ResStockArguments misc_fuel_loads_fireplace_present=false misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=0 misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=0 +Misc Gas Grill Gas Grill ResStockArguments misc_fuel_loads_grill_present=true misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=auto misc_fuel_loads_grill_usage_multiplier=1.0 +Misc Gas Grill National Average ResStockArguments misc_fuel_loads_grill_present=true misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=auto misc_fuel_loads_grill_usage_multiplier=0.029 +Misc Gas Grill None ResStockArguments misc_fuel_loads_grill_present=false misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=0 misc_fuel_loads_grill_usage_multiplier=0 +Misc Gas Lighting Gas Lighting ResStockArguments misc_fuel_loads_lighting_present=true misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=auto misc_fuel_loads_lighting_usage_multiplier=1.0 +Misc Gas Lighting National Average ResStockArguments misc_fuel_loads_lighting_present=true misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=auto misc_fuel_loads_lighting_usage_multiplier=0.012 +Misc Gas Lighting None ResStockArguments misc_fuel_loads_lighting_present=false misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=0 misc_fuel_loads_lighting_usage_multiplier=0 +Misc Hot Tub Spa Electricity ResStockArguments permanent_spa_present=true permanent_spa_pump_annual_kwh=auto permanent_spa_pump_usage_multiplier=1.0 permanent_spa_heater_type=electric resistance permanent_spa_heater_annual_kwh=auto permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=1.0 +Misc Hot Tub Spa Natural Gas ResStockArguments permanent_spa_present=true permanent_spa_pump_annual_kwh=auto permanent_spa_pump_usage_multiplier=1.0 permanent_spa_heater_type=gas fired permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=auto permanent_spa_heater_usage_multiplier=1.0 +Misc Hot Tub Spa None ResStockArguments permanent_spa_present=false permanent_spa_pump_annual_kwh=0 permanent_spa_pump_usage_multiplier=0 permanent_spa_heater_type=none permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=0 +Misc Hot Tub Spa Other Fuel ResStockArguments permanent_spa_present=false permanent_spa_pump_annual_kwh=0 permanent_spa_pump_usage_multiplier=0 permanent_spa_heater_type=none permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=0 +Misc Hot Tub Spa Void +Misc Pool Has Pool ResStockArguments pool_present=true +Misc Pool None ResStockArguments pool_present=false +Misc Pool Void +Misc Pool Heater "Electric, 78F" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.8 +Misc Pool Heater "Electric, Covered" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.3 +Misc Pool Heater "Electric, Covered, 78F" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.2 +Misc Pool Heater "Gas, 78F" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.8 +Misc Pool Heater "Gas, Covered" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.3 +Misc Pool Heater "Gas, Covered, 78F" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.2 +Misc Pool Heater Electricity ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=1.0 +Misc Pool Heater Natural Gas ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=1.0 +Misc Pool Heater None ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 +Misc Pool Heater Other Fuel ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 +Misc Pool Heater Solar ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 +Misc Pool Heater Unheated ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 +Misc Pool Pump 0.75 HP Pump ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=0.75 +Misc Pool Pump 1.0 HP Pump ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=1.0 +Misc Pool Pump National Average ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=0.075 +Misc Pool Pump None ResStockArguments pool_pump_annual_kwh=0 pool_pump_usage_multiplier=0 +Misc Well Pump High Efficiency ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=0.67 misc_plug_loads_well_pump_2_usage_multiplier=1.0 +Misc Well Pump National Average ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=0.127 misc_plug_loads_well_pump_2_usage_multiplier=1.0 +Misc Well Pump None ResStockArguments misc_plug_loads_well_pump_present=false misc_plug_loads_well_pump_annual_kwh=0 misc_plug_loads_well_pump_usage_multiplier=0 misc_plug_loads_well_pump_2_usage_multiplier=0 +Misc Well Pump Typical Efficiency ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=1.0 misc_plug_loads_well_pump_2_usage_multiplier=1.0 +Natural Ventilation "Cooling Season, 7 days/wk" ResStockArguments window_fraction_operable=0.67 +Natural Ventilation None ResStockArguments window_fraction_operable=0 +Neighbors "Left/Right at 15ft, Front/Back at 80ft" ResStockArguments neighbor_front_distance=80 neighbor_back_distance=80 neighbor_left_distance=15 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 12 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=12 neighbor_right_distance=12 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 2 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=2 neighbor_right_distance=2 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 27 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=27 neighbor_right_distance=27 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 4 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=4 neighbor_right_distance=4 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 7 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=7 neighbor_right_distance=7 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Back at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=15 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Front at 15ft ResStockArguments neighbor_front_distance=15 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Left at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=15 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Left/Right at 10ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=10 neighbor_right_distance=10 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Left/Right at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=15 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Left/Right at 20ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=20 neighbor_right_distance=20 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors None ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Right at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Occupants 0 ResStockArguments geometry_unit_num_occupants=0 general_water_use_usage_multiplier=auto +Occupants 1 ResStockArguments geometry_unit_num_occupants=1 general_water_use_usage_multiplier=auto +Occupants 10+ ResStockArguments geometry_unit_num_occupants=11 general_water_use_usage_multiplier=auto +Occupants 2 ResStockArguments geometry_unit_num_occupants=2 general_water_use_usage_multiplier=auto +Occupants 3 ResStockArguments geometry_unit_num_occupants=3 general_water_use_usage_multiplier=auto +Occupants 4 ResStockArguments geometry_unit_num_occupants=4 general_water_use_usage_multiplier=auto +Occupants 5 ResStockArguments geometry_unit_num_occupants=5 general_water_use_usage_multiplier=auto +Occupants 6 ResStockArguments geometry_unit_num_occupants=6 general_water_use_usage_multiplier=auto +Occupants 7 ResStockArguments geometry_unit_num_occupants=7 general_water_use_usage_multiplier=auto +Occupants 8 ResStockArguments geometry_unit_num_occupants=8 general_water_use_usage_multiplier=auto +Occupants 9 ResStockArguments geometry_unit_num_occupants=9 general_water_use_usage_multiplier=auto +Orientation ENE ResStockArguments geometry_unit_orientation=68 +Orientation ESE ResStockArguments geometry_unit_orientation=113 +Orientation East ResStockArguments geometry_unit_orientation=90 +Orientation NNE ResStockArguments geometry_unit_orientation=23 +Orientation NNW ResStockArguments geometry_unit_orientation=338 +Orientation North ResStockArguments geometry_unit_orientation=0 +Orientation Northeast ResStockArguments geometry_unit_orientation=45 +Orientation Northwest ResStockArguments geometry_unit_orientation=315 +Orientation SSE ResStockArguments geometry_unit_orientation=158 +Orientation SSW ResStockArguments geometry_unit_orientation=203 +Orientation South ResStockArguments geometry_unit_orientation=180 +Orientation Southeast ResStockArguments geometry_unit_orientation=135 +Orientation Southwest ResStockArguments geometry_unit_orientation=225 +Orientation WNW ResStockArguments geometry_unit_orientation=293 +Orientation WSW ResStockArguments geometry_unit_orientation=248 +Orientation West ResStockArguments geometry_unit_orientation=270 +Overhangs "2ft, All Windows" ResStockArguments overhangs_front_depth=2 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=2 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=2 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=2 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs "2ft, Back Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=2 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs "2ft, Front Windows" ResStockArguments overhangs_front_depth=2 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs "2ft, Left Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=2 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs "2ft, Right Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=2 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs None ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +PUMA "AK, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AK, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AK, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AK, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AK, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00115" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00116" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00117" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00118" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00119" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00120" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00121" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00122" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00123" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00124" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00125" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00126" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00127" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00128" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00129" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00130" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00131" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00132" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00133" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00134" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03709" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03710" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03711" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03712" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03713" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03714" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03715" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03716" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03717" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03718" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03719" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03720" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03721" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03722" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03723" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03724" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03725" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03726" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03727" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03728" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03729" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03730" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03731" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03732" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03733" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03734" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03735" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03736" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03737" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03738" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03739" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03740" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03741" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03742" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03743" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03744" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03745" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03746" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03747" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03748" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03749" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03750" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03751" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03752" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03753" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03754" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03755" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03756" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03757" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03758" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03759" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03760" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03761" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03762" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03763" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03764" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03765" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03766" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03767" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03768" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03769" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 04701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 04702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05911" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05912" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05913" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05914" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05915" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05916" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05917" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05918" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06511" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06512" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06513" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06514" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06515" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06709" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06710" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06711" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06712" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07115" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07311" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07312" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07313" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07314" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07315" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07316" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07317" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07318" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07319" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07320" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07321" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07322" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08511" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08512" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08513" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08514" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 10100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 10701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 10702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 10703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00808" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00809" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00810" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00811" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00812" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00813" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00814" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00815" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00816" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00817" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00818" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00819" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00820" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00821" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00822" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00823" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00824" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 04104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 04105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 04106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DC, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DC, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DC, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DC, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DC, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DE, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DE, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DE, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DE, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DE, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DE, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 02103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 06100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 06300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 06901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 06902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 06903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08606" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08607" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08608" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08609" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08610" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08611" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08612" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08613" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08614" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08615" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08616" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08617" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08618" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08619" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08620" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08621" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08622" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08623" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08624" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09911" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 12100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 12701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 12702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 12703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 12704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 05001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 05002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 06001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 06002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03009" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03407" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03408" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03409" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03410" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03411" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03412" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03413" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03414" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03415" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03416" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03417" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03418" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03419" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03420" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03421" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03422" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03520" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03521" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03522" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03523" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03524" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03525" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03526" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03527" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03528" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03529" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03530" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03531" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03532" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03210" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03211" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03212" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03213" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01405" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01406" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01407" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01408" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01409" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01410" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01808" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ND, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ND, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ND, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ND, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ND, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00405" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00406" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00407" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00408" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00409" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00410" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00411" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00412" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00413" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03210" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03211" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03212" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03311" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03312" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03313" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03709" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03710" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03808" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03809" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03810" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04009" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04010" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04011" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04012" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04013" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04014" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04015" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04016" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04017" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04018" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01314" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01316" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01317" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01318" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01319" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01320" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01321" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01322" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01323" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01324" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03210" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03211" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 04001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 04002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SD, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SD, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SD, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SD, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SD, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SD, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02311" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02312" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02313" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02314" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02315" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02316" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02317" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02318" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02319" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02320" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02321" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02322" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02511" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02512" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02513" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02514" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02515" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02516" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04606" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04607" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04608" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04609" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04610" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04611" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04612" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04613" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04614" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04615" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04616" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04617" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04618" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04619" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04620" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04621" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04622" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04623" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04624" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04625" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04626" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04627" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04628" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04629" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04630" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04631" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04632" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04633" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04634" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04635" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04636" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04637" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04638" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05911" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05912" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05913" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05914" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05915" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05916" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 05001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 11001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 11002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 13001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 21001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35009" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 49001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 49002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 49003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 49004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 53001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 57001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 57002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 10701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 10702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 10703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51010" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51020" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51040" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51044" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51045" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51080" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51084" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51085" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51087" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51089" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51090" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51095" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51096" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51097" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51115" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51120" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51125" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51135" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51145" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51154" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51155" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51164" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51165" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51167" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51175" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51186" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51215" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51224" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51225" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51235" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51244" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51245" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51246" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51255" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 55001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 55002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VT, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VT, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VT, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VT, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11606" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11607" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11608" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11609" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11610" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11611" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11612" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11613" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11614" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11615" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11616" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 10000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 20000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 30000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 40101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 40301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 40701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 41001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 41002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 41003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 41004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 41005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 50000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 55101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 55102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 55103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 70101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 70201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 70301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WY, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WY, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WY, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WY, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WY, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA Metro Status "In metro area, not/partially in principal city" +PUMA Metro Status "In metro area, principal city" +PUMA Metro Status Not/partially in metro area +PV Orientation East ResStockArguments pv_system_array_azimuth=90 pv_system_2_array_azimuth=0 +PV Orientation None ResStockArguments pv_system_array_azimuth=180 pv_system_2_array_azimuth=0 +PV Orientation North ResStockArguments pv_system_array_azimuth=0 pv_system_2_array_azimuth=0 +PV Orientation Northeast ResStockArguments pv_system_array_azimuth=45 pv_system_2_array_azimuth=0 +PV Orientation Northwest ResStockArguments pv_system_array_azimuth=315 pv_system_2_array_azimuth=0 +PV Orientation South ResStockArguments pv_system_array_azimuth=180 pv_system_2_array_azimuth=0 +PV Orientation Southeast ResStockArguments pv_system_array_azimuth=135 pv_system_2_array_azimuth=0 +PV Orientation Southwest ResStockArguments pv_system_array_azimuth=225 pv_system_2_array_azimuth=0 +PV Orientation West ResStockArguments pv_system_array_azimuth=270 pv_system_2_array_azimuth=0 +PV System Size 1.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=1000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 11.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=11000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 13.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=13000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 3.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=3000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 5.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=5000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 7.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=7000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 9.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=9000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size None ResStockArguments pv_system_present=false pv_system_module_type=auto pv_system_max_power_output=0 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +Plug Load Diversity 100% ResStockArguments misc_plug_loads_other_2_usage_multiplier=1.0 misc_plug_loads_television_2_usage_multiplier=1.0 +Plug Load Diversity 150% ResStockArguments misc_plug_loads_other_2_usage_multiplier=1.5 misc_plug_loads_television_2_usage_multiplier=1.5 +Plug Load Diversity 200% ResStockArguments misc_plug_loads_other_2_usage_multiplier=2.0 misc_plug_loads_television_2_usage_multiplier=2.0 +Plug Load Diversity 25% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.25 misc_plug_loads_television_2_usage_multiplier=0.25 +Plug Load Diversity 400% ResStockArguments misc_plug_loads_other_2_usage_multiplier=4.0 misc_plug_loads_television_2_usage_multiplier=4.0 +Plug Load Diversity 50% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.5 misc_plug_loads_television_2_usage_multiplier=0.5 +Plug Load Diversity 75% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.75 misc_plug_loads_television_2_usage_multiplier=0.75 +Plug Loads 100% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.0 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.0 +Plug Loads 101% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.01 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.01 +Plug Loads 102% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.02 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.02 +Plug Loads 103% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.03 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.03 +Plug Loads 104% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.04 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.04 +Plug Loads 105% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.05 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.05 +Plug Loads 106% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.06 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.06 +Plug Loads 108% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.08 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.08 +Plug Loads 110% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.1 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.1 +Plug Loads 113% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.13 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.13 +Plug Loads 119% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.19 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.19 +Plug Loads 121% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.21 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.21 +Plug Loads 123% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.23 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.23 +Plug Loads 134% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.34 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.34 +Plug Loads 137% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.37 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.37 +Plug Loads 140% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.4 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.4 +Plug Loads 144% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.44 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.44 +Plug Loads 166% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.66 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.66 +Plug Loads 78% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.78 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.78 +Plug Loads 79% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.79 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.79 +Plug Loads 82% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.82 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.82 +Plug Loads 84% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.84 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.84 +Plug Loads 85% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.85 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.85 +Plug Loads 86% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.86 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.86 +Plug Loads 89% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.89 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.89 +Plug Loads 91% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.91 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.91 +Plug Loads 93% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.93 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.93 +Plug Loads 94% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.94 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.94 +Plug Loads 95% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.95 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.95 +Plug Loads 96% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.96 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.96 +Plug Loads 97% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.97 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.97 +Plug Loads 99% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.99 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.99 +Power Outage Summer ResStockArguments schedules_power_outage_periods=Jul 1 5 - Jul 31 14 schedules_power_outage_periods_window_natvent_availability=always available +REEDS Balancing Area 1 +REEDS Balancing Area 10 +REEDS Balancing Area 100 +REEDS Balancing Area 101 +REEDS Balancing Area 102 +REEDS Balancing Area 103 +REEDS Balancing Area 104 +REEDS Balancing Area 105 +REEDS Balancing Area 106 +REEDS Balancing Area 107 +REEDS Balancing Area 108 +REEDS Balancing Area 109 +REEDS Balancing Area 11 +REEDS Balancing Area 110 +REEDS Balancing Area 111 +REEDS Balancing Area 112 +REEDS Balancing Area 113 +REEDS Balancing Area 114 +REEDS Balancing Area 115 +REEDS Balancing Area 116 +REEDS Balancing Area 117 +REEDS Balancing Area 118 +REEDS Balancing Area 119 +REEDS Balancing Area 12 +REEDS Balancing Area 120 +REEDS Balancing Area 121 +REEDS Balancing Area 122 +REEDS Balancing Area 123 +REEDS Balancing Area 124 +REEDS Balancing Area 125 +REEDS Balancing Area 126 +REEDS Balancing Area 127 +REEDS Balancing Area 128 +REEDS Balancing Area 129 +REEDS Balancing Area 13 +REEDS Balancing Area 130 +REEDS Balancing Area 131 +REEDS Balancing Area 132 +REEDS Balancing Area 133 +REEDS Balancing Area 134 +REEDS Balancing Area 14 +REEDS Balancing Area 15 +REEDS Balancing Area 16 +REEDS Balancing Area 17 +REEDS Balancing Area 18 +REEDS Balancing Area 19 +REEDS Balancing Area 2 +REEDS Balancing Area 20 +REEDS Balancing Area 21 +REEDS Balancing Area 22 +REEDS Balancing Area 23 +REEDS Balancing Area 24 +REEDS Balancing Area 25 +REEDS Balancing Area 26 +REEDS Balancing Area 27 +REEDS Balancing Area 28 +REEDS Balancing Area 29 +REEDS Balancing Area 3 +REEDS Balancing Area 30 +REEDS Balancing Area 31 +REEDS Balancing Area 32 +REEDS Balancing Area 33 +REEDS Balancing Area 34 +REEDS Balancing Area 35 +REEDS Balancing Area 36 +REEDS Balancing Area 37 +REEDS Balancing Area 38 +REEDS Balancing Area 39 +REEDS Balancing Area 4 +REEDS Balancing Area 40 +REEDS Balancing Area 41 +REEDS Balancing Area 42 +REEDS Balancing Area 43 +REEDS Balancing Area 44 +REEDS Balancing Area 45 +REEDS Balancing Area 46 +REEDS Balancing Area 47 +REEDS Balancing Area 48 +REEDS Balancing Area 49 +REEDS Balancing Area 5 +REEDS Balancing Area 50 +REEDS Balancing Area 51 +REEDS Balancing Area 52 +REEDS Balancing Area 53 +REEDS Balancing Area 54 +REEDS Balancing Area 55 +REEDS Balancing Area 56 +REEDS Balancing Area 57 +REEDS Balancing Area 58 +REEDS Balancing Area 59 +REEDS Balancing Area 6 +REEDS Balancing Area 60 +REEDS Balancing Area 61 +REEDS Balancing Area 62 +REEDS Balancing Area 63 +REEDS Balancing Area 64 +REEDS Balancing Area 65 +REEDS Balancing Area 66 +REEDS Balancing Area 67 +REEDS Balancing Area 68 +REEDS Balancing Area 69 +REEDS Balancing Area 7 +REEDS Balancing Area 70 +REEDS Balancing Area 71 +REEDS Balancing Area 72 +REEDS Balancing Area 73 +REEDS Balancing Area 74 +REEDS Balancing Area 75 +REEDS Balancing Area 76 +REEDS Balancing Area 77 +REEDS Balancing Area 78 +REEDS Balancing Area 79 +REEDS Balancing Area 8 +REEDS Balancing Area 80 +REEDS Balancing Area 81 +REEDS Balancing Area 82 +REEDS Balancing Area 83 +REEDS Balancing Area 84 +REEDS Balancing Area 85 +REEDS Balancing Area 86 +REEDS Balancing Area 87 +REEDS Balancing Area 88 +REEDS Balancing Area 89 +REEDS Balancing Area 9 +REEDS Balancing Area 90 +REEDS Balancing Area 91 +REEDS Balancing Area 92 +REEDS Balancing Area 93 +REEDS Balancing Area 94 +REEDS Balancing Area 95 +REEDS Balancing Area 96 +REEDS Balancing Area 97 +REEDS Balancing Area 98 +REEDS Balancing Area 99 +REEDS Balancing Area None +Radiant Barrier No ResStockArguments radiant_barrier_attic_location=none radiant_barrier_grade=1 +Radiant Barrier None ResStockArguments radiant_barrier_attic_location=none radiant_barrier_grade=1 +Radiant Barrier Yes ResStockArguments radiant_barrier_attic_location=Attic roof only radiant_barrier_grade=1 +Range Spot Vent Hour Hour0 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=0 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour1 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=1 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour10 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=10 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour11 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=11 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour12 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=12 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour13 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=13 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour14 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=14 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour15 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=15 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour16 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=16 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour17 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=17 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour18 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=18 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour19 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=19 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour2 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=2 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour20 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=20 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour21 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=21 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour22 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=22 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour23 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=23 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour3 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=3 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour4 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=4 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour5 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=5 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour6 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=6 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour7 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=7 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour8 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=8 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour9 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=9 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Refrigerator EF 10.2 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=748 +Refrigerator EF 10.5 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=727 +Refrigerator EF 15.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=480 +Refrigerator EF 17.6 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=433 +Refrigerator EF 19.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=383 +Refrigerator EF 21.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=348 +Refrigerator EF 6.7 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=1139 +Refrigerator None ResStockArguments refrigerator_present=false refrigerator_location=auto refrigerator_rated_annual_kwh=0 +Refrigerator Void +Refrigerator Usage Level 100% Usage ResStockArguments refrigerator_usage_multiplier=1.0 +Refrigerator Usage Level 105% Usage ResStockArguments refrigerator_usage_multiplier=1.05 +Refrigerator Usage Level 95% Usage ResStockArguments refrigerator_usage_multiplier=0.95 +Roof Material "Asphalt Shingles, Dark" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=dark +Roof Material "Asphalt Shingles, Light" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=light +Roof Material "Asphalt Shingles, Medium" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=medium +Roof Material "Asphalt Shingles, White or cool colors" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=reflective +Roof Material "Composition Shingles, White or Cool Colors" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=reflective +Roof Material "Metal, Cool Colors" ResStockArguments roof_material_type=metal surfacing roof_color=reflective +Roof Material "Metal, Dark" ResStockArguments roof_material_type=metal surfacing roof_color=dark +Roof Material "Metal, Light" ResStockArguments roof_material_type=metal surfacing roof_color=light +Roof Material "Metal, Medium" ResStockArguments roof_material_type=metal surfacing roof_color=medium +Roof Material "Metal, White" ResStockArguments roof_material_type=metal surfacing roof_color=reflective +Roof Material "Tile, Clay or Ceramic" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium +Roof Material "Tile, Clay or Ceramic, White or Cool Colors" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective +Roof Material "Tile, Concrete" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium +Roof Material "Tile, Concrete, White or Cool Colors" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective +Roof Material "Tile, Dark" ResStockArguments roof_material_type=slate or tile shingles roof_color=dark +Roof Material "Tile, Light" ResStockArguments roof_material_type=slate or tile shingles roof_color=light +Roof Material "Tile, Medium" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium +Roof Material "Tile, White" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective +Roof Material Composition Shingles ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=medium +Roof Material Galvanized Steel ResStockArguments roof_material_type=metal surfacing roof_color=medium +Roof Material Slate ResStockArguments roof_material_type=slate or tile shingles roof_color=medium +Roof Material Wood Shingles ResStockArguments roof_material_type=wood shingles or shakes roof_color=medium +Solar Hot Water "40 sqft, South, 10 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=10 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, South, Latitude - 15 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=latitude-15 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, South, Roof Pitch" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, West, 70 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=70 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, West, Latitude + 15 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=latitude+15 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, West, Roof Pitch" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water None ResStockArguments solar_thermal_system_type=none solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +State AK ResStockArguments site_state_code=AK +State AL ResStockArguments site_state_code=AL +State AR ResStockArguments site_state_code=AR +State AZ ResStockArguments site_state_code=AZ +State CA ResStockArguments site_state_code=CA +State CO ResStockArguments site_state_code=CO +State CT ResStockArguments site_state_code=CT +State DC ResStockArguments site_state_code=DC +State DE ResStockArguments site_state_code=DE +State FL ResStockArguments site_state_code=FL +State GA ResStockArguments site_state_code=GA +State HI ResStockArguments site_state_code=HI +State IA ResStockArguments site_state_code=IA +State ID ResStockArguments site_state_code=ID +State IL ResStockArguments site_state_code=IL +State IN ResStockArguments site_state_code=IN +State KS ResStockArguments site_state_code=KS +State KY ResStockArguments site_state_code=KY +State LA ResStockArguments site_state_code=LA +State MA ResStockArguments site_state_code=MA +State MD ResStockArguments site_state_code=MD +State ME ResStockArguments site_state_code=ME +State MI ResStockArguments site_state_code=MI +State MN ResStockArguments site_state_code=MN +State MO ResStockArguments site_state_code=MO +State MS ResStockArguments site_state_code=MS +State MT ResStockArguments site_state_code=MT +State NC ResStockArguments site_state_code=NC +State ND ResStockArguments site_state_code=ND +State NE ResStockArguments site_state_code=NE +State NH ResStockArguments site_state_code=NH +State NJ ResStockArguments site_state_code=NJ +State NM ResStockArguments site_state_code=NM +State NV ResStockArguments site_state_code=NV +State NY ResStockArguments site_state_code=NY +State OH ResStockArguments site_state_code=OH +State OK ResStockArguments site_state_code=OK +State OR ResStockArguments site_state_code=OR +State PA ResStockArguments site_state_code=PA +State RI ResStockArguments site_state_code=RI +State SC ResStockArguments site_state_code=SC +State SD ResStockArguments site_state_code=SD +State TN ResStockArguments site_state_code=TN +State TX ResStockArguments site_state_code=TX +State UT ResStockArguments site_state_code=UT +State VA ResStockArguments site_state_code=VA +State VT ResStockArguments site_state_code=VT +State WA ResStockArguments site_state_code=WA +State WI ResStockArguments site_state_code=WI +State WV ResStockArguments site_state_code=WV +State WY ResStockArguments site_state_code=WY +State Metro Median Income 0-30% +State Metro Median Income 100-120% +State Metro Median Income 120-150% +State Metro Median Income 150%+ +State Metro Median Income 30-60% +State Metro Median Income 60-80% +State Metro Median Income 80-100% +State Metro Median Income Not Available +Storm Windows Clear ResStockArguments window_storm_type=clear +Storm Windows Low-E ResStockArguments window_storm_type=low-e +Tenure Not Available +Tenure Owner +Tenure Renter +Usage Level Average +Usage Level High +Usage Level Low +Usage Level Medium +Vacancy Status Occupied +Vacancy Status Vacant ResStockArguments schedules_vacancy_periods=Jan 1 - Dec 31 +Vintage 1940s ResStockArguments vintage=1940s year_built=auto +Vintage 1950s ResStockArguments vintage=1950s year_built=auto +Vintage 1960s ResStockArguments vintage=1960s year_built=auto +Vintage 1970s ResStockArguments vintage=1970s year_built=auto +Vintage 1980s ResStockArguments vintage=1980s year_built=auto +Vintage 1990s ResStockArguments vintage=1990s year_built=auto +Vintage 2000s ResStockArguments vintage=2000s year_built=auto +Vintage 2010s ResStockArguments vintage=2010s year_built=auto +Vintage <1940 ResStockArguments vintage=<1940 year_built=auto +Vintage <1950 ResStockArguments vintage=<1950 year_built=auto +Vintage ACS 1940-59 +Vintage ACS 1960-79 +Vintage ACS 1980-99 +Vintage ACS 2000-09 +Vintage ACS 2010s +Vintage ACS <1940 +Water Heater Efficiency "Electric Heat Pump, 50 gal, 3.45 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 50 gal, 3.45 UEF, 140F" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=140 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 66 gal, 3.35 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=66 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.35 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 80 gal, 3.45 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=80 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Natural Gas Premium, Condensing" ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Natural Gas Tankless, Condensing" ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=natural gas water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.96 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Propane Premium, Condensing" ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Electric Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=electricity water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.95 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Electric Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=electricity water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.92 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Electric Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=electricity water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.99 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency FIXME Fuel Oil Indirect ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.62 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Fuel Oil Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.68 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Fuel Oil Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.62 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Natural Gas Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.67 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Natural Gas Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Natural Gas Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=natural gas water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Other Fuel ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=wood water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Propane Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.67 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Propane Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Propane Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=propane water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Fuel Electricity +Water Heater Fuel Fuel Oil +Water Heater Fuel Natural Gas +Water Heater Fuel Other Fuel +Water Heater Fuel Propane +Water Heater In Unit No +Water Heater In Unit Yes +Water Heater Location Attic ResStockArguments water_heater_location=attic +Water Heater Location Conditioned Mechanical Room ResStockArguments water_heater_location=other heated space +Water Heater Location Crawlspace ResStockArguments water_heater_location=crawlspace +Water Heater Location Garage ResStockArguments water_heater_location=garage +Water Heater Location Heated Basement ResStockArguments water_heater_location=basement - conditioned +Water Heater Location Living Space ResStockArguments water_heater_location=conditioned space +Water Heater Location Outside ResStockArguments water_heater_location=other exterior +Water Heater Location Unheated Basement ResStockArguments water_heater_location=basement - unconditioned +Window Areas F10 B30 L10 R10 ResStockArguments window_front_wwr=0.1 window_back_wwr=0.3 window_left_wwr=0.1 window_right_wwr=0.1 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F12 B12 L12 R12 ResStockArguments window_front_wwr=0.12 window_back_wwr=0.12 window_left_wwr=0.12 window_right_wwr=0.12 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F15 B15 L0 R0 ResStockArguments window_front_wwr=0.15 window_back_wwr=0.15 window_left_wwr=0 window_right_wwr=0 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F15 B15 L15 R15 ResStockArguments window_front_wwr=0.15 window_back_wwr=0.15 window_left_wwr=0.15 window_right_wwr=0.15 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F18 B18 L18 R18 ResStockArguments window_front_wwr=0.18 window_back_wwr=0.18 window_left_wwr=0.18 window_right_wwr=0.18 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F30 B30 L30 R30 ResStockArguments window_front_wwr=0.30 window_back_wwr=0.30 window_left_wwr=0.30 window_right_wwr=0.30 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F6 B6 L6 R6 ResStockArguments window_front_wwr=0.06 window_back_wwr=0.06 window_left_wwr=0.06 window_right_wwr=0.06 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F9 B9 L9 R9 ResStockArguments window_front_wwr=0.09 window_back_wwr=0.09 window_left_wwr=0.09 window_right_wwr=0.09 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas None ResStockArguments window_front_wwr=0.0 window_back_wwr=0.0 window_left_wwr=0.0 window_right_wwr=0.0 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Windows "Double, Clear, Metal, Air" ResStockArguments window_ufactor=0.76 window_shgc=0.67 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Metal, Air, Exterior Clear Storm" ResStockArguments window_ufactor=0.55 window_shgc=0.51 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.49 window_shgc=0.44 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Non-metal, Air" ResStockArguments window_ufactor=0.49 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Non-metal, Air, Exterior Clear Storm" ResStockArguments window_ufactor=0.34 window_shgc=0.49 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Non-metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.28 window_shgc=0.42 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Thermal-Break, Air" ResStockArguments window_ufactor=0.63 window_shgc=0.62 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Low-E, H-Gain" ResStockArguments window_ufactor=0.29 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Low-E, L-Gain" ResStockArguments window_ufactor=0.26 window_shgc=0.31 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Low-E, Non-metal, Air, L-Gain" ResStockArguments window_ufactor=0.37 window_shgc=0.3 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Low-E, Non-metal, Air, M-Gain" ResStockArguments window_ufactor=0.38 window_shgc=0.44 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Metal" ResStockArguments window_ufactor=1.16 window_shgc=0.76 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Metal, Exterior Clear Storm" ResStockArguments window_ufactor=0.67 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.57 window_shgc=0.47 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Non-metal" ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Non-metal, Exterior Clear Storm" ResStockArguments window_ufactor=0.47 window_shgc=0.54 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Non-metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.36 window_shgc=0.46 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Triple, Low-E, Insulated, Argon, H-Gain" ResStockArguments window_ufactor=0.18 window_shgc=0.40 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Triple, Low-E, Insulated, Argon, L-Gain" ResStockArguments window_ufactor=0.17 window_shgc=0.27 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Triple, Low-E, Non-metal, Air, L-Gain" ResStockArguments window_ufactor=0.29 window_shgc=0.26 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows No Windows ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows Void +Load Flexibility default LoadFlexibility \ No newline at end of file From 40142eaaef0351747916359a0afc385bcb5c6057 Mon Sep 17 00:00:00 2001 From: Rajendra Adhikari Date: Tue, 18 Jun 2024 15:14:20 -0500 Subject: [PATCH 03/21] Pass building info --- measures/LoadFlexibility/measure.py | 6 +++--- measures/LoadFlexibility/resources/setpoint.py | 9 +++++---- measures/LoadFlexibility/resources/setpoint_helper.py | 4 ++++ 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/measures/LoadFlexibility/measure.py b/measures/LoadFlexibility/measure.py index 4490a943d8..738903430d 100644 --- a/measures/LoadFlexibility/measure.py +++ b/measures/LoadFlexibility/measure.py @@ -26,7 +26,7 @@ from setpoint import modify_all_setpoints from input_helper import OffsetType, RelativeOffsetData, AbsoluteOffsetData, ALL_MEASURE_ARGS from xml_helper import HPXML -from setpoint_helper import HVACSetpoints +from setpoint_helper import HVACSetpoints, BuildingInfo sys.path.pop(0) @@ -128,8 +128,8 @@ def run( if result.returncode != 0: runner.registerError(f"Failed to run create_setpoint_schedules.rb : {result.stderr}") return False - - modify_all_setpoints(runner, setpoints) + building_info = BuildingInfo() + modify_all_setpoints(runner, setpoints, building_info) hpxml = HPXML(hpxml_path) doc_buildings = hpxml.findall("Building") for (indx, building) in enumerate(doc_buildings): diff --git a/measures/LoadFlexibility/resources/setpoint.py b/measures/LoadFlexibility/resources/setpoint.py index 98e908f311..d353417101 100644 --- a/measures/LoadFlexibility/resources/setpoint.py +++ b/measures/LoadFlexibility/resources/setpoint.py @@ -1,13 +1,13 @@ from input_helper import OffsetTypeData, OffsetTimingData, RelativeOffsetData, AbsoluteOffsetData from typing import List -from setpoint_helper import HVACSetpoints +from setpoint_helper import HVACSetpoints, BuildingInfo -def modify_setpoints(runner, setpoints: HVACSetpoints): +def modify_setpoints(runner, setpoints: HVACSetpoints, building_info: BuildingInfo): pass -def modify_all_setpoints(runner, multiple_setpoints: List[HVACSetpoints]): +def modify_all_setpoints(runner, multiple_setpoints: List[HVACSetpoints], building_info: BuildingInfo): """Modify setpoints based on user arguments.""" runner.registerInfo("Modifying setpoints ...") runner.registerInfo("Values got are") @@ -36,9 +36,10 @@ def modify_all_setpoints(runner, multiple_setpoints: List[HVACSetpoints]): f"{AbsoluteOffsetData.heating_on_peak_setpoint.val}") runner.registerInfo(f"{AbsoluteOffsetData.heating_pre_peak_setpoint.name}=" f"{AbsoluteOffsetData.heating_pre_peak_setpoint.val}") + runner.registerInfo(f"state={building_info.state}") # Modify the setpoint using above data modified_setpoints = [] for setpoints in multiple_setpoints: # Modify the setpoints - modified_setpoints.append(modify_setpoints(runner, setpoints=setpoints)) + modified_setpoints.append(modify_setpoints(runner, setpoints=setpoints, building_info=building_info)) return True diff --git a/measures/LoadFlexibility/resources/setpoint_helper.py b/measures/LoadFlexibility/resources/setpoint_helper.py index 9353f96489..85ca623bb5 100644 --- a/measures/LoadFlexibility/resources/setpoint_helper.py +++ b/measures/LoadFlexibility/resources/setpoint_helper.py @@ -6,3 +6,7 @@ class HVACSetpoints: heating_setpoint: List[float] cooling_setpoint: List[float] + +@dataclass(frozen=True) +class BuildingInfo: + state: str = "CO" From 23203d7c66424e2103b778d165a756b3641b667a Mon Sep 17 00:00:00 2001 From: Rajendra Adhikari Date: Tue, 18 Jun 2024 15:22:20 -0500 Subject: [PATCH 04/21] Commit flake8 file --- .flake8 | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .flake8 diff --git a/.flake8 b/.flake8 new file mode 100644 index 0000000000..394492bb65 --- /dev/null +++ b/.flake8 @@ -0,0 +1,4 @@ +[flake8] +max-line-length = 120 +# module level import not at top of file - we need to import after setting up the path +ignore = E402 \ No newline at end of file From d078a6e8d50dced3ee5c3b7e4936c2ef6950bcb4 Mon Sep 17 00:00:00 2001 From: Yingli Date: Thu, 20 Jun 2024 15:11:48 -0600 Subject: [PATCH 05/21] demand response --- .../LoadFlexibility/resources/setpoint.py | 193 +++++++++++++++++- 1 file changed, 190 insertions(+), 3 deletions(-) diff --git a/measures/LoadFlexibility/resources/setpoint.py b/measures/LoadFlexibility/resources/setpoint.py index d353417101..fef7ccae88 100644 --- a/measures/LoadFlexibility/resources/setpoint.py +++ b/measures/LoadFlexibility/resources/setpoint.py @@ -1,10 +1,184 @@ from input_helper import OffsetTypeData, OffsetTimingData, RelativeOffsetData, AbsoluteOffsetData from typing import List from setpoint_helper import HVACSetpoints, BuildingInfo +import pandas as pd +import numpy as np +from datetime import datetime +from dataclasses import dataclass, fields +def get_month_day(year_index, total_indices, year=2007): + """ + for each setpoint temperature, + get the month and day type (weekday for weekend) that it belongs. + the year number need to modify if the simulation year is not 2007. + """ -def modify_setpoints(runner, setpoints: HVACSetpoints, building_info: BuildingInfo): - pass + num_timsteps_per_hour = total_indices / 8760 + hour_num = year_index // num_timsteps_per_hour + day_num = int(hour_num // 24 + 1) + month = datetime.strptime(str(year) + "-" + str(day_num), "%Y-%j").strftime("%m") + + # need to modify based on the simulation year what the first day is + # the first day in 2007 is Monday + if day_num % 7 < 5: + day_type = 'weekday' + else: + day_type = 'weekend' + + return month, day_type + +@dataclass +class peak_time_default: + pre_peak_start_morning: int = 0 + peak_start_morning: int = 0 + peak_end_morning: int = 0 + pre_peak_start_afternoon: int = 0 + peak_start_afternoon: int = 0 + peak_end_afternoon: int = 0 + +def get_prepeak_and_peak_start_end(year_index, total_indices, on_peak_hour_weekday_dict, on_peak_hour_weekend_dict, setpoint_type): + """ + determine the prepeak start time, on peak start and end time, + in the unit of hour + """ + + month, day_type = get_month_day(year_index, total_indices) + + if setpoint_type == 'heating': + pre_peak_duration = OffsetTimingData.heating_pre_peak_duration + if setpoint_type == 'cooling': + pre_peak_duration = OffsetTimingData.cooling_pre_peak_duration + + if day_type == 'weekday': + row = on_peak_hour_weekday_dict[month] + else: + row = on_peak_hour_weekend_dict[month] + + row_morning = list(row.values())[:15] + row_afternoon = list(row.values())[11:] + + offset_time = peak_time_default() + if 1 in row_morning: + offset_time.peak_start_morning = row_morning.index(1) + offset_time.peak_end_morning = len(row_morning) - row_morning[::-1].index(1) - 1 + offset_time.pre_peak_start_morning = offset_time.peak_start_morning - pre_peak_duration + if 1 in row_afternoon: + offset_time.peak_start_afternoon = row_afternoon.index(1) + 11 + offset_time.peak_end_afternoon = len(row_afternoon) - row_afternoon[::-1].index(1) - 1 + 11 + offset_time.pre_peak_start_afternoon = offset_time.peak_start_afternoon - pre_peak_duration + + return offset_time + +def time_shift(time, num_timsteps_per_hour, shift): + time_shift = time * num_timsteps_per_hour + shift + return time_shift + +def get_setpoint_offset(year_index, total_indices, on_peak_hour_weekday_dict, on_peak_hour_weekend_dict, shift, setpoint_type): + """ + offset the setpoint to a certain value given by user inputs, + the defalut offset value for heating is: + increase 4F during prepeak time, decrase 4F during on peak time + the defalut offset value for cooling is: + decrease 4F during prepeak time, increase 4F during on peak time + """ + + num_timsteps_per_hour = total_indices / 8760 + offset_time = get_prepeak_and_peak_start_end(year_index, total_indices, on_peak_hour_weekday_dict, on_peak_hour_weekend_dict, setpoint_type) + + #To avoid coincidence response, randomly shift the demand response from - 1hour to 1 hour + for f in fields(offset_time): + value = getattr(offset_time, f.name) + value = time_shift(value, num_timsteps_per_hour, shift) + if isinstance(value, (int, float)): + setattr(offset_time, f.name, value) + + if setpoint_type == 'heating': + pre_peak_offset = RelativeOffsetData.heating_pre_peak_offset + on_peak_offset = RelativeOffsetData.heating_on_peak_offset + if setpoint_type == 'cooling': + pre_peak_offset = RelativeOffsetData.cooling_pre_peak_offset + on_peak_offset = RelativeOffsetData.cooling_on_peak_offset + + day_index = int(year_index % (24*num_timsteps_per_hour)) + if (offset_time.pre_peak_start_morning <= day_index < offset_time.peak_start_morning)\ + or (offset_time.pre_peak_start_afternoon <= day_index < offset_time.peak_start_afternoon): + setpoint_offset = pre_peak_offset + elif (offset_time.peak_start_morning <= day_index <= offset_time.peak_end_morning)\ + or (offset_time.peak_start_afternoon <= day_index <= offset_time.peak_end_afternoon): + setpoint_offset = on_peak_offset + else: + setpoint_offset = 0 + + return setpoint_offset + +def get_setpoint_absolute_value(year_index, total_indices, on_peak_hour_weekday_dict, on_peak_hour_weekend_dict, shift, setpoint_type, setpoint_default): + """ + set the setpoint to a fixed value given by user inputs + the default setpoint for heating is: + 80F during prepeak time, 55F during on peak time + the defalut setpoint for cooling is: + 60F during prepeak time, 80F during on peak time + """ + num_timsteps_per_hour = total_indices / 8760 + offset_time = get_prepeak_and_peak_start_end(year_index, total_indices, on_peak_hour_weekday_dict, on_peak_hour_weekend_dict, setpoint_type) + + #To avoid coincidence response, randomly shift the demand response from - 1hour to 1 hour + for f in fields(offset_time): + value = getattr(offset_time, f.name) + value = time_shift(value, num_timsteps_per_hour, shift) + if isinstance(value, (int, float)): + setattr(offset_time, f.name, value) + + if setpoint_type == 'heating': + pre_peak_setpoint = AbsoluteOffsetData.heating_pre_peak_setpoint + on_peak_setpoint = AbsoluteOffsetData.heating_on_peak_setpoint + if setpoint_type == 'cooling': + pre_peak_setpoint = AbsoluteOffsetData.cooling_pre_peak_setpoint + on_peak_setpoint = AbsoluteOffsetData.cooling_on_peak_setpoint + + day_index = int(year_index % (24*num_timsteps_per_hour)) + if (offset_time.pre_peak_start_morning <= day_index < offset_time.peak_start_morning)\ + or (offset_time.pre_peak_start_afternoon <= day_index < offset_time.peak_start_afternoon): + setpoint_reponse = pre_peak_setpoint + elif (offset_time.peak_start_morning <= day_index <= offset_time.peak_end_morning)\ + or (offset_time.peak_start_afternoon <= day_index <= offset_time.peak_end_afternoon): + setpoint_reponse = on_peak_setpoint + else: + setpoint_reponse = setpoint_default + + return setpoint_reponse + +def clip_setpoints(setpoint, setpoint_type): + """ + control the range of setpoint given by user inputs + the default range for heating is: 55-80F + the default range for cooling is: 60-80F + """ + + if setpoint_type == 'heating': + setpoint_max = RelativeOffsetData.heating_max + setpoint_min = RelativeOffsetData.heating_min + elif setpoint_type == 'cooling': + setpoint_max = RelativeOffsetData.cooling_max + setpoint_min = RelativeOffsetData.cooling_min + + if setpoint > setpoint_max: + setpoint = setpoint_max + elif setpoint < setpoint_min: + setpoint = setpoint_min + return setpoint + +def modify_setpoints(runner, index, total_indices, on_peak_hour_weekday_dict, on_peak_hour_weekend_dict, shift, setpoints: HVACSetpoints): + if OffsetTypeData.offset_type == relative: # make a setpoint offset compared with the default setpoint + setpoints.heating_setpoint += get_setpoint_offset(index, total_indices, on_peak_hour_weekday_dict, on_peak_hour_weekend_dict, shift, 'heating') + setpoints.cooling_setpoint += get_setpoint_offset(index, total_indices, on_peak_hour_weekday_dict, on_peak_hour_weekend_dict, shift, 'cooling') + elif OffsetTypeData.offset_type == absolute: # set the setpoint to a fixed value + setpoints.heating_setpoint = get_setpoint_absolute_value(index, total_indices, on_peak_hour_weekday_dict, on_peak_hour_weekend_dict, shift, 'heating', setpoints.heating_setpoint) + setpoints.cooling_setpoint = get_setpoint_absolute_value(index, total_indices, on_peak_hour_weekday_dict, on_peak_hour_weekend_dict, shift, 'cooling', setpoints.cooling_setpoint) + + setpoints.heating_setpoint = clip_setpoints(setpoints.heating_setpoint, 'heating') + setpoints.cooling_setpoint = clip_setpoints(setpoints.cooling_setpoint, 'cooling') + return setpoints def modify_all_setpoints(runner, multiple_setpoints: List[HVACSetpoints], building_info: BuildingInfo): @@ -38,8 +212,21 @@ def modify_all_setpoints(runner, multiple_setpoints: List[HVACSetpoints], buildi f"{AbsoluteOffsetData.heating_pre_peak_setpoint.val}") runner.registerInfo(f"state={building_info.state}") # Modify the setpoint using above data + ## on peak hour## + on_peak_hour_weekday = pd.read_csv(f"on_peak_hour/{building_info.state}_weekday_on_peak.csv") # csv file is generated from on_peak_hour_generation.py + on_peak_hour_weekend = pd.read_csv(f"on_peak_hour/{building_info.state}_weekend_on_peak.csv") # csv file is generated from on_peak_hour_generation.py + on_peak_hour_weekday_dict = on_peak_hour_weekday.set_index('month').transpose().to_dict() + on_peak_hour_weekend_dict = on_peak_hour_weekend.set_index('month').transpose().to_dict() + + #To avoid coincidence response, randomly shift the demand response from - 1hour to 1 hour + total_indices = len(multiple_setpoints) + num_timsteps_per_hour = total_indices / 8760 + shift = np.random.randint(-num_timsteps_per_hour, num_timsteps_per_hour, 1)[0] + modified_setpoints = [] for setpoints in multiple_setpoints: + index = 0 # Modify the setpoints - modified_setpoints.append(modify_setpoints(runner, setpoints=setpoints, building_info=building_info)) + modified_setpoints.append(modify_setpoints(runner, index, total_indices, on_peak_hour_weekday_dict, on_peak_hour_weekend_dict, shift, setpoints=setpoints)) + index += 1 return True From 758bc6fad71a8cb1b4cbf80f46d84f579380632d Mon Sep 17 00:00:00 2001 From: Yingli Date: Thu, 20 Jun 2024 15:32:08 -0600 Subject: [PATCH 06/21] on-peak hour --- .../resources/on_peak_hour/AL_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/AL_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/AR_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/AR_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/AZ_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/AZ_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/CA_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/CA_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/CO_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/CO_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/CT_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/CT_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/DC_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/DC_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/DE_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/DE_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/FL_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/FL_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/GA_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/GA_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/IA_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/IA_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/ID_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/ID_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/IL_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/IL_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/IN_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/IN_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/KS_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/KS_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/KY_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/KY_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/LA_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/LA_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/MA_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/MA_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/MD_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/MD_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/ME_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/ME_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/MI_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/MI_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/MN_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/MN_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/MO_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/MO_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/MS_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/MS_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/MT_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/MT_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/NC_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/NC_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/ND_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/ND_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/NE_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/NE_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/NH_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/NH_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/NJ_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/NJ_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/NM_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/NM_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/NV_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/NV_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/NY_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/NY_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/OH_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/OH_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/OK_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/OK_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/OR_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/OR_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/PA_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/PA_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/RI_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/RI_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/SC_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/SC_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/SD_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/SD_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/TN_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/TN_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/TX_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/TX_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/UT_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/UT_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/VA_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/VA_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/VT_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/VT_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/WA_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/WA_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/WI_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/WI_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/WV_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/WV_weekend_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/WY_weekday_on_peak.csv | 13 +++++++++++++ .../resources/on_peak_hour/WY_weekend_on_peak.csv | 13 +++++++++++++ 98 files changed, 1274 insertions(+) create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/AL_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/AL_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/AR_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/AR_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/AZ_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/AZ_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/CA_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/CA_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/CO_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/CO_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/CT_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/CT_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/DC_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/DC_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/DE_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/DE_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/FL_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/FL_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/GA_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/GA_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/IA_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/IA_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/ID_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/ID_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/IL_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/IL_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/IN_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/IN_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/KS_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/KS_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/KY_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/KY_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/LA_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/LA_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/MA_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/MA_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/MD_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/MD_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/ME_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/ME_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/MI_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/MI_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/MN_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/MN_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/MO_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/MO_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/MS_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/MS_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/MT_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/MT_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/NC_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/NC_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/ND_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/ND_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/NE_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/NE_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/NH_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/NH_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/NJ_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/NJ_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/NM_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/NM_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/NV_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/NV_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/NY_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/NY_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/OH_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/OH_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/OK_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/OK_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/OR_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/OR_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/PA_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/PA_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/RI_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/RI_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/SC_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/SC_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/SD_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/SD_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/TN_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/TN_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/TX_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/TX_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/UT_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/UT_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/VA_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/VA_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/VT_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/VT_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/WA_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/WA_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/WI_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/WI_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/WV_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/WV_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/WY_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/resources/on_peak_hour/WY_weekend_on_peak.csv diff --git a/measures/LoadFlexibility/resources/on_peak_hour/AL_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/AL_weekday_on_peak.csv new file mode 100644 index 0000000000..08a1d9ca89 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/AL_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +02,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +03,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +11,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/AL_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/AL_weekend_on_peak.csv new file mode 100644 index 0000000000..08a1d9ca89 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/AL_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +02,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +03,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +11,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/AR_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/AR_weekday_on_peak.csv new file mode 100644 index 0000000000..b08e82c594 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/AR_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/AR_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/AR_weekend_on_peak.csv new file mode 100644 index 0000000000..b08e82c594 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/AR_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/AZ_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/AZ_weekday_on_peak.csv new file mode 100644 index 0000000000..cd3404f9a2 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/AZ_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/AZ_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/AZ_weekend_on_peak.csv new file mode 100644 index 0000000000..cd3404f9a2 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/AZ_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/CA_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/CA_weekday_on_peak.csv new file mode 100644 index 0000000000..ee5c369dea --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/CA_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/CA_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/CA_weekend_on_peak.csv new file mode 100644 index 0000000000..ee5c369dea --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/CA_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/CO_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/CO_weekday_on_peak.csv new file mode 100644 index 0000000000..ac4721f3b9 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/CO_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/CO_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/CO_weekend_on_peak.csv new file mode 100644 index 0000000000..ac4721f3b9 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/CO_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/CT_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/CT_weekday_on_peak.csv new file mode 100644 index 0000000000..9eb4973df9 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/CT_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/CT_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/CT_weekend_on_peak.csv new file mode 100644 index 0000000000..9eb4973df9 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/CT_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/DC_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/DC_weekday_on_peak.csv new file mode 100644 index 0000000000..6ea2924577 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/DC_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/DC_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/DC_weekend_on_peak.csv new file mode 100644 index 0000000000..6ea2924577 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/DC_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/DE_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/DE_weekday_on_peak.csv new file mode 100644 index 0000000000..6ea2924577 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/DE_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/DE_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/DE_weekend_on_peak.csv new file mode 100644 index 0000000000..6ea2924577 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/DE_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/FL_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/FL_weekday_on_peak.csv new file mode 100644 index 0000000000..5f0b726e20 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/FL_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/FL_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/FL_weekend_on_peak.csv new file mode 100644 index 0000000000..5f0b726e20 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/FL_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/GA_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/GA_weekday_on_peak.csv new file mode 100644 index 0000000000..d1dc34daed --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/GA_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/GA_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/GA_weekend_on_peak.csv new file mode 100644 index 0000000000..d1dc34daed --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/GA_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/IA_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/IA_weekday_on_peak.csv new file mode 100644 index 0000000000..ac4721f3b9 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/IA_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/IA_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/IA_weekend_on_peak.csv new file mode 100644 index 0000000000..ac4721f3b9 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/IA_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/ID_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/ID_weekday_on_peak.csv new file mode 100644 index 0000000000..ac4721f3b9 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/ID_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/ID_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/ID_weekend_on_peak.csv new file mode 100644 index 0000000000..ac4721f3b9 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/ID_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/IL_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/IL_weekday_on_peak.csv new file mode 100644 index 0000000000..9eb4973df9 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/IL_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/IL_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/IL_weekend_on_peak.csv new file mode 100644 index 0000000000..9eb4973df9 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/IL_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/IN_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/IN_weekday_on_peak.csv new file mode 100644 index 0000000000..7ea22ed035 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/IN_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/IN_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/IN_weekend_on_peak.csv new file mode 100644 index 0000000000..7ea22ed035 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/IN_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/KS_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/KS_weekday_on_peak.csv new file mode 100644 index 0000000000..ff27754897 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/KS_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/KS_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/KS_weekend_on_peak.csv new file mode 100644 index 0000000000..ff27754897 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/KS_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/KY_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/KY_weekday_on_peak.csv new file mode 100644 index 0000000000..a0998d1680 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/KY_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/KY_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/KY_weekend_on_peak.csv new file mode 100644 index 0000000000..a0998d1680 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/KY_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/LA_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/LA_weekday_on_peak.csv new file mode 100644 index 0000000000..ee6bc0218c --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/LA_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/LA_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/LA_weekend_on_peak.csv new file mode 100644 index 0000000000..ee6bc0218c --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/LA_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/MA_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/MA_weekday_on_peak.csv new file mode 100644 index 0000000000..f8db21f6db --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/MA_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/MA_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/MA_weekend_on_peak.csv new file mode 100644 index 0000000000..f8db21f6db --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/MA_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/MD_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/MD_weekday_on_peak.csv new file mode 100644 index 0000000000..6ea2924577 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/MD_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/MD_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/MD_weekend_on_peak.csv new file mode 100644 index 0000000000..6ea2924577 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/MD_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/ME_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/ME_weekday_on_peak.csv new file mode 100644 index 0000000000..289245402b --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/ME_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/ME_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/ME_weekend_on_peak.csv new file mode 100644 index 0000000000..289245402b --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/ME_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/MI_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/MI_weekday_on_peak.csv new file mode 100644 index 0000000000..f8db21f6db --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/MI_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/MI_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/MI_weekend_on_peak.csv new file mode 100644 index 0000000000..f8db21f6db --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/MI_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/MN_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/MN_weekday_on_peak.csv new file mode 100644 index 0000000000..ac4721f3b9 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/MN_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/MN_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/MN_weekend_on_peak.csv new file mode 100644 index 0000000000..ac4721f3b9 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/MN_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/MO_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/MO_weekday_on_peak.csv new file mode 100644 index 0000000000..ff27754897 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/MO_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/MO_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/MO_weekend_on_peak.csv new file mode 100644 index 0000000000..ff27754897 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/MO_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/MS_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/MS_weekday_on_peak.csv new file mode 100644 index 0000000000..876b0e9895 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/MS_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/MS_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/MS_weekend_on_peak.csv new file mode 100644 index 0000000000..876b0e9895 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/MS_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/MT_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/MT_weekday_on_peak.csv new file mode 100644 index 0000000000..bc3091a1a8 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/MT_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/MT_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/MT_weekend_on_peak.csv new file mode 100644 index 0000000000..bc3091a1a8 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/MT_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/NC_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/NC_weekday_on_peak.csv new file mode 100644 index 0000000000..baba00690b --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/NC_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/NC_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/NC_weekend_on_peak.csv new file mode 100644 index 0000000000..baba00690b --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/NC_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/ND_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/ND_weekday_on_peak.csv new file mode 100644 index 0000000000..b417a15646 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/ND_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/ND_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/ND_weekend_on_peak.csv new file mode 100644 index 0000000000..b417a15646 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/ND_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/NE_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/NE_weekday_on_peak.csv new file mode 100644 index 0000000000..09c6d98440 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/NE_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/NE_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/NE_weekend_on_peak.csv new file mode 100644 index 0000000000..09c6d98440 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/NE_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/NH_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/NH_weekday_on_peak.csv new file mode 100644 index 0000000000..9eb4973df9 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/NH_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/NH_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/NH_weekend_on_peak.csv new file mode 100644 index 0000000000..9eb4973df9 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/NH_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/NJ_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/NJ_weekday_on_peak.csv new file mode 100644 index 0000000000..9eb4973df9 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/NJ_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/NJ_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/NJ_weekend_on_peak.csv new file mode 100644 index 0000000000..9eb4973df9 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/NJ_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/NM_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/NM_weekday_on_peak.csv new file mode 100644 index 0000000000..9b38bff7aa --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/NM_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/NM_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/NM_weekend_on_peak.csv new file mode 100644 index 0000000000..9b38bff7aa --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/NM_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/NV_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/NV_weekday_on_peak.csv new file mode 100644 index 0000000000..975718d8b5 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/NV_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/NV_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/NV_weekend_on_peak.csv new file mode 100644 index 0000000000..975718d8b5 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/NV_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/NY_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/NY_weekday_on_peak.csv new file mode 100644 index 0000000000..f8db21f6db --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/NY_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/NY_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/NY_weekend_on_peak.csv new file mode 100644 index 0000000000..f8db21f6db --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/NY_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/OH_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/OH_weekday_on_peak.csv new file mode 100644 index 0000000000..5d90775774 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/OH_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/OH_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/OH_weekend_on_peak.csv new file mode 100644 index 0000000000..5d90775774 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/OH_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/OK_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/OK_weekday_on_peak.csv new file mode 100644 index 0000000000..baba00690b --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/OK_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/OK_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/OK_weekend_on_peak.csv new file mode 100644 index 0000000000..baba00690b --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/OK_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/OR_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/OR_weekday_on_peak.csv new file mode 100644 index 0000000000..ac4721f3b9 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/OR_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/OR_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/OR_weekend_on_peak.csv new file mode 100644 index 0000000000..ac4721f3b9 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/OR_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/PA_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/PA_weekday_on_peak.csv new file mode 100644 index 0000000000..7ea22ed035 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/PA_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/PA_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/PA_weekend_on_peak.csv new file mode 100644 index 0000000000..7ea22ed035 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/PA_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/RI_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/RI_weekday_on_peak.csv new file mode 100644 index 0000000000..9eb4973df9 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/RI_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/RI_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/RI_weekend_on_peak.csv new file mode 100644 index 0000000000..9eb4973df9 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/RI_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/SC_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/SC_weekday_on_peak.csv new file mode 100644 index 0000000000..d1dc34daed --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/SC_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/SC_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/SC_weekend_on_peak.csv new file mode 100644 index 0000000000..d1dc34daed --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/SC_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/SD_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/SD_weekday_on_peak.csv new file mode 100644 index 0000000000..ac4721f3b9 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/SD_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/SD_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/SD_weekend_on_peak.csv new file mode 100644 index 0000000000..ac4721f3b9 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/SD_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/TN_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/TN_weekday_on_peak.csv new file mode 100644 index 0000000000..baba00690b --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/TN_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/TN_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/TN_weekend_on_peak.csv new file mode 100644 index 0000000000..baba00690b --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/TN_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/TX_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/TX_weekday_on_peak.csv new file mode 100644 index 0000000000..a69ba74711 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/TX_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/TX_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/TX_weekend_on_peak.csv new file mode 100644 index 0000000000..a69ba74711 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/TX_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/UT_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/UT_weekday_on_peak.csv new file mode 100644 index 0000000000..f8db21f6db --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/UT_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/UT_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/UT_weekend_on_peak.csv new file mode 100644 index 0000000000..f8db21f6db --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/UT_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/VA_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/VA_weekday_on_peak.csv new file mode 100644 index 0000000000..a0998d1680 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/VA_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/VA_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/VA_weekend_on_peak.csv new file mode 100644 index 0000000000..a0998d1680 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/VA_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/VT_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/VT_weekday_on_peak.csv new file mode 100644 index 0000000000..878d670d83 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/VT_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/VT_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/VT_weekend_on_peak.csv new file mode 100644 index 0000000000..878d670d83 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/VT_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 +12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/WA_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/WA_weekday_on_peak.csv new file mode 100644 index 0000000000..ac4721f3b9 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/WA_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/WA_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/WA_weekend_on_peak.csv new file mode 100644 index 0000000000..ac4721f3b9 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/WA_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/WI_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/WI_weekday_on_peak.csv new file mode 100644 index 0000000000..f8db21f6db --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/WI_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/WI_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/WI_weekend_on_peak.csv new file mode 100644 index 0000000000..f8db21f6db --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/WI_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/WV_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/WV_weekday_on_peak.csv new file mode 100644 index 0000000000..ac4721f3b9 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/WV_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/WV_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/WV_weekend_on_peak.csv new file mode 100644 index 0000000000..ac4721f3b9 --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/WV_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/WY_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/WY_weekday_on_peak.csv new file mode 100644 index 0000000000..a78492260e --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/WY_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/WY_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/WY_weekend_on_peak.csv new file mode 100644 index 0000000000..a78492260e --- /dev/null +++ b/measures/LoadFlexibility/resources/on_peak_hour/WY_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 From 4aeb5d1eeaca21825c66c6d164b0609360d5c9f9 Mon Sep 17 00:00:00 2001 From: Rajendra Adhikari Date: Tue, 25 Jun 2024 15:20:54 -0500 Subject: [PATCH 07/21] Add unit test --- measures/LoadFlexibility/measure.py | 2 +- .../LoadFlexibility/tests/test_load_flexibility.py | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/measures/LoadFlexibility/measure.py b/measures/LoadFlexibility/measure.py index 738903430d..dd359c50ba 100644 --- a/measures/LoadFlexibility/measure.py +++ b/measures/LoadFlexibility/measure.py @@ -6,7 +6,6 @@ import typing import openstudio -import debugpy from pathlib import Path import os import json @@ -17,6 +16,7 @@ if os.environ.get('DEBUGPY', '') == 'true': + import debugpy debugpy.listen(5694, in_process_debug_adapter=True) print("Waiting for debugger attach") debugpy.wait_for_client() diff --git a/measures/LoadFlexibility/tests/test_load_flexibility.py b/measures/LoadFlexibility/tests/test_load_flexibility.py index d6ea1ac8a0..c7f2b0312b 100644 --- a/measures/LoadFlexibility/tests/test_load_flexibility.py +++ b/measures/LoadFlexibility/tests/test_load_flexibility.py @@ -12,6 +12,7 @@ import dataclasses from measure import LoadFlexibility from resources.input_helper import OffsetTypeData, AbsoluteOffsetData, OffsetTimingData, RelativeOffsetData +from resources import setpoint sys.path.pop(0) # del sys.modules['measure'] @@ -37,6 +38,15 @@ def test_number_of_arguments_and_argument_names(self): actual_all_args = sorted([arg.name() for arg in arguments]) assert actual_all_args == expected_all_args + def test_setpoint_get_month_day(self): + year_index = 8759 + total_indices = 8760 + year = 2020 + month, day = setpoint.get_month_day(year_index, total_indices, year) + assert month == 12 + assert day == 31 + + # def test_valid_argument_values(self): # arg_dict = {} From 0cad8f9db82bdf833b2f8128252c77a0ea3330b8 Mon Sep 17 00:00:00 2001 From: Yingli Date: Wed, 24 Jul 2024 17:20:56 -0600 Subject: [PATCH 08/21] adjust on-peak duration --- .../LoadFlexibility/resources/setpoint.py | 17 +- resources/options_lookup.tsv | 27947 ++++++++-------- 2 files changed, 14002 insertions(+), 13962 deletions(-) diff --git a/measures/LoadFlexibility/resources/setpoint.py b/measures/LoadFlexibility/resources/setpoint.py index fef7ccae88..a5152ce236 100644 --- a/measures/LoadFlexibility/resources/setpoint.py +++ b/measures/LoadFlexibility/resources/setpoint.py @@ -3,6 +3,7 @@ from setpoint_helper import HVACSetpoints, BuildingInfo import pandas as pd import numpy as np +import math from datetime import datetime from dataclasses import dataclass, fields @@ -46,8 +47,10 @@ def get_prepeak_and_peak_start_end(year_index, total_indices, on_peak_hour_weekd if setpoint_type == 'heating': pre_peak_duration = OffsetTimingData.heating_pre_peak_duration + on_peak_duration = OffsetTimingData.heating_on_peak_duration if setpoint_type == 'cooling': pre_peak_duration = OffsetTimingData.cooling_pre_peak_duration + on_peak_duration = OffsetTimingData.cooling_on_peak_duration if day_type == 'weekday': row = on_peak_hour_weekday_dict[month] @@ -59,12 +62,18 @@ def get_prepeak_and_peak_start_end(year_index, total_indices, on_peak_hour_weekd offset_time = peak_time_default() if 1 in row_morning: - offset_time.peak_start_morning = row_morning.index(1) - offset_time.peak_end_morning = len(row_morning) - row_morning[::-1].index(1) - 1 + on_peak_start_index = row_morning.index(1) + on_peak_end_index = len(row_morning) - row_morning[::-1].index(1) - 1 + on_peak_mid_index = math.ceil((on_peak_start_index + on_peak_end_index)/2) + offset_time.peak_start_morning = math.ceil(on_peak_mid_index - on_peak_duration/2) + offset_time.peak_end_morning = math.ceil(on_peak_mid_index + on_peak_duration/2)-1 offset_time.pre_peak_start_morning = offset_time.peak_start_morning - pre_peak_duration if 1 in row_afternoon: - offset_time.peak_start_afternoon = row_afternoon.index(1) + 11 - offset_time.peak_end_afternoon = len(row_afternoon) - row_afternoon[::-1].index(1) - 1 + 11 + on_peak_start_index = row_afternoon.index(1) + 11 + on_peak_end_index = len(row_afternoon) - row_afternoon[::-1].index(1) - 1 + 11 + on_peak_mid_index = math.ceil((on_peak_start_index + on_peak_end_index)/2) + offset_time.peak_start_afternoon = math.ceil(on_peak_mid_index - on_peak_duration/2) + offset_time.peak_end_afternoon = math.ceil(on_peak_mid_index + on_peak_duration/2)-1 offset_time.pre_peak_start_afternoon = offset_time.peak_start_afternoon - pre_peak_duration return offset_time diff --git a/resources/options_lookup.tsv b/resources/options_lookup.tsv index 294a26829f..1ae24e4d5f 100644 --- a/resources/options_lookup.tsv +++ b/resources/options_lookup.tsv @@ -1,13958 +1,13989 @@ -Parameter Name Option Name Measure Dir Measure Arg 1 Measure Arg 2 ... -AHS Region "CBSA Atlanta-Sandy Springs-Roswell, GA" -AHS Region "CBSA Boston-Cambridge-Newton, MA-NH" -AHS Region "CBSA Chicago-Naperville-Elgin, IL-IN-WI" -AHS Region "CBSA Dallas-Fort Worth-Arlington, TX" -AHS Region "CBSA Detroit-Warren-Dearborn, MI" -AHS Region "CBSA Houston-The Woodlands-Sugar Land, TX" -AHS Region "CBSA Los Angeles-Long Beach-Anaheim, CA" -AHS Region "CBSA Miami-Fort Lauderdale-West Palm Beach, FL" -AHS Region "CBSA New York-Newark-Jersey City, NY-NJ-PA" -AHS Region "CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD" -AHS Region "CBSA Phoenix-Mesa-Scottsdale, AZ" -AHS Region "CBSA Riverside-San Bernardino-Ontario, CA" -AHS Region "CBSA San Francisco-Oakland-Hayward, CA" -AHS Region "CBSA Seattle-Tacoma-Bellevue, WA" -AHS Region "CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV" -AHS Region Non-CBSA East North Central -AHS Region Non-CBSA East South Central -AHS Region Non-CBSA Middle Atlantic -AHS Region Non-CBSA Mountain -AHS Region Non-CBSA New England -AHS Region Non-CBSA Pacific -AHS Region Non-CBSA South Atlantic -AHS Region Non-CBSA West North Central -AHS Region Non-CBSA West South Central -AIANNH Area No -AIANNH Area Yes -ASHRAE IECC Climate Zone 2004 1A ResStockArguments site_iecc_zone=1A site_type=auto -ASHRAE IECC Climate Zone 2004 2A ResStockArguments site_iecc_zone=2A site_type=auto -ASHRAE IECC Climate Zone 2004 2B ResStockArguments site_iecc_zone=2B site_type=auto -ASHRAE IECC Climate Zone 2004 3A ResStockArguments site_iecc_zone=3A site_type=auto -ASHRAE IECC Climate Zone 2004 3B ResStockArguments site_iecc_zone=3B site_type=auto -ASHRAE IECC Climate Zone 2004 3C ResStockArguments site_iecc_zone=3C site_type=auto -ASHRAE IECC Climate Zone 2004 4A ResStockArguments site_iecc_zone=4A site_type=auto -ASHRAE IECC Climate Zone 2004 4B ResStockArguments site_iecc_zone=4B site_type=auto -ASHRAE IECC Climate Zone 2004 4C ResStockArguments site_iecc_zone=4C site_type=auto -ASHRAE IECC Climate Zone 2004 5A ResStockArguments site_iecc_zone=5A site_type=auto -ASHRAE IECC Climate Zone 2004 5B ResStockArguments site_iecc_zone=5B site_type=auto -ASHRAE IECC Climate Zone 2004 6A ResStockArguments site_iecc_zone=6A site_type=auto -ASHRAE IECC Climate Zone 2004 6B ResStockArguments site_iecc_zone=6B site_type=auto -ASHRAE IECC Climate Zone 2004 7A ResStockArguments site_iecc_zone=7 site_type=auto -ASHRAE IECC Climate Zone 2004 7AK ResStockArguments site_iecc_zone=7 site_type=auto -ASHRAE IECC Climate Zone 2004 7B ResStockArguments site_iecc_zone=7 site_type=auto -ASHRAE IECC Climate Zone 2004 8AK ResStockArguments site_iecc_zone=8 site_type=auto -ASHRAE IECC Climate Zone 2004 - 2A Split "2A - FL, GA, AL, MS" -ASHRAE IECC Climate Zone 2004 - 2A Split "2A - TX, LA" -ASHRAE IECC Climate Zone 2004 - 2A Split 1A -ASHRAE IECC Climate Zone 2004 - 2A Split 2B -ASHRAE IECC Climate Zone 2004 - 2A Split 3A -ASHRAE IECC Climate Zone 2004 - 2A Split 3B -ASHRAE IECC Climate Zone 2004 - 2A Split 3C -ASHRAE IECC Climate Zone 2004 - 2A Split 4A -ASHRAE IECC Climate Zone 2004 - 2A Split 4B -ASHRAE IECC Climate Zone 2004 - 2A Split 4C -ASHRAE IECC Climate Zone 2004 - 2A Split 5A -ASHRAE IECC Climate Zone 2004 - 2A Split 5B -ASHRAE IECC Climate Zone 2004 - 2A Split 6A -ASHRAE IECC Climate Zone 2004 - 2A Split 6B -ASHRAE IECC Climate Zone 2004 - 2A Split 7A -ASHRAE IECC Climate Zone 2004 - 2A Split 7AK -ASHRAE IECC Climate Zone 2004 - 2A Split 7B -ASHRAE IECC Climate Zone 2004 - 2A Split 8AK -Area Median Income 0-30% -Area Median Income 100-120% -Area Median Income 120-150% -Area Median Income 150%+ -Area Median Income 30-60% -Area Median Income 60-80% -Area Median Income 80-100% -Area Median Income Not Available -Bathroom Spot Vent Hour Hour0 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=0 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour1 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=1 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour10 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=10 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour11 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=11 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour12 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=12 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour13 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=13 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour14 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=14 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour15 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=15 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour16 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=16 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour17 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=17 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour18 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=18 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour19 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=19 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour2 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=2 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour20 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=20 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour21 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=21 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour22 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=22 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour23 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=23 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour3 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=3 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour4 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=4 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour5 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=5 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour6 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=6 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour7 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=7 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour8 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=8 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour9 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=9 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Battery "20 kWh, 80% Round Trip Efficiency" ResStockArguments battery_present=true battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=0.8 -Battery "20 kWh, Garage" ResStockArguments battery_present=true battery_location=garage battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto -Battery "20 kWh, Outside" ResStockArguments battery_present=true battery_location=outside battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto -Battery 10 kWh ResStockArguments battery_present=true battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto -Battery None ResStockArguments battery_present=false battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto -Bedrooms 1 ResStockArguments geometry_unit_num_bedrooms=1 geometry_unit_num_bathrooms=auto -Bedrooms 2 ResStockArguments geometry_unit_num_bedrooms=2 geometry_unit_num_bathrooms=auto -Bedrooms 3 ResStockArguments geometry_unit_num_bedrooms=3 geometry_unit_num_bathrooms=auto -Bedrooms 4 ResStockArguments geometry_unit_num_bedrooms=4 geometry_unit_num_bathrooms=auto -Bedrooms 5 ResStockArguments geometry_unit_num_bedrooms=5 geometry_unit_num_bathrooms=auto -Building America Climate Zone Cold -Building America Climate Zone Hot-Dry -Building America Climate Zone Hot-Humid -Building America Climate Zone Marine -Building America Climate Zone Mixed-Dry -Building America Climate Zone Mixed-Humid -Building America Climate Zone Subarctic -Building America Climate Zone Very Cold -CEC Climate Zone 1 -CEC Climate Zone 10 -CEC Climate Zone 11 -CEC Climate Zone 12 -CEC Climate Zone 13 -CEC Climate Zone 14 -CEC Climate Zone 15 -CEC Climate Zone 16 -CEC Climate Zone 2 -CEC Climate Zone 3 -CEC Climate Zone 4 -CEC Climate Zone 5 -CEC Climate Zone 6 -CEC Climate Zone 7 -CEC Climate Zone 8 -CEC Climate Zone 9 -CEC Climate Zone None -Ceiling Fan "Premium Efficiency, 0.5F Offset" ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=140.8 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0.5 -Ceiling Fan "Standard Efficiency, 0.5F Offset" ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=70.4 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0.5 -Ceiling Fan "Standard Efficiency, No usage" ResStockArguments ceiling_fan_present=false ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=0 ceiling_fan_quantity=0 ceiling_fan_cooling_setpoint_temp_offset=0 -Ceiling Fan None ResStockArguments ceiling_fan_present=false ceiling_fan_label_energy_use=0 ceiling_fan_efficiency=0 ceiling_fan_quantity=0 ceiling_fan_cooling_setpoint_temp_offset=0 -Ceiling Fan Premium Efficiency ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=140.8 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0 -Ceiling Fan Standard Efficiency ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=70.4 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0 -Census Division East North Central -Census Division East South Central -Census Division Middle Atlantic -Census Division Mountain -Census Division New England -Census Division Pacific -Census Division South Atlantic -Census Division West North Central -Census Division West South Central -Census Division RECS East North Central -Census Division RECS East South Central -Census Division RECS Middle Atlantic -Census Division RECS Mountain North -Census Division RECS Mountain South -Census Division RECS New England -Census Division RECS Pacific -Census Division RECS South Atlantic -Census Division RECS West North Central -Census Division RECS West South Central -Census Region Midwest -Census Region Northeast -Census Region South -Census Region West -City "AK, Anchorage" ResStockArguments site_city=auto -City "AL, Auburn" ResStockArguments site_city=auto -City "AL, Birmingham" ResStockArguments site_city=auto -City "AL, Decatur" ResStockArguments site_city=auto -City "AL, Dothan" ResStockArguments site_city=auto -City "AL, Florence" ResStockArguments site_city=auto -City "AL, Gadsden" ResStockArguments site_city=auto -City "AL, Hoover" ResStockArguments site_city=auto -City "AL, Huntsville" ResStockArguments site_city=auto -City "AL, Madison" ResStockArguments site_city=auto -City "AL, Mobile" ResStockArguments site_city=auto -City "AL, Montgomery" ResStockArguments site_city=auto -City "AL, Phenix City" ResStockArguments site_city=auto -City "AL, Tuscaloosa" ResStockArguments site_city=auto -City "AR, Bentonville" ResStockArguments site_city=auto -City "AR, Conway" ResStockArguments site_city=auto -City "AR, Fayetteville" ResStockArguments site_city=auto -City "AR, Fort Smith" ResStockArguments site_city=auto -City "AR, Hot Springs" ResStockArguments site_city=auto -City "AR, Jonesboro" ResStockArguments site_city=auto -City "AR, Little Rock" ResStockArguments site_city=auto -City "AR, North Little Rock" ResStockArguments site_city=auto -City "AR, Pine Bluff" ResStockArguments site_city=auto -City "AR, Rogers" ResStockArguments site_city=auto -City "AR, Springdale" ResStockArguments site_city=auto -City "AZ, Apache Junction" ResStockArguments site_city=auto -City "AZ, Avondale" ResStockArguments site_city=auto -City "AZ, Buckeye" ResStockArguments site_city=auto -City "AZ, Bullhead City" ResStockArguments site_city=auto -City "AZ, Casa Grande" ResStockArguments site_city=auto -City "AZ, Casas Adobes" ResStockArguments site_city=auto -City "AZ, Catalina Foothills" ResStockArguments site_city=auto -City "AZ, Chandler" ResStockArguments site_city=auto -City "AZ, Flagstaff" ResStockArguments site_city=auto -City "AZ, Fortuna Foothills" ResStockArguments site_city=auto -City "AZ, Gilbert" ResStockArguments site_city=auto -City "AZ, Glendale" ResStockArguments site_city=auto -City "AZ, Goodyear" ResStockArguments site_city=auto -City "AZ, Green Valley" ResStockArguments site_city=auto -City "AZ, Lake Havasu City" ResStockArguments site_city=auto -City "AZ, Marana" ResStockArguments site_city=auto -City "AZ, Maricopa" ResStockArguments site_city=auto -City "AZ, Mesa" ResStockArguments site_city=auto -City "AZ, Oro Valley" ResStockArguments site_city=auto -City "AZ, Peoria" ResStockArguments site_city=auto -City "AZ, Phoenix" ResStockArguments site_city=auto -City "AZ, Prescott Valley" ResStockArguments site_city=auto -City "AZ, Prescott" ResStockArguments site_city=auto -City "AZ, San Tan Valley" ResStockArguments site_city=auto -City "AZ, Scottsdale" ResStockArguments site_city=auto -City "AZ, Sierra Vista" ResStockArguments site_city=auto -City "AZ, Sun City West" ResStockArguments site_city=auto -City "AZ, Sun City" ResStockArguments site_city=auto -City "AZ, Surprise" ResStockArguments site_city=auto -City "AZ, Tempe" ResStockArguments site_city=auto -City "AZ, Tucson" ResStockArguments site_city=auto -City "AZ, Yuma" ResStockArguments site_city=auto -City "CA, Alameda" ResStockArguments site_city=auto -City "CA, Alhambra" ResStockArguments site_city=auto -City "CA, Aliso Viejo" ResStockArguments site_city=auto -City "CA, Altadena" ResStockArguments site_city=auto -City "CA, Anaheim" ResStockArguments site_city=auto -City "CA, Antioch" ResStockArguments site_city=auto -City "CA, Apple Valley" ResStockArguments site_city=auto -City "CA, Arcadia" ResStockArguments site_city=auto -City "CA, Arden-Arcade" ResStockArguments site_city=auto -City "CA, Bakersfield" ResStockArguments site_city=auto -City "CA, Baldwin Park" ResStockArguments site_city=auto -City "CA, Bellflower" ResStockArguments site_city=auto -City "CA, Berkeley" ResStockArguments site_city=auto -City "CA, Beverly Hills" ResStockArguments site_city=auto -City "CA, Brea" ResStockArguments site_city=auto -City "CA, Brentwood" ResStockArguments site_city=auto -City "CA, Buena Park" ResStockArguments site_city=auto -City "CA, Burbank" ResStockArguments site_city=auto -City "CA, Camarillo" ResStockArguments site_city=auto -City "CA, Campbell" ResStockArguments site_city=auto -City "CA, Carlsbad" ResStockArguments site_city=auto -City "CA, Carmichael" ResStockArguments site_city=auto -City "CA, Carson" ResStockArguments site_city=auto -City "CA, Castro Valley" ResStockArguments site_city=auto -City "CA, Cathedral City" ResStockArguments site_city=auto -City "CA, Cerritos" ResStockArguments site_city=auto -City "CA, Chico" ResStockArguments site_city=auto -City "CA, Chino Hills" ResStockArguments site_city=auto -City "CA, Chino" ResStockArguments site_city=auto -City "CA, Chula Vista" ResStockArguments site_city=auto -City "CA, Citrus Heights" ResStockArguments site_city=auto -City "CA, Clovis" ResStockArguments site_city=auto -City "CA, Colton" ResStockArguments site_city=auto -City "CA, Compton" ResStockArguments site_city=auto -City "CA, Concord" ResStockArguments site_city=auto -City "CA, Corona" ResStockArguments site_city=auto -City "CA, Costa Mesa" ResStockArguments site_city=auto -City "CA, Covina" ResStockArguments site_city=auto -City "CA, Culver City" ResStockArguments site_city=auto -City "CA, Cupertino" ResStockArguments site_city=auto -City "CA, Cypress" ResStockArguments site_city=auto -City "CA, Daly City" ResStockArguments site_city=auto -City "CA, Dana Point" ResStockArguments site_city=auto -City "CA, Danville" ResStockArguments site_city=auto -City "CA, Davis" ResStockArguments site_city=auto -City "CA, Diamond Bar" ResStockArguments site_city=auto -City "CA, Downey" ResStockArguments site_city=auto -City "CA, Dublin" ResStockArguments site_city=auto -City "CA, East Los Angeles" ResStockArguments site_city=auto -City "CA, El Cajon" ResStockArguments site_city=auto -City "CA, El Dorado Hills" ResStockArguments site_city=auto -City "CA, El Monte" ResStockArguments site_city=auto -City "CA, Elk Grove" ResStockArguments site_city=auto -City "CA, Encinitas" ResStockArguments site_city=auto -City "CA, Escondido" ResStockArguments site_city=auto -City "CA, Fairfield" ResStockArguments site_city=auto -City "CA, Florence-Graham" ResStockArguments site_city=auto -City "CA, Florin" ResStockArguments site_city=auto -City "CA, Folsom" ResStockArguments site_city=auto -City "CA, Fontana" ResStockArguments site_city=auto -City "CA, Fountain Valley" ResStockArguments site_city=auto -City "CA, Fremont" ResStockArguments site_city=auto -City "CA, Fresno" ResStockArguments site_city=auto -City "CA, Fullerton" ResStockArguments site_city=auto -City "CA, Garden Grove" ResStockArguments site_city=auto -City "CA, Gardena" ResStockArguments site_city=auto -City "CA, Gilroy" ResStockArguments site_city=auto -City "CA, Glendale" ResStockArguments site_city=auto -City "CA, Glendora" ResStockArguments site_city=auto -City "CA, Hacienda Heights" ResStockArguments site_city=auto -City "CA, Hanford" ResStockArguments site_city=auto -City "CA, Hawthorne" ResStockArguments site_city=auto -City "CA, Hayward" ResStockArguments site_city=auto -City "CA, Hemet" ResStockArguments site_city=auto -City "CA, Hesperia" ResStockArguments site_city=auto -City "CA, Highland" ResStockArguments site_city=auto -City "CA, Huntington Beach" ResStockArguments site_city=auto -City "CA, Huntington Park" ResStockArguments site_city=auto -City "CA, Indio" ResStockArguments site_city=auto -City "CA, Inglewood" ResStockArguments site_city=auto -City "CA, Irvine" ResStockArguments site_city=auto -City "CA, La Habra" ResStockArguments site_city=auto -City "CA, La Mesa" ResStockArguments site_city=auto -City "CA, La Quinta" ResStockArguments site_city=auto -City "CA, Laguna Niguel" ResStockArguments site_city=auto -City "CA, Lake Elsinore" ResStockArguments site_city=auto -City "CA, Lake Forest" ResStockArguments site_city=auto -City "CA, Lakewood" ResStockArguments site_city=auto -City "CA, Lancaster" ResStockArguments site_city=auto -City "CA, Lincoln" ResStockArguments site_city=auto -City "CA, Livermore" ResStockArguments site_city=auto -City "CA, Lodi" ResStockArguments site_city=auto -City "CA, Long Beach" ResStockArguments site_city=auto -City "CA, Los Angeles" ResStockArguments site_city=auto -City "CA, Lynwood" ResStockArguments site_city=auto -City "CA, Madera" ResStockArguments site_city=auto -City "CA, Manhattan Beach" ResStockArguments site_city=auto -City "CA, Manteca" ResStockArguments site_city=auto -City "CA, Martinez" ResStockArguments site_city=auto -City "CA, Menifee" ResStockArguments site_city=auto -City "CA, Merced" ResStockArguments site_city=auto -City "CA, Milpitas" ResStockArguments site_city=auto -City "CA, Mission Viejo" ResStockArguments site_city=auto -City "CA, Modesto" ResStockArguments site_city=auto -City "CA, Montebello" ResStockArguments site_city=auto -City "CA, Monterey Park" ResStockArguments site_city=auto -City "CA, Moreno Valley" ResStockArguments site_city=auto -City "CA, Mountain View" ResStockArguments site_city=auto -City "CA, Murrieta" ResStockArguments site_city=auto -City "CA, Napa" ResStockArguments site_city=auto -City "CA, National City" ResStockArguments site_city=auto -City "CA, Newport Beach" ResStockArguments site_city=auto -City "CA, North Highlands" ResStockArguments site_city=auto -City "CA, Norwalk" ResStockArguments site_city=auto -City "CA, Novato" ResStockArguments site_city=auto -City "CA, Oakland" ResStockArguments site_city=auto -City "CA, Oceanside" ResStockArguments site_city=auto -City "CA, Ontario" ResStockArguments site_city=auto -City "CA, Orange" ResStockArguments site_city=auto -City "CA, Oxnard" ResStockArguments site_city=auto -City "CA, Palm Desert" ResStockArguments site_city=auto -City "CA, Palm Springs" ResStockArguments site_city=auto -City "CA, Palmdale" ResStockArguments site_city=auto -City "CA, Palo Alto" ResStockArguments site_city=auto -City "CA, Pasadena" ResStockArguments site_city=auto -City "CA, Perris" ResStockArguments site_city=auto -City "CA, Petaluma" ResStockArguments site_city=auto -City "CA, Pico Rivera" ResStockArguments site_city=auto -City "CA, Pittsburg" ResStockArguments site_city=auto -City "CA, Placentia" ResStockArguments site_city=auto -City "CA, Pleasanton" ResStockArguments site_city=auto -City "CA, Pomona" ResStockArguments site_city=auto -City "CA, Porterville" ResStockArguments site_city=auto -City "CA, Poway" ResStockArguments site_city=auto -City "CA, Rancho Cordova" ResStockArguments site_city=auto -City "CA, Rancho Cucamonga" ResStockArguments site_city=auto -City "CA, Rancho Palos Verdes" ResStockArguments site_city=auto -City "CA, Rancho Santa Margarita" ResStockArguments site_city=auto -City "CA, Redding" ResStockArguments site_city=auto -City "CA, Redlands" ResStockArguments site_city=auto -City "CA, Redondo Beach" ResStockArguments site_city=auto -City "CA, Redwood City" ResStockArguments site_city=auto -City "CA, Rialto" ResStockArguments site_city=auto -City "CA, Richmond" ResStockArguments site_city=auto -City "CA, Riverside" ResStockArguments site_city=auto -City "CA, Rocklin" ResStockArguments site_city=auto -City "CA, Rohnert Park" ResStockArguments site_city=auto -City "CA, Rosemead" ResStockArguments site_city=auto -City "CA, Roseville" ResStockArguments site_city=auto -City "CA, Rowland Heights" ResStockArguments site_city=auto -City "CA, Sacramento" ResStockArguments site_city=auto -City "CA, Salinas" ResStockArguments site_city=auto -City "CA, San Bernardino" ResStockArguments site_city=auto -City "CA, San Bruno" ResStockArguments site_city=auto -City "CA, San Buenaventura Ventura" ResStockArguments site_city=auto -City "CA, San Clemente" ResStockArguments site_city=auto -City "CA, San Diego" ResStockArguments site_city=auto -City "CA, San Francisco" ResStockArguments site_city=auto -City "CA, San Jose" ResStockArguments site_city=auto -City "CA, San Leandro" ResStockArguments site_city=auto -City "CA, San Luis Obispo" ResStockArguments site_city=auto -City "CA, San Marcos" ResStockArguments site_city=auto -City "CA, San Mateo" ResStockArguments site_city=auto -City "CA, San Rafael" ResStockArguments site_city=auto -City "CA, San Ramon" ResStockArguments site_city=auto -City "CA, Santa Ana" ResStockArguments site_city=auto -City "CA, Santa Barbara" ResStockArguments site_city=auto -City "CA, Santa Clara" ResStockArguments site_city=auto -City "CA, Santa Clarita" ResStockArguments site_city=auto -City "CA, Santa Cruz" ResStockArguments site_city=auto -City "CA, Santa Maria" ResStockArguments site_city=auto -City "CA, Santa Monica" ResStockArguments site_city=auto -City "CA, Santa Rosa" ResStockArguments site_city=auto -City "CA, Santee" ResStockArguments site_city=auto -City "CA, Simi Valley" ResStockArguments site_city=auto -City "CA, South Gate" ResStockArguments site_city=auto -City "CA, South Lake Tahoe" ResStockArguments site_city=auto -City "CA, South San Francisco" ResStockArguments site_city=auto -City "CA, South Whittier" ResStockArguments site_city=auto -City "CA, Stockton" ResStockArguments site_city=auto -City "CA, Sunnyvale" ResStockArguments site_city=auto -City "CA, Temecula" ResStockArguments site_city=auto -City "CA, Thousand Oaks" ResStockArguments site_city=auto -City "CA, Torrance" ResStockArguments site_city=auto -City "CA, Tracy" ResStockArguments site_city=auto -City "CA, Tulare" ResStockArguments site_city=auto -City "CA, Turlock" ResStockArguments site_city=auto -City "CA, Tustin" ResStockArguments site_city=auto -City "CA, Union City" ResStockArguments site_city=auto -City "CA, Upland" ResStockArguments site_city=auto -City "CA, Vacaville" ResStockArguments site_city=auto -City "CA, Vallejo" ResStockArguments site_city=auto -City "CA, Victorville" ResStockArguments site_city=auto -City "CA, Visalia" ResStockArguments site_city=auto -City "CA, Vista" ResStockArguments site_city=auto -City "CA, Walnut Creek" ResStockArguments site_city=auto -City "CA, West Covina" ResStockArguments site_city=auto -City "CA, West Hollywood" ResStockArguments site_city=auto -City "CA, West Sacramento" ResStockArguments site_city=auto -City "CA, Westminster" ResStockArguments site_city=auto -City "CA, Whittier" ResStockArguments site_city=auto -City "CA, Woodland" ResStockArguments site_city=auto -City "CA, Yorba Linda" ResStockArguments site_city=auto -City "CA, Yuba City" ResStockArguments site_city=auto -City "CA, Yucaipa" ResStockArguments site_city=auto -City "CO, Arvada" ResStockArguments site_city=auto -City "CO, Aurora" ResStockArguments site_city=auto -City "CO, Boulder" ResStockArguments site_city=auto -City "CO, Broomfield" ResStockArguments site_city=auto -City "CO, Castle Rock" ResStockArguments site_city=auto -City "CO, Centennial" ResStockArguments site_city=auto -City "CO, Colorado Springs" ResStockArguments site_city=auto -City "CO, Commerce City" ResStockArguments site_city=auto -City "CO, Denver" ResStockArguments site_city=auto -City "CO, Englewood" ResStockArguments site_city=auto -City "CO, Fort Collins" ResStockArguments site_city=auto -City "CO, Grand Junction" ResStockArguments site_city=auto -City "CO, Greeley" ResStockArguments site_city=auto -City "CO, Highlands Ranch" ResStockArguments site_city=auto -City "CO, Lakewood" ResStockArguments site_city=auto -City "CO, Littleton" ResStockArguments site_city=auto -City "CO, Longmont" ResStockArguments site_city=auto -City "CO, Loveland" ResStockArguments site_city=auto -City "CO, Parker" ResStockArguments site_city=auto -City "CO, Pueblo" ResStockArguments site_city=auto -City "CO, Thornton" ResStockArguments site_city=auto -City "CO, Westminster" ResStockArguments site_city=auto -City "CT, Bridgeport" ResStockArguments site_city=auto -City "CT, Bristol" ResStockArguments site_city=auto -City "CT, Danbury" ResStockArguments site_city=auto -City "CT, East Hartford" ResStockArguments site_city=auto -City "CT, Hartford" ResStockArguments site_city=auto -City "CT, Meriden" ResStockArguments site_city=auto -City "CT, Middletown" ResStockArguments site_city=auto -City "CT, Milford City Balance" ResStockArguments site_city=auto -City "CT, New Britain" ResStockArguments site_city=auto -City "CT, New Haven" ResStockArguments site_city=auto -City "CT, Norwalk" ResStockArguments site_city=auto -City "CT, Norwich" ResStockArguments site_city=auto -City "CT, Shelton" ResStockArguments site_city=auto -City "CT, Stamford" ResStockArguments site_city=auto -City "CT, Stratford" ResStockArguments site_city=auto -City "CT, Torrington" ResStockArguments site_city=auto -City "CT, Waterbury" ResStockArguments site_city=auto -City "CT, West Hartford" ResStockArguments site_city=auto -City "CT, West Haven" ResStockArguments site_city=auto -City "DC, Washington" ResStockArguments site_city=auto -City "DE, Dover" ResStockArguments site_city=auto -City "DE, Wilmington" ResStockArguments site_city=auto -City "FL, Alafaya" ResStockArguments site_city=auto -City "FL, Altamonte Springs" ResStockArguments site_city=auto -City "FL, Apopka" ResStockArguments site_city=auto -City "FL, Aventura" ResStockArguments site_city=auto -City "FL, Boca Raton" ResStockArguments site_city=auto -City "FL, Bonita Springs" ResStockArguments site_city=auto -City "FL, Boynton Beach" ResStockArguments site_city=auto -City "FL, Bradenton" ResStockArguments site_city=auto -City "FL, Brandon" ResStockArguments site_city=auto -City "FL, Cape Coral" ResStockArguments site_city=auto -City "FL, Carrollwood" ResStockArguments site_city=auto -City "FL, Clearwater" ResStockArguments site_city=auto -City "FL, Coconut Creek" ResStockArguments site_city=auto -City "FL, Coral Gables" ResStockArguments site_city=auto -City "FL, Coral Springs" ResStockArguments site_city=auto -City "FL, Country Club" ResStockArguments site_city=auto -City "FL, Dania Beach" ResStockArguments site_city=auto -City "FL, Davie" ResStockArguments site_city=auto -City "FL, Daytona Beach" ResStockArguments site_city=auto -City "FL, Deerfield Beach" ResStockArguments site_city=auto -City "FL, Delray Beach" ResStockArguments site_city=auto -City "FL, Deltona" ResStockArguments site_city=auto -City "FL, Doral" ResStockArguments site_city=auto -City "FL, Dunedin" ResStockArguments site_city=auto -City "FL, East Lake" ResStockArguments site_city=auto -City "FL, Estero" ResStockArguments site_city=auto -City "FL, Fort Lauderdale" ResStockArguments site_city=auto -City "FL, Fort Myers" ResStockArguments site_city=auto -City "FL, Fort Pierce" ResStockArguments site_city=auto -City "FL, Fountainebleau" ResStockArguments site_city=auto -City "FL, Four Corners" ResStockArguments site_city=auto -City "FL, Gainesville" ResStockArguments site_city=auto -City "FL, Greenacres" ResStockArguments site_city=auto -City "FL, Hallandale Beach" ResStockArguments site_city=auto -City "FL, Hialeah" ResStockArguments site_city=auto -City "FL, Hollywood" ResStockArguments site_city=auto -City "FL, Homestead" ResStockArguments site_city=auto -City "FL, Jacksonville" ResStockArguments site_city=auto -City "FL, Jupiter" ResStockArguments site_city=auto -City "FL, Kendale Lakes" ResStockArguments site_city=auto -City "FL, Kendall" ResStockArguments site_city=auto -City "FL, Kissimmee" ResStockArguments site_city=auto -City "FL, Lake Worth" ResStockArguments site_city=auto -City "FL, Lakeland" ResStockArguments site_city=auto -City "FL, Largo" ResStockArguments site_city=auto -City "FL, Lauderhill" ResStockArguments site_city=auto -City "FL, Lehigh Acres" ResStockArguments site_city=auto -City "FL, Marco Island" ResStockArguments site_city=auto -City "FL, Margate" ResStockArguments site_city=auto -City "FL, Melbourne" ResStockArguments site_city=auto -City "FL, Merritt Island" ResStockArguments site_city=auto -City "FL, Miami Beach" ResStockArguments site_city=auto -City "FL, Miami Gardens" ResStockArguments site_city=auto -City "FL, Miami" ResStockArguments site_city=auto -City "FL, Miramar" ResStockArguments site_city=auto -City "FL, Naples" ResStockArguments site_city=auto -City "FL, New Smyrna Beach" ResStockArguments site_city=auto -City "FL, North Fort Myers" ResStockArguments site_city=auto -City "FL, North Miami Beach" ResStockArguments site_city=auto -City "FL, North Miami" ResStockArguments site_city=auto -City "FL, North Port" ResStockArguments site_city=auto -City "FL, Oakland Park" ResStockArguments site_city=auto -City "FL, Ocala" ResStockArguments site_city=auto -City "FL, Orlando" ResStockArguments site_city=auto -City "FL, Ormond Beach" ResStockArguments site_city=auto -City "FL, Palm Bay" ResStockArguments site_city=auto -City "FL, Palm Beach Gardens" ResStockArguments site_city=auto -City "FL, Palm Coast" ResStockArguments site_city=auto -City "FL, Palm Harbor" ResStockArguments site_city=auto -City "FL, Panama City Beach" ResStockArguments site_city=auto -City "FL, Panama City" ResStockArguments site_city=auto -City "FL, Pembroke Pines" ResStockArguments site_city=auto -City "FL, Pensacola" ResStockArguments site_city=auto -City "FL, Pine Hills" ResStockArguments site_city=auto -City "FL, Pinellas Park" ResStockArguments site_city=auto -City "FL, Plantation" ResStockArguments site_city=auto -City "FL, Poinciana" ResStockArguments site_city=auto -City "FL, Pompano Beach" ResStockArguments site_city=auto -City "FL, Port Charlotte" ResStockArguments site_city=auto -City "FL, Port Orange" ResStockArguments site_city=auto -City "FL, Port St Lucie" ResStockArguments site_city=auto -City "FL, Riverview" ResStockArguments site_city=auto -City "FL, Riviera Beach" ResStockArguments site_city=auto -City "FL, Sanford" ResStockArguments site_city=auto -City "FL, Sarasota" ResStockArguments site_city=auto -City "FL, Spring Hill" ResStockArguments site_city=auto -City "FL, St Cloud" ResStockArguments site_city=auto -City "FL, St Petersburg" ResStockArguments site_city=auto -City "FL, Sun City Center" ResStockArguments site_city=auto -City "FL, Sunny Isles Beach" ResStockArguments site_city=auto -City "FL, Sunrise" ResStockArguments site_city=auto -City "FL, Tallahassee" ResStockArguments site_city=auto -City "FL, Tamarac" ResStockArguments site_city=auto -City "FL, Tamiami" ResStockArguments site_city=auto -City "FL, Tampa" ResStockArguments site_city=auto -City "FL, The Hammocks" ResStockArguments site_city=auto -City "FL, The Villages" ResStockArguments site_city=auto -City "FL, Titusville" ResStockArguments site_city=auto -City "FL, Town N Country" ResStockArguments site_city=auto -City "FL, University" ResStockArguments site_city=auto -City "FL, Venice" ResStockArguments site_city=auto -City "FL, Wellington" ResStockArguments site_city=auto -City "FL, Wesley Chapel" ResStockArguments site_city=auto -City "FL, West Palm Beach" ResStockArguments site_city=auto -City "FL, Weston" ResStockArguments site_city=auto -City "FL, Winter Haven" ResStockArguments site_city=auto -City "GA, Albany" ResStockArguments site_city=auto -City "GA, Alpharetta" ResStockArguments site_city=auto -City "GA, Athens-Clarke County Unified Government Balance" ResStockArguments site_city=auto -City "GA, Atlanta" ResStockArguments site_city=auto -City "GA, Augusta-Richmond County Consolidated Government Balance" ResStockArguments site_city=auto -City "GA, Columbus" ResStockArguments site_city=auto -City "GA, Dunwoody" ResStockArguments site_city=auto -City "GA, East Point" ResStockArguments site_city=auto -City "GA, Hinesville" ResStockArguments site_city=auto -City "GA, Johns Creek" ResStockArguments site_city=auto -City "GA, Mableton" ResStockArguments site_city=auto -City "GA, Macon" ResStockArguments site_city=auto -City "GA, Marietta" ResStockArguments site_city=auto -City "GA, Newnan" ResStockArguments site_city=auto -City "GA, North Atlanta" ResStockArguments site_city=auto -City "GA, Rome" ResStockArguments site_city=auto -City "GA, Roswell" ResStockArguments site_city=auto -City "GA, Sandy Springs" ResStockArguments site_city=auto -City "GA, Savannah" ResStockArguments site_city=auto -City "GA, Smyrna" ResStockArguments site_city=auto -City "GA, Valdosta" ResStockArguments site_city=auto -City "GA, Warner Robins" ResStockArguments site_city=auto -City "HI, East Honolulu" ResStockArguments site_city=auto -City "HI, Hilo" ResStockArguments site_city=auto -City "HI, Kailua" ResStockArguments site_city=auto -City "HI, Urban Honolulu" ResStockArguments site_city=auto -City "IA, Ames" ResStockArguments site_city=auto -City "IA, Ankeny" ResStockArguments site_city=auto -City "IA, Cedar Falls" ResStockArguments site_city=auto -City "IA, Cedar Rapids" ResStockArguments site_city=auto -City "IA, Council Bluffs" ResStockArguments site_city=auto -City "IA, Davenport" ResStockArguments site_city=auto -City "IA, Des Moines" ResStockArguments site_city=auto -City "IA, Dubuque" ResStockArguments site_city=auto -City "IA, Iowa City" ResStockArguments site_city=auto -City "IA, Marion" ResStockArguments site_city=auto -City "IA, Sioux City" ResStockArguments site_city=auto -City "IA, Urbandale" ResStockArguments site_city=auto -City "IA, Waterloo" ResStockArguments site_city=auto -City "IA, West Des Moines" ResStockArguments site_city=auto -City "ID, Boise City" ResStockArguments site_city=auto -City "ID, Caldwell" ResStockArguments site_city=auto -City "ID, Coeur Dalene" ResStockArguments site_city=auto -City "ID, Idaho Falls" ResStockArguments site_city=auto -City "ID, Meridian" ResStockArguments site_city=auto -City "ID, Nampa" ResStockArguments site_city=auto -City "ID, Pocatello" ResStockArguments site_city=auto -City "ID, Twin Falls" ResStockArguments site_city=auto -City "IL, Arlington Heights" ResStockArguments site_city=auto -City "IL, Aurora" ResStockArguments site_city=auto -City "IL, Belleville" ResStockArguments site_city=auto -City "IL, Berwyn" ResStockArguments site_city=auto -City "IL, Bloomington" ResStockArguments site_city=auto -City "IL, Bolingbrook" ResStockArguments site_city=auto -City "IL, Buffalo Grove" ResStockArguments site_city=auto -City "IL, Calumet City" ResStockArguments site_city=auto -City "IL, Carol Stream" ResStockArguments site_city=auto -City "IL, Champaign" ResStockArguments site_city=auto -City "IL, Chicago" ResStockArguments site_city=auto -City "IL, Cicero" ResStockArguments site_city=auto -City "IL, Crystal Lake" ResStockArguments site_city=auto -City "IL, Decatur" ResStockArguments site_city=auto -City "IL, Dekalb" ResStockArguments site_city=auto -City "IL, Des Plaines" ResStockArguments site_city=auto -City "IL, Downers Grove" ResStockArguments site_city=auto -City "IL, Elgin" ResStockArguments site_city=auto -City "IL, Elmhurst" ResStockArguments site_city=auto -City "IL, Evanston" ResStockArguments site_city=auto -City "IL, Glenview" ResStockArguments site_city=auto -City "IL, Hoffman Estates" ResStockArguments site_city=auto -City "IL, Joliet" ResStockArguments site_city=auto -City "IL, Lombard" ResStockArguments site_city=auto -City "IL, Moline" ResStockArguments site_city=auto -City "IL, Mount Prospect" ResStockArguments site_city=auto -City "IL, Naperville" ResStockArguments site_city=auto -City "IL, Normal" ResStockArguments site_city=auto -City "IL, Oak Lawn" ResStockArguments site_city=auto -City "IL, Oak Park" ResStockArguments site_city=auto -City "IL, Orland Park" ResStockArguments site_city=auto -City "IL, Palatine" ResStockArguments site_city=auto -City "IL, Peoria" ResStockArguments site_city=auto -City "IL, Quincy" ResStockArguments site_city=auto -City "IL, Rock Island" ResStockArguments site_city=auto -City "IL, Rockford" ResStockArguments site_city=auto -City "IL, Schaumburg" ResStockArguments site_city=auto -City "IL, Skokie" ResStockArguments site_city=auto -City "IL, Springfield" ResStockArguments site_city=auto -City "IL, Tinley Park" ResStockArguments site_city=auto -City "IL, Urbana" ResStockArguments site_city=auto -City "IL, Waukegan" ResStockArguments site_city=auto -City "IL, Wheaton" ResStockArguments site_city=auto -City "IL, Wheeling" ResStockArguments site_city=auto -City "IN, Anderson" ResStockArguments site_city=auto -City "IN, Bloomington" ResStockArguments site_city=auto -City "IN, Carmel" ResStockArguments site_city=auto -City "IN, Columbus" ResStockArguments site_city=auto -City "IN, Elkhart" ResStockArguments site_city=auto -City "IN, Evansville" ResStockArguments site_city=auto -City "IN, Fishers" ResStockArguments site_city=auto -City "IN, Fort Wayne" ResStockArguments site_city=auto -City "IN, Gary" ResStockArguments site_city=auto -City "IN, Greenwood" ResStockArguments site_city=auto -City "IN, Hammond" ResStockArguments site_city=auto -City "IN, Indianapolis City Balance" ResStockArguments site_city=auto -City "IN, Jeffersonville" ResStockArguments site_city=auto -City "IN, Kokomo" ResStockArguments site_city=auto -City "IN, Lafayette" ResStockArguments site_city=auto -City "IN, Lawrence" ResStockArguments site_city=auto -City "IN, Mishawaka" ResStockArguments site_city=auto -City "IN, Muncie" ResStockArguments site_city=auto -City "IN, New Albany" ResStockArguments site_city=auto -City "IN, Noblesville" ResStockArguments site_city=auto -City "IN, Portage" ResStockArguments site_city=auto -City "IN, Richmond" ResStockArguments site_city=auto -City "IN, South Bend" ResStockArguments site_city=auto -City "IN, Terre Haute" ResStockArguments site_city=auto -City "KS, Hutchinson" ResStockArguments site_city=auto -City "KS, Kansas City" ResStockArguments site_city=auto -City "KS, Lawrence" ResStockArguments site_city=auto -City "KS, Lenexa" ResStockArguments site_city=auto -City "KS, Manhattan" ResStockArguments site_city=auto -City "KS, Olathe" ResStockArguments site_city=auto -City "KS, Overland Park" ResStockArguments site_city=auto -City "KS, Salina" ResStockArguments site_city=auto -City "KS, Shawnee" ResStockArguments site_city=auto -City "KS, Topeka" ResStockArguments site_city=auto -City "KS, Wichita" ResStockArguments site_city=auto -City "KY, Bowling Green" ResStockArguments site_city=auto -City "KY, Covington" ResStockArguments site_city=auto -City "KY, Lexington-Fayette" ResStockArguments site_city=auto -City "KY, Louisville Jefferson County Metro Government Balance" ResStockArguments site_city=auto -City "KY, Owensboro" ResStockArguments site_city=auto -City "LA, Alexandria" ResStockArguments site_city=auto -City "LA, Baton Rouge" ResStockArguments site_city=auto -City "LA, Bossier City" ResStockArguments site_city=auto -City "LA, Kenner" ResStockArguments site_city=auto -City "LA, Lafayette" ResStockArguments site_city=auto -City "LA, Lake Charles" ResStockArguments site_city=auto -City "LA, Metairie" ResStockArguments site_city=auto -City "LA, Monroe" ResStockArguments site_city=auto -City "LA, New Orleans" ResStockArguments site_city=auto -City "LA, Shreveport" ResStockArguments site_city=auto -City "MA, Arlington" ResStockArguments site_city=auto -City "MA, Attleboro" ResStockArguments site_city=auto -City "MA, Barnstable Town" ResStockArguments site_city=auto -City "MA, Beverly" ResStockArguments site_city=auto -City "MA, Boston" ResStockArguments site_city=auto -City "MA, Brockton" ResStockArguments site_city=auto -City "MA, Brookline" ResStockArguments site_city=auto -City "MA, Cambridge" ResStockArguments site_city=auto -City "MA, Chicopee" ResStockArguments site_city=auto -City "MA, Everett" ResStockArguments site_city=auto -City "MA, Fall River" ResStockArguments site_city=auto -City "MA, Fitchburg" ResStockArguments site_city=auto -City "MA, Framingham" ResStockArguments site_city=auto -City "MA, Haverhill" ResStockArguments site_city=auto -City "MA, Holyoke" ResStockArguments site_city=auto -City "MA, Lawrence" ResStockArguments site_city=auto -City "MA, Leominster" ResStockArguments site_city=auto -City "MA, Lowell" ResStockArguments site_city=auto -City "MA, Lynn" ResStockArguments site_city=auto -City "MA, Malden" ResStockArguments site_city=auto -City "MA, Marlborough" ResStockArguments site_city=auto -City "MA, Medford" ResStockArguments site_city=auto -City "MA, Methuen Town" ResStockArguments site_city=auto -City "MA, New Bedford" ResStockArguments site_city=auto -City "MA, Newton" ResStockArguments site_city=auto -City "MA, Peabody" ResStockArguments site_city=auto -City "MA, Pittsfield" ResStockArguments site_city=auto -City "MA, Quincy" ResStockArguments site_city=auto -City "MA, Revere" ResStockArguments site_city=auto -City "MA, Salem" ResStockArguments site_city=auto -City "MA, Somerville" ResStockArguments site_city=auto -City "MA, Springfield" ResStockArguments site_city=auto -City "MA, Taunton" ResStockArguments site_city=auto -City "MA, Waltham" ResStockArguments site_city=auto -City "MA, Watertown Town" ResStockArguments site_city=auto -City "MA, Westfield" ResStockArguments site_city=auto -City "MA, Weymouth Town" ResStockArguments site_city=auto -City "MA, Woburn" ResStockArguments site_city=auto -City "MA, Worcester" ResStockArguments site_city=auto -City "MD, Annapolis" ResStockArguments site_city=auto -City "MD, Aspen Hill" ResStockArguments site_city=auto -City "MD, Baltimore" ResStockArguments site_city=auto -City "MD, Bel Air South" ResStockArguments site_city=auto -City "MD, Bethesda" ResStockArguments site_city=auto -City "MD, Bowie" ResStockArguments site_city=auto -City "MD, Catonsville" ResStockArguments site_city=auto -City "MD, Columbia" ResStockArguments site_city=auto -City "MD, Dundalk" ResStockArguments site_city=auto -City "MD, Ellicott City" ResStockArguments site_city=auto -City "MD, Essex" ResStockArguments site_city=auto -City "MD, Frederick" ResStockArguments site_city=auto -City "MD, Gaithersburg" ResStockArguments site_city=auto -City "MD, Germantown" ResStockArguments site_city=auto -City "MD, Glen Burnie" ResStockArguments site_city=auto -City "MD, Hagerstown" ResStockArguments site_city=auto -City "MD, North Bethesda" ResStockArguments site_city=auto -City "MD, Ocean City" ResStockArguments site_city=auto -City "MD, Odenton" ResStockArguments site_city=auto -City "MD, Potomac" ResStockArguments site_city=auto -City "MD, Rockville" ResStockArguments site_city=auto -City "MD, Severn" ResStockArguments site_city=auto -City "MD, Silver Spring" ResStockArguments site_city=auto -City "MD, Towson" ResStockArguments site_city=auto -City "MD, Waldorf" ResStockArguments site_city=auto -City "MD, Wheaton" ResStockArguments site_city=auto -City "MD, Woodlawn" ResStockArguments site_city=auto -City "ME, Bangor" ResStockArguments site_city=auto -City "ME, Lewiston" ResStockArguments site_city=auto -City "ME, Portland" ResStockArguments site_city=auto -City "MI, Ann Arbor" ResStockArguments site_city=auto -City "MI, Battle Creek" ResStockArguments site_city=auto -City "MI, Bay City" ResStockArguments site_city=auto -City "MI, Dearborn Heights" ResStockArguments site_city=auto -City "MI, Dearborn" ResStockArguments site_city=auto -City "MI, Detroit" ResStockArguments site_city=auto -City "MI, Farmington Hills" ResStockArguments site_city=auto -City "MI, Flint" ResStockArguments site_city=auto -City "MI, Grand Rapids" ResStockArguments site_city=auto -City "MI, Jackson" ResStockArguments site_city=auto -City "MI, Kalamazoo" ResStockArguments site_city=auto -City "MI, Kentwood" ResStockArguments site_city=auto -City "MI, Lansing" ResStockArguments site_city=auto -City "MI, Lincoln Park" ResStockArguments site_city=auto -City "MI, Livonia" ResStockArguments site_city=auto -City "MI, Midland" ResStockArguments site_city=auto -City "MI, Muskegon" ResStockArguments site_city=auto -City "MI, Novi" ResStockArguments site_city=auto -City "MI, Pontiac" ResStockArguments site_city=auto -City "MI, Portage" ResStockArguments site_city=auto -City "MI, Rochester Hills" ResStockArguments site_city=auto -City "MI, Roseville" ResStockArguments site_city=auto -City "MI, Royal Oak" ResStockArguments site_city=auto -City "MI, Saginaw" ResStockArguments site_city=auto -City "MI, Southfield" ResStockArguments site_city=auto -City "MI, St Clair Shores" ResStockArguments site_city=auto -City "MI, Sterling Heights" ResStockArguments site_city=auto -City "MI, Taylor" ResStockArguments site_city=auto -City "MI, Troy" ResStockArguments site_city=auto -City "MI, Warren" ResStockArguments site_city=auto -City "MI, Westland" ResStockArguments site_city=auto -City "MI, Wyoming" ResStockArguments site_city=auto -City "MN, Apple Valley" ResStockArguments site_city=auto -City "MN, Blaine" ResStockArguments site_city=auto -City "MN, Bloomington" ResStockArguments site_city=auto -City "MN, Brooklyn Park" ResStockArguments site_city=auto -City "MN, Burnsville" ResStockArguments site_city=auto -City "MN, Coon Rapids" ResStockArguments site_city=auto -City "MN, Duluth" ResStockArguments site_city=auto -City "MN, Eagan" ResStockArguments site_city=auto -City "MN, Eden Prairie" ResStockArguments site_city=auto -City "MN, Edina" ResStockArguments site_city=auto -City "MN, Lakeville" ResStockArguments site_city=auto -City "MN, Mankato" ResStockArguments site_city=auto -City "MN, Maple Grove" ResStockArguments site_city=auto -City "MN, Maplewood" ResStockArguments site_city=auto -City "MN, Minneapolis" ResStockArguments site_city=auto -City "MN, Minnetonka" ResStockArguments site_city=auto -City "MN, Moorhead" ResStockArguments site_city=auto -City "MN, Plymouth" ResStockArguments site_city=auto -City "MN, Richfield" ResStockArguments site_city=auto -City "MN, Rochester" ResStockArguments site_city=auto -City "MN, Roseville" ResStockArguments site_city=auto -City "MN, St Cloud" ResStockArguments site_city=auto -City "MN, St Louis Park" ResStockArguments site_city=auto -City "MN, St Paul" ResStockArguments site_city=auto -City "MN, Woodbury" ResStockArguments site_city=auto -City "MO, Blue Springs" ResStockArguments site_city=auto -City "MO, Cape Girardeau" ResStockArguments site_city=auto -City "MO, Chesterfield" ResStockArguments site_city=auto -City "MO, Columbia" ResStockArguments site_city=auto -City "MO, Florissant" ResStockArguments site_city=auto -City "MO, Independence" ResStockArguments site_city=auto -City "MO, Jefferson City" ResStockArguments site_city=auto -City "MO, Joplin" ResStockArguments site_city=auto -City "MO, Kansas City" ResStockArguments site_city=auto -City "MO, Lees Summit" ResStockArguments site_city=auto -City "MO, Ofallon" ResStockArguments site_city=auto -City "MO, Springfield" ResStockArguments site_city=auto -City "MO, St Charles" ResStockArguments site_city=auto -City "MO, St Joseph" ResStockArguments site_city=auto -City "MO, St Louis" ResStockArguments site_city=auto -City "MO, St Peters" ResStockArguments site_city=auto -City "MO, University City" ResStockArguments site_city=auto -City "MS, Biloxi" ResStockArguments site_city=auto -City "MS, Gulfport" ResStockArguments site_city=auto -City "MS, Hattiesburg" ResStockArguments site_city=auto -City "MS, Jackson" ResStockArguments site_city=auto -City "MS, Meridian" ResStockArguments site_city=auto -City "MS, Southaven" ResStockArguments site_city=auto -City "MS, Tupelo" ResStockArguments site_city=auto -City "MT, Billings" ResStockArguments site_city=auto -City "MT, Bozeman" ResStockArguments site_city=auto -City "MT, Butte-Silver Bow Balance" ResStockArguments site_city=auto -City "MT, Great Falls" ResStockArguments site_city=auto -City "MT, Missoula" ResStockArguments site_city=auto -City "NC, Asheville" ResStockArguments site_city=auto -City "NC, Burlington" ResStockArguments site_city=auto -City "NC, Cary" ResStockArguments site_city=auto -City "NC, Chapel Hill" ResStockArguments site_city=auto -City "NC, Charlotte" ResStockArguments site_city=auto -City "NC, Concord" ResStockArguments site_city=auto -City "NC, Durham" ResStockArguments site_city=auto -City "NC, Fayetteville" ResStockArguments site_city=auto -City "NC, Gastonia" ResStockArguments site_city=auto -City "NC, Goldsboro" ResStockArguments site_city=auto -City "NC, Greensboro" ResStockArguments site_city=auto -City "NC, Greenville" ResStockArguments site_city=auto -City "NC, Hickory" ResStockArguments site_city=auto -City "NC, High Point" ResStockArguments site_city=auto -City "NC, Huntersville" ResStockArguments site_city=auto -City "NC, Jacksonville" ResStockArguments site_city=auto -City "NC, Kannapolis" ResStockArguments site_city=auto -City "NC, Raleigh" ResStockArguments site_city=auto -City "NC, Rocky Mount" ResStockArguments site_city=auto -City "NC, Wilmington" ResStockArguments site_city=auto -City "NC, Wilson" ResStockArguments site_city=auto -City "NC, Winston-Salem" ResStockArguments site_city=auto -City "ND, Bismarck" ResStockArguments site_city=auto -City "ND, Fargo" ResStockArguments site_city=auto -City "ND, Grand Forks" ResStockArguments site_city=auto -City "ND, Minot" ResStockArguments site_city=auto -City "NE, Bellevue" ResStockArguments site_city=auto -City "NE, Grand Island" ResStockArguments site_city=auto -City "NE, Lincoln" ResStockArguments site_city=auto -City "NE, Omaha" ResStockArguments site_city=auto -City "NH, Concord" ResStockArguments site_city=auto -City "NH, Manchester" ResStockArguments site_city=auto -City "NH, Nashua" ResStockArguments site_city=auto -City "NJ, Atlantic City" ResStockArguments site_city=auto -City "NJ, Bayonne" ResStockArguments site_city=auto -City "NJ, Camden" ResStockArguments site_city=auto -City "NJ, Clifton" ResStockArguments site_city=auto -City "NJ, East Orange" ResStockArguments site_city=auto -City "NJ, Elizabeth" ResStockArguments site_city=auto -City "NJ, Fort Lee" ResStockArguments site_city=auto -City "NJ, Hackensack" ResStockArguments site_city=auto -City "NJ, Hoboken" ResStockArguments site_city=auto -City "NJ, Jersey City" ResStockArguments site_city=auto -City "NJ, Linden" ResStockArguments site_city=auto -City "NJ, New Brunswick" ResStockArguments site_city=auto -City "NJ, Newark" ResStockArguments site_city=auto -City "NJ, Ocean City" ResStockArguments site_city=auto -City "NJ, Passaic" ResStockArguments site_city=auto -City "NJ, Paterson" ResStockArguments site_city=auto -City "NJ, Perth Amboy" ResStockArguments site_city=auto -City "NJ, Plainfield" ResStockArguments site_city=auto -City "NJ, Sayreville" ResStockArguments site_city=auto -City "NJ, Toms River" ResStockArguments site_city=auto -City "NJ, Trenton" ResStockArguments site_city=auto -City "NJ, Union City" ResStockArguments site_city=auto -City "NJ, Vineland" ResStockArguments site_city=auto -City "NJ, West New York" ResStockArguments site_city=auto -City "NM, Albuquerque" ResStockArguments site_city=auto -City "NM, Clovis" ResStockArguments site_city=auto -City "NM, Farmington" ResStockArguments site_city=auto -City "NM, Las Cruces" ResStockArguments site_city=auto -City "NM, Rio Rancho" ResStockArguments site_city=auto -City "NM, Roswell" ResStockArguments site_city=auto -City "NM, Santa Fe" ResStockArguments site_city=auto -City "NM, South Valley" ResStockArguments site_city=auto -City "NV, Carson City" ResStockArguments site_city=auto -City "NV, Enterprise" ResStockArguments site_city=auto -City "NV, Henderson" ResStockArguments site_city=auto -City "NV, Las Vegas" ResStockArguments site_city=auto -City "NV, North Las Vegas" ResStockArguments site_city=auto -City "NV, Pahrump" ResStockArguments site_city=auto -City "NV, Paradise" ResStockArguments site_city=auto -City "NV, Reno" ResStockArguments site_city=auto -City "NV, Sparks" ResStockArguments site_city=auto -City "NV, Spring Valley" ResStockArguments site_city=auto -City "NV, Sunrise Manor" ResStockArguments site_city=auto -City "NV, Whitney" ResStockArguments site_city=auto -City "NY, Albany" ResStockArguments site_city=auto -City "NY, Binghamton" ResStockArguments site_city=auto -City "NY, Brighton" ResStockArguments site_city=auto -City "NY, Buffalo" ResStockArguments site_city=auto -City "NY, Cheektowaga" ResStockArguments site_city=auto -City "NY, Coram" ResStockArguments site_city=auto -City "NY, Hempstead" ResStockArguments site_city=auto -City "NY, Irondequoit" ResStockArguments site_city=auto -City "NY, Levittown" ResStockArguments site_city=auto -City "NY, Long Beach" ResStockArguments site_city=auto -City "NY, Mount Vernon" ResStockArguments site_city=auto -City "NY, New Rochelle" ResStockArguments site_city=auto -City "NY, New York" ResStockArguments site_city=auto -City "NY, Niagara Falls" ResStockArguments site_city=auto -City "NY, Rochester" ResStockArguments site_city=auto -City "NY, Rome" ResStockArguments site_city=auto -City "NY, Schenectady" ResStockArguments site_city=auto -City "NY, Syracuse" ResStockArguments site_city=auto -City "NY, Tonawanda" ResStockArguments site_city=auto -City "NY, Troy" ResStockArguments site_city=auto -City "NY, Utica" ResStockArguments site_city=auto -City "NY, West Seneca" ResStockArguments site_city=auto -City "NY, White Plains" ResStockArguments site_city=auto -City "NY, Yonkers" ResStockArguments site_city=auto -City "OH, Akron" ResStockArguments site_city=auto -City "OH, Beavercreek" ResStockArguments site_city=auto -City "OH, Boardman" ResStockArguments site_city=auto -City "OH, Canton" ResStockArguments site_city=auto -City "OH, Cincinnati" ResStockArguments site_city=auto -City "OH, Cleveland Heights" ResStockArguments site_city=auto -City "OH, Cleveland" ResStockArguments site_city=auto -City "OH, Columbus" ResStockArguments site_city=auto -City "OH, Cuyahoga Falls" ResStockArguments site_city=auto -City "OH, Dayton" ResStockArguments site_city=auto -City "OH, Delaware" ResStockArguments site_city=auto -City "OH, Dublin" ResStockArguments site_city=auto -City "OH, Elyria" ResStockArguments site_city=auto -City "OH, Euclid" ResStockArguments site_city=auto -City "OH, Fairborn" ResStockArguments site_city=auto -City "OH, Fairfield" ResStockArguments site_city=auto -City "OH, Findlay" ResStockArguments site_city=auto -City "OH, Grove City" ResStockArguments site_city=auto -City "OH, Hamilton" ResStockArguments site_city=auto -City "OH, Huber Heights" ResStockArguments site_city=auto -City "OH, Kettering" ResStockArguments site_city=auto -City "OH, Lakewood" ResStockArguments site_city=auto -City "OH, Lancaster" ResStockArguments site_city=auto -City "OH, Lima" ResStockArguments site_city=auto -City "OH, Lorain" ResStockArguments site_city=auto -City "OH, Mansfield" ResStockArguments site_city=auto -City "OH, Marion" ResStockArguments site_city=auto -City "OH, Mentor" ResStockArguments site_city=auto -City "OH, Middletown" ResStockArguments site_city=auto -City "OH, Newark" ResStockArguments site_city=auto -City "OH, Parma" ResStockArguments site_city=auto -City "OH, Springfield" ResStockArguments site_city=auto -City "OH, Stow" ResStockArguments site_city=auto -City "OH, Strongsville" ResStockArguments site_city=auto -City "OH, Toledo" ResStockArguments site_city=auto -City "OH, Warren" ResStockArguments site_city=auto -City "OH, Youngstown" ResStockArguments site_city=auto -City "OK, Bartlesville" ResStockArguments site_city=auto -City "OK, Broken Arrow" ResStockArguments site_city=auto -City "OK, Edmond" ResStockArguments site_city=auto -City "OK, Enid" ResStockArguments site_city=auto -City "OK, Lawton" ResStockArguments site_city=auto -City "OK, Midwest City" ResStockArguments site_city=auto -City "OK, Moore" ResStockArguments site_city=auto -City "OK, Muskogee" ResStockArguments site_city=auto -City "OK, Norman" ResStockArguments site_city=auto -City "OK, Oklahoma City" ResStockArguments site_city=auto -City "OK, Stillwater" ResStockArguments site_city=auto -City "OK, Tulsa" ResStockArguments site_city=auto -City "OR, Albany" ResStockArguments site_city=auto -City "OR, Aloha" ResStockArguments site_city=auto -City "OR, Beaverton" ResStockArguments site_city=auto -City "OR, Bend" ResStockArguments site_city=auto -City "OR, Corvallis" ResStockArguments site_city=auto -City "OR, Eugene" ResStockArguments site_city=auto -City "OR, Grants Pass" ResStockArguments site_city=auto -City "OR, Gresham" ResStockArguments site_city=auto -City "OR, Hillsboro" ResStockArguments site_city=auto -City "OR, Lake Oswego" ResStockArguments site_city=auto -City "OR, Medford" ResStockArguments site_city=auto -City "OR, Portland" ResStockArguments site_city=auto -City "OR, Salem" ResStockArguments site_city=auto -City "OR, Springfield" ResStockArguments site_city=auto -City "OR, Tigard" ResStockArguments site_city=auto -City "PA, Allentown" ResStockArguments site_city=auto -City "PA, Altoona" ResStockArguments site_city=auto -City "PA, Bethlehem" ResStockArguments site_city=auto -City "PA, Erie" ResStockArguments site_city=auto -City "PA, Harrisburg" ResStockArguments site_city=auto -City "PA, Lancaster" ResStockArguments site_city=auto -City "PA, Levittown" ResStockArguments site_city=auto -City "PA, Philadelphia" ResStockArguments site_city=auto -City "PA, Pittsburgh" ResStockArguments site_city=auto -City "PA, Reading" ResStockArguments site_city=auto -City "PA, Scranton" ResStockArguments site_city=auto -City "PA, Wilkes-Barre" ResStockArguments site_city=auto -City "PA, York" ResStockArguments site_city=auto -City "RI, Cranston" ResStockArguments site_city=auto -City "RI, East Providence" ResStockArguments site_city=auto -City "RI, Pawtucket" ResStockArguments site_city=auto -City "RI, Providence" ResStockArguments site_city=auto -City "RI, Warwick" ResStockArguments site_city=auto -City "RI, Woonsocket" ResStockArguments site_city=auto -City "SC, Charleston" ResStockArguments site_city=auto -City "SC, Columbia" ResStockArguments site_city=auto -City "SC, Florence" ResStockArguments site_city=auto -City "SC, Goose Creek" ResStockArguments site_city=auto -City "SC, Greenville" ResStockArguments site_city=auto -City "SC, Hilton Head Island" ResStockArguments site_city=auto -City "SC, Mount Pleasant" ResStockArguments site_city=auto -City "SC, Myrtle Beach" ResStockArguments site_city=auto -City "SC, North Charleston" ResStockArguments site_city=auto -City "SC, North Myrtle Beach" ResStockArguments site_city=auto -City "SC, Rock Hill" ResStockArguments site_city=auto -City "SC, Spartanburg" ResStockArguments site_city=auto -City "SC, Summerville" ResStockArguments site_city=auto -City "SC, Sumter" ResStockArguments site_city=auto -City "SD, Rapid City" ResStockArguments site_city=auto -City "SD, Sioux Falls" ResStockArguments site_city=auto -City "TN, Bartlett" ResStockArguments site_city=auto -City "TN, Chattanooga" ResStockArguments site_city=auto -City "TN, Clarksville" ResStockArguments site_city=auto -City "TN, Cleveland" ResStockArguments site_city=auto -City "TN, Collierville" ResStockArguments site_city=auto -City "TN, Columbia" ResStockArguments site_city=auto -City "TN, Franklin" ResStockArguments site_city=auto -City "TN, Germantown" ResStockArguments site_city=auto -City "TN, Hendersonville" ResStockArguments site_city=auto -City "TN, Jackson" ResStockArguments site_city=auto -City "TN, Johnson City" ResStockArguments site_city=auto -City "TN, Kingsport" ResStockArguments site_city=auto -City "TN, Knoxville" ResStockArguments site_city=auto -City "TN, Memphis" ResStockArguments site_city=auto -City "TN, Murfreesboro" ResStockArguments site_city=auto -City "TN, Nashville-Davidson Metropolitan Government Balance" ResStockArguments site_city=auto -City "TN, Smyrna" ResStockArguments site_city=auto -City "TX, Abilene" ResStockArguments site_city=auto -City "TX, Allen" ResStockArguments site_city=auto -City "TX, Amarillo" ResStockArguments site_city=auto -City "TX, Arlington" ResStockArguments site_city=auto -City "TX, Atascocita" ResStockArguments site_city=auto -City "TX, Austin" ResStockArguments site_city=auto -City "TX, Baytown" ResStockArguments site_city=auto -City "TX, Beaumont" ResStockArguments site_city=auto -City "TX, Bedford" ResStockArguments site_city=auto -City "TX, Brownsville" ResStockArguments site_city=auto -City "TX, Bryan" ResStockArguments site_city=auto -City "TX, Burleson" ResStockArguments site_city=auto -City "TX, Carrollton" ResStockArguments site_city=auto -City "TX, Cedar Hill" ResStockArguments site_city=auto -City "TX, Cedar Park" ResStockArguments site_city=auto -City "TX, College Station" ResStockArguments site_city=auto -City "TX, Conroe" ResStockArguments site_city=auto -City "TX, Coppell" ResStockArguments site_city=auto -City "TX, Corpus Christi" ResStockArguments site_city=auto -City "TX, Dallas" ResStockArguments site_city=auto -City "TX, Denton" ResStockArguments site_city=auto -City "TX, Desoto" ResStockArguments site_city=auto -City "TX, Edinburg" ResStockArguments site_city=auto -City "TX, El Paso" ResStockArguments site_city=auto -City "TX, Euless" ResStockArguments site_city=auto -City "TX, Flower Mound" ResStockArguments site_city=auto -City "TX, Fort Worth" ResStockArguments site_city=auto -City "TX, Frisco" ResStockArguments site_city=auto -City "TX, Galveston" ResStockArguments site_city=auto -City "TX, Garland" ResStockArguments site_city=auto -City "TX, Georgetown" ResStockArguments site_city=auto -City "TX, Grand Prairie" ResStockArguments site_city=auto -City "TX, Grapevine" ResStockArguments site_city=auto -City "TX, Haltom City" ResStockArguments site_city=auto -City "TX, Harlingen" ResStockArguments site_city=auto -City "TX, Houston" ResStockArguments site_city=auto -City "TX, Hurst" ResStockArguments site_city=auto -City "TX, Irving" ResStockArguments site_city=auto -City "TX, Keller" ResStockArguments site_city=auto -City "TX, Killeen" ResStockArguments site_city=auto -City "TX, Laredo" ResStockArguments site_city=auto -City "TX, League City" ResStockArguments site_city=auto -City "TX, Lewisville" ResStockArguments site_city=auto -City "TX, Longview" ResStockArguments site_city=auto -City "TX, Lubbock" ResStockArguments site_city=auto -City "TX, Lufkin" ResStockArguments site_city=auto -City "TX, Mansfield" ResStockArguments site_city=auto -City "TX, Mcallen" ResStockArguments site_city=auto -City "TX, Mckinney" ResStockArguments site_city=auto -City "TX, Mesquite" ResStockArguments site_city=auto -City "TX, Midland" ResStockArguments site_city=auto -City "TX, Mission" ResStockArguments site_city=auto -City "TX, Missouri City" ResStockArguments site_city=auto -City "TX, New Braunfels" ResStockArguments site_city=auto -City "TX, North Richland Hills" ResStockArguments site_city=auto -City "TX, Odessa" ResStockArguments site_city=auto -City "TX, Pasadena" ResStockArguments site_city=auto -City "TX, Pearland" ResStockArguments site_city=auto -City "TX, Pflugerville" ResStockArguments site_city=auto -City "TX, Pharr" ResStockArguments site_city=auto -City "TX, Plano" ResStockArguments site_city=auto -City "TX, Port Arthur" ResStockArguments site_city=auto -City "TX, Richardson" ResStockArguments site_city=auto -City "TX, Round Rock" ResStockArguments site_city=auto -City "TX, Rowlett" ResStockArguments site_city=auto -City "TX, San Angelo" ResStockArguments site_city=auto -City "TX, San Antonio" ResStockArguments site_city=auto -City "TX, San Marcos" ResStockArguments site_city=auto -City "TX, Sherman" ResStockArguments site_city=auto -City "TX, Spring" ResStockArguments site_city=auto -City "TX, Sugar Land" ResStockArguments site_city=auto -City "TX, Temple" ResStockArguments site_city=auto -City "TX, Texarkana" ResStockArguments site_city=auto -City "TX, Texas City" ResStockArguments site_city=auto -City "TX, The Colony" ResStockArguments site_city=auto -City "TX, The Woodlands" ResStockArguments site_city=auto -City "TX, Tyler" ResStockArguments site_city=auto -City "TX, Victoria" ResStockArguments site_city=auto -City "TX, Waco" ResStockArguments site_city=auto -City "TX, Wichita Falls" ResStockArguments site_city=auto -City "TX, Wylie" ResStockArguments site_city=auto -City "UT, Layton" ResStockArguments site_city=auto -City "UT, Lehi" ResStockArguments site_city=auto -City "UT, Logan" ResStockArguments site_city=auto -City "UT, Millcreek" ResStockArguments site_city=auto -City "UT, Murray" ResStockArguments site_city=auto -City "UT, Ogden" ResStockArguments site_city=auto -City "UT, Orem" ResStockArguments site_city=auto -City "UT, Provo" ResStockArguments site_city=auto -City "UT, Salt Lake City" ResStockArguments site_city=auto -City "UT, Sandy" ResStockArguments site_city=auto -City "UT, South Jordan" ResStockArguments site_city=auto -City "UT, St George" ResStockArguments site_city=auto -City "UT, Taylorsville" ResStockArguments site_city=auto -City "UT, West Jordan" ResStockArguments site_city=auto -City "UT, West Valley City" ResStockArguments site_city=auto -City "VA, Alexandria" ResStockArguments site_city=auto -City "VA, Arlington" ResStockArguments site_city=auto -City "VA, Ashburn" ResStockArguments site_city=auto -City "VA, Blacksburg" ResStockArguments site_city=auto -City "VA, Centreville" ResStockArguments site_city=auto -City "VA, Charlottesville" ResStockArguments site_city=auto -City "VA, Chesapeake" ResStockArguments site_city=auto -City "VA, Dale City" ResStockArguments site_city=auto -City "VA, Danville" ResStockArguments site_city=auto -City "VA, Hampton" ResStockArguments site_city=auto -City "VA, Harrisonburg" ResStockArguments site_city=auto -City "VA, Lake Ridge" ResStockArguments site_city=auto -City "VA, Leesburg" ResStockArguments site_city=auto -City "VA, Lynchburg" ResStockArguments site_city=auto -City "VA, Mclean" ResStockArguments site_city=auto -City "VA, Mechanicsville" ResStockArguments site_city=auto -City "VA, Newport News" ResStockArguments site_city=auto -City "VA, Norfolk" ResStockArguments site_city=auto -City "VA, Petersburg" ResStockArguments site_city=auto -City "VA, Portsmouth" ResStockArguments site_city=auto -City "VA, Reston" ResStockArguments site_city=auto -City "VA, Richmond" ResStockArguments site_city=auto -City "VA, Roanoke" ResStockArguments site_city=auto -City "VA, Suffolk" ResStockArguments site_city=auto -City "VA, Tuckahoe" ResStockArguments site_city=auto -City "VA, Virginia Beach" ResStockArguments site_city=auto -City "VT, Burlington" ResStockArguments site_city=auto -City "WA, Auburn" ResStockArguments site_city=auto -City "WA, Bellevue" ResStockArguments site_city=auto -City "WA, Bellingham" ResStockArguments site_city=auto -City "WA, Bremerton" ResStockArguments site_city=auto -City "WA, Edmonds" ResStockArguments site_city=auto -City "WA, Everett" ResStockArguments site_city=auto -City "WA, Federal Way" ResStockArguments site_city=auto -City "WA, Kennewick" ResStockArguments site_city=auto -City "WA, Kent" ResStockArguments site_city=auto -City "WA, Kirkland" ResStockArguments site_city=auto -City "WA, Lacey" ResStockArguments site_city=auto -City "WA, Lakewood" ResStockArguments site_city=auto -City "WA, Longview" ResStockArguments site_city=auto -City "WA, Marysville" ResStockArguments site_city=auto -City "WA, Olympia" ResStockArguments site_city=auto -City "WA, Pasco" ResStockArguments site_city=auto -City "WA, Puyallup" ResStockArguments site_city=auto -City "WA, Redmond" ResStockArguments site_city=auto -City "WA, Renton" ResStockArguments site_city=auto -City "WA, Richland" ResStockArguments site_city=auto -City "WA, Sammamish" ResStockArguments site_city=auto -City "WA, Seattle" ResStockArguments site_city=auto -City "WA, Shoreline" ResStockArguments site_city=auto -City "WA, South Hill" ResStockArguments site_city=auto -City "WA, Spokane Valley" ResStockArguments site_city=auto -City "WA, Spokane" ResStockArguments site_city=auto -City "WA, Tacoma" ResStockArguments site_city=auto -City "WA, Vancouver" ResStockArguments site_city=auto -City "WA, Yakima" ResStockArguments site_city=auto -City "WI, Appleton" ResStockArguments site_city=auto -City "WI, Beloit" ResStockArguments site_city=auto -City "WI, Eau Claire" ResStockArguments site_city=auto -City "WI, Fond Du Lac" ResStockArguments site_city=auto -City "WI, Green Bay" ResStockArguments site_city=auto -City "WI, Greenfield" ResStockArguments site_city=auto -City "WI, Janesville" ResStockArguments site_city=auto -City "WI, Kenosha" ResStockArguments site_city=auto -City "WI, La Crosse" ResStockArguments site_city=auto -City "WI, Madison" ResStockArguments site_city=auto -City "WI, Manitowoc" ResStockArguments site_city=auto -City "WI, Menomonee Falls" ResStockArguments site_city=auto -City "WI, Milwaukee" ResStockArguments site_city=auto -City "WI, New Berlin" ResStockArguments site_city=auto -City "WI, Oshkosh" ResStockArguments site_city=auto -City "WI, Racine" ResStockArguments site_city=auto -City "WI, Sheboygan" ResStockArguments site_city=auto -City "WI, Waukesha" ResStockArguments site_city=auto -City "WI, Wausau" ResStockArguments site_city=auto -City "WI, Wauwatosa" ResStockArguments site_city=auto -City "WI, West Allis" ResStockArguments site_city=auto -City "WV, Charleston" ResStockArguments site_city=auto -City "WV, Huntington" ResStockArguments site_city=auto -City "WV, Parkersburg" ResStockArguments site_city=auto -City "WY, Casper" ResStockArguments site_city=auto -City "WY, Cheyenne" ResStockArguments site_city=auto -City In another census Place ResStockArguments site_city=auto -City Not in a census Place ResStockArguments site_city=auto -Clothes Dryer "Electric, Heat Pump, Ventless" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=4.5 clothes_dryer_vented_flow_rate=0 -Clothes Dryer "Electric, Premium" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.42 clothes_dryer_vented_flow_rate=auto -Clothes Dryer "Electric, Premium, EnergyStar" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.93 clothes_dryer_vented_flow_rate=auto -Clothes Dryer "Electric, Premium, Heat Pump, Ventless" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=5.2 clothes_dryer_vented_flow_rate=0 -Clothes Dryer "Gas, Premium" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.03 clothes_dryer_vented_flow_rate=auto -Clothes Dryer Electric ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.70 clothes_dryer_vented_flow_rate=auto -Clothes Dryer Gas ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.39 clothes_dryer_vented_flow_rate=auto -Clothes Dryer None ResStockArguments clothes_dryer_present=false clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.70 clothes_dryer_vented_flow_rate=auto -Clothes Dryer Propane ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=propane clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.39 clothes_dryer_vented_flow_rate=auto -Clothes Dryer Void -Clothes Dryer Usage Level 100% Usage ResStockArguments clothes_dryer_usage_multiplier=1.0 -Clothes Dryer Usage Level 120% Usage ResStockArguments clothes_dryer_usage_multiplier=1.2 -Clothes Dryer Usage Level 80% Usage ResStockArguments clothes_dryer_usage_multiplier=0.8 -Clothes Washer "EnergyStar, Cold Only" ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.07 clothes_washer_rated_annual_kwh=123 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=9 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.68 -Clothes Washer CEE Advanced Tier ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=3.1 clothes_washer_rated_annual_kwh=120 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=14 clothes_washer_label_usage=7.538462 clothes_washer_capacity=5.8 -Clothes Washer EnergyStar ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.07 clothes_washer_rated_annual_kwh=123 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=9 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.68 -Clothes Washer EnergyStar More Efficient ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.83 clothes_washer_rated_annual_kwh=90 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=8 clothes_washer_label_usage=7.538462 clothes_washer_capacity=4.5 -Clothes Washer EnergyStar Most Efficient ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.92 clothes_washer_rated_annual_kwh=75 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=7 clothes_washer_label_usage=7.538462 clothes_washer_capacity=4.5 -Clothes Washer None ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=0 clothes_washer_rated_annual_kwh=0 clothes_washer_label_electric_rate=0 clothes_washer_label_gas_rate=0 clothes_washer_label_annual_gas_cost=0 clothes_washer_label_usage=0 clothes_washer_capacity=0 -Clothes Washer Standard ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=0.95 clothes_washer_rated_annual_kwh=387 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=24 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.5 -Clothes Washer Void -Clothes Washer Presence None ResStockArguments clothes_washer_present=false -Clothes Washer Presence Void -Clothes Washer Presence Yes ResStockArguments clothes_washer_present=true -Clothes Washer Usage Level 100% Usage ResStockArguments clothes_washer_usage_multiplier=1.0 -Clothes Washer Usage Level 120% Usage ResStockArguments clothes_washer_usage_multiplier=1.2 -Clothes Washer Usage Level 80% Usage ResStockArguments clothes_washer_usage_multiplier=0.8 -Cooking Range Electric Induction ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=electricity cooking_range_oven_is_induction=true cooking_range_oven_is_convection=auto -Cooking Range Electric Resistance ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=electricity cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto -Cooking Range Gas ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=natural gas cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto -Cooking Range None ResStockArguments cooking_range_oven_present=false cooking_range_oven_location=auto cooking_range_oven_fuel_type=natural gas cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto -Cooking Range Propane ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=propane cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto -Cooking Range Void -Cooking Range Usage Level 100% Usage ResStockArguments cooking_range_oven_usage_multiplier=1.0 -Cooking Range Usage Level 120% Usage ResStockArguments cooking_range_oven_usage_multiplier=1.2 -Cooking Range Usage Level 80% Usage ResStockArguments cooking_range_oven_usage_multiplier=0.8 -Cooling Setpoint 60F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=60 hvac_control_cooling_weekend_setpoint_temp=60 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 62F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=62 hvac_control_cooling_weekend_setpoint_temp=62 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 64F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=64 hvac_control_cooling_weekend_setpoint_temp=64 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 65F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=65 hvac_control_cooling_weekend_setpoint_temp=65 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 66F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=66 hvac_control_cooling_weekend_setpoint_temp=66 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 67F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=67 hvac_control_cooling_weekend_setpoint_temp=67 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 68F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=68 hvac_control_cooling_weekend_setpoint_temp=68 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 69F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=69 hvac_control_cooling_weekend_setpoint_temp=69 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 70F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=70 hvac_control_cooling_weekend_setpoint_temp=70 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 72F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=72 hvac_control_cooling_weekend_setpoint_temp=72 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 73F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=73 hvac_control_cooling_weekend_setpoint_temp=73 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 74F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=74 hvac_control_cooling_weekend_setpoint_temp=74 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 75F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=75 hvac_control_cooling_weekend_setpoint_temp=75 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 76F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=76 hvac_control_cooling_weekend_setpoint_temp=76 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 76F w/ Building America season ResStockArguments hvac_control_cooling_weekday_setpoint_temp=76 hvac_control_cooling_weekend_setpoint_temp=76 use_auto_cooling_season=true hvac_control_cooling_season_period=auto -Cooling Setpoint 77F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=77 hvac_control_cooling_weekend_setpoint_temp=77 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 78F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=78 hvac_control_cooling_weekend_setpoint_temp=78 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 80F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=80 hvac_control_cooling_weekend_setpoint_temp=80 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint Void -Cooling Setpoint Has Offset No -Cooling Setpoint Has Offset Yes -Cooling Setpoint Offset Magnitude 0F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=0 hvac_control_cooling_weekend_setpoint_offset_magnitude=0 -Cooling Setpoint Offset Magnitude 2F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=2 hvac_control_cooling_weekend_setpoint_offset_magnitude=2 -Cooling Setpoint Offset Magnitude 5F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=5 hvac_control_cooling_weekend_setpoint_offset_magnitude=5 -Cooling Setpoint Offset Magnitude 9F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=9 hvac_control_cooling_weekend_setpoint_offset_magnitude=9 -Cooling Setpoint Offset Period Day Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup and Night Setback ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day Setup and Night Setback +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day Setup and Night Setback +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day Setup and Night Setback +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day Setup and Night Setback -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" -Cooling Setpoint Offset Period Day and Night Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1" -Cooling Setpoint Offset Period Day and Night Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1" -Cooling Setpoint Offset Period Day and Night Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day and Night Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day and Night Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day and Night Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day and Night Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1" -Cooling Setpoint Offset Period Day and Night Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1" -Cooling Setpoint Offset Period Day and Night Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1" -Cooling Setpoint Offset Period Day and Night Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1" -Cooling Setpoint Offset Period Day and Night Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1" -Cooling Setpoint Offset Period Night Setback ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" -Cooling Setpoint Offset Period Night Setback +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" -Cooling Setpoint Offset Period Night Setback +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setback +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setback +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setback +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setback -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" -Cooling Setpoint Offset Period Night Setback -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" -Cooling Setpoint Offset Period Night Setback -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" -Cooling Setpoint Offset Period Night Setback -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" -Cooling Setpoint Offset Period Night Setback -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" -Cooling Setpoint Offset Period Night Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1" -Cooling Setpoint Offset Period Night Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1" -Cooling Setpoint Offset Period Night Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1" -Cooling Setpoint Offset Period Night Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1" -Cooling Setpoint Offset Period Night Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1" -Cooling Setpoint Offset Period Night Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1" -Cooling Setpoint Offset Period Night Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1" -Cooling Setpoint Offset Period None ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Corridor Double Exterior ResStockArguments geometry_corridor_position=Double Exterior geometry_corridor_width=10 -Corridor Double-Loaded Interior ResStockArguments geometry_corridor_position=Double-Loaded Interior geometry_corridor_width=10 -Corridor None ResStockArguments geometry_corridor_position=None geometry_corridor_width=0 -Corridor Not Applicable ResStockArguments geometry_corridor_position=None geometry_corridor_width=0 -Corridor Single Exterior Front ResStockArguments geometry_corridor_position=Single Exterior (Front) geometry_corridor_width=10 -County "AK, Aleutians East Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200130.epw site_zip_code=99661 site_time_zone_utc_offset=-9 -County "AK, Aleutians West Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200160.epw site_zip_code=99685 site_time_zone_utc_offset=-9 -County "AK, Anchorage Municipality" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200200.epw site_zip_code=99501 site_time_zone_utc_offset=-9 -County "AK, Bethel Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200500.epw site_zip_code=99545 site_time_zone_utc_offset=-9 -County "AK, Bristol Bay Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200600.epw site_zip_code=99633 site_time_zone_utc_offset=-9 -County "AK, Denali Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200680.epw site_zip_code=99743 site_time_zone_utc_offset=-9 -County "AK, Dillingham Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200700.epw site_zip_code=99576 site_time_zone_utc_offset=-9 -County "AK, Fairbanks North Star Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200900.epw site_zip_code=99709 site_time_zone_utc_offset=-9 -County "AK, Haines Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201000.epw site_zip_code=99827 site_time_zone_utc_offset=-9 -County "AK, Hoonah-Angoon Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201050.epw site_zip_code=99829 site_time_zone_utc_offset=-9 -County "AK, Juneau City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201100.epw site_zip_code=99802 site_time_zone_utc_offset=-9 -County "AK, Kenai Peninsula Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201220.epw site_zip_code=99611 site_time_zone_utc_offset=-9 -County "AK, Ketchikan Gateway Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201300.epw site_zip_code=99901 site_time_zone_utc_offset=-9 -County "AK, Kodiak Island Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201500.epw site_zip_code=99615 site_time_zone_utc_offset=-9 -County "AK, Kusilvak Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202700.epw site_zip_code=99604 site_time_zone_utc_offset=-9 -County "AK, Lake and Peninsula Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201640.epw site_zip_code=99653 site_time_zone_utc_offset=-9 -County "AK, Matanuska-Susitna Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201700.epw site_zip_code=99645 site_time_zone_utc_offset=-9 -County "AK, Nome Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201800.epw site_zip_code=99762 site_time_zone_utc_offset=-9 -County "AK, North Slope Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201850.epw site_zip_code=99723 site_time_zone_utc_offset=-9 -County "AK, Northwest Arctic Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201880.epw site_zip_code=99752 site_time_zone_utc_offset=-9 -County "AK, Petersburg Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201950.epw site_zip_code=99833 site_time_zone_utc_offset=-9 -County "AK, Prince of Wales-Hyder Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201980.epw site_zip_code=99926 site_time_zone_utc_offset=-9 -County "AK, Sitka City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202200.epw site_zip_code=99835 site_time_zone_utc_offset=-9 -County "AK, Skagway Municipality" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202300.epw site_zip_code=99840 site_time_zone_utc_offset=-9 -County "AK, Southeast Fairbanks Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202400.epw site_zip_code=99731 site_time_zone_utc_offset=-9 -County "AK, Valdez-Cordova Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202610.epw site_zip_code=99686 site_time_zone_utc_offset=-9 -County "AK, Wrangell City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202750.epw site_zip_code=99903 site_time_zone_utc_offset=-9 -County "AK, Yakutat City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202820.epw site_zip_code=99689 site_time_zone_utc_offset=-9 -County "AK, Yukon-Koyukuk Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202900.epw site_zip_code=99740 site_time_zone_utc_offset=-9 -County "AL, Autauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100010.epw site_zip_code=36067 site_time_zone_utc_offset=-6 -County "AL, Baldwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100030.epw site_zip_code=36535 site_time_zone_utc_offset=-6 -County "AL, Barbour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100050.epw site_zip_code=36027 site_time_zone_utc_offset=-6 -County "AL, Bibb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100070.epw site_zip_code=35042 site_time_zone_utc_offset=-6 -County "AL, Blount County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100090.epw site_zip_code=35121 site_time_zone_utc_offset=-6 -County "AL, Bullock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100110.epw site_zip_code=36089 site_time_zone_utc_offset=-6 -County "AL, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100130.epw site_zip_code=36037 site_time_zone_utc_offset=-6 -County "AL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100150.epw site_zip_code=36201 site_time_zone_utc_offset=-6 -County "AL, Chambers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100170.epw site_zip_code=36863 site_time_zone_utc_offset=-6 -County "AL, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100190.epw site_zip_code=35960 site_time_zone_utc_offset=-6 -County "AL, Chilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100210.epw site_zip_code=35045 site_time_zone_utc_offset=-6 -County "AL, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100230.epw site_zip_code=36904 site_time_zone_utc_offset=-6 -County "AL, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100250.epw site_zip_code=36545 site_time_zone_utc_offset=-6 -County "AL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100270.epw site_zip_code=36251 site_time_zone_utc_offset=-6 -County "AL, Cleburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100290.epw site_zip_code=36264 site_time_zone_utc_offset=-6 -County "AL, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100310.epw site_zip_code=36330 site_time_zone_utc_offset=-6 -County "AL, Colbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100330.epw site_zip_code=35674 site_time_zone_utc_offset=-6 -County "AL, Conecuh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100350.epw site_zip_code=36401 site_time_zone_utc_offset=-6 -County "AL, Coosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100370.epw site_zip_code=35151 site_time_zone_utc_offset=-6 -County "AL, Covington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100390.epw site_zip_code=36420 site_time_zone_utc_offset=-6 -County "AL, Crenshaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100410.epw site_zip_code=36049 site_time_zone_utc_offset=-6 -County "AL, Cullman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100430.epw site_zip_code=35055 site_time_zone_utc_offset=-6 -County "AL, Dale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100450.epw site_zip_code=36360 site_time_zone_utc_offset=-6 -County "AL, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100470.epw site_zip_code=36701 site_time_zone_utc_offset=-6 -County "AL, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100490.epw site_zip_code=35967 site_time_zone_utc_offset=-6 -County "AL, Elmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100510.epw site_zip_code=36092 site_time_zone_utc_offset=-6 -County "AL, Escambia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100530.epw site_zip_code=36426 site_time_zone_utc_offset=-6 -County "AL, Etowah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100550.epw site_zip_code=35901 site_time_zone_utc_offset=-6 -County "AL, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100570.epw site_zip_code=35555 site_time_zone_utc_offset=-6 -County "AL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100590.epw site_zip_code=35653 site_time_zone_utc_offset=-6 -County "AL, Geneva County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100610.epw site_zip_code=36375 site_time_zone_utc_offset=-6 -County "AL, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100630.epw site_zip_code=35462 site_time_zone_utc_offset=-6 -County "AL, Hale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100650.epw site_zip_code=36744 site_time_zone_utc_offset=-6 -County "AL, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100670.epw site_zip_code=36310 site_time_zone_utc_offset=-6 -County "AL, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100690.epw site_zip_code=36301 site_time_zone_utc_offset=-6 -County "AL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100710.epw site_zip_code=35768 site_time_zone_utc_offset=-6 -County "AL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100730.epw site_zip_code=35215 site_time_zone_utc_offset=-6 -County "AL, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100750.epw site_zip_code=35586 site_time_zone_utc_offset=-6 -County "AL, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100770.epw site_zip_code=35630 site_time_zone_utc_offset=-6 -County "AL, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100790.epw site_zip_code=35650 site_time_zone_utc_offset=-6 -County "AL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100810.epw site_zip_code=36830 site_time_zone_utc_offset=-6 -County "AL, Limestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100830.epw site_zip_code=35611 site_time_zone_utc_offset=-6 -County "AL, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100850.epw site_zip_code=36040 site_time_zone_utc_offset=-6 -County "AL, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100870.epw site_zip_code=36083 site_time_zone_utc_offset=-6 -County "AL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100890.epw site_zip_code=35758 site_time_zone_utc_offset=-6 -County "AL, Marengo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100910.epw site_zip_code=36732 site_time_zone_utc_offset=-6 -County "AL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100930.epw site_zip_code=35570 site_time_zone_utc_offset=-6 -County "AL, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100950.epw site_zip_code=35976 site_time_zone_utc_offset=-6 -County "AL, Mobile County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100970.epw site_zip_code=36695 site_time_zone_utc_offset=-6 -County "AL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100990.epw site_zip_code=36460 site_time_zone_utc_offset=-6 -County "AL, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101010.epw site_zip_code=36117 site_time_zone_utc_offset=-6 -County "AL, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101030.epw site_zip_code=35601 site_time_zone_utc_offset=-6 -County "AL, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101050.epw site_zip_code=36756 site_time_zone_utc_offset=-6 -County "AL, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101070.epw site_zip_code=35466 site_time_zone_utc_offset=-6 -County "AL, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101090.epw site_zip_code=36081 site_time_zone_utc_offset=-6 -County "AL, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101110.epw site_zip_code=36274 site_time_zone_utc_offset=-6 -County "AL, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101130.epw site_zip_code=36869 site_time_zone_utc_offset=-6 -County "AL, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101170.epw site_zip_code=35242 site_time_zone_utc_offset=-6 -County "AL, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101150.epw site_zip_code=35120 site_time_zone_utc_offset=-6 -County "AL, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101190.epw site_zip_code=36925 site_time_zone_utc_offset=-6 -County "AL, Talladega County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101210.epw site_zip_code=35160 site_time_zone_utc_offset=-6 -County "AL, Tallapoosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101230.epw site_zip_code=35010 site_time_zone_utc_offset=-6 -County "AL, Tuscaloosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101250.epw site_zip_code=35401 site_time_zone_utc_offset=-6 -County "AL, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101270.epw site_zip_code=35504 site_time_zone_utc_offset=-6 -County "AL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101290.epw site_zip_code=36558 site_time_zone_utc_offset=-6 -County "AL, Wilcox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101310.epw site_zip_code=36726 site_time_zone_utc_offset=-6 -County "AL, Winston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101330.epw site_zip_code=35565 site_time_zone_utc_offset=-6 -County "AR, Arkansas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500010.epw site_zip_code=72160 site_time_zone_utc_offset=-6 -County "AR, Ashley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500030.epw site_zip_code=71635 site_time_zone_utc_offset=-6 -County "AR, Baxter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500050.epw site_zip_code=72653 site_time_zone_utc_offset=-6 -County "AR, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500070.epw site_zip_code=72712 site_time_zone_utc_offset=-6 -County "AR, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500090.epw site_zip_code=72601 site_time_zone_utc_offset=-6 -County "AR, Bradley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500110.epw site_zip_code=71671 site_time_zone_utc_offset=-6 -County "AR, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500130.epw site_zip_code=71744 site_time_zone_utc_offset=-6 -County "AR, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500150.epw site_zip_code=72616 site_time_zone_utc_offset=-6 -County "AR, Chicot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500170.epw site_zip_code=71653 site_time_zone_utc_offset=-6 -County "AR, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500190.epw site_zip_code=71923 site_time_zone_utc_offset=-6 -County "AR, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500210.epw site_zip_code=72454 site_time_zone_utc_offset=-6 -County "AR, Cleburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500230.epw site_zip_code=72543 site_time_zone_utc_offset=-6 -County "AR, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500250.epw site_zip_code=71665 site_time_zone_utc_offset=-6 -County "AR, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500270.epw site_zip_code=71753 site_time_zone_utc_offset=-6 -County "AR, Conway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500290.epw site_zip_code=72110 site_time_zone_utc_offset=-6 -County "AR, Craighead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500310.epw site_zip_code=72401 site_time_zone_utc_offset=-6 -County "AR, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500330.epw site_zip_code=72956 site_time_zone_utc_offset=-6 -County "AR, Crittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500350.epw site_zip_code=72301 site_time_zone_utc_offset=-6 -County "AR, Cross County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500370.epw site_zip_code=72396 site_time_zone_utc_offset=-6 -County "AR, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500390.epw site_zip_code=71742 site_time_zone_utc_offset=-6 -County "AR, Desha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500410.epw site_zip_code=71639 site_time_zone_utc_offset=-6 -County "AR, Drew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500430.epw site_zip_code=71655 site_time_zone_utc_offset=-6 -County "AR, Faulkner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500450.epw site_zip_code=72034 site_time_zone_utc_offset=-6 -County "AR, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500470.epw site_zip_code=72949 site_time_zone_utc_offset=-6 -County "AR, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500490.epw site_zip_code=72554 site_time_zone_utc_offset=-6 -County "AR, Garland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500510.epw site_zip_code=71913 site_time_zone_utc_offset=-6 -County "AR, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500530.epw site_zip_code=72150 site_time_zone_utc_offset=-6 -County "AR, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500550.epw site_zip_code=72450 site_time_zone_utc_offset=-6 -County "AR, Hempstead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500570.epw site_zip_code=71801 site_time_zone_utc_offset=-6 -County "AR, Hot Spring County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500590.epw site_zip_code=72104 site_time_zone_utc_offset=-6 -County "AR, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500610.epw site_zip_code=71852 site_time_zone_utc_offset=-6 -County "AR, Independence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500630.epw site_zip_code=72501 site_time_zone_utc_offset=-6 -County "AR, Izard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500650.epw site_zip_code=72556 site_time_zone_utc_offset=-6 -County "AR, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500670.epw site_zip_code=72112 site_time_zone_utc_offset=-6 -County "AR, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500690.epw site_zip_code=71603 site_time_zone_utc_offset=-6 -County "AR, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500710.epw site_zip_code=72830 site_time_zone_utc_offset=-6 -County "AR, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500730.epw site_zip_code=71860 site_time_zone_utc_offset=-6 -County "AR, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500750.epw site_zip_code=72476 site_time_zone_utc_offset=-6 -County "AR, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500770.epw site_zip_code=72360 site_time_zone_utc_offset=-6 -County "AR, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500790.epw site_zip_code=71667 site_time_zone_utc_offset=-6 -County "AR, Little River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500810.epw site_zip_code=71822 site_time_zone_utc_offset=-6 -County "AR, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500830.epw site_zip_code=72927 site_time_zone_utc_offset=-6 -County "AR, Lonoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500850.epw site_zip_code=72023 site_time_zone_utc_offset=-6 -County "AR, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500870.epw site_zip_code=72740 site_time_zone_utc_offset=-6 -County "AR, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500890.epw site_zip_code=72687 site_time_zone_utc_offset=-6 -County "AR, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500910.epw site_zip_code=71854 site_time_zone_utc_offset=-6 -County "AR, Mississippi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500930.epw site_zip_code=72315 site_time_zone_utc_offset=-6 -County "AR, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500950.epw site_zip_code=72021 site_time_zone_utc_offset=-6 -County "AR, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500970.epw site_zip_code=71957 site_time_zone_utc_offset=-6 -County "AR, Nevada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500990.epw site_zip_code=71857 site_time_zone_utc_offset=-6 -County "AR, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501010.epw site_zip_code=72641 site_time_zone_utc_offset=-6 -County "AR, Ouachita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501030.epw site_zip_code=71701 site_time_zone_utc_offset=-6 -County "AR, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501050.epw site_zip_code=72126 site_time_zone_utc_offset=-6 -County "AR, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501070.epw site_zip_code=72390 site_time_zone_utc_offset=-6 -County "AR, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501090.epw site_zip_code=71943 site_time_zone_utc_offset=-6 -County "AR, Poinsett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501110.epw site_zip_code=72472 site_time_zone_utc_offset=-6 -County "AR, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501130.epw site_zip_code=71953 site_time_zone_utc_offset=-6 -County "AR, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501150.epw site_zip_code=72802 site_time_zone_utc_offset=-6 -County "AR, Prairie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501170.epw site_zip_code=72040 site_time_zone_utc_offset=-6 -County "AR, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501190.epw site_zip_code=72076 site_time_zone_utc_offset=-6 -County "AR, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501210.epw site_zip_code=72455 site_time_zone_utc_offset=-6 -County "AR, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501250.epw site_zip_code=72019 site_time_zone_utc_offset=-6 -County "AR, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501270.epw site_zip_code=72958 site_time_zone_utc_offset=-6 -County "AR, Searcy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501290.epw site_zip_code=72650 site_time_zone_utc_offset=-6 -County "AR, Sebastian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501310.epw site_zip_code=72903 site_time_zone_utc_offset=-6 -County "AR, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501330.epw site_zip_code=71832 site_time_zone_utc_offset=-6 -County "AR, Sharp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501350.epw site_zip_code=72529 site_time_zone_utc_offset=-6 -County "AR, St. Francis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501230.epw site_zip_code=72335 site_time_zone_utc_offset=-6 -County "AR, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501370.epw site_zip_code=72560 site_time_zone_utc_offset=-6 -County "AR, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501390.epw site_zip_code=71730 site_time_zone_utc_offset=-6 -County "AR, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501410.epw site_zip_code=72031 site_time_zone_utc_offset=-6 -County "AR, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501430.epw site_zip_code=72701 site_time_zone_utc_offset=-6 -County "AR, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501450.epw site_zip_code=72143 site_time_zone_utc_offset=-6 -County "AR, Woodruff County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501470.epw site_zip_code=72006 site_time_zone_utc_offset=-6 -County "AR, Yell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501490.epw site_zip_code=72834 site_time_zone_utc_offset=-6 -County "AZ, Apache County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400010.epw site_zip_code=85936 site_time_zone_utc_offset=-7 -County "AZ, Cochise County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400030.epw site_zip_code=85635 site_time_zone_utc_offset=-7 -County "AZ, Coconino County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400050.epw site_zip_code=86001 site_time_zone_utc_offset=-7 -County "AZ, Gila County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400070.epw site_zip_code=85541 site_time_zone_utc_offset=-7 -County "AZ, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400090.epw site_zip_code=85546 site_time_zone_utc_offset=-7 -County "AZ, Greenlee County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400110.epw site_zip_code=85534 site_time_zone_utc_offset=-7 -County "AZ, La Paz County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400120.epw site_zip_code=85344 site_time_zone_utc_offset=-7 -County "AZ, Maricopa County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400130.epw site_zip_code=85281 site_time_zone_utc_offset=-7 -County "AZ, Mohave County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400150.epw site_zip_code=86442 site_time_zone_utc_offset=-7 -County "AZ, Navajo County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400170.epw site_zip_code=85901 site_time_zone_utc_offset=-7 -County "AZ, Pima County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400190.epw site_zip_code=85705 site_time_zone_utc_offset=-7 -County "AZ, Pinal County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400210.epw site_zip_code=85122 site_time_zone_utc_offset=-7 -County "AZ, Santa Cruz County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400230.epw site_zip_code=85621 site_time_zone_utc_offset=-7 -County "AZ, Yavapai County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400250.epw site_zip_code=86314 site_time_zone_utc_offset=-7 -County "AZ, Yuma County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400270.epw site_zip_code=85364 site_time_zone_utc_offset=-7 -County "CA, Alameda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600010.epw site_zip_code=94501 site_time_zone_utc_offset=-8 -County "CA, Alpine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600030.epw site_zip_code=96120 site_time_zone_utc_offset=-8 -County "CA, Amador County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600050.epw site_zip_code=95642 site_time_zone_utc_offset=-8 -County "CA, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600070.epw site_zip_code=95928 site_time_zone_utc_offset=-8 -County "CA, Calaveras County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600090.epw site_zip_code=95252 site_time_zone_utc_offset=-8 -County "CA, Colusa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600110.epw site_zip_code=95932 site_time_zone_utc_offset=-8 -County "CA, Contra Costa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600130.epw site_zip_code=94565 site_time_zone_utc_offset=-8 -County "CA, Del Norte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600150.epw site_zip_code=95531 site_time_zone_utc_offset=-8 -County "CA, El Dorado County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600170.epw site_zip_code=95762 site_time_zone_utc_offset=-8 -County "CA, Fresno County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600190.epw site_zip_code=93722 site_time_zone_utc_offset=-8 -County "CA, Glenn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600210.epw site_zip_code=95963 site_time_zone_utc_offset=-8 -County "CA, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600230.epw site_zip_code=95501 site_time_zone_utc_offset=-8 -County "CA, Imperial County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600250.epw site_zip_code=92243 site_time_zone_utc_offset=-8 -County "CA, Inyo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600270.epw site_zip_code=93514 site_time_zone_utc_offset=-8 -County "CA, Kern County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600290.epw site_zip_code=93306 site_time_zone_utc_offset=-8 -County "CA, Kings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600310.epw site_zip_code=93230 site_time_zone_utc_offset=-8 -County "CA, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600330.epw site_zip_code=95422 site_time_zone_utc_offset=-8 -County "CA, Lassen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600350.epw site_zip_code=96130 site_time_zone_utc_offset=-8 -County "CA, Los Angeles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600370.epw site_zip_code=90250 site_time_zone_utc_offset=-8 -County "CA, Madera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600390.epw site_zip_code=93637 site_time_zone_utc_offset=-8 -County "CA, Marin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600410.epw site_zip_code=94901 site_time_zone_utc_offset=-8 -County "CA, Mariposa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600430.epw site_zip_code=95338 site_time_zone_utc_offset=-8 -County "CA, Mendocino County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600450.epw site_zip_code=95482 site_time_zone_utc_offset=-8 -County "CA, Merced County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600470.epw site_zip_code=93635 site_time_zone_utc_offset=-8 -County "CA, Modoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600490.epw site_zip_code=96101 site_time_zone_utc_offset=-8 -County "CA, Mono County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600510.epw site_zip_code=93546 site_time_zone_utc_offset=-8 -County "CA, Monterey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600530.epw site_zip_code=93906 site_time_zone_utc_offset=-8 -County "CA, Napa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600550.epw site_zip_code=94558 site_time_zone_utc_offset=-8 -County "CA, Nevada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600570.epw site_zip_code=95945 site_time_zone_utc_offset=-8 -County "CA, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600590.epw site_zip_code=92683 site_time_zone_utc_offset=-8 -County "CA, Placer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600610.epw site_zip_code=95747 site_time_zone_utc_offset=-8 -County "CA, Plumas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600630.epw site_zip_code=96122 site_time_zone_utc_offset=-8 -County "CA, Riverside County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600650.epw site_zip_code=92503 site_time_zone_utc_offset=-8 -County "CA, Sacramento County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600670.epw site_zip_code=95630 site_time_zone_utc_offset=-8 -County "CA, San Benito County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600690.epw site_zip_code=95023 site_time_zone_utc_offset=-8 -County "CA, San Bernardino County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600710.epw site_zip_code=92336 site_time_zone_utc_offset=-8 -County "CA, San Diego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600730.epw site_zip_code=92101 site_time_zone_utc_offset=-8 -County "CA, San Francisco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600750.epw site_zip_code=94109 site_time_zone_utc_offset=-8 -County "CA, San Joaquin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600770.epw site_zip_code=95206 site_time_zone_utc_offset=-8 -County "CA, San Luis Obispo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600790.epw site_zip_code=93446 site_time_zone_utc_offset=-8 -County "CA, San Mateo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600810.epw site_zip_code=94080 site_time_zone_utc_offset=-8 -County "CA, Santa Barbara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600830.epw site_zip_code=93436 site_time_zone_utc_offset=-8 -County "CA, Santa Clara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600850.epw site_zip_code=95035 site_time_zone_utc_offset=-8 -County "CA, Santa Cruz County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600870.epw site_zip_code=95076 site_time_zone_utc_offset=-8 -County "CA, Shasta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600890.epw site_zip_code=96003 site_time_zone_utc_offset=-8 -County "CA, Sierra County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600910.epw site_zip_code=95960 site_time_zone_utc_offset=-8 -County "CA, Siskiyou County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600930.epw site_zip_code=96097 site_time_zone_utc_offset=-8 -County "CA, Solano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600950.epw site_zip_code=94533 site_time_zone_utc_offset=-8 -County "CA, Sonoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600970.epw site_zip_code=95403 site_time_zone_utc_offset=-8 -County "CA, Stanislaus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600990.epw site_zip_code=95355 site_time_zone_utc_offset=-8 -County "CA, Sutter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601010.epw site_zip_code=95991 site_time_zone_utc_offset=-8 -County "CA, Tehama County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601030.epw site_zip_code=96080 site_time_zone_utc_offset=-8 -County "CA, Trinity County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601050.epw site_zip_code=96091 site_time_zone_utc_offset=-8 -County "CA, Tulare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601070.epw site_zip_code=93274 site_time_zone_utc_offset=-8 -County "CA, Tuolumne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601090.epw site_zip_code=95370 site_time_zone_utc_offset=-8 -County "CA, Ventura County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601110.epw site_zip_code=93065 site_time_zone_utc_offset=-8 -County "CA, Yolo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601130.epw site_zip_code=95616 site_time_zone_utc_offset=-8 -County "CA, Yuba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601150.epw site_zip_code=95901 site_time_zone_utc_offset=-8 -County "CO, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800010.epw site_zip_code=80229 site_time_zone_utc_offset=-7 -County "CO, Alamosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800030.epw site_zip_code=81101 site_time_zone_utc_offset=-7 -County "CO, Arapahoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800050.epw site_zip_code=80013 site_time_zone_utc_offset=-7 -County "CO, Archuleta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800070.epw site_zip_code=81147 site_time_zone_utc_offset=-7 -County "CO, Baca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800090.epw site_zip_code=81073 site_time_zone_utc_offset=-7 -County "CO, Bent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800110.epw site_zip_code=81054 site_time_zone_utc_offset=-7 -County "CO, Boulder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800130.epw site_zip_code=80501 site_time_zone_utc_offset=-7 -County "CO, Broomfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800140.epw site_zip_code=80020 site_time_zone_utc_offset=-7 -County "CO, Chaffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800150.epw site_zip_code=81201 site_time_zone_utc_offset=-7 -County "CO, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800170.epw site_zip_code=80810 site_time_zone_utc_offset=-7 -County "CO, Clear Creek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800190.epw site_zip_code=80439 site_time_zone_utc_offset=-7 -County "CO, Conejos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800210.epw site_zip_code=81120 site_time_zone_utc_offset=-7 -County "CO, Costilla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800230.epw site_zip_code=81133 site_time_zone_utc_offset=-7 -County "CO, Crowley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800250.epw site_zip_code=81063 site_time_zone_utc_offset=-7 -County "CO, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800270.epw site_zip_code=81252 site_time_zone_utc_offset=-7 -County "CO, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800290.epw site_zip_code=81416 site_time_zone_utc_offset=-7 -County "CO, Denver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800310.epw site_zip_code=80211 site_time_zone_utc_offset=-7 -County "CO, Dolores County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800330.epw site_zip_code=81324 site_time_zone_utc_offset=-7 -County "CO, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800350.epw site_zip_code=80134 site_time_zone_utc_offset=-7 -County "CO, Eagle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800370.epw site_zip_code=81620 site_time_zone_utc_offset=-7 -County "CO, El Paso County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800410.epw site_zip_code=80918 site_time_zone_utc_offset=-7 -County "CO, Elbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800390.epw site_zip_code=80107 site_time_zone_utc_offset=-7 -County "CO, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800430.epw site_zip_code=81212 site_time_zone_utc_offset=-7 -County "CO, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800450.epw site_zip_code=81601 site_time_zone_utc_offset=-7 -County "CO, Gilpin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800470.epw site_zip_code=80422 site_time_zone_utc_offset=-7 -County "CO, Grand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800490.epw site_zip_code=80459 site_time_zone_utc_offset=-7 -County "CO, Gunnison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800510.epw site_zip_code=81230 site_time_zone_utc_offset=-7 -County "CO, Hinsdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800530.epw site_zip_code=81235 site_time_zone_utc_offset=-7 -County "CO, Huerfano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800550.epw site_zip_code=81089 site_time_zone_utc_offset=-7 -County "CO, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800570.epw site_zip_code=80480 site_time_zone_utc_offset=-7 -County "CO, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800590.epw site_zip_code=80127 site_time_zone_utc_offset=-7 -County "CO, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800610.epw site_zip_code=81036 site_time_zone_utc_offset=-7 -County "CO, Kit Carson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800630.epw site_zip_code=80807 site_time_zone_utc_offset=-7 -County "CO, La Plata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800670.epw site_zip_code=81301 site_time_zone_utc_offset=-7 -County "CO, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800650.epw site_zip_code=80461 site_time_zone_utc_offset=-7 -County "CO, Larimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800690.epw site_zip_code=80525 site_time_zone_utc_offset=-7 -County "CO, Las Animas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800710.epw site_zip_code=81082 site_time_zone_utc_offset=-7 -County "CO, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800730.epw site_zip_code=80828 site_time_zone_utc_offset=-7 -County "CO, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800750.epw site_zip_code=80751 site_time_zone_utc_offset=-7 -County "CO, Mesa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800770.epw site_zip_code=81504 site_time_zone_utc_offset=-7 -County "CO, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800790.epw site_zip_code=81130 site_time_zone_utc_offset=-7 -County "CO, Moffat County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800810.epw site_zip_code=81625 site_time_zone_utc_offset=-7 -County "CO, Montezuma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800830.epw site_zip_code=81321 site_time_zone_utc_offset=-7 -County "CO, Montrose County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800850.epw site_zip_code=81401 site_time_zone_utc_offset=-7 -County "CO, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800870.epw site_zip_code=80701 site_time_zone_utc_offset=-7 -County "CO, Otero County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800890.epw site_zip_code=81050 site_time_zone_utc_offset=-7 -County "CO, Ouray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800910.epw site_zip_code=81432 site_time_zone_utc_offset=-7 -County "CO, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800930.epw site_zip_code=80421 site_time_zone_utc_offset=-7 -County "CO, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800950.epw site_zip_code=80734 site_time_zone_utc_offset=-7 -County "CO, Pitkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800970.epw site_zip_code=81612 site_time_zone_utc_offset=-7 -County "CO, Prowers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800990.epw site_zip_code=81052 site_time_zone_utc_offset=-7 -County "CO, Pueblo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801010.epw site_zip_code=81001 site_time_zone_utc_offset=-7 -County "CO, Rio Blanco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801030.epw site_zip_code=81648 site_time_zone_utc_offset=-7 -County "CO, Rio Grande County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801050.epw site_zip_code=81144 site_time_zone_utc_offset=-7 -County "CO, Routt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801070.epw site_zip_code=80487 site_time_zone_utc_offset=-7 -County "CO, Saguache County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801090.epw site_zip_code=81125 site_time_zone_utc_offset=-7 -County "CO, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801110.epw site_zip_code=81433 site_time_zone_utc_offset=-7 -County "CO, San Miguel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801130.epw site_zip_code=81435 site_time_zone_utc_offset=-7 -County "CO, Sedgwick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801150.epw site_zip_code=80737 site_time_zone_utc_offset=-7 -County "CO, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801170.epw site_zip_code=80424 site_time_zone_utc_offset=-7 -County "CO, Teller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801190.epw site_zip_code=80863 site_time_zone_utc_offset=-7 -County "CO, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801210.epw site_zip_code=80720 site_time_zone_utc_offset=-7 -County "CO, Weld County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801230.epw site_zip_code=80634 site_time_zone_utc_offset=-7 -County "CO, Yuma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801250.epw site_zip_code=80759 site_time_zone_utc_offset=-7 -County "CT, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900010.epw site_zip_code=06902 site_time_zone_utc_offset=-5 -County "CT, Hartford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900030.epw site_zip_code=06010 site_time_zone_utc_offset=-5 -County "CT, Litchfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900050.epw site_zip_code=06790 site_time_zone_utc_offset=-5 -County "CT, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900070.epw site_zip_code=06457 site_time_zone_utc_offset=-5 -County "CT, New Haven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900090.epw site_zip_code=06516 site_time_zone_utc_offset=-5 -County "CT, New London County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900110.epw site_zip_code=06360 site_time_zone_utc_offset=-5 -County "CT, Tolland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900130.epw site_zip_code=06066 site_time_zone_utc_offset=-5 -County "CT, Windham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900150.epw site_zip_code=06226 site_time_zone_utc_offset=-5 -County "DC, District of Columbia" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1100010.epw site_zip_code=20002 site_time_zone_utc_offset=-5 -County "DE, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000010.epw site_zip_code=19904 site_time_zone_utc_offset=-5 -County "DE, New Castle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000030.epw site_zip_code=19720 site_time_zone_utc_offset=-5 -County "DE, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000050.epw site_zip_code=19966 site_time_zone_utc_offset=-5 -County "FL, Alachua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200010.epw site_zip_code=32608 site_time_zone_utc_offset=-5 -County "FL, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200030.epw site_zip_code=32063 site_time_zone_utc_offset=-5 -County "FL, Bay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200050.epw site_zip_code=32404 site_time_zone_utc_offset=-6 -County "FL, Bradford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200070.epw site_zip_code=32091 site_time_zone_utc_offset=-5 -County "FL, Brevard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200090.epw site_zip_code=32940 site_time_zone_utc_offset=-5 -County "FL, Broward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200110.epw site_zip_code=33027 site_time_zone_utc_offset=-5 -County "FL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200130.epw site_zip_code=32424 site_time_zone_utc_offset=-6 -County "FL, Charlotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200150.epw site_zip_code=33950 site_time_zone_utc_offset=-5 -County "FL, Citrus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200170.epw site_zip_code=34446 site_time_zone_utc_offset=-5 -County "FL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200190.epw site_zip_code=32068 site_time_zone_utc_offset=-5 -County "FL, Collier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200210.epw site_zip_code=34112 site_time_zone_utc_offset=-5 -County "FL, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200230.epw site_zip_code=32025 site_time_zone_utc_offset=-5 -County "FL, DeSoto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200270.epw site_zip_code=34266 site_time_zone_utc_offset=-5 -County "FL, Dixie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200290.epw site_zip_code=32680 site_time_zone_utc_offset=-5 -County "FL, Duval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200310.epw site_zip_code=32256 site_time_zone_utc_offset=-5 -County "FL, Escambia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200330.epw site_zip_code=32507 site_time_zone_utc_offset=-6 -County "FL, Flagler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200350.epw site_zip_code=32137 site_time_zone_utc_offset=-5 -County "FL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200370.epw site_zip_code=32328 site_time_zone_utc_offset=-5 -County "FL, Gadsden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200390.epw site_zip_code=32351 site_time_zone_utc_offset=-5 -County "FL, Gilchrist County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200410.epw site_zip_code=32693 site_time_zone_utc_offset=-5 -County "FL, Glades County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200430.epw site_zip_code=33471 site_time_zone_utc_offset=-5 -County "FL, Gulf County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200450.epw site_zip_code=32456 site_time_zone_utc_offset=-6 -County "FL, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200470.epw site_zip_code=32052 site_time_zone_utc_offset=-5 -County "FL, Hardee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200490.epw site_zip_code=33873 site_time_zone_utc_offset=-5 -County "FL, Hendry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200510.epw site_zip_code=33440 site_time_zone_utc_offset=-5 -County "FL, Hernando County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200530.epw site_zip_code=34609 site_time_zone_utc_offset=-5 -County "FL, Highlands County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200550.epw site_zip_code=33870 site_time_zone_utc_offset=-5 -County "FL, Hillsborough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200570.epw site_zip_code=33647 site_time_zone_utc_offset=-5 -County "FL, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200590.epw site_zip_code=32425 site_time_zone_utc_offset=-6 -County "FL, Indian River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200610.epw site_zip_code=32958 site_time_zone_utc_offset=-5 -County "FL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200630.epw site_zip_code=32446 site_time_zone_utc_offset=-6 -County "FL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200650.epw site_zip_code=32344 site_time_zone_utc_offset=-5 -County "FL, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200670.epw site_zip_code=32066 site_time_zone_utc_offset=-5 -County "FL, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200690.epw site_zip_code=34711 site_time_zone_utc_offset=-5 -County "FL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200710.epw site_zip_code=34135 site_time_zone_utc_offset=-5 -County "FL, Leon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200730.epw site_zip_code=32303 site_time_zone_utc_offset=-5 -County "FL, Levy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200750.epw site_zip_code=32696 site_time_zone_utc_offset=-5 -County "FL, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200770.epw site_zip_code=32321 site_time_zone_utc_offset=-5 -County "FL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200790.epw site_zip_code=32340 site_time_zone_utc_offset=-5 -County "FL, Manatee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200810.epw site_zip_code=34221 site_time_zone_utc_offset=-5 -County "FL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200830.epw site_zip_code=34491 site_time_zone_utc_offset=-5 -County "FL, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200850.epw site_zip_code=34997 site_time_zone_utc_offset=-5 -County "FL, Miami-Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200860.epw site_zip_code=33160 site_time_zone_utc_offset=-5 -County "FL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200870.epw site_zip_code=33040 site_time_zone_utc_offset=-5 -County "FL, Nassau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200890.epw site_zip_code=32034 site_time_zone_utc_offset=-5 -County "FL, Okaloosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200910.epw site_zip_code=32541 site_time_zone_utc_offset=-6 -County "FL, Okeechobee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200930.epw site_zip_code=34974 site_time_zone_utc_offset=-5 -County "FL, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200950.epw site_zip_code=34787 site_time_zone_utc_offset=-5 -County "FL, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200970.epw site_zip_code=34746 site_time_zone_utc_offset=-5 -County "FL, Palm Beach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200990.epw site_zip_code=33411 site_time_zone_utc_offset=-5 -County "FL, Pasco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201010.epw site_zip_code=34668 site_time_zone_utc_offset=-5 -County "FL, Pinellas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201030.epw site_zip_code=34698 site_time_zone_utc_offset=-5 -County "FL, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201050.epw site_zip_code=33810 site_time_zone_utc_offset=-5 -County "FL, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201070.epw site_zip_code=32177 site_time_zone_utc_offset=-5 -County "FL, Santa Rosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201130.epw site_zip_code=32566 site_time_zone_utc_offset=-6 -County "FL, Sarasota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201150.epw site_zip_code=34293 site_time_zone_utc_offset=-5 -County "FL, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201170.epw site_zip_code=32771 site_time_zone_utc_offset=-5 -County "FL, St. Johns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201090.epw site_zip_code=32259 site_time_zone_utc_offset=-5 -County "FL, St. Lucie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201110.epw site_zip_code=34953 site_time_zone_utc_offset=-5 -County "FL, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201190.epw site_zip_code=32162 site_time_zone_utc_offset=-5 -County "FL, Suwannee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201210.epw site_zip_code=32060 site_time_zone_utc_offset=-5 -County "FL, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201230.epw site_zip_code=32348 site_time_zone_utc_offset=-5 -County "FL, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201250.epw site_zip_code=32054 site_time_zone_utc_offset=-5 -County "FL, Volusia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201270.epw site_zip_code=32174 site_time_zone_utc_offset=-5 -County "FL, Wakulla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201290.epw site_zip_code=32327 site_time_zone_utc_offset=-5 -County "FL, Walton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201310.epw site_zip_code=32459 site_time_zone_utc_offset=-6 -County "FL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201330.epw site_zip_code=32428 site_time_zone_utc_offset=-6 -County "GA, Appling County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300010.epw site_zip_code=31513 site_time_zone_utc_offset=-5 -County "GA, Atkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300030.epw site_zip_code=31642 site_time_zone_utc_offset=-5 -County "GA, Bacon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300050.epw site_zip_code=31510 site_time_zone_utc_offset=-5 -County "GA, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300070.epw site_zip_code=39870 site_time_zone_utc_offset=-5 -County "GA, Baldwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300090.epw site_zip_code=31061 site_time_zone_utc_offset=-5 -County "GA, Banks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300110.epw site_zip_code=30547 site_time_zone_utc_offset=-5 -County "GA, Barrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300130.epw site_zip_code=30680 site_time_zone_utc_offset=-5 -County "GA, Bartow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300150.epw site_zip_code=30120 site_time_zone_utc_offset=-5 -County "GA, Ben Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300170.epw site_zip_code=31750 site_time_zone_utc_offset=-5 -County "GA, Berrien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300190.epw site_zip_code=31639 site_time_zone_utc_offset=-5 -County "GA, Bibb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300210.epw site_zip_code=31204 site_time_zone_utc_offset=-5 -County "GA, Bleckley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300230.epw site_zip_code=31014 site_time_zone_utc_offset=-5 -County "GA, Brantley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300250.epw site_zip_code=31553 site_time_zone_utc_offset=-5 -County "GA, Brooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300270.epw site_zip_code=31643 site_time_zone_utc_offset=-5 -County "GA, Bryan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300290.epw site_zip_code=31324 site_time_zone_utc_offset=-5 -County "GA, Bulloch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300310.epw site_zip_code=30458 site_time_zone_utc_offset=-5 -County "GA, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300330.epw site_zip_code=30830 site_time_zone_utc_offset=-5 -County "GA, Butts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300350.epw site_zip_code=30233 site_time_zone_utc_offset=-5 -County "GA, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300370.epw site_zip_code=39846 site_time_zone_utc_offset=-5 -County "GA, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300390.epw site_zip_code=31558 site_time_zone_utc_offset=-5 -County "GA, Candler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300430.epw site_zip_code=30439 site_time_zone_utc_offset=-5 -County "GA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300450.epw site_zip_code=30117 site_time_zone_utc_offset=-5 -County "GA, Catoosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300470.epw site_zip_code=30736 site_time_zone_utc_offset=-5 -County "GA, Charlton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300490.epw site_zip_code=31537 site_time_zone_utc_offset=-5 -County "GA, Chatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300510.epw site_zip_code=31419 site_time_zone_utc_offset=-5 -County "GA, Chattahoochee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300530.epw site_zip_code=31905 site_time_zone_utc_offset=-5 -County "GA, Chattooga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300550.epw site_zip_code=30747 site_time_zone_utc_offset=-5 -County "GA, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300570.epw site_zip_code=30188 site_time_zone_utc_offset=-5 -County "GA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300590.epw site_zip_code=30606 site_time_zone_utc_offset=-5 -County "GA, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300610.epw site_zip_code=39851 site_time_zone_utc_offset=-5 -County "GA, Clayton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300630.epw site_zip_code=30236 site_time_zone_utc_offset=-5 -County "GA, Clinch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300650.epw site_zip_code=31634 site_time_zone_utc_offset=-5 -County "GA, Cobb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300670.epw site_zip_code=30080 site_time_zone_utc_offset=-5 -County "GA, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300690.epw site_zip_code=31533 site_time_zone_utc_offset=-5 -County "GA, Colquitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300710.epw site_zip_code=31768 site_time_zone_utc_offset=-5 -County "GA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300730.epw site_zip_code=30809 site_time_zone_utc_offset=-5 -County "GA, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300750.epw site_zip_code=31620 site_time_zone_utc_offset=-5 -County "GA, Coweta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300770.epw site_zip_code=30263 site_time_zone_utc_offset=-5 -County "GA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300790.epw site_zip_code=31078 site_time_zone_utc_offset=-5 -County "GA, Crisp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300810.epw site_zip_code=31015 site_time_zone_utc_offset=-5 -County "GA, Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300830.epw site_zip_code=30752 site_time_zone_utc_offset=-5 -County "GA, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300850.epw site_zip_code=30534 site_time_zone_utc_offset=-5 -County "GA, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300890.epw site_zip_code=30058 site_time_zone_utc_offset=-5 -County "GA, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300870.epw site_zip_code=39819 site_time_zone_utc_offset=-5 -County "GA, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300910.epw site_zip_code=31023 site_time_zone_utc_offset=-5 -County "GA, Dooly County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300930.epw site_zip_code=31092 site_time_zone_utc_offset=-5 -County "GA, Dougherty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300950.epw site_zip_code=31705 site_time_zone_utc_offset=-5 -County "GA, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300970.epw site_zip_code=30135 site_time_zone_utc_offset=-5 -County "GA, Early County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300990.epw site_zip_code=39823 site_time_zone_utc_offset=-5 -County "GA, Echols County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301010.epw site_zip_code=31636 site_time_zone_utc_offset=-5 -County "GA, Effingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301030.epw site_zip_code=31326 site_time_zone_utc_offset=-5 -County "GA, Elbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301050.epw site_zip_code=30635 site_time_zone_utc_offset=-5 -County "GA, Emanuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301070.epw site_zip_code=30401 site_time_zone_utc_offset=-5 -County "GA, Evans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301090.epw site_zip_code=30417 site_time_zone_utc_offset=-5 -County "GA, Fannin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301110.epw site_zip_code=30513 site_time_zone_utc_offset=-5 -County "GA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301130.epw site_zip_code=30269 site_time_zone_utc_offset=-5 -County "GA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301150.epw site_zip_code=30165 site_time_zone_utc_offset=-5 -County "GA, Forsyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301170.epw site_zip_code=30040 site_time_zone_utc_offset=-5 -County "GA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301190.epw site_zip_code=30553 site_time_zone_utc_offset=-5 -County "GA, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301210.epw site_zip_code=30318 site_time_zone_utc_offset=-5 -County "GA, Gilmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301230.epw site_zip_code=30540 site_time_zone_utc_offset=-5 -County "GA, Glascock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301250.epw site_zip_code=30810 site_time_zone_utc_offset=-5 -County "GA, Glynn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301270.epw site_zip_code=31525 site_time_zone_utc_offset=-5 -County "GA, Gordon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301290.epw site_zip_code=30701 site_time_zone_utc_offset=-5 -County "GA, Grady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301310.epw site_zip_code=39828 site_time_zone_utc_offset=-5 -County "GA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301330.epw site_zip_code=30642 site_time_zone_utc_offset=-5 -County "GA, Gwinnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301350.epw site_zip_code=30044 site_time_zone_utc_offset=-5 -County "GA, Habersham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301370.epw site_zip_code=30531 site_time_zone_utc_offset=-5 -County "GA, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301390.epw site_zip_code=30542 site_time_zone_utc_offset=-5 -County "GA, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301410.epw site_zip_code=31087 site_time_zone_utc_offset=-5 -County "GA, Haralson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301430.epw site_zip_code=30110 site_time_zone_utc_offset=-5 -County "GA, Harris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301450.epw site_zip_code=31804 site_time_zone_utc_offset=-5 -County "GA, Hart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301470.epw site_zip_code=30643 site_time_zone_utc_offset=-5 -County "GA, Heard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301490.epw site_zip_code=30217 site_time_zone_utc_offset=-5 -County "GA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301510.epw site_zip_code=30253 site_time_zone_utc_offset=-5 -County "GA, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301530.epw site_zip_code=31088 site_time_zone_utc_offset=-5 -County "GA, Irwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301550.epw site_zip_code=31774 site_time_zone_utc_offset=-5 -County "GA, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301570.epw site_zip_code=30549 site_time_zone_utc_offset=-5 -County "GA, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301590.epw site_zip_code=31064 site_time_zone_utc_offset=-5 -County "GA, Jeff Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301610.epw site_zip_code=31539 site_time_zone_utc_offset=-5 -County "GA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301630.epw site_zip_code=30434 site_time_zone_utc_offset=-5 -County "GA, Jenkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301650.epw site_zip_code=30442 site_time_zone_utc_offset=-5 -County "GA, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301670.epw site_zip_code=31096 site_time_zone_utc_offset=-5 -County "GA, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301690.epw site_zip_code=31032 site_time_zone_utc_offset=-5 -County "GA, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301710.epw site_zip_code=30204 site_time_zone_utc_offset=-5 -County "GA, Lanier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301730.epw site_zip_code=31635 site_time_zone_utc_offset=-5 -County "GA, Laurens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301750.epw site_zip_code=31021 site_time_zone_utc_offset=-5 -County "GA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301770.epw site_zip_code=31763 site_time_zone_utc_offset=-5 -County "GA, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301790.epw site_zip_code=31313 site_time_zone_utc_offset=-5 -County "GA, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301810.epw site_zip_code=30817 site_time_zone_utc_offset=-5 -County "GA, Long County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301830.epw site_zip_code=31316 site_time_zone_utc_offset=-5 -County "GA, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301850.epw site_zip_code=31601 site_time_zone_utc_offset=-5 -County "GA, Lumpkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301870.epw site_zip_code=30533 site_time_zone_utc_offset=-5 -County "GA, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301930.epw site_zip_code=31063 site_time_zone_utc_offset=-5 -County "GA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301950.epw site_zip_code=30633 site_time_zone_utc_offset=-5 -County "GA, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301970.epw site_zip_code=31803 site_time_zone_utc_offset=-5 -County "GA, McDuffie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301890.epw site_zip_code=30824 site_time_zone_utc_offset=-5 -County "GA, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301910.epw site_zip_code=31331 site_time_zone_utc_offset=-5 -County "GA, Meriwether County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301990.epw site_zip_code=31816 site_time_zone_utc_offset=-5 -County "GA, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302010.epw site_zip_code=39837 site_time_zone_utc_offset=-5 -County "GA, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302050.epw site_zip_code=31730 site_time_zone_utc_offset=-5 -County "GA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302070.epw site_zip_code=31029 site_time_zone_utc_offset=-5 -County "GA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302090.epw site_zip_code=30445 site_time_zone_utc_offset=-5 -County "GA, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302110.epw site_zip_code=30650 site_time_zone_utc_offset=-5 -County "GA, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302130.epw site_zip_code=30705 site_time_zone_utc_offset=-5 -County "GA, Muscogee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302150.epw site_zip_code=31907 site_time_zone_utc_offset=-5 -County "GA, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302170.epw site_zip_code=30016 site_time_zone_utc_offset=-5 -County "GA, Oconee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302190.epw site_zip_code=30677 site_time_zone_utc_offset=-5 -County "GA, Oglethorpe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302210.epw site_zip_code=30683 site_time_zone_utc_offset=-5 -County "GA, Paulding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302230.epw site_zip_code=30132 site_time_zone_utc_offset=-5 -County "GA, Peach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302250.epw site_zip_code=31030 site_time_zone_utc_offset=-5 -County "GA, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302270.epw site_zip_code=30143 site_time_zone_utc_offset=-5 -County "GA, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302290.epw site_zip_code=31516 site_time_zone_utc_offset=-5 -County "GA, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302310.epw site_zip_code=30292 site_time_zone_utc_offset=-5 -County "GA, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302330.epw site_zip_code=30125 site_time_zone_utc_offset=-5 -County "GA, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302350.epw site_zip_code=31036 site_time_zone_utc_offset=-5 -County "GA, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302370.epw site_zip_code=31024 site_time_zone_utc_offset=-5 -County "GA, Quitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302390.epw site_zip_code=39854 site_time_zone_utc_offset=-5 -County "GA, Rabun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302410.epw site_zip_code=30525 site_time_zone_utc_offset=-5 -County "GA, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302430.epw site_zip_code=39840 site_time_zone_utc_offset=-5 -County "GA, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302450.epw site_zip_code=30909 site_time_zone_utc_offset=-5 -County "GA, Rockdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302470.epw site_zip_code=30094 site_time_zone_utc_offset=-5 -County "GA, Schley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302490.epw site_zip_code=31806 site_time_zone_utc_offset=-5 -County "GA, Screven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302510.epw site_zip_code=30467 site_time_zone_utc_offset=-5 -County "GA, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302530.epw site_zip_code=39845 site_time_zone_utc_offset=-5 -County "GA, Spalding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302550.epw site_zip_code=30223 site_time_zone_utc_offset=-5 -County "GA, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302570.epw site_zip_code=30577 site_time_zone_utc_offset=-5 -County "GA, Stewart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302590.epw site_zip_code=31825 site_time_zone_utc_offset=-5 -County "GA, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302610.epw site_zip_code=31709 site_time_zone_utc_offset=-5 -County "GA, Talbot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302630.epw site_zip_code=31827 site_time_zone_utc_offset=-5 -County "GA, Taliaferro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302650.epw site_zip_code=30631 site_time_zone_utc_offset=-5 -County "GA, Tattnall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302670.epw site_zip_code=30427 site_time_zone_utc_offset=-5 -County "GA, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302690.epw site_zip_code=31006 site_time_zone_utc_offset=-5 -County "GA, Telfair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302710.epw site_zip_code=31055 site_time_zone_utc_offset=-5 -County "GA, Terrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302730.epw site_zip_code=39842 site_time_zone_utc_offset=-5 -County "GA, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302750.epw site_zip_code=31792 site_time_zone_utc_offset=-5 -County "GA, Tift County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302770.epw site_zip_code=31794 site_time_zone_utc_offset=-5 -County "GA, Toombs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302790.epw site_zip_code=30474 site_time_zone_utc_offset=-5 -County "GA, Towns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302810.epw site_zip_code=30546 site_time_zone_utc_offset=-5 -County "GA, Treutlen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302830.epw site_zip_code=30457 site_time_zone_utc_offset=-5 -County "GA, Troup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302850.epw site_zip_code=30241 site_time_zone_utc_offset=-5 -County "GA, Turner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302870.epw site_zip_code=31714 site_time_zone_utc_offset=-5 -County "GA, Twiggs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302890.epw site_zip_code=31044 site_time_zone_utc_offset=-5 -County "GA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302910.epw site_zip_code=30512 site_time_zone_utc_offset=-5 -County "GA, Upson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302930.epw site_zip_code=30286 site_time_zone_utc_offset=-5 -County "GA, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302950.epw site_zip_code=30741 site_time_zone_utc_offset=-5 -County "GA, Walton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302970.epw site_zip_code=30052 site_time_zone_utc_offset=-5 -County "GA, Ware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302990.epw site_zip_code=31503 site_time_zone_utc_offset=-5 -County "GA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303010.epw site_zip_code=30828 site_time_zone_utc_offset=-5 -County "GA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303030.epw site_zip_code=31082 site_time_zone_utc_offset=-5 -County "GA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303050.epw site_zip_code=31545 site_time_zone_utc_offset=-5 -County "GA, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303070.epw site_zip_code=31824 site_time_zone_utc_offset=-5 -County "GA, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303090.epw site_zip_code=30428 site_time_zone_utc_offset=-5 -County "GA, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303110.epw site_zip_code=30528 site_time_zone_utc_offset=-5 -County "GA, Whitfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303130.epw site_zip_code=30721 site_time_zone_utc_offset=-5 -County "GA, Wilcox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303150.epw site_zip_code=31001 site_time_zone_utc_offset=-5 -County "GA, Wilkes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303170.epw site_zip_code=30673 site_time_zone_utc_offset=-5 -County "GA, Wilkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303190.epw site_zip_code=31031 site_time_zone_utc_offset=-5 -County "GA, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303210.epw site_zip_code=31791 site_time_zone_utc_offset=-5 -County "HI, Hawaii County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500010.epw site_zip_code=96721 site_time_zone_utc_offset=-10 -County "HI, Honolulu County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500030.epw site_zip_code=96813 site_time_zone_utc_offset=-10 -County "HI, Kalawao County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500050.epw site_zip_code=96742 site_time_zone_utc_offset=-10 -County "HI, Kauai County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500070.epw site_zip_code=96746 site_time_zone_utc_offset=-10 -County "HI, Maui County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500090.epw site_zip_code=96793 site_time_zone_utc_offset=-10 -County "IA, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900010.epw site_zip_code=50849 site_time_zone_utc_offset=-6 -County "IA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900030.epw site_zip_code=50841 site_time_zone_utc_offset=-6 -County "IA, Allamakee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900050.epw site_zip_code=52172 site_time_zone_utc_offset=-6 -County "IA, Appanoose County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900070.epw site_zip_code=52544 site_time_zone_utc_offset=-6 -County "IA, Audubon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900090.epw site_zip_code=50025 site_time_zone_utc_offset=-6 -County "IA, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900110.epw site_zip_code=52349 site_time_zone_utc_offset=-6 -County "IA, Black Hawk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900130.epw site_zip_code=50613 site_time_zone_utc_offset=-6 -County "IA, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900150.epw site_zip_code=50036 site_time_zone_utc_offset=-6 -County "IA, Bremer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900170.epw site_zip_code=50677 site_time_zone_utc_offset=-6 -County "IA, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900190.epw site_zip_code=50644 site_time_zone_utc_offset=-6 -County "IA, Buena Vista County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900210.epw site_zip_code=50588 site_time_zone_utc_offset=-6 -County "IA, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900230.epw site_zip_code=50665 site_time_zone_utc_offset=-6 -County "IA, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900250.epw site_zip_code=50563 site_time_zone_utc_offset=-6 -County "IA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900270.epw site_zip_code=51401 site_time_zone_utc_offset=-6 -County "IA, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900290.epw site_zip_code=50022 site_time_zone_utc_offset=-6 -County "IA, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900310.epw site_zip_code=52772 site_time_zone_utc_offset=-6 -County "IA, Cerro Gordo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900330.epw site_zip_code=50401 site_time_zone_utc_offset=-6 -County "IA, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900350.epw site_zip_code=51012 site_time_zone_utc_offset=-6 -County "IA, Chickasaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900370.epw site_zip_code=50659 site_time_zone_utc_offset=-6 -County "IA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900390.epw site_zip_code=50213 site_time_zone_utc_offset=-6 -County "IA, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900410.epw site_zip_code=51301 site_time_zone_utc_offset=-6 -County "IA, Clayton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900430.epw site_zip_code=52052 site_time_zone_utc_offset=-6 -County "IA, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900450.epw site_zip_code=52732 site_time_zone_utc_offset=-6 -County "IA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900470.epw site_zip_code=51442 site_time_zone_utc_offset=-6 -County "IA, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900490.epw site_zip_code=50263 site_time_zone_utc_offset=-6 -County "IA, Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900510.epw site_zip_code=52537 site_time_zone_utc_offset=-6 -County "IA, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900530.epw site_zip_code=50144 site_time_zone_utc_offset=-6 -County "IA, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900550.epw site_zip_code=52057 site_time_zone_utc_offset=-6 -County "IA, Des Moines County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900570.epw site_zip_code=52601 site_time_zone_utc_offset=-6 -County "IA, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900590.epw site_zip_code=51360 site_time_zone_utc_offset=-6 -County "IA, Dubuque County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900610.epw site_zip_code=52001 site_time_zone_utc_offset=-6 -County "IA, Emmet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900630.epw site_zip_code=51334 site_time_zone_utc_offset=-6 -County "IA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900650.epw site_zip_code=50662 site_time_zone_utc_offset=-6 -County "IA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900670.epw site_zip_code=50616 site_time_zone_utc_offset=-6 -County "IA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900690.epw site_zip_code=50441 site_time_zone_utc_offset=-6 -County "IA, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900710.epw site_zip_code=51652 site_time_zone_utc_offset=-6 -County "IA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900730.epw site_zip_code=50129 site_time_zone_utc_offset=-6 -County "IA, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900750.epw site_zip_code=50638 site_time_zone_utc_offset=-6 -County "IA, Guthrie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900770.epw site_zip_code=50216 site_time_zone_utc_offset=-6 -County "IA, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900790.epw site_zip_code=50595 site_time_zone_utc_offset=-6 -County "IA, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900810.epw site_zip_code=50438 site_time_zone_utc_offset=-6 -County "IA, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900830.epw site_zip_code=50126 site_time_zone_utc_offset=-6 -County "IA, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900850.epw site_zip_code=51555 site_time_zone_utc_offset=-6 -County "IA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900870.epw site_zip_code=52641 site_time_zone_utc_offset=-6 -County "IA, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900890.epw site_zip_code=52136 site_time_zone_utc_offset=-6 -County "IA, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900910.epw site_zip_code=50548 site_time_zone_utc_offset=-6 -County "IA, Ida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900930.epw site_zip_code=51445 site_time_zone_utc_offset=-6 -County "IA, Iowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900950.epw site_zip_code=52361 site_time_zone_utc_offset=-6 -County "IA, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900970.epw site_zip_code=52060 site_time_zone_utc_offset=-6 -County "IA, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900990.epw site_zip_code=50208 site_time_zone_utc_offset=-6 -County "IA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901010.epw site_zip_code=52556 site_time_zone_utc_offset=-6 -County "IA, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901030.epw site_zip_code=52240 site_time_zone_utc_offset=-6 -County "IA, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901050.epw site_zip_code=52205 site_time_zone_utc_offset=-6 -County "IA, Keokuk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901070.epw site_zip_code=52591 site_time_zone_utc_offset=-6 -County "IA, Kossuth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901090.epw site_zip_code=50511 site_time_zone_utc_offset=-6 -County "IA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901110.epw site_zip_code=52627 site_time_zone_utc_offset=-6 -County "IA, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901130.epw site_zip_code=52404 site_time_zone_utc_offset=-6 -County "IA, Louisa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901150.epw site_zip_code=52653 site_time_zone_utc_offset=-6 -County "IA, Lucas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901170.epw site_zip_code=50049 site_time_zone_utc_offset=-6 -County "IA, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901190.epw site_zip_code=51246 site_time_zone_utc_offset=-6 -County "IA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901210.epw site_zip_code=50273 site_time_zone_utc_offset=-6 -County "IA, Mahaska County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901230.epw site_zip_code=52577 site_time_zone_utc_offset=-6 -County "IA, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901250.epw site_zip_code=50219 site_time_zone_utc_offset=-6 -County "IA, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901270.epw site_zip_code=50158 site_time_zone_utc_offset=-6 -County "IA, Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901290.epw site_zip_code=51534 site_time_zone_utc_offset=-6 -County "IA, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901310.epw site_zip_code=50461 site_time_zone_utc_offset=-6 -County "IA, Monona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901330.epw site_zip_code=51040 site_time_zone_utc_offset=-6 -County "IA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901350.epw site_zip_code=52531 site_time_zone_utc_offset=-6 -County "IA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901370.epw site_zip_code=51566 site_time_zone_utc_offset=-6 -County "IA, Muscatine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901390.epw site_zip_code=52761 site_time_zone_utc_offset=-6 -County "IA, O'Brien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901410.epw site_zip_code=51201 site_time_zone_utc_offset=-6 -County "IA, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901430.epw site_zip_code=51249 site_time_zone_utc_offset=-6 -County "IA, Page County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901450.epw site_zip_code=51632 site_time_zone_utc_offset=-6 -County "IA, Palo Alto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901470.epw site_zip_code=50536 site_time_zone_utc_offset=-6 -County "IA, Plymouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901490.epw site_zip_code=51031 site_time_zone_utc_offset=-6 -County "IA, Pocahontas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901510.epw site_zip_code=50574 site_time_zone_utc_offset=-6 -County "IA, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901530.epw site_zip_code=50023 site_time_zone_utc_offset=-6 -County "IA, Pottawattamie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901550.epw site_zip_code=51503 site_time_zone_utc_offset=-6 -County "IA, Poweshiek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901570.epw site_zip_code=50112 site_time_zone_utc_offset=-6 -County "IA, Ringgold County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901590.epw site_zip_code=50854 site_time_zone_utc_offset=-6 -County "IA, Sac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901610.epw site_zip_code=50583 site_time_zone_utc_offset=-6 -County "IA, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901630.epw site_zip_code=52722 site_time_zone_utc_offset=-6 -County "IA, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901650.epw site_zip_code=51537 site_time_zone_utc_offset=-6 -County "IA, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901670.epw site_zip_code=51250 site_time_zone_utc_offset=-6 -County "IA, Story County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901690.epw site_zip_code=50010 site_time_zone_utc_offset=-6 -County "IA, Tama County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901710.epw site_zip_code=52339 site_time_zone_utc_offset=-6 -County "IA, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901730.epw site_zip_code=50833 site_time_zone_utc_offset=-6 -County "IA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901750.epw site_zip_code=50801 site_time_zone_utc_offset=-6 -County "IA, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901770.epw site_zip_code=52565 site_time_zone_utc_offset=-6 -County "IA, Wapello County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901790.epw site_zip_code=52501 site_time_zone_utc_offset=-6 -County "IA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901810.epw site_zip_code=50125 site_time_zone_utc_offset=-6 -County "IA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901830.epw site_zip_code=52353 site_time_zone_utc_offset=-6 -County "IA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901850.epw site_zip_code=50060 site_time_zone_utc_offset=-6 -County "IA, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901870.epw site_zip_code=50501 site_time_zone_utc_offset=-6 -County "IA, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901890.epw site_zip_code=50436 site_time_zone_utc_offset=-6 -County "IA, Winneshiek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901910.epw site_zip_code=52101 site_time_zone_utc_offset=-6 -County "IA, Woodbury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901930.epw site_zip_code=51106 site_time_zone_utc_offset=-6 -County "IA, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901950.epw site_zip_code=50459 site_time_zone_utc_offset=-6 -County "IA, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901970.epw site_zip_code=50533 site_time_zone_utc_offset=-6 -County "ID, Ada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600010.epw site_zip_code=83646 site_time_zone_utc_offset=-7 -County "ID, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600030.epw site_zip_code=83612 site_time_zone_utc_offset=-7 -County "ID, Bannock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600050.epw site_zip_code=83201 site_time_zone_utc_offset=-7 -County "ID, Bear Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600070.epw site_zip_code=83254 site_time_zone_utc_offset=-7 -County "ID, Benewah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600090.epw site_zip_code=83861 site_time_zone_utc_offset=-8 -County "ID, Bingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600110.epw site_zip_code=83221 site_time_zone_utc_offset=-7 -County "ID, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600130.epw site_zip_code=83333 site_time_zone_utc_offset=-7 -County "ID, Boise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600150.epw site_zip_code=83716 site_time_zone_utc_offset=-7 -County "ID, Bonner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600170.epw site_zip_code=83864 site_time_zone_utc_offset=-8 -County "ID, Bonneville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600190.epw site_zip_code=83401 site_time_zone_utc_offset=-7 -County "ID, Boundary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600210.epw site_zip_code=83805 site_time_zone_utc_offset=-8 -County "ID, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600230.epw site_zip_code=83213 site_time_zone_utc_offset=-7 -County "ID, Camas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600250.epw site_zip_code=83327 site_time_zone_utc_offset=-7 -County "ID, Canyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600270.epw site_zip_code=83686 site_time_zone_utc_offset=-7 -County "ID, Caribou County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600290.epw site_zip_code=83276 site_time_zone_utc_offset=-7 -County "ID, Cassia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600310.epw site_zip_code=83318 site_time_zone_utc_offset=-7 -County "ID, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600330.epw site_zip_code=83423 site_time_zone_utc_offset=-7 -County "ID, Clearwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600350.epw site_zip_code=83544 site_time_zone_utc_offset=-8 -County "ID, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600370.epw site_zip_code=83226 site_time_zone_utc_offset=-7 -County "ID, Elmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600390.epw site_zip_code=83647 site_time_zone_utc_offset=-7 -County "ID, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600410.epw site_zip_code=83263 site_time_zone_utc_offset=-7 -County "ID, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600430.epw site_zip_code=83445 site_time_zone_utc_offset=-7 -County "ID, Gem County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600450.epw site_zip_code=83617 site_time_zone_utc_offset=-7 -County "ID, Gooding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600470.epw site_zip_code=83330 site_time_zone_utc_offset=-7 -County "ID, Idaho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600490.epw site_zip_code=83530 site_time_zone_utc_offset=-8 -County "ID, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600510.epw site_zip_code=83442 site_time_zone_utc_offset=-7 -County "ID, Jerome County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600530.epw site_zip_code=83338 site_time_zone_utc_offset=-7 -County "ID, Kootenai County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600550.epw site_zip_code=83854 site_time_zone_utc_offset=-8 -County "ID, Latah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600570.epw site_zip_code=83843 site_time_zone_utc_offset=-8 -County "ID, Lemhi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600590.epw site_zip_code=83467 site_time_zone_utc_offset=-7 -County "ID, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600610.epw site_zip_code=83536 site_time_zone_utc_offset=-8 -County "ID, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600630.epw site_zip_code=83352 site_time_zone_utc_offset=-7 -County "ID, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600650.epw site_zip_code=83440 site_time_zone_utc_offset=-7 -County "ID, Minidoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600670.epw site_zip_code=83350 site_time_zone_utc_offset=-7 -County "ID, Nez Perce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600690.epw site_zip_code=83501 site_time_zone_utc_offset=-8 -County "ID, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600710.epw site_zip_code=83252 site_time_zone_utc_offset=-7 -County "ID, Owyhee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600730.epw site_zip_code=83628 site_time_zone_utc_offset=-7 -County "ID, Payette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600750.epw site_zip_code=83661 site_time_zone_utc_offset=-7 -County "ID, Power County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600770.epw site_zip_code=83211 site_time_zone_utc_offset=-7 -County "ID, Shoshone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600790.epw site_zip_code=83837 site_time_zone_utc_offset=-8 -County "ID, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600810.epw site_zip_code=83455 site_time_zone_utc_offset=-7 -County "ID, Twin Falls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600830.epw site_zip_code=83301 site_time_zone_utc_offset=-7 -County "ID, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600850.epw site_zip_code=83638 site_time_zone_utc_offset=-7 -County "ID, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600870.epw site_zip_code=83672 site_time_zone_utc_offset=-7 -County "IL, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700010.epw site_zip_code=62301 site_time_zone_utc_offset=-6 -County "IL, Alexander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700030.epw site_zip_code=62914 site_time_zone_utc_offset=-6 -County "IL, Bond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700050.epw site_zip_code=62246 site_time_zone_utc_offset=-6 -County "IL, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700070.epw site_zip_code=61008 site_time_zone_utc_offset=-6 -County "IL, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700090.epw site_zip_code=62353 site_time_zone_utc_offset=-6 -County "IL, Bureau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700110.epw site_zip_code=61356 site_time_zone_utc_offset=-6 -County "IL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700130.epw site_zip_code=62047 site_time_zone_utc_offset=-6 -County "IL, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700150.epw site_zip_code=61074 site_time_zone_utc_offset=-6 -County "IL, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700170.epw site_zip_code=62618 site_time_zone_utc_offset=-6 -County "IL, Champaign County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700190.epw site_zip_code=61820 site_time_zone_utc_offset=-6 -County "IL, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700210.epw site_zip_code=62568 site_time_zone_utc_offset=-6 -County "IL, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700230.epw site_zip_code=62441 site_time_zone_utc_offset=-6 -County "IL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700250.epw site_zip_code=62839 site_time_zone_utc_offset=-6 -County "IL, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700270.epw site_zip_code=62231 site_time_zone_utc_offset=-6 -County "IL, Coles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700290.epw site_zip_code=61938 site_time_zone_utc_offset=-6 -County "IL, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700310.epw site_zip_code=60657 site_time_zone_utc_offset=-6 -County "IL, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700330.epw site_zip_code=62454 site_time_zone_utc_offset=-6 -County "IL, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700350.epw site_zip_code=62428 site_time_zone_utc_offset=-6 -County "IL, De Witt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700390.epw site_zip_code=61727 site_time_zone_utc_offset=-6 -County "IL, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700370.epw site_zip_code=60115 site_time_zone_utc_offset=-6 -County "IL, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700410.epw site_zip_code=61953 site_time_zone_utc_offset=-6 -County "IL, DuPage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700430.epw site_zip_code=60148 site_time_zone_utc_offset=-6 -County "IL, Edgar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700450.epw site_zip_code=61944 site_time_zone_utc_offset=-6 -County "IL, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700470.epw site_zip_code=62806 site_time_zone_utc_offset=-6 -County "IL, Effingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700490.epw site_zip_code=62401 site_time_zone_utc_offset=-6 -County "IL, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700510.epw site_zip_code=62471 site_time_zone_utc_offset=-6 -County "IL, Ford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700530.epw site_zip_code=60957 site_time_zone_utc_offset=-6 -County "IL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700550.epw site_zip_code=62896 site_time_zone_utc_offset=-6 -County "IL, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700570.epw site_zip_code=61520 site_time_zone_utc_offset=-6 -County "IL, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700590.epw site_zip_code=62984 site_time_zone_utc_offset=-6 -County "IL, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700610.epw site_zip_code=62016 site_time_zone_utc_offset=-6 -County "IL, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700630.epw site_zip_code=60450 site_time_zone_utc_offset=-6 -County "IL, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700650.epw site_zip_code=62859 site_time_zone_utc_offset=-6 -County "IL, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700670.epw site_zip_code=62321 site_time_zone_utc_offset=-6 -County "IL, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700690.epw site_zip_code=62931 site_time_zone_utc_offset=-6 -County "IL, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700710.epw site_zip_code=61469 site_time_zone_utc_offset=-6 -County "IL, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700730.epw site_zip_code=61443 site_time_zone_utc_offset=-6 -County "IL, Iroquois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700750.epw site_zip_code=60970 site_time_zone_utc_offset=-6 -County "IL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700770.epw site_zip_code=62901 site_time_zone_utc_offset=-6 -County "IL, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700790.epw site_zip_code=62448 site_time_zone_utc_offset=-6 -County "IL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700810.epw site_zip_code=62864 site_time_zone_utc_offset=-6 -County "IL, Jersey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700830.epw site_zip_code=62052 site_time_zone_utc_offset=-6 -County "IL, Jo Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700850.epw site_zip_code=61036 site_time_zone_utc_offset=-6 -County "IL, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700870.epw site_zip_code=62995 site_time_zone_utc_offset=-6 -County "IL, Kane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700890.epw site_zip_code=60506 site_time_zone_utc_offset=-6 -County "IL, Kankakee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700910.epw site_zip_code=60901 site_time_zone_utc_offset=-6 -County "IL, Kendall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700930.epw site_zip_code=60543 site_time_zone_utc_offset=-6 -County "IL, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700950.epw site_zip_code=61401 site_time_zone_utc_offset=-6 -County "IL, LaSalle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700990.epw site_zip_code=61350 site_time_zone_utc_offset=-6 -County "IL, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700970.epw site_zip_code=60085 site_time_zone_utc_offset=-6 -County "IL, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701010.epw site_zip_code=62439 site_time_zone_utc_offset=-6 -County "IL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701030.epw site_zip_code=61021 site_time_zone_utc_offset=-6 -County "IL, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701050.epw site_zip_code=61764 site_time_zone_utc_offset=-6 -County "IL, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701070.epw site_zip_code=62656 site_time_zone_utc_offset=-6 -County "IL, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701150.epw site_zip_code=62521 site_time_zone_utc_offset=-6 -County "IL, Macoupin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701170.epw site_zip_code=62626 site_time_zone_utc_offset=-6 -County "IL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701190.epw site_zip_code=62040 site_time_zone_utc_offset=-6 -County "IL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701210.epw site_zip_code=62801 site_time_zone_utc_offset=-6 -County "IL, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701230.epw site_zip_code=61540 site_time_zone_utc_offset=-6 -County "IL, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701250.epw site_zip_code=62644 site_time_zone_utc_offset=-6 -County "IL, Massac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701270.epw site_zip_code=62960 site_time_zone_utc_offset=-6 -County "IL, McDonough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701090.epw site_zip_code=61455 site_time_zone_utc_offset=-6 -County "IL, McHenry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701110.epw site_zip_code=60014 site_time_zone_utc_offset=-6 -County "IL, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701130.epw site_zip_code=61761 site_time_zone_utc_offset=-6 -County "IL, Menard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701290.epw site_zip_code=62675 site_time_zone_utc_offset=-6 -County "IL, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701310.epw site_zip_code=61231 site_time_zone_utc_offset=-6 -County "IL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701330.epw site_zip_code=62298 site_time_zone_utc_offset=-6 -County "IL, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701350.epw site_zip_code=62056 site_time_zone_utc_offset=-6 -County "IL, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701370.epw site_zip_code=62650 site_time_zone_utc_offset=-6 -County "IL, Moultrie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701390.epw site_zip_code=61951 site_time_zone_utc_offset=-6 -County "IL, Ogle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701410.epw site_zip_code=61068 site_time_zone_utc_offset=-6 -County "IL, Peoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701430.epw site_zip_code=61604 site_time_zone_utc_offset=-6 -County "IL, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701450.epw site_zip_code=62832 site_time_zone_utc_offset=-6 -County "IL, Piatt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701470.epw site_zip_code=61856 site_time_zone_utc_offset=-6 -County "IL, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701490.epw site_zip_code=62363 site_time_zone_utc_offset=-6 -County "IL, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701510.epw site_zip_code=62938 site_time_zone_utc_offset=-6 -County "IL, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701530.epw site_zip_code=62964 site_time_zone_utc_offset=-6 -County "IL, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701550.epw site_zip_code=61326 site_time_zone_utc_offset=-6 -County "IL, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701570.epw site_zip_code=62286 site_time_zone_utc_offset=-6 -County "IL, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701590.epw site_zip_code=62450 site_time_zone_utc_offset=-6 -County "IL, Rock Island County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701610.epw site_zip_code=61265 site_time_zone_utc_offset=-6 -County "IL, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701650.epw site_zip_code=62946 site_time_zone_utc_offset=-6 -County "IL, Sangamon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701670.epw site_zip_code=62704 site_time_zone_utc_offset=-6 -County "IL, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701690.epw site_zip_code=62681 site_time_zone_utc_offset=-6 -County "IL, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701710.epw site_zip_code=62694 site_time_zone_utc_offset=-6 -County "IL, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701730.epw site_zip_code=62565 site_time_zone_utc_offset=-6 -County "IL, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701630.epw site_zip_code=62269 site_time_zone_utc_offset=-6 -County "IL, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701750.epw site_zip_code=61491 site_time_zone_utc_offset=-6 -County "IL, Stephenson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701770.epw site_zip_code=61032 site_time_zone_utc_offset=-6 -County "IL, Tazewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701790.epw site_zip_code=61554 site_time_zone_utc_offset=-6 -County "IL, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701810.epw site_zip_code=62906 site_time_zone_utc_offset=-6 -County "IL, Vermilion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701830.epw site_zip_code=61832 site_time_zone_utc_offset=-6 -County "IL, Wabash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701850.epw site_zip_code=62863 site_time_zone_utc_offset=-6 -County "IL, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701870.epw site_zip_code=61462 site_time_zone_utc_offset=-6 -County "IL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701890.epw site_zip_code=62263 site_time_zone_utc_offset=-6 -County "IL, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701910.epw site_zip_code=62837 site_time_zone_utc_offset=-6 -County "IL, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701930.epw site_zip_code=62821 site_time_zone_utc_offset=-6 -County "IL, Whiteside County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701950.epw site_zip_code=61081 site_time_zone_utc_offset=-6 -County "IL, Will County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701970.epw site_zip_code=60435 site_time_zone_utc_offset=-6 -County "IL, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701990.epw site_zip_code=62959 site_time_zone_utc_offset=-6 -County "IL, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1702010.epw site_zip_code=61107 site_time_zone_utc_offset=-6 -County "IL, Woodford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1702030.epw site_zip_code=61548 site_time_zone_utc_offset=-6 -County "IN, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800010.epw site_zip_code=46733 site_time_zone_utc_offset=-5 -County "IN, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800030.epw site_zip_code=46835 site_time_zone_utc_offset=-5 -County "IN, Bartholomew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800050.epw site_zip_code=47201 site_time_zone_utc_offset=-5 -County "IN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800070.epw site_zip_code=47944 site_time_zone_utc_offset=-5 -County "IN, Blackford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800090.epw site_zip_code=47348 site_time_zone_utc_offset=-5 -County "IN, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800110.epw site_zip_code=46077 site_time_zone_utc_offset=-5 -County "IN, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800130.epw site_zip_code=47448 site_time_zone_utc_offset=-5 -County "IN, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800150.epw site_zip_code=46923 site_time_zone_utc_offset=-5 -County "IN, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800170.epw site_zip_code=46947 site_time_zone_utc_offset=-5 -County "IN, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800190.epw site_zip_code=47130 site_time_zone_utc_offset=-5 -County "IN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800210.epw site_zip_code=47834 site_time_zone_utc_offset=-5 -County "IN, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800230.epw site_zip_code=46041 site_time_zone_utc_offset=-5 -County "IN, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800250.epw site_zip_code=47118 site_time_zone_utc_offset=-5 -County "IN, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800270.epw site_zip_code=47501 site_time_zone_utc_offset=-5 -County "IN, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800330.epw site_zip_code=46706 site_time_zone_utc_offset=-5 -County "IN, Dearborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800290.epw site_zip_code=47025 site_time_zone_utc_offset=-5 -County "IN, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800310.epw site_zip_code=47240 site_time_zone_utc_offset=-5 -County "IN, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800350.epw site_zip_code=47304 site_time_zone_utc_offset=-5 -County "IN, Dubois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800370.epw site_zip_code=47546 site_time_zone_utc_offset=-5 -County "IN, Elkhart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800390.epw site_zip_code=46514 site_time_zone_utc_offset=-5 -County "IN, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800410.epw site_zip_code=47331 site_time_zone_utc_offset=-5 -County "IN, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800430.epw site_zip_code=47150 site_time_zone_utc_offset=-5 -County "IN, Fountain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800450.epw site_zip_code=47918 site_time_zone_utc_offset=-5 -County "IN, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800470.epw site_zip_code=47012 site_time_zone_utc_offset=-5 -County "IN, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800490.epw site_zip_code=46975 site_time_zone_utc_offset=-5 -County "IN, Gibson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800510.epw site_zip_code=47670 site_time_zone_utc_offset=-6 -County "IN, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800530.epw site_zip_code=46953 site_time_zone_utc_offset=-5 -County "IN, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800550.epw site_zip_code=47441 site_time_zone_utc_offset=-5 -County "IN, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800570.epw site_zip_code=46032 site_time_zone_utc_offset=-5 -County "IN, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800590.epw site_zip_code=46140 site_time_zone_utc_offset=-5 -County "IN, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800610.epw site_zip_code=47112 site_time_zone_utc_offset=-5 -County "IN, Hendricks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800630.epw site_zip_code=46112 site_time_zone_utc_offset=-5 -County "IN, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800650.epw site_zip_code=47362 site_time_zone_utc_offset=-5 -County "IN, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800670.epw site_zip_code=46901 site_time_zone_utc_offset=-5 -County "IN, Huntington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800690.epw site_zip_code=46750 site_time_zone_utc_offset=-5 -County "IN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800710.epw site_zip_code=47274 site_time_zone_utc_offset=-5 -County "IN, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800730.epw site_zip_code=47978 site_time_zone_utc_offset=-6 -County "IN, Jay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800750.epw site_zip_code=47371 site_time_zone_utc_offset=-5 -County "IN, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800770.epw site_zip_code=47250 site_time_zone_utc_offset=-5 -County "IN, Jennings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800790.epw site_zip_code=47265 site_time_zone_utc_offset=-5 -County "IN, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800810.epw site_zip_code=46143 site_time_zone_utc_offset=-5 -County "IN, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800830.epw site_zip_code=47591 site_time_zone_utc_offset=-5 -County "IN, Kosciusko County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800850.epw site_zip_code=46580 site_time_zone_utc_offset=-5 -County "IN, LaGrange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800870.epw site_zip_code=46761 site_time_zone_utc_offset=-5 -County "IN, LaPorte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800910.epw site_zip_code=46360 site_time_zone_utc_offset=-6 -County "IN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800890.epw site_zip_code=46307 site_time_zone_utc_offset=-6 -County "IN, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800930.epw site_zip_code=47421 site_time_zone_utc_offset=-5 -County "IN, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800950.epw site_zip_code=46016 site_time_zone_utc_offset=-5 -County "IN, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800970.epw site_zip_code=46227 site_time_zone_utc_offset=-5 -County "IN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800990.epw site_zip_code=46563 site_time_zone_utc_offset=-5 -County "IN, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801010.epw site_zip_code=47581 site_time_zone_utc_offset=-5 -County "IN, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801030.epw site_zip_code=46970 site_time_zone_utc_offset=-5 -County "IN, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801050.epw site_zip_code=47401 site_time_zone_utc_offset=-5 -County "IN, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801070.epw site_zip_code=47933 site_time_zone_utc_offset=-5 -County "IN, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801090.epw site_zip_code=46151 site_time_zone_utc_offset=-5 -County "IN, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801110.epw site_zip_code=46349 site_time_zone_utc_offset=-6 -County "IN, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801130.epw site_zip_code=46755 site_time_zone_utc_offset=-5 -County "IN, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801150.epw site_zip_code=47040 site_time_zone_utc_offset=-5 -County "IN, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801170.epw site_zip_code=47454 site_time_zone_utc_offset=-5 -County "IN, Owen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801190.epw site_zip_code=47460 site_time_zone_utc_offset=-5 -County "IN, Parke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801210.epw site_zip_code=47872 site_time_zone_utc_offset=-5 -County "IN, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801230.epw site_zip_code=47586 site_time_zone_utc_offset=-6 -County "IN, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801250.epw site_zip_code=47567 site_time_zone_utc_offset=-5 -County "IN, Porter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801270.epw site_zip_code=46383 site_time_zone_utc_offset=-6 -County "IN, Posey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801290.epw site_zip_code=47620 site_time_zone_utc_offset=-6 -County "IN, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801310.epw site_zip_code=46996 site_time_zone_utc_offset=-5 -County "IN, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801330.epw site_zip_code=46135 site_time_zone_utc_offset=-5 -County "IN, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801350.epw site_zip_code=47394 site_time_zone_utc_offset=-5 -County "IN, Ripley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801370.epw site_zip_code=47006 site_time_zone_utc_offset=-5 -County "IN, Rush County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801390.epw site_zip_code=46173 site_time_zone_utc_offset=-5 -County "IN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801430.epw site_zip_code=47170 site_time_zone_utc_offset=-5 -County "IN, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801450.epw site_zip_code=46176 site_time_zone_utc_offset=-5 -County "IN, Spencer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801470.epw site_zip_code=47635 site_time_zone_utc_offset=-6 -County "IN, St. Joseph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801410.epw site_zip_code=46544 site_time_zone_utc_offset=-5 -County "IN, Starke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801490.epw site_zip_code=46534 site_time_zone_utc_offset=-6 -County "IN, Steuben County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801510.epw site_zip_code=46703 site_time_zone_utc_offset=-5 -County "IN, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801530.epw site_zip_code=47882 site_time_zone_utc_offset=-5 -County "IN, Switzerland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801550.epw site_zip_code=47043 site_time_zone_utc_offset=-5 -County "IN, Tippecanoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801570.epw site_zip_code=47906 site_time_zone_utc_offset=-5 -County "IN, Tipton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801590.epw site_zip_code=46072 site_time_zone_utc_offset=-5 -County "IN, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801610.epw site_zip_code=47353 site_time_zone_utc_offset=-5 -County "IN, Vanderburgh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801630.epw site_zip_code=47714 site_time_zone_utc_offset=-6 -County "IN, Vermillion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801650.epw site_zip_code=47842 site_time_zone_utc_offset=-5 -County "IN, Vigo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801670.epw site_zip_code=47802 site_time_zone_utc_offset=-5 -County "IN, Wabash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801690.epw site_zip_code=46992 site_time_zone_utc_offset=-5 -County "IN, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801710.epw site_zip_code=47993 site_time_zone_utc_offset=-5 -County "IN, Warrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801730.epw site_zip_code=47630 site_time_zone_utc_offset=-6 -County "IN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801750.epw site_zip_code=47167 site_time_zone_utc_offset=-5 -County "IN, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801770.epw site_zip_code=47374 site_time_zone_utc_offset=-5 -County "IN, Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801790.epw site_zip_code=46714 site_time_zone_utc_offset=-5 -County "IN, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801810.epw site_zip_code=47960 site_time_zone_utc_offset=-5 -County "IN, Whitley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801830.epw site_zip_code=46725 site_time_zone_utc_offset=-5 -County "KS, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000010.epw site_zip_code=66749 site_time_zone_utc_offset=-6 -County "KS, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000030.epw site_zip_code=66032 site_time_zone_utc_offset=-6 -County "KS, Atchison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000050.epw site_zip_code=66002 site_time_zone_utc_offset=-6 -County "KS, Barber County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000070.epw site_zip_code=67104 site_time_zone_utc_offset=-6 -County "KS, Barton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000090.epw site_zip_code=67530 site_time_zone_utc_offset=-6 -County "KS, Bourbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000110.epw site_zip_code=66701 site_time_zone_utc_offset=-6 -County "KS, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000130.epw site_zip_code=66434 site_time_zone_utc_offset=-6 -County "KS, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000150.epw site_zip_code=67042 site_time_zone_utc_offset=-6 -County "KS, Chase County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000170.epw site_zip_code=66845 site_time_zone_utc_offset=-6 -County "KS, Chautauqua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000190.epw site_zip_code=67361 site_time_zone_utc_offset=-6 -County "KS, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000210.epw site_zip_code=66713 site_time_zone_utc_offset=-6 -County "KS, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000230.epw site_zip_code=67756 site_time_zone_utc_offset=-6 -County "KS, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000250.epw site_zip_code=67865 site_time_zone_utc_offset=-6 -County "KS, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000270.epw site_zip_code=67432 site_time_zone_utc_offset=-6 -County "KS, Cloud County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000290.epw site_zip_code=66901 site_time_zone_utc_offset=-6 -County "KS, Coffey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000310.epw site_zip_code=66839 site_time_zone_utc_offset=-6 -County "KS, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000330.epw site_zip_code=67029 site_time_zone_utc_offset=-6 -County "KS, Cowley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000350.epw site_zip_code=67005 site_time_zone_utc_offset=-6 -County "KS, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000370.epw site_zip_code=66762 site_time_zone_utc_offset=-6 -County "KS, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000390.epw site_zip_code=67749 site_time_zone_utc_offset=-6 -County "KS, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000410.epw site_zip_code=67410 site_time_zone_utc_offset=-6 -County "KS, Doniphan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000430.epw site_zip_code=66090 site_time_zone_utc_offset=-6 -County "KS, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000450.epw site_zip_code=66049 site_time_zone_utc_offset=-6 -County "KS, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000470.epw site_zip_code=67547 site_time_zone_utc_offset=-6 -County "KS, Elk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000490.epw site_zip_code=67349 site_time_zone_utc_offset=-6 -County "KS, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000510.epw site_zip_code=67601 site_time_zone_utc_offset=-6 -County "KS, Ellsworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000530.epw site_zip_code=67439 site_time_zone_utc_offset=-6 -County "KS, Finney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000550.epw site_zip_code=67846 site_time_zone_utc_offset=-6 -County "KS, Ford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000570.epw site_zip_code=67801 site_time_zone_utc_offset=-6 -County "KS, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000590.epw site_zip_code=66067 site_time_zone_utc_offset=-6 -County "KS, Geary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000610.epw site_zip_code=66441 site_time_zone_utc_offset=-6 -County "KS, Gove County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000630.epw site_zip_code=67752 site_time_zone_utc_offset=-6 -County "KS, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000650.epw site_zip_code=67642 site_time_zone_utc_offset=-6 -County "KS, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000670.epw site_zip_code=67880 site_time_zone_utc_offset=-6 -County "KS, Gray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000690.epw site_zip_code=67867 site_time_zone_utc_offset=-6 -County "KS, Greeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000710.epw site_zip_code=67879 site_time_zone_utc_offset=-7 -County "KS, Greenwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000730.epw site_zip_code=67045 site_time_zone_utc_offset=-6 -County "KS, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000750.epw site_zip_code=67878 site_time_zone_utc_offset=-7 -County "KS, Harper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000770.epw site_zip_code=67003 site_time_zone_utc_offset=-6 -County "KS, Harvey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000790.epw site_zip_code=67114 site_time_zone_utc_offset=-6 -County "KS, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000810.epw site_zip_code=67877 site_time_zone_utc_offset=-6 -County "KS, Hodgeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000830.epw site_zip_code=67854 site_time_zone_utc_offset=-6 -County "KS, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000850.epw site_zip_code=66436 site_time_zone_utc_offset=-6 -County "KS, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000870.epw site_zip_code=66512 site_time_zone_utc_offset=-6 -County "KS, Jewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000890.epw site_zip_code=66956 site_time_zone_utc_offset=-6 -County "KS, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000910.epw site_zip_code=66062 site_time_zone_utc_offset=-6 -County "KS, Kearny County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000930.epw site_zip_code=67860 site_time_zone_utc_offset=-6 -County "KS, Kingman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000950.epw site_zip_code=67068 site_time_zone_utc_offset=-6 -County "KS, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000970.epw site_zip_code=67054 site_time_zone_utc_offset=-6 -County "KS, Labette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000990.epw site_zip_code=67357 site_time_zone_utc_offset=-6 -County "KS, Lane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001010.epw site_zip_code=67839 site_time_zone_utc_offset=-6 -County "KS, Leavenworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001030.epw site_zip_code=66048 site_time_zone_utc_offset=-6 -County "KS, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001050.epw site_zip_code=67455 site_time_zone_utc_offset=-6 -County "KS, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001070.epw site_zip_code=66040 site_time_zone_utc_offset=-6 -County "KS, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001090.epw site_zip_code=67748 site_time_zone_utc_offset=-6 -County "KS, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001110.epw site_zip_code=66801 site_time_zone_utc_offset=-6 -County "KS, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001150.epw site_zip_code=67063 site_time_zone_utc_offset=-6 -County "KS, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001170.epw site_zip_code=66508 site_time_zone_utc_offset=-6 -County "KS, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001130.epw site_zip_code=67460 site_time_zone_utc_offset=-6 -County "KS, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001190.epw site_zip_code=67864 site_time_zone_utc_offset=-6 -County "KS, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001210.epw site_zip_code=66071 site_time_zone_utc_offset=-6 -County "KS, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001230.epw site_zip_code=67420 site_time_zone_utc_offset=-6 -County "KS, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001250.epw site_zip_code=67301 site_time_zone_utc_offset=-6 -County "KS, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001270.epw site_zip_code=66846 site_time_zone_utc_offset=-6 -County "KS, Morton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001290.epw site_zip_code=67950 site_time_zone_utc_offset=-6 -County "KS, Nemaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001310.epw site_zip_code=66538 site_time_zone_utc_offset=-6 -County "KS, Neosho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001330.epw site_zip_code=66720 site_time_zone_utc_offset=-6 -County "KS, Ness County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001350.epw site_zip_code=67560 site_time_zone_utc_offset=-6 -County "KS, Norton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001370.epw site_zip_code=67654 site_time_zone_utc_offset=-6 -County "KS, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001390.epw site_zip_code=66523 site_time_zone_utc_offset=-6 -County "KS, Osborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001410.epw site_zip_code=67473 site_time_zone_utc_offset=-6 -County "KS, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001430.epw site_zip_code=67467 site_time_zone_utc_offset=-6 -County "KS, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001450.epw site_zip_code=67550 site_time_zone_utc_offset=-6 -County "KS, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001470.epw site_zip_code=67661 site_time_zone_utc_offset=-6 -County "KS, Pottawatomie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001490.epw site_zip_code=66547 site_time_zone_utc_offset=-6 -County "KS, Pratt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001510.epw site_zip_code=67124 site_time_zone_utc_offset=-6 -County "KS, Rawlins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001530.epw site_zip_code=67730 site_time_zone_utc_offset=-6 -County "KS, Reno County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001550.epw site_zip_code=67501 site_time_zone_utc_offset=-6 -County "KS, Republic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001570.epw site_zip_code=66935 site_time_zone_utc_offset=-6 -County "KS, Rice County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001590.epw site_zip_code=67554 site_time_zone_utc_offset=-6 -County "KS, Riley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001610.epw site_zip_code=66502 site_time_zone_utc_offset=-6 -County "KS, Rooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001630.epw site_zip_code=67663 site_time_zone_utc_offset=-6 -County "KS, Rush County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001650.epw site_zip_code=67548 site_time_zone_utc_offset=-6 -County "KS, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001670.epw site_zip_code=67665 site_time_zone_utc_offset=-6 -County "KS, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001690.epw site_zip_code=67401 site_time_zone_utc_offset=-6 -County "KS, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001710.epw site_zip_code=67871 site_time_zone_utc_offset=-6 -County "KS, Sedgwick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001730.epw site_zip_code=67212 site_time_zone_utc_offset=-6 -County "KS, Seward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001750.epw site_zip_code=67901 site_time_zone_utc_offset=-6 -County "KS, Shawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001770.epw site_zip_code=66614 site_time_zone_utc_offset=-6 -County "KS, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001790.epw site_zip_code=67740 site_time_zone_utc_offset=-6 -County "KS, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001810.epw site_zip_code=67735 site_time_zone_utc_offset=-7 -County "KS, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001830.epw site_zip_code=66967 site_time_zone_utc_offset=-6 -County "KS, Stafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001850.epw site_zip_code=67576 site_time_zone_utc_offset=-6 -County "KS, Stanton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001870.epw site_zip_code=67855 site_time_zone_utc_offset=-6 -County "KS, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001890.epw site_zip_code=67951 site_time_zone_utc_offset=-6 -County "KS, Sumner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001910.epw site_zip_code=67152 site_time_zone_utc_offset=-6 -County "KS, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001930.epw site_zip_code=67701 site_time_zone_utc_offset=-6 -County "KS, Trego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001950.epw site_zip_code=67672 site_time_zone_utc_offset=-6 -County "KS, Wabaunsee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001970.epw site_zip_code=66401 site_time_zone_utc_offset=-6 -County "KS, Wallace County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001990.epw site_zip_code=67758 site_time_zone_utc_offset=-7 -County "KS, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002010.epw site_zip_code=66968 site_time_zone_utc_offset=-6 -County "KS, Wichita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002030.epw site_zip_code=67861 site_time_zone_utc_offset=-6 -County "KS, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002050.epw site_zip_code=66736 site_time_zone_utc_offset=-6 -County "KS, Woodson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002070.epw site_zip_code=66783 site_time_zone_utc_offset=-6 -County "KS, Wyandotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002090.epw site_zip_code=66102 site_time_zone_utc_offset=-6 -County "KY, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100010.epw site_zip_code=42728 site_time_zone_utc_offset=-6 -County "KY, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100030.epw site_zip_code=42164 site_time_zone_utc_offset=-6 -County "KY, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100050.epw site_zip_code=40342 site_time_zone_utc_offset=-5 -County "KY, Ballard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100070.epw site_zip_code=42053 site_time_zone_utc_offset=-6 -County "KY, Barren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100090.epw site_zip_code=42141 site_time_zone_utc_offset=-6 -County "KY, Bath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100110.epw site_zip_code=40360 site_time_zone_utc_offset=-5 -County "KY, Bell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100130.epw site_zip_code=40965 site_time_zone_utc_offset=-5 -County "KY, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100150.epw site_zip_code=41042 site_time_zone_utc_offset=-5 -County "KY, Bourbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100170.epw site_zip_code=40361 site_time_zone_utc_offset=-5 -County "KY, Boyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100190.epw site_zip_code=41102 site_time_zone_utc_offset=-5 -County "KY, Boyle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100210.epw site_zip_code=40422 site_time_zone_utc_offset=-5 -County "KY, Bracken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100230.epw site_zip_code=41004 site_time_zone_utc_offset=-5 -County "KY, Breathitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100250.epw site_zip_code=41339 site_time_zone_utc_offset=-5 -County "KY, Breckinridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100270.epw site_zip_code=40143 site_time_zone_utc_offset=-6 -County "KY, Bullitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100290.epw site_zip_code=40165 site_time_zone_utc_offset=-5 -County "KY, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100310.epw site_zip_code=42261 site_time_zone_utc_offset=-6 -County "KY, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100330.epw site_zip_code=42445 site_time_zone_utc_offset=-6 -County "KY, Calloway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100350.epw site_zip_code=42071 site_time_zone_utc_offset=-6 -County "KY, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100370.epw site_zip_code=41071 site_time_zone_utc_offset=-5 -County "KY, Carlisle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100390.epw site_zip_code=42023 site_time_zone_utc_offset=-6 -County "KY, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100410.epw site_zip_code=41008 site_time_zone_utc_offset=-5 -County "KY, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100430.epw site_zip_code=41143 site_time_zone_utc_offset=-5 -County "KY, Casey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100450.epw site_zip_code=42539 site_time_zone_utc_offset=-5 -County "KY, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100470.epw site_zip_code=42240 site_time_zone_utc_offset=-6 -County "KY, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100490.epw site_zip_code=40391 site_time_zone_utc_offset=-5 -County "KY, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100510.epw site_zip_code=40962 site_time_zone_utc_offset=-5 -County "KY, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100530.epw site_zip_code=42602 site_time_zone_utc_offset=-6 -County "KY, Crittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100550.epw site_zip_code=42064 site_time_zone_utc_offset=-6 -County "KY, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100570.epw site_zip_code=42717 site_time_zone_utc_offset=-6 -County "KY, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100590.epw site_zip_code=42301 site_time_zone_utc_offset=-6 -County "KY, Edmonson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100610.epw site_zip_code=42210 site_time_zone_utc_offset=-6 -County "KY, Elliott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100630.epw site_zip_code=41171 site_time_zone_utc_offset=-5 -County "KY, Estill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100650.epw site_zip_code=40336 site_time_zone_utc_offset=-5 -County "KY, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100670.epw site_zip_code=40509 site_time_zone_utc_offset=-5 -County "KY, Fleming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100690.epw site_zip_code=41041 site_time_zone_utc_offset=-5 -County "KY, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100710.epw site_zip_code=41653 site_time_zone_utc_offset=-5 -County "KY, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100730.epw site_zip_code=40601 site_time_zone_utc_offset=-5 -County "KY, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100750.epw site_zip_code=42041 site_time_zone_utc_offset=-6 -County "KY, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100770.epw site_zip_code=41095 site_time_zone_utc_offset=-5 -County "KY, Garrard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100790.epw site_zip_code=40444 site_time_zone_utc_offset=-5 -County "KY, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100810.epw site_zip_code=41035 site_time_zone_utc_offset=-5 -County "KY, Graves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100830.epw site_zip_code=42066 site_time_zone_utc_offset=-6 -County "KY, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100850.epw site_zip_code=42754 site_time_zone_utc_offset=-6 -County "KY, Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100870.epw site_zip_code=42743 site_time_zone_utc_offset=-6 -County "KY, Greenup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100890.epw site_zip_code=41144 site_time_zone_utc_offset=-5 -County "KY, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100910.epw site_zip_code=42348 site_time_zone_utc_offset=-6 -County "KY, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100930.epw site_zip_code=42701 site_time_zone_utc_offset=-5 -County "KY, Harlan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100950.epw site_zip_code=40831 site_time_zone_utc_offset=-5 -County "KY, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100970.epw site_zip_code=41031 site_time_zone_utc_offset=-5 -County "KY, Hart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100990.epw site_zip_code=42765 site_time_zone_utc_offset=-6 -County "KY, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101010.epw site_zip_code=42420 site_time_zone_utc_offset=-6 -County "KY, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101030.epw site_zip_code=40019 site_time_zone_utc_offset=-5 -County "KY, Hickman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101050.epw site_zip_code=42031 site_time_zone_utc_offset=-6 -County "KY, Hopkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101070.epw site_zip_code=42431 site_time_zone_utc_offset=-6 -County "KY, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101090.epw site_zip_code=40447 site_time_zone_utc_offset=-5 -County "KY, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101110.epw site_zip_code=40214 site_time_zone_utc_offset=-5 -County "KY, Jessamine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101130.epw site_zip_code=40356 site_time_zone_utc_offset=-5 -County "KY, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101150.epw site_zip_code=41240 site_time_zone_utc_offset=-5 -County "KY, Kenton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101170.epw site_zip_code=41017 site_time_zone_utc_offset=-5 -County "KY, Knott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101190.epw site_zip_code=41822 site_time_zone_utc_offset=-5 -County "KY, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101210.epw site_zip_code=40906 site_time_zone_utc_offset=-5 -County "KY, Larue County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101230.epw site_zip_code=42748 site_time_zone_utc_offset=-5 -County "KY, Laurel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101250.epw site_zip_code=40741 site_time_zone_utc_offset=-5 -County "KY, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101270.epw site_zip_code=41230 site_time_zone_utc_offset=-5 -County "KY, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101290.epw site_zip_code=41311 site_time_zone_utc_offset=-5 -County "KY, Leslie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101310.epw site_zip_code=41749 site_time_zone_utc_offset=-5 -County "KY, Letcher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101330.epw site_zip_code=41858 site_time_zone_utc_offset=-5 -County "KY, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101350.epw site_zip_code=41179 site_time_zone_utc_offset=-5 -County "KY, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101370.epw site_zip_code=40484 site_time_zone_utc_offset=-5 -County "KY, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101390.epw site_zip_code=42045 site_time_zone_utc_offset=-6 -County "KY, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101410.epw site_zip_code=42276 site_time_zone_utc_offset=-6 -County "KY, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101430.epw site_zip_code=42038 site_time_zone_utc_offset=-6 -County "KY, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101510.epw site_zip_code=40475 site_time_zone_utc_offset=-5 -County "KY, Magoffin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101530.epw site_zip_code=41465 site_time_zone_utc_offset=-5 -County "KY, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101550.epw site_zip_code=40033 site_time_zone_utc_offset=-5 -County "KY, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101570.epw site_zip_code=42025 site_time_zone_utc_offset=-6 -County "KY, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101590.epw site_zip_code=41224 site_time_zone_utc_offset=-5 -County "KY, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101610.epw site_zip_code=41056 site_time_zone_utc_offset=-5 -County "KY, McCracken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101450.epw site_zip_code=42001 site_time_zone_utc_offset=-6 -County "KY, McCreary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101470.epw site_zip_code=42653 site_time_zone_utc_offset=-5 -County "KY, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101490.epw site_zip_code=42327 site_time_zone_utc_offset=-6 -County "KY, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101630.epw site_zip_code=40108 site_time_zone_utc_offset=-5 -County "KY, Menifee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101650.epw site_zip_code=40322 site_time_zone_utc_offset=-5 -County "KY, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101670.epw site_zip_code=40330 site_time_zone_utc_offset=-5 -County "KY, Metcalfe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101690.epw site_zip_code=42129 site_time_zone_utc_offset=-6 -County "KY, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101710.epw site_zip_code=42167 site_time_zone_utc_offset=-6 -County "KY, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101730.epw site_zip_code=40353 site_time_zone_utc_offset=-5 -County "KY, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101750.epw site_zip_code=41472 site_time_zone_utc_offset=-5 -County "KY, Muhlenberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101770.epw site_zip_code=42345 site_time_zone_utc_offset=-6 -County "KY, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101790.epw site_zip_code=40004 site_time_zone_utc_offset=-5 -County "KY, Nicholas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101810.epw site_zip_code=40311 site_time_zone_utc_offset=-5 -County "KY, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101830.epw site_zip_code=42320 site_time_zone_utc_offset=-6 -County "KY, Oldham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101850.epw site_zip_code=40014 site_time_zone_utc_offset=-5 -County "KY, Owen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101870.epw site_zip_code=40359 site_time_zone_utc_offset=-5 -County "KY, Owsley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101890.epw site_zip_code=41314 site_time_zone_utc_offset=-5 -County "KY, Pendleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101910.epw site_zip_code=41040 site_time_zone_utc_offset=-5 -County "KY, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101930.epw site_zip_code=41701 site_time_zone_utc_offset=-5 -County "KY, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101950.epw site_zip_code=41501 site_time_zone_utc_offset=-5 -County "KY, Powell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101970.epw site_zip_code=40380 site_time_zone_utc_offset=-5 -County "KY, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101990.epw site_zip_code=42503 site_time_zone_utc_offset=-5 -County "KY, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102010.epw site_zip_code=41064 site_time_zone_utc_offset=-5 -County "KY, Rockcastle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102030.epw site_zip_code=40456 site_time_zone_utc_offset=-5 -County "KY, Rowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102050.epw site_zip_code=40351 site_time_zone_utc_offset=-5 -County "KY, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102070.epw site_zip_code=42642 site_time_zone_utc_offset=-6 -County "KY, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102090.epw site_zip_code=40324 site_time_zone_utc_offset=-5 -County "KY, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102110.epw site_zip_code=40065 site_time_zone_utc_offset=-5 -County "KY, Simpson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102130.epw site_zip_code=42134 site_time_zone_utc_offset=-6 -County "KY, Spencer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102150.epw site_zip_code=40071 site_time_zone_utc_offset=-5 -County "KY, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102170.epw site_zip_code=42718 site_time_zone_utc_offset=-5 -County "KY, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102190.epw site_zip_code=42220 site_time_zone_utc_offset=-6 -County "KY, Trigg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102210.epw site_zip_code=42211 site_time_zone_utc_offset=-6 -County "KY, Trimble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102230.epw site_zip_code=40006 site_time_zone_utc_offset=-5 -County "KY, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102250.epw site_zip_code=42437 site_time_zone_utc_offset=-6 -County "KY, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102270.epw site_zip_code=42101 site_time_zone_utc_offset=-6 -County "KY, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102290.epw site_zip_code=40069 site_time_zone_utc_offset=-5 -County "KY, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102310.epw site_zip_code=42633 site_time_zone_utc_offset=-5 -County "KY, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102330.epw site_zip_code=42450 site_time_zone_utc_offset=-6 -County "KY, Whitley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102350.epw site_zip_code=40769 site_time_zone_utc_offset=-5 -County "KY, Wolfe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102370.epw site_zip_code=41301 site_time_zone_utc_offset=-5 -County "KY, Woodford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102390.epw site_zip_code=40383 site_time_zone_utc_offset=-5 -County "LA, Acadia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200010.epw site_zip_code=70526 site_time_zone_utc_offset=-6 -County "LA, Allen Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200030.epw site_zip_code=71463 site_time_zone_utc_offset=-6 -County "LA, Ascension Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200050.epw site_zip_code=70737 site_time_zone_utc_offset=-6 -County "LA, Assumption Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200070.epw site_zip_code=70339 site_time_zone_utc_offset=-6 -County "LA, Avoyelles Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200090.epw site_zip_code=71351 site_time_zone_utc_offset=-6 -County "LA, Beauregard Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200110.epw site_zip_code=70634 site_time_zone_utc_offset=-6 -County "LA, Bienville Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200130.epw site_zip_code=71001 site_time_zone_utc_offset=-6 -County "LA, Bossier Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200150.epw site_zip_code=71111 site_time_zone_utc_offset=-6 -County "LA, Caddo Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200170.epw site_zip_code=71106 site_time_zone_utc_offset=-6 -County "LA, Calcasieu Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200190.epw site_zip_code=70605 site_time_zone_utc_offset=-6 -County "LA, Caldwell Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200210.epw site_zip_code=71418 site_time_zone_utc_offset=-6 -County "LA, Cameron Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200230.epw site_zip_code=70607 site_time_zone_utc_offset=-6 -County "LA, Catahoula Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200250.epw site_zip_code=71343 site_time_zone_utc_offset=-6 -County "LA, Claiborne Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200270.epw site_zip_code=71040 site_time_zone_utc_offset=-6 -County "LA, Concordia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200290.epw site_zip_code=71334 site_time_zone_utc_offset=-6 -County "LA, De Soto Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200310.epw site_zip_code=71052 site_time_zone_utc_offset=-6 -County "LA, East Baton Rouge Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200330.epw site_zip_code=70816 site_time_zone_utc_offset=-6 -County "LA, East Carroll Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200350.epw site_zip_code=71254 site_time_zone_utc_offset=-6 -County "LA, East Feliciana Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200370.epw site_zip_code=70722 site_time_zone_utc_offset=-6 -County "LA, Evangeline Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200390.epw site_zip_code=70586 site_time_zone_utc_offset=-6 -County "LA, Franklin Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200410.epw site_zip_code=71295 site_time_zone_utc_offset=-6 -County "LA, Grant Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200430.epw site_zip_code=71467 site_time_zone_utc_offset=-6 -County "LA, Iberia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200450.epw site_zip_code=70560 site_time_zone_utc_offset=-6 -County "LA, Iberville Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200470.epw site_zip_code=70764 site_time_zone_utc_offset=-6 -County "LA, Jackson Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200490.epw site_zip_code=71251 site_time_zone_utc_offset=-6 -County "LA, Jefferson Davis Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200530.epw site_zip_code=70546 site_time_zone_utc_offset=-6 -County "LA, Jefferson Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200510.epw site_zip_code=70072 site_time_zone_utc_offset=-6 -County "LA, La Salle Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200590.epw site_zip_code=71342 site_time_zone_utc_offset=-6 -County "LA, Lafayette Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200550.epw site_zip_code=70506 site_time_zone_utc_offset=-6 -County "LA, Lafourche Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200570.epw site_zip_code=70301 site_time_zone_utc_offset=-6 -County "LA, Lincoln Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200610.epw site_zip_code=71270 site_time_zone_utc_offset=-6 -County "LA, Livingston Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200630.epw site_zip_code=70726 site_time_zone_utc_offset=-6 -County "LA, Madison Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200650.epw site_zip_code=71282 site_time_zone_utc_offset=-6 -County "LA, Morehouse Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200670.epw site_zip_code=71220 site_time_zone_utc_offset=-6 -County "LA, Natchitoches Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200690.epw site_zip_code=71457 site_time_zone_utc_offset=-6 -County "LA, Orleans Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200710.epw site_zip_code=70119 site_time_zone_utc_offset=-6 -County "LA, Ouachita Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200730.epw site_zip_code=71203 site_time_zone_utc_offset=-6 -County "LA, Plaquemines Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200750.epw site_zip_code=70037 site_time_zone_utc_offset=-6 -County "LA, Pointe Coupee Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200770.epw site_zip_code=70760 site_time_zone_utc_offset=-6 -County "LA, Rapides Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200790.epw site_zip_code=71360 site_time_zone_utc_offset=-6 -County "LA, Red River Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200810.epw site_zip_code=71019 site_time_zone_utc_offset=-6 -County "LA, Richland Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200830.epw site_zip_code=71269 site_time_zone_utc_offset=-6 -County "LA, Sabine Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200850.epw site_zip_code=71449 site_time_zone_utc_offset=-6 -County "LA, St. Bernard Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200870.epw site_zip_code=70043 site_time_zone_utc_offset=-6 -County "LA, St. Charles Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200890.epw site_zip_code=70070 site_time_zone_utc_offset=-6 -County "LA, St. Helena Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200910.epw site_zip_code=70441 site_time_zone_utc_offset=-6 -County "LA, St. James Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200930.epw site_zip_code=70090 site_time_zone_utc_offset=-6 -County "LA, St. John the Baptist Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200950.epw site_zip_code=70068 site_time_zone_utc_offset=-6 -County "LA, St. Landry Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200970.epw site_zip_code=70570 site_time_zone_utc_offset=-6 -County "LA, St. Martin Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200990.epw site_zip_code=70517 site_time_zone_utc_offset=-6 -County "LA, St. Mary Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201010.epw site_zip_code=70380 site_time_zone_utc_offset=-6 -County "LA, St. Tammany Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201030.epw site_zip_code=70433 site_time_zone_utc_offset=-6 -County "LA, Tangipahoa Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201050.epw site_zip_code=70454 site_time_zone_utc_offset=-6 -County "LA, Tensas Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201070.epw site_zip_code=71366 site_time_zone_utc_offset=-6 -County "LA, Terrebonne Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201090.epw site_zip_code=70360 site_time_zone_utc_offset=-6 -County "LA, Union Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201110.epw site_zip_code=71241 site_time_zone_utc_offset=-6 -County "LA, Vermilion Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201130.epw site_zip_code=70510 site_time_zone_utc_offset=-6 -County "LA, Vernon Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201150.epw site_zip_code=71446 site_time_zone_utc_offset=-6 -County "LA, Washington Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201170.epw site_zip_code=70427 site_time_zone_utc_offset=-6 -County "LA, Webster Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201190.epw site_zip_code=71055 site_time_zone_utc_offset=-6 -County "LA, West Baton Rouge Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201210.epw site_zip_code=70767 site_time_zone_utc_offset=-6 -County "LA, West Carroll Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201230.epw site_zip_code=71263 site_time_zone_utc_offset=-6 -County "LA, West Feliciana Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201250.epw site_zip_code=70775 site_time_zone_utc_offset=-6 -County "LA, Winn Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201270.epw site_zip_code=71483 site_time_zone_utc_offset=-6 -County "MA, Barnstable County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500010.epw site_zip_code=02536 site_time_zone_utc_offset=-5 -County "MA, Berkshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500030.epw site_zip_code=01201 site_time_zone_utc_offset=-5 -County "MA, Bristol County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500050.epw site_zip_code=02780 site_time_zone_utc_offset=-5 -County "MA, Dukes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500070.epw site_zip_code=02568 site_time_zone_utc_offset=-5 -County "MA, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500090.epw site_zip_code=01960 site_time_zone_utc_offset=-5 -County "MA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500110.epw site_zip_code=01301 site_time_zone_utc_offset=-5 -County "MA, Hampden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500130.epw site_zip_code=01085 site_time_zone_utc_offset=-5 -County "MA, Hampshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500150.epw site_zip_code=01002 site_time_zone_utc_offset=-5 -County "MA, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500170.epw site_zip_code=02148 site_time_zone_utc_offset=-5 -County "MA, Nantucket County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500190.epw site_zip_code=02554 site_time_zone_utc_offset=-5 -County "MA, Norfolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500210.epw site_zip_code=02169 site_time_zone_utc_offset=-5 -County "MA, Plymouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500230.epw site_zip_code=02360 site_time_zone_utc_offset=-5 -County "MA, Suffolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500250.epw site_zip_code=02151 site_time_zone_utc_offset=-5 -County "MA, Worcester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500270.epw site_zip_code=01453 site_time_zone_utc_offset=-5 -County "MD, Allegany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400010.epw site_zip_code=21502 site_time_zone_utc_offset=-5 -County "MD, Anne Arundel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400030.epw site_zip_code=21122 site_time_zone_utc_offset=-5 -County "MD, Baltimore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400050.epw site_zip_code=21117 site_time_zone_utc_offset=-5 -County "MD, Baltimore city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2405100.epw site_zip_code=21215 site_time_zone_utc_offset=-5 -County "MD, Calvert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400090.epw site_zip_code=20657 site_time_zone_utc_offset=-5 -County "MD, Caroline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400110.epw site_zip_code=21629 site_time_zone_utc_offset=-5 -County "MD, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400130.epw site_zip_code=21157 site_time_zone_utc_offset=-5 -County "MD, Cecil County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400150.epw site_zip_code=21921 site_time_zone_utc_offset=-5 -County "MD, Charles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400170.epw site_zip_code=20603 site_time_zone_utc_offset=-5 -County "MD, Dorchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400190.epw site_zip_code=21613 site_time_zone_utc_offset=-5 -County "MD, Frederick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400210.epw site_zip_code=21702 site_time_zone_utc_offset=-5 -County "MD, Garrett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400230.epw site_zip_code=21550 site_time_zone_utc_offset=-5 -County "MD, Harford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400250.epw site_zip_code=21014 site_time_zone_utc_offset=-5 -County "MD, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400270.epw site_zip_code=21044 site_time_zone_utc_offset=-5 -County "MD, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400290.epw site_zip_code=21620 site_time_zone_utc_offset=-5 -County "MD, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400310.epw site_zip_code=20906 site_time_zone_utc_offset=-5 -County "MD, Prince George's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400330.epw site_zip_code=20774 site_time_zone_utc_offset=-5 -County "MD, Queen Anne's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400350.epw site_zip_code=21666 site_time_zone_utc_offset=-5 -County "MD, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400390.epw site_zip_code=21853 site_time_zone_utc_offset=-5 -County "MD, St. Mary's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400370.epw site_zip_code=20653 site_time_zone_utc_offset=-5 -County "MD, Talbot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400410.epw site_zip_code=21601 site_time_zone_utc_offset=-5 -County "MD, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400430.epw site_zip_code=21740 site_time_zone_utc_offset=-5 -County "MD, Wicomico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400450.epw site_zip_code=21804 site_time_zone_utc_offset=-5 -County "MD, Worcester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400470.epw site_zip_code=21842 site_time_zone_utc_offset=-5 -County "ME, Androscoggin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300010.epw site_zip_code=04240 site_time_zone_utc_offset=-5 -County "ME, Aroostook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300030.epw site_zip_code=04769 site_time_zone_utc_offset=-5 -County "ME, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300050.epw site_zip_code=04103 site_time_zone_utc_offset=-5 -County "ME, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300070.epw site_zip_code=04938 site_time_zone_utc_offset=-5 -County "ME, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300090.epw site_zip_code=04605 site_time_zone_utc_offset=-5 -County "ME, Kennebec County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300110.epw site_zip_code=04901 site_time_zone_utc_offset=-5 -County "ME, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300130.epw site_zip_code=04841 site_time_zone_utc_offset=-5 -County "ME, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300150.epw site_zip_code=04572 site_time_zone_utc_offset=-5 -County "ME, Oxford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300170.epw site_zip_code=04276 site_time_zone_utc_offset=-5 -County "ME, Penobscot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300190.epw site_zip_code=04401 site_time_zone_utc_offset=-5 -County "ME, Piscataquis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300210.epw site_zip_code=04426 site_time_zone_utc_offset=-5 -County "ME, Sagadahoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300230.epw site_zip_code=04530 site_time_zone_utc_offset=-5 -County "ME, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300250.epw site_zip_code=04976 site_time_zone_utc_offset=-5 -County "ME, Waldo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300270.epw site_zip_code=04915 site_time_zone_utc_offset=-5 -County "ME, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300290.epw site_zip_code=04654 site_time_zone_utc_offset=-5 -County "ME, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300310.epw site_zip_code=04005 site_time_zone_utc_offset=-5 -County "MI, Alcona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600010.epw site_zip_code=48740 site_time_zone_utc_offset=-5 -County "MI, Alger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600030.epw site_zip_code=49862 site_time_zone_utc_offset=-5 -County "MI, Allegan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600050.epw site_zip_code=49010 site_time_zone_utc_offset=-5 -County "MI, Alpena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600070.epw site_zip_code=49707 site_time_zone_utc_offset=-5 -County "MI, Antrim County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600090.epw site_zip_code=49615 site_time_zone_utc_offset=-5 -County "MI, Arenac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600110.epw site_zip_code=48658 site_time_zone_utc_offset=-5 -County "MI, Baraga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600130.epw site_zip_code=49946 site_time_zone_utc_offset=-5 -County "MI, Barry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600150.epw site_zip_code=49058 site_time_zone_utc_offset=-5 -County "MI, Bay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600170.epw site_zip_code=48706 site_time_zone_utc_offset=-5 -County "MI, Benzie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600190.epw site_zip_code=49635 site_time_zone_utc_offset=-5 -County "MI, Berrien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600210.epw site_zip_code=49022 site_time_zone_utc_offset=-5 -County "MI, Branch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600230.epw site_zip_code=49036 site_time_zone_utc_offset=-5 -County "MI, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600250.epw site_zip_code=49015 site_time_zone_utc_offset=-5 -County "MI, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600270.epw site_zip_code=49047 site_time_zone_utc_offset=-5 -County "MI, Charlevoix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600290.epw site_zip_code=49720 site_time_zone_utc_offset=-5 -County "MI, Cheboygan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600310.epw site_zip_code=49721 site_time_zone_utc_offset=-5 -County "MI, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600330.epw site_zip_code=49783 site_time_zone_utc_offset=-5 -County "MI, Clare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600350.epw site_zip_code=48625 site_time_zone_utc_offset=-5 -County "MI, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600370.epw site_zip_code=48820 site_time_zone_utc_offset=-5 -County "MI, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600390.epw site_zip_code=49738 site_time_zone_utc_offset=-5 -County "MI, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600410.epw site_zip_code=49829 site_time_zone_utc_offset=-5 -County "MI, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600430.epw site_zip_code=49801 site_time_zone_utc_offset=-6 -County "MI, Eaton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600450.epw site_zip_code=48917 site_time_zone_utc_offset=-5 -County "MI, Emmet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600470.epw site_zip_code=49770 site_time_zone_utc_offset=-5 -County "MI, Genesee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600490.epw site_zip_code=48439 site_time_zone_utc_offset=-5 -County "MI, Gladwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600510.epw site_zip_code=48624 site_time_zone_utc_offset=-5 -County "MI, Gogebic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600530.epw site_zip_code=49938 site_time_zone_utc_offset=-6 -County "MI, Grand Traverse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600550.epw site_zip_code=49686 site_time_zone_utc_offset=-5 -County "MI, Gratiot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600570.epw site_zip_code=48801 site_time_zone_utc_offset=-5 -County "MI, Hillsdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600590.epw site_zip_code=49242 site_time_zone_utc_offset=-5 -County "MI, Houghton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600610.epw site_zip_code=49931 site_time_zone_utc_offset=-5 -County "MI, Huron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600630.epw site_zip_code=48413 site_time_zone_utc_offset=-5 -County "MI, Ingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600650.epw site_zip_code=48823 site_time_zone_utc_offset=-5 -County "MI, Ionia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600670.epw site_zip_code=48846 site_time_zone_utc_offset=-5 -County "MI, Iosco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600690.epw site_zip_code=48750 site_time_zone_utc_offset=-5 -County "MI, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600710.epw site_zip_code=49935 site_time_zone_utc_offset=-6 -County "MI, Isabella County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600730.epw site_zip_code=48858 site_time_zone_utc_offset=-5 -County "MI, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600750.epw site_zip_code=49201 site_time_zone_utc_offset=-5 -County "MI, Kalamazoo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600770.epw site_zip_code=49009 site_time_zone_utc_offset=-5 -County "MI, Kalkaska County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600790.epw site_zip_code=49646 site_time_zone_utc_offset=-5 -County "MI, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600810.epw site_zip_code=49503 site_time_zone_utc_offset=-5 -County "MI, Keweenaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600830.epw site_zip_code=49950 site_time_zone_utc_offset=-5 -County "MI, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600850.epw site_zip_code=49304 site_time_zone_utc_offset=-5 -County "MI, Lapeer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600870.epw site_zip_code=48446 site_time_zone_utc_offset=-5 -County "MI, Leelanau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600890.epw site_zip_code=49684 site_time_zone_utc_offset=-5 -County "MI, Lenawee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600910.epw site_zip_code=49221 site_time_zone_utc_offset=-5 -County "MI, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600930.epw site_zip_code=48843 site_time_zone_utc_offset=-5 -County "MI, Luce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600950.epw site_zip_code=49868 site_time_zone_utc_offset=-5 -County "MI, Mackinac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600970.epw site_zip_code=49781 site_time_zone_utc_offset=-5 -County "MI, Macomb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600990.epw site_zip_code=48038 site_time_zone_utc_offset=-5 -County "MI, Manistee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601010.epw site_zip_code=49660 site_time_zone_utc_offset=-5 -County "MI, Marquette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601030.epw site_zip_code=49855 site_time_zone_utc_offset=-5 -County "MI, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601050.epw site_zip_code=49431 site_time_zone_utc_offset=-5 -County "MI, Mecosta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601070.epw site_zip_code=49307 site_time_zone_utc_offset=-5 -County "MI, Menominee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601090.epw site_zip_code=49858 site_time_zone_utc_offset=-6 -County "MI, Midland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601110.epw site_zip_code=48642 site_time_zone_utc_offset=-5 -County "MI, Missaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601130.epw site_zip_code=49651 site_time_zone_utc_offset=-5 -County "MI, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601150.epw site_zip_code=48162 site_time_zone_utc_offset=-5 -County "MI, Montcalm County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601170.epw site_zip_code=48838 site_time_zone_utc_offset=-5 -County "MI, Montmorency County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601190.epw site_zip_code=49709 site_time_zone_utc_offset=-5 -County "MI, Muskegon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601210.epw site_zip_code=49442 site_time_zone_utc_offset=-5 -County "MI, Newaygo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601230.epw site_zip_code=49337 site_time_zone_utc_offset=-5 -County "MI, Oakland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601250.epw site_zip_code=48307 site_time_zone_utc_offset=-5 -County "MI, Oceana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601270.epw site_zip_code=49420 site_time_zone_utc_offset=-5 -County "MI, Ogemaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601290.epw site_zip_code=48661 site_time_zone_utc_offset=-5 -County "MI, Ontonagon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601310.epw site_zip_code=49953 site_time_zone_utc_offset=-5 -County "MI, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601330.epw site_zip_code=49631 site_time_zone_utc_offset=-5 -County "MI, Oscoda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601350.epw site_zip_code=48647 site_time_zone_utc_offset=-5 -County "MI, Otsego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601370.epw site_zip_code=49735 site_time_zone_utc_offset=-5 -County "MI, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601390.epw site_zip_code=49424 site_time_zone_utc_offset=-5 -County "MI, Presque Isle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601410.epw site_zip_code=49779 site_time_zone_utc_offset=-5 -County "MI, Roscommon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601430.epw site_zip_code=48629 site_time_zone_utc_offset=-5 -County "MI, Saginaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601450.epw site_zip_code=48601 site_time_zone_utc_offset=-5 -County "MI, Sanilac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601510.epw site_zip_code=48450 site_time_zone_utc_offset=-5 -County "MI, Schoolcraft County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601530.epw site_zip_code=49854 site_time_zone_utc_offset=-5 -County "MI, Shiawassee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601550.epw site_zip_code=48867 site_time_zone_utc_offset=-5 -County "MI, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601470.epw site_zip_code=48060 site_time_zone_utc_offset=-5 -County "MI, St. Joseph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601490.epw site_zip_code=49091 site_time_zone_utc_offset=-5 -County "MI, Tuscola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601570.epw site_zip_code=48723 site_time_zone_utc_offset=-5 -County "MI, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601590.epw site_zip_code=49090 site_time_zone_utc_offset=-5 -County "MI, Washtenaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601610.epw site_zip_code=48197 site_time_zone_utc_offset=-5 -County "MI, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601630.epw site_zip_code=48180 site_time_zone_utc_offset=-5 -County "MI, Wexford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601650.epw site_zip_code=49601 site_time_zone_utc_offset=-5 -County "MN, Aitkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700010.epw site_zip_code=56431 site_time_zone_utc_offset=-6 -County "MN, Anoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700030.epw site_zip_code=55303 site_time_zone_utc_offset=-6 -County "MN, Becker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700050.epw site_zip_code=56501 site_time_zone_utc_offset=-6 -County "MN, Beltrami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700070.epw site_zip_code=56601 site_time_zone_utc_offset=-6 -County "MN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700090.epw site_zip_code=56379 site_time_zone_utc_offset=-6 -County "MN, Big Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700110.epw site_zip_code=56278 site_time_zone_utc_offset=-6 -County "MN, Blue Earth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700130.epw site_zip_code=56001 site_time_zone_utc_offset=-6 -County "MN, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700150.epw site_zip_code=56073 site_time_zone_utc_offset=-6 -County "MN, Carlton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700170.epw site_zip_code=55720 site_time_zone_utc_offset=-6 -County "MN, Carver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700190.epw site_zip_code=55318 site_time_zone_utc_offset=-6 -County "MN, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700210.epw site_zip_code=56474 site_time_zone_utc_offset=-6 -County "MN, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700230.epw site_zip_code=56265 site_time_zone_utc_offset=-6 -County "MN, Chisago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700250.epw site_zip_code=55056 site_time_zone_utc_offset=-6 -County "MN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700270.epw site_zip_code=56560 site_time_zone_utc_offset=-6 -County "MN, Clearwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700290.epw site_zip_code=56621 site_time_zone_utc_offset=-6 -County "MN, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700310.epw site_zip_code=55604 site_time_zone_utc_offset=-6 -County "MN, Cottonwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700330.epw site_zip_code=56101 site_time_zone_utc_offset=-6 -County "MN, Crow Wing County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700350.epw site_zip_code=56401 site_time_zone_utc_offset=-6 -County "MN, Dakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700370.epw site_zip_code=55124 site_time_zone_utc_offset=-6 -County "MN, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700390.epw site_zip_code=55944 site_time_zone_utc_offset=-6 -County "MN, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700410.epw site_zip_code=56308 site_time_zone_utc_offset=-6 -County "MN, Faribault County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700430.epw site_zip_code=56013 site_time_zone_utc_offset=-6 -County "MN, Fillmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700450.epw site_zip_code=55975 site_time_zone_utc_offset=-6 -County "MN, Freeborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700470.epw site_zip_code=56007 site_time_zone_utc_offset=-6 -County "MN, Goodhue County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700490.epw site_zip_code=55066 site_time_zone_utc_offset=-6 -County "MN, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700510.epw site_zip_code=56531 site_time_zone_utc_offset=-6 -County "MN, Hennepin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700530.epw site_zip_code=55408 site_time_zone_utc_offset=-6 -County "MN, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700550.epw site_zip_code=55947 site_time_zone_utc_offset=-6 -County "MN, Hubbard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700570.epw site_zip_code=56470 site_time_zone_utc_offset=-6 -County "MN, Isanti County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700590.epw site_zip_code=55008 site_time_zone_utc_offset=-6 -County "MN, Itasca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700610.epw site_zip_code=55744 site_time_zone_utc_offset=-6 -County "MN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700630.epw site_zip_code=56143 site_time_zone_utc_offset=-6 -County "MN, Kanabec County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700650.epw site_zip_code=55051 site_time_zone_utc_offset=-6 -County "MN, Kandiyohi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700670.epw site_zip_code=56201 site_time_zone_utc_offset=-6 -County "MN, Kittson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700690.epw site_zip_code=56728 site_time_zone_utc_offset=-6 -County "MN, Koochiching County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700710.epw site_zip_code=56649 site_time_zone_utc_offset=-6 -County "MN, Lac qui Parle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700730.epw site_zip_code=56256 site_time_zone_utc_offset=-6 -County "MN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700750.epw site_zip_code=55616 site_time_zone_utc_offset=-6 -County "MN, Lake of the Woods County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700770.epw site_zip_code=56623 site_time_zone_utc_offset=-6 -County "MN, Le Sueur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700790.epw site_zip_code=56058 site_time_zone_utc_offset=-6 -County "MN, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700810.epw site_zip_code=56178 site_time_zone_utc_offset=-6 -County "MN, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700830.epw site_zip_code=56258 site_time_zone_utc_offset=-6 -County "MN, Mahnomen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700870.epw site_zip_code=56557 site_time_zone_utc_offset=-6 -County "MN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700890.epw site_zip_code=56762 site_time_zone_utc_offset=-6 -County "MN, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700910.epw site_zip_code=56031 site_time_zone_utc_offset=-6 -County "MN, McLeod County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700850.epw site_zip_code=55350 site_time_zone_utc_offset=-6 -County "MN, Meeker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700930.epw site_zip_code=55355 site_time_zone_utc_offset=-6 -County "MN, Mille Lacs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700950.epw site_zip_code=56353 site_time_zone_utc_offset=-6 -County "MN, Morrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700970.epw site_zip_code=56345 site_time_zone_utc_offset=-6 -County "MN, Mower County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700990.epw site_zip_code=55912 site_time_zone_utc_offset=-6 -County "MN, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701010.epw site_zip_code=56172 site_time_zone_utc_offset=-6 -County "MN, Nicollet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701030.epw site_zip_code=56003 site_time_zone_utc_offset=-6 -County "MN, Nobles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701050.epw site_zip_code=56187 site_time_zone_utc_offset=-6 -County "MN, Norman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701070.epw site_zip_code=56510 site_time_zone_utc_offset=-6 -County "MN, Olmsted County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701090.epw site_zip_code=55901 site_time_zone_utc_offset=-6 -County "MN, Otter Tail County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701110.epw site_zip_code=56537 site_time_zone_utc_offset=-6 -County "MN, Pennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701130.epw site_zip_code=56701 site_time_zone_utc_offset=-6 -County "MN, Pine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701150.epw site_zip_code=55063 site_time_zone_utc_offset=-6 -County "MN, Pipestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701170.epw site_zip_code=56164 site_time_zone_utc_offset=-6 -County "MN, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701190.epw site_zip_code=56721 site_time_zone_utc_offset=-6 -County "MN, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701210.epw site_zip_code=56334 site_time_zone_utc_offset=-6 -County "MN, Ramsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701230.epw site_zip_code=55106 site_time_zone_utc_offset=-6 -County "MN, Red Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701250.epw site_zip_code=56750 site_time_zone_utc_offset=-6 -County "MN, Redwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701270.epw site_zip_code=56283 site_time_zone_utc_offset=-6 -County "MN, Renville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701290.epw site_zip_code=56277 site_time_zone_utc_offset=-6 -County "MN, Rice County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701310.epw site_zip_code=55021 site_time_zone_utc_offset=-6 -County "MN, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701330.epw site_zip_code=56156 site_time_zone_utc_offset=-6 -County "MN, Roseau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701350.epw site_zip_code=56751 site_time_zone_utc_offset=-6 -County "MN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701390.epw site_zip_code=55379 site_time_zone_utc_offset=-6 -County "MN, Sherburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701410.epw site_zip_code=55330 site_time_zone_utc_offset=-6 -County "MN, Sibley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701430.epw site_zip_code=55334 site_time_zone_utc_offset=-6 -County "MN, St. Louis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701370.epw site_zip_code=55811 site_time_zone_utc_offset=-6 -County "MN, Stearns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701450.epw site_zip_code=56301 site_time_zone_utc_offset=-6 -County "MN, Steele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701470.epw site_zip_code=55060 site_time_zone_utc_offset=-6 -County "MN, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701490.epw site_zip_code=56267 site_time_zone_utc_offset=-6 -County "MN, Swift County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701510.epw site_zip_code=56215 site_time_zone_utc_offset=-6 -County "MN, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701530.epw site_zip_code=56347 site_time_zone_utc_offset=-6 -County "MN, Traverse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701550.epw site_zip_code=56296 site_time_zone_utc_offset=-6 -County "MN, Wabasha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701570.epw site_zip_code=55041 site_time_zone_utc_offset=-6 -County "MN, Wadena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701590.epw site_zip_code=56482 site_time_zone_utc_offset=-6 -County "MN, Waseca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701610.epw site_zip_code=56093 site_time_zone_utc_offset=-6 -County "MN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701630.epw site_zip_code=55125 site_time_zone_utc_offset=-6 -County "MN, Watonwan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701650.epw site_zip_code=56081 site_time_zone_utc_offset=-6 -County "MN, Wilkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701670.epw site_zip_code=56520 site_time_zone_utc_offset=-6 -County "MN, Winona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701690.epw site_zip_code=55987 site_time_zone_utc_offset=-6 -County "MN, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701710.epw site_zip_code=55313 site_time_zone_utc_offset=-6 -County "MN, Yellow Medicine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701730.epw site_zip_code=56220 site_time_zone_utc_offset=-6 -County "MO, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900010.epw site_zip_code=63501 site_time_zone_utc_offset=-6 -County "MO, Andrew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900030.epw site_zip_code=64485 site_time_zone_utc_offset=-6 -County "MO, Atchison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900050.epw site_zip_code=64491 site_time_zone_utc_offset=-6 -County "MO, Audrain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900070.epw site_zip_code=65265 site_time_zone_utc_offset=-6 -County "MO, Barry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900090.epw site_zip_code=65625 site_time_zone_utc_offset=-6 -County "MO, Barton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900110.epw site_zip_code=64759 site_time_zone_utc_offset=-6 -County "MO, Bates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900130.epw site_zip_code=64730 site_time_zone_utc_offset=-6 -County "MO, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900150.epw site_zip_code=65355 site_time_zone_utc_offset=-6 -County "MO, Bollinger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900170.epw site_zip_code=63764 site_time_zone_utc_offset=-6 -County "MO, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900190.epw site_zip_code=65203 site_time_zone_utc_offset=-6 -County "MO, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900210.epw site_zip_code=64506 site_time_zone_utc_offset=-6 -County "MO, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900230.epw site_zip_code=63901 site_time_zone_utc_offset=-6 -County "MO, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900250.epw site_zip_code=64644 site_time_zone_utc_offset=-6 -County "MO, Callaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900270.epw site_zip_code=65251 site_time_zone_utc_offset=-6 -County "MO, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900290.epw site_zip_code=65020 site_time_zone_utc_offset=-6 -County "MO, Cape Girardeau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900310.epw site_zip_code=63701 site_time_zone_utc_offset=-6 -County "MO, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900330.epw site_zip_code=64633 site_time_zone_utc_offset=-6 -County "MO, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900350.epw site_zip_code=63965 site_time_zone_utc_offset=-6 -County "MO, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900370.epw site_zip_code=64012 site_time_zone_utc_offset=-6 -County "MO, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900390.epw site_zip_code=64744 site_time_zone_utc_offset=-6 -County "MO, Chariton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900410.epw site_zip_code=65281 site_time_zone_utc_offset=-6 -County "MO, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900430.epw site_zip_code=65714 site_time_zone_utc_offset=-6 -County "MO, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900450.epw site_zip_code=63445 site_time_zone_utc_offset=-6 -County "MO, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900470.epw site_zip_code=64118 site_time_zone_utc_offset=-6 -County "MO, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900490.epw site_zip_code=64429 site_time_zone_utc_offset=-6 -County "MO, Cole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900510.epw site_zip_code=65109 site_time_zone_utc_offset=-6 -County "MO, Cooper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900530.epw site_zip_code=65233 site_time_zone_utc_offset=-6 -County "MO, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900550.epw site_zip_code=65453 site_time_zone_utc_offset=-6 -County "MO, Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900570.epw site_zip_code=65661 site_time_zone_utc_offset=-6 -County "MO, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900590.epw site_zip_code=65622 site_time_zone_utc_offset=-6 -County "MO, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900610.epw site_zip_code=64640 site_time_zone_utc_offset=-6 -County "MO, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900630.epw site_zip_code=64429 site_time_zone_utc_offset=-6 -County "MO, Dent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900650.epw site_zip_code=65560 site_time_zone_utc_offset=-6 -County "MO, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900670.epw site_zip_code=65608 site_time_zone_utc_offset=-6 -County "MO, Dunklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900690.epw site_zip_code=63857 site_time_zone_utc_offset=-6 -County "MO, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900710.epw site_zip_code=63090 site_time_zone_utc_offset=-6 -County "MO, Gasconade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900730.epw site_zip_code=65066 site_time_zone_utc_offset=-6 -County "MO, Gentry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900750.epw site_zip_code=64402 site_time_zone_utc_offset=-6 -County "MO, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900770.epw site_zip_code=65807 site_time_zone_utc_offset=-6 -County "MO, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900790.epw site_zip_code=64683 site_time_zone_utc_offset=-6 -County "MO, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900810.epw site_zip_code=64424 site_time_zone_utc_offset=-6 -County "MO, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900830.epw site_zip_code=64735 site_time_zone_utc_offset=-6 -County "MO, Hickory County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900850.epw site_zip_code=65779 site_time_zone_utc_offset=-6 -County "MO, Holt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900870.epw site_zip_code=64470 site_time_zone_utc_offset=-6 -County "MO, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900890.epw site_zip_code=65248 site_time_zone_utc_offset=-6 -County "MO, Howell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900910.epw site_zip_code=65775 site_time_zone_utc_offset=-6 -County "MO, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900930.epw site_zip_code=63650 site_time_zone_utc_offset=-6 -County "MO, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900950.epw site_zip_code=64055 site_time_zone_utc_offset=-6 -County "MO, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900970.epw site_zip_code=64801 site_time_zone_utc_offset=-6 -County "MO, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900990.epw site_zip_code=63010 site_time_zone_utc_offset=-6 -County "MO, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901010.epw site_zip_code=64093 site_time_zone_utc_offset=-6 -County "MO, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901030.epw site_zip_code=63537 site_time_zone_utc_offset=-6 -County "MO, Laclede County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901050.epw site_zip_code=65536 site_time_zone_utc_offset=-6 -County "MO, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901070.epw site_zip_code=64076 site_time_zone_utc_offset=-6 -County "MO, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901090.epw site_zip_code=65605 site_time_zone_utc_offset=-6 -County "MO, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901110.epw site_zip_code=63435 site_time_zone_utc_offset=-6 -County "MO, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901130.epw site_zip_code=63379 site_time_zone_utc_offset=-6 -County "MO, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901150.epw site_zip_code=64628 site_time_zone_utc_offset=-6 -County "MO, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901170.epw site_zip_code=64601 site_time_zone_utc_offset=-6 -County "MO, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901210.epw site_zip_code=63552 site_time_zone_utc_offset=-6 -County "MO, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901230.epw site_zip_code=63645 site_time_zone_utc_offset=-6 -County "MO, Maries County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901250.epw site_zip_code=65582 site_time_zone_utc_offset=-6 -County "MO, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901270.epw site_zip_code=63401 site_time_zone_utc_offset=-6 -County "MO, McDonald County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901190.epw site_zip_code=64831 site_time_zone_utc_offset=-6 -County "MO, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901290.epw site_zip_code=64673 site_time_zone_utc_offset=-6 -County "MO, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901310.epw site_zip_code=65026 site_time_zone_utc_offset=-6 -County "MO, Mississippi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901330.epw site_zip_code=63845 site_time_zone_utc_offset=-6 -County "MO, Moniteau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901350.epw site_zip_code=65018 site_time_zone_utc_offset=-6 -County "MO, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901370.epw site_zip_code=65275 site_time_zone_utc_offset=-6 -County "MO, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901390.epw site_zip_code=63361 site_time_zone_utc_offset=-6 -County "MO, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901410.epw site_zip_code=65037 site_time_zone_utc_offset=-6 -County "MO, New Madrid County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901430.epw site_zip_code=63873 site_time_zone_utc_offset=-6 -County "MO, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901450.epw site_zip_code=64850 site_time_zone_utc_offset=-6 -County "MO, Nodaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901470.epw site_zip_code=64468 site_time_zone_utc_offset=-6 -County "MO, Oregon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901490.epw site_zip_code=65606 site_time_zone_utc_offset=-6 -County "MO, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901510.epw site_zip_code=65051 site_time_zone_utc_offset=-6 -County "MO, Ozark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901530.epw site_zip_code=65655 site_time_zone_utc_offset=-6 -County "MO, Pemiscot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901550.epw site_zip_code=63830 site_time_zone_utc_offset=-6 -County "MO, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901570.epw site_zip_code=63775 site_time_zone_utc_offset=-6 -County "MO, Pettis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901590.epw site_zip_code=65301 site_time_zone_utc_offset=-6 -County "MO, Phelps County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901610.epw site_zip_code=65401 site_time_zone_utc_offset=-6 -County "MO, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901630.epw site_zip_code=63334 site_time_zone_utc_offset=-6 -County "MO, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901650.epw site_zip_code=64151 site_time_zone_utc_offset=-6 -County "MO, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901670.epw site_zip_code=65613 site_time_zone_utc_offset=-6 -County "MO, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901690.epw site_zip_code=65473 site_time_zone_utc_offset=-6 -County "MO, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901710.epw site_zip_code=63565 site_time_zone_utc_offset=-6 -County "MO, Ralls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901730.epw site_zip_code=63459 site_time_zone_utc_offset=-6 -County "MO, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901750.epw site_zip_code=65270 site_time_zone_utc_offset=-6 -County "MO, Ray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901770.epw site_zip_code=64085 site_time_zone_utc_offset=-6 -County "MO, Reynolds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901790.epw site_zip_code=63638 site_time_zone_utc_offset=-6 -County "MO, Ripley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901810.epw site_zip_code=63935 site_time_zone_utc_offset=-6 -County "MO, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901950.epw site_zip_code=65340 site_time_zone_utc_offset=-6 -County "MO, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901970.epw site_zip_code=63548 site_time_zone_utc_offset=-6 -County "MO, Scotland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901990.epw site_zip_code=63555 site_time_zone_utc_offset=-6 -County "MO, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902010.epw site_zip_code=63801 site_time_zone_utc_offset=-6 -County "MO, Shannon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902030.epw site_zip_code=65588 site_time_zone_utc_offset=-6 -County "MO, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902050.epw site_zip_code=63468 site_time_zone_utc_offset=-6 -County "MO, St. Charles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901830.epw site_zip_code=63376 site_time_zone_utc_offset=-6 -County "MO, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901850.epw site_zip_code=64776 site_time_zone_utc_offset=-6 -County "MO, St. Francois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901870.epw site_zip_code=63640 site_time_zone_utc_offset=-6 -County "MO, St. Louis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901890.epw site_zip_code=63021 site_time_zone_utc_offset=-6 -County "MO, St. Louis city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2905100.epw site_zip_code=63116 site_time_zone_utc_offset=-6 -County "MO, Ste. Genevieve County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901860.epw site_zip_code=63670 site_time_zone_utc_offset=-6 -County "MO, Stoddard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902070.epw site_zip_code=63841 site_time_zone_utc_offset=-6 -County "MO, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902090.epw site_zip_code=65737 site_time_zone_utc_offset=-6 -County "MO, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902110.epw site_zip_code=63556 site_time_zone_utc_offset=-6 -County "MO, Taney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902130.epw site_zip_code=65616 site_time_zone_utc_offset=-6 -County "MO, Texas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902150.epw site_zip_code=65483 site_time_zone_utc_offset=-6 -County "MO, Vernon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902170.epw site_zip_code=64772 site_time_zone_utc_offset=-6 -County "MO, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902190.epw site_zip_code=63383 site_time_zone_utc_offset=-6 -County "MO, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902210.epw site_zip_code=63664 site_time_zone_utc_offset=-6 -County "MO, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902230.epw site_zip_code=63957 site_time_zone_utc_offset=-6 -County "MO, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902250.epw site_zip_code=65706 site_time_zone_utc_offset=-6 -County "MO, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902270.epw site_zip_code=64456 site_time_zone_utc_offset=-6 -County "MO, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902290.epw site_zip_code=65711 site_time_zone_utc_offset=-6 -County "MS, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800010.epw site_zip_code=39120 site_time_zone_utc_offset=-6 -County "MS, Alcorn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800030.epw site_zip_code=38834 site_time_zone_utc_offset=-6 -County "MS, Amite County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800050.epw site_zip_code=39645 site_time_zone_utc_offset=-6 -County "MS, Attala County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800070.epw site_zip_code=39090 site_time_zone_utc_offset=-6 -County "MS, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800090.epw site_zip_code=38603 site_time_zone_utc_offset=-6 -County "MS, Bolivar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800110.epw site_zip_code=38732 site_time_zone_utc_offset=-6 -County "MS, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800130.epw site_zip_code=38916 site_time_zone_utc_offset=-6 -County "MS, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800150.epw site_zip_code=38917 site_time_zone_utc_offset=-6 -County "MS, Chickasaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800170.epw site_zip_code=38851 site_time_zone_utc_offset=-6 -County "MS, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800190.epw site_zip_code=39735 site_time_zone_utc_offset=-6 -County "MS, Claiborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800210.epw site_zip_code=39150 site_time_zone_utc_offset=-6 -County "MS, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800230.epw site_zip_code=39355 site_time_zone_utc_offset=-6 -County "MS, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800250.epw site_zip_code=39773 site_time_zone_utc_offset=-6 -County "MS, Coahoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800270.epw site_zip_code=38614 site_time_zone_utc_offset=-6 -County "MS, Copiah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800290.epw site_zip_code=39059 site_time_zone_utc_offset=-6 -County "MS, Covington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800310.epw site_zip_code=39428 site_time_zone_utc_offset=-6 -County "MS, DeSoto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800330.epw site_zip_code=38654 site_time_zone_utc_offset=-6 -County "MS, Forrest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800350.epw site_zip_code=39401 site_time_zone_utc_offset=-6 -County "MS, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800370.epw site_zip_code=39653 site_time_zone_utc_offset=-6 -County "MS, George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800390.epw site_zip_code=39452 site_time_zone_utc_offset=-6 -County "MS, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800410.epw site_zip_code=39451 site_time_zone_utc_offset=-6 -County "MS, Grenada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800430.epw site_zip_code=38901 site_time_zone_utc_offset=-6 -County "MS, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800450.epw site_zip_code=39520 site_time_zone_utc_offset=-6 -County "MS, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800470.epw site_zip_code=39503 site_time_zone_utc_offset=-6 -County "MS, Hinds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800490.epw site_zip_code=39209 site_time_zone_utc_offset=-6 -County "MS, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800510.epw site_zip_code=39095 site_time_zone_utc_offset=-6 -County "MS, Humphreys County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800530.epw site_zip_code=39038 site_time_zone_utc_offset=-6 -County "MS, Issaquena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800550.epw site_zip_code=39159 site_time_zone_utc_offset=-6 -County "MS, Itawamba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800570.epw site_zip_code=38843 site_time_zone_utc_offset=-6 -County "MS, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800590.epw site_zip_code=39564 site_time_zone_utc_offset=-6 -County "MS, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800610.epw site_zip_code=39422 site_time_zone_utc_offset=-6 -County "MS, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800630.epw site_zip_code=39069 site_time_zone_utc_offset=-6 -County "MS, Jefferson Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800650.epw site_zip_code=39474 site_time_zone_utc_offset=-6 -County "MS, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800670.epw site_zip_code=39443 site_time_zone_utc_offset=-6 -County "MS, Kemper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800690.epw site_zip_code=39328 site_time_zone_utc_offset=-6 -County "MS, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800710.epw site_zip_code=38655 site_time_zone_utc_offset=-6 -County "MS, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800730.epw site_zip_code=39402 site_time_zone_utc_offset=-6 -County "MS, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800750.epw site_zip_code=39301 site_time_zone_utc_offset=-6 -County "MS, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800770.epw site_zip_code=39654 site_time_zone_utc_offset=-6 -County "MS, Leake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800790.epw site_zip_code=39051 site_time_zone_utc_offset=-6 -County "MS, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800810.epw site_zip_code=38801 site_time_zone_utc_offset=-6 -County "MS, Leflore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800830.epw site_zip_code=38930 site_time_zone_utc_offset=-6 -County "MS, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800850.epw site_zip_code=39601 site_time_zone_utc_offset=-6 -County "MS, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800870.epw site_zip_code=39702 site_time_zone_utc_offset=-6 -County "MS, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800890.epw site_zip_code=39110 site_time_zone_utc_offset=-6 -County "MS, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800910.epw site_zip_code=39429 site_time_zone_utc_offset=-6 -County "MS, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800930.epw site_zip_code=38611 site_time_zone_utc_offset=-6 -County "MS, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800950.epw site_zip_code=38821 site_time_zone_utc_offset=-6 -County "MS, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800970.epw site_zip_code=38967 site_time_zone_utc_offset=-6 -County "MS, Neshoba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800990.epw site_zip_code=39350 site_time_zone_utc_offset=-6 -County "MS, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801010.epw site_zip_code=39345 site_time_zone_utc_offset=-6 -County "MS, Noxubee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801030.epw site_zip_code=39341 site_time_zone_utc_offset=-6 -County "MS, Oktibbeha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801050.epw site_zip_code=39759 site_time_zone_utc_offset=-6 -County "MS, Panola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801070.epw site_zip_code=38606 site_time_zone_utc_offset=-6 -County "MS, Pearl River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801090.epw site_zip_code=39466 site_time_zone_utc_offset=-6 -County "MS, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801110.epw site_zip_code=39476 site_time_zone_utc_offset=-6 -County "MS, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801130.epw site_zip_code=39648 site_time_zone_utc_offset=-6 -County "MS, Pontotoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801150.epw site_zip_code=38863 site_time_zone_utc_offset=-6 -County "MS, Prentiss County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801170.epw site_zip_code=38829 site_time_zone_utc_offset=-6 -County "MS, Quitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801190.epw site_zip_code=38646 site_time_zone_utc_offset=-6 -County "MS, Rankin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801210.epw site_zip_code=39047 site_time_zone_utc_offset=-6 -County "MS, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801230.epw site_zip_code=39074 site_time_zone_utc_offset=-6 -County "MS, Sharkey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801250.epw site_zip_code=39159 site_time_zone_utc_offset=-6 -County "MS, Simpson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801270.epw site_zip_code=39111 site_time_zone_utc_offset=-6 -County "MS, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801290.epw site_zip_code=39168 site_time_zone_utc_offset=-6 -County "MS, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801310.epw site_zip_code=39577 site_time_zone_utc_offset=-6 -County "MS, Sunflower County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801330.epw site_zip_code=38751 site_time_zone_utc_offset=-6 -County "MS, Tallahatchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801350.epw site_zip_code=38921 site_time_zone_utc_offset=-6 -County "MS, Tate County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801370.epw site_zip_code=38668 site_time_zone_utc_offset=-6 -County "MS, Tippah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801390.epw site_zip_code=38663 site_time_zone_utc_offset=-6 -County "MS, Tishomingo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801410.epw site_zip_code=38852 site_time_zone_utc_offset=-6 -County "MS, Tunica County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801430.epw site_zip_code=38676 site_time_zone_utc_offset=-6 -County "MS, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801450.epw site_zip_code=38652 site_time_zone_utc_offset=-6 -County "MS, Walthall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801470.epw site_zip_code=39667 site_time_zone_utc_offset=-6 -County "MS, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801490.epw site_zip_code=39180 site_time_zone_utc_offset=-6 -County "MS, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801510.epw site_zip_code=38701 site_time_zone_utc_offset=-6 -County "MS, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801530.epw site_zip_code=39367 site_time_zone_utc_offset=-6 -County "MS, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801550.epw site_zip_code=39744 site_time_zone_utc_offset=-6 -County "MS, Wilkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801570.epw site_zip_code=39669 site_time_zone_utc_offset=-6 -County "MS, Winston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801590.epw site_zip_code=39339 site_time_zone_utc_offset=-6 -County "MS, Yalobusha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801610.epw site_zip_code=38965 site_time_zone_utc_offset=-6 -County "MS, Yazoo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801630.epw site_zip_code=39194 site_time_zone_utc_offset=-6 -County "MT, Beaverhead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000010.epw site_zip_code=59725 site_time_zone_utc_offset=-7 -County "MT, Big Horn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000030.epw site_zip_code=59034 site_time_zone_utc_offset=-7 -County "MT, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000050.epw site_zip_code=59526 site_time_zone_utc_offset=-7 -County "MT, Broadwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000070.epw site_zip_code=59644 site_time_zone_utc_offset=-7 -County "MT, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000090.epw site_zip_code=59068 site_time_zone_utc_offset=-7 -County "MT, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000110.epw site_zip_code=59324 site_time_zone_utc_offset=-7 -County "MT, Cascade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000130.epw site_zip_code=59405 site_time_zone_utc_offset=-7 -County "MT, Chouteau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000150.epw site_zip_code=59442 site_time_zone_utc_offset=-7 -County "MT, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000170.epw site_zip_code=59301 site_time_zone_utc_offset=-7 -County "MT, Daniels County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000190.epw site_zip_code=59263 site_time_zone_utc_offset=-7 -County "MT, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000210.epw site_zip_code=59330 site_time_zone_utc_offset=-7 -County "MT, Deer Lodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000230.epw site_zip_code=59711 site_time_zone_utc_offset=-7 -County "MT, Fallon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000250.epw site_zip_code=59313 site_time_zone_utc_offset=-7 -County "MT, Fergus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000270.epw site_zip_code=59457 site_time_zone_utc_offset=-7 -County "MT, Flathead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000290.epw site_zip_code=59901 site_time_zone_utc_offset=-7 -County "MT, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000310.epw site_zip_code=59718 site_time_zone_utc_offset=-7 -County "MT, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000330.epw site_zip_code=59337 site_time_zone_utc_offset=-7 -County "MT, Glacier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000350.epw site_zip_code=59427 site_time_zone_utc_offset=-7 -County "MT, Golden Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000370.epw site_zip_code=59074 site_time_zone_utc_offset=-7 -County "MT, Granite County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000390.epw site_zip_code=59858 site_time_zone_utc_offset=-7 -County "MT, Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000410.epw site_zip_code=59501 site_time_zone_utc_offset=-7 -County "MT, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000430.epw site_zip_code=59634 site_time_zone_utc_offset=-7 -County "MT, Judith Basin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000450.epw site_zip_code=59479 site_time_zone_utc_offset=-7 -County "MT, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000470.epw site_zip_code=59860 site_time_zone_utc_offset=-7 -County "MT, Lewis and Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000490.epw site_zip_code=59601 site_time_zone_utc_offset=-7 -County "MT, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000510.epw site_zip_code=59522 site_time_zone_utc_offset=-7 -County "MT, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000530.epw site_zip_code=59923 site_time_zone_utc_offset=-7 -County "MT, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000570.epw site_zip_code=59729 site_time_zone_utc_offset=-7 -County "MT, McCone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000550.epw site_zip_code=59215 site_time_zone_utc_offset=-7 -County "MT, Meagher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000590.epw site_zip_code=59645 site_time_zone_utc_offset=-7 -County "MT, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000610.epw site_zip_code=59872 site_time_zone_utc_offset=-7 -County "MT, Missoula County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000630.epw site_zip_code=59801 site_time_zone_utc_offset=-7 -County "MT, Musselshell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000650.epw site_zip_code=59072 site_time_zone_utc_offset=-7 -County "MT, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000670.epw site_zip_code=59047 site_time_zone_utc_offset=-7 -County "MT, Petroleum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000690.epw site_zip_code=59087 site_time_zone_utc_offset=-7 -County "MT, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000710.epw site_zip_code=59538 site_time_zone_utc_offset=-7 -County "MT, Pondera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000730.epw site_zip_code=59425 site_time_zone_utc_offset=-7 -County "MT, Powder River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000750.epw site_zip_code=59317 site_time_zone_utc_offset=-7 -County "MT, Powell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000770.epw site_zip_code=59722 site_time_zone_utc_offset=-7 -County "MT, Prairie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000790.epw site_zip_code=59349 site_time_zone_utc_offset=-7 -County "MT, Ravalli County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000810.epw site_zip_code=59840 site_time_zone_utc_offset=-7 -County "MT, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000830.epw site_zip_code=59270 site_time_zone_utc_offset=-7 -County "MT, Roosevelt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000850.epw site_zip_code=59201 site_time_zone_utc_offset=-7 -County "MT, Rosebud County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000870.epw site_zip_code=59327 site_time_zone_utc_offset=-7 -County "MT, Sanders County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000890.epw site_zip_code=59859 site_time_zone_utc_offset=-7 -County "MT, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000910.epw site_zip_code=59254 site_time_zone_utc_offset=-7 -County "MT, Silver Bow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000930.epw site_zip_code=59701 site_time_zone_utc_offset=-7 -County "MT, Stillwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000950.epw site_zip_code=59019 site_time_zone_utc_offset=-7 -County "MT, Sweet Grass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000970.epw site_zip_code=59011 site_time_zone_utc_offset=-7 -County "MT, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000990.epw site_zip_code=59422 site_time_zone_utc_offset=-7 -County "MT, Toole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001010.epw site_zip_code=59474 site_time_zone_utc_offset=-7 -County "MT, Treasure County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001030.epw site_zip_code=59038 site_time_zone_utc_offset=-7 -County "MT, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001050.epw site_zip_code=59230 site_time_zone_utc_offset=-7 -County "MT, Wheatland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001070.epw site_zip_code=59036 site_time_zone_utc_offset=-7 -County "MT, Wibaux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001090.epw site_zip_code=59353 site_time_zone_utc_offset=-7 -County "MT, Yellowstone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001110.epw site_zip_code=59102 site_time_zone_utc_offset=-7 -County "NC, Alamance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700010.epw site_zip_code=27215 site_time_zone_utc_offset=-5 -County "NC, Alexander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700030.epw site_zip_code=28681 site_time_zone_utc_offset=-5 -County "NC, Alleghany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700050.epw site_zip_code=28675 site_time_zone_utc_offset=-5 -County "NC, Anson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700070.epw site_zip_code=28170 site_time_zone_utc_offset=-5 -County "NC, Ashe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700090.epw site_zip_code=28694 site_time_zone_utc_offset=-5 -County "NC, Avery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700110.epw site_zip_code=28657 site_time_zone_utc_offset=-5 -County "NC, Beaufort County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700130.epw site_zip_code=27889 site_time_zone_utc_offset=-5 -County "NC, Bertie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700150.epw site_zip_code=27983 site_time_zone_utc_offset=-5 -County "NC, Bladen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700170.epw site_zip_code=28337 site_time_zone_utc_offset=-5 -County "NC, Brunswick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700190.epw site_zip_code=28451 site_time_zone_utc_offset=-5 -County "NC, Buncombe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700210.epw site_zip_code=28806 site_time_zone_utc_offset=-5 -County "NC, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700230.epw site_zip_code=28655 site_time_zone_utc_offset=-5 -County "NC, Cabarrus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700250.epw site_zip_code=28027 site_time_zone_utc_offset=-5 -County "NC, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700270.epw site_zip_code=28645 site_time_zone_utc_offset=-5 -County "NC, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700290.epw site_zip_code=27921 site_time_zone_utc_offset=-5 -County "NC, Carteret County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700310.epw site_zip_code=28570 site_time_zone_utc_offset=-5 -County "NC, Caswell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700330.epw site_zip_code=27379 site_time_zone_utc_offset=-5 -County "NC, Catawba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700350.epw site_zip_code=28601 site_time_zone_utc_offset=-5 -County "NC, Chatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700370.epw site_zip_code=27312 site_time_zone_utc_offset=-5 -County "NC, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700390.epw site_zip_code=28906 site_time_zone_utc_offset=-5 -County "NC, Chowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700410.epw site_zip_code=27932 site_time_zone_utc_offset=-5 -County "NC, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700430.epw site_zip_code=28904 site_time_zone_utc_offset=-5 -County "NC, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700450.epw site_zip_code=28150 site_time_zone_utc_offset=-5 -County "NC, Columbus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700470.epw site_zip_code=28472 site_time_zone_utc_offset=-5 -County "NC, Craven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700490.epw site_zip_code=28562 site_time_zone_utc_offset=-5 -County "NC, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700510.epw site_zip_code=28314 site_time_zone_utc_offset=-5 -County "NC, Currituck County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700530.epw site_zip_code=27958 site_time_zone_utc_offset=-5 -County "NC, Dare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700550.epw site_zip_code=27949 site_time_zone_utc_offset=-5 -County "NC, Davidson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700570.epw site_zip_code=27360 site_time_zone_utc_offset=-5 -County "NC, Davie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700590.epw site_zip_code=27028 site_time_zone_utc_offset=-5 -County "NC, Duplin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700610.epw site_zip_code=28466 site_time_zone_utc_offset=-5 -County "NC, Durham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700630.epw site_zip_code=27703 site_time_zone_utc_offset=-5 -County "NC, Edgecombe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700650.epw site_zip_code=27801 site_time_zone_utc_offset=-5 -County "NC, Forsyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700670.epw site_zip_code=27284 site_time_zone_utc_offset=-5 -County "NC, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700690.epw site_zip_code=27549 site_time_zone_utc_offset=-5 -County "NC, Gaston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700710.epw site_zip_code=28054 site_time_zone_utc_offset=-5 -County "NC, Gates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700730.epw site_zip_code=27937 site_time_zone_utc_offset=-5 -County "NC, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700750.epw site_zip_code=28771 site_time_zone_utc_offset=-5 -County "NC, Granville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700770.epw site_zip_code=27565 site_time_zone_utc_offset=-5 -County "NC, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700790.epw site_zip_code=28580 site_time_zone_utc_offset=-5 -County "NC, Guilford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700810.epw site_zip_code=27406 site_time_zone_utc_offset=-5 -County "NC, Halifax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700830.epw site_zip_code=27870 site_time_zone_utc_offset=-5 -County "NC, Harnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700850.epw site_zip_code=27546 site_time_zone_utc_offset=-5 -County "NC, Haywood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700870.epw site_zip_code=28786 site_time_zone_utc_offset=-5 -County "NC, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700890.epw site_zip_code=28792 site_time_zone_utc_offset=-5 -County "NC, Hertford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700910.epw site_zip_code=27910 site_time_zone_utc_offset=-5 -County "NC, Hoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700930.epw site_zip_code=28376 site_time_zone_utc_offset=-5 -County "NC, Hyde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700950.epw site_zip_code=27824 site_time_zone_utc_offset=-5 -County "NC, Iredell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700970.epw site_zip_code=28117 site_time_zone_utc_offset=-5 -County "NC, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700990.epw site_zip_code=28779 site_time_zone_utc_offset=-5 -County "NC, Johnston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701010.epw site_zip_code=27520 site_time_zone_utc_offset=-5 -County "NC, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701030.epw site_zip_code=28585 site_time_zone_utc_offset=-5 -County "NC, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701050.epw site_zip_code=27330 site_time_zone_utc_offset=-5 -County "NC, Lenoir County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701070.epw site_zip_code=28501 site_time_zone_utc_offset=-5 -County "NC, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701090.epw site_zip_code=28092 site_time_zone_utc_offset=-5 -County "NC, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701130.epw site_zip_code=28734 site_time_zone_utc_offset=-5 -County "NC, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701150.epw site_zip_code=28753 site_time_zone_utc_offset=-5 -County "NC, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701170.epw site_zip_code=27892 site_time_zone_utc_offset=-5 -County "NC, McDowell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701110.epw site_zip_code=28752 site_time_zone_utc_offset=-5 -County "NC, Mecklenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701190.epw site_zip_code=28269 site_time_zone_utc_offset=-5 -County "NC, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701210.epw site_zip_code=28777 site_time_zone_utc_offset=-5 -County "NC, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701230.epw site_zip_code=27371 site_time_zone_utc_offset=-5 -County "NC, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701250.epw site_zip_code=28374 site_time_zone_utc_offset=-5 -County "NC, Nash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701270.epw site_zip_code=27804 site_time_zone_utc_offset=-5 -County "NC, New Hanover County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701290.epw site_zip_code=28412 site_time_zone_utc_offset=-5 -County "NC, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701310.epw site_zip_code=27831 site_time_zone_utc_offset=-5 -County "NC, Onslow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701330.epw site_zip_code=28540 site_time_zone_utc_offset=-5 -County "NC, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701350.epw site_zip_code=27514 site_time_zone_utc_offset=-5 -County "NC, Pamlico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701370.epw site_zip_code=28571 site_time_zone_utc_offset=-5 -County "NC, Pasquotank County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701390.epw site_zip_code=27909 site_time_zone_utc_offset=-5 -County "NC, Pender County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701410.epw site_zip_code=28443 site_time_zone_utc_offset=-5 -County "NC, Perquimans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701430.epw site_zip_code=27944 site_time_zone_utc_offset=-5 -County "NC, Person County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701450.epw site_zip_code=27574 site_time_zone_utc_offset=-5 -County "NC, Pitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701470.epw site_zip_code=27858 site_time_zone_utc_offset=-5 -County "NC, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701490.epw site_zip_code=28782 site_time_zone_utc_offset=-5 -County "NC, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701510.epw site_zip_code=27205 site_time_zone_utc_offset=-5 -County "NC, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701530.epw site_zip_code=28379 site_time_zone_utc_offset=-5 -County "NC, Robeson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701550.epw site_zip_code=28358 site_time_zone_utc_offset=-5 -County "NC, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701570.epw site_zip_code=27320 site_time_zone_utc_offset=-5 -County "NC, Rowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701590.epw site_zip_code=28146 site_time_zone_utc_offset=-5 -County "NC, Rutherford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701610.epw site_zip_code=28043 site_time_zone_utc_offset=-5 -County "NC, Sampson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701630.epw site_zip_code=28328 site_time_zone_utc_offset=-5 -County "NC, Scotland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701650.epw site_zip_code=28352 site_time_zone_utc_offset=-5 -County "NC, Stanly County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701670.epw site_zip_code=28001 site_time_zone_utc_offset=-5 -County "NC, Stokes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701690.epw site_zip_code=27021 site_time_zone_utc_offset=-5 -County "NC, Surry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701710.epw site_zip_code=27030 site_time_zone_utc_offset=-5 -County "NC, Swain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701730.epw site_zip_code=28713 site_time_zone_utc_offset=-5 -County "NC, Transylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701750.epw site_zip_code=28712 site_time_zone_utc_offset=-5 -County "NC, Tyrrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701770.epw site_zip_code=27925 site_time_zone_utc_offset=-5 -County "NC, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701790.epw site_zip_code=28173 site_time_zone_utc_offset=-5 -County "NC, Vance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701810.epw site_zip_code=27537 site_time_zone_utc_offset=-5 -County "NC, Wake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701830.epw site_zip_code=27610 site_time_zone_utc_offset=-5 -County "NC, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701850.epw site_zip_code=27589 site_time_zone_utc_offset=-5 -County "NC, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701870.epw site_zip_code=27962 site_time_zone_utc_offset=-5 -County "NC, Watauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701890.epw site_zip_code=28607 site_time_zone_utc_offset=-5 -County "NC, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701910.epw site_zip_code=27530 site_time_zone_utc_offset=-5 -County "NC, Wilkes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701930.epw site_zip_code=28659 site_time_zone_utc_offset=-5 -County "NC, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701950.epw site_zip_code=27893 site_time_zone_utc_offset=-5 -County "NC, Yadkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701970.epw site_zip_code=27055 site_time_zone_utc_offset=-5 -County "NC, Yancey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701990.epw site_zip_code=28714 site_time_zone_utc_offset=-5 -County "ND, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800010.epw site_zip_code=58639 site_time_zone_utc_offset=-7 -County "ND, Barnes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800030.epw site_zip_code=58072 site_time_zone_utc_offset=-6 -County "ND, Benson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800050.epw site_zip_code=58348 site_time_zone_utc_offset=-6 -County "ND, Billings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800070.epw site_zip_code=58622 site_time_zone_utc_offset=-7 -County "ND, Bottineau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800090.epw site_zip_code=58318 site_time_zone_utc_offset=-6 -County "ND, Bowman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800110.epw site_zip_code=58623 site_time_zone_utc_offset=-7 -County "ND, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800130.epw site_zip_code=58773 site_time_zone_utc_offset=-6 -County "ND, Burleigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800150.epw site_zip_code=58503 site_time_zone_utc_offset=-6 -County "ND, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800170.epw site_zip_code=58103 site_time_zone_utc_offset=-6 -County "ND, Cavalier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800190.epw site_zip_code=58249 site_time_zone_utc_offset=-6 -County "ND, Dickey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800210.epw site_zip_code=58474 site_time_zone_utc_offset=-6 -County "ND, Divide County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800230.epw site_zip_code=58730 site_time_zone_utc_offset=-6 -County "ND, Dunn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800250.epw site_zip_code=58640 site_time_zone_utc_offset=-7 -County "ND, Eddy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800270.epw site_zip_code=58356 site_time_zone_utc_offset=-6 -County "ND, Emmons County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800290.epw site_zip_code=58552 site_time_zone_utc_offset=-6 -County "ND, Foster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800310.epw site_zip_code=58421 site_time_zone_utc_offset=-6 -County "ND, Golden Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800330.epw site_zip_code=58621 site_time_zone_utc_offset=-7 -County "ND, Grand Forks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800350.epw site_zip_code=58201 site_time_zone_utc_offset=-6 -County "ND, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800370.epw site_zip_code=58533 site_time_zone_utc_offset=-7 -County "ND, Griggs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800390.epw site_zip_code=58425 site_time_zone_utc_offset=-6 -County "ND, Hettinger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800410.epw site_zip_code=58646 site_time_zone_utc_offset=-7 -County "ND, Kidder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800430.epw site_zip_code=58482 site_time_zone_utc_offset=-6 -County "ND, LaMoure County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800450.epw site_zip_code=58458 site_time_zone_utc_offset=-6 -County "ND, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800470.epw site_zip_code=58561 site_time_zone_utc_offset=-6 -County "ND, McHenry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800490.epw site_zip_code=58790 site_time_zone_utc_offset=-6 -County "ND, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800510.epw site_zip_code=58495 site_time_zone_utc_offset=-6 -County "ND, McKenzie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800530.epw site_zip_code=58854 site_time_zone_utc_offset=-7 -County "ND, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800550.epw site_zip_code=58540 site_time_zone_utc_offset=-6 -County "ND, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800570.epw site_zip_code=58545 site_time_zone_utc_offset=-6 -County "ND, Morton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800590.epw site_zip_code=58554 site_time_zone_utc_offset=-6 -County "ND, Mountrail County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800610.epw site_zip_code=58763 site_time_zone_utc_offset=-6 -County "ND, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800630.epw site_zip_code=58344 site_time_zone_utc_offset=-6 -County "ND, Oliver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800650.epw site_zip_code=58530 site_time_zone_utc_offset=-6 -County "ND, Pembina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800670.epw site_zip_code=58220 site_time_zone_utc_offset=-6 -County "ND, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800690.epw site_zip_code=58368 site_time_zone_utc_offset=-6 -County "ND, Ramsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800710.epw site_zip_code=58301 site_time_zone_utc_offset=-6 -County "ND, Ransom County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800730.epw site_zip_code=58054 site_time_zone_utc_offset=-6 -County "ND, Renville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800750.epw site_zip_code=58761 site_time_zone_utc_offset=-6 -County "ND, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800770.epw site_zip_code=58075 site_time_zone_utc_offset=-6 -County "ND, Rolette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800790.epw site_zip_code=58367 site_time_zone_utc_offset=-6 -County "ND, Sargent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800810.epw site_zip_code=58060 site_time_zone_utc_offset=-6 -County "ND, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800830.epw site_zip_code=58463 site_time_zone_utc_offset=-6 -County "ND, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800850.epw site_zip_code=58538 site_time_zone_utc_offset=-6 -County "ND, Slope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800870.epw site_zip_code=58620 site_time_zone_utc_offset=-7 -County "ND, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800890.epw site_zip_code=58601 site_time_zone_utc_offset=-7 -County "ND, Steele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800910.epw site_zip_code=58230 site_time_zone_utc_offset=-6 -County "ND, Stutsman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800930.epw site_zip_code=58401 site_time_zone_utc_offset=-6 -County "ND, Towner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800950.epw site_zip_code=58324 site_time_zone_utc_offset=-6 -County "ND, Traill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800970.epw site_zip_code=58257 site_time_zone_utc_offset=-6 -County "ND, Walsh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800990.epw site_zip_code=58237 site_time_zone_utc_offset=-6 -County "ND, Ward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801010.epw site_zip_code=58701 site_time_zone_utc_offset=-6 -County "ND, Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801030.epw site_zip_code=58341 site_time_zone_utc_offset=-6 -County "ND, Williams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801050.epw site_zip_code=58801 site_time_zone_utc_offset=-6 -County "NE, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100010.epw site_zip_code=68901 site_time_zone_utc_offset=-6 -County "NE, Antelope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100030.epw site_zip_code=68756 site_time_zone_utc_offset=-6 -County "NE, Arthur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100050.epw site_zip_code=69121 site_time_zone_utc_offset=-7 -County "NE, Banner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100070.epw site_zip_code=69345 site_time_zone_utc_offset=-7 -County "NE, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100090.epw site_zip_code=68833 site_time_zone_utc_offset=-6 -County "NE, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100110.epw site_zip_code=68620 site_time_zone_utc_offset=-6 -County "NE, Box Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100130.epw site_zip_code=69301 site_time_zone_utc_offset=-7 -County "NE, Boyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100150.epw site_zip_code=68777 site_time_zone_utc_offset=-6 -County "NE, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100170.epw site_zip_code=69210 site_time_zone_utc_offset=-6 -County "NE, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100190.epw site_zip_code=68845 site_time_zone_utc_offset=-6 -County "NE, Burt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100210.epw site_zip_code=68061 site_time_zone_utc_offset=-6 -County "NE, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100230.epw site_zip_code=68632 site_time_zone_utc_offset=-6 -County "NE, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100250.epw site_zip_code=68048 site_time_zone_utc_offset=-6 -County "NE, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100270.epw site_zip_code=68739 site_time_zone_utc_offset=-6 -County "NE, Chase County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100290.epw site_zip_code=69033 site_time_zone_utc_offset=-7 -County "NE, Cherry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100310.epw site_zip_code=69201 site_time_zone_utc_offset=-6 -County "NE, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100330.epw site_zip_code=69162 site_time_zone_utc_offset=-7 -County "NE, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100350.epw site_zip_code=68979 site_time_zone_utc_offset=-6 -County "NE, Colfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100370.epw site_zip_code=68661 site_time_zone_utc_offset=-6 -County "NE, Cuming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100390.epw site_zip_code=68788 site_time_zone_utc_offset=-6 -County "NE, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100410.epw site_zip_code=68822 site_time_zone_utc_offset=-6 -County "NE, Dakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100430.epw site_zip_code=68776 site_time_zone_utc_offset=-6 -County "NE, Dawes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100450.epw site_zip_code=69337 site_time_zone_utc_offset=-7 -County "NE, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100470.epw site_zip_code=68850 site_time_zone_utc_offset=-6 -County "NE, Deuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100490.epw site_zip_code=69129 site_time_zone_utc_offset=-7 -County "NE, Dixon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100510.epw site_zip_code=68770 site_time_zone_utc_offset=-6 -County "NE, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100530.epw site_zip_code=68025 site_time_zone_utc_offset=-6 -County "NE, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100550.epw site_zip_code=68022 site_time_zone_utc_offset=-6 -County "NE, Dundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100570.epw site_zip_code=69021 site_time_zone_utc_offset=-7 -County "NE, Fillmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100590.epw site_zip_code=68361 site_time_zone_utc_offset=-6 -County "NE, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100610.epw site_zip_code=68939 site_time_zone_utc_offset=-6 -County "NE, Frontier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100630.epw site_zip_code=69025 site_time_zone_utc_offset=-6 -County "NE, Furnas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100650.epw site_zip_code=69022 site_time_zone_utc_offset=-6 -County "NE, Gage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100670.epw site_zip_code=68310 site_time_zone_utc_offset=-6 -County "NE, Garden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100690.epw site_zip_code=69154 site_time_zone_utc_offset=-7 -County "NE, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100710.epw site_zip_code=68823 site_time_zone_utc_offset=-6 -County "NE, Gosper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100730.epw site_zip_code=68937 site_time_zone_utc_offset=-6 -County "NE, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100750.epw site_zip_code=69350 site_time_zone_utc_offset=-7 -County "NE, Greeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100770.epw site_zip_code=68665 site_time_zone_utc_offset=-6 -County "NE, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100790.epw site_zip_code=68801 site_time_zone_utc_offset=-6 -County "NE, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100810.epw site_zip_code=68818 site_time_zone_utc_offset=-6 -County "NE, Harlan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100830.epw site_zip_code=68920 site_time_zone_utc_offset=-6 -County "NE, Hayes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100850.epw site_zip_code=69032 site_time_zone_utc_offset=-6 -County "NE, Hitchcock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100870.epw site_zip_code=69024 site_time_zone_utc_offset=-6 -County "NE, Holt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100890.epw site_zip_code=68763 site_time_zone_utc_offset=-6 -County "NE, Hooker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100910.epw site_zip_code=69152 site_time_zone_utc_offset=-7 -County "NE, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100930.epw site_zip_code=68873 site_time_zone_utc_offset=-6 -County "NE, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100950.epw site_zip_code=68352 site_time_zone_utc_offset=-6 -County "NE, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100970.epw site_zip_code=68450 site_time_zone_utc_offset=-6 -County "NE, Kearney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100990.epw site_zip_code=68959 site_time_zone_utc_offset=-6 -County "NE, Keith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101010.epw site_zip_code=69153 site_time_zone_utc_offset=-7 -County "NE, Keya Paha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101030.epw site_zip_code=68778 site_time_zone_utc_offset=-6 -County "NE, Kimball County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101050.epw site_zip_code=69145 site_time_zone_utc_offset=-7 -County "NE, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101070.epw site_zip_code=68718 site_time_zone_utc_offset=-6 -County "NE, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101090.epw site_zip_code=68516 site_time_zone_utc_offset=-6 -County "NE, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101110.epw site_zip_code=69101 site_time_zone_utc_offset=-6 -County "NE, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101130.epw site_zip_code=69163 site_time_zone_utc_offset=-6 -County "NE, Loup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101150.epw site_zip_code=68823 site_time_zone_utc_offset=-6 -County "NE, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101190.epw site_zip_code=68701 site_time_zone_utc_offset=-6 -County "NE, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101170.epw site_zip_code=69167 site_time_zone_utc_offset=-6 -County "NE, Merrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101210.epw site_zip_code=68826 site_time_zone_utc_offset=-6 -County "NE, Morrill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101230.epw site_zip_code=69336 site_time_zone_utc_offset=-7 -County "NE, Nance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101250.epw site_zip_code=68638 site_time_zone_utc_offset=-6 -County "NE, Nemaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101270.epw site_zip_code=68305 site_time_zone_utc_offset=-6 -County "NE, Nuckolls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101290.epw site_zip_code=68978 site_time_zone_utc_offset=-6 -County "NE, Otoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101310.epw site_zip_code=68410 site_time_zone_utc_offset=-6 -County "NE, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101330.epw site_zip_code=68420 site_time_zone_utc_offset=-6 -County "NE, Perkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101350.epw site_zip_code=69140 site_time_zone_utc_offset=-7 -County "NE, Phelps County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101370.epw site_zip_code=68949 site_time_zone_utc_offset=-6 -County "NE, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101390.epw site_zip_code=68767 site_time_zone_utc_offset=-6 -County "NE, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101410.epw site_zip_code=68601 site_time_zone_utc_offset=-6 -County "NE, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101430.epw site_zip_code=68666 site_time_zone_utc_offset=-6 -County "NE, Red Willow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101450.epw site_zip_code=69001 site_time_zone_utc_offset=-6 -County "NE, Richardson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101470.epw site_zip_code=68355 site_time_zone_utc_offset=-6 -County "NE, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101490.epw site_zip_code=68714 site_time_zone_utc_offset=-6 -County "NE, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101510.epw site_zip_code=68333 site_time_zone_utc_offset=-6 -County "NE, Sarpy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101530.epw site_zip_code=68046 site_time_zone_utc_offset=-6 -County "NE, Saunders County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101550.epw site_zip_code=68066 site_time_zone_utc_offset=-6 -County "NE, Scotts Bluff County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101570.epw site_zip_code=69361 site_time_zone_utc_offset=-7 -County "NE, Seward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101590.epw site_zip_code=68434 site_time_zone_utc_offset=-6 -County "NE, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101610.epw site_zip_code=69343 site_time_zone_utc_offset=-7 -County "NE, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101630.epw site_zip_code=68853 site_time_zone_utc_offset=-6 -County "NE, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101650.epw site_zip_code=69346 site_time_zone_utc_offset=-7 -County "NE, Stanton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101670.epw site_zip_code=68779 site_time_zone_utc_offset=-6 -County "NE, Thayer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101690.epw site_zip_code=68370 site_time_zone_utc_offset=-6 -County "NE, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101710.epw site_zip_code=69166 site_time_zone_utc_offset=-6 -County "NE, Thurston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101730.epw site_zip_code=68071 site_time_zone_utc_offset=-6 -County "NE, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101750.epw site_zip_code=68862 site_time_zone_utc_offset=-6 -County "NE, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101770.epw site_zip_code=68008 site_time_zone_utc_offset=-6 -County "NE, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101790.epw site_zip_code=68787 site_time_zone_utc_offset=-6 -County "NE, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101810.epw site_zip_code=68970 site_time_zone_utc_offset=-6 -County "NE, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101830.epw site_zip_code=68637 site_time_zone_utc_offset=-6 -County "NE, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101850.epw site_zip_code=68467 site_time_zone_utc_offset=-6 -County "NH, Belknap County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300010.epw site_zip_code=03246 site_time_zone_utc_offset=-5 -County "NH, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300030.epw site_zip_code=03894 site_time_zone_utc_offset=-5 -County "NH, Cheshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300050.epw site_zip_code=03431 site_time_zone_utc_offset=-5 -County "NH, Coos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300070.epw site_zip_code=03570 site_time_zone_utc_offset=-5 -County "NH, Grafton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300090.epw site_zip_code=03766 site_time_zone_utc_offset=-5 -County "NH, Hillsborough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300110.epw site_zip_code=03103 site_time_zone_utc_offset=-5 -County "NH, Merrimack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300130.epw site_zip_code=03301 site_time_zone_utc_offset=-5 -County "NH, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300150.epw site_zip_code=03038 site_time_zone_utc_offset=-5 -County "NH, Strafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300170.epw site_zip_code=03820 site_time_zone_utc_offset=-5 -County "NH, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300190.epw site_zip_code=03743 site_time_zone_utc_offset=-5 -County "NJ, Atlantic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400010.epw site_zip_code=08401 site_time_zone_utc_offset=-5 -County "NJ, Bergen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400030.epw site_zip_code=07410 site_time_zone_utc_offset=-5 -County "NJ, Burlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400050.epw site_zip_code=08054 site_time_zone_utc_offset=-5 -County "NJ, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400070.epw site_zip_code=08021 site_time_zone_utc_offset=-5 -County "NJ, Cape May County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400090.epw site_zip_code=08260 site_time_zone_utc_offset=-5 -County "NJ, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400110.epw site_zip_code=08332 site_time_zone_utc_offset=-5 -County "NJ, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400130.epw site_zip_code=07111 site_time_zone_utc_offset=-5 -County "NJ, Gloucester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400150.epw site_zip_code=08096 site_time_zone_utc_offset=-5 -County "NJ, Hudson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400170.epw site_zip_code=07302 site_time_zone_utc_offset=-5 -County "NJ, Hunterdon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400190.epw site_zip_code=08822 site_time_zone_utc_offset=-5 -County "NJ, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400210.epw site_zip_code=08618 site_time_zone_utc_offset=-5 -County "NJ, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400230.epw site_zip_code=08831 site_time_zone_utc_offset=-5 -County "NJ, Monmouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400250.epw site_zip_code=07728 site_time_zone_utc_offset=-5 -County "NJ, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400270.epw site_zip_code=07960 site_time_zone_utc_offset=-5 -County "NJ, Ocean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400290.epw site_zip_code=08701 site_time_zone_utc_offset=-5 -County "NJ, Passaic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400310.epw site_zip_code=07055 site_time_zone_utc_offset=-5 -County "NJ, Salem County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400330.epw site_zip_code=08069 site_time_zone_utc_offset=-5 -County "NJ, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400350.epw site_zip_code=08873 site_time_zone_utc_offset=-5 -County "NJ, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400370.epw site_zip_code=07860 site_time_zone_utc_offset=-5 -County "NJ, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400390.epw site_zip_code=07083 site_time_zone_utc_offset=-5 -County "NJ, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400410.epw site_zip_code=08865 site_time_zone_utc_offset=-5 -County "NM, Bernalillo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500010.epw site_zip_code=87111 site_time_zone_utc_offset=-7 -County "NM, Catron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500030.epw site_zip_code=87829 site_time_zone_utc_offset=-7 -County "NM, Chaves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500050.epw site_zip_code=88203 site_time_zone_utc_offset=-7 -County "NM, Cibola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500060.epw site_zip_code=87020 site_time_zone_utc_offset=-7 -County "NM, Colfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500070.epw site_zip_code=87740 site_time_zone_utc_offset=-7 -County "NM, Curry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500090.epw site_zip_code=88101 site_time_zone_utc_offset=-7 -County "NM, De Baca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500110.epw site_zip_code=88119 site_time_zone_utc_offset=-7 -County "NM, Dona Ana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500130.epw site_zip_code=88001 site_time_zone_utc_offset=-7 -County "NM, Eddy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500150.epw site_zip_code=88220 site_time_zone_utc_offset=-7 -County "NM, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500170.epw site_zip_code=88061 site_time_zone_utc_offset=-7 -County "NM, Guadalupe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500190.epw site_zip_code=88435 site_time_zone_utc_offset=-7 -County "NM, Harding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500210.epw site_zip_code=87743 site_time_zone_utc_offset=-7 -County "NM, Hidalgo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500230.epw site_zip_code=88045 site_time_zone_utc_offset=-7 -County "NM, Lea County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500250.epw site_zip_code=88240 site_time_zone_utc_offset=-7 -County "NM, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500270.epw site_zip_code=88355 site_time_zone_utc_offset=-7 -County "NM, Los Alamos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500280.epw site_zip_code=87544 site_time_zone_utc_offset=-7 -County "NM, Luna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500290.epw site_zip_code=88030 site_time_zone_utc_offset=-7 -County "NM, McKinley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500310.epw site_zip_code=87301 site_time_zone_utc_offset=-7 -County "NM, Mora County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500330.epw site_zip_code=87722 site_time_zone_utc_offset=-7 -County "NM, Otero County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500350.epw site_zip_code=88310 site_time_zone_utc_offset=-7 -County "NM, Quay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500370.epw site_zip_code=88401 site_time_zone_utc_offset=-7 -County "NM, Rio Arriba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500390.epw site_zip_code=87532 site_time_zone_utc_offset=-7 -County "NM, Roosevelt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500410.epw site_zip_code=88130 site_time_zone_utc_offset=-7 -County "NM, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500450.epw site_zip_code=87401 site_time_zone_utc_offset=-7 -County "NM, San Miguel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500470.epw site_zip_code=87701 site_time_zone_utc_offset=-7 -County "NM, Sandoval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500430.epw site_zip_code=87124 site_time_zone_utc_offset=-7 -County "NM, Santa Fe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500490.epw site_zip_code=87507 site_time_zone_utc_offset=-7 -County "NM, Sierra County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500510.epw site_zip_code=87901 site_time_zone_utc_offset=-7 -County "NM, Socorro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500530.epw site_zip_code=87801 site_time_zone_utc_offset=-7 -County "NM, Taos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500550.epw site_zip_code=87571 site_time_zone_utc_offset=-7 -County "NM, Torrance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500570.epw site_zip_code=87035 site_time_zone_utc_offset=-7 -County "NM, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500590.epw site_zip_code=88415 site_time_zone_utc_offset=-7 -County "NM, Valencia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500610.epw site_zip_code=87031 site_time_zone_utc_offset=-7 -County "NV, Carson City" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3205100.epw site_zip_code=89701 site_time_zone_utc_offset=-8 -County "NV, Churchill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200010.epw site_zip_code=89406 site_time_zone_utc_offset=-8 -County "NV, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200030.epw site_zip_code=89052 site_time_zone_utc_offset=-8 -County "NV, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200050.epw site_zip_code=89460 site_time_zone_utc_offset=-8 -County "NV, Elko County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200070.epw site_zip_code=89801 site_time_zone_utc_offset=-8 -County "NV, Esmeralda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200090.epw site_zip_code=89010 site_time_zone_utc_offset=-8 -County "NV, Eureka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200110.epw site_zip_code=89316 site_time_zone_utc_offset=-8 -County "NV, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200130.epw site_zip_code=89445 site_time_zone_utc_offset=-8 -County "NV, Lander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200150.epw site_zip_code=89820 site_time_zone_utc_offset=-8 -County "NV, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200170.epw site_zip_code=89017 site_time_zone_utc_offset=-8 -County "NV, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200190.epw site_zip_code=89408 site_time_zone_utc_offset=-8 -County "NV, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200210.epw site_zip_code=89415 site_time_zone_utc_offset=-8 -County "NV, Nye County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200230.epw site_zip_code=89048 site_time_zone_utc_offset=-8 -County "NV, Pershing County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200270.epw site_zip_code=89419 site_time_zone_utc_offset=-8 -County "NV, Storey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200290.epw site_zip_code=89521 site_time_zone_utc_offset=-8 -County "NV, Washoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200310.epw site_zip_code=89502 site_time_zone_utc_offset=-8 -County "NV, White Pine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200330.epw site_zip_code=89301 site_time_zone_utc_offset=-8 -County "NY, Albany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600010.epw site_zip_code=12203 site_time_zone_utc_offset=-5 -County "NY, Allegany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600030.epw site_zip_code=14895 site_time_zone_utc_offset=-5 -County "NY, Bronx County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600050.epw site_zip_code=10467 site_time_zone_utc_offset=-5 -County "NY, Broome County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600070.epw site_zip_code=13760 site_time_zone_utc_offset=-5 -County "NY, Cattaraugus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600090.epw site_zip_code=14760 site_time_zone_utc_offset=-5 -County "NY, Cayuga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600110.epw site_zip_code=13021 site_time_zone_utc_offset=-5 -County "NY, Chautauqua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600130.epw site_zip_code=14701 site_time_zone_utc_offset=-5 -County "NY, Chemung County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600150.epw site_zip_code=14845 site_time_zone_utc_offset=-5 -County "NY, Chenango County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600170.epw site_zip_code=13815 site_time_zone_utc_offset=-5 -County "NY, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600190.epw site_zip_code=12901 site_time_zone_utc_offset=-5 -County "NY, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600210.epw site_zip_code=12534 site_time_zone_utc_offset=-5 -County "NY, Cortland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600230.epw site_zip_code=13045 site_time_zone_utc_offset=-5 -County "NY, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600250.epw site_zip_code=13856 site_time_zone_utc_offset=-5 -County "NY, Dutchess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600270.epw site_zip_code=12601 site_time_zone_utc_offset=-5 -County "NY, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600290.epw site_zip_code=14221 site_time_zone_utc_offset=-5 -County "NY, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600310.epw site_zip_code=12946 site_time_zone_utc_offset=-5 -County "NY, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600330.epw site_zip_code=12953 site_time_zone_utc_offset=-5 -County "NY, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600350.epw site_zip_code=12078 site_time_zone_utc_offset=-5 -County "NY, Genesee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600370.epw site_zip_code=14020 site_time_zone_utc_offset=-5 -County "NY, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600390.epw site_zip_code=12414 site_time_zone_utc_offset=-5 -County "NY, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600410.epw site_zip_code=12842 site_time_zone_utc_offset=-5 -County "NY, Herkimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600430.epw site_zip_code=13357 site_time_zone_utc_offset=-5 -County "NY, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600450.epw site_zip_code=13601 site_time_zone_utc_offset=-5 -County "NY, Kings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600470.epw site_zip_code=11226 site_time_zone_utc_offset=-5 -County "NY, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600490.epw site_zip_code=13367 site_time_zone_utc_offset=-5 -County "NY, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600510.epw site_zip_code=14454 site_time_zone_utc_offset=-5 -County "NY, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600530.epw site_zip_code=13032 site_time_zone_utc_offset=-5 -County "NY, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600550.epw site_zip_code=14580 site_time_zone_utc_offset=-5 -County "NY, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600570.epw site_zip_code=12010 site_time_zone_utc_offset=-5 -County "NY, Nassau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600590.epw site_zip_code=11758 site_time_zone_utc_offset=-5 -County "NY, New York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600610.epw site_zip_code=10025 site_time_zone_utc_offset=-5 -County "NY, Niagara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600630.epw site_zip_code=14094 site_time_zone_utc_offset=-5 -County "NY, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600650.epw site_zip_code=13440 site_time_zone_utc_offset=-5 -County "NY, Onondaga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600670.epw site_zip_code=13027 site_time_zone_utc_offset=-5 -County "NY, Ontario County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600690.epw site_zip_code=14424 site_time_zone_utc_offset=-5 -County "NY, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600710.epw site_zip_code=12550 site_time_zone_utc_offset=-5 -County "NY, Orleans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600730.epw site_zip_code=14411 site_time_zone_utc_offset=-5 -County "NY, Oswego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600750.epw site_zip_code=13126 site_time_zone_utc_offset=-5 -County "NY, Otsego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600770.epw site_zip_code=13820 site_time_zone_utc_offset=-5 -County "NY, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600790.epw site_zip_code=10512 site_time_zone_utc_offset=-5 -County "NY, Queens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600810.epw site_zip_code=11375 site_time_zone_utc_offset=-5 -County "NY, Rensselaer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600830.epw site_zip_code=12180 site_time_zone_utc_offset=-5 -County "NY, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600850.epw site_zip_code=10314 site_time_zone_utc_offset=-5 -County "NY, Rockland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600870.epw site_zip_code=10977 site_time_zone_utc_offset=-5 -County "NY, Saratoga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600910.epw site_zip_code=12866 site_time_zone_utc_offset=-5 -County "NY, Schenectady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600930.epw site_zip_code=12306 site_time_zone_utc_offset=-5 -County "NY, Schoharie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600950.epw site_zip_code=12043 site_time_zone_utc_offset=-5 -County "NY, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600970.epw site_zip_code=14891 site_time_zone_utc_offset=-5 -County "NY, Seneca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600990.epw site_zip_code=13148 site_time_zone_utc_offset=-5 -County "NY, St. Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600890.epw site_zip_code=13676 site_time_zone_utc_offset=-5 -County "NY, Steuben County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601010.epw site_zip_code=14830 site_time_zone_utc_offset=-5 -County "NY, Suffolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601030.epw site_zip_code=11746 site_time_zone_utc_offset=-5 -County "NY, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601050.epw site_zip_code=12701 site_time_zone_utc_offset=-5 -County "NY, Tioga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601070.epw site_zip_code=13827 site_time_zone_utc_offset=-5 -County "NY, Tompkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601090.epw site_zip_code=14850 site_time_zone_utc_offset=-5 -County "NY, Ulster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601110.epw site_zip_code=12401 site_time_zone_utc_offset=-5 -County "NY, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601130.epw site_zip_code=12804 site_time_zone_utc_offset=-5 -County "NY, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601150.epw site_zip_code=12839 site_time_zone_utc_offset=-5 -County "NY, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601170.epw site_zip_code=14513 site_time_zone_utc_offset=-5 -County "NY, Westchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601190.epw site_zip_code=10701 site_time_zone_utc_offset=-5 -County "NY, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601210.epw site_zip_code=14569 site_time_zone_utc_offset=-5 -County "NY, Yates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601230.epw site_zip_code=14527 site_time_zone_utc_offset=-5 -County "OH, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900010.epw site_zip_code=45693 site_time_zone_utc_offset=-5 -County "OH, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900030.epw site_zip_code=45805 site_time_zone_utc_offset=-5 -County "OH, Ashland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900050.epw site_zip_code=44805 site_time_zone_utc_offset=-5 -County "OH, Ashtabula County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900070.epw site_zip_code=44004 site_time_zone_utc_offset=-5 -County "OH, Athens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900090.epw site_zip_code=45701 site_time_zone_utc_offset=-5 -County "OH, Auglaize County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900110.epw site_zip_code=45895 site_time_zone_utc_offset=-5 -County "OH, Belmont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900130.epw site_zip_code=43950 site_time_zone_utc_offset=-5 -County "OH, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900150.epw site_zip_code=45121 site_time_zone_utc_offset=-5 -County "OH, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900170.epw site_zip_code=45011 site_time_zone_utc_offset=-5 -County "OH, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900190.epw site_zip_code=44615 site_time_zone_utc_offset=-5 -County "OH, Champaign County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900210.epw site_zip_code=43078 site_time_zone_utc_offset=-5 -County "OH, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900230.epw site_zip_code=45503 site_time_zone_utc_offset=-5 -County "OH, Clermont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900250.epw site_zip_code=45103 site_time_zone_utc_offset=-5 -County "OH, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900270.epw site_zip_code=45177 site_time_zone_utc_offset=-5 -County "OH, Columbiana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900290.epw site_zip_code=43920 site_time_zone_utc_offset=-5 -County "OH, Coshocton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900310.epw site_zip_code=43812 site_time_zone_utc_offset=-5 -County "OH, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900330.epw site_zip_code=44820 site_time_zone_utc_offset=-5 -County "OH, Cuyahoga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900350.epw site_zip_code=44107 site_time_zone_utc_offset=-5 -County "OH, Darke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900370.epw site_zip_code=45331 site_time_zone_utc_offset=-5 -County "OH, Defiance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900390.epw site_zip_code=43512 site_time_zone_utc_offset=-5 -County "OH, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900410.epw site_zip_code=43015 site_time_zone_utc_offset=-5 -County "OH, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900430.epw site_zip_code=44870 site_time_zone_utc_offset=-5 -County "OH, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900450.epw site_zip_code=43130 site_time_zone_utc_offset=-5 -County "OH, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900470.epw site_zip_code=43160 site_time_zone_utc_offset=-5 -County "OH, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900490.epw site_zip_code=43081 site_time_zone_utc_offset=-5 -County "OH, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900510.epw site_zip_code=43567 site_time_zone_utc_offset=-5 -County "OH, Gallia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900530.epw site_zip_code=45631 site_time_zone_utc_offset=-5 -County "OH, Geauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900550.epw site_zip_code=44024 site_time_zone_utc_offset=-5 -County "OH, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900570.epw site_zip_code=45324 site_time_zone_utc_offset=-5 -County "OH, Guernsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900590.epw site_zip_code=43725 site_time_zone_utc_offset=-5 -County "OH, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900610.epw site_zip_code=45238 site_time_zone_utc_offset=-5 -County "OH, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900630.epw site_zip_code=45840 site_time_zone_utc_offset=-5 -County "OH, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900650.epw site_zip_code=43326 site_time_zone_utc_offset=-5 -County "OH, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900670.epw site_zip_code=43907 site_time_zone_utc_offset=-5 -County "OH, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900690.epw site_zip_code=43545 site_time_zone_utc_offset=-5 -County "OH, Highland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900710.epw site_zip_code=45133 site_time_zone_utc_offset=-5 -County "OH, Hocking County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900730.epw site_zip_code=43138 site_time_zone_utc_offset=-5 -County "OH, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900750.epw site_zip_code=44654 site_time_zone_utc_offset=-5 -County "OH, Huron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900770.epw site_zip_code=44857 site_time_zone_utc_offset=-5 -County "OH, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900790.epw site_zip_code=45640 site_time_zone_utc_offset=-5 -County "OH, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900810.epw site_zip_code=43952 site_time_zone_utc_offset=-5 -County "OH, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900830.epw site_zip_code=43050 site_time_zone_utc_offset=-5 -County "OH, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900850.epw site_zip_code=44060 site_time_zone_utc_offset=-5 -County "OH, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900870.epw site_zip_code=45638 site_time_zone_utc_offset=-5 -County "OH, Licking County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900890.epw site_zip_code=43055 site_time_zone_utc_offset=-5 -County "OH, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900910.epw site_zip_code=43311 site_time_zone_utc_offset=-5 -County "OH, Lorain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900930.epw site_zip_code=44035 site_time_zone_utc_offset=-5 -County "OH, Lucas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900950.epw site_zip_code=43615 site_time_zone_utc_offset=-5 -County "OH, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900970.epw site_zip_code=43140 site_time_zone_utc_offset=-5 -County "OH, Mahoning County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900990.epw site_zip_code=44512 site_time_zone_utc_offset=-5 -County "OH, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901010.epw site_zip_code=43302 site_time_zone_utc_offset=-5 -County "OH, Medina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901030.epw site_zip_code=44256 site_time_zone_utc_offset=-5 -County "OH, Meigs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901050.epw site_zip_code=45769 site_time_zone_utc_offset=-5 -County "OH, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901070.epw site_zip_code=45822 site_time_zone_utc_offset=-5 -County "OH, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901090.epw site_zip_code=45373 site_time_zone_utc_offset=-5 -County "OH, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901110.epw site_zip_code=43793 site_time_zone_utc_offset=-5 -County "OH, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901130.epw site_zip_code=45424 site_time_zone_utc_offset=-5 -County "OH, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901150.epw site_zip_code=43756 site_time_zone_utc_offset=-5 -County "OH, Morrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901170.epw site_zip_code=43338 site_time_zone_utc_offset=-5 -County "OH, Muskingum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901190.epw site_zip_code=43701 site_time_zone_utc_offset=-5 -County "OH, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901210.epw site_zip_code=43724 site_time_zone_utc_offset=-5 -County "OH, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901230.epw site_zip_code=43452 site_time_zone_utc_offset=-5 -County "OH, Paulding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901250.epw site_zip_code=45879 site_time_zone_utc_offset=-5 -County "OH, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901270.epw site_zip_code=43764 site_time_zone_utc_offset=-5 -County "OH, Pickaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901290.epw site_zip_code=43113 site_time_zone_utc_offset=-5 -County "OH, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901310.epw site_zip_code=45690 site_time_zone_utc_offset=-5 -County "OH, Portage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901330.epw site_zip_code=44240 site_time_zone_utc_offset=-5 -County "OH, Preble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901350.epw site_zip_code=45320 site_time_zone_utc_offset=-5 -County "OH, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901370.epw site_zip_code=45875 site_time_zone_utc_offset=-5 -County "OH, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901390.epw site_zip_code=44903 site_time_zone_utc_offset=-5 -County "OH, Ross County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901410.epw site_zip_code=45601 site_time_zone_utc_offset=-5 -County "OH, Sandusky County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901430.epw site_zip_code=43420 site_time_zone_utc_offset=-5 -County "OH, Scioto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901450.epw site_zip_code=45662 site_time_zone_utc_offset=-5 -County "OH, Seneca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901470.epw site_zip_code=44883 site_time_zone_utc_offset=-5 -County "OH, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901490.epw site_zip_code=45365 site_time_zone_utc_offset=-5 -County "OH, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901510.epw site_zip_code=44646 site_time_zone_utc_offset=-5 -County "OH, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901530.epw site_zip_code=44224 site_time_zone_utc_offset=-5 -County "OH, Trumbull County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901550.epw site_zip_code=44483 site_time_zone_utc_offset=-5 -County "OH, Tuscarawas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901570.epw site_zip_code=44663 site_time_zone_utc_offset=-5 -County "OH, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901590.epw site_zip_code=43040 site_time_zone_utc_offset=-5 -County "OH, Van Wert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901610.epw site_zip_code=45891 site_time_zone_utc_offset=-5 -County "OH, Vinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901630.epw site_zip_code=45651 site_time_zone_utc_offset=-5 -County "OH, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901650.epw site_zip_code=45040 site_time_zone_utc_offset=-5 -County "OH, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901670.epw site_zip_code=45750 site_time_zone_utc_offset=-5 -County "OH, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901690.epw site_zip_code=44691 site_time_zone_utc_offset=-5 -County "OH, Williams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901710.epw site_zip_code=43506 site_time_zone_utc_offset=-5 -County "OH, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901730.epw site_zip_code=43551 site_time_zone_utc_offset=-5 -County "OH, Wyandot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901750.epw site_zip_code=43351 site_time_zone_utc_offset=-5 -County "OK, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000010.epw site_zip_code=74960 site_time_zone_utc_offset=-6 -County "OK, Alfalfa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000030.epw site_zip_code=73728 site_time_zone_utc_offset=-6 -County "OK, Atoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000050.epw site_zip_code=74525 site_time_zone_utc_offset=-6 -County "OK, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000070.epw site_zip_code=73932 site_time_zone_utc_offset=-6 -County "OK, Beckham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000090.epw site_zip_code=73644 site_time_zone_utc_offset=-6 -County "OK, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000110.epw site_zip_code=73772 site_time_zone_utc_offset=-6 -County "OK, Bryan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000130.epw site_zip_code=74701 site_time_zone_utc_offset=-6 -County "OK, Caddo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000150.epw site_zip_code=73005 site_time_zone_utc_offset=-6 -County "OK, Canadian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000170.epw site_zip_code=73099 site_time_zone_utc_offset=-6 -County "OK, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000190.epw site_zip_code=73401 site_time_zone_utc_offset=-6 -County "OK, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000210.epw site_zip_code=74464 site_time_zone_utc_offset=-6 -County "OK, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000230.epw site_zip_code=74743 site_time_zone_utc_offset=-6 -County "OK, Cimarron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000250.epw site_zip_code=73933 site_time_zone_utc_offset=-6 -County "OK, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000270.epw site_zip_code=73160 site_time_zone_utc_offset=-6 -County "OK, Coal County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000290.epw site_zip_code=74538 site_time_zone_utc_offset=-6 -County "OK, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000310.epw site_zip_code=73505 site_time_zone_utc_offset=-6 -County "OK, Cotton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000330.epw site_zip_code=73572 site_time_zone_utc_offset=-6 -County "OK, Craig County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000350.epw site_zip_code=74301 site_time_zone_utc_offset=-6 -County "OK, Creek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000370.epw site_zip_code=74066 site_time_zone_utc_offset=-6 -County "OK, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000390.epw site_zip_code=73096 site_time_zone_utc_offset=-6 -County "OK, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000410.epw site_zip_code=74344 site_time_zone_utc_offset=-6 -County "OK, Dewey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000430.epw site_zip_code=73859 site_time_zone_utc_offset=-6 -County "OK, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000450.epw site_zip_code=73858 site_time_zone_utc_offset=-6 -County "OK, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000470.epw site_zip_code=73703 site_time_zone_utc_offset=-6 -County "OK, Garvin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000490.epw site_zip_code=73075 site_time_zone_utc_offset=-6 -County "OK, Grady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000510.epw site_zip_code=73018 site_time_zone_utc_offset=-6 -County "OK, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000530.epw site_zip_code=73759 site_time_zone_utc_offset=-6 -County "OK, Greer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000550.epw site_zip_code=73554 site_time_zone_utc_offset=-6 -County "OK, Harmon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000570.epw site_zip_code=73550 site_time_zone_utc_offset=-6 -County "OK, Harper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000590.epw site_zip_code=73848 site_time_zone_utc_offset=-6 -County "OK, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000610.epw site_zip_code=74462 site_time_zone_utc_offset=-6 -County "OK, Hughes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000630.epw site_zip_code=74848 site_time_zone_utc_offset=-6 -County "OK, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000650.epw site_zip_code=73521 site_time_zone_utc_offset=-6 -County "OK, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000670.epw site_zip_code=73573 site_time_zone_utc_offset=-6 -County "OK, Johnston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000690.epw site_zip_code=73460 site_time_zone_utc_offset=-6 -County "OK, Kay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000710.epw site_zip_code=74601 site_time_zone_utc_offset=-6 -County "OK, Kingfisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000730.epw site_zip_code=73750 site_time_zone_utc_offset=-6 -County "OK, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000750.epw site_zip_code=73651 site_time_zone_utc_offset=-6 -County "OK, Latimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000770.epw site_zip_code=74578 site_time_zone_utc_offset=-6 -County "OK, Le Flore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000790.epw site_zip_code=74953 site_time_zone_utc_offset=-6 -County "OK, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000810.epw site_zip_code=74834 site_time_zone_utc_offset=-6 -County "OK, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000830.epw site_zip_code=73044 site_time_zone_utc_offset=-6 -County "OK, Love County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000850.epw site_zip_code=73448 site_time_zone_utc_offset=-6 -County "OK, Major County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000930.epw site_zip_code=73737 site_time_zone_utc_offset=-6 -County "OK, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000950.epw site_zip_code=73439 site_time_zone_utc_offset=-6 -County "OK, Mayes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000970.epw site_zip_code=74361 site_time_zone_utc_offset=-6 -County "OK, McClain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000870.epw site_zip_code=73080 site_time_zone_utc_offset=-6 -County "OK, McCurtain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000890.epw site_zip_code=74728 site_time_zone_utc_offset=-6 -County "OK, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000910.epw site_zip_code=74432 site_time_zone_utc_offset=-6 -County "OK, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000990.epw site_zip_code=73086 site_time_zone_utc_offset=-6 -County "OK, Muskogee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001010.epw site_zip_code=74403 site_time_zone_utc_offset=-6 -County "OK, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001030.epw site_zip_code=73077 site_time_zone_utc_offset=-6 -County "OK, Nowata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001050.epw site_zip_code=74048 site_time_zone_utc_offset=-6 -County "OK, Okfuskee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001070.epw site_zip_code=74859 site_time_zone_utc_offset=-6 -County "OK, Oklahoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001090.epw site_zip_code=73013 site_time_zone_utc_offset=-6 -County "OK, Okmulgee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001110.epw site_zip_code=74447 site_time_zone_utc_offset=-6 -County "OK, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001130.epw site_zip_code=74070 site_time_zone_utc_offset=-6 -County "OK, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001150.epw site_zip_code=74354 site_time_zone_utc_offset=-6 -County "OK, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001170.epw site_zip_code=74020 site_time_zone_utc_offset=-6 -County "OK, Payne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001190.epw site_zip_code=74074 site_time_zone_utc_offset=-6 -County "OK, Pittsburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001210.epw site_zip_code=74501 site_time_zone_utc_offset=-6 -County "OK, Pontotoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001230.epw site_zip_code=74820 site_time_zone_utc_offset=-6 -County "OK, Pottawatomie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001250.epw site_zip_code=74801 site_time_zone_utc_offset=-6 -County "OK, Pushmataha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001270.epw site_zip_code=74523 site_time_zone_utc_offset=-6 -County "OK, Roger Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001290.epw site_zip_code=73628 site_time_zone_utc_offset=-6 -County "OK, Rogers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001310.epw site_zip_code=74017 site_time_zone_utc_offset=-6 -County "OK, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001330.epw site_zip_code=74868 site_time_zone_utc_offset=-6 -County "OK, Sequoyah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001350.epw site_zip_code=74955 site_time_zone_utc_offset=-6 -County "OK, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001370.epw site_zip_code=73533 site_time_zone_utc_offset=-6 -County "OK, Texas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001390.epw site_zip_code=73942 site_time_zone_utc_offset=-6 -County "OK, Tillman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001410.epw site_zip_code=73542 site_time_zone_utc_offset=-6 -County "OK, Tulsa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001430.epw site_zip_code=74012 site_time_zone_utc_offset=-6 -County "OK, Wagoner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001450.epw site_zip_code=74014 site_time_zone_utc_offset=-6 -County "OK, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001470.epw site_zip_code=74006 site_time_zone_utc_offset=-6 -County "OK, Washita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001490.epw site_zip_code=73632 site_time_zone_utc_offset=-6 -County "OK, Woods County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001510.epw site_zip_code=73717 site_time_zone_utc_offset=-6 -County "OK, Woodward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001530.epw site_zip_code=73801 site_time_zone_utc_offset=-6 -County "OR, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100010.epw site_zip_code=97814 site_time_zone_utc_offset=-8 -County "OR, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100030.epw site_zip_code=97330 site_time_zone_utc_offset=-8 -County "OR, Clackamas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100050.epw site_zip_code=97045 site_time_zone_utc_offset=-8 -County "OR, Clatsop County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100070.epw site_zip_code=97103 site_time_zone_utc_offset=-8 -County "OR, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100090.epw site_zip_code=97051 site_time_zone_utc_offset=-8 -County "OR, Coos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100110.epw site_zip_code=97420 site_time_zone_utc_offset=-8 -County "OR, Crook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100130.epw site_zip_code=97754 site_time_zone_utc_offset=-8 -County "OR, Curry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100150.epw site_zip_code=97415 site_time_zone_utc_offset=-8 -County "OR, Deschutes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100170.epw site_zip_code=97702 site_time_zone_utc_offset=-8 -County "OR, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100190.epw site_zip_code=97471 site_time_zone_utc_offset=-8 -County "OR, Gilliam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100210.epw site_zip_code=97823 site_time_zone_utc_offset=-8 -County "OR, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100230.epw site_zip_code=97845 site_time_zone_utc_offset=-8 -County "OR, Harney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100250.epw site_zip_code=97720 site_time_zone_utc_offset=-8 -County "OR, Hood River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100270.epw site_zip_code=97031 site_time_zone_utc_offset=-8 -County "OR, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100290.epw site_zip_code=97504 site_time_zone_utc_offset=-8 -County "OR, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100310.epw site_zip_code=97741 site_time_zone_utc_offset=-8 -County "OR, Josephine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100330.epw site_zip_code=97526 site_time_zone_utc_offset=-8 -County "OR, Klamath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100350.epw site_zip_code=97603 site_time_zone_utc_offset=-8 -County "OR, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100370.epw site_zip_code=97630 site_time_zone_utc_offset=-8 -County "OR, Lane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100390.epw site_zip_code=97402 site_time_zone_utc_offset=-8 -County "OR, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100410.epw site_zip_code=97367 site_time_zone_utc_offset=-8 -County "OR, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100430.epw site_zip_code=97322 site_time_zone_utc_offset=-8 -County "OR, Malheur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100450.epw site_zip_code=97914 site_time_zone_utc_offset=-7 -County "OR, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100470.epw site_zip_code=97301 site_time_zone_utc_offset=-8 -County "OR, Morrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100490.epw site_zip_code=97818 site_time_zone_utc_offset=-8 -County "OR, Multnomah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100510.epw site_zip_code=97206 site_time_zone_utc_offset=-8 -County "OR, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100530.epw site_zip_code=97304 site_time_zone_utc_offset=-8 -County "OR, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100550.epw site_zip_code=97065 site_time_zone_utc_offset=-8 -County "OR, Tillamook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100570.epw site_zip_code=97141 site_time_zone_utc_offset=-8 -County "OR, Umatilla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100590.epw site_zip_code=97838 site_time_zone_utc_offset=-8 -County "OR, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100610.epw site_zip_code=97850 site_time_zone_utc_offset=-8 -County "OR, Wallowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100630.epw site_zip_code=97828 site_time_zone_utc_offset=-8 -County "OR, Wasco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100650.epw site_zip_code=97058 site_time_zone_utc_offset=-8 -County "OR, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100670.epw site_zip_code=97229 site_time_zone_utc_offset=-8 -County "OR, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100690.epw site_zip_code=97830 site_time_zone_utc_offset=-8 -County "OR, Yamhill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100710.epw site_zip_code=97128 site_time_zone_utc_offset=-8 -County "PA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200010.epw site_zip_code=17325 site_time_zone_utc_offset=-5 -County "PA, Allegheny County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200030.epw site_zip_code=15237 site_time_zone_utc_offset=-5 -County "PA, Armstrong County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200050.epw site_zip_code=16201 site_time_zone_utc_offset=-5 -County "PA, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200070.epw site_zip_code=15001 site_time_zone_utc_offset=-5 -County "PA, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200090.epw site_zip_code=15522 site_time_zone_utc_offset=-5 -County "PA, Berks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200110.epw site_zip_code=19606 site_time_zone_utc_offset=-5 -County "PA, Blair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200130.epw site_zip_code=16601 site_time_zone_utc_offset=-5 -County "PA, Bradford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200150.epw site_zip_code=18840 site_time_zone_utc_offset=-5 -County "PA, Bucks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200170.epw site_zip_code=19020 site_time_zone_utc_offset=-5 -County "PA, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200190.epw site_zip_code=16001 site_time_zone_utc_offset=-5 -County "PA, Cambria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200210.epw site_zip_code=15905 site_time_zone_utc_offset=-5 -County "PA, Cameron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200230.epw site_zip_code=15834 site_time_zone_utc_offset=-5 -County "PA, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200250.epw site_zip_code=18235 site_time_zone_utc_offset=-5 -County "PA, Centre County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200270.epw site_zip_code=16801 site_time_zone_utc_offset=-5 -County "PA, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200290.epw site_zip_code=19380 site_time_zone_utc_offset=-5 -County "PA, Clarion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200310.epw site_zip_code=16214 site_time_zone_utc_offset=-5 -County "PA, Clearfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200330.epw site_zip_code=15801 site_time_zone_utc_offset=-5 -County "PA, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200350.epw site_zip_code=17745 site_time_zone_utc_offset=-5 -County "PA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200370.epw site_zip_code=17815 site_time_zone_utc_offset=-5 -County "PA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200390.epw site_zip_code=16335 site_time_zone_utc_offset=-5 -County "PA, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200410.epw site_zip_code=17055 site_time_zone_utc_offset=-5 -County "PA, Dauphin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200430.epw site_zip_code=17112 site_time_zone_utc_offset=-5 -County "PA, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200450.epw site_zip_code=19063 site_time_zone_utc_offset=-5 -County "PA, Elk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200470.epw site_zip_code=15857 site_time_zone_utc_offset=-5 -County "PA, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200490.epw site_zip_code=16509 site_time_zone_utc_offset=-5 -County "PA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200510.epw site_zip_code=15401 site_time_zone_utc_offset=-5 -County "PA, Forest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200530.epw site_zip_code=16353 site_time_zone_utc_offset=-5 -County "PA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200550.epw site_zip_code=17268 site_time_zone_utc_offset=-5 -County "PA, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200570.epw site_zip_code=17233 site_time_zone_utc_offset=-5 -County "PA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200590.epw site_zip_code=15370 site_time_zone_utc_offset=-5 -County "PA, Huntingdon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200610.epw site_zip_code=16652 site_time_zone_utc_offset=-5 -County "PA, Indiana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200630.epw site_zip_code=15701 site_time_zone_utc_offset=-5 -County "PA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200650.epw site_zip_code=15767 site_time_zone_utc_offset=-5 -County "PA, Juniata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200670.epw site_zip_code=17059 site_time_zone_utc_offset=-5 -County "PA, Lackawanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200690.epw site_zip_code=18505 site_time_zone_utc_offset=-5 -County "PA, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200710.epw site_zip_code=17603 site_time_zone_utc_offset=-5 -County "PA, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200730.epw site_zip_code=16101 site_time_zone_utc_offset=-5 -County "PA, Lebanon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200750.epw site_zip_code=17042 site_time_zone_utc_offset=-5 -County "PA, Lehigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200770.epw site_zip_code=18103 site_time_zone_utc_offset=-5 -County "PA, Luzerne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200790.epw site_zip_code=18702 site_time_zone_utc_offset=-5 -County "PA, Lycoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200810.epw site_zip_code=17701 site_time_zone_utc_offset=-5 -County "PA, McKean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200830.epw site_zip_code=16701 site_time_zone_utc_offset=-5 -County "PA, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200850.epw site_zip_code=16148 site_time_zone_utc_offset=-5 -County "PA, Mifflin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200870.epw site_zip_code=17044 site_time_zone_utc_offset=-5 -County "PA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200890.epw site_zip_code=18301 site_time_zone_utc_offset=-5 -County "PA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200910.epw site_zip_code=19446 site_time_zone_utc_offset=-5 -County "PA, Montour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200930.epw site_zip_code=17821 site_time_zone_utc_offset=-5 -County "PA, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200950.epw site_zip_code=18042 site_time_zone_utc_offset=-5 -County "PA, Northumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200970.epw site_zip_code=17801 site_time_zone_utc_offset=-5 -County "PA, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200990.epw site_zip_code=17020 site_time_zone_utc_offset=-5 -County "PA, Philadelphia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201010.epw site_zip_code=19143 site_time_zone_utc_offset=-5 -County "PA, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201030.epw site_zip_code=18337 site_time_zone_utc_offset=-5 -County "PA, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201050.epw site_zip_code=16915 site_time_zone_utc_offset=-5 -County "PA, Schuylkill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201070.epw site_zip_code=17901 site_time_zone_utc_offset=-5 -County "PA, Snyder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201090.epw site_zip_code=17870 site_time_zone_utc_offset=-5 -County "PA, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201110.epw site_zip_code=15501 site_time_zone_utc_offset=-5 -County "PA, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201130.epw site_zip_code=18614 site_time_zone_utc_offset=-5 -County "PA, Susquehanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201150.epw site_zip_code=18801 site_time_zone_utc_offset=-5 -County "PA, Tioga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201170.epw site_zip_code=16901 site_time_zone_utc_offset=-5 -County "PA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201190.epw site_zip_code=17837 site_time_zone_utc_offset=-5 -County "PA, Venango County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201210.epw site_zip_code=16301 site_time_zone_utc_offset=-5 -County "PA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201230.epw site_zip_code=16365 site_time_zone_utc_offset=-5 -County "PA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201250.epw site_zip_code=15301 site_time_zone_utc_offset=-5 -County "PA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201270.epw site_zip_code=18431 site_time_zone_utc_offset=-5 -County "PA, Westmoreland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201290.epw site_zip_code=15601 site_time_zone_utc_offset=-5 -County "PA, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201310.epw site_zip_code=18657 site_time_zone_utc_offset=-5 -County "PA, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201330.epw site_zip_code=17331 site_time_zone_utc_offset=-5 -County "RI, Bristol County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400010.epw site_zip_code=02809 site_time_zone_utc_offset=-5 -County "RI, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400030.epw site_zip_code=02893 site_time_zone_utc_offset=-5 -County "RI, Newport County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400050.epw site_zip_code=02840 site_time_zone_utc_offset=-5 -County "RI, Providence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400070.epw site_zip_code=02860 site_time_zone_utc_offset=-5 -County "RI, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400090.epw site_zip_code=02891 site_time_zone_utc_offset=-5 -County "SC, Abbeville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500010.epw site_zip_code=29620 site_time_zone_utc_offset=-5 -County "SC, Aiken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500030.epw site_zip_code=29803 site_time_zone_utc_offset=-5 -County "SC, Allendale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500050.epw site_zip_code=29810 site_time_zone_utc_offset=-5 -County "SC, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500070.epw site_zip_code=29621 site_time_zone_utc_offset=-5 -County "SC, Bamberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500090.epw site_zip_code=29003 site_time_zone_utc_offset=-5 -County "SC, Barnwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500110.epw site_zip_code=29812 site_time_zone_utc_offset=-5 -County "SC, Beaufort County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500130.epw site_zip_code=29910 site_time_zone_utc_offset=-5 -County "SC, Berkeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500150.epw site_zip_code=29445 site_time_zone_utc_offset=-5 -County "SC, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500170.epw site_zip_code=29135 site_time_zone_utc_offset=-5 -County "SC, Charleston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500190.epw site_zip_code=29464 site_time_zone_utc_offset=-5 -County "SC, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500210.epw site_zip_code=29340 site_time_zone_utc_offset=-5 -County "SC, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500230.epw site_zip_code=29706 site_time_zone_utc_offset=-5 -County "SC, Chesterfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500250.epw site_zip_code=29520 site_time_zone_utc_offset=-5 -County "SC, Clarendon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500270.epw site_zip_code=29102 site_time_zone_utc_offset=-5 -County "SC, Colleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500290.epw site_zip_code=29488 site_time_zone_utc_offset=-5 -County "SC, Darlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500310.epw site_zip_code=29550 site_time_zone_utc_offset=-5 -County "SC, Dillon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500330.epw site_zip_code=29536 site_time_zone_utc_offset=-5 -County "SC, Dorchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500350.epw site_zip_code=29485 site_time_zone_utc_offset=-5 -County "SC, Edgefield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500370.epw site_zip_code=29860 site_time_zone_utc_offset=-5 -County "SC, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500390.epw site_zip_code=29180 site_time_zone_utc_offset=-5 -County "SC, Florence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500410.epw site_zip_code=29501 site_time_zone_utc_offset=-5 -County "SC, Georgetown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500430.epw site_zip_code=29440 site_time_zone_utc_offset=-5 -County "SC, Greenville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500450.epw site_zip_code=29681 site_time_zone_utc_offset=-5 -County "SC, Greenwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500470.epw site_zip_code=29649 site_time_zone_utc_offset=-5 -County "SC, Hampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500490.epw site_zip_code=29918 site_time_zone_utc_offset=-5 -County "SC, Horry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500510.epw site_zip_code=29579 site_time_zone_utc_offset=-5 -County "SC, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500530.epw site_zip_code=29936 site_time_zone_utc_offset=-5 -County "SC, Kershaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500550.epw site_zip_code=29020 site_time_zone_utc_offset=-5 -County "SC, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500570.epw site_zip_code=29720 site_time_zone_utc_offset=-5 -County "SC, Laurens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500590.epw site_zip_code=29360 site_time_zone_utc_offset=-5 -County "SC, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500610.epw site_zip_code=29010 site_time_zone_utc_offset=-5 -County "SC, Lexington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500630.epw site_zip_code=29072 site_time_zone_utc_offset=-5 -County "SC, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500670.epw site_zip_code=29571 site_time_zone_utc_offset=-5 -County "SC, Marlboro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500690.epw site_zip_code=29512 site_time_zone_utc_offset=-5 -County "SC, McCormick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500650.epw site_zip_code=29835 site_time_zone_utc_offset=-5 -County "SC, Newberry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500710.epw site_zip_code=29108 site_time_zone_utc_offset=-5 -County "SC, Oconee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500730.epw site_zip_code=29678 site_time_zone_utc_offset=-5 -County "SC, Orangeburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500750.epw site_zip_code=29115 site_time_zone_utc_offset=-5 -County "SC, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500770.epw site_zip_code=29640 site_time_zone_utc_offset=-5 -County "SC, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500790.epw site_zip_code=29223 site_time_zone_utc_offset=-5 -County "SC, Saluda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500810.epw site_zip_code=29138 site_time_zone_utc_offset=-5 -County "SC, Spartanburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500830.epw site_zip_code=29301 site_time_zone_utc_offset=-5 -County "SC, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500850.epw site_zip_code=29150 site_time_zone_utc_offset=-5 -County "SC, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500870.epw site_zip_code=29379 site_time_zone_utc_offset=-5 -County "SC, Williamsburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500890.epw site_zip_code=29556 site_time_zone_utc_offset=-5 -County "SC, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500910.epw site_zip_code=29732 site_time_zone_utc_offset=-5 -County "SD, Aurora County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600030.epw site_zip_code=57368 site_time_zone_utc_offset=-6 -County "SD, Beadle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600050.epw site_zip_code=57350 site_time_zone_utc_offset=-6 -County "SD, Bennett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600070.epw site_zip_code=57551 site_time_zone_utc_offset=-7 -County "SD, Bon Homme County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600090.epw site_zip_code=57066 site_time_zone_utc_offset=-6 -County "SD, Brookings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600110.epw site_zip_code=57006 site_time_zone_utc_offset=-6 -County "SD, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600130.epw site_zip_code=57401 site_time_zone_utc_offset=-6 -County "SD, Brule County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600150.epw site_zip_code=57325 site_time_zone_utc_offset=-6 -County "SD, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600170.epw site_zip_code=57341 site_time_zone_utc_offset=-6 -County "SD, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600190.epw site_zip_code=57717 site_time_zone_utc_offset=-7 -County "SD, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600210.epw site_zip_code=57632 site_time_zone_utc_offset=-6 -County "SD, Charles Mix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600230.epw site_zip_code=57380 site_time_zone_utc_offset=-6 -County "SD, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600250.epw site_zip_code=57225 site_time_zone_utc_offset=-6 -County "SD, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600270.epw site_zip_code=57069 site_time_zone_utc_offset=-6 -County "SD, Codington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600290.epw site_zip_code=57201 site_time_zone_utc_offset=-6 -County "SD, Corson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600310.epw site_zip_code=57642 site_time_zone_utc_offset=-7 -County "SD, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600330.epw site_zip_code=57730 site_time_zone_utc_offset=-7 -County "SD, Davison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600350.epw site_zip_code=57301 site_time_zone_utc_offset=-6 -County "SD, Day County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600370.epw site_zip_code=57274 site_time_zone_utc_offset=-6 -County "SD, Deuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600390.epw site_zip_code=57226 site_time_zone_utc_offset=-6 -County "SD, Dewey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600410.epw site_zip_code=57625 site_time_zone_utc_offset=-7 -County "SD, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600430.epw site_zip_code=57328 site_time_zone_utc_offset=-6 -County "SD, Edmunds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600450.epw site_zip_code=57451 site_time_zone_utc_offset=-6 -County "SD, Fall River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600470.epw site_zip_code=57747 site_time_zone_utc_offset=-7 -County "SD, Faulk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600490.epw site_zip_code=57438 site_time_zone_utc_offset=-6 -County "SD, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600510.epw site_zip_code=57252 site_time_zone_utc_offset=-6 -County "SD, Gregory County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600530.epw site_zip_code=57533 site_time_zone_utc_offset=-6 -County "SD, Haakon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600550.epw site_zip_code=57552 site_time_zone_utc_offset=-7 -County "SD, Hamlin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600570.epw site_zip_code=57223 site_time_zone_utc_offset=-6 -County "SD, Hand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600590.epw site_zip_code=57362 site_time_zone_utc_offset=-6 -County "SD, Hanson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600610.epw site_zip_code=57311 site_time_zone_utc_offset=-6 -County "SD, Harding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600630.epw site_zip_code=57720 site_time_zone_utc_offset=-7 -County "SD, Hughes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600650.epw site_zip_code=57501 site_time_zone_utc_offset=-6 -County "SD, Hutchinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600670.epw site_zip_code=57366 site_time_zone_utc_offset=-6 -County "SD, Hyde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600690.epw site_zip_code=57345 site_time_zone_utc_offset=-6 -County "SD, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600710.epw site_zip_code=57543 site_time_zone_utc_offset=-7 -County "SD, Jerauld County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600730.epw site_zip_code=57382 site_time_zone_utc_offset=-6 -County "SD, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600750.epw site_zip_code=57559 site_time_zone_utc_offset=-6 -County "SD, Kingsbury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600770.epw site_zip_code=57231 site_time_zone_utc_offset=-6 -County "SD, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600790.epw site_zip_code=57042 site_time_zone_utc_offset=-6 -County "SD, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600810.epw site_zip_code=57783 site_time_zone_utc_offset=-7 -County "SD, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600830.epw site_zip_code=57108 site_time_zone_utc_offset=-6 -County "SD, Lyman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600850.epw site_zip_code=57569 site_time_zone_utc_offset=-6 -County "SD, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600910.epw site_zip_code=57430 site_time_zone_utc_offset=-6 -County "SD, McCook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600870.epw site_zip_code=57058 site_time_zone_utc_offset=-6 -County "SD, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600890.epw site_zip_code=57437 site_time_zone_utc_offset=-6 -County "SD, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600930.epw site_zip_code=57785 site_time_zone_utc_offset=-7 -County "SD, Mellette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600950.epw site_zip_code=57579 site_time_zone_utc_offset=-6 -County "SD, Miner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600970.epw site_zip_code=57349 site_time_zone_utc_offset=-6 -County "SD, Minnehaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600990.epw site_zip_code=57106 site_time_zone_utc_offset=-6 -County "SD, Moody County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601010.epw site_zip_code=57028 site_time_zone_utc_offset=-6 -County "SD, Oglala Lakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601020.epw site_zip_code=57770 site_time_zone_utc_offset=-7 -County "SD, Pennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601030.epw site_zip_code=57701 site_time_zone_utc_offset=-7 -County "SD, Perkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601050.epw site_zip_code=57638 site_time_zone_utc_offset=-7 -County "SD, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601070.epw site_zip_code=57442 site_time_zone_utc_offset=-6 -County "SD, Roberts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601090.epw site_zip_code=57262 site_time_zone_utc_offset=-6 -County "SD, Sanborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601110.epw site_zip_code=57385 site_time_zone_utc_offset=-6 -County "SD, Spink County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601150.epw site_zip_code=57469 site_time_zone_utc_offset=-6 -County "SD, Stanley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601170.epw site_zip_code=57532 site_time_zone_utc_offset=-7 -County "SD, Sully County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601190.epw site_zip_code=57564 site_time_zone_utc_offset=-6 -County "SD, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601210.epw site_zip_code=57555 site_time_zone_utc_offset=-6 -County "SD, Tripp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601230.epw site_zip_code=57580 site_time_zone_utc_offset=-6 -County "SD, Turner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601250.epw site_zip_code=57053 site_time_zone_utc_offset=-6 -County "SD, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601270.epw site_zip_code=57049 site_time_zone_utc_offset=-6 -County "SD, Walworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601290.epw site_zip_code=57601 site_time_zone_utc_offset=-6 -County "SD, Yankton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601350.epw site_zip_code=57078 site_time_zone_utc_offset=-6 -County "SD, Ziebach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601370.epw site_zip_code=57623 site_time_zone_utc_offset=-7 -County "TN, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700010.epw site_zip_code=37830 site_time_zone_utc_offset=-5 -County "TN, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700030.epw site_zip_code=37160 site_time_zone_utc_offset=-6 -County "TN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700050.epw site_zip_code=38320 site_time_zone_utc_offset=-6 -County "TN, Bledsoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700070.epw site_zip_code=37367 site_time_zone_utc_offset=-6 -County "TN, Blount County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700090.epw site_zip_code=37803 site_time_zone_utc_offset=-5 -County "TN, Bradley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700110.epw site_zip_code=37312 site_time_zone_utc_offset=-5 -County "TN, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700130.epw site_zip_code=37766 site_time_zone_utc_offset=-5 -County "TN, Cannon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700150.epw site_zip_code=37190 site_time_zone_utc_offset=-6 -County "TN, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700170.epw site_zip_code=38344 site_time_zone_utc_offset=-6 -County "TN, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700190.epw site_zip_code=37643 site_time_zone_utc_offset=-5 -County "TN, Cheatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700210.epw site_zip_code=37015 site_time_zone_utc_offset=-6 -County "TN, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700230.epw site_zip_code=38340 site_time_zone_utc_offset=-6 -County "TN, Claiborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700250.epw site_zip_code=37879 site_time_zone_utc_offset=-5 -County "TN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700270.epw site_zip_code=38551 site_time_zone_utc_offset=-6 -County "TN, Cocke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700290.epw site_zip_code=37821 site_time_zone_utc_offset=-5 -County "TN, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700310.epw site_zip_code=37355 site_time_zone_utc_offset=-6 -County "TN, Crockett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700330.epw site_zip_code=38006 site_time_zone_utc_offset=-6 -County "TN, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700350.epw site_zip_code=38555 site_time_zone_utc_offset=-6 -County "TN, Davidson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700370.epw site_zip_code=37013 site_time_zone_utc_offset=-6 -County "TN, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700410.epw site_zip_code=37166 site_time_zone_utc_offset=-6 -County "TN, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700390.epw site_zip_code=38363 site_time_zone_utc_offset=-6 -County "TN, Dickson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700430.epw site_zip_code=37055 site_time_zone_utc_offset=-6 -County "TN, Dyer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700450.epw site_zip_code=38024 site_time_zone_utc_offset=-6 -County "TN, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700470.epw site_zip_code=38060 site_time_zone_utc_offset=-6 -County "TN, Fentress County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700490.epw site_zip_code=38556 site_time_zone_utc_offset=-6 -County "TN, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700510.epw site_zip_code=37398 site_time_zone_utc_offset=-6 -County "TN, Gibson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700530.epw site_zip_code=38343 site_time_zone_utc_offset=-6 -County "TN, Giles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700550.epw site_zip_code=38478 site_time_zone_utc_offset=-6 -County "TN, Grainger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700570.epw site_zip_code=37861 site_time_zone_utc_offset=-5 -County "TN, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700590.epw site_zip_code=37743 site_time_zone_utc_offset=-5 -County "TN, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700610.epw site_zip_code=37387 site_time_zone_utc_offset=-6 -County "TN, Hamblen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700630.epw site_zip_code=37814 site_time_zone_utc_offset=-5 -County "TN, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700650.epw site_zip_code=37421 site_time_zone_utc_offset=-5 -County "TN, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700670.epw site_zip_code=37869 site_time_zone_utc_offset=-5 -County "TN, Hardeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700690.epw site_zip_code=38008 site_time_zone_utc_offset=-6 -County "TN, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700710.epw site_zip_code=38372 site_time_zone_utc_offset=-6 -County "TN, Hawkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700730.epw site_zip_code=37857 site_time_zone_utc_offset=-5 -County "TN, Haywood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700750.epw site_zip_code=38012 site_time_zone_utc_offset=-6 -County "TN, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700770.epw site_zip_code=38351 site_time_zone_utc_offset=-6 -County "TN, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700790.epw site_zip_code=38242 site_time_zone_utc_offset=-6 -County "TN, Hickman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700810.epw site_zip_code=37033 site_time_zone_utc_offset=-6 -County "TN, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700830.epw site_zip_code=37061 site_time_zone_utc_offset=-6 -County "TN, Humphreys County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700850.epw site_zip_code=37185 site_time_zone_utc_offset=-6 -County "TN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700870.epw site_zip_code=38562 site_time_zone_utc_offset=-6 -County "TN, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700890.epw site_zip_code=37725 site_time_zone_utc_offset=-5 -County "TN, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700910.epw site_zip_code=37683 site_time_zone_utc_offset=-5 -County "TN, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700930.epw site_zip_code=37920 site_time_zone_utc_offset=-5 -County "TN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700950.epw site_zip_code=38079 site_time_zone_utc_offset=-6 -County "TN, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700970.epw site_zip_code=38063 site_time_zone_utc_offset=-6 -County "TN, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700990.epw site_zip_code=38464 site_time_zone_utc_offset=-6 -County "TN, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701010.epw site_zip_code=38462 site_time_zone_utc_offset=-6 -County "TN, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701030.epw site_zip_code=37334 site_time_zone_utc_offset=-6 -County "TN, Loudon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701050.epw site_zip_code=37774 site_time_zone_utc_offset=-5 -County "TN, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701110.epw site_zip_code=37083 site_time_zone_utc_offset=-6 -County "TN, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701130.epw site_zip_code=38305 site_time_zone_utc_offset=-6 -County "TN, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701150.epw site_zip_code=37397 site_time_zone_utc_offset=-6 -County "TN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701170.epw site_zip_code=37091 site_time_zone_utc_offset=-6 -County "TN, Maury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701190.epw site_zip_code=38401 site_time_zone_utc_offset=-6 -County "TN, McMinn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701070.epw site_zip_code=37303 site_time_zone_utc_offset=-5 -County "TN, McNairy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701090.epw site_zip_code=38375 site_time_zone_utc_offset=-6 -County "TN, Meigs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701210.epw site_zip_code=37322 site_time_zone_utc_offset=-5 -County "TN, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701230.epw site_zip_code=37354 site_time_zone_utc_offset=-5 -County "TN, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701250.epw site_zip_code=37042 site_time_zone_utc_offset=-6 -County "TN, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701270.epw site_zip_code=37352 site_time_zone_utc_offset=-6 -County "TN, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701290.epw site_zip_code=37887 site_time_zone_utc_offset=-5 -County "TN, Obion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701310.epw site_zip_code=38261 site_time_zone_utc_offset=-6 -County "TN, Overton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701330.epw site_zip_code=38570 site_time_zone_utc_offset=-6 -County "TN, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701350.epw site_zip_code=37096 site_time_zone_utc_offset=-6 -County "TN, Pickett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701370.epw site_zip_code=38549 site_time_zone_utc_offset=-6 -County "TN, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701390.epw site_zip_code=37307 site_time_zone_utc_offset=-5 -County "TN, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701410.epw site_zip_code=38501 site_time_zone_utc_offset=-6 -County "TN, Rhea County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701430.epw site_zip_code=37321 site_time_zone_utc_offset=-5 -County "TN, Roane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701450.epw site_zip_code=37748 site_time_zone_utc_offset=-5 -County "TN, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701470.epw site_zip_code=37172 site_time_zone_utc_offset=-6 -County "TN, Rutherford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701490.epw site_zip_code=37128 site_time_zone_utc_offset=-6 -County "TN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701510.epw site_zip_code=37841 site_time_zone_utc_offset=-5 -County "TN, Sequatchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701530.epw site_zip_code=37327 site_time_zone_utc_offset=-6 -County "TN, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701550.epw site_zip_code=37876 site_time_zone_utc_offset=-5 -County "TN, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701570.epw site_zip_code=38111 site_time_zone_utc_offset=-6 -County "TN, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701590.epw site_zip_code=37030 site_time_zone_utc_offset=-6 -County "TN, Stewart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701610.epw site_zip_code=37058 site_time_zone_utc_offset=-6 -County "TN, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701630.epw site_zip_code=37660 site_time_zone_utc_offset=-5 -County "TN, Sumner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701650.epw site_zip_code=37075 site_time_zone_utc_offset=-6 -County "TN, Tipton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701670.epw site_zip_code=38019 site_time_zone_utc_offset=-6 -County "TN, Trousdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701690.epw site_zip_code=37074 site_time_zone_utc_offset=-6 -County "TN, Unicoi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701710.epw site_zip_code=37650 site_time_zone_utc_offset=-5 -County "TN, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701730.epw site_zip_code=37807 site_time_zone_utc_offset=-5 -County "TN, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701750.epw site_zip_code=38585 site_time_zone_utc_offset=-6 -County "TN, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701770.epw site_zip_code=37110 site_time_zone_utc_offset=-6 -County "TN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701790.epw site_zip_code=37604 site_time_zone_utc_offset=-5 -County "TN, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701810.epw site_zip_code=38485 site_time_zone_utc_offset=-6 -County "TN, Weakley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701830.epw site_zip_code=38237 site_time_zone_utc_offset=-6 -County "TN, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701850.epw site_zip_code=38583 site_time_zone_utc_offset=-6 -County "TN, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701870.epw site_zip_code=37064 site_time_zone_utc_offset=-6 -County "TN, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701890.epw site_zip_code=37122 site_time_zone_utc_offset=-6 -County "TX, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800010.epw site_zip_code=75803 site_time_zone_utc_offset=-6 -County "TX, Andrews County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800030.epw site_zip_code=79714 site_time_zone_utc_offset=-6 -County "TX, Angelina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800050.epw site_zip_code=75904 site_time_zone_utc_offset=-6 -County "TX, Aransas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800070.epw site_zip_code=78382 site_time_zone_utc_offset=-6 -County "TX, Archer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800090.epw site_zip_code=76310 site_time_zone_utc_offset=-6 -County "TX, Armstrong County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800110.epw site_zip_code=79019 site_time_zone_utc_offset=-6 -County "TX, Atascosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800130.epw site_zip_code=78064 site_time_zone_utc_offset=-6 -County "TX, Austin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800150.epw site_zip_code=77474 site_time_zone_utc_offset=-6 -County "TX, Bailey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800170.epw site_zip_code=79347 site_time_zone_utc_offset=-6 -County "TX, Bandera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800190.epw site_zip_code=78003 site_time_zone_utc_offset=-6 -County "TX, Bastrop County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800210.epw site_zip_code=78602 site_time_zone_utc_offset=-6 -County "TX, Baylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800230.epw site_zip_code=76380 site_time_zone_utc_offset=-6 -County "TX, Bee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800250.epw site_zip_code=78102 site_time_zone_utc_offset=-6 -County "TX, Bell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800270.epw site_zip_code=76502 site_time_zone_utc_offset=-6 -County "TX, Bexar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800290.epw site_zip_code=78245 site_time_zone_utc_offset=-6 -County "TX, Blanco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800310.epw site_zip_code=78606 site_time_zone_utc_offset=-6 -County "TX, Borden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800330.epw site_zip_code=79351 site_time_zone_utc_offset=-6 -County "TX, Bosque County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800350.epw site_zip_code=76634 site_time_zone_utc_offset=-6 -County "TX, Bowie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800370.epw site_zip_code=75501 site_time_zone_utc_offset=-6 -County "TX, Brazoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800390.epw site_zip_code=77584 site_time_zone_utc_offset=-6 -County "TX, Brazos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800410.epw site_zip_code=77845 site_time_zone_utc_offset=-6 -County "TX, Brewster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800430.epw site_zip_code=79830 site_time_zone_utc_offset=-6 -County "TX, Briscoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800450.epw site_zip_code=79257 site_time_zone_utc_offset=-6 -County "TX, Brooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800470.epw site_zip_code=78355 site_time_zone_utc_offset=-6 -County "TX, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800490.epw site_zip_code=76801 site_time_zone_utc_offset=-6 -County "TX, Burleson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800510.epw site_zip_code=77836 site_time_zone_utc_offset=-6 -County "TX, Burnet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800530.epw site_zip_code=78654 site_time_zone_utc_offset=-6 -County "TX, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800550.epw site_zip_code=78644 site_time_zone_utc_offset=-6 -County "TX, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800570.epw site_zip_code=77979 site_time_zone_utc_offset=-6 -County "TX, Callahan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800590.epw site_zip_code=79510 site_time_zone_utc_offset=-6 -County "TX, Cameron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800610.epw site_zip_code=78521 site_time_zone_utc_offset=-6 -County "TX, Camp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800630.epw site_zip_code=75686 site_time_zone_utc_offset=-6 -County "TX, Carson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800650.epw site_zip_code=79068 site_time_zone_utc_offset=-6 -County "TX, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800670.epw site_zip_code=75551 site_time_zone_utc_offset=-6 -County "TX, Castro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800690.epw site_zip_code=79027 site_time_zone_utc_offset=-6 -County "TX, Chambers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800710.epw site_zip_code=77523 site_time_zone_utc_offset=-6 -County "TX, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800730.epw site_zip_code=75766 site_time_zone_utc_offset=-6 -County "TX, Childress County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800750.epw site_zip_code=79201 site_time_zone_utc_offset=-6 -County "TX, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800770.epw site_zip_code=76365 site_time_zone_utc_offset=-6 -County "TX, Cochran County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800790.epw site_zip_code=79346 site_time_zone_utc_offset=-6 -County "TX, Coke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800810.epw site_zip_code=76945 site_time_zone_utc_offset=-6 -County "TX, Coleman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800830.epw site_zip_code=76834 site_time_zone_utc_offset=-6 -County "TX, Collin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800850.epw site_zip_code=75035 site_time_zone_utc_offset=-6 -County "TX, Collingsworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800870.epw site_zip_code=79095 site_time_zone_utc_offset=-6 -County "TX, Colorado County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800890.epw site_zip_code=78934 site_time_zone_utc_offset=-6 -County "TX, Comal County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800910.epw site_zip_code=78130 site_time_zone_utc_offset=-6 -County "TX, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800930.epw site_zip_code=76442 site_time_zone_utc_offset=-6 -County "TX, Concho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800950.epw site_zip_code=76837 site_time_zone_utc_offset=-6 -County "TX, Cooke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800970.epw site_zip_code=76240 site_time_zone_utc_offset=-6 -County "TX, Coryell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800990.epw site_zip_code=76522 site_time_zone_utc_offset=-6 -County "TX, Cottle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801010.epw site_zip_code=79248 site_time_zone_utc_offset=-6 -County "TX, Crane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801030.epw site_zip_code=79731 site_time_zone_utc_offset=-6 -County "TX, Crockett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801050.epw site_zip_code=76943 site_time_zone_utc_offset=-6 -County "TX, Crosby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801070.epw site_zip_code=79322 site_time_zone_utc_offset=-6 -County "TX, Culberson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801090.epw site_zip_code=79847 site_time_zone_utc_offset=-6 -County "TX, Dallam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801110.epw site_zip_code=79022 site_time_zone_utc_offset=-6 -County "TX, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801130.epw site_zip_code=75243 site_time_zone_utc_offset=-6 -County "TX, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801150.epw site_zip_code=79331 site_time_zone_utc_offset=-6 -County "TX, DeWitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801230.epw site_zip_code=77954 site_time_zone_utc_offset=-6 -County "TX, Deaf Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801170.epw site_zip_code=79045 site_time_zone_utc_offset=-6 -County "TX, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801190.epw site_zip_code=75432 site_time_zone_utc_offset=-6 -County "TX, Denton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801210.epw site_zip_code=75056 site_time_zone_utc_offset=-6 -County "TX, Dickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801250.epw site_zip_code=79370 site_time_zone_utc_offset=-6 -County "TX, Dimmit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801270.epw site_zip_code=78834 site_time_zone_utc_offset=-6 -County "TX, Donley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801290.epw site_zip_code=79226 site_time_zone_utc_offset=-6 -County "TX, Duval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801310.epw site_zip_code=78384 site_time_zone_utc_offset=-6 -County "TX, Eastland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801330.epw site_zip_code=76437 site_time_zone_utc_offset=-6 -County "TX, Ector County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801350.epw site_zip_code=79762 site_time_zone_utc_offset=-6 -County "TX, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801370.epw site_zip_code=78880 site_time_zone_utc_offset=-6 -County "TX, El Paso County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801410.epw site_zip_code=79936 site_time_zone_utc_offset=-7 -County "TX, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801390.epw site_zip_code=75165 site_time_zone_utc_offset=-6 -County "TX, Erath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801430.epw site_zip_code=76401 site_time_zone_utc_offset=-6 -County "TX, Falls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801450.epw site_zip_code=76661 site_time_zone_utc_offset=-6 -County "TX, Fannin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801470.epw site_zip_code=75418 site_time_zone_utc_offset=-6 -County "TX, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801490.epw site_zip_code=78945 site_time_zone_utc_offset=-6 -County "TX, Fisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801510.epw site_zip_code=79546 site_time_zone_utc_offset=-6 -County "TX, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801530.epw site_zip_code=79235 site_time_zone_utc_offset=-6 -County "TX, Foard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801550.epw site_zip_code=79227 site_time_zone_utc_offset=-6 -County "TX, Fort Bend County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801570.epw site_zip_code=77494 site_time_zone_utc_offset=-6 -County "TX, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801590.epw site_zip_code=75457 site_time_zone_utc_offset=-6 -County "TX, Freestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801610.epw site_zip_code=75860 site_time_zone_utc_offset=-6 -County "TX, Frio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801630.epw site_zip_code=78061 site_time_zone_utc_offset=-6 -County "TX, Gaines County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801650.epw site_zip_code=79360 site_time_zone_utc_offset=-6 -County "TX, Galveston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801670.epw site_zip_code=77573 site_time_zone_utc_offset=-6 -County "TX, Garza County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801690.epw site_zip_code=79356 site_time_zone_utc_offset=-6 -County "TX, Gillespie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801710.epw site_zip_code=78624 site_time_zone_utc_offset=-6 -County "TX, Glasscock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801730.epw site_zip_code=79739 site_time_zone_utc_offset=-6 -County "TX, Goliad County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801750.epw site_zip_code=77963 site_time_zone_utc_offset=-6 -County "TX, Gonzales County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801770.epw site_zip_code=78629 site_time_zone_utc_offset=-6 -County "TX, Gray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801790.epw site_zip_code=79065 site_time_zone_utc_offset=-6 -County "TX, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801810.epw site_zip_code=75092 site_time_zone_utc_offset=-6 -County "TX, Gregg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801830.epw site_zip_code=75605 site_time_zone_utc_offset=-6 -County "TX, Grimes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801850.epw site_zip_code=77868 site_time_zone_utc_offset=-6 -County "TX, Guadalupe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801870.epw site_zip_code=78155 site_time_zone_utc_offset=-6 -County "TX, Hale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801890.epw site_zip_code=79072 site_time_zone_utc_offset=-6 -County "TX, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801910.epw site_zip_code=79245 site_time_zone_utc_offset=-6 -County "TX, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801930.epw site_zip_code=76531 site_time_zone_utc_offset=-6 -County "TX, Hansford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801950.epw site_zip_code=79081 site_time_zone_utc_offset=-6 -County "TX, Hardeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801970.epw site_zip_code=79252 site_time_zone_utc_offset=-6 -County "TX, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801990.epw site_zip_code=77657 site_time_zone_utc_offset=-6 -County "TX, Harris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802010.epw site_zip_code=77449 site_time_zone_utc_offset=-6 -County "TX, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802030.epw site_zip_code=75672 site_time_zone_utc_offset=-6 -County "TX, Hartley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802050.epw site_zip_code=79022 site_time_zone_utc_offset=-6 -County "TX, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802070.epw site_zip_code=79521 site_time_zone_utc_offset=-6 -County "TX, Hays County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802090.epw site_zip_code=78666 site_time_zone_utc_offset=-6 -County "TX, Hemphill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802110.epw site_zip_code=79014 site_time_zone_utc_offset=-6 -County "TX, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802130.epw site_zip_code=75156 site_time_zone_utc_offset=-6 -County "TX, Hidalgo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802150.epw site_zip_code=78572 site_time_zone_utc_offset=-6 -County "TX, Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802170.epw site_zip_code=76692 site_time_zone_utc_offset=-6 -County "TX, Hockley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802190.epw site_zip_code=79336 site_time_zone_utc_offset=-6 -County "TX, Hood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802210.epw site_zip_code=76048 site_time_zone_utc_offset=-6 -County "TX, Hopkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802230.epw site_zip_code=75482 site_time_zone_utc_offset=-6 -County "TX, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802250.epw site_zip_code=75835 site_time_zone_utc_offset=-6 -County "TX, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802270.epw site_zip_code=79720 site_time_zone_utc_offset=-6 -County "TX, Hudspeth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802290.epw site_zip_code=79839 site_time_zone_utc_offset=-7 -County "TX, Hunt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802310.epw site_zip_code=75401 site_time_zone_utc_offset=-6 -County "TX, Hutchinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802330.epw site_zip_code=79007 site_time_zone_utc_offset=-6 -County "TX, Irion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802350.epw site_zip_code=76941 site_time_zone_utc_offset=-6 -County "TX, Jack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802370.epw site_zip_code=76458 site_time_zone_utc_offset=-6 -County "TX, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802390.epw site_zip_code=77957 site_time_zone_utc_offset=-6 -County "TX, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802410.epw site_zip_code=75951 site_time_zone_utc_offset=-6 -County "TX, Jeff Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802430.epw site_zip_code=79734 site_time_zone_utc_offset=-6 -County "TX, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802450.epw site_zip_code=77642 site_time_zone_utc_offset=-6 -County "TX, Jim Hogg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802470.epw site_zip_code=78361 site_time_zone_utc_offset=-6 -County "TX, Jim Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802490.epw site_zip_code=78332 site_time_zone_utc_offset=-6 -County "TX, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802510.epw site_zip_code=76028 site_time_zone_utc_offset=-6 -County "TX, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802530.epw site_zip_code=79501 site_time_zone_utc_offset=-6 -County "TX, Karnes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802550.epw site_zip_code=78119 site_time_zone_utc_offset=-6 -County "TX, Kaufman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802570.epw site_zip_code=75126 site_time_zone_utc_offset=-6 -County "TX, Kendall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802590.epw site_zip_code=78006 site_time_zone_utc_offset=-6 -County "TX, Kenedy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802610.epw site_zip_code=78385 site_time_zone_utc_offset=-6 -County "TX, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802630.epw site_zip_code=79549 site_time_zone_utc_offset=-6 -County "TX, Kerr County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802650.epw site_zip_code=78028 site_time_zone_utc_offset=-6 -County "TX, Kimble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802670.epw site_zip_code=76849 site_time_zone_utc_offset=-6 -County "TX, King County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802690.epw site_zip_code=79248 site_time_zone_utc_offset=-6 -County "TX, Kinney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802710.epw site_zip_code=78832 site_time_zone_utc_offset=-6 -County "TX, Kleberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802730.epw site_zip_code=78363 site_time_zone_utc_offset=-6 -County "TX, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802750.epw site_zip_code=76371 site_time_zone_utc_offset=-6 -County "TX, La Salle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802830.epw site_zip_code=78014 site_time_zone_utc_offset=-6 -County "TX, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802770.epw site_zip_code=75460 site_time_zone_utc_offset=-6 -County "TX, Lamb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802790.epw site_zip_code=79339 site_time_zone_utc_offset=-6 -County "TX, Lampasas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802810.epw site_zip_code=76550 site_time_zone_utc_offset=-6 -County "TX, Lavaca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802850.epw site_zip_code=77964 site_time_zone_utc_offset=-6 -County "TX, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802870.epw site_zip_code=78942 site_time_zone_utc_offset=-6 -County "TX, Leon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802890.epw site_zip_code=75831 site_time_zone_utc_offset=-6 -County "TX, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802910.epw site_zip_code=77327 site_time_zone_utc_offset=-6 -County "TX, Limestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802930.epw site_zip_code=76667 site_time_zone_utc_offset=-6 -County "TX, Lipscomb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802950.epw site_zip_code=79005 site_time_zone_utc_offset=-6 -County "TX, Live Oak County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802970.epw site_zip_code=78022 site_time_zone_utc_offset=-6 -County "TX, Llano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802990.epw site_zip_code=78657 site_time_zone_utc_offset=-6 -County "TX, Loving County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803010.epw site_zip_code=79754 site_time_zone_utc_offset=-6 -County "TX, Lubbock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803030.epw site_zip_code=79424 site_time_zone_utc_offset=-6 -County "TX, Lynn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803050.epw site_zip_code=79373 site_time_zone_utc_offset=-6 -County "TX, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803130.epw site_zip_code=77864 site_time_zone_utc_offset=-6 -County "TX, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803150.epw site_zip_code=75657 site_time_zone_utc_offset=-6 -County "TX, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803170.epw site_zip_code=79782 site_time_zone_utc_offset=-6 -County "TX, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803190.epw site_zip_code=76856 site_time_zone_utc_offset=-6 -County "TX, Matagorda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803210.epw site_zip_code=77414 site_time_zone_utc_offset=-6 -County "TX, Maverick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803230.epw site_zip_code=78852 site_time_zone_utc_offset=-6 -County "TX, McCulloch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803070.epw site_zip_code=76825 site_time_zone_utc_offset=-6 -County "TX, McLennan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803090.epw site_zip_code=76706 site_time_zone_utc_offset=-6 -County "TX, McMullen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803110.epw site_zip_code=78072 site_time_zone_utc_offset=-6 -County "TX, Medina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803250.epw site_zip_code=78861 site_time_zone_utc_offset=-6 -County "TX, Menard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803270.epw site_zip_code=76859 site_time_zone_utc_offset=-6 -County "TX, Midland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803290.epw site_zip_code=79705 site_time_zone_utc_offset=-6 -County "TX, Milam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803310.epw site_zip_code=76567 site_time_zone_utc_offset=-6 -County "TX, Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803330.epw site_zip_code=76844 site_time_zone_utc_offset=-6 -County "TX, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803350.epw site_zip_code=79512 site_time_zone_utc_offset=-6 -County "TX, Montague County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803370.epw site_zip_code=76230 site_time_zone_utc_offset=-6 -County "TX, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803390.epw site_zip_code=77386 site_time_zone_utc_offset=-6 -County "TX, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803410.epw site_zip_code=79029 site_time_zone_utc_offset=-6 -County "TX, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803430.epw site_zip_code=75638 site_time_zone_utc_offset=-6 -County "TX, Motley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803450.epw site_zip_code=79234 site_time_zone_utc_offset=-6 -County "TX, Nacogdoches County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803470.epw site_zip_code=75964 site_time_zone_utc_offset=-6 -County "TX, Navarro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803490.epw site_zip_code=75110 site_time_zone_utc_offset=-6 -County "TX, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803510.epw site_zip_code=75966 site_time_zone_utc_offset=-6 -County "TX, Nolan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803530.epw site_zip_code=79556 site_time_zone_utc_offset=-6 -County "TX, Nueces County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803550.epw site_zip_code=78414 site_time_zone_utc_offset=-6 -County "TX, Ochiltree County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803570.epw site_zip_code=79070 site_time_zone_utc_offset=-6 -County "TX, Oldham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803590.epw site_zip_code=79092 site_time_zone_utc_offset=-6 -County "TX, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803610.epw site_zip_code=77630 site_time_zone_utc_offset=-6 -County "TX, Palo Pinto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803630.epw site_zip_code=76067 site_time_zone_utc_offset=-6 -County "TX, Panola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803650.epw site_zip_code=75633 site_time_zone_utc_offset=-6 -County "TX, Parker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803670.epw site_zip_code=76087 site_time_zone_utc_offset=-6 -County "TX, Parmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803690.epw site_zip_code=79035 site_time_zone_utc_offset=-6 -County "TX, Pecos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803710.epw site_zip_code=79735 site_time_zone_utc_offset=-6 -County "TX, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803730.epw site_zip_code=77351 site_time_zone_utc_offset=-6 -County "TX, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803750.epw site_zip_code=79107 site_time_zone_utc_offset=-6 -County "TX, Presidio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803770.epw site_zip_code=79845 site_time_zone_utc_offset=-6 -County "TX, Rains County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803790.epw site_zip_code=75440 site_time_zone_utc_offset=-6 -County "TX, Randall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803810.epw site_zip_code=79109 site_time_zone_utc_offset=-6 -County "TX, Reagan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803830.epw site_zip_code=76932 site_time_zone_utc_offset=-6 -County "TX, Real County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803850.epw site_zip_code=78873 site_time_zone_utc_offset=-6 -County "TX, Red River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803870.epw site_zip_code=75426 site_time_zone_utc_offset=-6 -County "TX, Reeves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803890.epw site_zip_code=79772 site_time_zone_utc_offset=-6 -County "TX, Refugio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803910.epw site_zip_code=78377 site_time_zone_utc_offset=-6 -County "TX, Roberts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803930.epw site_zip_code=79059 site_time_zone_utc_offset=-6 -County "TX, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803950.epw site_zip_code=77859 site_time_zone_utc_offset=-6 -County "TX, Rockwall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803970.epw site_zip_code=75087 site_time_zone_utc_offset=-6 -County "TX, Runnels County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803990.epw site_zip_code=76821 site_time_zone_utc_offset=-6 -County "TX, Rusk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804010.epw site_zip_code=75652 site_time_zone_utc_offset=-6 -County "TX, Sabine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804030.epw site_zip_code=75948 site_time_zone_utc_offset=-6 -County "TX, San Augustine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804050.epw site_zip_code=75972 site_time_zone_utc_offset=-6 -County "TX, San Jacinto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804070.epw site_zip_code=77331 site_time_zone_utc_offset=-6 -County "TX, San Patricio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804090.epw site_zip_code=78374 site_time_zone_utc_offset=-6 -County "TX, San Saba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804110.epw site_zip_code=76877 site_time_zone_utc_offset=-6 -County "TX, Schleicher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804130.epw site_zip_code=76936 site_time_zone_utc_offset=-6 -County "TX, Scurry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804150.epw site_zip_code=79549 site_time_zone_utc_offset=-6 -County "TX, Shackelford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804170.epw site_zip_code=76430 site_time_zone_utc_offset=-6 -County "TX, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804190.epw site_zip_code=75935 site_time_zone_utc_offset=-6 -County "TX, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804210.epw site_zip_code=79084 site_time_zone_utc_offset=-6 -County "TX, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804230.epw site_zip_code=75703 site_time_zone_utc_offset=-6 -County "TX, Somervell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804250.epw site_zip_code=76043 site_time_zone_utc_offset=-6 -County "TX, Starr County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804270.epw site_zip_code=78582 site_time_zone_utc_offset=-6 -County "TX, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804290.epw site_zip_code=76424 site_time_zone_utc_offset=-6 -County "TX, Sterling County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804310.epw site_zip_code=76951 site_time_zone_utc_offset=-6 -County "TX, Stonewall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804330.epw site_zip_code=79502 site_time_zone_utc_offset=-6 -County "TX, Sutton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804350.epw site_zip_code=76950 site_time_zone_utc_offset=-6 -County "TX, Swisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804370.epw site_zip_code=79088 site_time_zone_utc_offset=-6 -County "TX, Tarrant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804390.epw site_zip_code=76244 site_time_zone_utc_offset=-6 -County "TX, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804410.epw site_zip_code=79605 site_time_zone_utc_offset=-6 -County "TX, Terrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804430.epw site_zip_code=78851 site_time_zone_utc_offset=-6 -County "TX, Terry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804450.epw site_zip_code=79316 site_time_zone_utc_offset=-6 -County "TX, Throckmorton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804470.epw site_zip_code=76483 site_time_zone_utc_offset=-6 -County "TX, Titus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804490.epw site_zip_code=75455 site_time_zone_utc_offset=-6 -County "TX, Tom Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804510.epw site_zip_code=76904 site_time_zone_utc_offset=-6 -County "TX, Travis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804530.epw site_zip_code=78660 site_time_zone_utc_offset=-6 -County "TX, Trinity County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804550.epw site_zip_code=75862 site_time_zone_utc_offset=-6 -County "TX, Tyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804570.epw site_zip_code=75979 site_time_zone_utc_offset=-6 -County "TX, Upshur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804590.epw site_zip_code=75644 site_time_zone_utc_offset=-6 -County "TX, Upton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804610.epw site_zip_code=79778 site_time_zone_utc_offset=-6 -County "TX, Uvalde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804630.epw site_zip_code=78801 site_time_zone_utc_offset=-6 -County "TX, Val Verde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804650.epw site_zip_code=78840 site_time_zone_utc_offset=-6 -County "TX, Van Zandt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804670.epw site_zip_code=75103 site_time_zone_utc_offset=-6 -County "TX, Victoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804690.epw site_zip_code=77901 site_time_zone_utc_offset=-6 -County "TX, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804710.epw site_zip_code=77340 site_time_zone_utc_offset=-6 -County "TX, Waller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804730.epw site_zip_code=77423 site_time_zone_utc_offset=-6 -County "TX, Ward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804750.epw site_zip_code=79756 site_time_zone_utc_offset=-6 -County "TX, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804770.epw site_zip_code=77833 site_time_zone_utc_offset=-6 -County "TX, Webb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804790.epw site_zip_code=78045 site_time_zone_utc_offset=-6 -County "TX, Wharton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804810.epw site_zip_code=77437 site_time_zone_utc_offset=-6 -County "TX, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804830.epw site_zip_code=79079 site_time_zone_utc_offset=-6 -County "TX, Wichita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804850.epw site_zip_code=76311 site_time_zone_utc_offset=-6 -County "TX, Wilbarger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804870.epw site_zip_code=76384 site_time_zone_utc_offset=-6 -County "TX, Willacy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804890.epw site_zip_code=78580 site_time_zone_utc_offset=-6 -County "TX, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804910.epw site_zip_code=78641 site_time_zone_utc_offset=-6 -County "TX, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804930.epw site_zip_code=78114 site_time_zone_utc_offset=-6 -County "TX, Winkler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804950.epw site_zip_code=79745 site_time_zone_utc_offset=-6 -County "TX, Wise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804970.epw site_zip_code=76234 site_time_zone_utc_offset=-6 -County "TX, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804990.epw site_zip_code=75773 site_time_zone_utc_offset=-6 -County "TX, Yoakum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805010.epw site_zip_code=79323 site_time_zone_utc_offset=-6 -County "TX, Young County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805030.epw site_zip_code=76450 site_time_zone_utc_offset=-6 -County "TX, Zapata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805050.epw site_zip_code=78076 site_time_zone_utc_offset=-6 -County "TX, Zavala County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805070.epw site_zip_code=78839 site_time_zone_utc_offset=-6 -County "UT, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900010.epw site_zip_code=84713 site_time_zone_utc_offset=-7 -County "UT, Box Elder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900030.epw site_zip_code=84302 site_time_zone_utc_offset=-7 -County "UT, Cache County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900050.epw site_zip_code=84321 site_time_zone_utc_offset=-7 -County "UT, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900070.epw site_zip_code=84501 site_time_zone_utc_offset=-7 -County "UT, Daggett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900090.epw site_zip_code=84046 site_time_zone_utc_offset=-7 -County "UT, Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900110.epw site_zip_code=84015 site_time_zone_utc_offset=-7 -County "UT, Duchesne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900130.epw site_zip_code=84066 site_time_zone_utc_offset=-7 -County "UT, Emery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900150.epw site_zip_code=84528 site_time_zone_utc_offset=-7 -County "UT, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900170.epw site_zip_code=84726 site_time_zone_utc_offset=-7 -County "UT, Grand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900190.epw site_zip_code=84532 site_time_zone_utc_offset=-7 -County "UT, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900210.epw site_zip_code=84721 site_time_zone_utc_offset=-7 -County "UT, Juab County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900230.epw site_zip_code=84648 site_time_zone_utc_offset=-7 -County "UT, Kane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900250.epw site_zip_code=84741 site_time_zone_utc_offset=-7 -County "UT, Millard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900270.epw site_zip_code=84624 site_time_zone_utc_offset=-7 -County "UT, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900290.epw site_zip_code=84050 site_time_zone_utc_offset=-7 -County "UT, Piute County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900310.epw site_zip_code=84750 site_time_zone_utc_offset=-7 -County "UT, Rich County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900330.epw site_zip_code=84028 site_time_zone_utc_offset=-7 -County "UT, Salt Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900350.epw site_zip_code=84096 site_time_zone_utc_offset=-7 -County "UT, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900370.epw site_zip_code=84511 site_time_zone_utc_offset=-7 -County "UT, Sanpete County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900390.epw site_zip_code=84627 site_time_zone_utc_offset=-7 -County "UT, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900410.epw site_zip_code=84701 site_time_zone_utc_offset=-7 -County "UT, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900430.epw site_zip_code=84098 site_time_zone_utc_offset=-7 -County "UT, Tooele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900450.epw site_zip_code=84074 site_time_zone_utc_offset=-7 -County "UT, Uintah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900470.epw site_zip_code=84078 site_time_zone_utc_offset=-7 -County "UT, Utah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900490.epw site_zip_code=84043 site_time_zone_utc_offset=-7 -County "UT, Wasatch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900510.epw site_zip_code=84032 site_time_zone_utc_offset=-7 -County "UT, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900530.epw site_zip_code=84770 site_time_zone_utc_offset=-7 -County "UT, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900550.epw site_zip_code=84775 site_time_zone_utc_offset=-7 -County "UT, Weber County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900570.epw site_zip_code=84404 site_time_zone_utc_offset=-7 -County "VA, Accomack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100010.epw site_zip_code=23336 site_time_zone_utc_offset=-5 -County "VA, Albemarle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100030.epw site_zip_code=22901 site_time_zone_utc_offset=-5 -County "VA, Alexandria city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105100.epw site_zip_code=22304 site_time_zone_utc_offset=-5 -County "VA, Alleghany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100050.epw site_zip_code=24426 site_time_zone_utc_offset=-5 -County "VA, Amelia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100070.epw site_zip_code=23002 site_time_zone_utc_offset=-5 -County "VA, Amherst County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100090.epw site_zip_code=24572 site_time_zone_utc_offset=-5 -County "VA, Appomattox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100110.epw site_zip_code=24522 site_time_zone_utc_offset=-5 -County "VA, Arlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100130.epw site_zip_code=22204 site_time_zone_utc_offset=-5 -County "VA, Augusta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100150.epw site_zip_code=24401 site_time_zone_utc_offset=-5 -County "VA, Bath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100170.epw site_zip_code=24460 site_time_zone_utc_offset=-5 -County "VA, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100190.epw site_zip_code=24551 site_time_zone_utc_offset=-5 -County "VA, Bland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100210.epw site_zip_code=24315 site_time_zone_utc_offset=-5 -County "VA, Botetourt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100230.epw site_zip_code=24175 site_time_zone_utc_offset=-5 -County "VA, Bristol city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105200.epw site_zip_code=24201 site_time_zone_utc_offset=-5 -County "VA, Brunswick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100250.epw site_zip_code=23868 site_time_zone_utc_offset=-5 -County "VA, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100270.epw site_zip_code=24614 site_time_zone_utc_offset=-5 -County "VA, Buckingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100290.epw site_zip_code=23936 site_time_zone_utc_offset=-5 -County "VA, Buena Vista city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105300.epw site_zip_code=24416 site_time_zone_utc_offset=-5 -County "VA, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100310.epw site_zip_code=24502 site_time_zone_utc_offset=-5 -County "VA, Caroline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100330.epw site_zip_code=22546 site_time_zone_utc_offset=-5 -County "VA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100350.epw site_zip_code=24343 site_time_zone_utc_offset=-5 -County "VA, Charles City County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100360.epw site_zip_code=23030 site_time_zone_utc_offset=-5 -County "VA, Charlotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100370.epw site_zip_code=23923 site_time_zone_utc_offset=-5 -County "VA, Charlottesville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105400.epw site_zip_code=22903 site_time_zone_utc_offset=-5 -County "VA, Chesapeake city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105500.epw site_zip_code=23320 site_time_zone_utc_offset=-5 -County "VA, Chesterfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100410.epw site_zip_code=23112 site_time_zone_utc_offset=-5 -County "VA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100430.epw site_zip_code=22611 site_time_zone_utc_offset=-5 -County "VA, Colonial Heights city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105700.epw site_zip_code=23834 site_time_zone_utc_offset=-5 -County "VA, Covington city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105800.epw site_zip_code=24426 site_time_zone_utc_offset=-5 -County "VA, Craig County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100450.epw site_zip_code=24127 site_time_zone_utc_offset=-5 -County "VA, Culpeper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100470.epw site_zip_code=22701 site_time_zone_utc_offset=-5 -County "VA, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100490.epw site_zip_code=23040 site_time_zone_utc_offset=-5 -County "VA, Danville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105900.epw site_zip_code=24541 site_time_zone_utc_offset=-5 -County "VA, Dickenson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100510.epw site_zip_code=24228 site_time_zone_utc_offset=-5 -County "VA, Dinwiddie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100530.epw site_zip_code=23803 site_time_zone_utc_offset=-5 -County "VA, Emporia city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105950.epw site_zip_code=23847 site_time_zone_utc_offset=-5 -County "VA, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100570.epw site_zip_code=22560 site_time_zone_utc_offset=-5 -County "VA, Fairfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100590.epw site_zip_code=20171 site_time_zone_utc_offset=-5 -County "VA, Fairfax city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106000.epw site_zip_code=22030 site_time_zone_utc_offset=-5 -County "VA, Falls Church city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106100.epw site_zip_code=22046 site_time_zone_utc_offset=-5 -County "VA, Fauquier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100610.epw site_zip_code=20187 site_time_zone_utc_offset=-5 -County "VA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100630.epw site_zip_code=24091 site_time_zone_utc_offset=-5 -County "VA, Fluvanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100650.epw site_zip_code=22963 site_time_zone_utc_offset=-5 -County "VA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100670.epw site_zip_code=24151 site_time_zone_utc_offset=-5 -County "VA, Franklin city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106200.epw site_zip_code=23851 site_time_zone_utc_offset=-5 -County "VA, Frederick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100690.epw site_zip_code=22602 site_time_zone_utc_offset=-5 -County "VA, Fredericksburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106300.epw site_zip_code=22401 site_time_zone_utc_offset=-5 -County "VA, Galax city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106400.epw site_zip_code=24333 site_time_zone_utc_offset=-5 -County "VA, Giles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100710.epw site_zip_code=24134 site_time_zone_utc_offset=-5 -County "VA, Gloucester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100730.epw site_zip_code=23061 site_time_zone_utc_offset=-5 -County "VA, Goochland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100750.epw site_zip_code=23103 site_time_zone_utc_offset=-5 -County "VA, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100770.epw site_zip_code=24333 site_time_zone_utc_offset=-5 -County "VA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100790.epw site_zip_code=22968 site_time_zone_utc_offset=-5 -County "VA, Greensville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100810.epw site_zip_code=23847 site_time_zone_utc_offset=-5 -County "VA, Halifax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100830.epw site_zip_code=24592 site_time_zone_utc_offset=-5 -County "VA, Hampton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106500.epw site_zip_code=23666 site_time_zone_utc_offset=-5 -County "VA, Hanover County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100850.epw site_zip_code=23111 site_time_zone_utc_offset=-5 -County "VA, Harrisonburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106600.epw site_zip_code=22801 site_time_zone_utc_offset=-5 -County "VA, Henrico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100870.epw site_zip_code=23228 site_time_zone_utc_offset=-5 -County "VA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100890.epw site_zip_code=24112 site_time_zone_utc_offset=-5 -County "VA, Highland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100910.epw site_zip_code=24465 site_time_zone_utc_offset=-5 -County "VA, Hopewell city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106700.epw site_zip_code=23860 site_time_zone_utc_offset=-5 -County "VA, Isle of Wight County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100930.epw site_zip_code=23430 site_time_zone_utc_offset=-5 -County "VA, James City County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100950.epw site_zip_code=23188 site_time_zone_utc_offset=-5 -County "VA, King George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100990.epw site_zip_code=22485 site_time_zone_utc_offset=-5 -County "VA, King William County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101010.epw site_zip_code=23009 site_time_zone_utc_offset=-5 -County "VA, King and Queen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100970.epw site_zip_code=23156 site_time_zone_utc_offset=-5 -County "VA, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101030.epw site_zip_code=22503 site_time_zone_utc_offset=-5 -County "VA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101050.epw site_zip_code=24263 site_time_zone_utc_offset=-5 -County "VA, Lexington city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106780.epw site_zip_code=24450 site_time_zone_utc_offset=-5 -County "VA, Loudoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101070.epw site_zip_code=20189 site_time_zone_utc_offset=-5 -County "VA, Louisa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101090.epw site_zip_code=23093 site_time_zone_utc_offset=-5 -County "VA, Lunenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101110.epw site_zip_code=23974 site_time_zone_utc_offset=-5 -County "VA, Lynchburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106800.epw site_zip_code=24502 site_time_zone_utc_offset=-5 -County "VA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101130.epw site_zip_code=22727 site_time_zone_utc_offset=-5 -County "VA, Manassas Park city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106850.epw site_zip_code=20111 site_time_zone_utc_offset=-5 -County "VA, Manassas city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106830.epw site_zip_code=20110 site_time_zone_utc_offset=-5 -County "VA, Martinsville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106900.epw site_zip_code=24112 site_time_zone_utc_offset=-5 -County "VA, Mathews County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101150.epw site_zip_code=23109 site_time_zone_utc_offset=-5 -County "VA, Mecklenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101170.epw site_zip_code=23970 site_time_zone_utc_offset=-5 -County "VA, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101190.epw site_zip_code=23043 site_time_zone_utc_offset=-5 -County "VA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101210.epw site_zip_code=24060 site_time_zone_utc_offset=-5 -County "VA, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101250.epw site_zip_code=22967 site_time_zone_utc_offset=-5 -County "VA, New Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101270.epw site_zip_code=23141 site_time_zone_utc_offset=-5 -County "VA, Newport News city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107000.epw site_zip_code=23608 site_time_zone_utc_offset=-5 -County "VA, Norfolk city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107100.epw site_zip_code=23503 site_time_zone_utc_offset=-5 -County "VA, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101310.epw site_zip_code=23310 site_time_zone_utc_offset=-5 -County "VA, Northumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101330.epw site_zip_code=22473 site_time_zone_utc_offset=-5 -County "VA, Norton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107200.epw site_zip_code=24273 site_time_zone_utc_offset=-5 -County "VA, Nottoway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101350.epw site_zip_code=23824 site_time_zone_utc_offset=-5 -County "VA, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101370.epw site_zip_code=22508 site_time_zone_utc_offset=-5 -County "VA, Page County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101390.epw site_zip_code=22835 site_time_zone_utc_offset=-5 -County "VA, Patrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101410.epw site_zip_code=24171 site_time_zone_utc_offset=-5 -County "VA, Petersburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107300.epw site_zip_code=23803 site_time_zone_utc_offset=-5 -County "VA, Pittsylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101430.epw site_zip_code=24540 site_time_zone_utc_offset=-5 -County "VA, Poquoson city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107350.epw site_zip_code=23662 site_time_zone_utc_offset=-5 -County "VA, Portsmouth city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107400.epw site_zip_code=23703 site_time_zone_utc_offset=-5 -County "VA, Powhatan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101450.epw site_zip_code=23139 site_time_zone_utc_offset=-5 -County "VA, Prince Edward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101470.epw site_zip_code=23901 site_time_zone_utc_offset=-5 -County "VA, Prince George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101490.epw site_zip_code=23875 site_time_zone_utc_offset=-5 -County "VA, Prince William County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101530.epw site_zip_code=22191 site_time_zone_utc_offset=-5 -County "VA, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101550.epw site_zip_code=24301 site_time_zone_utc_offset=-5 -County "VA, Radford city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107500.epw site_zip_code=24141 site_time_zone_utc_offset=-5 -County "VA, Rappahannock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101570.epw site_zip_code=20106 site_time_zone_utc_offset=-5 -County "VA, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101590.epw site_zip_code=22572 site_time_zone_utc_offset=-5 -County "VA, Richmond city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107600.epw site_zip_code=23220 site_time_zone_utc_offset=-5 -County "VA, Roanoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101610.epw site_zip_code=24018 site_time_zone_utc_offset=-5 -County "VA, Roanoke city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107700.epw site_zip_code=24017 site_time_zone_utc_offset=-5 -County "VA, Rockbridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101630.epw site_zip_code=24450 site_time_zone_utc_offset=-5 -County "VA, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101650.epw site_zip_code=22801 site_time_zone_utc_offset=-5 -County "VA, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101670.epw site_zip_code=24266 site_time_zone_utc_offset=-5 -County "VA, Salem city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107750.epw site_zip_code=24153 site_time_zone_utc_offset=-5 -County "VA, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101690.epw site_zip_code=24251 site_time_zone_utc_offset=-5 -County "VA, Shenandoah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101710.epw site_zip_code=22657 site_time_zone_utc_offset=-5 -County "VA, Smyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101730.epw site_zip_code=24354 site_time_zone_utc_offset=-5 -County "VA, Southampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101750.epw site_zip_code=23851 site_time_zone_utc_offset=-5 -County "VA, Spotsylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101770.epw site_zip_code=22407 site_time_zone_utc_offset=-5 -County "VA, Stafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101790.epw site_zip_code=22554 site_time_zone_utc_offset=-5 -County "VA, Staunton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107900.epw site_zip_code=24401 site_time_zone_utc_offset=-5 -County "VA, Suffolk city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108000.epw site_zip_code=23434 site_time_zone_utc_offset=-5 -County "VA, Surry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101810.epw site_zip_code=23883 site_time_zone_utc_offset=-5 -County "VA, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101830.epw site_zip_code=23890 site_time_zone_utc_offset=-5 -County "VA, Tazewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101850.epw site_zip_code=24605 site_time_zone_utc_offset=-5 -County "VA, Virginia Beach city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108100.epw site_zip_code=23462 site_time_zone_utc_offset=-5 -County "VA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101870.epw site_zip_code=22630 site_time_zone_utc_offset=-5 -County "VA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101910.epw site_zip_code=24210 site_time_zone_utc_offset=-5 -County "VA, Waynesboro city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108200.epw site_zip_code=22980 site_time_zone_utc_offset=-5 -County "VA, Westmoreland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101930.epw site_zip_code=22443 site_time_zone_utc_offset=-5 -County "VA, Williamsburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108300.epw site_zip_code=23185 site_time_zone_utc_offset=-5 -County "VA, Winchester city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108400.epw site_zip_code=22601 site_time_zone_utc_offset=-5 -County "VA, Wise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101950.epw site_zip_code=24219 site_time_zone_utc_offset=-5 -County "VA, Wythe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101970.epw site_zip_code=24382 site_time_zone_utc_offset=-5 -County "VA, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101990.epw site_zip_code=23692 site_time_zone_utc_offset=-5 -County "VT, Addison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000010.epw site_zip_code=05753 site_time_zone_utc_offset=-5 -County "VT, Bennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000030.epw site_zip_code=05201 site_time_zone_utc_offset=-5 -County "VT, Caledonia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000050.epw site_zip_code=05819 site_time_zone_utc_offset=-5 -County "VT, Chittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000070.epw site_zip_code=05401 site_time_zone_utc_offset=-5 -County "VT, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000090.epw site_zip_code=05906 site_time_zone_utc_offset=-5 -County "VT, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000110.epw site_zip_code=05478 site_time_zone_utc_offset=-5 -County "VT, Grand Isle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000130.epw site_zip_code=05440 site_time_zone_utc_offset=-5 -County "VT, Lamoille County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000150.epw site_zip_code=05672 site_time_zone_utc_offset=-5 -County "VT, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000170.epw site_zip_code=05060 site_time_zone_utc_offset=-5 -County "VT, Orleans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000190.epw site_zip_code=05855 site_time_zone_utc_offset=-5 -County "VT, Rutland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000210.epw site_zip_code=05701 site_time_zone_utc_offset=-5 -County "VT, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000230.epw site_zip_code=05641 site_time_zone_utc_offset=-5 -County "VT, Windham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000250.epw site_zip_code=05301 site_time_zone_utc_offset=-5 -County "VT, Windsor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000270.epw site_zip_code=05156 site_time_zone_utc_offset=-5 -County "WA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300010.epw site_zip_code=99344 site_time_zone_utc_offset=-8 -County "WA, Asotin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300030.epw site_zip_code=99403 site_time_zone_utc_offset=-8 -County "WA, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300050.epw site_zip_code=99336 site_time_zone_utc_offset=-8 -County "WA, Chelan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300070.epw site_zip_code=98801 site_time_zone_utc_offset=-8 -County "WA, Clallam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300090.epw site_zip_code=98382 site_time_zone_utc_offset=-8 -County "WA, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300110.epw site_zip_code=98682 site_time_zone_utc_offset=-8 -County "WA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300130.epw site_zip_code=99328 site_time_zone_utc_offset=-8 -County "WA, Cowlitz County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300150.epw site_zip_code=98632 site_time_zone_utc_offset=-8 -County "WA, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300170.epw site_zip_code=98802 site_time_zone_utc_offset=-8 -County "WA, Ferry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300190.epw site_zip_code=99166 site_time_zone_utc_offset=-8 -County "WA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300210.epw site_zip_code=99301 site_time_zone_utc_offset=-8 -County "WA, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300230.epw site_zip_code=99347 site_time_zone_utc_offset=-8 -County "WA, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300250.epw site_zip_code=98837 site_time_zone_utc_offset=-8 -County "WA, Grays Harbor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300270.epw site_zip_code=98520 site_time_zone_utc_offset=-8 -County "WA, Island County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300290.epw site_zip_code=98277 site_time_zone_utc_offset=-8 -County "WA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300310.epw site_zip_code=98368 site_time_zone_utc_offset=-8 -County "WA, King County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300330.epw site_zip_code=98052 site_time_zone_utc_offset=-8 -County "WA, Kitsap County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300350.epw site_zip_code=98312 site_time_zone_utc_offset=-8 -County "WA, Kittitas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300370.epw site_zip_code=98926 site_time_zone_utc_offset=-8 -County "WA, Klickitat County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300390.epw site_zip_code=98672 site_time_zone_utc_offset=-8 -County "WA, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300410.epw site_zip_code=98531 site_time_zone_utc_offset=-8 -County "WA, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300430.epw site_zip_code=99122 site_time_zone_utc_offset=-8 -County "WA, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300450.epw site_zip_code=98584 site_time_zone_utc_offset=-8 -County "WA, Okanogan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300470.epw site_zip_code=98841 site_time_zone_utc_offset=-8 -County "WA, Pacific County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300490.epw site_zip_code=98640 site_time_zone_utc_offset=-8 -County "WA, Pend Oreille County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300510.epw site_zip_code=99156 site_time_zone_utc_offset=-8 -County "WA, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300530.epw site_zip_code=98391 site_time_zone_utc_offset=-8 -County "WA, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300550.epw site_zip_code=98250 site_time_zone_utc_offset=-8 -County "WA, Skagit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300570.epw site_zip_code=98273 site_time_zone_utc_offset=-8 -County "WA, Skamania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300590.epw site_zip_code=98648 site_time_zone_utc_offset=-8 -County "WA, Snohomish County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300610.epw site_zip_code=98012 site_time_zone_utc_offset=-8 -County "WA, Spokane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300630.epw site_zip_code=99208 site_time_zone_utc_offset=-8 -County "WA, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300650.epw site_zip_code=99114 site_time_zone_utc_offset=-8 -County "WA, Thurston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300670.epw site_zip_code=98501 site_time_zone_utc_offset=-8 -County "WA, Wahkiakum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300690.epw site_zip_code=98612 site_time_zone_utc_offset=-8 -County "WA, Walla Walla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300710.epw site_zip_code=99362 site_time_zone_utc_offset=-8 -County "WA, Whatcom County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300730.epw site_zip_code=98225 site_time_zone_utc_offset=-8 -County "WA, Whitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300750.epw site_zip_code=99163 site_time_zone_utc_offset=-8 -County "WA, Yakima County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300770.epw site_zip_code=98902 site_time_zone_utc_offset=-8 -County "WI, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500010.epw site_zip_code=53934 site_time_zone_utc_offset=-6 -County "WI, Ashland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500030.epw site_zip_code=54806 site_time_zone_utc_offset=-6 -County "WI, Barron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500050.epw site_zip_code=54868 site_time_zone_utc_offset=-6 -County "WI, Bayfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500070.epw site_zip_code=54891 site_time_zone_utc_offset=-6 -County "WI, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500090.epw site_zip_code=54115 site_time_zone_utc_offset=-6 -County "WI, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500110.epw site_zip_code=54755 site_time_zone_utc_offset=-6 -County "WI, Burnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500130.epw site_zip_code=54830 site_time_zone_utc_offset=-6 -County "WI, Calumet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500150.epw site_zip_code=54915 site_time_zone_utc_offset=-6 -County "WI, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500170.epw site_zip_code=54729 site_time_zone_utc_offset=-6 -County "WI, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500190.epw site_zip_code=54456 site_time_zone_utc_offset=-6 -County "WI, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500210.epw site_zip_code=53901 site_time_zone_utc_offset=-6 -County "WI, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500230.epw site_zip_code=53821 site_time_zone_utc_offset=-6 -County "WI, Dane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500250.epw site_zip_code=53711 site_time_zone_utc_offset=-6 -County "WI, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500270.epw site_zip_code=53916 site_time_zone_utc_offset=-6 -County "WI, Door County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500290.epw site_zip_code=54235 site_time_zone_utc_offset=-6 -County "WI, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500310.epw site_zip_code=54880 site_time_zone_utc_offset=-6 -County "WI, Dunn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500330.epw site_zip_code=54751 site_time_zone_utc_offset=-6 -County "WI, Eau Claire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500350.epw site_zip_code=54703 site_time_zone_utc_offset=-6 -County "WI, Florence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500370.epw site_zip_code=54121 site_time_zone_utc_offset=-6 -County "WI, Fond du Lac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500390.epw site_zip_code=54935 site_time_zone_utc_offset=-6 -County "WI, Forest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500410.epw site_zip_code=54520 site_time_zone_utc_offset=-6 -County "WI, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500430.epw site_zip_code=53818 site_time_zone_utc_offset=-6 -County "WI, Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500450.epw site_zip_code=53566 site_time_zone_utc_offset=-6 -County "WI, Green Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500470.epw site_zip_code=54923 site_time_zone_utc_offset=-6 -County "WI, Iowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500490.epw site_zip_code=53533 site_time_zone_utc_offset=-6 -County "WI, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500510.epw site_zip_code=54547 site_time_zone_utc_offset=-6 -County "WI, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500530.epw site_zip_code=54615 site_time_zone_utc_offset=-6 -County "WI, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500550.epw site_zip_code=53538 site_time_zone_utc_offset=-6 -County "WI, Juneau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500570.epw site_zip_code=53948 site_time_zone_utc_offset=-6 -County "WI, Kenosha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500590.epw site_zip_code=53142 site_time_zone_utc_offset=-6 -County "WI, Kewaunee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500610.epw site_zip_code=54216 site_time_zone_utc_offset=-6 -County "WI, La Crosse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500630.epw site_zip_code=54601 site_time_zone_utc_offset=-6 -County "WI, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500650.epw site_zip_code=53530 site_time_zone_utc_offset=-6 -County "WI, Langlade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500670.epw site_zip_code=54409 site_time_zone_utc_offset=-6 -County "WI, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500690.epw site_zip_code=54452 site_time_zone_utc_offset=-6 -County "WI, Manitowoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500710.epw site_zip_code=54220 site_time_zone_utc_offset=-6 -County "WI, Marathon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500730.epw site_zip_code=54401 site_time_zone_utc_offset=-6 -County "WI, Marinette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500750.epw site_zip_code=54143 site_time_zone_utc_offset=-6 -County "WI, Marquette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500770.epw site_zip_code=53949 site_time_zone_utc_offset=-6 -County "WI, Menominee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500780.epw site_zip_code=54135 site_time_zone_utc_offset=-6 -County "WI, Milwaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500790.epw site_zip_code=53209 site_time_zone_utc_offset=-6 -County "WI, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500810.epw site_zip_code=54656 site_time_zone_utc_offset=-6 -County "WI, Oconto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500830.epw site_zip_code=54153 site_time_zone_utc_offset=-6 -County "WI, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500850.epw site_zip_code=54501 site_time_zone_utc_offset=-6 -County "WI, Outagamie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500870.epw site_zip_code=54911 site_time_zone_utc_offset=-6 -County "WI, Ozaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500890.epw site_zip_code=53092 site_time_zone_utc_offset=-6 -County "WI, Pepin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500910.epw site_zip_code=54736 site_time_zone_utc_offset=-6 -County "WI, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500930.epw site_zip_code=54022 site_time_zone_utc_offset=-6 -County "WI, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500950.epw site_zip_code=54001 site_time_zone_utc_offset=-6 -County "WI, Portage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500970.epw site_zip_code=54481 site_time_zone_utc_offset=-6 -County "WI, Price County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500990.epw site_zip_code=54555 site_time_zone_utc_offset=-6 -County "WI, Racine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501010.epw site_zip_code=53402 site_time_zone_utc_offset=-6 -County "WI, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501030.epw site_zip_code=53581 site_time_zone_utc_offset=-6 -County "WI, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501050.epw site_zip_code=53511 site_time_zone_utc_offset=-6 -County "WI, Rusk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501070.epw site_zip_code=54848 site_time_zone_utc_offset=-6 -County "WI, Sauk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501110.epw site_zip_code=53913 site_time_zone_utc_offset=-6 -County "WI, Sawyer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501130.epw site_zip_code=54843 site_time_zone_utc_offset=-6 -County "WI, Shawano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501150.epw site_zip_code=54166 site_time_zone_utc_offset=-6 -County "WI, Sheboygan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501170.epw site_zip_code=53081 site_time_zone_utc_offset=-6 -County "WI, St. Croix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501090.epw site_zip_code=54016 site_time_zone_utc_offset=-6 -County "WI, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501190.epw site_zip_code=54451 site_time_zone_utc_offset=-6 -County "WI, Trempealeau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501210.epw site_zip_code=54612 site_time_zone_utc_offset=-6 -County "WI, Vernon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501230.epw site_zip_code=54665 site_time_zone_utc_offset=-6 -County "WI, Vilas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501250.epw site_zip_code=54521 site_time_zone_utc_offset=-6 -County "WI, Walworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501270.epw site_zip_code=53147 site_time_zone_utc_offset=-6 -County "WI, Washburn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501290.epw site_zip_code=54801 site_time_zone_utc_offset=-6 -County "WI, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501310.epw site_zip_code=53022 site_time_zone_utc_offset=-6 -County "WI, Waukesha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501330.epw site_zip_code=53051 site_time_zone_utc_offset=-6 -County "WI, Waupaca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501350.epw site_zip_code=54981 site_time_zone_utc_offset=-6 -County "WI, Waushara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501370.epw site_zip_code=54982 site_time_zone_utc_offset=-6 -County "WI, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501390.epw site_zip_code=54956 site_time_zone_utc_offset=-6 -County "WI, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501410.epw site_zip_code=54449 site_time_zone_utc_offset=-6 -County "WV, Barbour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400010.epw site_zip_code=26416 site_time_zone_utc_offset=-5 -County "WV, Berkeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400030.epw site_zip_code=25404 site_time_zone_utc_offset=-5 -County "WV, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400050.epw site_zip_code=25130 site_time_zone_utc_offset=-5 -County "WV, Braxton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400070.epw site_zip_code=26601 site_time_zone_utc_offset=-5 -County "WV, Brooke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400090.epw site_zip_code=26070 site_time_zone_utc_offset=-5 -County "WV, Cabell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400110.epw site_zip_code=25701 site_time_zone_utc_offset=-5 -County "WV, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400130.epw site_zip_code=26147 site_time_zone_utc_offset=-5 -County "WV, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400150.epw site_zip_code=25043 site_time_zone_utc_offset=-5 -County "WV, Doddridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400170.epw site_zip_code=26456 site_time_zone_utc_offset=-5 -County "WV, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400190.epw site_zip_code=25901 site_time_zone_utc_offset=-5 -County "WV, Gilmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400210.epw site_zip_code=26351 site_time_zone_utc_offset=-5 -County "WV, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400230.epw site_zip_code=26847 site_time_zone_utc_offset=-5 -County "WV, Greenbrier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400250.epw site_zip_code=24901 site_time_zone_utc_offset=-5 -County "WV, Hampshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400270.epw site_zip_code=26757 site_time_zone_utc_offset=-5 -County "WV, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400290.epw site_zip_code=26062 site_time_zone_utc_offset=-5 -County "WV, Hardy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400310.epw site_zip_code=26836 site_time_zone_utc_offset=-5 -County "WV, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400330.epw site_zip_code=26301 site_time_zone_utc_offset=-5 -County "WV, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400350.epw site_zip_code=25271 site_time_zone_utc_offset=-5 -County "WV, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400370.epw site_zip_code=25414 site_time_zone_utc_offset=-5 -County "WV, Kanawha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400390.epw site_zip_code=25177 site_time_zone_utc_offset=-5 -County "WV, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400410.epw site_zip_code=26452 site_time_zone_utc_offset=-5 -County "WV, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400430.epw site_zip_code=25506 site_time_zone_utc_offset=-5 -County "WV, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400450.epw site_zip_code=25601 site_time_zone_utc_offset=-5 -County "WV, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400490.epw site_zip_code=26554 site_time_zone_utc_offset=-5 -County "WV, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400510.epw site_zip_code=26041 site_time_zone_utc_offset=-5 -County "WV, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400530.epw site_zip_code=25550 site_time_zone_utc_offset=-5 -County "WV, McDowell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400470.epw site_zip_code=24801 site_time_zone_utc_offset=-5 -County "WV, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400550.epw site_zip_code=24701 site_time_zone_utc_offset=-5 -County "WV, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400570.epw site_zip_code=26726 site_time_zone_utc_offset=-5 -County "WV, Mingo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400590.epw site_zip_code=25661 site_time_zone_utc_offset=-5 -County "WV, Monongalia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400610.epw site_zip_code=26505 site_time_zone_utc_offset=-5 -County "WV, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400630.epw site_zip_code=24963 site_time_zone_utc_offset=-5 -County "WV, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400650.epw site_zip_code=25411 site_time_zone_utc_offset=-5 -County "WV, Nicholas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400670.epw site_zip_code=26651 site_time_zone_utc_offset=-5 -County "WV, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400690.epw site_zip_code=26003 site_time_zone_utc_offset=-5 -County "WV, Pendleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400710.epw site_zip_code=26807 site_time_zone_utc_offset=-5 -County "WV, Pleasants County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400730.epw site_zip_code=26170 site_time_zone_utc_offset=-5 -County "WV, Pocahontas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400750.epw site_zip_code=24954 site_time_zone_utc_offset=-5 -County "WV, Preston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400770.epw site_zip_code=26537 site_time_zone_utc_offset=-5 -County "WV, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400790.epw site_zip_code=25526 site_time_zone_utc_offset=-5 -County "WV, Raleigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400810.epw site_zip_code=25801 site_time_zone_utc_offset=-5 -County "WV, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400830.epw site_zip_code=26241 site_time_zone_utc_offset=-5 -County "WV, Ritchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400850.epw site_zip_code=26362 site_time_zone_utc_offset=-5 -County "WV, Roane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400870.epw site_zip_code=25276 site_time_zone_utc_offset=-5 -County "WV, Summers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400890.epw site_zip_code=25951 site_time_zone_utc_offset=-5 -County "WV, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400910.epw site_zip_code=26354 site_time_zone_utc_offset=-5 -County "WV, Tucker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400930.epw site_zip_code=26287 site_time_zone_utc_offset=-5 -County "WV, Tyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400950.epw site_zip_code=26175 site_time_zone_utc_offset=-5 -County "WV, Upshur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400970.epw site_zip_code=26201 site_time_zone_utc_offset=-5 -County "WV, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400990.epw site_zip_code=25704 site_time_zone_utc_offset=-5 -County "WV, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401010.epw site_zip_code=26288 site_time_zone_utc_offset=-5 -County "WV, Wetzel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401030.epw site_zip_code=26155 site_time_zone_utc_offset=-5 -County "WV, Wirt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401050.epw site_zip_code=26143 site_time_zone_utc_offset=-5 -County "WV, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401070.epw site_zip_code=26101 site_time_zone_utc_offset=-5 -County "WV, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401090.epw site_zip_code=25882 site_time_zone_utc_offset=-5 -County "WY, Albany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600010.epw site_zip_code=82070 site_time_zone_utc_offset=-7 -County "WY, Big Horn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600030.epw site_zip_code=82431 site_time_zone_utc_offset=-7 -County "WY, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600050.epw site_zip_code=82718 site_time_zone_utc_offset=-7 -County "WY, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600070.epw site_zip_code=82301 site_time_zone_utc_offset=-7 -County "WY, Converse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600090.epw site_zip_code=82633 site_time_zone_utc_offset=-7 -County "WY, Crook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600110.epw site_zip_code=82729 site_time_zone_utc_offset=-7 -County "WY, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600130.epw site_zip_code=82501 site_time_zone_utc_offset=-7 -County "WY, Goshen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600150.epw site_zip_code=82240 site_time_zone_utc_offset=-7 -County "WY, Hot Springs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600170.epw site_zip_code=82443 site_time_zone_utc_offset=-7 -County "WY, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600190.epw site_zip_code=82834 site_time_zone_utc_offset=-7 -County "WY, Laramie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600210.epw site_zip_code=82001 site_time_zone_utc_offset=-7 -County "WY, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600230.epw site_zip_code=83127 site_time_zone_utc_offset=-7 -County "WY, Natrona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600250.epw site_zip_code=82601 site_time_zone_utc_offset=-7 -County "WY, Niobrara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600270.epw site_zip_code=82225 site_time_zone_utc_offset=-7 -County "WY, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600290.epw site_zip_code=82414 site_time_zone_utc_offset=-7 -County "WY, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600310.epw site_zip_code=82201 site_time_zone_utc_offset=-7 -County "WY, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600330.epw site_zip_code=82801 site_time_zone_utc_offset=-7 -County "WY, Sublette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600350.epw site_zip_code=82941 site_time_zone_utc_offset=-7 -County "WY, Sweetwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600370.epw site_zip_code=82901 site_time_zone_utc_offset=-7 -County "WY, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600390.epw site_zip_code=83001 site_time_zone_utc_offset=-7 -County "WY, Uinta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600410.epw site_zip_code=82930 site_time_zone_utc_offset=-7 -County "WY, Washakie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600430.epw site_zip_code=82401 site_time_zone_utc_offset=-7 -County "WY, Weston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600450.epw site_zip_code=82701 site_time_zone_utc_offset=-7 -County Metro Status Metropolitan -County Metro Status Non-Metropolitan -County and PUMA "G0100010, G01002100" -County and PUMA "G0100030, G01002600" -County and PUMA "G0100050, G01002400" -County and PUMA "G0100070, G01001700" -County and PUMA "G0100090, G01000800" -County and PUMA "G0100110, G01002400" -County and PUMA "G0100130, G01002300" -County and PUMA "G0100150, G01001100" -County and PUMA "G0100170, G01001800" -County and PUMA "G0100190, G01001000" -County and PUMA "G0100210, G01001800" -County and PUMA "G0100230, G01002200" -County and PUMA "G0100250, G01002200" -County and PUMA "G0100270, G01001000" -County and PUMA "G0100290, G01001000" -County and PUMA "G0100310, G01002300" -County and PUMA "G0100330, G01000100" -County and PUMA "G0100350, G01002200" -County and PUMA "G0100370, G01001800" -County and PUMA "G0100390, G01002300" -County and PUMA "G0100410, G01002300" -County and PUMA "G0100430, G01000700" -County and PUMA "G0100450, G01002500" -County and PUMA "G0100470, G01001700" -County and PUMA "G0100490, G01000400" -County and PUMA "G0100510, G01002100" -County and PUMA "G0100530, G01002200" -County and PUMA "G0100550, G01000900" -County and PUMA "G0100570, G01001400" -County and PUMA "G0100590, G01000100" -County and PUMA "G0100610, G01002500" -County and PUMA "G0100630, G01001700" -County and PUMA "G0100650, G01001700" -County and PUMA "G0100670, G01002500" -County and PUMA "G0100690, G01002500" -County and PUMA "G0100710, G01000400" -County and PUMA "G0100730, G01001301" -County and PUMA "G0100730, G01001302" -County and PUMA "G0100730, G01001303" -County and PUMA "G0100730, G01001304" -County and PUMA "G0100730, G01001305" -County and PUMA "G0100750, G01001400" -County and PUMA "G0100770, G01000100" -County and PUMA "G0100790, G01000600" -County and PUMA "G0100810, G01001900" -County and PUMA "G0100830, G01000200" -County and PUMA "G0100850, G01002100" -County and PUMA "G0100870, G01002400" -County and PUMA "G0100890, G01000200" -County and PUMA "G0100890, G01000301" -County and PUMA "G0100890, G01000302" -County and PUMA "G0100890, G01000500" -County and PUMA "G0100910, G01001700" -County and PUMA "G0100930, G01000100" -County and PUMA "G0100930, G01001400" -County and PUMA "G0100950, G01000500" -County and PUMA "G0100970, G01002701" -County and PUMA "G0100970, G01002702" -County and PUMA "G0100970, G01002703" -County and PUMA "G0100990, G01002200" -County and PUMA "G0101010, G01002000" -County and PUMA "G0101010, G01002100" -County and PUMA "G0101030, G01000600" -County and PUMA "G0101050, G01001700" -County and PUMA "G0101070, G01001500" -County and PUMA "G0101090, G01002400" -County and PUMA "G0101110, G01001000" -County and PUMA "G0101130, G01002400" -County and PUMA "G0101150, G01000800" -County and PUMA "G0101170, G01001200" -County and PUMA "G0101190, G01001700" -County and PUMA "G0101210, G01001000" -County and PUMA "G0101230, G01001800" -County and PUMA "G0101250, G01001500" -County and PUMA "G0101250, G01001600" -County and PUMA "G0101270, G01001400" -County and PUMA "G0101290, G01002200" -County and PUMA "G0101310, G01002200" -County and PUMA "G0101330, G01000700" -County and PUMA "G0200130, G02000400" -County and PUMA "G0200160, G02000400" -County and PUMA "G0200200, G02000101" -County and PUMA "G0200200, G02000102" -County and PUMA "G0200500, G02000400" -County and PUMA "G0200600, G02000400" -County and PUMA "G0200680, G02000300" -County and PUMA "G0200700, G02000400" -County and PUMA "G0200900, G02000300" -County and PUMA "G0201000, G02000300" -County and PUMA "G0201050, G02000400" -County and PUMA "G0201100, G02000300" -County and PUMA "G0201220, G02000200" -County and PUMA "G0201300, G02000300" -County and PUMA "G0201500, G02000400" -County and PUMA "G0201580, G02000400" -County and PUMA "G0201640, G02000400" -County and PUMA "G0201700, G02000200" -County and PUMA "G0201800, G02000400" -County and PUMA "G0201850, G02000400" -County and PUMA "G0201880, G02000400" -County and PUMA "G0201950, G02000400" -County and PUMA "G0201980, G02000400" -County and PUMA "G0202200, G02000400" -County and PUMA "G0202300, G02000300" -County and PUMA "G0202400, G02000300" -County and PUMA "G0202610, G02000300" -County and PUMA "G0202750, G02000400" -County and PUMA "G0202820, G02000400" -County and PUMA "G0202900, G02000400" -County and PUMA "G0400010, G04000300" -County and PUMA "G0400030, G04000900" -County and PUMA "G0400050, G04000400" -County and PUMA "G0400070, G04000800" -County and PUMA "G0400090, G04000800" -County and PUMA "G0400110, G04000800" -County and PUMA "G0400120, G04000600" -County and PUMA "G0400130, G04000100" -County and PUMA "G0400130, G04000101" -County and PUMA "G0400130, G04000102" -County and PUMA "G0400130, G04000103" -County and PUMA "G0400130, G04000104" -County and PUMA "G0400130, G04000105" -County and PUMA "G0400130, G04000106" -County and PUMA "G0400130, G04000107" -County and PUMA "G0400130, G04000108" -County and PUMA "G0400130, G04000109" -County and PUMA "G0400130, G04000110" -County and PUMA "G0400130, G04000111" -County and PUMA "G0400130, G04000112" -County and PUMA "G0400130, G04000113" -County and PUMA "G0400130, G04000114" -County and PUMA "G0400130, G04000115" -County and PUMA "G0400130, G04000116" -County and PUMA "G0400130, G04000117" -County and PUMA "G0400130, G04000118" -County and PUMA "G0400130, G04000119" -County and PUMA "G0400130, G04000120" -County and PUMA "G0400130, G04000121" -County and PUMA "G0400130, G04000122" -County and PUMA "G0400130, G04000123" -County and PUMA "G0400130, G04000124" -County and PUMA "G0400130, G04000125" -County and PUMA "G0400130, G04000126" -County and PUMA "G0400130, G04000127" -County and PUMA "G0400130, G04000128" -County and PUMA "G0400130, G04000129" -County and PUMA "G0400130, G04000130" -County and PUMA "G0400130, G04000131" -County and PUMA "G0400130, G04000132" -County and PUMA "G0400130, G04000133" -County and PUMA "G0400130, G04000134" -County and PUMA "G0400150, G04000600" -County and PUMA "G0400170, G04000300" -County and PUMA "G0400190, G04000201" -County and PUMA "G0400190, G04000202" -County and PUMA "G0400190, G04000203" -County and PUMA "G0400190, G04000204" -County and PUMA "G0400190, G04000205" -County and PUMA "G0400190, G04000206" -County and PUMA "G0400190, G04000207" -County and PUMA "G0400190, G04000208" -County and PUMA "G0400190, G04000209" -County and PUMA "G0400210, G04000800" -County and PUMA "G0400210, G04000803" -County and PUMA "G0400210, G04000805" -County and PUMA "G0400210, G04000807" -County and PUMA "G0400230, G04000900" -County and PUMA "G0400250, G04000500" -County and PUMA "G0400270, G04000700" -County and PUMA "G0500010, G05001700" -County and PUMA "G0500010, G05001800" -County and PUMA "G0500030, G05001800" -County and PUMA "G0500050, G05000300" -County and PUMA "G0500070, G05000100" -County and PUMA "G0500090, G05000300" -County and PUMA "G0500110, G05001800" -County and PUMA "G0500130, G05001900" -County and PUMA "G0500150, G05000300" -County and PUMA "G0500170, G05001800" -County and PUMA "G0500190, G05001600" -County and PUMA "G0500210, G05000500" -County and PUMA "G0500230, G05000400" -County and PUMA "G0500250, G05001800" -County and PUMA "G0500270, G05001900" -County and PUMA "G0500290, G05001300" -County and PUMA "G0500310, G05000500" -County and PUMA "G0500310, G05000600" -County and PUMA "G0500330, G05001400" -County and PUMA "G0500350, G05000600" -County and PUMA "G0500370, G05000700" -County and PUMA "G0500390, G05001900" -County and PUMA "G0500410, G05001800" -County and PUMA "G0500430, G05001800" -County and PUMA "G0500450, G05001100" -County and PUMA "G0500470, G05001500" -County and PUMA "G0500490, G05000400" -County and PUMA "G0500510, G05001600" -County and PUMA "G0500530, G05001700" -County and PUMA "G0500550, G05000500" -County and PUMA "G0500570, G05002000" -County and PUMA "G0500590, G05001600" -County and PUMA "G0500610, G05001500" -County and PUMA "G0500630, G05000400" -County and PUMA "G0500650, G05000400" -County and PUMA "G0500670, G05000800" -County and PUMA "G0500690, G05001700" -County and PUMA "G0500710, G05001300" -County and PUMA "G0500730, G05002000" -County and PUMA "G0500750, G05000500" -County and PUMA "G0500770, G05000700" -County and PUMA "G0500790, G05001800" -County and PUMA "G0500810, G05002000" -County and PUMA "G0500830, G05001500" -County and PUMA "G0500850, G05001100" -County and PUMA "G0500870, G05000300" -County and PUMA "G0500890, G05000300" -County and PUMA "G0500910, G05002000" -County and PUMA "G0500930, G05000600" -County and PUMA "G0500950, G05000700" -County and PUMA "G0500970, G05001600" -County and PUMA "G0500990, G05002000" -County and PUMA "G0501010, G05000300" -County and PUMA "G0501030, G05001900" -County and PUMA "G0501050, G05001300" -County and PUMA "G0501070, G05000700" -County and PUMA "G0501090, G05002000" -County and PUMA "G0501110, G05000700" -County and PUMA "G0501130, G05001500" -County and PUMA "G0501150, G05001300" -County and PUMA "G0501170, G05000800" -County and PUMA "G0501190, G05000900" -County and PUMA "G0501190, G05001000" -County and PUMA "G0501210, G05000500" -County and PUMA "G0501230, G05000700" -County and PUMA "G0501250, G05001200" -County and PUMA "G0501270, G05001500" -County and PUMA "G0501290, G05000300" -County and PUMA "G0501310, G05001400" -County and PUMA "G0501330, G05001500" -County and PUMA "G0501350, G05000400" -County and PUMA "G0501370, G05000400" -County and PUMA "G0501390, G05001900" -County and PUMA "G0501410, G05000400" -County and PUMA "G0501430, G05000200" -County and PUMA "G0501450, G05000800" -County and PUMA "G0501470, G05000800" -County and PUMA "G0501490, G05001300" -County and PUMA "G0600010, G06000101" -County and PUMA "G0600010, G06000102" -County and PUMA "G0600010, G06000103" -County and PUMA "G0600010, G06000104" -County and PUMA "G0600010, G06000105" -County and PUMA "G0600010, G06000106" -County and PUMA "G0600010, G06000107" -County and PUMA "G0600010, G06000108" -County and PUMA "G0600010, G06000109" -County and PUMA "G0600010, G06000110" -County and PUMA "G0600030, G06000300" -County and PUMA "G0600050, G06000300" -County and PUMA "G0600070, G06000701" -County and PUMA "G0600070, G06000702" -County and PUMA "G0600090, G06000300" -County and PUMA "G0600110, G06001100" -County and PUMA "G0600130, G06001301" -County and PUMA "G0600130, G06001302" -County and PUMA "G0600130, G06001303" -County and PUMA "G0600130, G06001304" -County and PUMA "G0600130, G06001305" -County and PUMA "G0600130, G06001306" -County and PUMA "G0600130, G06001307" -County and PUMA "G0600130, G06001308" -County and PUMA "G0600130, G06001309" -County and PUMA "G0600150, G06001500" -County and PUMA "G0600170, G06001700" -County and PUMA "G0600190, G06001901" -County and PUMA "G0600190, G06001902" -County and PUMA "G0600190, G06001903" -County and PUMA "G0600190, G06001904" -County and PUMA "G0600190, G06001905" -County and PUMA "G0600190, G06001906" -County and PUMA "G0600190, G06001907" -County and PUMA "G0600210, G06001100" -County and PUMA "G0600230, G06002300" -County and PUMA "G0600250, G06002500" -County and PUMA "G0600270, G06000300" -County and PUMA "G0600290, G06002901" -County and PUMA "G0600290, G06002902" -County and PUMA "G0600290, G06002903" -County and PUMA "G0600290, G06002904" -County and PUMA "G0600290, G06002905" -County and PUMA "G0600310, G06003100" -County and PUMA "G0600330, G06003300" -County and PUMA "G0600350, G06001500" -County and PUMA "G0600370, G06003701" -County and PUMA "G0600370, G06003702" -County and PUMA "G0600370, G06003703" -County and PUMA "G0600370, G06003704" -County and PUMA "G0600370, G06003705" -County and PUMA "G0600370, G06003706" -County and PUMA "G0600370, G06003707" -County and PUMA "G0600370, G06003708" -County and PUMA "G0600370, G06003709" -County and PUMA "G0600370, G06003710" -County and PUMA "G0600370, G06003711" -County and PUMA "G0600370, G06003712" -County and PUMA "G0600370, G06003713" -County and PUMA "G0600370, G06003714" -County and PUMA "G0600370, G06003715" -County and PUMA "G0600370, G06003716" -County and PUMA "G0600370, G06003717" -County and PUMA "G0600370, G06003718" -County and PUMA "G0600370, G06003719" -County and PUMA "G0600370, G06003720" -County and PUMA "G0600370, G06003721" -County and PUMA "G0600370, G06003722" -County and PUMA "G0600370, G06003723" -County and PUMA "G0600370, G06003724" -County and PUMA "G0600370, G06003725" -County and PUMA "G0600370, G06003726" -County and PUMA "G0600370, G06003727" -County and PUMA "G0600370, G06003728" -County and PUMA "G0600370, G06003729" -County and PUMA "G0600370, G06003730" -County and PUMA "G0600370, G06003731" -County and PUMA "G0600370, G06003732" -County and PUMA "G0600370, G06003733" -County and PUMA "G0600370, G06003734" -County and PUMA "G0600370, G06003735" -County and PUMA "G0600370, G06003736" -County and PUMA "G0600370, G06003737" -County and PUMA "G0600370, G06003738" -County and PUMA "G0600370, G06003739" -County and PUMA "G0600370, G06003740" -County and PUMA "G0600370, G06003741" -County and PUMA "G0600370, G06003742" -County and PUMA "G0600370, G06003743" -County and PUMA "G0600370, G06003744" -County and PUMA "G0600370, G06003745" -County and PUMA "G0600370, G06003746" -County and PUMA "G0600370, G06003747" -County and PUMA "G0600370, G06003748" -County and PUMA "G0600370, G06003749" -County and PUMA "G0600370, G06003750" -County and PUMA "G0600370, G06003751" -County and PUMA "G0600370, G06003752" -County and PUMA "G0600370, G06003753" -County and PUMA "G0600370, G06003754" -County and PUMA "G0600370, G06003755" -County and PUMA "G0600370, G06003756" -County and PUMA "G0600370, G06003757" -County and PUMA "G0600370, G06003758" -County and PUMA "G0600370, G06003759" -County and PUMA "G0600370, G06003760" -County and PUMA "G0600370, G06003761" -County and PUMA "G0600370, G06003762" -County and PUMA "G0600370, G06003763" -County and PUMA "G0600370, G06003764" -County and PUMA "G0600370, G06003765" -County and PUMA "G0600370, G06003766" -County and PUMA "G0600370, G06003767" -County and PUMA "G0600370, G06003768" -County and PUMA "G0600370, G06003769" -County and PUMA "G0600390, G06003900" -County and PUMA "G0600410, G06004101" -County and PUMA "G0600410, G06004102" -County and PUMA "G0600430, G06000300" -County and PUMA "G0600450, G06003300" -County and PUMA "G0600470, G06004701" -County and PUMA "G0600470, G06004702" -County and PUMA "G0600490, G06001500" -County and PUMA "G0600510, G06000300" -County and PUMA "G0600530, G06005301" -County and PUMA "G0600530, G06005302" -County and PUMA "G0600530, G06005303" -County and PUMA "G0600550, G06005500" -County and PUMA "G0600570, G06005700" -County and PUMA "G0600590, G06005901" -County and PUMA "G0600590, G06005902" -County and PUMA "G0600590, G06005903" -County and PUMA "G0600590, G06005904" -County and PUMA "G0600590, G06005905" -County and PUMA "G0600590, G06005906" -County and PUMA "G0600590, G06005907" -County and PUMA "G0600590, G06005908" -County and PUMA "G0600590, G06005909" -County and PUMA "G0600590, G06005910" -County and PUMA "G0600590, G06005911" -County and PUMA "G0600590, G06005912" -County and PUMA "G0600590, G06005913" -County and PUMA "G0600590, G06005914" -County and PUMA "G0600590, G06005915" -County and PUMA "G0600590, G06005916" -County and PUMA "G0600590, G06005917" -County and PUMA "G0600590, G06005918" -County and PUMA "G0600610, G06006101" -County and PUMA "G0600610, G06006102" -County and PUMA "G0600610, G06006103" -County and PUMA "G0600630, G06001500" -County and PUMA "G0600650, G06006501" -County and PUMA "G0600650, G06006502" -County and PUMA "G0600650, G06006503" -County and PUMA "G0600650, G06006504" -County and PUMA "G0600650, G06006505" -County and PUMA "G0600650, G06006506" -County and PUMA "G0600650, G06006507" -County and PUMA "G0600650, G06006508" -County and PUMA "G0600650, G06006509" -County and PUMA "G0600650, G06006510" -County and PUMA "G0600650, G06006511" -County and PUMA "G0600650, G06006512" -County and PUMA "G0600650, G06006513" -County and PUMA "G0600650, G06006514" -County and PUMA "G0600650, G06006515" -County and PUMA "G0600670, G06006701" -County and PUMA "G0600670, G06006702" -County and PUMA "G0600670, G06006703" -County and PUMA "G0600670, G06006704" -County and PUMA "G0600670, G06006705" -County and PUMA "G0600670, G06006706" -County and PUMA "G0600670, G06006707" -County and PUMA "G0600670, G06006708" -County and PUMA "G0600670, G06006709" -County and PUMA "G0600670, G06006710" -County and PUMA "G0600670, G06006711" -County and PUMA "G0600670, G06006712" -County and PUMA "G0600690, G06005303" -County and PUMA "G0600710, G06007101" -County and PUMA "G0600710, G06007102" -County and PUMA "G0600710, G06007103" -County and PUMA "G0600710, G06007104" -County and PUMA "G0600710, G06007105" -County and PUMA "G0600710, G06007106" -County and PUMA "G0600710, G06007107" -County and PUMA "G0600710, G06007108" -County and PUMA "G0600710, G06007109" -County and PUMA "G0600710, G06007110" -County and PUMA "G0600710, G06007111" -County and PUMA "G0600710, G06007112" -County and PUMA "G0600710, G06007113" -County and PUMA "G0600710, G06007114" -County and PUMA "G0600710, G06007115" -County and PUMA "G0600730, G06007301" -County and PUMA "G0600730, G06007302" -County and PUMA "G0600730, G06007303" -County and PUMA "G0600730, G06007304" -County and PUMA "G0600730, G06007305" -County and PUMA "G0600730, G06007306" -County and PUMA "G0600730, G06007307" -County and PUMA "G0600730, G06007308" -County and PUMA "G0600730, G06007309" -County and PUMA "G0600730, G06007310" -County and PUMA "G0600730, G06007311" -County and PUMA "G0600730, G06007312" -County and PUMA "G0600730, G06007313" -County and PUMA "G0600730, G06007314" -County and PUMA "G0600730, G06007315" -County and PUMA "G0600730, G06007316" -County and PUMA "G0600730, G06007317" -County and PUMA "G0600730, G06007318" -County and PUMA "G0600730, G06007319" -County and PUMA "G0600730, G06007320" -County and PUMA "G0600730, G06007321" -County and PUMA "G0600730, G06007322" -County and PUMA "G0600750, G06007501" -County and PUMA "G0600750, G06007502" -County and PUMA "G0600750, G06007503" -County and PUMA "G0600750, G06007504" -County and PUMA "G0600750, G06007505" -County and PUMA "G0600750, G06007506" -County and PUMA "G0600750, G06007507" -County and PUMA "G0600770, G06007701" -County and PUMA "G0600770, G06007702" -County and PUMA "G0600770, G06007703" -County and PUMA "G0600770, G06007704" -County and PUMA "G0600790, G06007901" -County and PUMA "G0600790, G06007902" -County and PUMA "G0600810, G06008101" -County and PUMA "G0600810, G06008102" -County and PUMA "G0600810, G06008103" -County and PUMA "G0600810, G06008104" -County and PUMA "G0600810, G06008105" -County and PUMA "G0600810, G06008106" -County and PUMA "G0600830, G06008301" -County and PUMA "G0600830, G06008302" -County and PUMA "G0600830, G06008303" -County and PUMA "G0600850, G06008501" -County and PUMA "G0600850, G06008502" -County and PUMA "G0600850, G06008503" -County and PUMA "G0600850, G06008504" -County and PUMA "G0600850, G06008505" -County and PUMA "G0600850, G06008506" -County and PUMA "G0600850, G06008507" -County and PUMA "G0600850, G06008508" -County and PUMA "G0600850, G06008509" -County and PUMA "G0600850, G06008510" -County and PUMA "G0600850, G06008511" -County and PUMA "G0600850, G06008512" -County and PUMA "G0600850, G06008513" -County and PUMA "G0600850, G06008514" -County and PUMA "G0600870, G06008701" -County and PUMA "G0600870, G06008702" -County and PUMA "G0600890, G06008900" -County and PUMA "G0600910, G06005700" -County and PUMA "G0600930, G06001500" -County and PUMA "G0600950, G06009501" -County and PUMA "G0600950, G06009502" -County and PUMA "G0600950, G06009503" -County and PUMA "G0600970, G06009701" -County and PUMA "G0600970, G06009702" -County and PUMA "G0600970, G06009703" -County and PUMA "G0600990, G06009901" -County and PUMA "G0600990, G06009902" -County and PUMA "G0600990, G06009903" -County and PUMA "G0600990, G06009904" -County and PUMA "G0601010, G06010100" -County and PUMA "G0601030, G06001100" -County and PUMA "G0601050, G06001100" -County and PUMA "G0601070, G06010701" -County and PUMA "G0601070, G06010702" -County and PUMA "G0601070, G06010703" -County and PUMA "G0601090, G06000300" -County and PUMA "G0601110, G06011101" -County and PUMA "G0601110, G06011102" -County and PUMA "G0601110, G06011103" -County and PUMA "G0601110, G06011104" -County and PUMA "G0601110, G06011105" -County and PUMA "G0601110, G06011106" -County and PUMA "G0601130, G06011300" -County and PUMA "G0601150, G06010100" -County and PUMA "G0800010, G08000804" -County and PUMA "G0800010, G08000805" -County and PUMA "G0800010, G08000806" -County and PUMA "G0800010, G08000807" -County and PUMA "G0800010, G08000809" -County and PUMA "G0800010, G08000810" -County and PUMA "G0800010, G08000817" -County and PUMA "G0800010, G08000824" -County and PUMA "G0800030, G08000800" -County and PUMA "G0800050, G08000808" -County and PUMA "G0800050, G08000809" -County and PUMA "G0800050, G08000810" -County and PUMA "G0800050, G08000811" -County and PUMA "G0800050, G08000815" -County and PUMA "G0800050, G08000820" -County and PUMA "G0800050, G08000824" -County and PUMA "G0800070, G08000900" -County and PUMA "G0800090, G08000800" -County and PUMA "G0800110, G08000100" -County and PUMA "G0800130, G08000801" -County and PUMA "G0800130, G08000802" -County and PUMA "G0800130, G08000803" -County and PUMA "G0800130, G08000804" -County and PUMA "G0800140, G08000804" -County and PUMA "G0800140, G08000805" -County and PUMA "G0800150, G08000600" -County and PUMA "G0800170, G08000100" -County and PUMA "G0800190, G08000801" -County and PUMA "G0800210, G08000800" -County and PUMA "G0800230, G08000800" -County and PUMA "G0800250, G08000100" -County and PUMA "G0800270, G08000600" -County and PUMA "G0800290, G08001002" -County and PUMA "G0800310, G08000812" -County and PUMA "G0800310, G08000813" -County and PUMA "G0800310, G08000814" -County and PUMA "G0800310, G08000815" -County and PUMA "G0800310, G08000816" -County and PUMA "G0800330, G08000900" -County and PUMA "G0800350, G08000821" -County and PUMA "G0800350, G08000822" -County and PUMA "G0800350, G08000823" -County and PUMA "G0800370, G08000400" -County and PUMA "G0800390, G08000100" -County and PUMA "G0800390, G08000823" -County and PUMA "G0800410, G08004101" -County and PUMA "G0800410, G08004102" -County and PUMA "G0800410, G08004103" -County and PUMA "G0800410, G08004104" -County and PUMA "G0800410, G08004105" -County and PUMA "G0800410, G08004106" -County and PUMA "G0800430, G08000600" -County and PUMA "G0800450, G08000200" -County and PUMA "G0800470, G08000801" -County and PUMA "G0800490, G08000400" -County and PUMA "G0800510, G08000900" -County and PUMA "G0800530, G08000900" -County and PUMA "G0800550, G08000600" -County and PUMA "G0800570, G08000400" -County and PUMA "G0800590, G08000801" -County and PUMA "G0800590, G08000804" -County and PUMA "G0800590, G08000805" -County and PUMA "G0800590, G08000817" -County and PUMA "G0800590, G08000818" -County and PUMA "G0800590, G08000819" -County and PUMA "G0800590, G08000820" -County and PUMA "G0800590, G08000821" -County and PUMA "G0800610, G08000100" -County and PUMA "G0800630, G08000100" -County and PUMA "G0800650, G08000600" -County and PUMA "G0800670, G08000900" -County and PUMA "G0800690, G08000102" -County and PUMA "G0800690, G08000103" -County and PUMA "G0800710, G08000800" -County and PUMA "G0800730, G08000100" -County and PUMA "G0800750, G08000100" -County and PUMA "G0800770, G08001001" -County and PUMA "G0800770, G08001002" -County and PUMA "G0800790, G08000800" -County and PUMA "G0800810, G08000200" -County and PUMA "G0800830, G08000900" -County and PUMA "G0800850, G08001002" -County and PUMA "G0800870, G08000100" -County and PUMA "G0800890, G08000800" -County and PUMA "G0800910, G08001002" -County and PUMA "G0800930, G08000600" -County and PUMA "G0800950, G08000100" -County and PUMA "G0800970, G08000400" -County and PUMA "G0800990, G08000800" -County and PUMA "G0801010, G08000600" -County and PUMA "G0801010, G08000700" -County and PUMA "G0801010, G08000800" -County and PUMA "G0801030, G08000200" -County and PUMA "G0801050, G08000800" -County and PUMA "G0801070, G08000200" -County and PUMA "G0801090, G08000800" -County and PUMA "G0801110, G08000900" -County and PUMA "G0801130, G08001002" -County and PUMA "G0801150, G08000100" -County and PUMA "G0801170, G08000400" -County and PUMA "G0801190, G08004101" -County and PUMA "G0801210, G08000100" -County and PUMA "G0801230, G08000100" -County and PUMA "G0801230, G08000300" -County and PUMA "G0801230, G08000802" -County and PUMA "G0801230, G08000824" -County and PUMA "G0801250, G08000100" -County and PUMA "G0900010, G09000100" -County and PUMA "G0900010, G09000101" -County and PUMA "G0900010, G09000102" -County and PUMA "G0900010, G09000103" -County and PUMA "G0900010, G09000104" -County and PUMA "G0900010, G09000105" -County and PUMA "G0900030, G09000300" -County and PUMA "G0900030, G09000301" -County and PUMA "G0900030, G09000302" -County and PUMA "G0900030, G09000303" -County and PUMA "G0900030, G09000304" -County and PUMA "G0900030, G09000305" -County and PUMA "G0900030, G09000306" -County and PUMA "G0900050, G09000500" -County and PUMA "G0900070, G09000700" -County and PUMA "G0900090, G09000900" -County and PUMA "G0900090, G09000901" -County and PUMA "G0900090, G09000902" -County and PUMA "G0900090, G09000903" -County and PUMA "G0900090, G09000904" -County and PUMA "G0900090, G09000905" -County and PUMA "G0900090, G09000906" -County and PUMA "G0900110, G09001100" -County and PUMA "G0900110, G09001101" -County and PUMA "G0900130, G09001300" -County and PUMA "G0900150, G09001500" -County and PUMA "G1000010, G10000200" -County and PUMA "G1000030, G10000101" -County and PUMA "G1000030, G10000102" -County and PUMA "G1000030, G10000103" -County and PUMA "G1000030, G10000104" -County and PUMA "G1000050, G10000300" -County and PUMA "G1100010, G11000101" -County and PUMA "G1100010, G11000102" -County and PUMA "G1100010, G11000103" -County and PUMA "G1100010, G11000104" -County and PUMA "G1100010, G11000105" -County and PUMA "G1200010, G12000101" -County and PUMA "G1200010, G12000102" -County and PUMA "G1200030, G12008900" -County and PUMA "G1200050, G12000500" -County and PUMA "G1200070, G12002300" -County and PUMA "G1200090, G12000901" -County and PUMA "G1200090, G12000902" -County and PUMA "G1200090, G12000903" -County and PUMA "G1200090, G12000904" -County and PUMA "G1200110, G12001101" -County and PUMA "G1200110, G12001102" -County and PUMA "G1200110, G12001103" -County and PUMA "G1200110, G12001104" -County and PUMA "G1200110, G12001105" -County and PUMA "G1200110, G12001106" -County and PUMA "G1200110, G12001107" -County and PUMA "G1200110, G12001108" -County and PUMA "G1200110, G12001109" -County and PUMA "G1200110, G12001110" -County and PUMA "G1200110, G12001111" -County and PUMA "G1200110, G12001112" -County and PUMA "G1200110, G12001113" -County and PUMA "G1200110, G12001114" -County and PUMA "G1200130, G12006300" -County and PUMA "G1200150, G12001500" -County and PUMA "G1200170, G12001701" -County and PUMA "G1200190, G12001900" -County and PUMA "G1200210, G12002101" -County and PUMA "G1200210, G12002102" -County and PUMA "G1200210, G12002103" -County and PUMA "G1200230, G12002300" -County and PUMA "G1200270, G12002700" -County and PUMA "G1200290, G12002300" -County and PUMA "G1200310, G12003101" -County and PUMA "G1200310, G12003102" -County and PUMA "G1200310, G12003103" -County and PUMA "G1200310, G12003104" -County and PUMA "G1200310, G12003105" -County and PUMA "G1200310, G12003106" -County and PUMA "G1200310, G12003107" -County and PUMA "G1200330, G12003301" -County and PUMA "G1200330, G12003302" -County and PUMA "G1200350, G12003500" -County and PUMA "G1200370, G12006300" -County and PUMA "G1200390, G12006300" -County and PUMA "G1200410, G12002300" -County and PUMA "G1200430, G12009300" -County and PUMA "G1200450, G12006300" -County and PUMA "G1200470, G12012100" -County and PUMA "G1200490, G12002700" -County and PUMA "G1200510, G12009300" -County and PUMA "G1200530, G12005301" -County and PUMA "G1200550, G12002700" -County and PUMA "G1200550, G12009300" -County and PUMA "G1200570, G12005701" -County and PUMA "G1200570, G12005702" -County and PUMA "G1200570, G12005703" -County and PUMA "G1200570, G12005704" -County and PUMA "G1200570, G12005705" -County and PUMA "G1200570, G12005706" -County and PUMA "G1200570, G12005707" -County and PUMA "G1200570, G12005708" -County and PUMA "G1200590, G12000500" -County and PUMA "G1200610, G12006100" -County and PUMA "G1200630, G12006300" -County and PUMA "G1200650, G12006300" -County and PUMA "G1200670, G12012100" -County and PUMA "G1200690, G12006901" -County and PUMA "G1200690, G12006902" -County and PUMA "G1200690, G12006903" -County and PUMA "G1200710, G12007101" -County and PUMA "G1200710, G12007102" -County and PUMA "G1200710, G12007103" -County and PUMA "G1200710, G12007104" -County and PUMA "G1200710, G12007105" -County and PUMA "G1200730, G12007300" -County and PUMA "G1200730, G12007301" -County and PUMA "G1200750, G12002300" -County and PUMA "G1200770, G12006300" -County and PUMA "G1200790, G12012100" -County and PUMA "G1200810, G12008101" -County and PUMA "G1200810, G12008102" -County and PUMA "G1200810, G12008103" -County and PUMA "G1200830, G12008301" -County and PUMA "G1200830, G12008302" -County and PUMA "G1200830, G12008303" -County and PUMA "G1200850, G12008500" -County and PUMA "G1200860, G12008601" -County and PUMA "G1200860, G12008602" -County and PUMA "G1200860, G12008603" -County and PUMA "G1200860, G12008604" -County and PUMA "G1200860, G12008605" -County and PUMA "G1200860, G12008606" -County and PUMA "G1200860, G12008607" -County and PUMA "G1200860, G12008608" -County and PUMA "G1200860, G12008609" -County and PUMA "G1200860, G12008610" -County and PUMA "G1200860, G12008611" -County and PUMA "G1200860, G12008612" -County and PUMA "G1200860, G12008613" -County and PUMA "G1200860, G12008614" -County and PUMA "G1200860, G12008615" -County and PUMA "G1200860, G12008616" -County and PUMA "G1200860, G12008617" -County and PUMA "G1200860, G12008618" -County and PUMA "G1200860, G12008619" -County and PUMA "G1200860, G12008620" -County and PUMA "G1200860, G12008621" -County and PUMA "G1200860, G12008622" -County and PUMA "G1200860, G12008623" -County and PUMA "G1200860, G12008624" -County and PUMA "G1200860, G12008700" -County and PUMA "G1200870, G12008700" -County and PUMA "G1200890, G12008900" -County and PUMA "G1200910, G12009100" -County and PUMA "G1200930, G12009300" -County and PUMA "G1200950, G12009501" -County and PUMA "G1200950, G12009502" -County and PUMA "G1200950, G12009503" -County and PUMA "G1200950, G12009504" -County and PUMA "G1200950, G12009505" -County and PUMA "G1200950, G12009506" -County and PUMA "G1200950, G12009507" -County and PUMA "G1200950, G12009508" -County and PUMA "G1200950, G12009509" -County and PUMA "G1200950, G12009510" -County and PUMA "G1200970, G12009701" -County and PUMA "G1200970, G12009702" -County and PUMA "G1200990, G12009901" -County and PUMA "G1200990, G12009902" -County and PUMA "G1200990, G12009903" -County and PUMA "G1200990, G12009904" -County and PUMA "G1200990, G12009905" -County and PUMA "G1200990, G12009906" -County and PUMA "G1200990, G12009907" -County and PUMA "G1200990, G12009908" -County and PUMA "G1200990, G12009909" -County and PUMA "G1200990, G12009910" -County and PUMA "G1200990, G12009911" -County and PUMA "G1201010, G12010101" -County and PUMA "G1201010, G12010102" -County and PUMA "G1201010, G12010103" -County and PUMA "G1201010, G12010104" -County and PUMA "G1201030, G12010301" -County and PUMA "G1201030, G12010302" -County and PUMA "G1201030, G12010303" -County and PUMA "G1201030, G12010304" -County and PUMA "G1201030, G12010305" -County and PUMA "G1201030, G12010306" -County and PUMA "G1201030, G12010307" -County and PUMA "G1201030, G12010308" -County and PUMA "G1201050, G12010501" -County and PUMA "G1201050, G12010502" -County and PUMA "G1201050, G12010503" -County and PUMA "G1201050, G12010504" -County and PUMA "G1201070, G12010700" -County and PUMA "G1201090, G12010700" -County and PUMA "G1201090, G12010900" -County and PUMA "G1201110, G12011101" -County and PUMA "G1201110, G12011102" -County and PUMA "G1201130, G12011300" -County and PUMA "G1201150, G12011501" -County and PUMA "G1201150, G12011502" -County and PUMA "G1201150, G12011503" -County and PUMA "G1201170, G12011701" -County and PUMA "G1201170, G12011702" -County and PUMA "G1201170, G12011703" -County and PUMA "G1201170, G12011704" -County and PUMA "G1201190, G12006902" -County and PUMA "G1201190, G12006903" -County and PUMA "G1201210, G12012100" -County and PUMA "G1201230, G12012100" -County and PUMA "G1201250, G12002300" -County and PUMA "G1201270, G12003500" -County and PUMA "G1201270, G12012701" -County and PUMA "G1201270, G12012702" -County and PUMA "G1201270, G12012703" -County and PUMA "G1201270, G12012704" -County and PUMA "G1201290, G12006300" -County and PUMA "G1201310, G12000500" -County and PUMA "G1201330, G12000500" -County and PUMA "G1300010, G13001200" -County and PUMA "G1300030, G13000500" -County and PUMA "G1300050, G13000500" -County and PUMA "G1300070, G13001100" -County and PUMA "G1300090, G13001600" -County and PUMA "G1300110, G13003500" -County and PUMA "G1300130, G13003800" -County and PUMA "G1300150, G13002900" -County and PUMA "G1300170, G13000700" -County and PUMA "G1300190, G13000700" -County and PUMA "G1300210, G13001400" -County and PUMA "G1300230, G13001300" -County and PUMA "G1300250, G13000500" -County and PUMA "G1300270, G13000700" -County and PUMA "G1300290, G13000200" -County and PUMA "G1300310, G13000300" -County and PUMA "G1300330, G13004200" -County and PUMA "G1300350, G13001900" -County and PUMA "G1300370, G13001100" -County and PUMA "G1300390, G13000100" -County and PUMA "G1300430, G13001300" -County and PUMA "G1300450, G13002300" -County and PUMA "G1300470, G13002600" -County and PUMA "G1300490, G13000500" -County and PUMA "G1300510, G13000401" -County and PUMA "G1300510, G13000402" -County and PUMA "G1300530, G13001700" -County and PUMA "G1300550, G13002600" -County and PUMA "G1300570, G13003101" -County and PUMA "G1300570, G13003102" -County and PUMA "G1300590, G13003600" -County and PUMA "G1300610, G13001800" -County and PUMA "G1300630, G13005001" -County and PUMA "G1300630, G13005002" -County and PUMA "G1300650, G13000500" -County and PUMA "G1300670, G13003001" -County and PUMA "G1300670, G13003002" -County and PUMA "G1300670, G13003003" -County and PUMA "G1300670, G13003004" -County and PUMA "G1300670, G13003005" -County and PUMA "G1300690, G13000500" -County and PUMA "G1300710, G13000800" -County and PUMA "G1300730, G13004100" -County and PUMA "G1300750, G13000700" -County and PUMA "G1300770, G13002100" -County and PUMA "G1300790, G13001600" -County and PUMA "G1300810, G13001800" -County and PUMA "G1300830, G13002600" -County and PUMA "G1300850, G13003200" -County and PUMA "G1300870, G13001100" -County and PUMA "G1300890, G13001007" -County and PUMA "G1300890, G13001008" -County and PUMA "G1300890, G13002001" -County and PUMA "G1300890, G13002002" -County and PUMA "G1300890, G13002003" -County and PUMA "G1300890, G13002004" -County and PUMA "G1300910, G13001300" -County and PUMA "G1300930, G13001800" -County and PUMA "G1300950, G13000900" -County and PUMA "G1300970, G13004400" -County and PUMA "G1300990, G13001100" -County and PUMA "G1301010, G13000500" -County and PUMA "G1301030, G13000300" -County and PUMA "G1301050, G13003700" -County and PUMA "G1301070, G13001300" -County and PUMA "G1301090, G13001200" -County and PUMA "G1301110, G13002800" -County and PUMA "G1301130, G13002400" -County and PUMA "G1301150, G13002500" -County and PUMA "G1301170, G13003300" -County and PUMA "G1301190, G13003500" -County and PUMA "G1301210, G13001001" -County and PUMA "G1301210, G13001002" -County and PUMA "G1301210, G13001003" -County and PUMA "G1301210, G13001004" -County and PUMA "G1301210, G13001005" -County and PUMA "G1301210, G13001006" -County and PUMA "G1301210, G13001007" -County and PUMA "G1301210, G13004600" -County and PUMA "G1301230, G13002800" -County and PUMA "G1301250, G13004200" -County and PUMA "G1301270, G13000100" -County and PUMA "G1301290, G13002800" -County and PUMA "G1301310, G13001100" -County and PUMA "G1301330, G13003700" -County and PUMA "G1301350, G13004001" -County and PUMA "G1301350, G13004002" -County and PUMA "G1301350, G13004003" -County and PUMA "G1301350, G13004004" -County and PUMA "G1301350, G13004005" -County and PUMA "G1301350, G13004006" -County and PUMA "G1301370, G13003500" -County and PUMA "G1301390, G13003400" -County and PUMA "G1301410, G13004200" -County and PUMA "G1301430, G13002500" -County and PUMA "G1301450, G13001800" -County and PUMA "G1301470, G13003500" -County and PUMA "G1301490, G13002200" -County and PUMA "G1301510, G13006001" -County and PUMA "G1301510, G13006002" -County and PUMA "G1301530, G13001500" -County and PUMA "G1301550, G13000700" -County and PUMA "G1301570, G13003800" -County and PUMA "G1301590, G13003900" -County and PUMA "G1301610, G13001200" -County and PUMA "G1301630, G13004200" -County and PUMA "G1301650, G13004200" -County and PUMA "G1301670, G13001300" -County and PUMA "G1301690, G13001600" -County and PUMA "G1301710, G13001900" -County and PUMA "G1301730, G13000500" -County and PUMA "G1301750, G13001300" -County and PUMA "G1301770, G13000900" -County and PUMA "G1301790, G13000200" -County and PUMA "G1301810, G13004200" -County and PUMA "G1301830, G13000200" -County and PUMA "G1301850, G13000600" -County and PUMA "G1301870, G13003200" -County and PUMA "G1301890, G13004200" -County and PUMA "G1301910, G13000100" -County and PUMA "G1301930, G13001800" -County and PUMA "G1301950, G13003700" -County and PUMA "G1301970, G13001800" -County and PUMA "G1301990, G13002200" -County and PUMA "G1302010, G13001100" -County and PUMA "G1302050, G13001100" -County and PUMA "G1302070, G13001600" -County and PUMA "G1302090, G13001200" -County and PUMA "G1302110, G13003900" -County and PUMA "G1302130, G13002800" -County and PUMA "G1302150, G13001700" -County and PUMA "G1302170, G13004300" -County and PUMA "G1302190, G13003700" -County and PUMA "G1302210, G13003700" -County and PUMA "G1302230, G13004500" -County and PUMA "G1302250, G13001600" -County and PUMA "G1302270, G13002800" -County and PUMA "G1302290, G13000500" -County and PUMA "G1302310, G13001900" -County and PUMA "G1302330, G13002500" -County and PUMA "G1302350, G13001500" -County and PUMA "G1302370, G13001600" -County and PUMA "G1302390, G13001800" -County and PUMA "G1302410, G13003200" -County and PUMA "G1302430, G13001800" -County and PUMA "G1302450, G13004000" -County and PUMA "G1302470, G13004300" -County and PUMA "G1302490, G13001800" -County and PUMA "G1302510, G13000300" -County and PUMA "G1302530, G13001100" -County and PUMA "G1302550, G13001900" -County and PUMA "G1302570, G13003500" -County and PUMA "G1302590, G13001800" -County and PUMA "G1302610, G13001800" -County and PUMA "G1302630, G13001800" -County and PUMA "G1302650, G13004200" -County and PUMA "G1302670, G13001200" -County and PUMA "G1302690, G13001800" -County and PUMA "G1302710, G13001200" -County and PUMA "G1302730, G13001100" -County and PUMA "G1302750, G13000800" -County and PUMA "G1302770, G13000700" -County and PUMA "G1302790, G13001200" -County and PUMA "G1302810, G13003200" -County and PUMA "G1302830, G13001300" -County and PUMA "G1302850, G13002200" -County and PUMA "G1302870, G13000700" -County and PUMA "G1302890, G13001600" -County and PUMA "G1302910, G13003200" -County and PUMA "G1302930, G13001900" -County and PUMA "G1302950, G13002600" -County and PUMA "G1302970, G13003900" -County and PUMA "G1302990, G13000500" -County and PUMA "G1303010, G13004200" -County and PUMA "G1303030, G13004200" -County and PUMA "G1303050, G13001200" -County and PUMA "G1303070, G13001800" -County and PUMA "G1303090, G13001200" -County and PUMA "G1303110, G13003200" -County and PUMA "G1303130, G13002700" -County and PUMA "G1303150, G13001300" -County and PUMA "G1303170, G13004200" -County and PUMA "G1303190, G13001600" -County and PUMA "G1303210, G13000800" -County and PUMA "G1500010, G15000200" -County and PUMA "G1500030, G15000301" -County and PUMA "G1500030, G15000302" -County and PUMA "G1500030, G15000303" -County and PUMA "G1500030, G15000304" -County and PUMA "G1500030, G15000305" -County and PUMA "G1500030, G15000306" -County and PUMA "G1500030, G15000307" -County and PUMA "G1500030, G15000308" -County and PUMA "G1500050, G15000100" -County and PUMA "G1500070, G15000100" -County and PUMA "G1500090, G15000100" -County and PUMA "G1600010, G16000400" -County and PUMA "G1600010, G16000600" -County and PUMA "G1600010, G16000701" -County and PUMA "G1600010, G16000702" -County and PUMA "G1600010, G16000800" -County and PUMA "G1600030, G16000300" -County and PUMA "G1600050, G16001300" -County and PUMA "G1600070, G16001300" -County and PUMA "G1600090, G16000100" -County and PUMA "G1600110, G16001100" -County and PUMA "G1600110, G16001300" -County and PUMA "G1600130, G16001000" -County and PUMA "G1600150, G16000300" -County and PUMA "G1600170, G16000100" -County and PUMA "G1600190, G16001200" -County and PUMA "G1600210, G16000100" -County and PUMA "G1600230, G16000300" -County and PUMA "G1600250, G16001000" -County and PUMA "G1600270, G16000400" -County and PUMA "G1600270, G16000500" -County and PUMA "G1600270, G16000600" -County and PUMA "G1600290, G16001300" -County and PUMA "G1600310, G16000900" -County and PUMA "G1600330, G16000300" -County and PUMA "G1600350, G16000300" -County and PUMA "G1600370, G16000300" -County and PUMA "G1600390, G16001000" -County and PUMA "G1600410, G16001300" -County and PUMA "G1600430, G16001100" -County and PUMA "G1600450, G16000400" -County and PUMA "G1600470, G16001000" -County and PUMA "G1600490, G16000300" -County and PUMA "G1600510, G16001100" -County and PUMA "G1600530, G16001000" -County and PUMA "G1600550, G16000100" -County and PUMA "G1600550, G16000200" -County and PUMA "G1600570, G16000100" -County and PUMA "G1600590, G16000300" -County and PUMA "G1600610, G16000300" -County and PUMA "G1600630, G16001000" -County and PUMA "G1600650, G16001100" -County and PUMA "G1600670, G16001000" -County and PUMA "G1600690, G16000300" -County and PUMA "G1600710, G16001300" -County and PUMA "G1600730, G16000500" -County and PUMA "G1600750, G16000400" -County and PUMA "G1600770, G16001300" -County and PUMA "G1600790, G16000100" -County and PUMA "G1600810, G16001100" -County and PUMA "G1600830, G16000900" -County and PUMA "G1600850, G16000300" -County and PUMA "G1600870, G16000400" -County and PUMA "G1700010, G17000300" -County and PUMA "G1700030, G17000800" -County and PUMA "G1700050, G17000501" -County and PUMA "G1700070, G17002901" -County and PUMA "G1700090, G17000300" -County and PUMA "G1700110, G17002501" -County and PUMA "G1700130, G17000401" -County and PUMA "G1700150, G17000104" -County and PUMA "G1700170, G17000401" -County and PUMA "G1700190, G17002100" -County and PUMA "G1700210, G17001602" -County and PUMA "G1700230, G17000700" -County and PUMA "G1700250, G17000700" -County and PUMA "G1700270, G17000501" -County and PUMA "G1700290, G17000600" -County and PUMA "G1700310, G17003401" -County and PUMA "G1700310, G17003407" -County and PUMA "G1700310, G17003408" -County and PUMA "G1700310, G17003409" -County and PUMA "G1700310, G17003410" -County and PUMA "G1700310, G17003411" -County and PUMA "G1700310, G17003412" -County and PUMA "G1700310, G17003413" -County and PUMA "G1700310, G17003414" -County and PUMA "G1700310, G17003415" -County and PUMA "G1700310, G17003416" -County and PUMA "G1700310, G17003417" -County and PUMA "G1700310, G17003418" -County and PUMA "G1700310, G17003419" -County and PUMA "G1700310, G17003420" -County and PUMA "G1700310, G17003421" -County and PUMA "G1700310, G17003422" -County and PUMA "G1700310, G17003501" -County and PUMA "G1700310, G17003502" -County and PUMA "G1700310, G17003503" -County and PUMA "G1700310, G17003504" -County and PUMA "G1700310, G17003520" -County and PUMA "G1700310, G17003521" -County and PUMA "G1700310, G17003522" -County and PUMA "G1700310, G17003523" -County and PUMA "G1700310, G17003524" -County and PUMA "G1700310, G17003525" -County and PUMA "G1700310, G17003526" -County and PUMA "G1700310, G17003527" -County and PUMA "G1700310, G17003528" -County and PUMA "G1700310, G17003529" -County and PUMA "G1700310, G17003530" -County and PUMA "G1700310, G17003531" -County and PUMA "G1700310, G17003532" -County and PUMA "G1700330, G17000700" -County and PUMA "G1700350, G17000600" -County and PUMA "G1700370, G17002601" -County and PUMA "G1700390, G17001602" -County and PUMA "G1700410, G17000600" -County and PUMA "G1700430, G17003202" -County and PUMA "G1700430, G17003203" -County and PUMA "G1700430, G17003204" -County and PUMA "G1700430, G17003205" -County and PUMA "G1700430, G17003207" -County and PUMA "G1700430, G17003208" -County and PUMA "G1700430, G17003209" -County and PUMA "G1700450, G17000600" -County and PUMA "G1700470, G17000800" -County and PUMA "G1700490, G17000501" -County and PUMA "G1700510, G17000501" -County and PUMA "G1700530, G17002200" -County and PUMA "G1700550, G17000900" -County and PUMA "G1700570, G17000202" -County and PUMA "G1700590, G17000800" -County and PUMA "G1700610, G17000401" -County and PUMA "G1700630, G17003700" -County and PUMA "G1700650, G17000800" -County and PUMA "G1700670, G17000202" -County and PUMA "G1700690, G17000800" -County and PUMA "G1700710, G17000202" -County and PUMA "G1700730, G17000202" -County and PUMA "G1700750, G17002200" -County and PUMA "G1700770, G17000900" -County and PUMA "G1700790, G17000700" -County and PUMA "G1700810, G17001001" -County and PUMA "G1700830, G17000401" -County and PUMA "G1700850, G17000104" -County and PUMA "G1700870, G17000800" -County and PUMA "G1700890, G17003005" -County and PUMA "G1700890, G17003007" -County and PUMA "G1700890, G17003008" -County and PUMA "G1700890, G17003009" -County and PUMA "G1700910, G17002300" -County and PUMA "G1700930, G17003700" -County and PUMA "G1700950, G17002501" -County and PUMA "G1700970, G17003306" -County and PUMA "G1700970, G17003307" -County and PUMA "G1700970, G17003308" -County and PUMA "G1700970, G17003309" -County and PUMA "G1700970, G17003310" -County and PUMA "G1700990, G17002400" -County and PUMA "G1701010, G17000700" -County and PUMA "G1701030, G17000104" -County and PUMA "G1701050, G17002200" -County and PUMA "G1701070, G17001602" -County and PUMA "G1701090, G17000202" -County and PUMA "G1701110, G17003601" -County and PUMA "G1701110, G17003602" -County and PUMA "G1701130, G17002000" -County and PUMA "G1701150, G17001500" -County and PUMA "G1701170, G17000401" -County and PUMA "G1701190, G17001204" -County and PUMA "G1701190, G17001205" -County and PUMA "G1701210, G17001001" -County and PUMA "G1701230, G17002501" -County and PUMA "G1701250, G17000300" -County and PUMA "G1701270, G17000800" -County and PUMA "G1701290, G17001602" -County and PUMA "G1701310, G17000202" -County and PUMA "G1701330, G17001001" -County and PUMA "G1701350, G17000501" -County and PUMA "G1701370, G17000401" -County and PUMA "G1701390, G17001602" -County and PUMA "G1701410, G17002700" -County and PUMA "G1701430, G17001701" -County and PUMA "G1701450, G17000900" -County and PUMA "G1701470, G17001602" -County and PUMA "G1701490, G17000300" -County and PUMA "G1701510, G17000800" -County and PUMA "G1701530, G17000800" -County and PUMA "G1701550, G17002501" -County and PUMA "G1701570, G17001001" -County and PUMA "G1701590, G17000700" -County and PUMA "G1701610, G17000105" -County and PUMA "G1701630, G17001104" -County and PUMA "G1701630, G17001105" -County and PUMA "G1701650, G17000800" -County and PUMA "G1701670, G17001300" -County and PUMA "G1701690, G17000300" -County and PUMA "G1701710, G17000401" -County and PUMA "G1701730, G17001602" -County and PUMA "G1701750, G17002501" -County and PUMA "G1701770, G17002700" -County and PUMA "G1701790, G17001900" -County and PUMA "G1701810, G17000800" -County and PUMA "G1701830, G17002200" -County and PUMA "G1701850, G17000800" -County and PUMA "G1701870, G17000202" -County and PUMA "G1701890, G17001001" -County and PUMA "G1701910, G17000700" -County and PUMA "G1701930, G17000800" -County and PUMA "G1701950, G17000104" -County and PUMA "G1701970, G17003102" -County and PUMA "G1701970, G17003105" -County and PUMA "G1701970, G17003106" -County and PUMA "G1701970, G17003107" -County and PUMA "G1701970, G17003108" -County and PUMA "G1701990, G17000900" -County and PUMA "G1702010, G17002801" -County and PUMA "G1702010, G17002901" -County and PUMA "G1702030, G17002501" -County and PUMA "G1800010, G18000900" -County and PUMA "G1800030, G18001001" -County and PUMA "G1800030, G18001002" -County and PUMA "G1800030, G18001003" -County and PUMA "G1800050, G18002900" -County and PUMA "G1800070, G18001100" -County and PUMA "G1800090, G18001500" -County and PUMA "G1800110, G18001801" -County and PUMA "G1800130, G18002100" -County and PUMA "G1800150, G18001100" -County and PUMA "G1800170, G18001300" -County and PUMA "G1800190, G18003600" -County and PUMA "G1800210, G18001600" -County and PUMA "G1800230, G18001100" -County and PUMA "G1800250, G18003400" -County and PUMA "G1800270, G18002700" -County and PUMA "G1800290, G18003100" -County and PUMA "G1800310, G18003000" -County and PUMA "G1800330, G18000600" -County and PUMA "G1800350, G18002000" -County and PUMA "G1800370, G18003400" -County and PUMA "G1800390, G18000500" -County and PUMA "G1800410, G18002600" -County and PUMA "G1800430, G18003500" -County and PUMA "G1800450, G18001600" -County and PUMA "G1800470, G18003100" -County and PUMA "G1800490, G18000700" -County and PUMA "G1800510, G18003200" -County and PUMA "G1800530, G18001400" -County and PUMA "G1800550, G18002700" -County and PUMA "G1800570, G18001801" -County and PUMA "G1800570, G18001802" -County and PUMA "G1800570, G18001803" -County and PUMA "G1800590, G18002500" -County and PUMA "G1800610, G18003500" -County and PUMA "G1800630, G18002200" -County and PUMA "G1800650, G18001500" -County and PUMA "G1800670, G18001300" -County and PUMA "G1800690, G18000900" -County and PUMA "G1800710, G18002900" -County and PUMA "G1800730, G18000700" -County and PUMA "G1800750, G18001500" -County and PUMA "G1800770, G18003000" -County and PUMA "G1800790, G18003000" -County and PUMA "G1800810, G18002400" -County and PUMA "G1800830, G18003400" -County and PUMA "G1800850, G18000800" -County and PUMA "G1800870, G18000600" -County and PUMA "G1800890, G18000101" -County and PUMA "G1800890, G18000102" -County and PUMA "G1800890, G18000103" -County and PUMA "G1800890, G18000104" -County and PUMA "G1800910, G18000300" -County and PUMA "G1800930, G18002700" -County and PUMA "G1800950, G18001900" -County and PUMA "G1800970, G18002301" -County and PUMA "G1800970, G18002302" -County and PUMA "G1800970, G18002303" -County and PUMA "G1800970, G18002304" -County and PUMA "G1800970, G18002305" -County and PUMA "G1800970, G18002306" -County and PUMA "G1800970, G18002307" -County and PUMA "G1800990, G18000800" -County and PUMA "G1801010, G18002700" -County and PUMA "G1801030, G18001400" -County and PUMA "G1801050, G18002800" -County and PUMA "G1801070, G18001100" -County and PUMA "G1801090, G18002100" -County and PUMA "G1801110, G18000700" -County and PUMA "G1801130, G18000600" -County and PUMA "G1801150, G18003100" -County and PUMA "G1801170, G18002700" -County and PUMA "G1801190, G18002700" -County and PUMA "G1801210, G18001600" -County and PUMA "G1801230, G18003400" -County and PUMA "G1801250, G18003400" -County and PUMA "G1801270, G18000200" -County and PUMA "G1801290, G18003200" -County and PUMA "G1801310, G18000700" -County and PUMA "G1801330, G18002100" -County and PUMA "G1801350, G18001500" -County and PUMA "G1801370, G18003100" -County and PUMA "G1801390, G18002600" -County and PUMA "G1801410, G18000401" -County and PUMA "G1801410, G18000402" -County and PUMA "G1801430, G18003000" -County and PUMA "G1801450, G18002500" -County and PUMA "G1801470, G18003400" -County and PUMA "G1801490, G18000700" -County and PUMA "G1801510, G18000600" -County and PUMA "G1801530, G18001600" -County and PUMA "G1801550, G18003100" -County and PUMA "G1801570, G18001200" -County and PUMA "G1801590, G18001300" -County and PUMA "G1801610, G18002600" -County and PUMA "G1801630, G18003300" -County and PUMA "G1801650, G18001600" -County and PUMA "G1801670, G18001700" -County and PUMA "G1801690, G18001400" -County and PUMA "G1801710, G18001600" -County and PUMA "G1801730, G18003200" -County and PUMA "G1801750, G18003500" -County and PUMA "G1801770, G18002600" -County and PUMA "G1801790, G18000900" -County and PUMA "G1801810, G18001100" -County and PUMA "G1801830, G18000900" -County and PUMA "G1900010, G19001800" -County and PUMA "G1900030, G19001800" -County and PUMA "G1900050, G19000400" -County and PUMA "G1900070, G19001800" -County and PUMA "G1900090, G19001800" -County and PUMA "G1900110, G19001200" -County and PUMA "G1900130, G19000500" -County and PUMA "G1900150, G19001300" -County and PUMA "G1900170, G19000400" -County and PUMA "G1900190, G19000700" -County and PUMA "G1900210, G19001900" -County and PUMA "G1900230, G19000600" -County and PUMA "G1900250, G19001900" -County and PUMA "G1900270, G19001900" -County and PUMA "G1900290, G19002100" -County and PUMA "G1900310, G19000800" -County and PUMA "G1900330, G19000200" -County and PUMA "G1900350, G19001900" -County and PUMA "G1900370, G19000400" -County and PUMA "G1900390, G19001800" -County and PUMA "G1900410, G19000100" -County and PUMA "G1900430, G19000400" -County and PUMA "G1900450, G19000800" -County and PUMA "G1900470, G19001900" -County and PUMA "G1900490, G19001400" -County and PUMA "G1900490, G19001500" -County and PUMA "G1900510, G19002200" -County and PUMA "G1900530, G19001800" -County and PUMA "G1900550, G19000700" -County and PUMA "G1900570, G19002300" -County and PUMA "G1900590, G19000100" -County and PUMA "G1900610, G19000700" -County and PUMA "G1900630, G19000100" -County and PUMA "G1900650, G19000400" -County and PUMA "G1900670, G19000200" -County and PUMA "G1900690, G19000600" -County and PUMA "G1900710, G19002100" -County and PUMA "G1900730, G19001900" -County and PUMA "G1900750, G19000600" -County and PUMA "G1900770, G19001800" -County and PUMA "G1900790, G19000600" -County and PUMA "G1900810, G19000200" -County and PUMA "G1900830, G19000600" -County and PUMA "G1900850, G19002100" -County and PUMA "G1900870, G19002300" -County and PUMA "G1900890, G19000400" -County and PUMA "G1900910, G19000600" -County and PUMA "G1900930, G19001900" -County and PUMA "G1900950, G19001200" -County and PUMA "G1900970, G19000700" -County and PUMA "G1900990, G19001400" -County and PUMA "G1901010, G19002200" -County and PUMA "G1901030, G19001100" -County and PUMA "G1901050, G19000800" -County and PUMA "G1901070, G19002200" -County and PUMA "G1901090, G19000200" -County and PUMA "G1901110, G19002300" -County and PUMA "G1901130, G19001000" -County and PUMA "G1901150, G19002300" -County and PUMA "G1901170, G19001800" -County and PUMA "G1901190, G19000100" -County and PUMA "G1901210, G19001400" -County and PUMA "G1901230, G19002200" -County and PUMA "G1901250, G19001400" -County and PUMA "G1901270, G19001200" -County and PUMA "G1901290, G19002100" -County and PUMA "G1901310, G19000200" -County and PUMA "G1901330, G19001900" -County and PUMA "G1901350, G19001800" -County and PUMA "G1901370, G19002100" -County and PUMA "G1901390, G19000800" -County and PUMA "G1901410, G19000100" -County and PUMA "G1901430, G19000100" -County and PUMA "G1901450, G19002100" -County and PUMA "G1901470, G19000100" -County and PUMA "G1901490, G19002000" -County and PUMA "G1901510, G19001900" -County and PUMA "G1901530, G19001500" -County and PUMA "G1901530, G19001600" -County and PUMA "G1901530, G19001700" -County and PUMA "G1901550, G19002100" -County and PUMA "G1901570, G19001200" -County and PUMA "G1901590, G19001800" -County and PUMA "G1901610, G19001900" -County and PUMA "G1901630, G19000900" -County and PUMA "G1901650, G19002100" -County and PUMA "G1901670, G19000100" -County and PUMA "G1901690, G19001300" -County and PUMA "G1901710, G19001200" -County and PUMA "G1901730, G19001800" -County and PUMA "G1901750, G19001800" -County and PUMA "G1901770, G19002200" -County and PUMA "G1901790, G19002200" -County and PUMA "G1901810, G19001400" -County and PUMA "G1901830, G19002200" -County and PUMA "G1901850, G19001800" -County and PUMA "G1901870, G19000600" -County and PUMA "G1901890, G19000200" -County and PUMA "G1901910, G19000400" -County and PUMA "G1901930, G19002000" -County and PUMA "G1901950, G19000200" -County and PUMA "G1901970, G19000600" -County and PUMA "G2000010, G20001400" -County and PUMA "G2000030, G20001400" -County and PUMA "G2000050, G20000400" -County and PUMA "G2000070, G20001100" -County and PUMA "G2000090, G20001100" -County and PUMA "G2000110, G20001400" -County and PUMA "G2000130, G20000802" -County and PUMA "G2000150, G20001302" -County and PUMA "G2000150, G20001304" -County and PUMA "G2000170, G20000900" -County and PUMA "G2000190, G20000900" -County and PUMA "G2000210, G20001500" -County and PUMA "G2000230, G20000100" -County and PUMA "G2000250, G20001200" -County and PUMA "G2000270, G20000200" -County and PUMA "G2000290, G20000200" -County and PUMA "G2000310, G20000900" -County and PUMA "G2000330, G20001100" -County and PUMA "G2000350, G20000900" -County and PUMA "G2000350, G20001100" -County and PUMA "G2000370, G20001500" -County and PUMA "G2000390, G20000100" -County and PUMA "G2000410, G20000200" -County and PUMA "G2000430, G20000400" -County and PUMA "G2000450, G20000700" -County and PUMA "G2000470, G20001100" -County and PUMA "G2000490, G20000900" -County and PUMA "G2000510, G20000100" -County and PUMA "G2000530, G20000200" -County and PUMA "G2000550, G20001200" -County and PUMA "G2000570, G20001200" -County and PUMA "G2000590, G20001400" -County and PUMA "G2000610, G20000300" -County and PUMA "G2000630, G20000100" -County and PUMA "G2000650, G20000100" -County and PUMA "G2000670, G20001200" -County and PUMA "G2000690, G20001200" -County and PUMA "G2000710, G20000100" -County and PUMA "G2000730, G20000900" -County and PUMA "G2000750, G20001200" -County and PUMA "G2000770, G20001100" -County and PUMA "G2000790, G20001301" -County and PUMA "G2000810, G20001200" -County and PUMA "G2000830, G20001200" -County and PUMA "G2000850, G20000802" -County and PUMA "G2000870, G20000400" -County and PUMA "G2000890, G20000200" -County and PUMA "G2000910, G20000601" -County and PUMA "G2000910, G20000602" -County and PUMA "G2000910, G20000603" -County and PUMA "G2000910, G20000604" -County and PUMA "G2000930, G20001200" -County and PUMA "G2000950, G20001100" -County and PUMA "G2000970, G20001100" -County and PUMA "G2000990, G20001500" -County and PUMA "G2001010, G20000100" -County and PUMA "G2001030, G20000400" -County and PUMA "G2001050, G20000200" -County and PUMA "G2001070, G20001400" -County and PUMA "G2001090, G20000100" -County and PUMA "G2001110, G20000900" -County and PUMA "G2001130, G20001000" -County and PUMA "G2001150, G20000900" -County and PUMA "G2001170, G20000200" -County and PUMA "G2001190, G20001200" -County and PUMA "G2001210, G20001400" -County and PUMA "G2001230, G20000200" -County and PUMA "G2001250, G20001500" -County and PUMA "G2001270, G20000900" -County and PUMA "G2001290, G20001200" -County and PUMA "G2001310, G20000200" -County and PUMA "G2001330, G20001500" -County and PUMA "G2001350, G20000100" -County and PUMA "G2001370, G20000100" -County and PUMA "G2001390, G20000802" -County and PUMA "G2001410, G20000100" -County and PUMA "G2001430, G20000200" -County and PUMA "G2001450, G20001100" -County and PUMA "G2001470, G20000100" -County and PUMA "G2001490, G20000300" -County and PUMA "G2001510, G20001100" -County and PUMA "G2001530, G20000100" -County and PUMA "G2001550, G20001000" -County and PUMA "G2001570, G20000200" -County and PUMA "G2001590, G20001000" -County and PUMA "G2001610, G20000300" -County and PUMA "G2001630, G20000100" -County and PUMA "G2001650, G20001100" -County and PUMA "G2001670, G20000100" -County and PUMA "G2001690, G20000200" -County and PUMA "G2001710, G20000100" -County and PUMA "G2001730, G20001301" -County and PUMA "G2001730, G20001302" -County and PUMA "G2001730, G20001303" -County and PUMA "G2001730, G20001304" -County and PUMA "G2001750, G20001200" -County and PUMA "G2001770, G20000801" -County and PUMA "G2001770, G20000802" -County and PUMA "G2001790, G20000100" -County and PUMA "G2001810, G20000100" -County and PUMA "G2001830, G20000100" -County and PUMA "G2001850, G20001100" -County and PUMA "G2001870, G20001200" -County and PUMA "G2001890, G20001200" -County and PUMA "G2001910, G20001100" -County and PUMA "G2001930, G20000100" -County and PUMA "G2001950, G20000100" -County and PUMA "G2001970, G20000802" -County and PUMA "G2001990, G20000100" -County and PUMA "G2002010, G20000200" -County and PUMA "G2002030, G20000100" -County and PUMA "G2002050, G20000900" -County and PUMA "G2002070, G20000900" -County and PUMA "G2002090, G20000500" -County and PUMA "G2100010, G21000600" -County and PUMA "G2100030, G21000400" -County and PUMA "G2100050, G21002000" -County and PUMA "G2100070, G21000100" -County and PUMA "G2100090, G21000400" -County and PUMA "G2100110, G21002700" -County and PUMA "G2100130, G21000900" -County and PUMA "G2100150, G21002500" -County and PUMA "G2100170, G21002300" -County and PUMA "G2100190, G21002800" -County and PUMA "G2100210, G21002100" -County and PUMA "G2100230, G21002700" -County and PUMA "G2100250, G21001000" -County and PUMA "G2100270, G21001300" -County and PUMA "G2100290, G21001600" -County and PUMA "G2100310, G21000400" -County and PUMA "G2100330, G21000200" -County and PUMA "G2100350, G21000100" -County and PUMA "G2100370, G21002600" -County and PUMA "G2100390, G21000100" -County and PUMA "G2100410, G21002600" -County and PUMA "G2100430, G21002800" -County and PUMA "G2100450, G21000600" -County and PUMA "G2100470, G21000300" -County and PUMA "G2100490, G21002300" -County and PUMA "G2100510, G21000800" -County and PUMA "G2100530, G21000600" -County and PUMA "G2100550, G21000200" -County and PUMA "G2100570, G21000600" -County and PUMA "G2100590, G21001500" -County and PUMA "G2100610, G21000400" -County and PUMA "G2100630, G21002800" -County and PUMA "G2100650, G21002200" -County and PUMA "G2100670, G21001901" -County and PUMA "G2100670, G21001902" -County and PUMA "G2100690, G21002700" -County and PUMA "G2100710, G21001100" -County and PUMA "G2100730, G21002000" -County and PUMA "G2100750, G21000100" -County and PUMA "G2100770, G21002600" -County and PUMA "G2100790, G21002100" -County and PUMA "G2100810, G21002600" -County and PUMA "G2100830, G21000100" -County and PUMA "G2100850, G21001300" -County and PUMA "G2100870, G21000600" -County and PUMA "G2100890, G21002800" -County and PUMA "G2100910, G21001500" -County and PUMA "G2100930, G21001200" -County and PUMA "G2100930, G21001300" -County and PUMA "G2100950, G21000900" -County and PUMA "G2100970, G21002300" -County and PUMA "G2100990, G21000400" -County and PUMA "G2101010, G21001400" -County and PUMA "G2101030, G21001800" -County and PUMA "G2101050, G21000100" -County and PUMA "G2101070, G21000200" -County and PUMA "G2101090, G21000800" -County and PUMA "G2101110, G21001701" -County and PUMA "G2101110, G21001702" -County and PUMA "G2101110, G21001703" -County and PUMA "G2101110, G21001704" -County and PUMA "G2101110, G21001705" -County and PUMA "G2101110, G21001706" -County and PUMA "G2101130, G21002100" -County and PUMA "G2101150, G21001100" -County and PUMA "G2101170, G21002400" -County and PUMA "G2101190, G21001000" -County and PUMA "G2101210, G21000900" -County and PUMA "G2101230, G21001200" -County and PUMA "G2101250, G21000800" -County and PUMA "G2101270, G21002800" -County and PUMA "G2101290, G21001000" -County and PUMA "G2101310, G21001000" -County and PUMA "G2101330, G21001000" -County and PUMA "G2101350, G21002700" -County and PUMA "G2101370, G21002100" -County and PUMA "G2101390, G21000200" -County and PUMA "G2101410, G21000400" -County and PUMA "G2101430, G21000300" -County and PUMA "G2101450, G21000100" -County and PUMA "G2101470, G21000700" -County and PUMA "G2101490, G21001400" -County and PUMA "G2101510, G21002200" -County and PUMA "G2101530, G21001100" -County and PUMA "G2101550, G21001200" -County and PUMA "G2101570, G21000100" -County and PUMA "G2101590, G21001100" -County and PUMA "G2101610, G21002700" -County and PUMA "G2101630, G21001300" -County and PUMA "G2101650, G21002700" -County and PUMA "G2101670, G21002000" -County and PUMA "G2101690, G21000400" -County and PUMA "G2101710, G21000400" -County and PUMA "G2101730, G21002700" -County and PUMA "G2101750, G21002700" -County and PUMA "G2101770, G21000200" -County and PUMA "G2101790, G21001200" -County and PUMA "G2101810, G21002300" -County and PUMA "G2101830, G21001400" -County and PUMA "G2101850, G21001800" -County and PUMA "G2101870, G21002600" -County and PUMA "G2101890, G21001000" -County and PUMA "G2101910, G21002600" -County and PUMA "G2101930, G21001000" -County and PUMA "G2101950, G21001100" -County and PUMA "G2101970, G21002200" -County and PUMA "G2101990, G21000700" -County and PUMA "G2102010, G21002700" -County and PUMA "G2102030, G21000800" -County and PUMA "G2102050, G21002700" -County and PUMA "G2102070, G21000600" -County and PUMA "G2102090, G21002300" -County and PUMA "G2102110, G21001600" -County and PUMA "G2102110, G21001800" -County and PUMA "G2102130, G21000400" -County and PUMA "G2102150, G21001600" -County and PUMA "G2102170, G21000600" -County and PUMA "G2102190, G21000300" -County and PUMA "G2102210, G21000300" -County and PUMA "G2102230, G21001800" -County and PUMA "G2102250, G21001400" -County and PUMA "G2102270, G21000500" -County and PUMA "G2102290, G21001200" -County and PUMA "G2102310, G21000700" -County and PUMA "G2102330, G21001400" -County and PUMA "G2102350, G21000900" -County and PUMA "G2102370, G21001000" -County and PUMA "G2102390, G21002000" -County and PUMA "G2200010, G22001100" -County and PUMA "G2200030, G22000800" -County and PUMA "G2200050, G22001600" -County and PUMA "G2200070, G22002000" -County and PUMA "G2200090, G22000600" -County and PUMA "G2200110, G22000800" -County and PUMA "G2200130, G22000300" -County and PUMA "G2200150, G22000200" -County and PUMA "G2200170, G22000100" -County and PUMA "G2200170, G22000101" -County and PUMA "G2200190, G22000800" -County and PUMA "G2200190, G22000900" -County and PUMA "G2200210, G22000500" -County and PUMA "G2200230, G22000900" -County and PUMA "G2200250, G22000600" -County and PUMA "G2200270, G22000300" -County and PUMA "G2200290, G22000600" -County and PUMA "G2200310, G22000300" -County and PUMA "G2200330, G22001500" -County and PUMA "G2200330, G22001501" -County and PUMA "G2200330, G22001502" -County and PUMA "G2200350, G22000500" -County and PUMA "G2200370, G22001400" -County and PUMA "G2200390, G22001000" -County and PUMA "G2200410, G22000500" -County and PUMA "G2200430, G22000600" -County and PUMA "G2200450, G22001300" -County and PUMA "G2200470, G22001400" -County and PUMA "G2200490, G22000500" -County and PUMA "G2200510, G22002300" -County and PUMA "G2200510, G22002301" -County and PUMA "G2200510, G22002302" -County and PUMA "G2200510, G22002500" -County and PUMA "G2200530, G22000900" -County and PUMA "G2200550, G22001200" -County and PUMA "G2200550, G22001201" -County and PUMA "G2200570, G22002000" -County and PUMA "G2200590, G22000600" -County and PUMA "G2200610, G22000300" -County and PUMA "G2200630, G22001700" -County and PUMA "G2200650, G22000500" -County and PUMA "G2200670, G22000500" -County and PUMA "G2200690, G22000300" -County and PUMA "G2200710, G22002400" -County and PUMA "G2200710, G22002401" -County and PUMA "G2200710, G22002402" -County and PUMA "G2200730, G22000400" -County and PUMA "G2200750, G22002500" -County and PUMA "G2200770, G22001400" -County and PUMA "G2200790, G22000700" -County and PUMA "G2200810, G22000300" -County and PUMA "G2200830, G22000500" -County and PUMA "G2200850, G22000300" -County and PUMA "G2200870, G22002500" -County and PUMA "G2200890, G22001900" -County and PUMA "G2200910, G22001700" -County and PUMA "G2200930, G22001900" -County and PUMA "G2200950, G22001900" -County and PUMA "G2200970, G22001000" -County and PUMA "G2200990, G22001300" -County and PUMA "G2201010, G22001300" -County and PUMA "G2201030, G22002200" -County and PUMA "G2201030, G22002201" -County and PUMA "G2201050, G22001800" -County and PUMA "G2201070, G22000500" -County and PUMA "G2201090, G22002100" -County and PUMA "G2201110, G22000500" -County and PUMA "G2201130, G22001100" -County and PUMA "G2201150, G22000700" -County and PUMA "G2201170, G22001800" -County and PUMA "G2201190, G22000200" -County and PUMA "G2201210, G22001400" -County and PUMA "G2201230, G22000500" -County and PUMA "G2201250, G22001400" -County and PUMA "G2201270, G22000600" -County and PUMA "G2300010, G23000600" -County and PUMA "G2300030, G23000100" -County and PUMA "G2300050, G23000700" -County and PUMA "G2300050, G23000800" -County and PUMA "G2300050, G23000900" -County and PUMA "G2300050, G23001000" -County and PUMA "G2300070, G23000200" -County and PUMA "G2300090, G23000500" -County and PUMA "G2300110, G23000400" -County and PUMA "G2300130, G23000500" -County and PUMA "G2300150, G23000500" -County and PUMA "G2300170, G23000200" -County and PUMA "G2300190, G23000300" -County and PUMA "G2300210, G23000200" -County and PUMA "G2300230, G23000700" -County and PUMA "G2300250, G23000200" -County and PUMA "G2300270, G23000500" -County and PUMA "G2300290, G23000100" -County and PUMA "G2300310, G23000800" -County and PUMA "G2300310, G23000900" -County and PUMA "G2400010, G24000100" -County and PUMA "G2400030, G24001201" -County and PUMA "G2400030, G24001202" -County and PUMA "G2400030, G24001203" -County and PUMA "G2400030, G24001204" -County and PUMA "G2400050, G24000501" -County and PUMA "G2400050, G24000502" -County and PUMA "G2400050, G24000503" -County and PUMA "G2400050, G24000504" -County and PUMA "G2400050, G24000505" -County and PUMA "G2400050, G24000506" -County and PUMA "G2400050, G24000507" -County and PUMA "G2400090, G24001500" -County and PUMA "G2400110, G24001300" -County and PUMA "G2400130, G24000400" -County and PUMA "G2400150, G24000700" -County and PUMA "G2400170, G24001600" -County and PUMA "G2400190, G24001300" -County and PUMA "G2400210, G24000301" -County and PUMA "G2400210, G24000302" -County and PUMA "G2400230, G24000100" -County and PUMA "G2400250, G24000601" -County and PUMA "G2400250, G24000602" -County and PUMA "G2400270, G24000901" -County and PUMA "G2400270, G24000902" -County and PUMA "G2400290, G24001300" -County and PUMA "G2400310, G24001001" -County and PUMA "G2400310, G24001002" -County and PUMA "G2400310, G24001003" -County and PUMA "G2400310, G24001004" -County and PUMA "G2400310, G24001005" -County and PUMA "G2400310, G24001006" -County and PUMA "G2400310, G24001007" -County and PUMA "G2400330, G24001101" -County and PUMA "G2400330, G24001102" -County and PUMA "G2400330, G24001103" -County and PUMA "G2400330, G24001104" -County and PUMA "G2400330, G24001105" -County and PUMA "G2400330, G24001106" -County and PUMA "G2400330, G24001107" -County and PUMA "G2400350, G24001300" -County and PUMA "G2400370, G24001500" -County and PUMA "G2400390, G24001400" -County and PUMA "G2400410, G24001300" -County and PUMA "G2400430, G24000200" -County and PUMA "G2400450, G24001400" -County and PUMA "G2400470, G24001400" -County and PUMA "G2405100, G24000801" -County and PUMA "G2405100, G24000802" -County and PUMA "G2405100, G24000803" -County and PUMA "G2405100, G24000804" -County and PUMA "G2405100, G24000805" -County and PUMA "G2500010, G25004700" -County and PUMA "G2500010, G25004800" -County and PUMA "G2500030, G25000100" -County and PUMA "G2500050, G25004200" -County and PUMA "G2500050, G25004301" -County and PUMA "G2500050, G25004302" -County and PUMA "G2500050, G25004303" -County and PUMA "G2500050, G25004500" -County and PUMA "G2500050, G25004901" -County and PUMA "G2500070, G25004800" -County and PUMA "G2500090, G25000701" -County and PUMA "G2500090, G25000702" -County and PUMA "G2500090, G25000703" -County and PUMA "G2500090, G25000704" -County and PUMA "G2500090, G25001000" -County and PUMA "G2500090, G25001300" -County and PUMA "G2500090, G25002800" -County and PUMA "G2500110, G25000200" -County and PUMA "G2500130, G25001600" -County and PUMA "G2500130, G25001900" -County and PUMA "G2500130, G25001901" -County and PUMA "G2500130, G25001902" -County and PUMA "G2500150, G25000200" -County and PUMA "G2500150, G25001600" -County and PUMA "G2500170, G25000400" -County and PUMA "G2500170, G25000501" -County and PUMA "G2500170, G25000502" -County and PUMA "G2500170, G25000503" -County and PUMA "G2500170, G25000504" -County and PUMA "G2500170, G25000505" -County and PUMA "G2500170, G25000506" -County and PUMA "G2500170, G25000507" -County and PUMA "G2500170, G25000508" -County and PUMA "G2500170, G25001000" -County and PUMA "G2500170, G25001300" -County and PUMA "G2500170, G25001400" -County and PUMA "G2500170, G25002400" -County and PUMA "G2500170, G25002800" -County and PUMA "G2500170, G25003400" -County and PUMA "G2500170, G25003500" -County and PUMA "G2500190, G25004800" -County and PUMA "G2500210, G25002400" -County and PUMA "G2500210, G25003400" -County and PUMA "G2500210, G25003500" -County and PUMA "G2500210, G25003601" -County and PUMA "G2500210, G25003602" -County and PUMA "G2500210, G25003603" -County and PUMA "G2500210, G25003900" -County and PUMA "G2500210, G25004000" -County and PUMA "G2500210, G25004200" -County and PUMA "G2500230, G25003900" -County and PUMA "G2500230, G25004000" -County and PUMA "G2500230, G25004301" -County and PUMA "G2500230, G25004901" -County and PUMA "G2500230, G25004902" -County and PUMA "G2500230, G25004903" -County and PUMA "G2500250, G25003301" -County and PUMA "G2500250, G25003302" -County and PUMA "G2500250, G25003303" -County and PUMA "G2500250, G25003304" -County and PUMA "G2500250, G25003305" -County and PUMA "G2500250, G25003306" -County and PUMA "G2500270, G25000300" -County and PUMA "G2500270, G25000301" -County and PUMA "G2500270, G25000302" -County and PUMA "G2500270, G25000303" -County and PUMA "G2500270, G25000304" -County and PUMA "G2500270, G25000400" -County and PUMA "G2500270, G25001400" -County and PUMA "G2500270, G25002400" -County and PUMA "G2600010, G26000300" -County and PUMA "G2600030, G26000200" -County and PUMA "G2600050, G26000900" -County and PUMA "G2600070, G26000300" -County and PUMA "G2600090, G26000400" -County and PUMA "G2600110, G26001300" -County and PUMA "G2600130, G26000100" -County and PUMA "G2600150, G26002000" -County and PUMA "G2600170, G26001400" -County and PUMA "G2600190, G26000500" -County and PUMA "G2600210, G26002400" -County and PUMA "G2600230, G26002200" -County and PUMA "G2600250, G26002000" -County and PUMA "G2600270, G26002300" -County and PUMA "G2600290, G26000400" -County and PUMA "G2600310, G26000300" -County and PUMA "G2600330, G26000200" -County and PUMA "G2600350, G26001200" -County and PUMA "G2600370, G26001900" -County and PUMA "G2600390, G26000300" -County and PUMA "G2600410, G26000200" -County and PUMA "G2600430, G26000100" -County and PUMA "G2600450, G26001900" -County and PUMA "G2600470, G26000400" -County and PUMA "G2600490, G26001701" -County and PUMA "G2600490, G26001702" -County and PUMA "G2600490, G26001703" -County and PUMA "G2600490, G26001704" -County and PUMA "G2600510, G26001300" -County and PUMA "G2600530, G26000100" -County and PUMA "G2600550, G26000500" -County and PUMA "G2600570, G26001200" -County and PUMA "G2600590, G26002500" -County and PUMA "G2600610, G26000100" -County and PUMA "G2600630, G26001600" -County and PUMA "G2600650, G26001801" -County and PUMA "G2600650, G26001802" -County and PUMA "G2600670, G26001100" -County and PUMA "G2600690, G26001300" -County and PUMA "G2600710, G26000100" -County and PUMA "G2600730, G26001200" -County and PUMA "G2600750, G26002600" -County and PUMA "G2600770, G26002101" -County and PUMA "G2600770, G26002102" -County and PUMA "G2600790, G26000400" -County and PUMA "G2600810, G26001001" -County and PUMA "G2600810, G26001002" -County and PUMA "G2600810, G26001003" -County and PUMA "G2600810, G26001004" -County and PUMA "G2600830, G26000100" -County and PUMA "G2600850, G26000600" -County and PUMA "G2600870, G26001701" -County and PUMA "G2600890, G26000500" -County and PUMA "G2600910, G26002500" -County and PUMA "G2600930, G26002800" -County and PUMA "G2600950, G26000200" -County and PUMA "G2600970, G26000200" -County and PUMA "G2600990, G26003001" -County and PUMA "G2600990, G26003002" -County and PUMA "G2600990, G26003003" -County and PUMA "G2600990, G26003004" -County and PUMA "G2600990, G26003005" -County and PUMA "G2600990, G26003006" -County and PUMA "G2601010, G26000500" -County and PUMA "G2601030, G26000100" -County and PUMA "G2601050, G26000600" -County and PUMA "G2601070, G26001100" -County and PUMA "G2601090, G26000200" -County and PUMA "G2601110, G26001400" -County and PUMA "G2601130, G26000400" -County and PUMA "G2601150, G26003300" -County and PUMA "G2601170, G26001100" -County and PUMA "G2601190, G26000300" -County and PUMA "G2601210, G26000700" -County and PUMA "G2601230, G26000600" -County and PUMA "G2601250, G26002901" -County and PUMA "G2601250, G26002902" -County and PUMA "G2601250, G26002903" -County and PUMA "G2601250, G26002904" -County and PUMA "G2601250, G26002905" -County and PUMA "G2601250, G26002906" -County and PUMA "G2601250, G26002907" -County and PUMA "G2601250, G26002908" -County and PUMA "G2601270, G26000600" -County and PUMA "G2601290, G26001300" -County and PUMA "G2601310, G26000100" -County and PUMA "G2601330, G26001100" -County and PUMA "G2601350, G26000300" -County and PUMA "G2601370, G26000300" -County and PUMA "G2601390, G26000801" -County and PUMA "G2601390, G26000802" -County and PUMA "G2601410, G26000300" -County and PUMA "G2601430, G26001300" -County and PUMA "G2601450, G26001500" -County and PUMA "G2601470, G26003100" -County and PUMA "G2601490, G26002200" -County and PUMA "G2601510, G26001600" -County and PUMA "G2601530, G26000200" -County and PUMA "G2601550, G26001704" -County and PUMA "G2601570, G26001600" -County and PUMA "G2601590, G26002300" -County and PUMA "G2601610, G26002701" -County and PUMA "G2601610, G26002702" -County and PUMA "G2601610, G26002703" -County and PUMA "G2601630, G26003201" -County and PUMA "G2601630, G26003202" -County and PUMA "G2601630, G26003203" -County and PUMA "G2601630, G26003204" -County and PUMA "G2601630, G26003205" -County and PUMA "G2601630, G26003206" -County and PUMA "G2601630, G26003207" -County and PUMA "G2601630, G26003208" -County and PUMA "G2601630, G26003209" -County and PUMA "G2601630, G26003210" -County and PUMA "G2601630, G26003211" -County and PUMA "G2601630, G26003212" -County and PUMA "G2601630, G26003213" -County and PUMA "G2601650, G26000400" -County and PUMA "G2700010, G27000300" -County and PUMA "G2700030, G27001101" -County and PUMA "G2700030, G27001102" -County and PUMA "G2700030, G27001103" -County and PUMA "G2700050, G27000200" -County and PUMA "G2700070, G27000200" -County and PUMA "G2700090, G27001000" -County and PUMA "G2700110, G27000800" -County and PUMA "G2700130, G27002200" -County and PUMA "G2700150, G27002000" -County and PUMA "G2700170, G27000300" -County and PUMA "G2700170, G27000400" -County and PUMA "G2700190, G27001700" -County and PUMA "G2700210, G27000300" -County and PUMA "G2700230, G27002000" -County and PUMA "G2700250, G27000600" -County and PUMA "G2700270, G27000100" -County and PUMA "G2700290, G27000200" -County and PUMA "G2700310, G27000400" -County and PUMA "G2700330, G27002100" -County and PUMA "G2700350, G27000700" -County and PUMA "G2700370, G27001501" -County and PUMA "G2700370, G27001502" -County and PUMA "G2700370, G27001503" -County and PUMA "G2700390, G27002400" -County and PUMA "G2700410, G27000800" -County and PUMA "G2700430, G27002100" -County and PUMA "G2700450, G27002600" -County and PUMA "G2700470, G27002400" -County and PUMA "G2700490, G27002300" -County and PUMA "G2700510, G27000800" -County and PUMA "G2700530, G27001401" -County and PUMA "G2700530, G27001402" -County and PUMA "G2700530, G27001403" -County and PUMA "G2700530, G27001404" -County and PUMA "G2700530, G27001405" -County and PUMA "G2700530, G27001406" -County and PUMA "G2700530, G27001407" -County and PUMA "G2700530, G27001408" -County and PUMA "G2700530, G27001409" -County and PUMA "G2700530, G27001410" -County and PUMA "G2700550, G27002600" -County and PUMA "G2700570, G27000200" -County and PUMA "G2700590, G27000600" -County and PUMA "G2700610, G27000300" -County and PUMA "G2700630, G27002100" -County and PUMA "G2700650, G27000600" -County and PUMA "G2700670, G27001900" -County and PUMA "G2700690, G27000100" -County and PUMA "G2700710, G27000400" -County and PUMA "G2700730, G27002000" -County and PUMA "G2700750, G27000400" -County and PUMA "G2700770, G27000200" -County and PUMA "G2700790, G27002300" -County and PUMA "G2700810, G27002000" -County and PUMA "G2700830, G27002000" -County and PUMA "G2700850, G27001900" -County and PUMA "G2700870, G27000200" -County and PUMA "G2700890, G27000100" -County and PUMA "G2700910, G27002100" -County and PUMA "G2700930, G27001900" -County and PUMA "G2700950, G27000600" -County and PUMA "G2700970, G27000700" -County and PUMA "G2700990, G27002400" -County and PUMA "G2701010, G27002100" -County and PUMA "G2701030, G27002200" -County and PUMA "G2701050, G27002100" -County and PUMA "G2701070, G27000100" -County and PUMA "G2701090, G27002500" -County and PUMA "G2701110, G27000800" -County and PUMA "G2701130, G27000100" -County and PUMA "G2701150, G27000600" -County and PUMA "G2701170, G27002100" -County and PUMA "G2701190, G27000100" -County and PUMA "G2701210, G27000800" -County and PUMA "G2701230, G27001301" -County and PUMA "G2701230, G27001302" -County and PUMA "G2701230, G27001303" -County and PUMA "G2701230, G27001304" -County and PUMA "G2701250, G27000100" -County and PUMA "G2701270, G27002000" -County and PUMA "G2701290, G27001900" -County and PUMA "G2701310, G27002300" -County and PUMA "G2701330, G27002100" -County and PUMA "G2701350, G27000100" -County and PUMA "G2701370, G27000400" -County and PUMA "G2701370, G27000500" -County and PUMA "G2701390, G27001600" -County and PUMA "G2701390, G27001700" -County and PUMA "G2701410, G27001000" -County and PUMA "G2701430, G27001900" -County and PUMA "G2701450, G27000900" -County and PUMA "G2701470, G27002400" -County and PUMA "G2701490, G27000800" -County and PUMA "G2701510, G27000800" -County and PUMA "G2701530, G27000700" -County and PUMA "G2701550, G27000800" -County and PUMA "G2701570, G27002600" -County and PUMA "G2701590, G27000700" -County and PUMA "G2701610, G27002200" -County and PUMA "G2701630, G27001201" -County and PUMA "G2701630, G27001202" -County and PUMA "G2701650, G27002100" -County and PUMA "G2701670, G27000800" -County and PUMA "G2701690, G27002600" -County and PUMA "G2701710, G27001800" -County and PUMA "G2701730, G27002000" -County and PUMA "G2800010, G28001600" -County and PUMA "G2800030, G28000200" -County and PUMA "G2800050, G28001600" -County and PUMA "G2800070, G28000700" -County and PUMA "G2800090, G28000200" -County and PUMA "G2800110, G28000800" -County and PUMA "G2800130, G28000400" -County and PUMA "G2800150, G28000700" -County and PUMA "G2800170, G28000400" -County and PUMA "G2800190, G28000600" -County and PUMA "G2800210, G28001600" -County and PUMA "G2800230, G28001500" -County and PUMA "G2800250, G28000600" -County and PUMA "G2800270, G28000300" -County and PUMA "G2800290, G28001200" -County and PUMA "G2800310, G28001700" -County and PUMA "G2800330, G28000100" -County and PUMA "G2800350, G28001800" -County and PUMA "G2800370, G28001600" -County and PUMA "G2800390, G28001900" -County and PUMA "G2800410, G28001700" -County and PUMA "G2800430, G28000700" -County and PUMA "G2800450, G28001900" -County and PUMA "G2800470, G28002000" -County and PUMA "G2800490, G28001000" -County and PUMA "G2800490, G28001100" -County and PUMA "G2800490, G28001200" -County and PUMA "G2800510, G28000700" -County and PUMA "G2800530, G28000800" -County and PUMA "G2800550, G28000800" -County and PUMA "G2800570, G28000400" -County and PUMA "G2800590, G28002100" -County and PUMA "G2800610, G28001400" -County and PUMA "G2800630, G28001600" -County and PUMA "G2800650, G28001700" -County and PUMA "G2800670, G28001700" -County and PUMA "G2800690, G28001400" -County and PUMA "G2800710, G28000400" -County and PUMA "G2800730, G28001800" -County and PUMA "G2800750, G28001500" -County and PUMA "G2800770, G28001600" -County and PUMA "G2800790, G28001400" -County and PUMA "G2800810, G28000500" -County and PUMA "G2800830, G28000700" -County and PUMA "G2800850, G28001600" -County and PUMA "G2800870, G28000600" -County and PUMA "G2800890, G28000900" -County and PUMA "G2800890, G28001000" -County and PUMA "G2800910, G28001800" -County and PUMA "G2800930, G28000200" -County and PUMA "G2800950, G28000400" -County and PUMA "G2800970, G28000700" -County and PUMA "G2800990, G28001400" -County and PUMA "G2801010, G28001500" -County and PUMA "G2801030, G28000600" -County and PUMA "G2801050, G28000600" -County and PUMA "G2801070, G28000300" -County and PUMA "G2801090, G28001900" -County and PUMA "G2801110, G28001800" -County and PUMA "G2801130, G28001600" -County and PUMA "G2801150, G28000500" -County and PUMA "G2801170, G28000200" -County and PUMA "G2801190, G28000300" -County and PUMA "G2801210, G28001300" -County and PUMA "G2801230, G28001400" -County and PUMA "G2801250, G28000800" -County and PUMA "G2801270, G28001300" -County and PUMA "G2801290, G28001400" -County and PUMA "G2801310, G28001900" -County and PUMA "G2801330, G28000800" -County and PUMA "G2801350, G28000300" -County and PUMA "G2801370, G28000300" -County and PUMA "G2801390, G28000200" -County and PUMA "G2801410, G28000200" -County and PUMA "G2801430, G28000300" -County and PUMA "G2801450, G28000500" -County and PUMA "G2801470, G28001600" -County and PUMA "G2801490, G28001200" -County and PUMA "G2801510, G28000800" -County and PUMA "G2801530, G28001700" -County and PUMA "G2801550, G28000600" -County and PUMA "G2801570, G28001600" -County and PUMA "G2801590, G28000600" -County and PUMA "G2801610, G28000700" -County and PUMA "G2801630, G28000900" -County and PUMA "G2900010, G29000300" -County and PUMA "G2900030, G29000200" -County and PUMA "G2900050, G29000100" -County and PUMA "G2900070, G29000400" -County and PUMA "G2900090, G29002700" -County and PUMA "G2900110, G29001200" -County and PUMA "G2900130, G29001100" -County and PUMA "G2900150, G29001300" -County and PUMA "G2900170, G29002200" -County and PUMA "G2900190, G29000600" -County and PUMA "G2900210, G29000200" -County and PUMA "G2900230, G29002400" -County and PUMA "G2900250, G29000800" -County and PUMA "G2900270, G29000500" -County and PUMA "G2900290, G29001400" -County and PUMA "G2900310, G29002200" -County and PUMA "G2900330, G29000700" -County and PUMA "G2900350, G29002400" -County and PUMA "G2900370, G29001100" -County and PUMA "G2900390, G29001200" -County and PUMA "G2900410, G29000700" -County and PUMA "G2900430, G29002601" -County and PUMA "G2900450, G29000300" -County and PUMA "G2900470, G29000901" -County and PUMA "G2900470, G29000902" -County and PUMA "G2900470, G29000903" -County and PUMA "G2900490, G29000800" -County and PUMA "G2900510, G29000500" -County and PUMA "G2900530, G29000700" -County and PUMA "G2900550, G29001500" -County and PUMA "G2900570, G29001200" -County and PUMA "G2900590, G29001300" -County and PUMA "G2900610, G29000100" -County and PUMA "G2900630, G29000200" -County and PUMA "G2900650, G29001500" -County and PUMA "G2900670, G29002500" -County and PUMA "G2900690, G29002300" -County and PUMA "G2900710, G29001600" -County and PUMA "G2900730, G29001500" -County and PUMA "G2900750, G29000100" -County and PUMA "G2900770, G29002601" -County and PUMA "G2900770, G29002602" -County and PUMA "G2900770, G29002603" -County and PUMA "G2900790, G29000100" -County and PUMA "G2900810, G29000100" -County and PUMA "G2900830, G29001200" -County and PUMA "G2900850, G29001300" -County and PUMA "G2900870, G29000100" -County and PUMA "G2900890, G29000700" -County and PUMA "G2900910, G29002500" -County and PUMA "G2900930, G29002400" -County and PUMA "G2900950, G29001001" -County and PUMA "G2900950, G29001002" -County and PUMA "G2900950, G29001003" -County and PUMA "G2900950, G29001004" -County and PUMA "G2900950, G29001005" -County and PUMA "G2900970, G29002800" -County and PUMA "G2900990, G29002001" -County and PUMA "G2900990, G29002002" -County and PUMA "G2901010, G29000800" -County and PUMA "G2901030, G29000300" -County and PUMA "G2901050, G29001300" -County and PUMA "G2901070, G29000800" -County and PUMA "G2901090, G29001200" -County and PUMA "G2901110, G29000300" -County and PUMA "G2901130, G29000400" -County and PUMA "G2901150, G29000100" -County and PUMA "G2901170, G29000100" -County and PUMA "G2901190, G29002700" -County and PUMA "G2901210, G29000300" -County and PUMA "G2901230, G29002400" -County and PUMA "G2901250, G29001500" -County and PUMA "G2901270, G29000300" -County and PUMA "G2901290, G29000100" -County and PUMA "G2901310, G29001400" -County and PUMA "G2901330, G29002300" -County and PUMA "G2901350, G29000500" -County and PUMA "G2901370, G29000300" -County and PUMA "G2901390, G29000400" -County and PUMA "G2901410, G29001400" -County and PUMA "G2901430, G29002300" -County and PUMA "G2901450, G29002800" -County and PUMA "G2901470, G29000100" -County and PUMA "G2901490, G29002500" -County and PUMA "G2901510, G29000500" -County and PUMA "G2901530, G29002500" -County and PUMA "G2901550, G29002300" -County and PUMA "G2901570, G29002100" -County and PUMA "G2901590, G29000700" -County and PUMA "G2901610, G29001500" -County and PUMA "G2901630, G29000400" -County and PUMA "G2901650, G29000903" -County and PUMA "G2901670, G29001300" -County and PUMA "G2901690, G29001400" -County and PUMA "G2901710, G29000100" -County and PUMA "G2901730, G29000300" -County and PUMA "G2901750, G29000700" -County and PUMA "G2901770, G29000800" -County and PUMA "G2901790, G29002400" -County and PUMA "G2901810, G29002400" -County and PUMA "G2901830, G29001701" -County and PUMA "G2901830, G29001702" -County and PUMA "G2901830, G29001703" -County and PUMA "G2901850, G29001200" -County and PUMA "G2901860, G29002100" -County and PUMA "G2901870, G29002100" -County and PUMA "G2901890, G29001801" -County and PUMA "G2901890, G29001802" -County and PUMA "G2901890, G29001803" -County and PUMA "G2901890, G29001804" -County and PUMA "G2901890, G29001805" -County and PUMA "G2901890, G29001806" -County and PUMA "G2901890, G29001807" -County and PUMA "G2901890, G29001808" -County and PUMA "G2901950, G29000700" -County and PUMA "G2901970, G29000300" -County and PUMA "G2901990, G29000300" -County and PUMA "G2902010, G29002200" -County and PUMA "G2902030, G29002500" -County and PUMA "G2902050, G29000300" -County and PUMA "G2902070, G29002300" -County and PUMA "G2902090, G29002700" -County and PUMA "G2902110, G29000100" -County and PUMA "G2902130, G29002700" -County and PUMA "G2902150, G29002500" -County and PUMA "G2902170, G29001200" -County and PUMA "G2902190, G29000400" -County and PUMA "G2902210, G29002100" -County and PUMA "G2902230, G29002400" -County and PUMA "G2902250, G29002601" -County and PUMA "G2902270, G29000100" -County and PUMA "G2902290, G29002500" -County and PUMA "G2905100, G29001901" -County and PUMA "G2905100, G29001902" -County and PUMA "G3000010, G30000300" -County and PUMA "G3000030, G30000600" -County and PUMA "G3000050, G30000400" -County and PUMA "G3000070, G30000300" -County and PUMA "G3000090, G30000500" -County and PUMA "G3000110, G30000600" -County and PUMA "G3000130, G30000400" -County and PUMA "G3000150, G30000400" -County and PUMA "G3000170, G30000600" -County and PUMA "G3000190, G30000600" -County and PUMA "G3000210, G30000600" -County and PUMA "G3000230, G30000300" -County and PUMA "G3000250, G30000600" -County and PUMA "G3000270, G30000400" -County and PUMA "G3000290, G30000100" -County and PUMA "G3000310, G30000500" -County and PUMA "G3000330, G30000600" -County and PUMA "G3000350, G30000100" -County and PUMA "G3000370, G30000600" -County and PUMA "G3000390, G30000300" -County and PUMA "G3000410, G30000400" -County and PUMA "G3000430, G30000300" -County and PUMA "G3000450, G30000400" -County and PUMA "G3000470, G30000200" -County and PUMA "G3000490, G30000300" -County and PUMA "G3000510, G30000400" -County and PUMA "G3000530, G30000100" -County and PUMA "G3000550, G30000600" -County and PUMA "G3000570, G30000300" -County and PUMA "G3000590, G30000400" -County and PUMA "G3000610, G30000200" -County and PUMA "G3000630, G30000200" -County and PUMA "G3000650, G30000600" -County and PUMA "G3000670, G30000500" -County and PUMA "G3000690, G30000400" -County and PUMA "G3000710, G30000600" -County and PUMA "G3000730, G30000400" -County and PUMA "G3000750, G30000600" -County and PUMA "G3000770, G30000300" -County and PUMA "G3000790, G30000600" -County and PUMA "G3000810, G30000200" -County and PUMA "G3000830, G30000600" -County and PUMA "G3000850, G30000600" -County and PUMA "G3000870, G30000600" -County and PUMA "G3000890, G30000200" -County and PUMA "G3000910, G30000600" -County and PUMA "G3000930, G30000300" -County and PUMA "G3000950, G30000500" -County and PUMA "G3000970, G30000500" -County and PUMA "G3000990, G30000400" -County and PUMA "G3001010, G30000400" -County and PUMA "G3001030, G30000600" -County and PUMA "G3001050, G30000600" -County and PUMA "G3001070, G30000400" -County and PUMA "G3001090, G30000600" -County and PUMA "G3001110, G30000600" -County and PUMA "G3001110, G30000700" -County and PUMA "G3100010, G31000500" -County and PUMA "G3100030, G31000200" -County and PUMA "G3100050, G31000400" -County and PUMA "G3100070, G31000100" -County and PUMA "G3100090, G31000300" -County and PUMA "G3100110, G31000200" -County and PUMA "G3100130, G31000100" -County and PUMA "G3100150, G31000100" -County and PUMA "G3100170, G31000100" -County and PUMA "G3100190, G31000500" -County and PUMA "G3100210, G31000200" -County and PUMA "G3100230, G31000600" -County and PUMA "G3100250, G31000701" -County and PUMA "G3100270, G31000200" -County and PUMA "G3100290, G31000400" -County and PUMA "G3100310, G31000100" -County and PUMA "G3100330, G31000100" -County and PUMA "G3100350, G31000500" -County and PUMA "G3100370, G31000200" -County and PUMA "G3100390, G31000200" -County and PUMA "G3100410, G31000300" -County and PUMA "G3100430, G31000200" -County and PUMA "G3100450, G31000100" -County and PUMA "G3100470, G31000400" -County and PUMA "G3100490, G31000100" -County and PUMA "G3100510, G31000200" -County and PUMA "G3100530, G31000701" -County and PUMA "G3100550, G31000901" -County and PUMA "G3100550, G31000902" -County and PUMA "G3100550, G31000903" -County and PUMA "G3100550, G31000904" -County and PUMA "G3100570, G31000400" -County and PUMA "G3100590, G31000600" -County and PUMA "G3100610, G31000500" -County and PUMA "G3100630, G31000400" -County and PUMA "G3100650, G31000400" -County and PUMA "G3100670, G31000600" -County and PUMA "G3100690, G31000100" -County and PUMA "G3100710, G31000300" -County and PUMA "G3100730, G31000400" -County and PUMA "G3100750, G31000400" -County and PUMA "G3100770, G31000300" -County and PUMA "G3100790, G31000300" -County and PUMA "G3100810, G31000300" -County and PUMA "G3100830, G31000500" -County and PUMA "G3100850, G31000400" -County and PUMA "G3100870, G31000400" -County and PUMA "G3100890, G31000100" -County and PUMA "G3100910, G31000400" -County and PUMA "G3100930, G31000300" -County and PUMA "G3100950, G31000600" -County and PUMA "G3100970, G31000600" -County and PUMA "G3100990, G31000500" -County and PUMA "G3101010, G31000400" -County and PUMA "G3101030, G31000100" -County and PUMA "G3101050, G31000100" -County and PUMA "G3101070, G31000200" -County and PUMA "G3101090, G31000801" -County and PUMA "G3101090, G31000802" -County and PUMA "G3101110, G31000400" -County and PUMA "G3101130, G31000400" -County and PUMA "G3101150, G31000300" -County and PUMA "G3101170, G31000400" -County and PUMA "G3101190, G31000200" -County and PUMA "G3101210, G31000300" -County and PUMA "G3101230, G31000100" -County and PUMA "G3101250, G31000200" -County and PUMA "G3101270, G31000600" -County and PUMA "G3101290, G31000500" -County and PUMA "G3101310, G31000600" -County and PUMA "G3101330, G31000600" -County and PUMA "G3101350, G31000400" -County and PUMA "G3101370, G31000500" -County and PUMA "G3101390, G31000200" -County and PUMA "G3101410, G31000200" -County and PUMA "G3101430, G31000600" -County and PUMA "G3101450, G31000400" -County and PUMA "G3101470, G31000600" -County and PUMA "G3101490, G31000100" -County and PUMA "G3101510, G31000600" -County and PUMA "G3101530, G31000702" -County and PUMA "G3101550, G31000701" -County and PUMA "G3101570, G31000100" -County and PUMA "G3101590, G31000600" -County and PUMA "G3101610, G31000100" -County and PUMA "G3101630, G31000300" -County and PUMA "G3101650, G31000100" -County and PUMA "G3101670, G31000200" -County and PUMA "G3101690, G31000600" -County and PUMA "G3101710, G31000400" -County and PUMA "G3101730, G31000200" -County and PUMA "G3101750, G31000300" -County and PUMA "G3101770, G31000701" -County and PUMA "G3101790, G31000200" -County and PUMA "G3101810, G31000500" -County and PUMA "G3101830, G31000300" -County and PUMA "G3101850, G31000600" -County and PUMA "G3200010, G32000300" -County and PUMA "G3200030, G32000401" -County and PUMA "G3200030, G32000402" -County and PUMA "G3200030, G32000403" -County and PUMA "G3200030, G32000404" -County and PUMA "G3200030, G32000405" -County and PUMA "G3200030, G32000406" -County and PUMA "G3200030, G32000407" -County and PUMA "G3200030, G32000408" -County and PUMA "G3200030, G32000409" -County and PUMA "G3200030, G32000410" -County and PUMA "G3200030, G32000411" -County and PUMA "G3200030, G32000412" -County and PUMA "G3200030, G32000413" -County and PUMA "G3200050, G32000200" -County and PUMA "G3200070, G32000300" -County and PUMA "G3200090, G32000300" -County and PUMA "G3200110, G32000300" -County and PUMA "G3200130, G32000300" -County and PUMA "G3200150, G32000300" -County and PUMA "G3200170, G32000300" -County and PUMA "G3200190, G32000200" -County and PUMA "G3200210, G32000300" -County and PUMA "G3200230, G32000300" -County and PUMA "G3200270, G32000300" -County and PUMA "G3200290, G32000200" -County and PUMA "G3200310, G32000101" -County and PUMA "G3200310, G32000102" -County and PUMA "G3200310, G32000103" -County and PUMA "G3200330, G32000300" -County and PUMA "G3205100, G32000200" -County and PUMA "G3300010, G33000200" -County and PUMA "G3300030, G33000200" -County and PUMA "G3300030, G33000300" -County and PUMA "G3300050, G33000500" -County and PUMA "G3300070, G33000100" -County and PUMA "G3300090, G33000100" -County and PUMA "G3300110, G33000600" -County and PUMA "G3300110, G33000700" -County and PUMA "G3300110, G33000800" -County and PUMA "G3300110, G33000900" -County and PUMA "G3300130, G33000200" -County and PUMA "G3300130, G33000400" -County and PUMA "G3300130, G33000700" -County and PUMA "G3300150, G33000300" -County and PUMA "G3300150, G33000700" -County and PUMA "G3300150, G33001000" -County and PUMA "G3300170, G33000300" -County and PUMA "G3300190, G33000500" -County and PUMA "G3400010, G34000101" -County and PUMA "G3400010, G34000102" -County and PUMA "G3400010, G34002600" -County and PUMA "G3400030, G34000301" -County and PUMA "G3400030, G34000302" -County and PUMA "G3400030, G34000303" -County and PUMA "G3400030, G34000304" -County and PUMA "G3400030, G34000305" -County and PUMA "G3400030, G34000306" -County and PUMA "G3400030, G34000307" -County and PUMA "G3400030, G34000308" -County and PUMA "G3400050, G34002001" -County and PUMA "G3400050, G34002002" -County and PUMA "G3400050, G34002003" -County and PUMA "G3400070, G34002101" -County and PUMA "G3400070, G34002102" -County and PUMA "G3400070, G34002103" -County and PUMA "G3400070, G34002104" -County and PUMA "G3400090, G34002600" -County and PUMA "G3400110, G34002400" -County and PUMA "G3400110, G34002500" -County and PUMA "G3400130, G34001301" -County and PUMA "G3400130, G34001302" -County and PUMA "G3400130, G34001401" -County and PUMA "G3400130, G34001402" -County and PUMA "G3400130, G34001403" -County and PUMA "G3400130, G34001404" -County and PUMA "G3400150, G34002201" -County and PUMA "G3400150, G34002202" -County and PUMA "G3400170, G34000601" -County and PUMA "G3400170, G34000602" -County and PUMA "G3400170, G34000701" -County and PUMA "G3400170, G34000702" -County and PUMA "G3400170, G34000703" -County and PUMA "G3400190, G34000800" -County and PUMA "G3400210, G34002301" -County and PUMA "G3400210, G34002302" -County and PUMA "G3400210, G34002303" -County and PUMA "G3400230, G34000901" -County and PUMA "G3400230, G34000902" -County and PUMA "G3400230, G34000903" -County and PUMA "G3400230, G34000904" -County and PUMA "G3400230, G34000905" -County and PUMA "G3400230, G34000906" -County and PUMA "G3400230, G34000907" -County and PUMA "G3400250, G34001101" -County and PUMA "G3400250, G34001102" -County and PUMA "G3400250, G34001103" -County and PUMA "G3400250, G34001104" -County and PUMA "G3400250, G34001105" -County and PUMA "G3400250, G34001106" -County and PUMA "G3400270, G34001501" -County and PUMA "G3400270, G34001502" -County and PUMA "G3400270, G34001503" -County and PUMA "G3400270, G34001504" -County and PUMA "G3400290, G34001201" -County and PUMA "G3400290, G34001202" -County and PUMA "G3400290, G34001203" -County and PUMA "G3400290, G34001204" -County and PUMA "G3400290, G34001205" -County and PUMA "G3400310, G34000400" -County and PUMA "G3400310, G34000501" -County and PUMA "G3400310, G34000502" -County and PUMA "G3400310, G34000503" -County and PUMA "G3400330, G34002500" -County and PUMA "G3400350, G34001001" -County and PUMA "G3400350, G34001002" -County and PUMA "G3400350, G34001003" -County and PUMA "G3400370, G34001600" -County and PUMA "G3400390, G34001800" -County and PUMA "G3400390, G34001901" -County and PUMA "G3400390, G34001902" -County and PUMA "G3400390, G34001903" -County and PUMA "G3400390, G34001904" -County and PUMA "G3400410, G34001700" -County and PUMA "G3500010, G35000700" -County and PUMA "G3500010, G35000801" -County and PUMA "G3500010, G35000802" -County and PUMA "G3500010, G35000803" -County and PUMA "G3500010, G35000804" -County and PUMA "G3500010, G35000805" -County and PUMA "G3500010, G35000806" -County and PUMA "G3500030, G35000900" -County and PUMA "G3500050, G35001100" -County and PUMA "G3500060, G35000100" -County and PUMA "G3500070, G35000400" -County and PUMA "G3500090, G35000400" -County and PUMA "G3500110, G35000400" -County and PUMA "G3500130, G35001001" -County and PUMA "G3500130, G35001002" -County and PUMA "G3500150, G35001200" -County and PUMA "G3500170, G35000900" -County and PUMA "G3500190, G35000400" -County and PUMA "G3500210, G35000400" -County and PUMA "G3500230, G35000900" -County and PUMA "G3500250, G35001200" -County and PUMA "G3500270, G35001100" -County and PUMA "G3500280, G35000300" -County and PUMA "G3500290, G35000900" -County and PUMA "G3500310, G35000100" -County and PUMA "G3500330, G35000300" -County and PUMA "G3500350, G35001100" -County and PUMA "G3500370, G35000400" -County and PUMA "G3500390, G35000300" -County and PUMA "G3500410, G35000400" -County and PUMA "G3500430, G35000600" -County and PUMA "G3500450, G35000100" -County and PUMA "G3500450, G35000200" -County and PUMA "G3500470, G35000300" -County and PUMA "G3500490, G35000500" -County and PUMA "G3500510, G35000900" -County and PUMA "G3500530, G35000900" -County and PUMA "G3500550, G35000300" -County and PUMA "G3500570, G35000900" -County and PUMA "G3500590, G35000400" -County and PUMA "G3500610, G35000700" -County and PUMA "G3600010, G36002001" -County and PUMA "G3600010, G36002002" -County and PUMA "G3600030, G36002500" -County and PUMA "G3600050, G36003701" -County and PUMA "G3600050, G36003702" -County and PUMA "G3600050, G36003703" -County and PUMA "G3600050, G36003704" -County and PUMA "G3600050, G36003705" -County and PUMA "G3600050, G36003706" -County and PUMA "G3600050, G36003707" -County and PUMA "G3600050, G36003708" -County and PUMA "G3600050, G36003709" -County and PUMA "G3600050, G36003710" -County and PUMA "G3600070, G36002201" -County and PUMA "G3600070, G36002202" -County and PUMA "G3600070, G36002203" -County and PUMA "G3600090, G36002500" -County and PUMA "G3600110, G36000704" -County and PUMA "G3600130, G36002600" -County and PUMA "G3600150, G36002401" -County and PUMA "G3600150, G36002402" -County and PUMA "G3600170, G36002203" -County and PUMA "G3600190, G36000200" -County and PUMA "G3600210, G36002100" -County and PUMA "G3600230, G36001500" -County and PUMA "G3600250, G36002203" -County and PUMA "G3600270, G36002801" -County and PUMA "G3600270, G36002802" -County and PUMA "G3600290, G36001201" -County and PUMA "G3600290, G36001202" -County and PUMA "G3600290, G36001203" -County and PUMA "G3600290, G36001204" -County and PUMA "G3600290, G36001205" -County and PUMA "G3600290, G36001206" -County and PUMA "G3600290, G36001207" -County and PUMA "G3600310, G36000200" -County and PUMA "G3600330, G36000200" -County and PUMA "G3600350, G36001600" -County and PUMA "G3600370, G36001000" -County and PUMA "G3600390, G36002100" -County and PUMA "G3600410, G36000200" -County and PUMA "G3600430, G36000401" -County and PUMA "G3600430, G36000403" -County and PUMA "G3600450, G36000500" -County and PUMA "G3600470, G36004001" -County and PUMA "G3600470, G36004002" -County and PUMA "G3600470, G36004003" -County and PUMA "G3600470, G36004004" -County and PUMA "G3600470, G36004005" -County and PUMA "G3600470, G36004006" -County and PUMA "G3600470, G36004007" -County and PUMA "G3600470, G36004008" -County and PUMA "G3600470, G36004009" -County and PUMA "G3600470, G36004010" -County and PUMA "G3600470, G36004011" -County and PUMA "G3600470, G36004012" -County and PUMA "G3600470, G36004013" -County and PUMA "G3600470, G36004014" -County and PUMA "G3600470, G36004015" -County and PUMA "G3600470, G36004016" -County and PUMA "G3600470, G36004017" -County and PUMA "G3600470, G36004018" -County and PUMA "G3600490, G36000500" -County and PUMA "G3600510, G36001300" -County and PUMA "G3600530, G36001500" -County and PUMA "G3600550, G36000901" -County and PUMA "G3600550, G36000902" -County and PUMA "G3600550, G36000903" -County and PUMA "G3600550, G36000904" -County and PUMA "G3600550, G36000905" -County and PUMA "G3600550, G36000906" -County and PUMA "G3600570, G36001600" -County and PUMA "G3600590, G36003201" -County and PUMA "G3600590, G36003202" -County and PUMA "G3600590, G36003203" -County and PUMA "G3600590, G36003204" -County and PUMA "G3600590, G36003205" -County and PUMA "G3600590, G36003206" -County and PUMA "G3600590, G36003207" -County and PUMA "G3600590, G36003208" -County and PUMA "G3600590, G36003209" -County and PUMA "G3600590, G36003210" -County and PUMA "G3600590, G36003211" -County and PUMA "G3600590, G36003212" -County and PUMA "G3600610, G36003801" -County and PUMA "G3600610, G36003802" -County and PUMA "G3600610, G36003803" -County and PUMA "G3600610, G36003804" -County and PUMA "G3600610, G36003805" -County and PUMA "G3600610, G36003806" -County and PUMA "G3600610, G36003807" -County and PUMA "G3600610, G36003808" -County and PUMA "G3600610, G36003809" -County and PUMA "G3600610, G36003810" -County and PUMA "G3600630, G36001101" -County and PUMA "G3600630, G36001102" -County and PUMA "G3600650, G36000401" -County and PUMA "G3600650, G36000402" -County and PUMA "G3600650, G36000403" -County and PUMA "G3600670, G36000701" -County and PUMA "G3600670, G36000702" -County and PUMA "G3600670, G36000703" -County and PUMA "G3600670, G36000704" -County and PUMA "G3600690, G36001400" -County and PUMA "G3600710, G36002901" -County and PUMA "G3600710, G36002902" -County and PUMA "G3600710, G36002903" -County and PUMA "G3600730, G36001000" -County and PUMA "G3600750, G36000600" -County and PUMA "G3600770, G36000403" -County and PUMA "G3600790, G36003101" -County and PUMA "G3600810, G36004101" -County and PUMA "G3600810, G36004102" -County and PUMA "G3600810, G36004103" -County and PUMA "G3600810, G36004104" -County and PUMA "G3600810, G36004105" -County and PUMA "G3600810, G36004106" -County and PUMA "G3600810, G36004107" -County and PUMA "G3600810, G36004108" -County and PUMA "G3600810, G36004109" -County and PUMA "G3600810, G36004110" -County and PUMA "G3600810, G36004111" -County and PUMA "G3600810, G36004112" -County and PUMA "G3600810, G36004113" -County and PUMA "G3600810, G36004114" -County and PUMA "G3600830, G36001900" -County and PUMA "G3600850, G36003901" -County and PUMA "G3600850, G36003902" -County and PUMA "G3600850, G36003903" -County and PUMA "G3600870, G36003001" -County and PUMA "G3600870, G36003002" -County and PUMA "G3600870, G36003003" -County and PUMA "G3600890, G36000100" -County and PUMA "G3600910, G36001801" -County and PUMA "G3600910, G36001802" -County and PUMA "G3600930, G36001700" -County and PUMA "G3600950, G36000403" -County and PUMA "G3600970, G36002402" -County and PUMA "G3600990, G36000800" -County and PUMA "G3601010, G36002401" -County and PUMA "G3601010, G36002402" -County and PUMA "G3601030, G36003301" -County and PUMA "G3601030, G36003302" -County and PUMA "G3601030, G36003303" -County and PUMA "G3601030, G36003304" -County and PUMA "G3601030, G36003305" -County and PUMA "G3601030, G36003306" -County and PUMA "G3601030, G36003307" -County and PUMA "G3601030, G36003308" -County and PUMA "G3601030, G36003309" -County and PUMA "G3601030, G36003310" -County and PUMA "G3601030, G36003311" -County and PUMA "G3601030, G36003312" -County and PUMA "G3601030, G36003313" -County and PUMA "G3601050, G36002701" -County and PUMA "G3601070, G36002202" -County and PUMA "G3601090, G36002300" -County and PUMA "G3601110, G36002701" -County and PUMA "G3601110, G36002702" -County and PUMA "G3601130, G36000300" -County and PUMA "G3601150, G36000300" -County and PUMA "G3601170, G36000800" -County and PUMA "G3601190, G36003101" -County and PUMA "G3601190, G36003102" -County and PUMA "G3601190, G36003103" -County and PUMA "G3601190, G36003104" -County and PUMA "G3601190, G36003105" -County and PUMA "G3601190, G36003106" -County and PUMA "G3601190, G36003107" -County and PUMA "G3601210, G36001300" -County and PUMA "G3601230, G36001400" -County and PUMA "G3700010, G37001600" -County and PUMA "G3700030, G37002000" -County and PUMA "G3700050, G37000200" -County and PUMA "G3700070, G37005300" -County and PUMA "G3700090, G37000100" -County and PUMA "G3700110, G37000100" -County and PUMA "G3700130, G37004400" -County and PUMA "G3700150, G37000800" -County and PUMA "G3700170, G37004900" -County and PUMA "G3700190, G37004800" -County and PUMA "G3700210, G37002201" -County and PUMA "G3700210, G37002202" -County and PUMA "G3700230, G37002100" -County and PUMA "G3700250, G37003200" -County and PUMA "G3700250, G37003300" -County and PUMA "G3700270, G37002000" -County and PUMA "G3700290, G37000700" -County and PUMA "G3700310, G37004400" -County and PUMA "G3700330, G37000400" -County and PUMA "G3700350, G37002800" -County and PUMA "G3700370, G37001500" -County and PUMA "G3700390, G37002400" -County and PUMA "G3700410, G37000700" -County and PUMA "G3700430, G37002400" -County and PUMA "G3700450, G37002600" -County and PUMA "G3700450, G37002700" -County and PUMA "G3700470, G37004900" -County and PUMA "G3700490, G37004300" -County and PUMA "G3700510, G37005001" -County and PUMA "G3700510, G37005002" -County and PUMA "G3700510, G37005003" -County and PUMA "G3700530, G37000700" -County and PUMA "G3700550, G37000800" -County and PUMA "G3700570, G37003500" -County and PUMA "G3700590, G37001900" -County and PUMA "G3700610, G37003900" -County and PUMA "G3700630, G37001301" -County and PUMA "G3700630, G37001302" -County and PUMA "G3700650, G37000900" -County and PUMA "G3700670, G37001801" -County and PUMA "G3700670, G37001802" -County and PUMA "G3700670, G37001803" -County and PUMA "G3700690, G37000500" -County and PUMA "G3700710, G37003001" -County and PUMA "G3700710, G37003002" -County and PUMA "G3700730, G37000700" -County and PUMA "G3700750, G37002300" -County and PUMA "G3700770, G37000400" -County and PUMA "G3700790, G37001000" -County and PUMA "G3700810, G37001701" -County and PUMA "G3700810, G37001702" -County and PUMA "G3700810, G37001703" -County and PUMA "G3700810, G37001704" -County and PUMA "G3700830, G37000600" -County and PUMA "G3700850, G37003800" -County and PUMA "G3700870, G37002300" -County and PUMA "G3700890, G37002500" -County and PUMA "G3700910, G37000600" -County and PUMA "G3700930, G37005200" -County and PUMA "G3700950, G37000800" -County and PUMA "G3700970, G37001900" -County and PUMA "G3700970, G37002900" -County and PUMA "G3700990, G37002300" -County and PUMA "G3700990, G37002400" -County and PUMA "G3701010, G37001100" -County and PUMA "G3701030, G37004100" -County and PUMA "G3701050, G37001500" -County and PUMA "G3701070, G37004100" -County and PUMA "G3701090, G37002700" -County and PUMA "G3701110, G37002100" -County and PUMA "G3701130, G37002400" -County and PUMA "G3701150, G37002300" -County and PUMA "G3701170, G37000800" -County and PUMA "G3701190, G37003101" -County and PUMA "G3701190, G37003102" -County and PUMA "G3701190, G37003103" -County and PUMA "G3701190, G37003104" -County and PUMA "G3701190, G37003105" -County and PUMA "G3701190, G37003106" -County and PUMA "G3701190, G37003107" -County and PUMA "G3701190, G37003108" -County and PUMA "G3701210, G37000100" -County and PUMA "G3701230, G37003700" -County and PUMA "G3701250, G37003700" -County and PUMA "G3701270, G37000900" -County and PUMA "G3701290, G37004600" -County and PUMA "G3701290, G37004700" -County and PUMA "G3701310, G37000600" -County and PUMA "G3701330, G37004100" -County and PUMA "G3701330, G37004500" -County and PUMA "G3701350, G37001400" -County and PUMA "G3701370, G37004400" -County and PUMA "G3701390, G37000700" -County and PUMA "G3701410, G37004600" -County and PUMA "G3701430, G37000700" -County and PUMA "G3701450, G37000400" -County and PUMA "G3701470, G37004200" -County and PUMA "G3701490, G37002600" -County and PUMA "G3701510, G37003600" -County and PUMA "G3701530, G37005200" -County and PUMA "G3701550, G37004900" -County and PUMA "G3701550, G37005100" -County and PUMA "G3701570, G37000300" -County and PUMA "G3701590, G37003400" -County and PUMA "G3701610, G37002600" -County and PUMA "G3701630, G37003900" -County and PUMA "G3701650, G37005200" -County and PUMA "G3701670, G37003300" -County and PUMA "G3701690, G37000300" -County and PUMA "G3701710, G37000200" -County and PUMA "G3701730, G37002300" -County and PUMA "G3701750, G37002500" -County and PUMA "G3701770, G37000800" -County and PUMA "G3701790, G37005300" -County and PUMA "G3701790, G37005400" -County and PUMA "G3701810, G37000500" -County and PUMA "G3701830, G37001201" -County and PUMA "G3701830, G37001202" -County and PUMA "G3701830, G37001203" -County and PUMA "G3701830, G37001204" -County and PUMA "G3701830, G37001205" -County and PUMA "G3701830, G37001206" -County and PUMA "G3701830, G37001207" -County and PUMA "G3701830, G37001208" -County and PUMA "G3701850, G37000500" -County and PUMA "G3701850, G37000600" -County and PUMA "G3701870, G37000800" -County and PUMA "G3701890, G37000100" -County and PUMA "G3701910, G37004000" -County and PUMA "G3701930, G37000200" -County and PUMA "G3701950, G37001000" -County and PUMA "G3701970, G37001900" -County and PUMA "G3701990, G37000100" -County and PUMA "G3800010, G38000100" -County and PUMA "G3800030, G38000200" -County and PUMA "G3800050, G38000200" -County and PUMA "G3800070, G38000100" -County and PUMA "G3800090, G38000200" -County and PUMA "G3800110, G38000100" -County and PUMA "G3800130, G38000100" -County and PUMA "G3800150, G38000300" -County and PUMA "G3800170, G38000500" -County and PUMA "G3800190, G38000400" -County and PUMA "G3800210, G38000200" -County and PUMA "G3800230, G38000100" -County and PUMA "G3800250, G38000100" -County and PUMA "G3800270, G38000200" -County and PUMA "G3800290, G38000300" -County and PUMA "G3800310, G38000200" -County and PUMA "G3800330, G38000100" -County and PUMA "G3800350, G38000400" -County and PUMA "G3800370, G38000100" -County and PUMA "G3800390, G38000400" -County and PUMA "G3800410, G38000100" -County and PUMA "G3800430, G38000300" -County and PUMA "G3800450, G38000200" -County and PUMA "G3800470, G38000300" -County and PUMA "G3800490, G38000100" -County and PUMA "G3800510, G38000300" -County and PUMA "G3800530, G38000100" -County and PUMA "G3800550, G38000100" -County and PUMA "G3800570, G38000100" -County and PUMA "G3800590, G38000300" -County and PUMA "G3800610, G38000100" -County and PUMA "G3800630, G38000200" -County and PUMA "G3800650, G38000100" -County and PUMA "G3800670, G38000400" -County and PUMA "G3800690, G38000200" -County and PUMA "G3800710, G38000200" -County and PUMA "G3800730, G38000200" -County and PUMA "G3800750, G38000100" -County and PUMA "G3800770, G38000200" -County and PUMA "G3800790, G38000200" -County and PUMA "G3800810, G38000200" -County and PUMA "G3800830, G38000200" -County and PUMA "G3800850, G38000100" -County and PUMA "G3800870, G38000100" -County and PUMA "G3800890, G38000100" -County and PUMA "G3800910, G38000400" -County and PUMA "G3800930, G38000200" -County and PUMA "G3800950, G38000400" -County and PUMA "G3800970, G38000400" -County and PUMA "G3800990, G38000400" -County and PUMA "G3801010, G38000100" -County and PUMA "G3801030, G38000200" -County and PUMA "G3801050, G38000100" -County and PUMA "G3900010, G39005200" -County and PUMA "G3900030, G39002500" -County and PUMA "G3900050, G39002100" -County and PUMA "G3900070, G39001300" -County and PUMA "G3900090, G39005000" -County and PUMA "G3900110, G39002600" -County and PUMA "G3900130, G39003500" -County and PUMA "G3900150, G39005700" -County and PUMA "G3900170, G39005401" -County and PUMA "G3900170, G39005402" -County and PUMA "G3900170, G39005403" -County and PUMA "G3900190, G39003300" -County and PUMA "G3900210, G39002700" -County and PUMA "G3900230, G39004300" -County and PUMA "G3900250, G39005600" -County and PUMA "G3900250, G39005700" -County and PUMA "G3900270, G39005200" -County and PUMA "G3900290, G39003400" -County and PUMA "G3900310, G39002900" -County and PUMA "G3900330, G39002300" -County and PUMA "G3900350, G39000901" -County and PUMA "G3900350, G39000902" -County and PUMA "G3900350, G39000903" -County and PUMA "G3900350, G39000904" -County and PUMA "G3900350, G39000905" -County and PUMA "G3900350, G39000906" -County and PUMA "G3900350, G39000907" -County and PUMA "G3900350, G39000908" -County and PUMA "G3900350, G39000909" -County and PUMA "G3900350, G39000910" -County and PUMA "G3900370, G39004500" -County and PUMA "G3900390, G39000100" -County and PUMA "G3900410, G39004000" -County and PUMA "G3900430, G39000700" -County and PUMA "G3900450, G39003900" -County and PUMA "G3900470, G39004800" -County and PUMA "G3900490, G39004101" -County and PUMA "G3900490, G39004102" -County and PUMA "G3900490, G39004103" -County and PUMA "G3900490, G39004104" -County and PUMA "G3900490, G39004105" -County and PUMA "G3900490, G39004106" -County and PUMA "G3900490, G39004107" -County and PUMA "G3900490, G39004108" -County and PUMA "G3900490, G39004109" -County and PUMA "G3900490, G39004110" -County and PUMA "G3900490, G39004111" -County and PUMA "G3900510, G39000200" -County and PUMA "G3900530, G39005000" -County and PUMA "G3900550, G39001200" -County and PUMA "G3900570, G39004700" -County and PUMA "G3900590, G39002900" -County and PUMA "G3900610, G39005501" -County and PUMA "G3900610, G39005502" -County and PUMA "G3900610, G39005503" -County and PUMA "G3900610, G39005504" -County and PUMA "G3900610, G39005505" -County and PUMA "G3900610, G39005506" -County and PUMA "G3900610, G39005507" -County and PUMA "G3900630, G39002400" -County and PUMA "G3900650, G39002700" -County and PUMA "G3900670, G39003000" -County and PUMA "G3900690, G39000100" -County and PUMA "G3900710, G39005200" -County and PUMA "G3900730, G39004900" -County and PUMA "G3900750, G39002900" -County and PUMA "G3900770, G39002100" -County and PUMA "G3900790, G39004900" -County and PUMA "G3900810, G39003500" -County and PUMA "G3900830, G39002800" -County and PUMA "G3900850, G39001000" -County and PUMA "G3900850, G39001100" -County and PUMA "G3900850, G39001200" -County and PUMA "G3900870, G39005100" -County and PUMA "G3900890, G39003800" -County and PUMA "G3900910, G39002700" -County and PUMA "G3900930, G39000801" -County and PUMA "G3900930, G39000802" -County and PUMA "G3900950, G39000200" -County and PUMA "G3900950, G39000300" -County and PUMA "G3900950, G39000400" -County and PUMA "G3900950, G39000500" -County and PUMA "G3900950, G39000600" -County and PUMA "G3900970, G39004200" -County and PUMA "G3900990, G39001400" -County and PUMA "G3900990, G39001500" -County and PUMA "G3901010, G39002800" -County and PUMA "G3901030, G39001900" -County and PUMA "G3901050, G39005000" -County and PUMA "G3901070, G39002600" -County and PUMA "G3901090, G39004400" -County and PUMA "G3901110, G39003600" -County and PUMA "G3901130, G39004601" -County and PUMA "G3901130, G39004602" -County and PUMA "G3901130, G39004603" -County and PUMA "G3901130, G39004604" -County and PUMA "G3901150, G39003600" -County and PUMA "G3901170, G39002800" -County and PUMA "G3901190, G39003700" -County and PUMA "G3901210, G39003600" -County and PUMA "G3901230, G39000600" -County and PUMA "G3901250, G39000100" -County and PUMA "G3901270, G39003700" -County and PUMA "G3901290, G39004200" -County and PUMA "G3901310, G39004900" -County and PUMA "G3901330, G39001700" -County and PUMA "G3901350, G39004500" -County and PUMA "G3901370, G39002400" -County and PUMA "G3901390, G39002200" -County and PUMA "G3901410, G39004800" -County and PUMA "G3901430, G39000700" -County and PUMA "G3901450, G39005100" -County and PUMA "G3901470, G39002300" -County and PUMA "G3901490, G39004500" -County and PUMA "G3901510, G39003100" -County and PUMA "G3901510, G39003200" -County and PUMA "G3901510, G39003300" -County and PUMA "G3901530, G39001801" -County and PUMA "G3901530, G39001802" -County and PUMA "G3901530, G39001803" -County and PUMA "G3901530, G39001804" -County and PUMA "G3901530, G39001805" -County and PUMA "G3901550, G39001400" -County and PUMA "G3901550, G39001600" -County and PUMA "G3901570, G39003000" -County and PUMA "G3901590, G39004200" -County and PUMA "G3901610, G39002600" -County and PUMA "G3901630, G39004900" -County and PUMA "G3901650, G39005301" -County and PUMA "G3901650, G39005302" -County and PUMA "G3901670, G39003600" -County and PUMA "G3901690, G39002000" -County and PUMA "G3901710, G39000100" -County and PUMA "G3901730, G39000200" -County and PUMA "G3901730, G39000300" -County and PUMA "G3901730, G39000600" -County and PUMA "G3901750, G39002300" -County and PUMA "G4000010, G40000200" -County and PUMA "G4000030, G40000500" -County and PUMA "G4000050, G40000702" -County and PUMA "G4000070, G40000500" -County and PUMA "G4000090, G40000400" -County and PUMA "G4000110, G40000500" -County and PUMA "G4000130, G40000702" -County and PUMA "G4000150, G40000602" -County and PUMA "G4000170, G40000800" -County and PUMA "G4000190, G40000701" -County and PUMA "G4000210, G40000200" -County and PUMA "G4000230, G40000300" -County and PUMA "G4000250, G40000500" -County and PUMA "G4000270, G40000900" -County and PUMA "G4000290, G40000702" -County and PUMA "G4000310, G40000601" -County and PUMA "G4000310, G40000602" -County and PUMA "G4000330, G40000602" -County and PUMA "G4000350, G40000100" -County and PUMA "G4000370, G40001204" -County and PUMA "G4000370, G40001501" -County and PUMA "G4000370, G40001601" -County and PUMA "G4000390, G40000400" -County and PUMA "G4000410, G40000100" -County and PUMA "G4000430, G40000500" -County and PUMA "G4000450, G40000500" -County and PUMA "G4000470, G40001400" -County and PUMA "G4000490, G40000701" -County and PUMA "G4000510, G40001101" -County and PUMA "G4000530, G40000500" -County and PUMA "G4000550, G40000400" -County and PUMA "G4000570, G40000400" -County and PUMA "G4000590, G40000500" -County and PUMA "G4000610, G40000300" -County and PUMA "G4000630, G40001501" -County and PUMA "G4000650, G40000400" -County and PUMA "G4000670, G40000602" -County and PUMA "G4000690, G40000702" -County and PUMA "G4000710, G40001400" -County and PUMA "G4000730, G40000500" -County and PUMA "G4000750, G40000400" -County and PUMA "G4000770, G40000300" -County and PUMA "G4000790, G40000300" -County and PUMA "G4000810, G40001102" -County and PUMA "G4000830, G40001102" -County and PUMA "G4000850, G40000701" -County and PUMA "G4000870, G40001101" -County and PUMA "G4000890, G40000300" -County and PUMA "G4000910, G40001302" -County and PUMA "G4000930, G40000500" -County and PUMA "G4000950, G40000702" -County and PUMA "G4000970, G40000100" -County and PUMA "G4000990, G40000701" -County and PUMA "G4001010, G40001302" -County and PUMA "G4001030, G40001400" -County and PUMA "G4001050, G40000100" -County and PUMA "G4001070, G40001501" -County and PUMA "G4001090, G40001001" -County and PUMA "G4001090, G40001002" -County and PUMA "G4001090, G40001003" -County and PUMA "G4001090, G40001004" -County and PUMA "G4001090, G40001005" -County and PUMA "G4001090, G40001006" -County and PUMA "G4001110, G40001302" -County and PUMA "G4001130, G40001204" -County and PUMA "G4001130, G40001601" -County and PUMA "G4001150, G40000100" -County and PUMA "G4001170, G40001601" -County and PUMA "G4001190, G40001501" -County and PUMA "G4001210, G40000300" -County and PUMA "G4001230, G40000701" -County and PUMA "G4001230, G40000702" -County and PUMA "G4001250, G40001101" -County and PUMA "G4001250, G40001102" -County and PUMA "G4001270, G40000300" -County and PUMA "G4001290, G40000400" -County and PUMA "G4001310, G40000100" -County and PUMA "G4001310, G40001301" -County and PUMA "G4001330, G40001501" -County and PUMA "G4001350, G40000200" -County and PUMA "G4001370, G40000602" -County and PUMA "G4001390, G40000500" -County and PUMA "G4001410, G40000602" -County and PUMA "G4001430, G40001201" -County and PUMA "G4001430, G40001202" -County and PUMA "G4001430, G40001203" -County and PUMA "G4001430, G40001204" -County and PUMA "G4001450, G40001301" -County and PUMA "G4001450, G40001302" -County and PUMA "G4001470, G40001601" -County and PUMA "G4001490, G40000400" -County and PUMA "G4001510, G40000500" -County and PUMA "G4001530, G40000500" -County and PUMA "G4100010, G41000100" -County and PUMA "G4100030, G41000600" -County and PUMA "G4100050, G41001317" -County and PUMA "G4100050, G41001318" -County and PUMA "G4100050, G41001319" -County and PUMA "G4100070, G41000500" -County and PUMA "G4100090, G41000500" -County and PUMA "G4100110, G41000800" -County and PUMA "G4100130, G41000200" -County and PUMA "G4100150, G41000800" -County and PUMA "G4100170, G41000400" -County and PUMA "G4100190, G41001000" -County and PUMA "G4100210, G41000200" -County and PUMA "G4100230, G41000200" -County and PUMA "G4100250, G41000300" -County and PUMA "G4100270, G41000200" -County and PUMA "G4100290, G41000901" -County and PUMA "G4100290, G41000902" -County and PUMA "G4100310, G41000200" -County and PUMA "G4100330, G41000800" -County and PUMA "G4100350, G41000300" -County and PUMA "G4100370, G41000300" -County and PUMA "G4100390, G41000703" -County and PUMA "G4100390, G41000704" -County and PUMA "G4100390, G41000705" -County and PUMA "G4100410, G41000500" -County and PUMA "G4100430, G41000600" -County and PUMA "G4100450, G41000300" -County and PUMA "G4100470, G41001103" -County and PUMA "G4100470, G41001104" -County and PUMA "G4100470, G41001105" -County and PUMA "G4100490, G41000200" -County and PUMA "G4100510, G41001301" -County and PUMA "G4100510, G41001302" -County and PUMA "G4100510, G41001303" -County and PUMA "G4100510, G41001305" -County and PUMA "G4100510, G41001314" -County and PUMA "G4100510, G41001316" -County and PUMA "G4100530, G41001200" -County and PUMA "G4100550, G41000200" -County and PUMA "G4100570, G41000500" -County and PUMA "G4100590, G41000100" -County and PUMA "G4100610, G41000100" -County and PUMA "G4100630, G41000100" -County and PUMA "G4100650, G41000200" -County and PUMA "G4100670, G41001320" -County and PUMA "G4100670, G41001321" -County and PUMA "G4100670, G41001322" -County and PUMA "G4100670, G41001323" -County and PUMA "G4100670, G41001324" -County and PUMA "G4100690, G41000200" -County and PUMA "G4100710, G41001200" -County and PUMA "G4200010, G42003701" -County and PUMA "G4200030, G42001701" -County and PUMA "G4200030, G42001702" -County and PUMA "G4200030, G42001801" -County and PUMA "G4200030, G42001802" -County and PUMA "G4200030, G42001803" -County and PUMA "G4200030, G42001804" -County and PUMA "G4200030, G42001805" -County and PUMA "G4200030, G42001806" -County and PUMA "G4200030, G42001807" -County and PUMA "G4200050, G42001900" -County and PUMA "G4200070, G42001501" -County and PUMA "G4200070, G42001502" -County and PUMA "G4200090, G42003800" -County and PUMA "G4200110, G42002701" -County and PUMA "G4200110, G42002702" -County and PUMA "G4200110, G42002703" -County and PUMA "G4200130, G42002200" -County and PUMA "G4200150, G42000400" -County and PUMA "G4200170, G42003001" -County and PUMA "G4200170, G42003002" -County and PUMA "G4200170, G42003003" -County and PUMA "G4200170, G42003004" -County and PUMA "G4200190, G42001600" -County and PUMA "G4200210, G42002100" -County and PUMA "G4200230, G42000300" -County and PUMA "G4200250, G42002801" -County and PUMA "G4200270, G42001200" -County and PUMA "G4200290, G42003401" -County and PUMA "G4200290, G42003402" -County and PUMA "G4200290, G42003403" -County and PUMA "G4200290, G42003404" -County and PUMA "G4200310, G42001300" -County and PUMA "G4200330, G42000300" -County and PUMA "G4200350, G42000900" -County and PUMA "G4200370, G42000803" -County and PUMA "G4200390, G42000200" -County and PUMA "G4200410, G42002301" -County and PUMA "G4200410, G42002302" -County and PUMA "G4200430, G42002401" -County and PUMA "G4200430, G42002402" -County and PUMA "G4200450, G42003301" -County and PUMA "G4200450, G42003302" -County and PUMA "G4200450, G42003303" -County and PUMA "G4200450, G42003304" -County and PUMA "G4200470, G42000300" -County and PUMA "G4200490, G42000101" -County and PUMA "G4200490, G42000102" -County and PUMA "G4200510, G42003900" -County and PUMA "G4200530, G42001300" -County and PUMA "G4200550, G42003701" -County and PUMA "G4200550, G42003702" -County and PUMA "G4200570, G42003800" -County and PUMA "G4200590, G42004002" -County and PUMA "G4200610, G42002200" -County and PUMA "G4200630, G42001900" -County and PUMA "G4200650, G42001300" -County and PUMA "G4200670, G42001100" -County and PUMA "G4200690, G42000701" -County and PUMA "G4200690, G42000702" -County and PUMA "G4200710, G42003501" -County and PUMA "G4200710, G42003502" -County and PUMA "G4200710, G42003503" -County and PUMA "G4200710, G42003504" -County and PUMA "G4200730, G42001501" -County and PUMA "G4200750, G42002500" -County and PUMA "G4200770, G42002801" -County and PUMA "G4200770, G42002802" -County and PUMA "G4200770, G42002803" -County and PUMA "G4200770, G42002901" -County and PUMA "G4200790, G42000801" -County and PUMA "G4200790, G42000802" -County and PUMA "G4200790, G42000803" -County and PUMA "G4200810, G42000900" -County and PUMA "G4200830, G42000300" -County and PUMA "G4200850, G42001400" -County and PUMA "G4200870, G42001100" -County and PUMA "G4200890, G42000600" -County and PUMA "G4200910, G42003101" -County and PUMA "G4200910, G42003102" -County and PUMA "G4200910, G42003103" -County and PUMA "G4200910, G42003104" -County and PUMA "G4200910, G42003105" -County and PUMA "G4200910, G42003106" -County and PUMA "G4200930, G42001000" -County and PUMA "G4200950, G42002901" -County and PUMA "G4200950, G42002902" -County and PUMA "G4200970, G42001000" -County and PUMA "G4200990, G42002301" -County and PUMA "G4201010, G42003201" -County and PUMA "G4201010, G42003202" -County and PUMA "G4201010, G42003203" -County and PUMA "G4201010, G42003204" -County and PUMA "G4201010, G42003205" -County and PUMA "G4201010, G42003206" -County and PUMA "G4201010, G42003207" -County and PUMA "G4201010, G42003208" -County and PUMA "G4201010, G42003209" -County and PUMA "G4201010, G42003210" -County and PUMA "G4201010, G42003211" -County and PUMA "G4201030, G42000500" -County and PUMA "G4201050, G42000300" -County and PUMA "G4201070, G42002600" -County and PUMA "G4201090, G42001100" -County and PUMA "G4201110, G42003800" -County and PUMA "G4201130, G42000400" -County and PUMA "G4201150, G42000500" -County and PUMA "G4201170, G42000400" -County and PUMA "G4201190, G42001100" -County and PUMA "G4201210, G42001300" -County and PUMA "G4201230, G42000200" -County and PUMA "G4201250, G42004001" -County and PUMA "G4201250, G42004002" -County and PUMA "G4201270, G42000500" -County and PUMA "G4201290, G42002001" -County and PUMA "G4201290, G42002002" -County and PUMA "G4201290, G42002003" -County and PUMA "G4201310, G42000702" -County and PUMA "G4201330, G42003601" -County and PUMA "G4201330, G42003602" -County and PUMA "G4201330, G42003603" -County and PUMA "G4400010, G44000300" -County and PUMA "G4400030, G44000201" -County and PUMA "G4400050, G44000300" -County and PUMA "G4400070, G44000101" -County and PUMA "G4400070, G44000102" -County and PUMA "G4400070, G44000103" -County and PUMA "G4400070, G44000104" -County and PUMA "G4400090, G44000400" -County and PUMA "G4500010, G45001600" -County and PUMA "G4500030, G45001500" -County and PUMA "G4500050, G45001300" -County and PUMA "G4500070, G45000200" -County and PUMA "G4500090, G45001300" -County and PUMA "G4500110, G45001300" -County and PUMA "G4500130, G45001400" -County and PUMA "G4500150, G45001201" -County and PUMA "G4500150, G45001202" -County and PUMA "G4500150, G45001203" -County and PUMA "G4500150, G45001204" -County and PUMA "G4500170, G45000605" -County and PUMA "G4500190, G45001201" -County and PUMA "G4500190, G45001202" -County and PUMA "G4500190, G45001203" -County and PUMA "G4500190, G45001204" -County and PUMA "G4500210, G45000400" -County and PUMA "G4500230, G45000400" -County and PUMA "G4500250, G45000700" -County and PUMA "G4500270, G45000800" -County and PUMA "G4500290, G45001300" -County and PUMA "G4500310, G45000900" -County and PUMA "G4500330, G45001000" -County and PUMA "G4500350, G45001201" -County and PUMA "G4500350, G45001204" -County and PUMA "G4500370, G45001500" -County and PUMA "G4500390, G45000603" -County and PUMA "G4500410, G45000900" -County and PUMA "G4500430, G45001000" -County and PUMA "G4500450, G45000102" -County and PUMA "G4500450, G45000103" -County and PUMA "G4500450, G45000104" -County and PUMA "G4500450, G45000105" -County and PUMA "G4500470, G45001600" -County and PUMA "G4500490, G45001300" -County and PUMA "G4500510, G45001101" -County and PUMA "G4500510, G45001102" -County and PUMA "G4500530, G45001400" -County and PUMA "G4500550, G45000605" -County and PUMA "G4500570, G45000700" -County and PUMA "G4500590, G45000105" -County and PUMA "G4500610, G45000800" -County and PUMA "G4500630, G45000601" -County and PUMA "G4500630, G45000602" -County and PUMA "G4500650, G45001600" -County and PUMA "G4500670, G45001000" -County and PUMA "G4500690, G45000700" -County and PUMA "G4500710, G45000400" -County and PUMA "G4500730, G45000101" -County and PUMA "G4500750, G45001300" -County and PUMA "G4500770, G45000101" -County and PUMA "G4500790, G45000603" -County and PUMA "G4500790, G45000604" -County and PUMA "G4500790, G45000605" -County and PUMA "G4500810, G45000601" -County and PUMA "G4500830, G45000301" -County and PUMA "G4500830, G45000302" -County and PUMA "G4500850, G45000800" -County and PUMA "G4500870, G45000400" -County and PUMA "G4500890, G45000800" -County and PUMA "G4500910, G45000501" -County and PUMA "G4500910, G45000502" -County and PUMA "G4600030, G46000400" -County and PUMA "G4600050, G46000400" -County and PUMA "G4600070, G46000200" -County and PUMA "G4600090, G46000400" -County and PUMA "G4600110, G46000400" -County and PUMA "G4600130, G46000300" -County and PUMA "G4600150, G46000400" -County and PUMA "G4600170, G46000200" -County and PUMA "G4600190, G46000100" -County and PUMA "G4600210, G46000300" -County and PUMA "G4600230, G46000200" -County and PUMA "G4600250, G46000300" -County and PUMA "G4600270, G46000500" -County and PUMA "G4600290, G46000300" -County and PUMA "G4600310, G46000200" -County and PUMA "G4600330, G46000100" -County and PUMA "G4600350, G46000400" -County and PUMA "G4600370, G46000300" -County and PUMA "G4600390, G46000300" -County and PUMA "G4600410, G46000200" -County and PUMA "G4600430, G46000400" -County and PUMA "G4600450, G46000300" -County and PUMA "G4600470, G46000200" -County and PUMA "G4600490, G46000300" -County and PUMA "G4600510, G46000300" -County and PUMA "G4600530, G46000200" -County and PUMA "G4600550, G46000200" -County and PUMA "G4600570, G46000300" -County and PUMA "G4600590, G46000400" -County and PUMA "G4600610, G46000400" -County and PUMA "G4600630, G46000100" -County and PUMA "G4600650, G46000200" -County and PUMA "G4600670, G46000400" -County and PUMA "G4600690, G46000200" -County and PUMA "G4600710, G46000200" -County and PUMA "G4600730, G46000400" -County and PUMA "G4600750, G46000200" -County and PUMA "G4600770, G46000400" -County and PUMA "G4600790, G46000400" -County and PUMA "G4600810, G46000100" -County and PUMA "G4600830, G46000500" -County and PUMA "G4600830, G46000600" -County and PUMA "G4600850, G46000200" -County and PUMA "G4600870, G46000500" -County and PUMA "G4600890, G46000300" -County and PUMA "G4600910, G46000300" -County and PUMA "G4600930, G46000100" -County and PUMA "G4600950, G46000200" -County and PUMA "G4600970, G46000400" -County and PUMA "G4600990, G46000500" -County and PUMA "G4600990, G46000600" -County and PUMA "G4601010, G46000400" -County and PUMA "G4601020, G46000200" -County and PUMA "G4601030, G46000100" -County and PUMA "G4601050, G46000100" -County and PUMA "G4601070, G46000300" -County and PUMA "G4601090, G46000300" -County and PUMA "G4601110, G46000400" -County and PUMA "G4601150, G46000300" -County and PUMA "G4601170, G46000200" -County and PUMA "G4601190, G46000200" -County and PUMA "G4601210, G46000200" -County and PUMA "G4601230, G46000200" -County and PUMA "G4601250, G46000500" -County and PUMA "G4601270, G46000500" -County and PUMA "G4601290, G46000300" -County and PUMA "G4601350, G46000500" -County and PUMA "G4601370, G46000200" -County and PUMA "G4700010, G47001601" -County and PUMA "G4700030, G47002700" -County and PUMA "G4700050, G47000200" -County and PUMA "G4700070, G47002100" -County and PUMA "G4700090, G47001700" -County and PUMA "G4700110, G47001900" -County and PUMA "G4700130, G47000900" -County and PUMA "G4700150, G47000600" -County and PUMA "G4700170, G47000200" -County and PUMA "G4700190, G47001200" -County and PUMA "G4700210, G47000400" -County and PUMA "G4700230, G47003000" -County and PUMA "G4700250, G47000900" -County and PUMA "G4700270, G47000700" -County and PUMA "G4700290, G47001400" -County and PUMA "G4700310, G47002200" -County and PUMA "G4700330, G47000100" -County and PUMA "G4700350, G47000800" -County and PUMA "G4700370, G47002501" -County and PUMA "G4700370, G47002502" -County and PUMA "G4700370, G47002503" -County and PUMA "G4700370, G47002504" -County and PUMA "G4700370, G47002505" -County and PUMA "G4700390, G47002900" -County and PUMA "G4700410, G47000600" -County and PUMA "G4700430, G47000400" -County and PUMA "G4700450, G47000100" -County and PUMA "G4700470, G47003100" -County and PUMA "G4700490, G47000800" -County and PUMA "G4700510, G47002200" -County and PUMA "G4700530, G47000100" -County and PUMA "G4700550, G47002800" -County and PUMA "G4700570, G47001400" -County and PUMA "G4700590, G47001200" -County and PUMA "G4700610, G47002100" -County and PUMA "G4700630, G47001400" -County and PUMA "G4700650, G47002001" -County and PUMA "G4700650, G47002002" -County and PUMA "G4700650, G47002003" -County and PUMA "G4700670, G47000900" -County and PUMA "G4700690, G47002900" -County and PUMA "G4700710, G47002900" -County and PUMA "G4700730, G47001000" -County and PUMA "G4700750, G47002900" -County and PUMA "G4700770, G47002900" -County and PUMA "G4700790, G47000200" -County and PUMA "G4700810, G47000400" -County and PUMA "G4700830, G47000200" -County and PUMA "G4700850, G47000200" -County and PUMA "G4700870, G47000700" -County and PUMA "G4700890, G47001500" -County and PUMA "G4700910, G47001200" -County and PUMA "G4700930, G47001601" -County and PUMA "G4700930, G47001602" -County and PUMA "G4700930, G47001603" -County and PUMA "G4700930, G47001604" -County and PUMA "G4700950, G47000100" -County and PUMA "G4700970, G47003100" -County and PUMA "G4700990, G47002800" -County and PUMA "G4701010, G47002800" -County and PUMA "G4701030, G47002200" -County and PUMA "G4701050, G47001800" -County and PUMA "G4701070, G47001900" -County and PUMA "G4701090, G47002900" -County and PUMA "G4701110, G47000600" -County and PUMA "G4701130, G47003000" -County and PUMA "G4701150, G47002100" -County and PUMA "G4701170, G47002700" -County and PUMA "G4701190, G47002700" -County and PUMA "G4701210, G47002100" -County and PUMA "G4701230, G47001800" -County and PUMA "G4701250, G47000300" -County and PUMA "G4701270, G47002200" -County and PUMA "G4701290, G47000900" -County and PUMA "G4701310, G47000100" -County and PUMA "G4701330, G47000700" -County and PUMA "G4701350, G47002800" -County and PUMA "G4701370, G47000700" -County and PUMA "G4701390, G47001900" -County and PUMA "G4701410, G47000700" -County and PUMA "G4701430, G47002100" -County and PUMA "G4701450, G47001800" -County and PUMA "G4701470, G47000400" -County and PUMA "G4701490, G47002401" -County and PUMA "G4701490, G47002402" -County and PUMA "G4701510, G47000900" -County and PUMA "G4701530, G47002100" -County and PUMA "G4701550, G47001500" -County and PUMA "G4701570, G47003201" -County and PUMA "G4701570, G47003202" -County and PUMA "G4701570, G47003203" -County and PUMA "G4701570, G47003204" -County and PUMA "G4701570, G47003205" -County and PUMA "G4701570, G47003206" -County and PUMA "G4701570, G47003207" -County and PUMA "G4701570, G47003208" -County and PUMA "G4701590, G47000600" -County and PUMA "G4701610, G47000300" -County and PUMA "G4701630, G47001000" -County and PUMA "G4701630, G47001100" -County and PUMA "G4701650, G47000500" -County and PUMA "G4701670, G47003100" -County and PUMA "G4701690, G47000600" -County and PUMA "G4701710, G47001200" -County and PUMA "G4701730, G47001601" -County and PUMA "G4701750, G47000800" -County and PUMA "G4701770, G47000600" -County and PUMA "G4701790, G47001300" -County and PUMA "G4701810, G47002800" -County and PUMA "G4701830, G47000200" -County and PUMA "G4701850, G47000800" -County and PUMA "G4701870, G47002600" -County and PUMA "G4701890, G47002300" -County and PUMA "G4800010, G48001800" -County and PUMA "G4800030, G48003200" -County and PUMA "G4800050, G48004000" -County and PUMA "G4800070, G48006500" -County and PUMA "G4800090, G48000600" -County and PUMA "G4800110, G48000100" -County and PUMA "G4800130, G48006100" -County and PUMA "G4800150, G48005000" -County and PUMA "G4800170, G48000400" -County and PUMA "G4800190, G48006100" -County and PUMA "G4800210, G48005100" -County and PUMA "G4800230, G48000600" -County and PUMA "G4800250, G48006500" -County and PUMA "G4800270, G48003501" -County and PUMA "G4800270, G48003502" -County and PUMA "G4800290, G48005901" -County and PUMA "G4800290, G48005902" -County and PUMA "G4800290, G48005903" -County and PUMA "G4800290, G48005904" -County and PUMA "G4800290, G48005905" -County and PUMA "G4800290, G48005906" -County and PUMA "G4800290, G48005907" -County and PUMA "G4800290, G48005908" -County and PUMA "G4800290, G48005909" -County and PUMA "G4800290, G48005910" -County and PUMA "G4800290, G48005911" -County and PUMA "G4800290, G48005912" -County and PUMA "G4800290, G48005913" -County and PUMA "G4800290, G48005914" -County and PUMA "G4800290, G48005915" -County and PUMA "G4800290, G48005916" -County and PUMA "G4800310, G48006000" -County and PUMA "G4800330, G48002800" -County and PUMA "G4800350, G48003700" -County and PUMA "G4800370, G48001100" -County and PUMA "G4800390, G48004801" -County and PUMA "G4800390, G48004802" -County and PUMA "G4800390, G48004803" -County and PUMA "G4800410, G48003602" -County and PUMA "G4800430, G48003200" -County and PUMA "G4800450, G48000100" -County and PUMA "G4800470, G48006900" -County and PUMA "G4800490, G48002600" -County and PUMA "G4800510, G48003601" -County and PUMA "G4800530, G48003400" -County and PUMA "G4800550, G48005100" -County and PUMA "G4800570, G48005600" -County and PUMA "G4800590, G48002600" -County and PUMA "G4800610, G48006701" -County and PUMA "G4800610, G48006702" -County and PUMA "G4800610, G48006703" -County and PUMA "G4800630, G48001300" -County and PUMA "G4800650, G48000100" -County and PUMA "G4800670, G48001100" -County and PUMA "G4800690, G48000100" -County and PUMA "G4800710, G48004400" -County and PUMA "G4800730, G48001700" -County and PUMA "G4800750, G48000100" -County and PUMA "G4800770, G48000600" -County and PUMA "G4800790, G48000400" -County and PUMA "G4800810, G48002800" -County and PUMA "G4800830, G48002600" -County and PUMA "G4800850, G48001901" -County and PUMA "G4800850, G48001902" -County and PUMA "G4800850, G48001903" -County and PUMA "G4800850, G48001904" -County and PUMA "G4800850, G48001905" -County and PUMA "G4800850, G48001906" -County and PUMA "G4800850, G48001907" -County and PUMA "G4800870, G48000100" -County and PUMA "G4800890, G48005000" -County and PUMA "G4800910, G48005800" -County and PUMA "G4800930, G48002600" -County and PUMA "G4800950, G48002800" -County and PUMA "G4800970, G48000800" -County and PUMA "G4800990, G48003400" -County and PUMA "G4801010, G48000600" -County and PUMA "G4801030, G48003200" -County and PUMA "G4801050, G48002800" -County and PUMA "G4801070, G48000400" -County and PUMA "G4801090, G48003200" -County and PUMA "G4801110, G48000100" -County and PUMA "G4801130, G48002301" -County and PUMA "G4801130, G48002302" -County and PUMA "G4801130, G48002303" -County and PUMA "G4801130, G48002304" -County and PUMA "G4801130, G48002305" -County and PUMA "G4801130, G48002306" -County and PUMA "G4801130, G48002307" -County and PUMA "G4801130, G48002308" -County and PUMA "G4801130, G48002309" -County and PUMA "G4801130, G48002310" -County and PUMA "G4801130, G48002311" -County and PUMA "G4801130, G48002312" -County and PUMA "G4801130, G48002313" -County and PUMA "G4801130, G48002314" -County and PUMA "G4801130, G48002315" -County and PUMA "G4801130, G48002316" -County and PUMA "G4801130, G48002317" -County and PUMA "G4801130, G48002318" -County and PUMA "G4801130, G48002319" -County and PUMA "G4801130, G48002320" -County and PUMA "G4801130, G48002321" -County and PUMA "G4801130, G48002322" -County and PUMA "G4801150, G48002800" -County and PUMA "G4801170, G48000100" -County and PUMA "G4801190, G48001000" -County and PUMA "G4801210, G48002001" -County and PUMA "G4801210, G48002002" -County and PUMA "G4801210, G48002003" -County and PUMA "G4801210, G48002004" -County and PUMA "G4801210, G48002005" -County and PUMA "G4801210, G48002006" -County and PUMA "G4801230, G48005500" -County and PUMA "G4801250, G48000400" -County and PUMA "G4801270, G48006200" -County and PUMA "G4801290, G48000100" -County and PUMA "G4801310, G48006400" -County and PUMA "G4801330, G48002600" -County and PUMA "G4801350, G48003100" -County and PUMA "G4801370, G48006200" -County and PUMA "G4801390, G48002101" -County and PUMA "G4801410, G48003301" -County and PUMA "G4801410, G48003302" -County and PUMA "G4801410, G48003303" -County and PUMA "G4801410, G48003304" -County and PUMA "G4801410, G48003305" -County and PUMA "G4801410, G48003306" -County and PUMA "G4801430, G48002200" -County and PUMA "G4801450, G48003700" -County and PUMA "G4801470, G48000800" -County and PUMA "G4801490, G48005100" -County and PUMA "G4801510, G48002600" -County and PUMA "G4801530, G48000400" -County and PUMA "G4801550, G48000600" -County and PUMA "G4801570, G48004901" -County and PUMA "G4801570, G48004902" -County and PUMA "G4801570, G48004903" -County and PUMA "G4801570, G48004904" -County and PUMA "G4801570, G48004905" -County and PUMA "G4801590, G48001000" -County and PUMA "G4801610, G48003700" -County and PUMA "G4801630, G48006100" -County and PUMA "G4801650, G48003200" -County and PUMA "G4801670, G48004701" -County and PUMA "G4801670, G48004702" -County and PUMA "G4801690, G48000400" -County and PUMA "G4801710, G48006000" -County and PUMA "G4801730, G48002800" -County and PUMA "G4801750, G48005500" -County and PUMA "G4801770, G48005500" -County and PUMA "G4801790, G48000100" -County and PUMA "G4801810, G48000800" -County and PUMA "G4801830, G48001600" -County and PUMA "G4801850, G48003601" -County and PUMA "G4801870, G48005700" -County and PUMA "G4801890, G48000400" -County and PUMA "G4801910, G48000100" -County and PUMA "G4801930, G48003400" -County and PUMA "G4801950, G48000100" -County and PUMA "G4801970, G48000600" -County and PUMA "G4801990, G48004200" -County and PUMA "G4802010, G48004601" -County and PUMA "G4802010, G48004602" -County and PUMA "G4802010, G48004603" -County and PUMA "G4802010, G48004604" -County and PUMA "G4802010, G48004605" -County and PUMA "G4802010, G48004606" -County and PUMA "G4802010, G48004607" -County and PUMA "G4802010, G48004608" -County and PUMA "G4802010, G48004609" -County and PUMA "G4802010, G48004610" -County and PUMA "G4802010, G48004611" -County and PUMA "G4802010, G48004612" -County and PUMA "G4802010, G48004613" -County and PUMA "G4802010, G48004614" -County and PUMA "G4802010, G48004615" -County and PUMA "G4802010, G48004616" -County and PUMA "G4802010, G48004617" -County and PUMA "G4802010, G48004618" -County and PUMA "G4802010, G48004619" -County and PUMA "G4802010, G48004620" -County and PUMA "G4802010, G48004621" -County and PUMA "G4802010, G48004622" -County and PUMA "G4802010, G48004623" -County and PUMA "G4802010, G48004624" -County and PUMA "G4802010, G48004625" -County and PUMA "G4802010, G48004626" -County and PUMA "G4802010, G48004627" -County and PUMA "G4802010, G48004628" -County and PUMA "G4802010, G48004629" -County and PUMA "G4802010, G48004630" -County and PUMA "G4802010, G48004631" -County and PUMA "G4802010, G48004632" -County and PUMA "G4802010, G48004633" -County and PUMA "G4802010, G48004634" -County and PUMA "G4802010, G48004635" -County and PUMA "G4802010, G48004636" -County and PUMA "G4802010, G48004637" -County and PUMA "G4802010, G48004638" -County and PUMA "G4802030, G48001200" -County and PUMA "G4802050, G48000100" -County and PUMA "G4802070, G48002600" -County and PUMA "G4802090, G48005400" -County and PUMA "G4802110, G48000100" -County and PUMA "G4802130, G48001800" -County and PUMA "G4802150, G48006801" -County and PUMA "G4802150, G48006802" -County and PUMA "G4802150, G48006803" -County and PUMA "G4802150, G48006804" -County and PUMA "G4802150, G48006805" -County and PUMA "G4802150, G48006806" -County and PUMA "G4802150, G48006807" -County and PUMA "G4802170, G48003700" -County and PUMA "G4802190, G48000400" -County and PUMA "G4802210, G48002200" -County and PUMA "G4802230, G48001000" -County and PUMA "G4802250, G48003900" -County and PUMA "G4802270, G48002800" -County and PUMA "G4802290, G48003200" -County and PUMA "G4802310, G48000900" -County and PUMA "G4802330, G48000100" -County and PUMA "G4802350, G48002800" -County and PUMA "G4802370, G48000600" -County and PUMA "G4802390, G48005500" -County and PUMA "G4802410, G48004100" -County and PUMA "G4802430, G48003200" -County and PUMA "G4802450, G48004301" -County and PUMA "G4802450, G48004302" -County and PUMA "G4802470, G48006400" -County and PUMA "G4802490, G48006900" -County and PUMA "G4802510, G48002102" -County and PUMA "G4802530, G48002600" -County and PUMA "G4802550, G48005500" -County and PUMA "G4802570, G48001400" -County and PUMA "G4802590, G48006000" -County and PUMA "G4802610, G48006900" -County and PUMA "G4802630, G48002600" -County and PUMA "G4802650, G48006000" -County and PUMA "G4802670, G48002800" -County and PUMA "G4802690, G48000400" -County and PUMA "G4802710, G48006200" -County and PUMA "G4802730, G48006900" -County and PUMA "G4802750, G48002600" -County and PUMA "G4802770, G48001000" -County and PUMA "G4802790, G48000400" -County and PUMA "G4802810, G48003400" -County and PUMA "G4802830, G48006200" -County and PUMA "G4802850, G48005500" -County and PUMA "G4802870, G48005100" -County and PUMA "G4802890, G48003601" -County and PUMA "G4802910, G48004400" -County and PUMA "G4802930, G48003700" -County and PUMA "G4802950, G48000100" -County and PUMA "G4802970, G48006400" -County and PUMA "G4802990, G48003400" -County and PUMA "G4803010, G48003200" -County and PUMA "G4803030, G48000501" -County and PUMA "G4803030, G48000502" -County and PUMA "G4803050, G48000400" -County and PUMA "G4803070, G48002800" -County and PUMA "G4803090, G48003801" -County and PUMA "G4803090, G48003802" -County and PUMA "G4803110, G48006400" -County and PUMA "G4803130, G48003601" -County and PUMA "G4803150, G48001200" -County and PUMA "G4803170, G48002800" -County and PUMA "G4803190, G48002800" -County and PUMA "G4803210, G48005000" -County and PUMA "G4803230, G48006200" -County and PUMA "G4803250, G48006100" -County and PUMA "G4803270, G48002800" -County and PUMA "G4803290, G48003000" -County and PUMA "G4803310, G48003601" -County and PUMA "G4803330, G48003400" -County and PUMA "G4803350, G48002600" -County and PUMA "G4803370, G48000600" -County and PUMA "G4803390, G48004501" -County and PUMA "G4803390, G48004502" -County and PUMA "G4803390, G48004503" -County and PUMA "G4803390, G48004504" -County and PUMA "G4803410, G48000100" -County and PUMA "G4803430, G48001000" -County and PUMA "G4803450, G48000400" -County and PUMA "G4803470, G48004000" -County and PUMA "G4803490, G48003700" -County and PUMA "G4803510, G48004100" -County and PUMA "G4803530, G48002600" -County and PUMA "G4803550, G48006601" -County and PUMA "G4803550, G48006602" -County and PUMA "G4803550, G48006603" -County and PUMA "G4803570, G48000100" -County and PUMA "G4803590, G48000100" -County and PUMA "G4803610, G48004200" -County and PUMA "G4803630, G48002200" -County and PUMA "G4803650, G48001700" -County and PUMA "G4803670, G48002400" -County and PUMA "G4803690, G48000100" -County and PUMA "G4803710, G48003200" -County and PUMA "G4803730, G48003900" -County and PUMA "G4803750, G48000200" -County and PUMA "G4803770, G48003200" -County and PUMA "G4803790, G48001300" -County and PUMA "G4803810, G48000300" -County and PUMA "G4803830, G48002800" -County and PUMA "G4803850, G48006200" -County and PUMA "G4803870, G48001000" -County and PUMA "G4803890, G48003200" -County and PUMA "G4803910, G48006500" -County and PUMA "G4803930, G48000100" -County and PUMA "G4803950, G48003601" -County and PUMA "G4803970, G48000900" -County and PUMA "G4803990, G48002600" -County and PUMA "G4804010, G48001700" -County and PUMA "G4804030, G48004100" -County and PUMA "G4804050, G48004100" -County and PUMA "G4804070, G48003900" -County and PUMA "G4804090, G48006500" -County and PUMA "G4804110, G48003400" -County and PUMA "G4804130, G48002800" -County and PUMA "G4804150, G48002600" -County and PUMA "G4804170, G48002600" -County and PUMA "G4804190, G48004100" -County and PUMA "G4804210, G48000100" -County and PUMA "G4804230, G48001501" -County and PUMA "G4804230, G48001502" -County and PUMA "G4804250, G48002200" -County and PUMA "G4804270, G48006400" -County and PUMA "G4804290, G48002600" -County and PUMA "G4804310, G48002800" -County and PUMA "G4804330, G48002600" -County and PUMA "G4804350, G48002800" -County and PUMA "G4804370, G48000100" -County and PUMA "G4804390, G48002501" -County and PUMA "G4804390, G48002502" -County and PUMA "G4804390, G48002503" -County and PUMA "G4804390, G48002504" -County and PUMA "G4804390, G48002505" -County and PUMA "G4804390, G48002506" -County and PUMA "G4804390, G48002507" -County and PUMA "G4804390, G48002508" -County and PUMA "G4804390, G48002509" -County and PUMA "G4804390, G48002510" -County and PUMA "G4804390, G48002511" -County and PUMA "G4804390, G48002512" -County and PUMA "G4804390, G48002513" -County and PUMA "G4804390, G48002514" -County and PUMA "G4804390, G48002515" -County and PUMA "G4804390, G48002516" -County and PUMA "G4804410, G48002700" -County and PUMA "G4804430, G48003200" -County and PUMA "G4804450, G48000400" -County and PUMA "G4804470, G48002600" -County and PUMA "G4804490, G48001000" -County and PUMA "G4804510, G48002900" -County and PUMA "G4804530, G48005301" -County and PUMA "G4804530, G48005302" -County and PUMA "G4804530, G48005303" -County and PUMA "G4804530, G48005304" -County and PUMA "G4804530, G48005305" -County and PUMA "G4804530, G48005306" -County and PUMA "G4804530, G48005307" -County and PUMA "G4804530, G48005308" -County and PUMA "G4804530, G48005309" -County and PUMA "G4804550, G48003900" -County and PUMA "G4804570, G48004100" -County and PUMA "G4804590, G48001200" -County and PUMA "G4804610, G48002800" -County and PUMA "G4804630, G48006200" -County and PUMA "G4804650, G48006200" -County and PUMA "G4804670, G48001300" -County and PUMA "G4804690, G48005600" -County and PUMA "G4804710, G48003900" -County and PUMA "G4804730, G48005000" -County and PUMA "G4804750, G48003200" -County and PUMA "G4804770, G48003601" -County and PUMA "G4804790, G48006301" -County and PUMA "G4804790, G48006302" -County and PUMA "G4804810, G48005000" -County and PUMA "G4804830, G48000100" -County and PUMA "G4804850, G48000700" -County and PUMA "G4804870, G48000600" -County and PUMA "G4804890, G48006900" -County and PUMA "G4804910, G48005201" -County and PUMA "G4804910, G48005202" -County and PUMA "G4804910, G48005203" -County and PUMA "G4804910, G48005204" -County and PUMA "G4804930, G48005500" -County and PUMA "G4804950, G48003200" -County and PUMA "G4804970, G48000600" -County and PUMA "G4804990, G48001300" -County and PUMA "G4805010, G48000400" -County and PUMA "G4805030, G48000600" -County and PUMA "G4805050, G48006400" -County and PUMA "G4805070, G48006200" -County and PUMA "G4900010, G49021001" -County and PUMA "G4900030, G49003001" -County and PUMA "G4900050, G49005001" -County and PUMA "G4900070, G49013001" -County and PUMA "G4900090, G49013001" -County and PUMA "G4900110, G49011001" -County and PUMA "G4900110, G49011002" -County and PUMA "G4900130, G49013001" -County and PUMA "G4900150, G49013001" -County and PUMA "G4900170, G49021001" -County and PUMA "G4900190, G49013001" -County and PUMA "G4900210, G49021001" -County and PUMA "G4900230, G49021001" -County and PUMA "G4900250, G49021001" -County and PUMA "G4900270, G49021001" -County and PUMA "G4900290, G49005001" -County and PUMA "G4900310, G49021001" -County and PUMA "G4900330, G49005001" -County and PUMA "G4900350, G49035001" -County and PUMA "G4900350, G49035002" -County and PUMA "G4900350, G49035003" -County and PUMA "G4900350, G49035004" -County and PUMA "G4900350, G49035005" -County and PUMA "G4900350, G49035006" -County and PUMA "G4900350, G49035007" -County and PUMA "G4900350, G49035008" -County and PUMA "G4900350, G49035009" -County and PUMA "G4900370, G49013001" -County and PUMA "G4900390, G49021001" -County and PUMA "G4900410, G49021001" -County and PUMA "G4900430, G49005001" -County and PUMA "G4900450, G49003001" -County and PUMA "G4900470, G49013001" -County and PUMA "G4900490, G49049001" -County and PUMA "G4900490, G49049002" -County and PUMA "G4900490, G49049003" -County and PUMA "G4900490, G49049004" -County and PUMA "G4900510, G49013001" -County and PUMA "G4900530, G49053001" -County and PUMA "G4900550, G49021001" -County and PUMA "G4900570, G49057001" -County and PUMA "G4900570, G49057002" -County and PUMA "G5000010, G50000400" -County and PUMA "G5000030, G50000400" -County and PUMA "G5000050, G50000200" -County and PUMA "G5000070, G50000100" -County and PUMA "G5000090, G50000200" -County and PUMA "G5000110, G50000100" -County and PUMA "G5000130, G50000100" -County and PUMA "G5000150, G50000200" -County and PUMA "G5000170, G50000300" -County and PUMA "G5000190, G50000200" -County and PUMA "G5000210, G50000400" -County and PUMA "G5000230, G50000200" -County and PUMA "G5000250, G50000300" -County and PUMA "G5000270, G50000300" -County and PUMA "G5100010, G51051125" -County and PUMA "G5100030, G51051089" -County and PUMA "G5100030, G51051090" -County and PUMA "G5100050, G51051045" -County and PUMA "G5100070, G51051105" -County and PUMA "G5100090, G51051095" -County and PUMA "G5100110, G51051095" -County and PUMA "G5100130, G51001301" -County and PUMA "G5100130, G51001302" -County and PUMA "G5100150, G51051080" -County and PUMA "G5100170, G51051080" -County and PUMA "G5100190, G51051095" -County and PUMA "G5100210, G51051020" -County and PUMA "G5100230, G51051045" -County and PUMA "G5100250, G51051105" -County and PUMA "G5100270, G51051010" -County and PUMA "G5100290, G51051105" -County and PUMA "G5100310, G51051096" -County and PUMA "G5100330, G51051120" -County and PUMA "G5100350, G51051020" -County and PUMA "G5100360, G51051215" -County and PUMA "G5100370, G51051105" -County and PUMA "G5100410, G51004101" -County and PUMA "G5100410, G51004102" -County and PUMA "G5100410, G51004103" -County and PUMA "G5100430, G51051084" -County and PUMA "G5100450, G51051045" -County and PUMA "G5100470, G51051087" -County and PUMA "G5100490, G51051105" -County and PUMA "G5100510, G51051010" -County and PUMA "G5100530, G51051135" -County and PUMA "G5100570, G51051125" -County and PUMA "G5100590, G51059301" -County and PUMA "G5100590, G51059302" -County and PUMA "G5100590, G51059303" -County and PUMA "G5100590, G51059304" -County and PUMA "G5100590, G51059305" -County and PUMA "G5100590, G51059306" -County and PUMA "G5100590, G51059307" -County and PUMA "G5100590, G51059308" -County and PUMA "G5100590, G51059309" -County and PUMA "G5100610, G51051087" -County and PUMA "G5100630, G51051040" -County and PUMA "G5100650, G51051089" -County and PUMA "G5100670, G51051045" -County and PUMA "G5100690, G51051084" -County and PUMA "G5100710, G51051040" -County and PUMA "G5100730, G51051125" -County and PUMA "G5100750, G51051215" -County and PUMA "G5100770, G51051020" -County and PUMA "G5100790, G51051090" -County and PUMA "G5100810, G51051135" -County and PUMA "G5100830, G51051105" -County and PUMA "G5100850, G51051215" -County and PUMA "G5100870, G51051224" -County and PUMA "G5100870, G51051225" -County and PUMA "G5100890, G51051097" -County and PUMA "G5100910, G51051080" -County and PUMA "G5100930, G51051145" -County and PUMA "G5100950, G51051206" -County and PUMA "G5100970, G51051125" -County and PUMA "G5100990, G51051120" -County and PUMA "G5101010, G51051215" -County and PUMA "G5101030, G51051125" -County and PUMA "G5101050, G51051010" -County and PUMA "G5101070, G51010701" -County and PUMA "G5101070, G51010702" -County and PUMA "G5101070, G51010703" -County and PUMA "G5101090, G51051089" -County and PUMA "G5101110, G51051105" -County and PUMA "G5101130, G51051087" -County and PUMA "G5101150, G51051125" -County and PUMA "G5101170, G51051105" -County and PUMA "G5101190, G51051125" -County and PUMA "G5101210, G51051040" -County and PUMA "G5101250, G51051089" -County and PUMA "G5101270, G51051215" -County and PUMA "G5101310, G51051125" -County and PUMA "G5101330, G51051125" -County and PUMA "G5101350, G51051105" -County and PUMA "G5101370, G51051087" -County and PUMA "G5101390, G51051085" -County and PUMA "G5101410, G51051097" -County and PUMA "G5101430, G51051097" -County and PUMA "G5101450, G51051215" -County and PUMA "G5101470, G51051105" -County and PUMA "G5101490, G51051135" -County and PUMA "G5101530, G51051244" -County and PUMA "G5101530, G51051245" -County and PUMA "G5101530, G51051246" -County and PUMA "G5101550, G51051040" -County and PUMA "G5101570, G51051087" -County and PUMA "G5101590, G51051125" -County and PUMA "G5101610, G51051044" -County and PUMA "G5101610, G51051045" -County and PUMA "G5101630, G51051080" -County and PUMA "G5101650, G51051110" -County and PUMA "G5101670, G51051010" -County and PUMA "G5101690, G51051010" -County and PUMA "G5101710, G51051085" -County and PUMA "G5101730, G51051020" -County and PUMA "G5101750, G51051145" -County and PUMA "G5101770, G51051120" -County and PUMA "G5101790, G51051115" -County and PUMA "G5101810, G51051135" -County and PUMA "G5101830, G51051135" -County and PUMA "G5101850, G51051010" -County and PUMA "G5101870, G51051085" -County and PUMA "G5101910, G51051020" -County and PUMA "G5101930, G51051125" -County and PUMA "G5101950, G51051010" -County and PUMA "G5101970, G51051020" -County and PUMA "G5101990, G51051206" -County and PUMA "G5105100, G51051255" -County and PUMA "G5105200, G51051020" -County and PUMA "G5105300, G51051080" -County and PUMA "G5105400, G51051090" -County and PUMA "G5105500, G51055001" -County and PUMA "G5105500, G51055002" -County and PUMA "G5105700, G51051135" -County and PUMA "G5105800, G51051045" -County and PUMA "G5105900, G51051097" -County and PUMA "G5105950, G51051135" -County and PUMA "G5106000, G51059303" -County and PUMA "G5106100, G51059308" -County and PUMA "G5106200, G51051145" -County and PUMA "G5106300, G51051115" -County and PUMA "G5106400, G51051020" -County and PUMA "G5106500, G51051186" -County and PUMA "G5106600, G51051110" -County and PUMA "G5106700, G51051135" -County and PUMA "G5106780, G51051080" -County and PUMA "G5106800, G51051096" -County and PUMA "G5106830, G51051245" -County and PUMA "G5106850, G51051245" -County and PUMA "G5106900, G51051097" -County and PUMA "G5107000, G51051175" -County and PUMA "G5107100, G51051154" -County and PUMA "G5107100, G51051155" -County and PUMA "G5107200, G51051010" -County and PUMA "G5107300, G51051135" -County and PUMA "G5107350, G51051206" -County and PUMA "G5107400, G51051155" -County and PUMA "G5107500, G51051040" -County and PUMA "G5107600, G51051235" -County and PUMA "G5107700, G51051044" -County and PUMA "G5107750, G51051044" -County and PUMA "G5107900, G51051080" -County and PUMA "G5108000, G51051145" -County and PUMA "G5108100, G51051164" -County and PUMA "G5108100, G51051165" -County and PUMA "G5108100, G51051167" -County and PUMA "G5108200, G51051080" -County and PUMA "G5108300, G51051206" -County and PUMA "G5108400, G51051084" -County and PUMA "G5300010, G53010600" -County and PUMA "G5300030, G53010600" -County and PUMA "G5300050, G53010701" -County and PUMA "G5300050, G53010702" -County and PUMA "G5300050, G53010703" -County and PUMA "G5300070, G53010300" -County and PUMA "G5300090, G53011900" -County and PUMA "G5300110, G53011101" -County and PUMA "G5300110, G53011102" -County and PUMA "G5300110, G53011103" -County and PUMA "G5300110, G53011104" -County and PUMA "G5300130, G53010600" -County and PUMA "G5300150, G53011200" -County and PUMA "G5300170, G53010300" -County and PUMA "G5300190, G53010400" -County and PUMA "G5300210, G53010701" -County and PUMA "G5300210, G53010703" -County and PUMA "G5300230, G53010600" -County and PUMA "G5300250, G53010800" -County and PUMA "G5300270, G53011300" -County and PUMA "G5300290, G53010200" -County and PUMA "G5300310, G53011900" -County and PUMA "G5300330, G53011601" -County and PUMA "G5300330, G53011602" -County and PUMA "G5300330, G53011603" -County and PUMA "G5300330, G53011604" -County and PUMA "G5300330, G53011605" -County and PUMA "G5300330, G53011606" -County and PUMA "G5300330, G53011607" -County and PUMA "G5300330, G53011608" -County and PUMA "G5300330, G53011609" -County and PUMA "G5300330, G53011610" -County and PUMA "G5300330, G53011611" -County and PUMA "G5300330, G53011612" -County and PUMA "G5300330, G53011613" -County and PUMA "G5300330, G53011614" -County and PUMA "G5300330, G53011615" -County and PUMA "G5300330, G53011616" -County and PUMA "G5300350, G53011801" -County and PUMA "G5300350, G53011802" -County and PUMA "G5300370, G53010800" -County and PUMA "G5300390, G53011000" -County and PUMA "G5300410, G53011000" -County and PUMA "G5300430, G53010600" -County and PUMA "G5300450, G53011300" -County and PUMA "G5300470, G53010400" -County and PUMA "G5300490, G53011200" -County and PUMA "G5300510, G53010400" -County and PUMA "G5300530, G53011501" -County and PUMA "G5300530, G53011502" -County and PUMA "G5300530, G53011503" -County and PUMA "G5300530, G53011504" -County and PUMA "G5300530, G53011505" -County and PUMA "G5300530, G53011506" -County and PUMA "G5300530, G53011507" -County and PUMA "G5300550, G53010200" -County and PUMA "G5300570, G53010200" -County and PUMA "G5300590, G53011000" -County and PUMA "G5300610, G53011701" -County and PUMA "G5300610, G53011702" -County and PUMA "G5300610, G53011703" -County and PUMA "G5300610, G53011704" -County and PUMA "G5300610, G53011705" -County and PUMA "G5300610, G53011706" -County and PUMA "G5300630, G53010501" -County and PUMA "G5300630, G53010502" -County and PUMA "G5300630, G53010503" -County and PUMA "G5300630, G53010504" -County and PUMA "G5300650, G53010400" -County and PUMA "G5300670, G53011401" -County and PUMA "G5300670, G53011402" -County and PUMA "G5300690, G53011200" -County and PUMA "G5300710, G53010703" -County and PUMA "G5300730, G53010100" -County and PUMA "G5300750, G53010600" -County and PUMA "G5300770, G53010901" -County and PUMA "G5300770, G53010902" -County and PUMA "G5400010, G54000500" -County and PUMA "G5400030, G54000400" -County and PUMA "G5400050, G54000900" -County and PUMA "G5400070, G54000600" -County and PUMA "G5400090, G54000100" -County and PUMA "G5400110, G54000800" -County and PUMA "G5400130, G54000600" -County and PUMA "G5400150, G54001000" -County and PUMA "G5400170, G54000200" -County and PUMA "G5400190, G54001200" -County and PUMA "G5400210, G54000600" -County and PUMA "G5400230, G54000500" -County and PUMA "G5400250, G54001100" -County and PUMA "G5400270, G54000400" -County and PUMA "G5400290, G54000100" -County and PUMA "G5400310, G54000500" -County and PUMA "G5400330, G54000200" -County and PUMA "G5400350, G54000600" -County and PUMA "G5400370, G54000400" -County and PUMA "G5400390, G54001000" -County and PUMA "G5400410, G54000500" -County and PUMA "G5400430, G54000900" -County and PUMA "G5400450, G54001300" -County and PUMA "G5400470, G54001300" -County and PUMA "G5400490, G54000200" -County and PUMA "G5400510, G54000100" -County and PUMA "G5400530, G54000800" -County and PUMA "G5400550, G54001200" -County and PUMA "G5400570, G54000400" -County and PUMA "G5400590, G54001300" -County and PUMA "G5400610, G54000300" -County and PUMA "G5400630, G54001100" -County and PUMA "G5400650, G54000400" -County and PUMA "G5400670, G54001100" -County and PUMA "G5400690, G54000100" -County and PUMA "G5400710, G54000500" -County and PUMA "G5400730, G54000700" -County and PUMA "G5400750, G54001100" -County and PUMA "G5400770, G54000300" -County and PUMA "G5400790, G54000900" -County and PUMA "G5400810, G54001200" -County and PUMA "G5400830, G54000500" -County and PUMA "G5400850, G54000600" -County and PUMA "G5400870, G54000600" -County and PUMA "G5400890, G54001100" -County and PUMA "G5400910, G54000200" -County and PUMA "G5400930, G54000500" -County and PUMA "G5400950, G54000600" -County and PUMA "G5400970, G54000500" -County and PUMA "G5400990, G54000800" -County and PUMA "G5401010, G54001100" -County and PUMA "G5401030, G54000600" -County and PUMA "G5401050, G54000700" -County and PUMA "G5401070, G54000700" -County and PUMA "G5401090, G54001300" -County and PUMA "G5500010, G55001601" -County and PUMA "G5500030, G55000100" -County and PUMA "G5500050, G55055101" -County and PUMA "G5500070, G55000100" -County and PUMA "G5500090, G55000200" -County and PUMA "G5500090, G55000300" -County and PUMA "G5500110, G55000700" -County and PUMA "G5500130, G55000100" -County and PUMA "G5500150, G55001401" -County and PUMA "G5500170, G55055101" -County and PUMA "G5500170, G55055103" -County and PUMA "G5500190, G55055101" -County and PUMA "G5500210, G55001000" -County and PUMA "G5500230, G55000700" -County and PUMA "G5500250, G55000101" -County and PUMA "G5500250, G55000102" -County and PUMA "G5500250, G55000103" -County and PUMA "G5500270, G55001001" -County and PUMA "G5500290, G55001300" -County and PUMA "G5500310, G55000100" -County and PUMA "G5500330, G55055102" -County and PUMA "G5500350, G55055103" -County and PUMA "G5500370, G55001300" -County and PUMA "G5500390, G55001401" -County and PUMA "G5500410, G55000600" -County and PUMA "G5500430, G55000800" -County and PUMA "G5500450, G55000800" -County and PUMA "G5500470, G55001400" -County and PUMA "G5500490, G55000800" -County and PUMA "G5500510, G55000100" -County and PUMA "G5500530, G55000700" -County and PUMA "G5500550, G55001001" -County and PUMA "G5500570, G55001601" -County and PUMA "G5500590, G55010000" -County and PUMA "G5500610, G55001301" -County and PUMA "G5500630, G55000900" -County and PUMA "G5500650, G55000800" -County and PUMA "G5500670, G55000600" -County and PUMA "G5500690, G55000600" -County and PUMA "G5500710, G55001301" -County and PUMA "G5500730, G55001600" -County and PUMA "G5500750, G55001300" -County and PUMA "G5500770, G55001400" -County and PUMA "G5500780, G55001400" -County and PUMA "G5500790, G55040101" -County and PUMA "G5500790, G55040301" -County and PUMA "G5500790, G55040701" -County and PUMA "G5500790, G55041001" -County and PUMA "G5500790, G55041002" -County and PUMA "G5500790, G55041003" -County and PUMA "G5500790, G55041004" -County and PUMA "G5500790, G55041005" -County and PUMA "G5500810, G55000700" -County and PUMA "G5500830, G55001300" -County and PUMA "G5500850, G55000600" -County and PUMA "G5500870, G55001500" -County and PUMA "G5500890, G55020000" -County and PUMA "G5500910, G55000700" -County and PUMA "G5500930, G55000700" -County and PUMA "G5500950, G55055101" -County and PUMA "G5500970, G55001601" -County and PUMA "G5500990, G55000100" -County and PUMA "G5501010, G55030000" -County and PUMA "G5501030, G55000800" -County and PUMA "G5501050, G55002400" -County and PUMA "G5501070, G55000100" -County and PUMA "G5501090, G55055102" -County and PUMA "G5501110, G55001000" -County and PUMA "G5501130, G55000100" -County and PUMA "G5501150, G55001400" -County and PUMA "G5501170, G55002500" -County and PUMA "G5501190, G55000100" -County and PUMA "G5501210, G55000700" -County and PUMA "G5501230, G55000700" -County and PUMA "G5501250, G55000600" -County and PUMA "G5501270, G55050000" -County and PUMA "G5501290, G55000100" -County and PUMA "G5501310, G55020000" -County and PUMA "G5501330, G55070101" -County and PUMA "G5501330, G55070201" -County and PUMA "G5501330, G55070301" -County and PUMA "G5501350, G55001400" -County and PUMA "G5501370, G55001400" -County and PUMA "G5501390, G55001501" -County and PUMA "G5501410, G55001601" -County and PUMA "G5600010, G56000300" -County and PUMA "G5600030, G56000100" -County and PUMA "G5600050, G56000200" -County and PUMA "G5600070, G56000400" -County and PUMA "G5600090, G56000400" -County and PUMA "G5600110, G56000200" -County and PUMA "G5600130, G56000500" -County and PUMA "G5600150, G56000200" -County and PUMA "G5600170, G56000500" -County and PUMA "G5600190, G56000200" -County and PUMA "G5600210, G56000300" -County and PUMA "G5600230, G56000100" -County and PUMA "G5600250, G56000400" -County and PUMA "G5600270, G56000200" -County and PUMA "G5600290, G56000100" -County and PUMA "G5600310, G56000200" -County and PUMA "G5600330, G56000100" -County and PUMA "G5600350, G56000500" -County and PUMA "G5600370, G56000500" -County and PUMA "G5600390, G56000100" -County and PUMA "G5600410, G56000500" -County and PUMA "G5600430, G56000200" -County and PUMA "G5600450, G56000200" -County and PUMA "G7200010, G72000401" -County and PUMA "G7200030, G72000101" -County and PUMA "G7200050, G72000102" -County and PUMA "G7200070, G72000602" -County and PUMA "G7200090, G72000602" -County and PUMA "G7200110, G72000101" -County and PUMA "G7200130, G72000301" -County and PUMA "G7200150, G72000701" -County and PUMA "G7200170, G72000301" -County and PUMA "G7200190, G72000601" -County and PUMA "G7200210, G72000801" -County and PUMA "G7200210, G72000802" -County and PUMA "G7200230, G72000201" -County and PUMA "G7200250, G72001001" -County and PUMA "G7200270, G72000302" -County and PUMA "G7200290, G72000902" -County and PUMA "G7200310, G72000901" -County and PUMA "G7200310, G72000902" -County and PUMA "G7200330, G72000803" -County and PUMA "G7200350, G72000602" -County and PUMA "G7200370, G72001101" -County and PUMA "G7200390, G72000501" -County and PUMA "G7200410, G72000602" -County and PUMA "G7200430, G72000403" -County and PUMA "G7200450, G72000601" -County and PUMA "G7200470, G72000601" -County and PUMA "G7200490, G72001101" -County and PUMA "G7200510, G72000502" -County and PUMA "G7200530, G72001101" -County and PUMA "G7200540, G72000301" -County and PUMA "G7200550, G72000401" -County and PUMA "G7200570, G72000701" -County and PUMA "G7200590, G72000401" -County and PUMA "G7200610, G72000803" -County and PUMA "G7200630, G72001002" -County and PUMA "G7200650, G72000302" -County and PUMA "G7200670, G72000202" -County and PUMA "G7200690, G72001102" -County and PUMA "G7200710, G72000102" -County and PUMA "G7200730, G72000402" -County and PUMA "G7200750, G72000403" -County and PUMA "G7200770, G72001002" -County and PUMA "G7200790, G72000201" -County and PUMA "G7200810, G72000302" -County and PUMA "G7200830, G72000202" -County and PUMA "G7200850, G72001002" -County and PUMA "G7200870, G72000902" -County and PUMA "G7200890, G72001101" -County and PUMA "G7200910, G72000501" -County and PUMA "G7200930, G72000202" -County and PUMA "G7200950, G72000701" -County and PUMA "G7200970, G72000202" -County and PUMA "G7200990, G72000101" -County and PUMA "G7201010, G72000501" -County and PUMA "G7201030, G72001102" -County and PUMA "G7201050, G72000601" -County and PUMA "G7201070, G72000601" -County and PUMA "G7201090, G72000701" -County and PUMA "G7201110, G72000401" -County and PUMA "G7201130, G72000402" -County and PUMA "G7201150, G72000102" -County and PUMA "G7201170, G72000101" -County and PUMA "G7201190, G72001101" -County and PUMA "G7201210, G72000201" -County and PUMA "G7201230, G72000701" -County and PUMA "G7201250, G72000201" -County and PUMA "G7201270, G72000804" -County and PUMA "G7201270, G72000805" -County and PUMA "G7201270, G72000806" -County and PUMA "G7201290, G72001002" -County and PUMA "G7201310, G72000101" -County and PUMA "G7201330, G72000403" -County and PUMA "G7201350, G72000503" -County and PUMA "G7201370, G72000502" -County and PUMA "G7201390, G72000902" -County and PUMA "G7201410, G72000302" -County and PUMA "G7201430, G72000503" -County and PUMA "G7201450, G72000501" -County and PUMA "G7201470, G72001101" -County and PUMA "G7201490, G72000403" -County and PUMA "G7201510, G72001102" -County and PUMA "G7201530, G72000401" -Custom State AK -Custom State Others -Dehumidifier "65 pints/day, 50% RH" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=1.8 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 -Dehumidifier "65 pints/day, 50% RH, 2.0 EF" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=2 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 -Dehumidifier "65 pints/day, 60% RH" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=1.8 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.6 dehumidifier_fraction_dehumidification_load_served=1 -Dehumidifier None ResStockArguments dehumidifier_type=none dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=0 dehumidifier_capacity=40 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 -Dishwasher 144 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=144 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=13 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 199 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=199 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=18 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 220 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=220 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=19 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 255 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=255 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=21 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 270 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=270 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=22 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 290 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=290 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=23 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 318 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=318 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=25 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher None ResStockArguments dishwasher_present=false dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=0 dishwasher_label_electric_rate=0 dishwasher_label_gas_rate=0 dishwasher_label_annual_gas_cost=0 dishwasher_label_usage=0 dishwasher_place_setting_capacity=0 -Dishwasher Void -Dishwasher Usage Level 100% Usage ResStockArguments dishwasher_usage_multiplier=1.0 -Dishwasher Usage Level 120% Usage ResStockArguments dishwasher_usage_multiplier=1.2 -Dishwasher Usage Level 80% Usage ResStockArguments dishwasher_usage_multiplier=0.8 -Door Area 20 ft^2 ResStockArguments door_area=20 -Door Area 30 ft^2 ResStockArguments door_area=30 -Door Area 40 ft^2 ResStockArguments door_area=40 -Doors Fiberglass ResStockArguments door_rvalue=5 -Doors Steel ResStockArguments door_rvalue=5 -Doors Wood ResStockArguments door_rvalue=2.1 -Duct Leakage and Insulation "0% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0 ducts_return_leakage_to_outside_value=0 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "10% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "10% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "10% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "10% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "14% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "14% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "14% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "14% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "15% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "15% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "15% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "15% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "20% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "20% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "20% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "20% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "22.5% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "22.5% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "22.5% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "22.5% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "24% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "24% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "24% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "24% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "30% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "30% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "30% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "30% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "34% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "34% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "34% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "34% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "53% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "53% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "53% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "53% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "6% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "6% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "6% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "6% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "7.5% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "7.5% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "7.5% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "7.5% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "85% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "85% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "85% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "85% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation None ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0 ducts_return_leakage_to_outside_value=0 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Location Attic ResStockArguments ducts_supply_location=attic ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=attic ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location Crawlspace ResStockArguments ducts_supply_location=crawlspace ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=crawlspace ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location Garage ResStockArguments ducts_supply_location=garage ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=garage ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location Heated Basement ResStockArguments ducts_supply_location=basement - conditioned ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=basement - conditioned ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location Living Space ResStockArguments ducts_supply_location=conditioned space ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=conditioned space ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location None ResStockArguments ducts_supply_location=conditioned space ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=conditioned space ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=0 -Duct Location Unheated Basement ResStockArguments ducts_supply_location=basement - unconditioned ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=basement - unconditioned ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Eaves 1 ft ResStockArguments geometry_eaves_depth=1 -Eaves 2 ft ResStockArguments geometry_eaves_depth=2 -Eaves 3 ft ResStockArguments geometry_eaves_depth=3 -Eaves None ResStockArguments geometry_eaves_depth=0 -Electric Vehicle "EV, 4000 miles, 0.3 kWh/mi" ResStockArguments misc_plug_loads_vehicle_present=true misc_plug_loads_vehicle_annual_kwh=1481 misc_plug_loads_vehicle_usage_multiplier=1.0 misc_plug_loads_vehicle_2_usage_multiplier=1.0 -Electric Vehicle "EV, 5000 miles, 0.3 kWh/mi" ResStockArguments misc_plug_loads_vehicle_present=true misc_plug_loads_vehicle_annual_kwh=1852 misc_plug_loads_vehicle_usage_multiplier=1.0 misc_plug_loads_vehicle_2_usage_multiplier=1.0 -Electric Vehicle None ResStockArguments misc_plug_loads_vehicle_present=false misc_plug_loads_vehicle_annual_kwh=0 misc_plug_loads_vehicle_usage_multiplier=0 misc_plug_loads_vehicle_2_usage_multiplier=0 -Energystar Climate Zone 2023 North-Central -Energystar Climate Zone 2023 Northern -Energystar Climate Zone 2023 South-Central -Energystar Climate Zone 2023 Southern -Energystar Climate Zone 2023 Void -Federal Poverty Level 0-100% -Federal Poverty Level 100-150% -Federal Poverty Level 150-200% -Federal Poverty Level 200-300% -Federal Poverty Level 300-400% -Federal Poverty Level 400%+ -Federal Poverty Level Not Available -Generation And Emissions Assessment Region AZNMc -Generation And Emissions Assessment Region CAMXc -Generation And Emissions Assessment Region ERCTc -Generation And Emissions Assessment Region FRCCc -Generation And Emissions Assessment Region MROEc -Generation And Emissions Assessment Region MROWc -Generation And Emissions Assessment Region NEWEc -Generation And Emissions Assessment Region NWPPc -Generation And Emissions Assessment Region NYSTc -Generation And Emissions Assessment Region None -Generation And Emissions Assessment Region RFCEc -Generation And Emissions Assessment Region RFCMc -Generation And Emissions Assessment Region RFCWc -Generation And Emissions Assessment Region RMPAc -Generation And Emissions Assessment Region SPNOc -Generation And Emissions Assessment Region SPSOc -Generation And Emissions Assessment Region SRMVc -Generation And Emissions Assessment Region SRMWc -Generation And Emissions Assessment Region SRSOc -Generation And Emissions Assessment Region SRTVc -Generation And Emissions Assessment Region SRVCc -Geometry Attic Type Finished Attic or Cathedral Ceilings ResStockArguments geometry_attic_type=ConditionedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 -Geometry Attic Type None ResStockArguments geometry_attic_type=FlatRoof geometry_roof_type=gable geometry_roof_pitch=6:12 -Geometry Attic Type Unvented Attic ResStockArguments geometry_attic_type=UnventedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 -Geometry Attic Type Vented Attic ResStockArguments geometry_attic_type=VentedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 -Geometry Building Horizontal Location MF Left ResStockArguments geometry_unit_horizontal_location=Left -Geometry Building Horizontal Location MF Middle ResStockArguments geometry_unit_horizontal_location=Middle -Geometry Building Horizontal Location MF None -Geometry Building Horizontal Location MF Not Applicable ResStockArguments geometry_unit_horizontal_location=None -Geometry Building Horizontal Location MF Right ResStockArguments geometry_unit_horizontal_location=Right -Geometry Building Horizontal Location SFA Left ResStockArguments geometry_unit_horizontal_location=Left -Geometry Building Horizontal Location SFA Middle ResStockArguments geometry_unit_horizontal_location=Middle -Geometry Building Horizontal Location SFA None -Geometry Building Horizontal Location SFA Right ResStockArguments geometry_unit_horizontal_location=Right -Geometry Building Level MF Bottom ResStockArguments geometry_unit_level=Bottom -Geometry Building Level MF Middle ResStockArguments geometry_unit_level=Middle -Geometry Building Level MF None -Geometry Building Level MF Top ResStockArguments geometry_unit_level=Top -Geometry Building Number Units MF 10 ResStockArguments geometry_building_num_units=10 -Geometry Building Number Units MF 102 ResStockArguments geometry_building_num_units=102 -Geometry Building Number Units MF 11 ResStockArguments geometry_building_num_units=11 -Geometry Building Number Units MF 116 ResStockArguments geometry_building_num_units=116 -Geometry Building Number Units MF 12 ResStockArguments geometry_building_num_units=12 -Geometry Building Number Units MF 13 ResStockArguments geometry_building_num_units=13 -Geometry Building Number Units MF 14 ResStockArguments geometry_building_num_units=14 -Geometry Building Number Units MF 15 ResStockArguments geometry_building_num_units=15 -Geometry Building Number Units MF 16 ResStockArguments geometry_building_num_units=16 -Geometry Building Number Units MF 17 ResStockArguments geometry_building_num_units=17 -Geometry Building Number Units MF 18 ResStockArguments geometry_building_num_units=18 -Geometry Building Number Units MF 183 ResStockArguments geometry_building_num_units=183 -Geometry Building Number Units MF 19 ResStockArguments geometry_building_num_units=19 -Geometry Building Number Units MF 2 ResStockArguments geometry_building_num_units=2 -Geometry Building Number Units MF 20 ResStockArguments geometry_building_num_units=20 -Geometry Building Number Units MF 21 ResStockArguments geometry_building_num_units=21 -Geometry Building Number Units MF 24 ResStockArguments geometry_building_num_units=24 -Geometry Building Number Units MF 3 ResStockArguments geometry_building_num_units=3 -Geometry Building Number Units MF 30 ResStockArguments geometry_building_num_units=30 -Geometry Building Number Units MF 323 ResStockArguments geometry_building_num_units=323 -Geometry Building Number Units MF 326 ResStockArguments geometry_building_num_units=326 -Geometry Building Number Units MF 36 ResStockArguments geometry_building_num_units=36 -Geometry Building Number Units MF 4 ResStockArguments geometry_building_num_units=4 -Geometry Building Number Units MF 43 ResStockArguments geometry_building_num_units=43 -Geometry Building Number Units MF 5 ResStockArguments geometry_building_num_units=5 -Geometry Building Number Units MF 6 ResStockArguments geometry_building_num_units=6 -Geometry Building Number Units MF 67 ResStockArguments geometry_building_num_units=67 -Geometry Building Number Units MF 7 ResStockArguments geometry_building_num_units=7 -Geometry Building Number Units MF 8 ResStockArguments geometry_building_num_units=8 -Geometry Building Number Units MF 9 ResStockArguments geometry_building_num_units=9 -Geometry Building Number Units MF None -Geometry Building Number Units SFA 10 ResStockArguments geometry_building_num_units=10 -Geometry Building Number Units SFA 12 ResStockArguments geometry_building_num_units=12 -Geometry Building Number Units SFA 144 ResStockArguments geometry_building_num_units=144 -Geometry Building Number Units SFA 15 ResStockArguments geometry_building_num_units=15 -Geometry Building Number Units SFA 16 ResStockArguments geometry_building_num_units=16 -Geometry Building Number Units SFA 2 ResStockArguments geometry_building_num_units=2 -Geometry Building Number Units SFA 20 ResStockArguments geometry_building_num_units=20 -Geometry Building Number Units SFA 24 ResStockArguments geometry_building_num_units=24 -Geometry Building Number Units SFA 3 ResStockArguments geometry_building_num_units=3 -Geometry Building Number Units SFA 30 ResStockArguments geometry_building_num_units=30 -Geometry Building Number Units SFA 36 ResStockArguments geometry_building_num_units=36 -Geometry Building Number Units SFA 4 ResStockArguments geometry_building_num_units=4 -Geometry Building Number Units SFA 5 ResStockArguments geometry_building_num_units=5 -Geometry Building Number Units SFA 50 ResStockArguments geometry_building_num_units=50 -Geometry Building Number Units SFA 6 ResStockArguments geometry_building_num_units=6 -Geometry Building Number Units SFA 60 ResStockArguments geometry_building_num_units=60 -Geometry Building Number Units SFA 7 ResStockArguments geometry_building_num_units=7 -Geometry Building Number Units SFA 8 ResStockArguments geometry_building_num_units=8 -Geometry Building Number Units SFA 9 ResStockArguments geometry_building_num_units=9 -Geometry Building Number Units SFA 90 ResStockArguments geometry_building_num_units=90 -Geometry Building Number Units SFA None -Geometry Building Type ACS 10 to 19 Unit -Geometry Building Type ACS 2 Unit -Geometry Building Type ACS 20 to 49 Unit -Geometry Building Type ACS 3 or 4 Unit -Geometry Building Type ACS 5 to 9 Unit -Geometry Building Type ACS 50 or more Unit -Geometry Building Type ACS Mobile Home -Geometry Building Type ACS Single-Family Attached -Geometry Building Type ACS Single-Family Detached -Geometry Building Type Height "Multifamily with 5+ units, 1-3 stories" -Geometry Building Type Height "Multifamily with 5+ units, 4-7 stories" -Geometry Building Type Height "Multifamily with 5+ units, 8+ stories" -Geometry Building Type Height Mobile Home -Geometry Building Type Height Multifamily with 2-4 Units -Geometry Building Type Height Single-Family Attached -Geometry Building Type Height Single-Family Detached -Geometry Building Type RECS Mobile Home ResStockArguments geometry_unit_type=single-family detached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=1.8 -Geometry Building Type RECS Multi-Family with 2 - 4 Units ResStockArguments geometry_unit_type=apartment unit geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 -Geometry Building Type RECS Multi-Family with 5+ Units ResStockArguments geometry_unit_type=apartment unit geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 -Geometry Building Type RECS Single-Family Attached ResStockArguments geometry_unit_type=single-family attached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 -Geometry Building Type RECS Single-Family Detached ResStockArguments geometry_unit_type=single-family detached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=1.8 -Geometry Floor Area 0-499 ResStockArguments geometry_unit_cfa_bin=0-499 geometry_unit_cfa=auto geometry_garage_protrusion=0.75 -Geometry Floor Area 1000-1499 ResStockArguments geometry_unit_cfa_bin=1000-1499 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 1500-1999 ResStockArguments geometry_unit_cfa_bin=1500-1999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 2000-2499 ResStockArguments geometry_unit_cfa_bin=2000-2499 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 2500-2999 ResStockArguments geometry_unit_cfa_bin=2500-2999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 3000-3999 ResStockArguments geometry_unit_cfa_bin=3000-3999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 4000+ ResStockArguments geometry_unit_cfa_bin=4000+ geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 500-749 ResStockArguments geometry_unit_cfa_bin=500-749 geometry_unit_cfa=auto geometry_garage_protrusion=0.75 -Geometry Floor Area 750-999 ResStockArguments geometry_unit_cfa_bin=750-999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area Bin 0-1499 -Geometry Floor Area Bin 1500-2499 -Geometry Floor Area Bin 2500-3999 -Geometry Floor Area Bin 4000+ -Geometry Foundation Type Ambient ResStockArguments geometry_foundation_type=Ambient geometry_foundation_height=4 geometry_foundation_height_above_grade=4 geometry_rim_joist_height=0 -Geometry Foundation Type Conditioned Crawlspace ResStockArguments geometry_foundation_type=ConditionedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Foundation Type Heated Basement ResStockArguments geometry_foundation_type=ConditionedBasement geometry_foundation_height=8 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Foundation Type Slab ResStockArguments geometry_foundation_type=SlabOnGrade geometry_foundation_height=0 geometry_foundation_height_above_grade=0 geometry_rim_joist_height=0 -Geometry Foundation Type Unheated Basement ResStockArguments geometry_foundation_type=UnconditionedBasement geometry_foundation_height=8 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Foundation Type Unvented Crawlspace ResStockArguments geometry_foundation_type=UnventedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Foundation Type Vented Crawlspace ResStockArguments geometry_foundation_type=VentedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Garage 1 Car ResStockArguments geometry_garage_width=12 geometry_garage_depth=24 geometry_garage_position=Right -Geometry Garage 2 Car ResStockArguments geometry_garage_width=24 geometry_garage_depth=24 geometry_garage_position=Right -Geometry Garage 3 Car ResStockArguments geometry_garage_width=36 geometry_garage_depth=24 geometry_garage_position=Right -Geometry Garage None ResStockArguments geometry_garage_width=0 geometry_garage_depth=24 geometry_garage_position=Right -Geometry Heated Basement No -Geometry Heated Basement Yes -Geometry Number Units ACS bins 10 to 19 Units -Geometry Number Units ACS bins 20 to 49 Units -Geometry Number Units ACS bins 5 to 9 Units -Geometry Number Units ACS bins 50 or more -Geometry Number Units ACS bins <5 -Geometry Space Combination "Mobile Home, Ambient, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Slab, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Slab, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage" -Geometry Space Combination Void -Geometry Stories 1 ResStockArguments geometry_num_floors_above_grade=1 -Geometry Stories 10 ResStockArguments geometry_num_floors_above_grade=10 -Geometry Stories 11 ResStockArguments geometry_num_floors_above_grade=11 -Geometry Stories 12 ResStockArguments geometry_num_floors_above_grade=12 -Geometry Stories 13 ResStockArguments geometry_num_floors_above_grade=13 -Geometry Stories 14 ResStockArguments geometry_num_floors_above_grade=14 -Geometry Stories 15 ResStockArguments geometry_num_floors_above_grade=15 -Geometry Stories 2 ResStockArguments geometry_num_floors_above_grade=2 -Geometry Stories 20 ResStockArguments geometry_num_floors_above_grade=20 -Geometry Stories 21 ResStockArguments geometry_num_floors_above_grade=21 -Geometry Stories 3 ResStockArguments geometry_num_floors_above_grade=3 -Geometry Stories 35 ResStockArguments geometry_num_floors_above_grade=35 -Geometry Stories 4 ResStockArguments geometry_num_floors_above_grade=4 -Geometry Stories 5 ResStockArguments geometry_num_floors_above_grade=5 -Geometry Stories 6 ResStockArguments geometry_num_floors_above_grade=6 -Geometry Stories 7 ResStockArguments geometry_num_floors_above_grade=7 -Geometry Stories 8 ResStockArguments geometry_num_floors_above_grade=8 -Geometry Stories 9 ResStockArguments geometry_num_floors_above_grade=9 -Geometry Stories Low Rise 1 -Geometry Stories Low Rise 2 -Geometry Stories Low Rise 3 -Geometry Stories Low Rise 4+ -Geometry Story Bin 8+ -Geometry Story Bin <8 -Geometry Wall Exterior Finish "Aluminum, Light" ResStockArguments wall_siding_type=aluminum siding wall_color=light exterior_finish_r=0.6 -Geometry Wall Exterior Finish "Brick, Light" ResStockArguments wall_siding_type=brick veneer wall_color=light exterior_finish_r=0.7 -Geometry Wall Exterior Finish "Brick, Medium/Dark" ResStockArguments wall_siding_type=brick veneer wall_color=medium dark exterior_finish_r=0.7 -Geometry Wall Exterior Finish "Fiber-Cement, Light" ResStockArguments wall_siding_type=fiber cement siding wall_color=light exterior_finish_r=0.2 -Geometry Wall Exterior Finish "Shingle, Asbestos, Medium" ResStockArguments wall_siding_type=asbestos siding wall_color=medium exterior_finish_r=0.6 -Geometry Wall Exterior Finish "Shingle, Composition, Medium" ResStockArguments wall_siding_type=composite shingle siding wall_color=medium exterior_finish_r=0.6 -Geometry Wall Exterior Finish "Stucco, Light" ResStockArguments wall_siding_type=stucco wall_color=light exterior_finish_r=0.2 -Geometry Wall Exterior Finish "Stucco, Medium/Dark" ResStockArguments wall_siding_type=stucco wall_color=medium dark exterior_finish_r=0.2 -Geometry Wall Exterior Finish "Vinyl, Light" ResStockArguments wall_siding_type=vinyl siding wall_color=light exterior_finish_r=0.6 -Geometry Wall Exterior Finish "Wood, Medium/Dark" ResStockArguments wall_siding_type=wood siding wall_color=medium dark exterior_finish_r=1.4 -Geometry Wall Exterior Finish None ResStockArguments wall_siding_type=none wall_color=medium exterior_finish_r=0 -Geometry Wall Type Brick -Geometry Wall Type Concrete -Geometry Wall Type Steel Frame -Geometry Wall Type Void -Geometry Wall Type Wood Frame -Ground Thermal Conductivity 0.5 ResStockArguments site_ground_conductivity=0.5 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 0.8 ResStockArguments site_ground_conductivity=0.8 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 1.1 ResStockArguments site_ground_conductivity=1.1 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 1.4 ResStockArguments site_ground_conductivity=1.4 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 1.7 ResStockArguments site_ground_conductivity=1.7 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 2 ResStockArguments site_ground_conductivity=2.0 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 2.3 ResStockArguments site_ground_conductivity=2.3 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 2.6 ResStockArguments site_ground_conductivity=2.6 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -HVAC Cooling Autosizing Factor 40% Oversized ResStockArguments cooling_system_cooling_autosizing_factor=1.4 heat_pump_cooling_autosizing_factor=auto -HVAC Cooling Autosizing Factor None -HVAC Cooling Efficiency "AC, SEER 10" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=10 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 13" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 14" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=14 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 15" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=15 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 18" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=18 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 24.5" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=24.5 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 8" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=8 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "Room AC, EER 10.7" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=10.7 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "Room AC, EER 12.0" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=12 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "Room AC, EER 8.5" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=8.5 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "Room AC, EER 9.8" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=9.8 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency Ducted Heat Pump ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency Evaporative Cooler ResStockArguments cooling_system_type=evaporative cooler cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency Non-Ducted Heat Pump ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency None ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency Shared Cooling -HVAC Cooling Partial Space Conditioning 100% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=1 -HVAC Cooling Partial Space Conditioning 20% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.2 -HVAC Cooling Partial Space Conditioning 40% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.4 -HVAC Cooling Partial Space Conditioning 60% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.6 -HVAC Cooling Partial Space Conditioning 80% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.8 -HVAC Cooling Partial Space Conditioning <10% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.1 -HVAC Cooling Partial Space Conditioning None ResStockArguments cooling_system_fraction_cool_load_served=0 -HVAC Cooling Partial Space Conditioning Void -HVAC Cooling Type Central AC -HVAC Cooling Type Ducted Heat Pump -HVAC Cooling Type Evaporative or Swamp Cooler -HVAC Cooling Type Non-Ducted Heat Pump -HVAC Cooling Type None -HVAC Cooling Type Room AC -HVAC Detailed Performance Data Default ResStockArguments hvac_perf_data_capacity_type=auto hvac_perf_data_heating_outdoor_temperatures=auto hvac_perf_data_heating_min_speed_capacities=auto hvac_perf_data_heating_max_speed_capacities=auto hvac_perf_data_heating_min_speed_cops=auto hvac_perf_data_heating_max_speed_cops=auto hvac_perf_data_cooling_outdoor_temperatures=auto hvac_perf_data_cooling_min_speed_capacities=auto hvac_perf_data_cooling_max_speed_capacities=auto hvac_perf_data_cooling_min_speed_cops=auto hvac_perf_data_cooling_max_speed_cops=auto -HVAC Has Ducts No ResStockArguments hvac_blower_fan_watts_per_cfm=auto -HVAC Has Ducts Void -HVAC Has Ducts Yes ResStockArguments hvac_blower_fan_watts_per_cfm=auto -HVAC Has Shared System Cooling Only -HVAC Has Shared System Heating Only -HVAC Has Shared System Heating and Cooling -HVAC Has Shared System None -HVAC Has Shared System Void -HVAC Has Zonal Electric Heating No -HVAC Has Zonal Electric Heating Yes -HVAC Heating Autosizing Factor 40% Oversized ResStockArguments heating_system_heating_autosizing_factor=1.4 heating_system_2_heating_autosizing_factor=auto heat_pump_heating_autosizing_factor=auto heat_pump_backup_heating_autosizing_factor=auto -HVAC Heating Autosizing Factor None -HVAC Heating Efficiency "ASHP, SEER 10, 6.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=6.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 10.3, 7.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 11.5, 7.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=11.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 13, 7.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=13 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 13, 8.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=13 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 14, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 14.3, 8.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 15, 8.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 15, 9.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 16, 9.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 17, 8.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 18, 9.3 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 22, 10 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=10 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=22 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 14, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Electric Baseboard, 100% Efficiency" ResStockArguments heating_system_type=ElectricResistance heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Electric Boiler, 100% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Electric Furnace, 100% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Electric Wall Furnace, 100% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 72% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.72 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.76 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.8 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 82% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.82 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 85% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.85 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.9 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 95% AFUE, OAT Reset" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.95 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 96% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.96 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 60% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.6 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 68% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.68 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 72% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.72 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 76% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.76 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 80% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.8 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 85% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.85 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 90% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.9 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 92.5% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.925 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 96% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.96 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Wall/Floor Furnace, 60% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=0.6 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Wall/Floor Furnace, 68% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=0.68 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "GSHP, EER 16.6, COP 3.6" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=3.6 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=16.6 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=vertical geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "GSHP, EER 20.2, COP 4.2" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=4.2 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=20.2 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=vertical geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 14.5, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 14.5, 8.2 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 17, 9.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 17, 9.5 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 18.0, 9.6 HSPF, 60% Conditioned" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.6 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=0.6 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=0.6 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 18.0, 9.6 HSPF, 60% Conditioned, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.6 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=0.6 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=0.6 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 25, 12.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=12.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=25.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 25, 12.7 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=12.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=25.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 29.3, 14 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=14 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=29.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 29.3, 14 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=14 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=29.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 33, 13.3 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=13.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=33.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 33, 13.3 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=13.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=33.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency None ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=6.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency Shared Heating -HVAC Heating Efficiency Void -HVAC Heating Type Ducted Heat Pump -HVAC Heating Type Ducted Heating -HVAC Heating Type Non-Ducted Heat Pump -HVAC Heating Type Non-Ducted Heating -HVAC Heating Type None -HVAC Heating Type And Fuel Electricity ASHP -HVAC Heating Type And Fuel Electricity Baseboard -HVAC Heating Type And Fuel Electricity Electric Boiler -HVAC Heating Type And Fuel Electricity Electric Furnace -HVAC Heating Type And Fuel Electricity Electric Wall Furnace -HVAC Heating Type And Fuel Electricity MSHP -HVAC Heating Type And Fuel Electricity Other -HVAC Heating Type And Fuel Electricity Shared Heating -HVAC Heating Type And Fuel Fuel Oil Fuel Boiler -HVAC Heating Type And Fuel Fuel Oil Fuel Furnace -HVAC Heating Type And Fuel Fuel Oil Fuel Wall/Floor Furnace -HVAC Heating Type And Fuel Fuel Oil Shared Heating -HVAC Heating Type And Fuel Natural Gas Fuel Boiler -HVAC Heating Type And Fuel Natural Gas Fuel Furnace -HVAC Heating Type And Fuel Natural Gas Fuel Wall/Floor Furnace -HVAC Heating Type And Fuel Natural Gas Shared Heating -HVAC Heating Type And Fuel None -HVAC Heating Type And Fuel Other Fuel Fuel Boiler -HVAC Heating Type And Fuel Other Fuel Fuel Furnace -HVAC Heating Type And Fuel Other Fuel Fuel Wall/Floor Furnace -HVAC Heating Type And Fuel Other Fuel Shared Heating -HVAC Heating Type And Fuel Propane Fuel Boiler -HVAC Heating Type And Fuel Propane Fuel Furnace -HVAC Heating Type And Fuel Propane Fuel Wall/Floor Furnace -HVAC Heating Type And Fuel Propane Shared Heating -HVAC Heating Type And Fuel Void -HVAC Secondary Heating Efficiency "Electric Baseboard, 100% Efficiency" ResStockArguments heating_system_2_type=ElectricResistance heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Electric Portable Heater, 100% Efficiency" ResStockArguments heating_system_2_type=SpaceHeater heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Boiler, 60% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.76 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.8 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.90 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Boiler, 92.5% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.925 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Fireplace, 60% AFUE" ResStockArguments heating_system_2_type=Fireplace heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Furnace, 60% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Furnace, 76% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.76 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Furnace, 80% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.8 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Furnace, 92.5% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.925 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency None ResStockArguments heating_system_2_type=none heating_system_2_heating_efficiency=0 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency Shared Heating ResStockArguments heating_system_2_type=none heating_system_2_heating_efficiency=0 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency Void -HVAC Secondary Heating Fuel Electricity ResStockArguments heating_system_2_fuel=electricity -HVAC Secondary Heating Fuel Fuel Oil ResStockArguments heating_system_2_fuel=fuel oil -HVAC Secondary Heating Fuel Natural Gas ResStockArguments heating_system_2_fuel=natural gas -HVAC Secondary Heating Fuel None ResStockArguments heating_system_2_fuel=electricity -HVAC Secondary Heating Fuel Other Fuel ResStockArguments heating_system_2_fuel=wood -HVAC Secondary Heating Fuel Propane ResStockArguments heating_system_2_fuel=propane -HVAC Secondary Heating Fuel Wood ResStockArguments heating_system_2_fuel=wood -HVAC Secondary Heating Partial Space Conditioning 0% ResStockArguments heating_system_2_fraction_heat_load_served=0 -HVAC Secondary Heating Partial Space Conditioning 10% ResStockArguments heating_system_2_fraction_heat_load_served=0.1 -HVAC Secondary Heating Partial Space Conditioning 20% ResStockArguments heating_system_2_fraction_heat_load_served=0.2 -HVAC Secondary Heating Partial Space Conditioning 30% ResStockArguments heating_system_2_fraction_heat_load_served=0.3 -HVAC Secondary Heating Partial Space Conditioning 40% ResStockArguments heating_system_2_fraction_heat_load_served=0.4 -HVAC Secondary Heating Partial Space Conditioning 49% ResStockArguments heating_system_2_fraction_heat_load_served=0.49 -HVAC Secondary Heating Partial Space Conditioning None ResStockArguments heating_system_2_fraction_heat_load_served=0 -HVAC Secondary Heating Partial Space Conditioning Void -HVAC Secondary Heating Type Ducted Heating -HVAC Secondary Heating Type Non-Ducted Heating -HVAC Secondary Heating Type None -HVAC Shared Efficiencies "Boiler Baseboards Heating Only, Electricity" ResStockArguments heating_system_type=Shared Boiler w/ Baseboard heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Shared Efficiencies "Boiler Baseboards Heating Only, Fuel" ResStockArguments heating_system_type=Shared Boiler w/ Baseboard heating_system_heating_efficiency=0.78 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Shared Efficiencies "Fan Coil Heating and Cooling, Electricity" ResStockArguments heating_system_type=Shared Boiler w/ Ductless Fan Coil heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Shared Efficiencies "Fan Coil Heating and Cooling, Fuel" ResStockArguments heating_system_type=Shared Boiler w/ Ductless Fan Coil heating_system_heating_efficiency=0.78 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Shared Efficiencies Fan Coil Cooling Only ResStockArguments cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false -HVAC Shared Efficiencies None -HVAC Shared Efficiencies Void -HVAC System Is Faulted No -HVAC System Is Faulted Yes -HVAC System Is Scaled No -HVAC System Is Scaled Yes -HVAC System Single Speed AC Airflow 154.8 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=154.8 -HVAC System Single Speed AC Airflow 204.4 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=204.4 -HVAC System Single Speed AC Airflow 254.0 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=254.0 -HVAC System Single Speed AC Airflow 303.5 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=303.5 -HVAC System Single Speed AC Airflow 353.1 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=353.1 -HVAC System Single Speed AC Airflow 402.7 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=402.7 -HVAC System Single Speed AC Airflow 452.3 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=452.3 -HVAC System Single Speed AC Airflow 501.9 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=501.9 -HVAC System Single Speed AC Airflow 551.5 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=551.5 -HVAC System Single Speed AC Airflow 601.0 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=601.0 -HVAC System Single Speed AC Airflow 650.6 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=650.6 -HVAC System Single Speed AC Airflow 700.2 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=700.2 -HVAC System Single Speed AC Airflow None -HVAC System Single Speed AC Charge 0.570 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.570 -HVAC System Single Speed AC Charge 0.709 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.709 -HVAC System Single Speed AC Charge 0.848 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.848 -HVAC System Single Speed AC Charge 0.988 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.988 -HVAC System Single Speed AC Charge 1.127 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.127 -HVAC System Single Speed AC Charge 1.266 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.266 -HVAC System Single Speed AC Charge 1.405 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.405 -HVAC System Single Speed AC Charge None -HVAC System Single Speed ASHP Airflow 154.8 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=154.8 -HVAC System Single Speed ASHP Airflow 204.4 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=204.4 -HVAC System Single Speed ASHP Airflow 254.0 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=254.0 -HVAC System Single Speed ASHP Airflow 303.5 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=303.5 -HVAC System Single Speed ASHP Airflow 353.1 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=353.1 -HVAC System Single Speed ASHP Airflow 402.7 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=402.7 -HVAC System Single Speed ASHP Airflow 452.3 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=452.3 -HVAC System Single Speed ASHP Airflow 501.9 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=501.9 -HVAC System Single Speed ASHP Airflow 551.5 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=551.5 -HVAC System Single Speed ASHP Airflow 601.0 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=601.0 -HVAC System Single Speed ASHP Airflow 650.6 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=650.6 -HVAC System Single Speed ASHP Airflow 700.2 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=700.2 -HVAC System Single Speed ASHP Airflow None -HVAC System Single Speed ASHP Charge 0.570 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.570 -HVAC System Single Speed ASHP Charge 0.709 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.709 -HVAC System Single Speed ASHP Charge 0.848 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.848 -HVAC System Single Speed ASHP Charge 0.988 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.988 -HVAC System Single Speed ASHP Charge 1.127 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.127 -HVAC System Single Speed ASHP Charge 1.266 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.266 -HVAC System Single Speed ASHP Charge 1.405 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.405 -HVAC System Single Speed ASHP Charge None -Has PV No -Has PV Yes -Heat Pump Backup Use Existing System ResStockArguments heat_pump_backup_use_existing_system=true -Heating Fuel Electricity ResStockArguments heating_system_fuel=electricity -Heating Fuel Fuel Oil ResStockArguments heating_system_fuel=fuel oil -Heating Fuel Natural Gas ResStockArguments heating_system_fuel=natural gas -Heating Fuel None ResStockArguments heating_system_fuel=natural gas -Heating Fuel Other Fuel ResStockArguments heating_system_fuel=wood -Heating Fuel Propane ResStockArguments heating_system_fuel=propane -Heating Fuel Wood ResStockArguments heating_system_fuel=wood -Heating Setpoint 55F ResStockArguments hvac_control_heating_weekday_setpoint_temp=55 hvac_control_heating_weekend_setpoint_temp=55 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 60F ResStockArguments hvac_control_heating_weekday_setpoint_temp=60 hvac_control_heating_weekend_setpoint_temp=60 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 62F ResStockArguments hvac_control_heating_weekday_setpoint_temp=62 hvac_control_heating_weekend_setpoint_temp=62 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 63F ResStockArguments hvac_control_heating_weekday_setpoint_temp=63 hvac_control_heating_weekend_setpoint_temp=63 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 64F ResStockArguments hvac_control_heating_weekday_setpoint_temp=64 hvac_control_heating_weekend_setpoint_temp=64 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 65F ResStockArguments hvac_control_heating_weekday_setpoint_temp=65 hvac_control_heating_weekend_setpoint_temp=65 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 66F ResStockArguments hvac_control_heating_weekday_setpoint_temp=66 hvac_control_heating_weekend_setpoint_temp=66 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 67F ResStockArguments hvac_control_heating_weekday_setpoint_temp=67 hvac_control_heating_weekend_setpoint_temp=67 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 68F ResStockArguments hvac_control_heating_weekday_setpoint_temp=68 hvac_control_heating_weekend_setpoint_temp=68 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 69F ResStockArguments hvac_control_heating_weekday_setpoint_temp=69 hvac_control_heating_weekend_setpoint_temp=69 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 70F ResStockArguments hvac_control_heating_weekday_setpoint_temp=70 hvac_control_heating_weekend_setpoint_temp=70 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 71F ResStockArguments hvac_control_heating_weekday_setpoint_temp=71 hvac_control_heating_weekend_setpoint_temp=71 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 71F w/ Building America season ResStockArguments hvac_control_heating_weekday_setpoint_temp=71 hvac_control_heating_weekend_setpoint_temp=71 use_auto_heating_season=true hvac_control_heating_season_period=auto -Heating Setpoint 72F ResStockArguments hvac_control_heating_weekday_setpoint_temp=72 hvac_control_heating_weekend_setpoint_temp=72 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 73F ResStockArguments hvac_control_heating_weekday_setpoint_temp=73 hvac_control_heating_weekend_setpoint_temp=73 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 74F ResStockArguments hvac_control_heating_weekday_setpoint_temp=74 hvac_control_heating_weekend_setpoint_temp=74 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 75F ResStockArguments hvac_control_heating_weekday_setpoint_temp=75 hvac_control_heating_weekend_setpoint_temp=75 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 76F ResStockArguments hvac_control_heating_weekday_setpoint_temp=76 hvac_control_heating_weekend_setpoint_temp=76 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 78F ResStockArguments hvac_control_heating_weekday_setpoint_temp=78 hvac_control_heating_weekend_setpoint_temp=78 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 80F ResStockArguments hvac_control_heating_weekday_setpoint_temp=80 hvac_control_heating_weekend_setpoint_temp=80 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint Has Offset No -Heating Setpoint Has Offset Yes -Heating Setpoint Offset Magnitude 0F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=0 hvac_control_heating_weekend_setpoint_offset_magnitude=0 -Heating Setpoint Offset Magnitude 12F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=12 hvac_control_heating_weekend_setpoint_offset_magnitude=12 -Heating Setpoint Offset Magnitude 3F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=3 hvac_control_heating_weekend_setpoint_offset_magnitude=3 -Heating Setpoint Offset Magnitude 6F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=6 hvac_control_heating_weekend_setpoint_offset_magnitude=6 -Heating Setpoint Offset Period Day ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day and Night ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1" -Heating Setpoint Offset Period Day and Night +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1" -Heating Setpoint Offset Period Day and Night +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Heating Setpoint Offset Period Day and Night +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Heating Setpoint Offset Period Day and Night +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0" -Heating Setpoint Offset Period Day and Night +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0" -Heating Setpoint Offset Period Day and Night -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1" -Heating Setpoint Offset Period Day and Night -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1" -Heating Setpoint Offset Period Day and Night -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1" -Heating Setpoint Offset Period Day and Night -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1" -Heating Setpoint Offset Period Day and Night -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" -Heating Setpoint Offset Period Night ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" -Heating Setpoint Offset Period Night +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" -Heating Setpoint Offset Period Night +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Night +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Night +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Night +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Night -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" -Heating Setpoint Offset Period Night -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" -Heating Setpoint Offset Period Night -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" -Heating Setpoint Offset Period Night -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" -Heating Setpoint Offset Period Night -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" -Heating Setpoint Offset Period None ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Holiday Lighting No Exterior Use ResStockArguments holiday_lighting_present=false holiday_lighting_daily_kwh=0 holiday_lighting_period=auto -Holiday Lighting None ResStockArguments holiday_lighting_present=false holiday_lighting_daily_kwh=0 holiday_lighting_period=auto -Hot Water Distribution "R-2, Demand" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=presence sensor demand control hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Distribution "R-2, Timer" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=timer hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Distribution "R-5, Timer" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=timer hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=5 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Distribution R-2 ResStockArguments hot_water_distribution_system_type=Standard hot_water_distribution_standard_piping_length=auto hot_water_distribution_recirc_control_type=no control hot_water_distribution_recirc_piping_length=0 hot_water_distribution_recirc_branch_piping_length=0 hot_water_distribution_recirc_pump_power=0 hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Distribution Uninsulated ResStockArguments hot_water_distribution_system_type=Standard hot_water_distribution_standard_piping_length=auto hot_water_distribution_recirc_control_type=no control hot_water_distribution_recirc_piping_length=0 hot_water_distribution_recirc_branch_piping_length=0 hot_water_distribution_recirc_pump_power=0 hot_water_distribution_pipe_r=0 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Fixtures "100% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=1.0 -Hot Water Fixtures "200% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=2.0 -Hot Water Fixtures "50% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=0.5 -Hot Water Fixtures 100% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.0 -Hot Water Fixtures 110% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.1 -Hot Water Fixtures 120% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.2 -Hot Water Fixtures 130% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.3 -Hot Water Fixtures 140% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.4 -Hot Water Fixtures 150% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.5 -Hot Water Fixtures 160% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.6 -Hot Water Fixtures 170% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.7 -Hot Water Fixtures 180% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.8 -Hot Water Fixtures 190% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.9 -Hot Water Fixtures 200% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=2.0 -Hot Water Fixtures 40% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.4 -Hot Water Fixtures 50% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.5 -Hot Water Fixtures 60% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.6 -Hot Water Fixtures 70% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.7 -Hot Water Fixtures 80% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.8 -Hot Water Fixtures 90% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.9 -Household Has Tribal Persons No -Household Has Tribal Persons Not Available -Household Has Tribal Persons Yes -ISO RTO Region CAISO -ISO RTO Region ERCOT -ISO RTO Region MISO -ISO RTO Region NEISO -ISO RTO Region NYISO -ISO RTO Region None -ISO RTO Region PJM -ISO RTO Region SPP -Income 10000-14999 -Income 100000-119999 -Income 120000-139999 -Income 140000-159999 -Income 15000-19999 -Income 160000-179999 -Income 180000-199999 -Income 20000-24999 -Income 200000+ -Income 25000-29999 -Income 30000-34999 -Income 35000-39999 -Income 40000-44999 -Income 45000-49999 -Income 50000-59999 -Income 60000-69999 -Income 70000-79999 -Income 80000-99999 -Income <10000 -Income Not Available -Income RECS2015 100000-119999 -Income RECS2015 120000-139999 -Income RECS2015 140000+ -Income RECS2015 20000-39999 -Income RECS2015 40000-59999 -Income RECS2015 60000-79999 -Income RECS2015 80000-99999 -Income RECS2015 <20000 -Income RECS2015 Not Available -Income RECS2020 100000-149999 -Income RECS2020 150000+ -Income RECS2020 20000-39999 -Income RECS2020 40000-59999 -Income RECS2020 60000-99999 -Income RECS2020 <20000 -Income RECS2020 Not Available -Infiltration "7 ACH50, 0.5 Shelter Coefficient" ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 0.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 0.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 0.75 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.75 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 1 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=1 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 1.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=1.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 10 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=10 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 11.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=11.25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 15 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=15 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 18.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=18.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 2 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=2 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 2.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=2.25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 20 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=20 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 3 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=3 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 3.75 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=3.75 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 30 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=30 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 4 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=4 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 4.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=4.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 40 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=40 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 5.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=5.25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 50 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=50 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 6 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=6 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 7 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 7.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 8 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=8 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration Reduction 15% ResStockArguments air_leakage_percent_reduction=15 -Infiltration Reduction 20% ResStockArguments air_leakage_percent_reduction=20 -Infiltration Reduction 25% ResStockArguments air_leakage_percent_reduction=25 -Insulation Ceiling None ResStockArguments ceiling_assembly_r=0 ceiling_insulation_r=0 -Insulation Ceiling R-13 ResStockArguments ceiling_assembly_r=14.6 ceiling_insulation_r=13 -Insulation Ceiling R-19 ResStockArguments ceiling_assembly_r=20.6 ceiling_insulation_r=19 -Insulation Ceiling R-30 ResStockArguments ceiling_assembly_r=31.6 ceiling_insulation_r=30 -Insulation Ceiling R-38 ResStockArguments ceiling_assembly_r=39.6 ceiling_insulation_r=38 -Insulation Ceiling R-49 ResStockArguments ceiling_assembly_r=50.6 ceiling_insulation_r=49 -Insulation Ceiling R-60 ResStockArguments ceiling_assembly_r=61.6 ceiling_insulation_r=60 -Insulation Ceiling R-7 ResStockArguments ceiling_assembly_r=8.7 ceiling_insulation_r=7 -Insulation Ceiling Uninsulated ResStockArguments ceiling_assembly_r=2.1 ceiling_insulation_r=0 -Insulation Floor Ceiling R-13 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=17.8 floor_over_garage_assembly_r=17.8 -Insulation Floor Ceiling R-19 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=22.6 floor_over_garage_assembly_r=22.6 -Insulation Floor Ceiling R-30 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=30.3 floor_over_garage_assembly_r=30.3 -Insulation Floor Ceiling R-38 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=35.1 floor_over_garage_assembly_r=35.1 -Insulation Floor None ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=0 floor_over_garage_assembly_r=5.3 -Insulation Floor Uninsulated ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=5.3 floor_over_garage_assembly_r=5.3 -Insulation Foundation Wall "Wall R-10, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=10 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto -Insulation Foundation Wall "Wall R-13, Interior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=13 foundation_wall_insulation_location=interior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto -Insulation Foundation Wall "Wall R-15, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=15 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto -Insulation Foundation Wall "Wall R-5, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=5 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto -Insulation Foundation Wall None ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=0 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=0 foundation_wall_assembly_r=auto -Insulation Foundation Wall Uninsulated ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=0 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=0 foundation_wall_assembly_r=auto -Insulation Rim Joist "R-10, Exterior" ResStockArguments rim_joist_continuous_exterior_r=10 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Rim Joist "R-13, Interior" ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=13 rim_joist_assembly_interior_r=10.4 rim_joist_assembly_r=auto -Insulation Rim Joist "R-15, Exterior" ResStockArguments rim_joist_continuous_exterior_r=15 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Rim Joist "R-5, Exterior" ResStockArguments rim_joist_continuous_exterior_r=5 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Rim Joist None ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Rim Joist Uninsulated ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Roof "Finished, R-13" ResStockArguments roof_assembly_r=14.3 -Insulation Roof "Finished, R-19" ResStockArguments roof_assembly_r=21.2 -Insulation Roof "Finished, R-30" ResStockArguments roof_assembly_r=29.7 -Insulation Roof "Finished, R-38" ResStockArguments roof_assembly_r=36.5 -Insulation Roof "Finished, R-49" ResStockArguments roof_assembly_r=47.0 -Insulation Roof "Finished, R-7" ResStockArguments roof_assembly_r=10.2 -Insulation Roof "Finished, Uninsulated" ResStockArguments roof_assembly_r=3.7 -Insulation Roof "Unfinished, Uninsulated" ResStockArguments roof_assembly_r=2.3 -Insulation Sheathing R-10 ResStockArguments wall_continuous_exterior_r=10 -Insulation Sheathing R-15 ResStockArguments wall_continuous_exterior_r=15 -Insulation Sheathing R-5 ResStockArguments wall_continuous_exterior_r=5 -Insulation Slab "2ft R10 Perimeter, Vertical" ResStockArguments slab_perimeter_insulation_r=10 slab_perimeter_depth=2 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "2ft R10 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=10 slab_under_width=2 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "2ft R5 Perimeter, Vertical" ResStockArguments slab_perimeter_insulation_r=5 slab_perimeter_depth=2 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "2ft R5 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=5 slab_under_width=2 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "4ft R5 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=5 slab_under_width=4 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "R10 Whole Slab, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=10 slab_under_width=999 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab None ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab Uninsulated ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Wall "Brick, 12-in, 3-wythe, R-11" ResStockArguments wall_type=StructuralBrick wall_assembly_r=13.3 -Insulation Wall "Brick, 12-in, 3-wythe, R-15" ResStockArguments wall_type=StructuralBrick wall_assembly_r=15.9 -Insulation Wall "Brick, 12-in, 3-wythe, R-19" ResStockArguments wall_type=StructuralBrick wall_assembly_r=18.3 -Insulation Wall "Brick, 12-in, 3-wythe, R-7" ResStockArguments wall_type=StructuralBrick wall_assembly_r=10.3 -Insulation Wall "Brick, 12-in, 3-wythe, Uninsulated" ResStockArguments wall_type=StructuralBrick wall_assembly_r=4.9 -Insulation Wall "CMU, 12-in Hollow" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=4.9 -Insulation Wall "CMU, 12-in Hollow, R-10" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=12.9 -Insulation Wall "CMU, 6-in Concrete Filled" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=3.7 -Insulation Wall "CMU, 6-in Concrete-Filled, R-10" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=11.4 -Insulation Wall "CMU, 6-in Hollow, R-11" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=12.4 -Insulation Wall "CMU, 6-in Hollow, R-15" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=15 -Insulation Wall "CMU, 6-in Hollow, R-19" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=17.4 -Insulation Wall "CMU, 6-in Hollow, R-7" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=9.4 -Insulation Wall "CMU, 6-in Hollow, Uninsulated" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=4 -Insulation Wall "Double Wood Stud, R-33" ResStockArguments wall_type=DoubleWoodStud wall_assembly_r=28.1 -Insulation Wall "Double Wood Stud, R-45, Grade 3" ResStockArguments wall_type=DoubleWoodStud wall_assembly_r=25.1 -Insulation Wall "Generic, 10-in Grid ICF" ResStockArguments wall_type=WoodStud wall_assembly_r=12.4 -Insulation Wall "Generic, T-Mass Wall w/Metal Ties" ResStockArguments wall_type=WoodStud wall_assembly_r=9 -Insulation Wall "ICF, 2-in EPS, 12-in Concrete, 2-in EPS" ResStockArguments wall_type=InsulatedConcreteForms wall_assembly_r=22.5 -Insulation Wall "ICF, 2-in EPS, 4-in Concrete, 2-in EPS" ResStockArguments wall_type=InsulatedConcreteForms wall_assembly_r=20.4 -Insulation Wall "SIP, 3.6 in EPS Core, OSB int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=15.5 -Insulation Wall "SIP, 9.4 in EPS Core, Gypsum int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=35.8 -Insulation Wall "SIP, 9.4 in EPS Core, OSB int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=36 -Insulation Wall "Steel Stud, R-13" ResStockArguments wall_type=SteelFrame wall_assembly_r=7.9 -Insulation Wall "Steel Stud, R-25, Grade 3" ResStockArguments wall_type=SteelFrame wall_assembly_r=10.4 -Insulation Wall "Steel Stud, Uninsulated" ResStockArguments wall_type=SteelFrame wall_assembly_r=3 -Insulation Wall "Wood Stud, R-11" ResStockArguments wall_type=WoodStud wall_assembly_r=10.3 -Insulation Wall "Wood Stud, R-11, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=15.3 -Insulation Wall "Wood Stud, R-13" ResStockArguments wall_type=WoodStud wall_assembly_r=11.3 -Insulation Wall "Wood Stud, R-13, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=16.3 -Insulation Wall "Wood Stud, R-15" ResStockArguments wall_type=WoodStud wall_assembly_r=12.1 -Insulation Wall "Wood Stud, R-15, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=17.1 -Insulation Wall "Wood Stud, R-19" ResStockArguments wall_type=WoodStud wall_assembly_r=15.4 -Insulation Wall "Wood Stud, R-19, Grade 2" ResStockArguments wall_type=WoodStud wall_assembly_r=14.5 -Insulation Wall "Wood Stud, R-19, Grade 2, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=19.5 -Insulation Wall "Wood Stud, R-19, Grade 3" ResStockArguments wall_type=WoodStud wall_assembly_r=13.4 -Insulation Wall "Wood Stud, R-19, Grade 3, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=18.4 -Insulation Wall "Wood Stud, R-19, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=20.4 -Insulation Wall "Wood Stud, R-23 Closed Cell Spray Foam, 2x4, 16 in o.c." ResStockArguments wall_type=WoodStud wall_assembly_r=14.7 -Insulation Wall "Wood Stud, R-23 Closed Cell Spray Foam, 2x4, 16 in o.c., R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=19.7 -Insulation Wall "Wood Stud, R-36" ResStockArguments wall_type=WoodStud wall_assembly_r=22.3 -Insulation Wall "Wood Stud, R-36, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=27.3 -Insulation Wall "Wood Stud, R-7" ResStockArguments wall_type=WoodStud wall_assembly_r=8.7 -Insulation Wall "Wood Stud, R-7, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=13.7 -Insulation Wall "Wood Stud, Uninsulated" ResStockArguments wall_type=WoodStud wall_assembly_r=3.4 -Insulation Wall "Wood Stud, Uninsulated, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=8.4 -Insulation Wall Void -Interior Shading "Summer = 0.5, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.5 window_interior_shading_winter=0.7 -Interior Shading "Summer = 0.5, Winter = 0.95" ResStockArguments window_interior_shading_summer=0.5 window_interior_shading_winter=0.95 -Interior Shading "Summer = 0.6, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.6 window_interior_shading_winter=0.7 -Interior Shading "Summer = 0.7, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.7 -Interior Shading "Summer = 0.7, Winter = 0.85" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.85 -Interior Shading "Summer = 0.7, Winter = 0.95" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.95 -Lighting 100% CFL ResStockArguments lighting_present=true lighting_interior_fraction_cfl=1 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=1 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=1 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 -Lighting 100% Incandescent ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 -Lighting 100% LED ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=1 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=1 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=1 -Lighting 20% LED ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0.2 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0.2 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0.2 -Lighting 60% CFL ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0.6 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0.6 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0.6 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 -Lighting None ResStockArguments lighting_present=false lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 -Lighting Interior Use 100% Usage ResStockArguments lighting_interior_usage_multiplier=1.0 -Lighting Interior Use 95% Usage ResStockArguments lighting_interior_usage_multiplier=0.95 -Lighting Interior Use None ResStockArguments lighting_interior_usage_multiplier=0.0 -Lighting Other Use 100% Usage ResStockArguments lighting_exterior_usage_multiplier=1.0 lighting_garage_usage_multiplier=1.0 -Lighting Other Use 95% Usage ResStockArguments lighting_exterior_usage_multiplier=0.95 lighting_garage_usage_multiplier=0.95 -Lighting Other Use None ResStockArguments lighting_exterior_usage_multiplier=0.0 lighting_garage_usage_multiplier=0.0 -Location Region CR02 -Location Region CR03 -Location Region CR04 -Location Region CR05 -Location Region CR06 -Location Region CR07 -Location Region CR08 -Location Region CR09 -Location Region CR10 -Location Region CR11 -Location Region CRAK -Location Region CRHI -Mechanical Ventilation "ERV, 72%" ResStockArguments mech_vent_fan_type=energy recovery ventilator mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0.48 mech_vent_sensible_recovery_efficiency=0.72 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Mechanical Ventilation "HRV, 60%" ResStockArguments mech_vent_fan_type=heat recovery ventilator mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0.6 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Mechanical Ventilation Exhaust ResStockArguments mech_vent_fan_type=exhaust only mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Mechanical Ventilation None ResStockArguments mech_vent_fan_type=none mech_vent_flow_rate=0 mech_vent_hours_in_operation=0 mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=0 mech_vent_num_units_served=0 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Mechanical Ventilation Supply ResStockArguments mech_vent_fan_type=supply only mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Metropolitan and Micropolitan Statistical Area "Aberdeen, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Aberdeen, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Abilene, TX MSA" -Metropolitan and Micropolitan Statistical Area "Ada, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Adrian, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Akron, OH MSA" -Metropolitan and Micropolitan Statistical Area "Alamogordo, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Albany, GA MSA" -Metropolitan and Micropolitan Statistical Area "Albany, OR MSA" -Metropolitan and Micropolitan Statistical Area "Albany-Schenectady-Troy, NY MSA" -Metropolitan and Micropolitan Statistical Area "Albemarle, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Albert Lea, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Albertville, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Albuquerque, NM MSA" -Metropolitan and Micropolitan Statistical Area "Alexandria, LA MSA" -Metropolitan and Micropolitan Statistical Area "Alexandria, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Alice, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Allentown-Bethlehem-Easton, PA-NJ MSA" -Metropolitan and Micropolitan Statistical Area "Alma, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Alpena, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Altoona, PA MSA" -Metropolitan and Micropolitan Statistical Area "Altus, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Amarillo, TX MSA" -Metropolitan and Micropolitan Statistical Area "Americus, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Ames, IA MSA" -Metropolitan and Micropolitan Statistical Area "Amsterdam, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Anchorage, AK MSA" -Metropolitan and Micropolitan Statistical Area "Andrews, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Angola, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Ann Arbor, MI MSA" -Metropolitan and Micropolitan Statistical Area "Anniston-Oxford-Jacksonville, AL MSA" -Metropolitan and Micropolitan Statistical Area "Appleton, WI MSA" -Metropolitan and Micropolitan Statistical Area "Arcadia, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Ardmore, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Arkadelphia, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Arkansas City-Winfield, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Asheville, NC MSA" -Metropolitan and Micropolitan Statistical Area "Ashland, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Ashtabula, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Astoria, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Atchison, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Athens, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Athens, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Athens, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Athens-Clarke County, GA MSA" -Metropolitan and Micropolitan Statistical Area "Atlanta-Sandy Springs-Roswell, GA MSA" -Metropolitan and Micropolitan Statistical Area "Atlantic City-Hammonton, NJ MSA" -Metropolitan and Micropolitan Statistical Area "Auburn, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Auburn, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Auburn-Opelika, AL MSA" -Metropolitan and Micropolitan Statistical Area "Augusta-Richmond County, GA-SC MSA" -Metropolitan and Micropolitan Statistical Area "Augusta-Waterville, ME MicroSA" -Metropolitan and Micropolitan Statistical Area "Austin, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Austin-Round Rock, TX MSA" -Metropolitan and Micropolitan Statistical Area "Bainbridge, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Bakersfield, CA MSA" -Metropolitan and Micropolitan Statistical Area "Baltimore-Columbia-Towson, MD MSA" -Metropolitan and Micropolitan Statistical Area "Bangor, ME MSA" -Metropolitan and Micropolitan Statistical Area "Baraboo, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Bardstown, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Barnstable Town, MA MSA" -Metropolitan and Micropolitan Statistical Area "Barre, VT MicroSA" -Metropolitan and Micropolitan Statistical Area "Bartlesville, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Bastrop, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Batavia, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Batesville, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Baton Rouge, LA MSA" -Metropolitan and Micropolitan Statistical Area "Battle Creek, MI MSA" -Metropolitan and Micropolitan Statistical Area "Bay City, MI MSA" -Metropolitan and Micropolitan Statistical Area "Bay City, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Beatrice, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Beaumont-Port Arthur, TX MSA" -Metropolitan and Micropolitan Statistical Area "Beaver Dam, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Beckley, WV MSA" -Metropolitan and Micropolitan Statistical Area "Bedford, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Beeville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Bellefontaine, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Bellingham, WA MSA" -Metropolitan and Micropolitan Statistical Area "Bemidji, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Bend-Redmond, OR MSA" -Metropolitan and Micropolitan Statistical Area "Bennettsville, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Bennington, VT MicroSA" -Metropolitan and Micropolitan Statistical Area "Berlin, NH-VT MicroSA" -Metropolitan and Micropolitan Statistical Area "Big Rapids, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Big Spring, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Big Stone Gap, VA MicroSA" -Metropolitan and Micropolitan Statistical Area "Billings, MT MSA" -Metropolitan and Micropolitan Statistical Area "Binghamton, NY MSA" -Metropolitan and Micropolitan Statistical Area "Birmingham-Hoover, AL MSA" -Metropolitan and Micropolitan Statistical Area "Bismarck, ND MSA" -Metropolitan and Micropolitan Statistical Area "Blackfoot, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Blacksburg-Christiansburg-Radford, VA MSA" -Metropolitan and Micropolitan Statistical Area "Bloomington, IL MSA" -Metropolitan and Micropolitan Statistical Area "Bloomington, IN MSA" -Metropolitan and Micropolitan Statistical Area "Bloomsburg-Berwick, PA MSA" -Metropolitan and Micropolitan Statistical Area "Bluefield, WV-VA MicroSA" -Metropolitan and Micropolitan Statistical Area "Blytheville, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Bogalusa, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Boise City, ID MSA" -Metropolitan and Micropolitan Statistical Area "Boone, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Boone, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Borger, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Boston-Cambridge-Newton, MA-NH MSA" -Metropolitan and Micropolitan Statistical Area "Boulder, CO MSA" -Metropolitan and Micropolitan Statistical Area "Bowling Green, KY MSA" -Metropolitan and Micropolitan Statistical Area "Bozeman, MT MicroSA" -Metropolitan and Micropolitan Statistical Area "Bradford, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Brainerd, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Branson, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Breckenridge, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Bremerton-Silverdale, WA MSA" -Metropolitan and Micropolitan Statistical Area "Brenham, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Brevard, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Bridgeport-Stamford-Norwalk, CT MSA" -Metropolitan and Micropolitan Statistical Area "Brookhaven, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Brookings, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Brookings, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Brownsville-Harlingen, TX MSA" -Metropolitan and Micropolitan Statistical Area "Brownwood, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Brunswick, GA MSA" -Metropolitan and Micropolitan Statistical Area "Bucyrus, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Buffalo-Cheektowaga-Niagara Falls, NY MSA" -Metropolitan and Micropolitan Statistical Area "Burley, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Burlington, IA-IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Burlington, NC MSA" -Metropolitan and Micropolitan Statistical Area "Burlington-South Burlington, VT MSA" -Metropolitan and Micropolitan Statistical Area "Butte-Silver Bow, MT MicroSA" -Metropolitan and Micropolitan Statistical Area "Cadillac, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Calhoun, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "California-Lexington Park, MD MSA" -Metropolitan and Micropolitan Statistical Area "Cambridge, MD MicroSA" -Metropolitan and Micropolitan Statistical Area "Cambridge, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Camden, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Campbellsville, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Canon City, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Canton, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Canton-Massillon, OH MSA" -Metropolitan and Micropolitan Statistical Area "Cape Coral-Fort Myers, FL MSA" -Metropolitan and Micropolitan Statistical Area "Cape Girardeau, MO-IL MSA" -Metropolitan and Micropolitan Statistical Area "Carbondale-Marion, IL MSA" -Metropolitan and Micropolitan Statistical Area "Carlsbad-Artesia, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Carson City, NV MSA" -Metropolitan and Micropolitan Statistical Area "Casper, WY MSA" -Metropolitan and Micropolitan Statistical Area "Cedar City, UT MicroSA" -Metropolitan and Micropolitan Statistical Area "Cedar Rapids, IA MSA" -Metropolitan and Micropolitan Statistical Area "Cedartown, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Celina, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Centralia, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Centralia, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Chambersburg-Waynesboro, PA MSA" -Metropolitan and Micropolitan Statistical Area "Champaign-Urbana, IL MSA" -Metropolitan and Micropolitan Statistical Area "Charleston, WV MSA" -Metropolitan and Micropolitan Statistical Area "Charleston-Mattoon, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Charleston-North Charleston, SC MSA" -Metropolitan and Micropolitan Statistical Area "Charlotte-Concord-Gastonia, NC-SC MSA" -Metropolitan and Micropolitan Statistical Area "Charlottesville, VA MSA" -Metropolitan and Micropolitan Statistical Area "Chattanooga, TN-GA MSA" -Metropolitan and Micropolitan Statistical Area "Cheyenne, WY MSA" -Metropolitan and Micropolitan Statistical Area "Chicago-Naperville-Elgin, IL-IN-WI MSA" -Metropolitan and Micropolitan Statistical Area "Chico, CA MSA" -Metropolitan and Micropolitan Statistical Area "Chillicothe, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Cincinnati, OH-KY-IN MSA" -Metropolitan and Micropolitan Statistical Area "Claremont-Lebanon, NH-VT MicroSA" -Metropolitan and Micropolitan Statistical Area "Clarksburg, WV MicroSA" -Metropolitan and Micropolitan Statistical Area "Clarksdale, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Clarksville, TN-KY MSA" -Metropolitan and Micropolitan Statistical Area "Clearlake, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Cleveland, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Cleveland, TN MSA" -Metropolitan and Micropolitan Statistical Area "Cleveland-Elyria, OH MSA" -Metropolitan and Micropolitan Statistical Area "Clewiston, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Clinton, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Clovis, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Coeur d'Alene, ID MSA" -Metropolitan and Micropolitan Statistical Area "Coffeyville, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Coldwater, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "College Station-Bryan, TX MSA" -Metropolitan and Micropolitan Statistical Area "Colorado Springs, CO MSA" -Metropolitan and Micropolitan Statistical Area "Columbia, MO MSA" -Metropolitan and Micropolitan Statistical Area "Columbia, SC MSA" -Metropolitan and Micropolitan Statistical Area "Columbus, GA-AL MSA" -Metropolitan and Micropolitan Statistical Area "Columbus, IN MSA" -Metropolitan and Micropolitan Statistical Area "Columbus, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Columbus, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Columbus, OH MSA" -Metropolitan and Micropolitan Statistical Area "Concord, NH MicroSA" -Metropolitan and Micropolitan Statistical Area "Connersville, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Cookeville, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Coos Bay, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Cordele, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Corinth, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Cornelia, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Corning, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Corpus Christi, TX MSA" -Metropolitan and Micropolitan Statistical Area "Corsicana, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Cortland, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Corvallis, OR MSA" -Metropolitan and Micropolitan Statistical Area "Coshocton, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Craig, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Crawfordsville, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Crescent City, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Crestview-Fort Walton Beach-Destin, FL MSA" -Metropolitan and Micropolitan Statistical Area "Crossville, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Cullman, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Cullowhee, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Cumberland, MD-WV MSA" -Metropolitan and Micropolitan Statistical Area "Dallas-Fort Worth-Arlington, TX MSA" -Metropolitan and Micropolitan Statistical Area "Dalton, GA MSA" -Metropolitan and Micropolitan Statistical Area "Danville, IL MSA" -Metropolitan and Micropolitan Statistical Area "Danville, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Danville, VA MicroSA" -Metropolitan and Micropolitan Statistical Area "Daphne-Fairhope-Foley, AL MSA" -Metropolitan and Micropolitan Statistical Area "Davenport-Moline-Rock Island, IA-IL MSA" -Metropolitan and Micropolitan Statistical Area "Dayton, OH MSA" -Metropolitan and Micropolitan Statistical Area "Dayton, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "DeRidder, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Decatur, AL MSA" -Metropolitan and Micropolitan Statistical Area "Decatur, IL MSA" -Metropolitan and Micropolitan Statistical Area "Decatur, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Defiance, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Del Rio, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Deltona-Daytona Beach-Ormond Beach, FL MSA" -Metropolitan and Micropolitan Statistical Area "Deming, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Denver-Aurora-Lakewood, CO MSA" -Metropolitan and Micropolitan Statistical Area "Des Moines-West Des Moines, IA MSA" -Metropolitan and Micropolitan Statistical Area "Detroit-Warren-Dearborn, MI MSA" -Metropolitan and Micropolitan Statistical Area "Dickinson, ND MicroSA" -Metropolitan and Micropolitan Statistical Area "Dixon, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Dodge City, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Dothan, AL MSA" -Metropolitan and Micropolitan Statistical Area "Douglas, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Dover, DE MSA" -Metropolitan and Micropolitan Statistical Area "DuBois, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Dublin, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Dubuque, IA MSA" -Metropolitan and Micropolitan Statistical Area "Duluth, MN-WI MSA" -Metropolitan and Micropolitan Statistical Area "Dumas, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Duncan, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Dunn, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Durango, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Durant, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Durham-Chapel Hill, NC MSA" -Metropolitan and Micropolitan Statistical Area "Dyersburg, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Eagle Pass, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "East Stroudsburg, PA MSA" -Metropolitan and Micropolitan Statistical Area "Easton, MD MicroSA" -Metropolitan and Micropolitan Statistical Area "Eau Claire, WI MSA" -Metropolitan and Micropolitan Statistical Area "Edwards, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Effingham, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "El Campo, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "El Centro, CA MSA" -Metropolitan and Micropolitan Statistical Area "El Dorado, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "El Paso, TX MSA" -Metropolitan and Micropolitan Statistical Area "Elizabeth City, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Elizabethtown-Fort Knox, KY MSA" -Metropolitan and Micropolitan Statistical Area "Elk City, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Elkhart-Goshen, IN MSA" -Metropolitan and Micropolitan Statistical Area "Elkins, WV MicroSA" -Metropolitan and Micropolitan Statistical Area "Elko, NV MicroSA" -Metropolitan and Micropolitan Statistical Area "Ellensburg, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Elmira, NY MSA" -Metropolitan and Micropolitan Statistical Area "Emporia, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Enid, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Enterprise, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Erie, PA MSA" -Metropolitan and Micropolitan Statistical Area "Escanaba, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Espanola, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Eugene, OR MSA" -Metropolitan and Micropolitan Statistical Area "Eureka-Arcata-Fortuna, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Evanston, WY MicroSA" -Metropolitan and Micropolitan Statistical Area "Evansville, IN-KY MSA" -Metropolitan and Micropolitan Statistical Area "Fairbanks, AK MSA" -Metropolitan and Micropolitan Statistical Area "Fairfield, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Fairmont, WV MicroSA" -Metropolitan and Micropolitan Statistical Area "Fallon, NV MicroSA" -Metropolitan and Micropolitan Statistical Area "Fargo, ND-MN MSA" -Metropolitan and Micropolitan Statistical Area "Faribault-Northfield, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Farmington, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Farmington, NM MSA" -Metropolitan and Micropolitan Statistical Area "Fayetteville, NC MSA" -Metropolitan and Micropolitan Statistical Area "Fayetteville-Springdale-Rogers, AR-MO MSA" -Metropolitan and Micropolitan Statistical Area "Fergus Falls, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Fernley, NV MicroSA" -Metropolitan and Micropolitan Statistical Area "Findlay, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Fitzgerald, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Flagstaff, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Flint, MI MSA" -Metropolitan and Micropolitan Statistical Area "Florence, SC MSA" -Metropolitan and Micropolitan Statistical Area "Florence-Muscle Shoals, AL MSA" -Metropolitan and Micropolitan Statistical Area "Fond du Lac, WI MSA" -Metropolitan and Micropolitan Statistical Area "Forest City, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Forrest City, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Fort Collins, CO MSA" -Metropolitan and Micropolitan Statistical Area "Fort Dodge, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Fort Leonard Wood, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Fort Madison-Keokuk, IA-IL-MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Fort Morgan, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Fort Polk South, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Fort Smith, AR-OK MSA" -Metropolitan and Micropolitan Statistical Area "Fort Wayne, IN MSA" -Metropolitan and Micropolitan Statistical Area "Frankfort, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Frankfort, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Fredericksburg, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Freeport, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Fremont, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Fremont, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Fresno, CA MSA" -Metropolitan and Micropolitan Statistical Area "Gadsden, AL MSA" -Metropolitan and Micropolitan Statistical Area "Gaffney, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Gainesville, FL MSA" -Metropolitan and Micropolitan Statistical Area "Gainesville, GA MSA" -Metropolitan and Micropolitan Statistical Area "Gainesville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Galesburg, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Gallup, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Garden City, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Gardnerville Ranchos, NV MicroSA" -Metropolitan and Micropolitan Statistical Area "Georgetown, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Gettysburg, PA MSA" -Metropolitan and Micropolitan Statistical Area "Gillette, WY MicroSA" -Metropolitan and Micropolitan Statistical Area "Glasgow, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Glens Falls, NY MSA" -Metropolitan and Micropolitan Statistical Area "Glenwood Springs, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Gloversville, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Goldsboro, NC MSA" -Metropolitan and Micropolitan Statistical Area "Grand Forks, ND-MN MSA" -Metropolitan and Micropolitan Statistical Area "Grand Island, NE MSA" -Metropolitan and Micropolitan Statistical Area "Grand Junction, CO MSA" -Metropolitan and Micropolitan Statistical Area "Grand Rapids-Wyoming, MI MSA" -Metropolitan and Micropolitan Statistical Area "Grants Pass, OR MSA" -Metropolitan and Micropolitan Statistical Area "Grants, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Great Bend, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Great Falls, MT MSA" -Metropolitan and Micropolitan Statistical Area "Greeley, CO MSA" -Metropolitan and Micropolitan Statistical Area "Green Bay, WI MSA" -Metropolitan and Micropolitan Statistical Area "Greeneville, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Greenfield Town, MA MicroSA" -Metropolitan and Micropolitan Statistical Area "Greensboro-High Point, NC MSA" -Metropolitan and Micropolitan Statistical Area "Greensburg, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Greenville, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Greenville, NC MSA" -Metropolitan and Micropolitan Statistical Area "Greenville, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Greenville-Anderson-Mauldin, SC MSA" -Metropolitan and Micropolitan Statistical Area "Greenwood, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Greenwood, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Grenada, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Gulfport-Biloxi-Pascagoula, MS MSA" -Metropolitan and Micropolitan Statistical Area "Guymon, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Hagerstown-Martinsburg, MD-WV MSA" -Metropolitan and Micropolitan Statistical Area "Hailey, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Hammond, LA MSA" -Metropolitan and Micropolitan Statistical Area "Hanford-Corcoran, CA MSA" -Metropolitan and Micropolitan Statistical Area "Hannibal, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Harrisburg-Carlisle, PA MSA" -Metropolitan and Micropolitan Statistical Area "Harrison, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Harrisonburg, VA MSA" -Metropolitan and Micropolitan Statistical Area "Hartford-West Hartford-East Hartford, CT MSA" -Metropolitan and Micropolitan Statistical Area "Hastings, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Hattiesburg, MS MSA" -Metropolitan and Micropolitan Statistical Area "Hays, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Heber, UT MicroSA" -Metropolitan and Micropolitan Statistical Area "Helena, MT MicroSA" -Metropolitan and Micropolitan Statistical Area "Helena-West Helena, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Henderson, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Hereford, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Hermiston-Pendleton, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Hickory-Lenoir-Morganton, NC MSA" -Metropolitan and Micropolitan Statistical Area "Hillsdale, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Hilo, HI MicroSA" -Metropolitan and Micropolitan Statistical Area "Hilton Head Island-Bluffton-Beaufort, SC MSA" -Metropolitan and Micropolitan Statistical Area "Hinesville, GA MSA" -Metropolitan and Micropolitan Statistical Area "Hobbs, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Holland, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Homosassa Springs, FL MSA" -Metropolitan and Micropolitan Statistical Area "Hood River, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Hot Springs, AR MSA" -Metropolitan and Micropolitan Statistical Area "Houghton, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Houma-Thibodaux, LA MSA" -Metropolitan and Micropolitan Statistical Area "Houston-The Woodlands-Sugar Land, TX MSA" -Metropolitan and Micropolitan Statistical Area "Hudson, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Huntingdon, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Huntington, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Huntington-Ashland, WV-KY-OH MSA" -Metropolitan and Micropolitan Statistical Area "Huntsville, AL MSA" -Metropolitan and Micropolitan Statistical Area "Huntsville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Huron, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Hutchinson, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Hutchinson, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Idaho Falls, ID MSA" -Metropolitan and Micropolitan Statistical Area "Indiana, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Indianapolis-Carmel-Anderson, IN MSA" -Metropolitan and Micropolitan Statistical Area "Indianola, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Ionia, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Iowa City, IA MSA" -Metropolitan and Micropolitan Statistical Area "Iron Mountain, MI-WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Ithaca, NY MSA" -Metropolitan and Micropolitan Statistical Area "Jackson, MI MSA" -Metropolitan and Micropolitan Statistical Area "Jackson, MS MSA" -Metropolitan and Micropolitan Statistical Area "Jackson, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Jackson, TN MSA" -Metropolitan and Micropolitan Statistical Area "Jackson, WY-ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Jacksonville, FL MSA" -Metropolitan and Micropolitan Statistical Area "Jacksonville, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Jacksonville, NC MSA" -Metropolitan and Micropolitan Statistical Area "Jacksonville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Jamestown, ND MicroSA" -Metropolitan and Micropolitan Statistical Area "Jamestown-Dunkirk-Fredonia, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Janesville-Beloit, WI MSA" -Metropolitan and Micropolitan Statistical Area "Jasper, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Jefferson City, MO MSA" -Metropolitan and Micropolitan Statistical Area "Jefferson, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Jesup, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Johnson City, TN MSA" -Metropolitan and Micropolitan Statistical Area "Johnstown, PA MSA" -Metropolitan and Micropolitan Statistical Area "Jonesboro, AR MSA" -Metropolitan and Micropolitan Statistical Area "Joplin, MO MSA" -Metropolitan and Micropolitan Statistical Area "Junction City, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Juneau, AK MicroSA" -Metropolitan and Micropolitan Statistical Area "Kahului-Wailuku-Lahaina, HI MSA" -Metropolitan and Micropolitan Statistical Area "Kalamazoo-Portage, MI MSA" -Metropolitan and Micropolitan Statistical Area "Kalispell, MT MicroSA" -Metropolitan and Micropolitan Statistical Area "Kankakee, IL MSA" -Metropolitan and Micropolitan Statistical Area "Kansas City, MO-KS MSA" -Metropolitan and Micropolitan Statistical Area "Kapaa, HI MicroSA" -Metropolitan and Micropolitan Statistical Area "Kearney, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Keene, NH MicroSA" -Metropolitan and Micropolitan Statistical Area "Kendallville, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Kennett, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Kennewick-Richland, WA MSA" -Metropolitan and Micropolitan Statistical Area "Kerrville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Ketchikan, AK MicroSA" -Metropolitan and Micropolitan Statistical Area "Key West, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Kill Devil Hills, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Killeen-Temple, TX MSA" -Metropolitan and Micropolitan Statistical Area "Kingsport-Bristol-Bristol, TN-VA MSA" -Metropolitan and Micropolitan Statistical Area "Kingston, NY MSA" -Metropolitan and Micropolitan Statistical Area "Kingsville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Kinston, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Kirksville, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Klamath Falls, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Knoxville, TN MSA" -Metropolitan and Micropolitan Statistical Area "Kokomo, IN MSA" -Metropolitan and Micropolitan Statistical Area "La Crosse-Onalaska, WI-MN MSA" -Metropolitan and Micropolitan Statistical Area "La Grande, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "LaGrange, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Laconia, NH MicroSA" -Metropolitan and Micropolitan Statistical Area "Lafayette, LA MSA" -Metropolitan and Micropolitan Statistical Area "Lafayette-West Lafayette, IN MSA" -Metropolitan and Micropolitan Statistical Area "Lake Charles, LA MSA" -Metropolitan and Micropolitan Statistical Area "Lake City, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Lake Havasu City-Kingman, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Lakeland-Winter Haven, FL MSA" -Metropolitan and Micropolitan Statistical Area "Lamesa, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Lancaster, PA MSA" -Metropolitan and Micropolitan Statistical Area "Lansing-East Lansing, MI MSA" -Metropolitan and Micropolitan Statistical Area "Laramie, WY MicroSA" -Metropolitan and Micropolitan Statistical Area "Laredo, TX MSA" -Metropolitan and Micropolitan Statistical Area "Las Cruces, NM MSA" -Metropolitan and Micropolitan Statistical Area "Las Vegas, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Las Vegas-Henderson-Paradise, NV MSA" -Metropolitan and Micropolitan Statistical Area "Laurel, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Laurinburg, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Lawrence, KS MSA" -Metropolitan and Micropolitan Statistical Area "Lawrenceburg, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Lawton, OK MSA" -Metropolitan and Micropolitan Statistical Area "Lebanon, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Lebanon, PA MSA" -Metropolitan and Micropolitan Statistical Area "Levelland, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Lewisburg, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Lewisburg, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Lewiston, ID-WA MSA" -Metropolitan and Micropolitan Statistical Area "Lewiston-Auburn, ME MSA" -Metropolitan and Micropolitan Statistical Area "Lewistown, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Lexington, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Lexington-Fayette, KY MSA" -Metropolitan and Micropolitan Statistical Area "Liberal, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Lima, OH MSA" -Metropolitan and Micropolitan Statistical Area "Lincoln, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Lincoln, NE MSA" -Metropolitan and Micropolitan Statistical Area "Little Rock-North Little Rock-Conway, AR MSA" -Metropolitan and Micropolitan Statistical Area "Lock Haven, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Logan, UT-ID MSA" -Metropolitan and Micropolitan Statistical Area "Logan, WV MicroSA" -Metropolitan and Micropolitan Statistical Area "Logansport, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "London, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Longview, TX MSA" -Metropolitan and Micropolitan Statistical Area "Longview, WA MSA" -Metropolitan and Micropolitan Statistical Area "Los Alamos, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Los Angeles-Long Beach-Anaheim, CA MSA" -Metropolitan and Micropolitan Statistical Area "Louisville/Jefferson County, KY-IN MSA" -Metropolitan and Micropolitan Statistical Area "Lubbock, TX MSA" -Metropolitan and Micropolitan Statistical Area "Ludington, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Lufkin, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Lumberton, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Lynchburg, VA MSA" -Metropolitan and Micropolitan Statistical Area "Macomb, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Macon, GA MSA" -Metropolitan and Micropolitan Statistical Area "Madera, CA MSA" -Metropolitan and Micropolitan Statistical Area "Madison, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Madison, WI MSA" -Metropolitan and Micropolitan Statistical Area "Madisonville, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Magnolia, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Malone, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Malvern, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Manchester-Nashua, NH MSA" -Metropolitan and Micropolitan Statistical Area "Manhattan, KS MSA" -Metropolitan and Micropolitan Statistical Area "Manitowoc, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Mankato-North Mankato, MN MSA" -Metropolitan and Micropolitan Statistical Area "Mansfield, OH MSA" -Metropolitan and Micropolitan Statistical Area "Marietta, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Marinette, WI-MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Marion, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Marion, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Marion, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Marquette, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Marshall, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Marshall, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Marshall, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Marshalltown, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Martin, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Martinsville, VA MicroSA" -Metropolitan and Micropolitan Statistical Area "Maryville, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Mason City, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Mayfield, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Maysville, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "McAlester, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "McAllen-Edinburg-Mission, TX MSA" -Metropolitan and Micropolitan Statistical Area "McComb, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "McMinnville, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "McPherson, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Meadville, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Medford, OR MSA" -Metropolitan and Micropolitan Statistical Area "Memphis, TN-MS-AR MSA" -Metropolitan and Micropolitan Statistical Area "Menomonie, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Merced, CA MSA" -Metropolitan and Micropolitan Statistical Area "Meridian, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Merrill, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Mexico, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Miami, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Miami-Fort Lauderdale-West Palm Beach, FL MSA" -Metropolitan and Micropolitan Statistical Area "Michigan City-La Porte, IN MSA" -Metropolitan and Micropolitan Statistical Area "Middlesborough, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Midland, MI MSA" -Metropolitan and Micropolitan Statistical Area "Midland, TX MSA" -Metropolitan and Micropolitan Statistical Area "Milledgeville, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Milwaukee-Waukesha-West Allis, WI MSA" -Metropolitan and Micropolitan Statistical Area "Mineral Wells, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Minneapolis-St. Paul-Bloomington, MN-WI MSA" -Metropolitan and Micropolitan Statistical Area "Minot, ND MicroSA" -Metropolitan and Micropolitan Statistical Area "Missoula, MT MSA" -Metropolitan and Micropolitan Statistical Area "Mitchell, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Moberly, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Mobile, AL MSA" -Metropolitan and Micropolitan Statistical Area "Modesto, CA MSA" -Metropolitan and Micropolitan Statistical Area "Monroe, LA MSA" -Metropolitan and Micropolitan Statistical Area "Monroe, MI MSA" -Metropolitan and Micropolitan Statistical Area "Montgomery, AL MSA" -Metropolitan and Micropolitan Statistical Area "Montrose, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Morehead City, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Morgan City, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Morgantown, WV MSA" -Metropolitan and Micropolitan Statistical Area "Morristown, TN MSA" -Metropolitan and Micropolitan Statistical Area "Moscow, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Moses Lake, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Moultrie, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Airy, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Pleasant, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Pleasant, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Sterling, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Vernon, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Vernon, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Vernon-Anacortes, WA MSA" -Metropolitan and Micropolitan Statistical Area "Mountain Home, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Mountain Home, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Muncie, IN MSA" -Metropolitan and Micropolitan Statistical Area "Murray, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Muscatine, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Muskegon, MI MSA" -Metropolitan and Micropolitan Statistical Area "Muskogee, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Myrtle Beach-Conway-North Myrtle Beach, SC-NC MSA" -Metropolitan and Micropolitan Statistical Area "Nacogdoches, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Napa, CA MSA" -Metropolitan and Micropolitan Statistical Area "Naples-Immokalee-Marco Island, FL MSA" -Metropolitan and Micropolitan Statistical Area "Nashville-Davidson--Murfreesboro--Franklin, TN MSA" -Metropolitan and Micropolitan Statistical Area "Natchez, MS-LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Natchitoches, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "New Bern, NC MSA" -Metropolitan and Micropolitan Statistical Area "New Castle, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "New Castle, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "New Haven-Milford, CT MSA" -Metropolitan and Micropolitan Statistical Area "New Orleans-Metairie, LA MSA" -Metropolitan and Micropolitan Statistical Area "New Philadelphia-Dover, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "New Ulm, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "New York-Newark-Jersey City, NY-NJ-PA MSA" -Metropolitan and Micropolitan Statistical Area "Newberry, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Newport, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Newport, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Newton, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Niles-Benton Harbor, MI MSA" -Metropolitan and Micropolitan Statistical Area "Nogales, AZ MicroSA" -Metropolitan and Micropolitan Statistical Area "Norfolk, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "North Platte, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "North Port-Sarasota-Bradenton, FL MSA" -Metropolitan and Micropolitan Statistical Area "North Vernon, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "North Wilkesboro, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Norwalk, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Norwich-New London, CT MSA" -Metropolitan and Micropolitan Statistical Area "Oak Harbor, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Ocala, FL MSA" -Metropolitan and Micropolitan Statistical Area "Ocean City, NJ MSA" -Metropolitan and Micropolitan Statistical Area "Odessa, TX MSA" -Metropolitan and Micropolitan Statistical Area "Ogden-Clearfield, UT MSA" -Metropolitan and Micropolitan Statistical Area "Ogdensburg-Massena, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Oil City, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Okeechobee, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Oklahoma City, OK MSA" -Metropolitan and Micropolitan Statistical Area "Olean, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Olympia-Tumwater, WA MSA" -Metropolitan and Micropolitan Statistical Area "Omaha-Council Bluffs, NE-IA MSA" -Metropolitan and Micropolitan Statistical Area "Oneonta, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Ontario, OR-ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Opelousas, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Orangeburg, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Orlando-Kissimmee-Sanford, FL MSA" -Metropolitan and Micropolitan Statistical Area "Oshkosh-Neenah, WI MSA" -Metropolitan and Micropolitan Statistical Area "Oskaloosa, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Othello, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Ottawa, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Ottawa-Peru, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Ottumwa, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Owatonna, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Owensboro, KY MSA" -Metropolitan and Micropolitan Statistical Area "Owosso, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Oxford, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Oxford, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Oxnard-Thousand Oaks-Ventura, CA MSA" -Metropolitan and Micropolitan Statistical Area "Ozark, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Paducah, KY-IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Pahrump, NV MicroSA" -Metropolitan and Micropolitan Statistical Area "Palatka, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Palestine, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Palm Bay-Melbourne-Titusville, FL MSA" -Metropolitan and Micropolitan Statistical Area "Pampa, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Panama City, FL MSA" -Metropolitan and Micropolitan Statistical Area "Paragould, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Paris, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Paris, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Parkersburg-Vienna, WV MSA" -Metropolitan and Micropolitan Statistical Area "Parsons, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Payson, AZ MicroSA" -Metropolitan and Micropolitan Statistical Area "Pecos, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Pensacola-Ferry Pass-Brent, FL MSA" -Metropolitan and Micropolitan Statistical Area "Peoria, IL MSA" -Metropolitan and Micropolitan Statistical Area "Peru, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Philadelphia-Camden-Wilmington, PA-NJ-DE-MD MSA" -Metropolitan and Micropolitan Statistical Area "Phoenix-Mesa-Scottsdale, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Picayune, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Pierre, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Pine Bluff, AR MSA" -Metropolitan and Micropolitan Statistical Area "Pinehurst-Southern Pines, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Pittsburg, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Pittsburgh, PA MSA" -Metropolitan and Micropolitan Statistical Area "Pittsfield, MA MSA" -Metropolitan and Micropolitan Statistical Area "Plainview, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Platteville, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Plattsburgh, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Plymouth, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Pocatello, ID MSA" -Metropolitan and Micropolitan Statistical Area "Point Pleasant, WV-OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Ponca City, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Pontiac, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Poplar Bluff, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Port Angeles, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Port Clinton, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Port Lavaca, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Port St. Lucie, FL MSA" -Metropolitan and Micropolitan Statistical Area "Portales, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Portland-South Portland, ME MSA" -Metropolitan and Micropolitan Statistical Area "Portland-Vancouver-Hillsboro, OR-WA MSA" -Metropolitan and Micropolitan Statistical Area "Portsmouth, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Pottsville, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Prescott, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Price, UT MicroSA" -Metropolitan and Micropolitan Statistical Area "Prineville, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Providence-Warwick, RI-MA MSA" -Metropolitan and Micropolitan Statistical Area "Provo-Orem, UT MSA" -Metropolitan and Micropolitan Statistical Area "Pueblo, CO MSA" -Metropolitan and Micropolitan Statistical Area "Pullman, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Punta Gorda, FL MSA" -Metropolitan and Micropolitan Statistical Area "Quincy, IL-MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Racine, WI MSA" -Metropolitan and Micropolitan Statistical Area "Raleigh, NC MSA" -Metropolitan and Micropolitan Statistical Area "Rapid City, SD MSA" -Metropolitan and Micropolitan Statistical Area "Raymondville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Reading, PA MSA" -Metropolitan and Micropolitan Statistical Area "Red Bluff, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Red Wing, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Redding, CA MSA" -Metropolitan and Micropolitan Statistical Area "Reno, NV MSA" -Metropolitan and Micropolitan Statistical Area "Rexburg, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Richmond, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Richmond, VA MSA" -Metropolitan and Micropolitan Statistical Area "Richmond-Berea, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Rio Grande City, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Riverside-San Bernardino-Ontario, CA MSA" -Metropolitan and Micropolitan Statistical Area "Riverton, WY MicroSA" -Metropolitan and Micropolitan Statistical Area "Roanoke Rapids, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Roanoke, VA MSA" -Metropolitan and Micropolitan Statistical Area "Rochelle, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Rochester, MN MSA" -Metropolitan and Micropolitan Statistical Area "Rochester, NY MSA" -Metropolitan and Micropolitan Statistical Area "Rock Springs, WY MicroSA" -Metropolitan and Micropolitan Statistical Area "Rockford, IL MSA" -Metropolitan and Micropolitan Statistical Area "Rockingham, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Rocky Mount, NC MSA" -Metropolitan and Micropolitan Statistical Area "Rolla, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Rome, GA MSA" -Metropolitan and Micropolitan Statistical Area "Roseburg, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Roswell, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Russellville, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Ruston, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Rutland, VT MicroSA" -Metropolitan and Micropolitan Statistical Area "Sacramento--Roseville--Arden-Arcade, CA MSA" -Metropolitan and Micropolitan Statistical Area "Safford, AZ MicroSA" -Metropolitan and Micropolitan Statistical Area "Saginaw, MI MSA" -Metropolitan and Micropolitan Statistical Area "Salem, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Salem, OR MSA" -Metropolitan and Micropolitan Statistical Area "Salina, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Salinas, CA MSA" -Metropolitan and Micropolitan Statistical Area "Salisbury, MD-DE MSA" -Metropolitan and Micropolitan Statistical Area "Salt Lake City, UT MSA" -Metropolitan and Micropolitan Statistical Area "San Angelo, TX MSA" -Metropolitan and Micropolitan Statistical Area "San Antonio-New Braunfels, TX MSA" -Metropolitan and Micropolitan Statistical Area "San Diego-Carlsbad, CA MSA" -Metropolitan and Micropolitan Statistical Area "San Francisco-Oakland-Hayward, CA MSA" -Metropolitan and Micropolitan Statistical Area "San Jose-Sunnyvale-Santa Clara, CA MSA" -Metropolitan and Micropolitan Statistical Area "San Luis Obispo-Paso Robles-Arroyo Grande, CA MSA" -Metropolitan and Micropolitan Statistical Area "Sandpoint, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Sandusky, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Sanford, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Santa Cruz-Watsonville, CA MSA" -Metropolitan and Micropolitan Statistical Area "Santa Fe, NM MSA" -Metropolitan and Micropolitan Statistical Area "Santa Maria-Santa Barbara, CA MSA" -Metropolitan and Micropolitan Statistical Area "Santa Rosa, CA MSA" -Metropolitan and Micropolitan Statistical Area "Sault Ste. Marie, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Savannah, GA MSA" -Metropolitan and Micropolitan Statistical Area "Sayre, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Scottsbluff, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Scottsboro, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Scranton--Wilkes-Barre--Hazleton, PA MSA" -Metropolitan and Micropolitan Statistical Area "Searcy, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Seattle-Tacoma-Bellevue, WA MSA" -Metropolitan and Micropolitan Statistical Area "Sebastian-Vero Beach, FL MSA" -Metropolitan and Micropolitan Statistical Area "Sebring, FL MSA" -Metropolitan and Micropolitan Statistical Area "Sedalia, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Selinsgrove, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Selma, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Seneca Falls, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Seneca, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Sevierville, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Seymour, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Shawano, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Shawnee, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Sheboygan, WI MSA" -Metropolitan and Micropolitan Statistical Area "Shelby, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Shelbyville, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Shelton, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Sheridan, WY MicroSA" -Metropolitan and Micropolitan Statistical Area "Sherman-Denison, TX MSA" -Metropolitan and Micropolitan Statistical Area "Show Low, AZ MicroSA" -Metropolitan and Micropolitan Statistical Area "Shreveport-Bossier City, LA MSA" -Metropolitan and Micropolitan Statistical Area "Sidney, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Sierra Vista-Douglas, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Sikeston, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Silver City, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Sioux City, IA-NE-SD MSA" -Metropolitan and Micropolitan Statistical Area "Sioux Falls, SD MSA" -Metropolitan and Micropolitan Statistical Area "Snyder, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Somerset, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Somerset, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Sonora, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "South Bend-Mishawaka, IN-MI MSA" -Metropolitan and Micropolitan Statistical Area "Spartanburg, SC MSA" -Metropolitan and Micropolitan Statistical Area "Spearfish, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Spencer, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Spirit Lake, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Spokane-Spokane Valley, WA MSA" -Metropolitan and Micropolitan Statistical Area "Springfield, IL MSA" -Metropolitan and Micropolitan Statistical Area "Springfield, MA MSA" -Metropolitan and Micropolitan Statistical Area "Springfield, MO MSA" -Metropolitan and Micropolitan Statistical Area "Springfield, OH MSA" -Metropolitan and Micropolitan Statistical Area "St. Cloud, MN MSA" -Metropolitan and Micropolitan Statistical Area "St. George, UT MSA" -Metropolitan and Micropolitan Statistical Area "St. Joseph, MO-KS MSA" -Metropolitan and Micropolitan Statistical Area "St. Louis, MO-IL MSA" -Metropolitan and Micropolitan Statistical Area "St. Marys, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Starkville, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "State College, PA MSA" -Metropolitan and Micropolitan Statistical Area "Statesboro, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Staunton-Waynesboro, VA MSA" -Metropolitan and Micropolitan Statistical Area "Steamboat Springs, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Stephenville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Sterling, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Sterling, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Stevens Point, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Stillwater, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Stockton-Lodi, CA MSA" -Metropolitan and Micropolitan Statistical Area "Storm Lake, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Sturgis, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Sulphur Springs, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Summerville, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Summit Park, UT MicroSA" -Metropolitan and Micropolitan Statistical Area "Sumter, SC MSA" -Metropolitan and Micropolitan Statistical Area "Sunbury, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Susanville, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Sweetwater, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Syracuse, NY MSA" -Metropolitan and Micropolitan Statistical Area "Tahlequah, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Talladega-Sylacauga, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Tallahassee, FL MSA" -Metropolitan and Micropolitan Statistical Area "Tampa-St. Petersburg-Clearwater, FL MSA" -Metropolitan and Micropolitan Statistical Area "Taos, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Taylorville, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Terre Haute, IN MSA" -Metropolitan and Micropolitan Statistical Area "Texarkana, TX-AR MSA" -Metropolitan and Micropolitan Statistical Area "The Dalles, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "The Villages, FL MSA" -Metropolitan and Micropolitan Statistical Area "Thomaston, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Thomasville, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Tiffin, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Tifton, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Toccoa, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Toledo, OH MSA" -Metropolitan and Micropolitan Statistical Area "Topeka, KS MSA" -Metropolitan and Micropolitan Statistical Area "Torrington, CT MicroSA" -Metropolitan and Micropolitan Statistical Area "Traverse City, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Trenton, NJ MSA" -Metropolitan and Micropolitan Statistical Area "Troy, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Truckee-Grass Valley, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Tucson, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Tullahoma-Manchester, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Tulsa, OK MSA" -Metropolitan and Micropolitan Statistical Area "Tupelo, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Tuscaloosa, AL MSA" -Metropolitan and Micropolitan Statistical Area "Twin Falls, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Tyler, TX MSA" -Metropolitan and Micropolitan Statistical Area "Ukiah, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Union City, TN-KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Urban Honolulu, HI MSA" -Metropolitan and Micropolitan Statistical Area "Urbana, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Utica-Rome, NY MSA" -Metropolitan and Micropolitan Statistical Area "Uvalde, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Valdosta, GA MSA" -Metropolitan and Micropolitan Statistical Area "Vallejo-Fairfield, CA MSA" -Metropolitan and Micropolitan Statistical Area "Valley, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Van Wert, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Vermillion, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Vernal, UT MicroSA" -Metropolitan and Micropolitan Statistical Area "Vernon, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Vicksburg, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Victoria, TX MSA" -Metropolitan and Micropolitan Statistical Area "Vidalia, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Vincennes, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Vineland-Bridgeton, NJ MSA" -Metropolitan and Micropolitan Statistical Area "Vineyard Haven, MA MicroSA" -Metropolitan and Micropolitan Statistical Area "Virginia Beach-Norfolk-Newport News, VA-NC MSA" -Metropolitan and Micropolitan Statistical Area "Visalia-Porterville, CA MSA" -Metropolitan and Micropolitan Statistical Area "Wabash, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Waco, TX MSA" -Metropolitan and Micropolitan Statistical Area "Wahpeton, ND-MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Walla Walla, WA MSA" -Metropolitan and Micropolitan Statistical Area "Wapakoneta, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Warner Robins, GA MSA" -Metropolitan and Micropolitan Statistical Area "Warren, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Warrensburg, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Warsaw, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Washington Court House, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Washington, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Washington, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Washington-Arlington-Alexandria, DC-VA-MD-WV MSA" -Metropolitan and Micropolitan Statistical Area "Waterloo-Cedar Falls, IA MSA" -Metropolitan and Micropolitan Statistical Area "Watertown, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Watertown-Fort Atkinson, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Watertown-Fort Drum, NY MSA" -Metropolitan and Micropolitan Statistical Area "Wauchula, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Wausau, WI MSA" -Metropolitan and Micropolitan Statistical Area "Waycross, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Weatherford, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Weirton-Steubenville, WV-OH MSA" -Metropolitan and Micropolitan Statistical Area "Wenatchee, WA MSA" -Metropolitan and Micropolitan Statistical Area "West Plains, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Wheeling, WV-OH MSA" -Metropolitan and Micropolitan Statistical Area "Whitewater-Elkhorn, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Wichita Falls, TX MSA" -Metropolitan and Micropolitan Statistical Area "Wichita, KS MSA" -Metropolitan and Micropolitan Statistical Area "Williamsport, PA MSA" -Metropolitan and Micropolitan Statistical Area "Williston, ND MicroSA" -Metropolitan and Micropolitan Statistical Area "Willmar, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Wilmington, NC MSA" -Metropolitan and Micropolitan Statistical Area "Wilmington, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Wilson, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Winchester, VA-WV MSA" -Metropolitan and Micropolitan Statistical Area "Winnemucca, NV MicroSA" -Metropolitan and Micropolitan Statistical Area "Winona, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Winston-Salem, NC MSA" -Metropolitan and Micropolitan Statistical Area "Wisconsin Rapids-Marshfield, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Woodward, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Wooster, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Worcester, MA-CT MSA" -Metropolitan and Micropolitan Statistical Area "Worthington, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Yakima, WA MSA" -Metropolitan and Micropolitan Statistical Area "Yankton, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "York-Hanover, PA MSA" -Metropolitan and Micropolitan Statistical Area "Youngstown-Warren-Boardman, OH-PA MSA" -Metropolitan and Micropolitan Statistical Area "Yuba City, CA MSA" -Metropolitan and Micropolitan Statistical Area "Yuma, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Zanesville, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Zapata, TX MicroSA" -Metropolitan and Micropolitan Statistical Area None -Misc Extra Refrigerator "EF 15.9, Fed Standard, bottom freezer-reference fridge" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=573 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator "EF 19.8, bottom freezer" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=458 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator "EF 6.9, Average Installed" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1102 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator "EF 6.9, National Average" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1102 extra_refrigerator_usage_multiplier=0.221 -Misc Extra Refrigerator EF 10.2 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=748 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 10.5 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=727 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 15.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=480 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 17.6 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=433 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 19.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=383 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 21.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=348 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 6.7 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1139 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator None ResStockArguments extra_refrigerator_present=false extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=0 extra_refrigerator_usage_multiplier=0 -Misc Extra Refrigerator Void -Misc Freezer "EF 12, Average Installed" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=935 freezer_usage_multiplier=1.0 -Misc Freezer "EF 12, National Average" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=935 freezer_usage_multiplier=0.342 -Misc Freezer "EF 16, 2001 Fed Standard-reference freezer" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=712 freezer_usage_multiplier=1.0 -Misc Freezer "EF 18, 2008 Energy Star" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=641 freezer_usage_multiplier=1.0 -Misc Freezer "EF 20, 2008 Energy Star Most Efficient" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=568 freezer_usage_multiplier=1.0 -Misc Freezer None ResStockArguments freezer_present=false freezer_location=auto freezer_rated_annual_kwh=0 freezer_usage_multiplier=0 -Misc Freezer Void -Misc Gas Fireplace Gas Fireplace ResStockArguments misc_fuel_loads_fireplace_present=true misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=auto misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=1.0 -Misc Gas Fireplace National Average ResStockArguments misc_fuel_loads_fireplace_present=true misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=auto misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=0.032 -Misc Gas Fireplace None ResStockArguments misc_fuel_loads_fireplace_present=false misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=0 misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=0 -Misc Gas Grill Gas Grill ResStockArguments misc_fuel_loads_grill_present=true misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=auto misc_fuel_loads_grill_usage_multiplier=1.0 -Misc Gas Grill National Average ResStockArguments misc_fuel_loads_grill_present=true misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=auto misc_fuel_loads_grill_usage_multiplier=0.029 -Misc Gas Grill None ResStockArguments misc_fuel_loads_grill_present=false misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=0 misc_fuel_loads_grill_usage_multiplier=0 -Misc Gas Lighting Gas Lighting ResStockArguments misc_fuel_loads_lighting_present=true misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=auto misc_fuel_loads_lighting_usage_multiplier=1.0 -Misc Gas Lighting National Average ResStockArguments misc_fuel_loads_lighting_present=true misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=auto misc_fuel_loads_lighting_usage_multiplier=0.012 -Misc Gas Lighting None ResStockArguments misc_fuel_loads_lighting_present=false misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=0 misc_fuel_loads_lighting_usage_multiplier=0 -Misc Hot Tub Spa Electricity ResStockArguments permanent_spa_present=true permanent_spa_pump_annual_kwh=auto permanent_spa_pump_usage_multiplier=1.0 permanent_spa_heater_type=electric resistance permanent_spa_heater_annual_kwh=auto permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=1.0 -Misc Hot Tub Spa Natural Gas ResStockArguments permanent_spa_present=true permanent_spa_pump_annual_kwh=auto permanent_spa_pump_usage_multiplier=1.0 permanent_spa_heater_type=gas fired permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=auto permanent_spa_heater_usage_multiplier=1.0 -Misc Hot Tub Spa None ResStockArguments permanent_spa_present=false permanent_spa_pump_annual_kwh=0 permanent_spa_pump_usage_multiplier=0 permanent_spa_heater_type=none permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=0 -Misc Hot Tub Spa Other Fuel ResStockArguments permanent_spa_present=false permanent_spa_pump_annual_kwh=0 permanent_spa_pump_usage_multiplier=0 permanent_spa_heater_type=none permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=0 -Misc Hot Tub Spa Void -Misc Pool Has Pool ResStockArguments pool_present=true -Misc Pool None ResStockArguments pool_present=false -Misc Pool Void -Misc Pool Heater "Electric, 78F" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.8 -Misc Pool Heater "Electric, Covered" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.3 -Misc Pool Heater "Electric, Covered, 78F" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.2 -Misc Pool Heater "Gas, 78F" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.8 -Misc Pool Heater "Gas, Covered" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.3 -Misc Pool Heater "Gas, Covered, 78F" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.2 -Misc Pool Heater Electricity ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=1.0 -Misc Pool Heater Natural Gas ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=1.0 -Misc Pool Heater None ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 -Misc Pool Heater Other Fuel ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 -Misc Pool Heater Solar ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 -Misc Pool Heater Unheated ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 -Misc Pool Pump 0.75 HP Pump ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=0.75 -Misc Pool Pump 1.0 HP Pump ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=1.0 -Misc Pool Pump National Average ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=0.075 -Misc Pool Pump None ResStockArguments pool_pump_annual_kwh=0 pool_pump_usage_multiplier=0 -Misc Well Pump High Efficiency ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=0.67 misc_plug_loads_well_pump_2_usage_multiplier=1.0 -Misc Well Pump National Average ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=0.127 misc_plug_loads_well_pump_2_usage_multiplier=1.0 -Misc Well Pump None ResStockArguments misc_plug_loads_well_pump_present=false misc_plug_loads_well_pump_annual_kwh=0 misc_plug_loads_well_pump_usage_multiplier=0 misc_plug_loads_well_pump_2_usage_multiplier=0 -Misc Well Pump Typical Efficiency ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=1.0 misc_plug_loads_well_pump_2_usage_multiplier=1.0 -Natural Ventilation "Cooling Season, 7 days/wk" ResStockArguments window_fraction_operable=0.67 -Natural Ventilation None ResStockArguments window_fraction_operable=0 -Neighbors "Left/Right at 15ft, Front/Back at 80ft" ResStockArguments neighbor_front_distance=80 neighbor_back_distance=80 neighbor_left_distance=15 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 12 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=12 neighbor_right_distance=12 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 2 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=2 neighbor_right_distance=2 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 27 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=27 neighbor_right_distance=27 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 4 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=4 neighbor_right_distance=4 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 7 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=7 neighbor_right_distance=7 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Back at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=15 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Front at 15ft ResStockArguments neighbor_front_distance=15 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Left at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=15 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Left/Right at 10ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=10 neighbor_right_distance=10 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Left/Right at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=15 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Left/Right at 20ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=20 neighbor_right_distance=20 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors None ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Right at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Occupants 0 ResStockArguments geometry_unit_num_occupants=0 general_water_use_usage_multiplier=auto -Occupants 1 ResStockArguments geometry_unit_num_occupants=1 general_water_use_usage_multiplier=auto -Occupants 10+ ResStockArguments geometry_unit_num_occupants=11 general_water_use_usage_multiplier=auto -Occupants 2 ResStockArguments geometry_unit_num_occupants=2 general_water_use_usage_multiplier=auto -Occupants 3 ResStockArguments geometry_unit_num_occupants=3 general_water_use_usage_multiplier=auto -Occupants 4 ResStockArguments geometry_unit_num_occupants=4 general_water_use_usage_multiplier=auto -Occupants 5 ResStockArguments geometry_unit_num_occupants=5 general_water_use_usage_multiplier=auto -Occupants 6 ResStockArguments geometry_unit_num_occupants=6 general_water_use_usage_multiplier=auto -Occupants 7 ResStockArguments geometry_unit_num_occupants=7 general_water_use_usage_multiplier=auto -Occupants 8 ResStockArguments geometry_unit_num_occupants=8 general_water_use_usage_multiplier=auto -Occupants 9 ResStockArguments geometry_unit_num_occupants=9 general_water_use_usage_multiplier=auto -Orientation ENE ResStockArguments geometry_unit_orientation=68 -Orientation ESE ResStockArguments geometry_unit_orientation=113 -Orientation East ResStockArguments geometry_unit_orientation=90 -Orientation NNE ResStockArguments geometry_unit_orientation=23 -Orientation NNW ResStockArguments geometry_unit_orientation=338 -Orientation North ResStockArguments geometry_unit_orientation=0 -Orientation Northeast ResStockArguments geometry_unit_orientation=45 -Orientation Northwest ResStockArguments geometry_unit_orientation=315 -Orientation SSE ResStockArguments geometry_unit_orientation=158 -Orientation SSW ResStockArguments geometry_unit_orientation=203 -Orientation South ResStockArguments geometry_unit_orientation=180 -Orientation Southeast ResStockArguments geometry_unit_orientation=135 -Orientation Southwest ResStockArguments geometry_unit_orientation=225 -Orientation WNW ResStockArguments geometry_unit_orientation=293 -Orientation WSW ResStockArguments geometry_unit_orientation=248 -Orientation West ResStockArguments geometry_unit_orientation=270 -Overhangs "2ft, All Windows" ResStockArguments overhangs_front_depth=2 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=2 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=2 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=2 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs "2ft, Back Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=2 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs "2ft, Front Windows" ResStockArguments overhangs_front_depth=2 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs "2ft, Left Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=2 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs "2ft, Right Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=2 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs None ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -PUMA "AK, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AK, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AK, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AK, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AK, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00115" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00116" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00117" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00118" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00119" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00120" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00121" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00122" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00123" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00124" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00125" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00126" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00127" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00128" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00129" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00130" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00131" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00132" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00133" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00134" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03709" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03710" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03711" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03712" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03713" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03714" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03715" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03716" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03717" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03718" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03719" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03720" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03721" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03722" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03723" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03724" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03725" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03726" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03727" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03728" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03729" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03730" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03731" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03732" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03733" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03734" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03735" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03736" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03737" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03738" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03739" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03740" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03741" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03742" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03743" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03744" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03745" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03746" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03747" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03748" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03749" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03750" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03751" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03752" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03753" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03754" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03755" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03756" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03757" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03758" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03759" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03760" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03761" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03762" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03763" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03764" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03765" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03766" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03767" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03768" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03769" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 04701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 04702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05911" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05912" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05913" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05914" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05915" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05916" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05917" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05918" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06511" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06512" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06513" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06514" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06515" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06709" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06710" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06711" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06712" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07115" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07311" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07312" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07313" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07314" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07315" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07316" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07317" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07318" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07319" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07320" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07321" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07322" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08511" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08512" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08513" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08514" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 10100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 10701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 10702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 10703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00808" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00809" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00810" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00811" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00812" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00813" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00814" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00815" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00816" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00817" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00818" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00819" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00820" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00821" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00822" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00823" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00824" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 04104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 04105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 04106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DC, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DC, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DC, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DC, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DC, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DE, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DE, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DE, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DE, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DE, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DE, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 02103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 06100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 06300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 06901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 06902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 06903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08606" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08607" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08608" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08609" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08610" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08611" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08612" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08613" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08614" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08615" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08616" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08617" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08618" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08619" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08620" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08621" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08622" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08623" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08624" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09911" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 12100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 12701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 12702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 12703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 12704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 05001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 05002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 06001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 06002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03009" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03407" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03408" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03409" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03410" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03411" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03412" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03413" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03414" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03415" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03416" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03417" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03418" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03419" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03420" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03421" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03422" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03520" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03521" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03522" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03523" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03524" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03525" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03526" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03527" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03528" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03529" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03530" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03531" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03532" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03210" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03211" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03212" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03213" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01405" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01406" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01407" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01408" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01409" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01410" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01808" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ND, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ND, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ND, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ND, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ND, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00405" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00406" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00407" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00408" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00409" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00410" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00411" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00412" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00413" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03210" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03211" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03212" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03311" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03312" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03313" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03709" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03710" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03808" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03809" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03810" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04009" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04010" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04011" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04012" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04013" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04014" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04015" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04016" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04017" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04018" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01314" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01316" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01317" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01318" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01319" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01320" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01321" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01322" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01323" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01324" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03210" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03211" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 04001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 04002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SD, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SD, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SD, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SD, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SD, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SD, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02311" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02312" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02313" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02314" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02315" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02316" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02317" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02318" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02319" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02320" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02321" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02322" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02511" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02512" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02513" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02514" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02515" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02516" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04606" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04607" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04608" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04609" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04610" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04611" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04612" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04613" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04614" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04615" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04616" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04617" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04618" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04619" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04620" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04621" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04622" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04623" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04624" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04625" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04626" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04627" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04628" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04629" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04630" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04631" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04632" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04633" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04634" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04635" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04636" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04637" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04638" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05911" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05912" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05913" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05914" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05915" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05916" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 05001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 11001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 11002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 13001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 21001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35009" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 49001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 49002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 49003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 49004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 53001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 57001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 57002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 10701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 10702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 10703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51010" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51020" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51040" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51044" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51045" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51080" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51084" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51085" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51087" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51089" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51090" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51095" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51096" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51097" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51115" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51120" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51125" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51135" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51145" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51154" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51155" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51164" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51165" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51167" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51175" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51186" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51215" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51224" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51225" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51235" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51244" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51245" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51246" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51255" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 55001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 55002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VT, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VT, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VT, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VT, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11606" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11607" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11608" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11609" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11610" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11611" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11612" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11613" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11614" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11615" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11616" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 10000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 20000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 30000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 40101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 40301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 40701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 41001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 41002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 41003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 41004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 41005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 50000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 55101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 55102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 55103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 70101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 70201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 70301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WY, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WY, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WY, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WY, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WY, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA Metro Status "In metro area, not/partially in principal city" -PUMA Metro Status "In metro area, principal city" -PUMA Metro Status Not/partially in metro area -PV Orientation East ResStockArguments pv_system_array_azimuth=90 pv_system_2_array_azimuth=0 -PV Orientation None ResStockArguments pv_system_array_azimuth=180 pv_system_2_array_azimuth=0 -PV Orientation North ResStockArguments pv_system_array_azimuth=0 pv_system_2_array_azimuth=0 -PV Orientation Northeast ResStockArguments pv_system_array_azimuth=45 pv_system_2_array_azimuth=0 -PV Orientation Northwest ResStockArguments pv_system_array_azimuth=315 pv_system_2_array_azimuth=0 -PV Orientation South ResStockArguments pv_system_array_azimuth=180 pv_system_2_array_azimuth=0 -PV Orientation Southeast ResStockArguments pv_system_array_azimuth=135 pv_system_2_array_azimuth=0 -PV Orientation Southwest ResStockArguments pv_system_array_azimuth=225 pv_system_2_array_azimuth=0 -PV Orientation West ResStockArguments pv_system_array_azimuth=270 pv_system_2_array_azimuth=0 -PV System Size 1.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=1000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 11.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=11000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 13.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=13000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 3.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=3000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 5.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=5000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 7.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=7000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 9.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=9000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size None ResStockArguments pv_system_present=false pv_system_module_type=auto pv_system_max_power_output=0 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -Plug Load Diversity 100% ResStockArguments misc_plug_loads_other_2_usage_multiplier=1.0 misc_plug_loads_television_2_usage_multiplier=1.0 -Plug Load Diversity 150% ResStockArguments misc_plug_loads_other_2_usage_multiplier=1.5 misc_plug_loads_television_2_usage_multiplier=1.5 -Plug Load Diversity 200% ResStockArguments misc_plug_loads_other_2_usage_multiplier=2.0 misc_plug_loads_television_2_usage_multiplier=2.0 -Plug Load Diversity 25% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.25 misc_plug_loads_television_2_usage_multiplier=0.25 -Plug Load Diversity 400% ResStockArguments misc_plug_loads_other_2_usage_multiplier=4.0 misc_plug_loads_television_2_usage_multiplier=4.0 -Plug Load Diversity 50% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.5 misc_plug_loads_television_2_usage_multiplier=0.5 -Plug Load Diversity 75% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.75 misc_plug_loads_television_2_usage_multiplier=0.75 -Plug Loads 100% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.0 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.0 -Plug Loads 101% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.01 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.01 -Plug Loads 102% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.02 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.02 -Plug Loads 103% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.03 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.03 -Plug Loads 104% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.04 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.04 -Plug Loads 105% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.05 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.05 -Plug Loads 106% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.06 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.06 -Plug Loads 108% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.08 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.08 -Plug Loads 110% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.1 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.1 -Plug Loads 113% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.13 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.13 -Plug Loads 119% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.19 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.19 -Plug Loads 121% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.21 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.21 -Plug Loads 123% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.23 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.23 -Plug Loads 134% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.34 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.34 -Plug Loads 137% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.37 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.37 -Plug Loads 140% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.4 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.4 -Plug Loads 144% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.44 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.44 -Plug Loads 166% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.66 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.66 -Plug Loads 78% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.78 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.78 -Plug Loads 79% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.79 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.79 -Plug Loads 82% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.82 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.82 -Plug Loads 84% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.84 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.84 -Plug Loads 85% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.85 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.85 -Plug Loads 86% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.86 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.86 -Plug Loads 89% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.89 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.89 -Plug Loads 91% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.91 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.91 -Plug Loads 93% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.93 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.93 -Plug Loads 94% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.94 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.94 -Plug Loads 95% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.95 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.95 -Plug Loads 96% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.96 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.96 -Plug Loads 97% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.97 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.97 -Plug Loads 99% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.99 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.99 -Power Outage Summer ResStockArguments schedules_power_outage_periods=Jul 1 5 - Jul 31 14 schedules_power_outage_periods_window_natvent_availability=always available -REEDS Balancing Area 1 -REEDS Balancing Area 10 -REEDS Balancing Area 100 -REEDS Balancing Area 101 -REEDS Balancing Area 102 -REEDS Balancing Area 103 -REEDS Balancing Area 104 -REEDS Balancing Area 105 -REEDS Balancing Area 106 -REEDS Balancing Area 107 -REEDS Balancing Area 108 -REEDS Balancing Area 109 -REEDS Balancing Area 11 -REEDS Balancing Area 110 -REEDS Balancing Area 111 -REEDS Balancing Area 112 -REEDS Balancing Area 113 -REEDS Balancing Area 114 -REEDS Balancing Area 115 -REEDS Balancing Area 116 -REEDS Balancing Area 117 -REEDS Balancing Area 118 -REEDS Balancing Area 119 -REEDS Balancing Area 12 -REEDS Balancing Area 120 -REEDS Balancing Area 121 -REEDS Balancing Area 122 -REEDS Balancing Area 123 -REEDS Balancing Area 124 -REEDS Balancing Area 125 -REEDS Balancing Area 126 -REEDS Balancing Area 127 -REEDS Balancing Area 128 -REEDS Balancing Area 129 -REEDS Balancing Area 13 -REEDS Balancing Area 130 -REEDS Balancing Area 131 -REEDS Balancing Area 132 -REEDS Balancing Area 133 -REEDS Balancing Area 134 -REEDS Balancing Area 14 -REEDS Balancing Area 15 -REEDS Balancing Area 16 -REEDS Balancing Area 17 -REEDS Balancing Area 18 -REEDS Balancing Area 19 -REEDS Balancing Area 2 -REEDS Balancing Area 20 -REEDS Balancing Area 21 -REEDS Balancing Area 22 -REEDS Balancing Area 23 -REEDS Balancing Area 24 -REEDS Balancing Area 25 -REEDS Balancing Area 26 -REEDS Balancing Area 27 -REEDS Balancing Area 28 -REEDS Balancing Area 29 -REEDS Balancing Area 3 -REEDS Balancing Area 30 -REEDS Balancing Area 31 -REEDS Balancing Area 32 -REEDS Balancing Area 33 -REEDS Balancing Area 34 -REEDS Balancing Area 35 -REEDS Balancing Area 36 -REEDS Balancing Area 37 -REEDS Balancing Area 38 -REEDS Balancing Area 39 -REEDS Balancing Area 4 -REEDS Balancing Area 40 -REEDS Balancing Area 41 -REEDS Balancing Area 42 -REEDS Balancing Area 43 -REEDS Balancing Area 44 -REEDS Balancing Area 45 -REEDS Balancing Area 46 -REEDS Balancing Area 47 -REEDS Balancing Area 48 -REEDS Balancing Area 49 -REEDS Balancing Area 5 -REEDS Balancing Area 50 -REEDS Balancing Area 51 -REEDS Balancing Area 52 -REEDS Balancing Area 53 -REEDS Balancing Area 54 -REEDS Balancing Area 55 -REEDS Balancing Area 56 -REEDS Balancing Area 57 -REEDS Balancing Area 58 -REEDS Balancing Area 59 -REEDS Balancing Area 6 -REEDS Balancing Area 60 -REEDS Balancing Area 61 -REEDS Balancing Area 62 -REEDS Balancing Area 63 -REEDS Balancing Area 64 -REEDS Balancing Area 65 -REEDS Balancing Area 66 -REEDS Balancing Area 67 -REEDS Balancing Area 68 -REEDS Balancing Area 69 -REEDS Balancing Area 7 -REEDS Balancing Area 70 -REEDS Balancing Area 71 -REEDS Balancing Area 72 -REEDS Balancing Area 73 -REEDS Balancing Area 74 -REEDS Balancing Area 75 -REEDS Balancing Area 76 -REEDS Balancing Area 77 -REEDS Balancing Area 78 -REEDS Balancing Area 79 -REEDS Balancing Area 8 -REEDS Balancing Area 80 -REEDS Balancing Area 81 -REEDS Balancing Area 82 -REEDS Balancing Area 83 -REEDS Balancing Area 84 -REEDS Balancing Area 85 -REEDS Balancing Area 86 -REEDS Balancing Area 87 -REEDS Balancing Area 88 -REEDS Balancing Area 89 -REEDS Balancing Area 9 -REEDS Balancing Area 90 -REEDS Balancing Area 91 -REEDS Balancing Area 92 -REEDS Balancing Area 93 -REEDS Balancing Area 94 -REEDS Balancing Area 95 -REEDS Balancing Area 96 -REEDS Balancing Area 97 -REEDS Balancing Area 98 -REEDS Balancing Area 99 -REEDS Balancing Area None -Radiant Barrier No ResStockArguments radiant_barrier_attic_location=none radiant_barrier_grade=1 -Radiant Barrier None ResStockArguments radiant_barrier_attic_location=none radiant_barrier_grade=1 -Radiant Barrier Yes ResStockArguments radiant_barrier_attic_location=Attic roof only radiant_barrier_grade=1 -Range Spot Vent Hour Hour0 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=0 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour1 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=1 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour10 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=10 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour11 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=11 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour12 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=12 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour13 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=13 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour14 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=14 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour15 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=15 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour16 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=16 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour17 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=17 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour18 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=18 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour19 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=19 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour2 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=2 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour20 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=20 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour21 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=21 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour22 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=22 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour23 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=23 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour3 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=3 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour4 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=4 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour5 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=5 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour6 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=6 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour7 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=7 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour8 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=8 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour9 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=9 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Refrigerator EF 10.2 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=748 -Refrigerator EF 10.5 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=727 -Refrigerator EF 15.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=480 -Refrigerator EF 17.6 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=433 -Refrigerator EF 19.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=383 -Refrigerator EF 21.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=348 -Refrigerator EF 6.7 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=1139 -Refrigerator None ResStockArguments refrigerator_present=false refrigerator_location=auto refrigerator_rated_annual_kwh=0 -Refrigerator Void -Refrigerator Usage Level 100% Usage ResStockArguments refrigerator_usage_multiplier=1.0 -Refrigerator Usage Level 105% Usage ResStockArguments refrigerator_usage_multiplier=1.05 -Refrigerator Usage Level 95% Usage ResStockArguments refrigerator_usage_multiplier=0.95 -Roof Material "Asphalt Shingles, Dark" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=dark -Roof Material "Asphalt Shingles, Light" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=light -Roof Material "Asphalt Shingles, Medium" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=medium -Roof Material "Asphalt Shingles, White or cool colors" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=reflective -Roof Material "Composition Shingles, White or Cool Colors" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=reflective -Roof Material "Metal, Cool Colors" ResStockArguments roof_material_type=metal surfacing roof_color=reflective -Roof Material "Metal, Dark" ResStockArguments roof_material_type=metal surfacing roof_color=dark -Roof Material "Metal, Light" ResStockArguments roof_material_type=metal surfacing roof_color=light -Roof Material "Metal, Medium" ResStockArguments roof_material_type=metal surfacing roof_color=medium -Roof Material "Metal, White" ResStockArguments roof_material_type=metal surfacing roof_color=reflective -Roof Material "Tile, Clay or Ceramic" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium -Roof Material "Tile, Clay or Ceramic, White or Cool Colors" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective -Roof Material "Tile, Concrete" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium -Roof Material "Tile, Concrete, White or Cool Colors" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective -Roof Material "Tile, Dark" ResStockArguments roof_material_type=slate or tile shingles roof_color=dark -Roof Material "Tile, Light" ResStockArguments roof_material_type=slate or tile shingles roof_color=light -Roof Material "Tile, Medium" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium -Roof Material "Tile, White" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective -Roof Material Composition Shingles ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=medium -Roof Material Galvanized Steel ResStockArguments roof_material_type=metal surfacing roof_color=medium -Roof Material Slate ResStockArguments roof_material_type=slate or tile shingles roof_color=medium -Roof Material Wood Shingles ResStockArguments roof_material_type=wood shingles or shakes roof_color=medium -Solar Hot Water "40 sqft, South, 10 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=10 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, South, Latitude - 15 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=latitude-15 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, South, Roof Pitch" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, West, 70 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=70 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, West, Latitude + 15 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=latitude+15 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, West, Roof Pitch" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water None ResStockArguments solar_thermal_system_type=none solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -State AK ResStockArguments site_state_code=AK -State AL ResStockArguments site_state_code=AL -State AR ResStockArguments site_state_code=AR -State AZ ResStockArguments site_state_code=AZ -State CA ResStockArguments site_state_code=CA -State CO ResStockArguments site_state_code=CO -State CT ResStockArguments site_state_code=CT -State DC ResStockArguments site_state_code=DC -State DE ResStockArguments site_state_code=DE -State FL ResStockArguments site_state_code=FL -State GA ResStockArguments site_state_code=GA -State HI ResStockArguments site_state_code=HI -State IA ResStockArguments site_state_code=IA -State ID ResStockArguments site_state_code=ID -State IL ResStockArguments site_state_code=IL -State IN ResStockArguments site_state_code=IN -State KS ResStockArguments site_state_code=KS -State KY ResStockArguments site_state_code=KY -State LA ResStockArguments site_state_code=LA -State MA ResStockArguments site_state_code=MA -State MD ResStockArguments site_state_code=MD -State ME ResStockArguments site_state_code=ME -State MI ResStockArguments site_state_code=MI -State MN ResStockArguments site_state_code=MN -State MO ResStockArguments site_state_code=MO -State MS ResStockArguments site_state_code=MS -State MT ResStockArguments site_state_code=MT -State NC ResStockArguments site_state_code=NC -State ND ResStockArguments site_state_code=ND -State NE ResStockArguments site_state_code=NE -State NH ResStockArguments site_state_code=NH -State NJ ResStockArguments site_state_code=NJ -State NM ResStockArguments site_state_code=NM -State NV ResStockArguments site_state_code=NV -State NY ResStockArguments site_state_code=NY -State OH ResStockArguments site_state_code=OH -State OK ResStockArguments site_state_code=OK -State OR ResStockArguments site_state_code=OR -State PA ResStockArguments site_state_code=PA -State RI ResStockArguments site_state_code=RI -State SC ResStockArguments site_state_code=SC -State SD ResStockArguments site_state_code=SD -State TN ResStockArguments site_state_code=TN -State TX ResStockArguments site_state_code=TX -State UT ResStockArguments site_state_code=UT -State VA ResStockArguments site_state_code=VA -State VT ResStockArguments site_state_code=VT -State WA ResStockArguments site_state_code=WA -State WI ResStockArguments site_state_code=WI -State WV ResStockArguments site_state_code=WV -State WY ResStockArguments site_state_code=WY -State Metro Median Income 0-30% -State Metro Median Income 100-120% -State Metro Median Income 120-150% -State Metro Median Income 150%+ -State Metro Median Income 30-60% -State Metro Median Income 60-80% -State Metro Median Income 80-100% -State Metro Median Income Not Available -Storm Windows Clear ResStockArguments window_storm_type=clear -Storm Windows Low-E ResStockArguments window_storm_type=low-e -Tenure Not Available -Tenure Owner -Tenure Renter -Usage Level Average -Usage Level High -Usage Level Low -Usage Level Medium -Vacancy Status Occupied -Vacancy Status Vacant ResStockArguments schedules_vacancy_periods=Jan 1 - Dec 31 -Vintage 1940s ResStockArguments vintage=1940s year_built=auto -Vintage 1950s ResStockArguments vintage=1950s year_built=auto -Vintage 1960s ResStockArguments vintage=1960s year_built=auto -Vintage 1970s ResStockArguments vintage=1970s year_built=auto -Vintage 1980s ResStockArguments vintage=1980s year_built=auto -Vintage 1990s ResStockArguments vintage=1990s year_built=auto -Vintage 2000s ResStockArguments vintage=2000s year_built=auto -Vintage 2010s ResStockArguments vintage=2010s year_built=auto -Vintage <1940 ResStockArguments vintage=<1940 year_built=auto -Vintage <1950 ResStockArguments vintage=<1950 year_built=auto -Vintage ACS 1940-59 -Vintage ACS 1960-79 -Vintage ACS 1980-99 -Vintage ACS 2000-09 -Vintage ACS 2010s -Vintage ACS <1940 -Water Heater Efficiency "Electric Heat Pump, 50 gal, 3.45 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Electric Heat Pump, 50 gal, 3.45 UEF, 140F" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=140 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Electric Heat Pump, 66 gal, 3.35 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=66 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.35 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Electric Heat Pump, 80 gal, 3.45 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=80 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Natural Gas Premium, Condensing" ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Natural Gas Tankless, Condensing" ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=natural gas water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.96 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Propane Premium, Condensing" ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Electric Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=electricity water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.95 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Electric Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=electricity water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.92 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Electric Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=electricity water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.99 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency FIXME Fuel Oil Indirect ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.62 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Fuel Oil Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.68 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Fuel Oil Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.62 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Natural Gas Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.67 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Natural Gas Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Natural Gas Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=natural gas water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Other Fuel ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=wood water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Propane Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.67 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Propane Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Propane Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=propane water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Fuel Electricity -Water Heater Fuel Fuel Oil -Water Heater Fuel Natural Gas -Water Heater Fuel Other Fuel -Water Heater Fuel Propane -Water Heater In Unit No -Water Heater In Unit Yes -Water Heater Location Attic ResStockArguments water_heater_location=attic -Water Heater Location Conditioned Mechanical Room ResStockArguments water_heater_location=other heated space -Water Heater Location Crawlspace ResStockArguments water_heater_location=crawlspace -Water Heater Location Garage ResStockArguments water_heater_location=garage -Water Heater Location Heated Basement ResStockArguments water_heater_location=basement - conditioned -Water Heater Location Living Space ResStockArguments water_heater_location=conditioned space -Water Heater Location Outside ResStockArguments water_heater_location=other exterior -Water Heater Location Unheated Basement ResStockArguments water_heater_location=basement - unconditioned -Window Areas F10 B30 L10 R10 ResStockArguments window_front_wwr=0.1 window_back_wwr=0.3 window_left_wwr=0.1 window_right_wwr=0.1 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F12 B12 L12 R12 ResStockArguments window_front_wwr=0.12 window_back_wwr=0.12 window_left_wwr=0.12 window_right_wwr=0.12 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F15 B15 L0 R0 ResStockArguments window_front_wwr=0.15 window_back_wwr=0.15 window_left_wwr=0 window_right_wwr=0 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F15 B15 L15 R15 ResStockArguments window_front_wwr=0.15 window_back_wwr=0.15 window_left_wwr=0.15 window_right_wwr=0.15 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F18 B18 L18 R18 ResStockArguments window_front_wwr=0.18 window_back_wwr=0.18 window_left_wwr=0.18 window_right_wwr=0.18 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F30 B30 L30 R30 ResStockArguments window_front_wwr=0.30 window_back_wwr=0.30 window_left_wwr=0.30 window_right_wwr=0.30 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F6 B6 L6 R6 ResStockArguments window_front_wwr=0.06 window_back_wwr=0.06 window_left_wwr=0.06 window_right_wwr=0.06 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F9 B9 L9 R9 ResStockArguments window_front_wwr=0.09 window_back_wwr=0.09 window_left_wwr=0.09 window_right_wwr=0.09 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas None ResStockArguments window_front_wwr=0.0 window_back_wwr=0.0 window_left_wwr=0.0 window_right_wwr=0.0 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Windows "Double, Clear, Metal, Air" ResStockArguments window_ufactor=0.76 window_shgc=0.67 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Metal, Air, Exterior Clear Storm" ResStockArguments window_ufactor=0.55 window_shgc=0.51 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.49 window_shgc=0.44 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Non-metal, Air" ResStockArguments window_ufactor=0.49 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Non-metal, Air, Exterior Clear Storm" ResStockArguments window_ufactor=0.34 window_shgc=0.49 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Non-metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.28 window_shgc=0.42 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Thermal-Break, Air" ResStockArguments window_ufactor=0.63 window_shgc=0.62 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Low-E, H-Gain" ResStockArguments window_ufactor=0.29 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Low-E, L-Gain" ResStockArguments window_ufactor=0.26 window_shgc=0.31 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Low-E, Non-metal, Air, L-Gain" ResStockArguments window_ufactor=0.37 window_shgc=0.3 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Low-E, Non-metal, Air, M-Gain" ResStockArguments window_ufactor=0.38 window_shgc=0.44 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Metal" ResStockArguments window_ufactor=1.16 window_shgc=0.76 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Metal, Exterior Clear Storm" ResStockArguments window_ufactor=0.67 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.57 window_shgc=0.47 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Non-metal" ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Non-metal, Exterior Clear Storm" ResStockArguments window_ufactor=0.47 window_shgc=0.54 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Non-metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.36 window_shgc=0.46 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Triple, Low-E, Insulated, Argon, H-Gain" ResStockArguments window_ufactor=0.18 window_shgc=0.40 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Triple, Low-E, Insulated, Argon, L-Gain" ResStockArguments window_ufactor=0.17 window_shgc=0.27 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Triple, Low-E, Non-metal, Air, L-Gain" ResStockArguments window_ufactor=0.29 window_shgc=0.26 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows No Windows ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows Void -Load Flexibility default LoadFlexibility \ No newline at end of file +Parameter Name Option Name Measure Dir Measure Arg 1 Measure Arg 2 ... +AHS Region "CBSA Atlanta-Sandy Springs-Roswell, GA" +AHS Region "CBSA Boston-Cambridge-Newton, MA-NH" +AHS Region "CBSA Chicago-Naperville-Elgin, IL-IN-WI" +AHS Region "CBSA Dallas-Fort Worth-Arlington, TX" +AHS Region "CBSA Detroit-Warren-Dearborn, MI" +AHS Region "CBSA Houston-The Woodlands-Sugar Land, TX" +AHS Region "CBSA Los Angeles-Long Beach-Anaheim, CA" +AHS Region "CBSA Miami-Fort Lauderdale-West Palm Beach, FL" +AHS Region "CBSA New York-Newark-Jersey City, NY-NJ-PA" +AHS Region "CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD" +AHS Region "CBSA Phoenix-Mesa-Scottsdale, AZ" +AHS Region "CBSA Riverside-San Bernardino-Ontario, CA" +AHS Region "CBSA San Francisco-Oakland-Hayward, CA" +AHS Region "CBSA Seattle-Tacoma-Bellevue, WA" +AHS Region "CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV" +AHS Region Non-CBSA East North Central +AHS Region Non-CBSA East South Central +AHS Region Non-CBSA Middle Atlantic +AHS Region Non-CBSA Mountain +AHS Region Non-CBSA New England +AHS Region Non-CBSA Pacific +AHS Region Non-CBSA South Atlantic +AHS Region Non-CBSA West North Central +AHS Region Non-CBSA West South Central +AIANNH Area No +AIANNH Area Yes +ASHRAE IECC Climate Zone 2004 1A ResStockArguments site_iecc_zone=1A site_type=auto +ASHRAE IECC Climate Zone 2004 2A ResStockArguments site_iecc_zone=2A site_type=auto +ASHRAE IECC Climate Zone 2004 2B ResStockArguments site_iecc_zone=2B site_type=auto +ASHRAE IECC Climate Zone 2004 3A ResStockArguments site_iecc_zone=3A site_type=auto +ASHRAE IECC Climate Zone 2004 3B ResStockArguments site_iecc_zone=3B site_type=auto +ASHRAE IECC Climate Zone 2004 3C ResStockArguments site_iecc_zone=3C site_type=auto +ASHRAE IECC Climate Zone 2004 4A ResStockArguments site_iecc_zone=4A site_type=auto +ASHRAE IECC Climate Zone 2004 4B ResStockArguments site_iecc_zone=4B site_type=auto +ASHRAE IECC Climate Zone 2004 4C ResStockArguments site_iecc_zone=4C site_type=auto +ASHRAE IECC Climate Zone 2004 5A ResStockArguments site_iecc_zone=5A site_type=auto +ASHRAE IECC Climate Zone 2004 5B ResStockArguments site_iecc_zone=5B site_type=auto +ASHRAE IECC Climate Zone 2004 6A ResStockArguments site_iecc_zone=6A site_type=auto +ASHRAE IECC Climate Zone 2004 6B ResStockArguments site_iecc_zone=6B site_type=auto +ASHRAE IECC Climate Zone 2004 7A ResStockArguments site_iecc_zone=7 site_type=auto +ASHRAE IECC Climate Zone 2004 7AK ResStockArguments site_iecc_zone=7 site_type=auto +ASHRAE IECC Climate Zone 2004 7B ResStockArguments site_iecc_zone=7 site_type=auto +ASHRAE IECC Climate Zone 2004 8AK ResStockArguments site_iecc_zone=8 site_type=auto +ASHRAE IECC Climate Zone 2004 - 2A Split "2A - FL, GA, AL, MS" +ASHRAE IECC Climate Zone 2004 - 2A Split "2A - TX, LA" +ASHRAE IECC Climate Zone 2004 - 2A Split 1A +ASHRAE IECC Climate Zone 2004 - 2A Split 2B +ASHRAE IECC Climate Zone 2004 - 2A Split 3A +ASHRAE IECC Climate Zone 2004 - 2A Split 3B +ASHRAE IECC Climate Zone 2004 - 2A Split 3C +ASHRAE IECC Climate Zone 2004 - 2A Split 4A +ASHRAE IECC Climate Zone 2004 - 2A Split 4B +ASHRAE IECC Climate Zone 2004 - 2A Split 4C +ASHRAE IECC Climate Zone 2004 - 2A Split 5A +ASHRAE IECC Climate Zone 2004 - 2A Split 5B +ASHRAE IECC Climate Zone 2004 - 2A Split 6A +ASHRAE IECC Climate Zone 2004 - 2A Split 6B +ASHRAE IECC Climate Zone 2004 - 2A Split 7A +ASHRAE IECC Climate Zone 2004 - 2A Split 7AK +ASHRAE IECC Climate Zone 2004 - 2A Split 7B +ASHRAE IECC Climate Zone 2004 - 2A Split 8AK +Area Median Income 0-30% +Area Median Income 100-120% +Area Median Income 120-150% +Area Median Income 150%+ +Area Median Income 30-60% +Area Median Income 60-80% +Area Median Income 80-100% +Area Median Income Not Available +Bathroom Spot Vent Hour Hour0 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=0 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour1 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=1 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour10 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=10 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour11 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=11 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour12 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=12 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour13 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=13 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour14 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=14 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour15 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=15 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour16 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=16 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour17 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=17 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour18 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=18 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour19 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=19 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour2 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=2 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour20 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=20 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour21 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=21 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour22 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=22 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour23 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=23 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour3 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=3 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour4 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=4 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour5 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=5 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour6 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=6 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour7 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=7 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour8 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=8 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour9 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=9 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Battery "20 kWh, 80% Round Trip Efficiency" ResStockArguments battery_present=true battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=0.8 +Battery "20 kWh, Garage" ResStockArguments battery_present=true battery_location=garage battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto +Battery "20 kWh, Outside" ResStockArguments battery_present=true battery_location=outside battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto +Battery 10 kWh ResStockArguments battery_present=true battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto +Battery None ResStockArguments battery_present=false battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto +Bedrooms 1 ResStockArguments geometry_unit_num_bedrooms=1 geometry_unit_num_bathrooms=auto +Bedrooms 2 ResStockArguments geometry_unit_num_bedrooms=2 geometry_unit_num_bathrooms=auto +Bedrooms 3 ResStockArguments geometry_unit_num_bedrooms=3 geometry_unit_num_bathrooms=auto +Bedrooms 4 ResStockArguments geometry_unit_num_bedrooms=4 geometry_unit_num_bathrooms=auto +Bedrooms 5 ResStockArguments geometry_unit_num_bedrooms=5 geometry_unit_num_bathrooms=auto +Building America Climate Zone Cold +Building America Climate Zone Hot-Dry +Building America Climate Zone Hot-Humid +Building America Climate Zone Marine +Building America Climate Zone Mixed-Dry +Building America Climate Zone Mixed-Humid +Building America Climate Zone Subarctic +Building America Climate Zone Very Cold +CEC Climate Zone 1 +CEC Climate Zone 10 +CEC Climate Zone 11 +CEC Climate Zone 12 +CEC Climate Zone 13 +CEC Climate Zone 14 +CEC Climate Zone 15 +CEC Climate Zone 16 +CEC Climate Zone 2 +CEC Climate Zone 3 +CEC Climate Zone 4 +CEC Climate Zone 5 +CEC Climate Zone 6 +CEC Climate Zone 7 +CEC Climate Zone 8 +CEC Climate Zone 9 +CEC Climate Zone None +Ceiling Fan "Premium Efficiency, 0.5F Offset" ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=140.8 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0.5 +Ceiling Fan "Standard Efficiency, 0.5F Offset" ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=70.4 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0.5 +Ceiling Fan "Standard Efficiency, No usage" ResStockArguments ceiling_fan_present=false ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=0 ceiling_fan_quantity=0 ceiling_fan_cooling_setpoint_temp_offset=0 +Ceiling Fan None ResStockArguments ceiling_fan_present=false ceiling_fan_label_energy_use=0 ceiling_fan_efficiency=0 ceiling_fan_quantity=0 ceiling_fan_cooling_setpoint_temp_offset=0 +Ceiling Fan Premium Efficiency ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=140.8 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0 +Ceiling Fan Standard Efficiency ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=70.4 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0 +Census Division East North Central +Census Division East South Central +Census Division Middle Atlantic +Census Division Mountain +Census Division New England +Census Division Pacific +Census Division South Atlantic +Census Division West North Central +Census Division West South Central +Census Division RECS East North Central +Census Division RECS East South Central +Census Division RECS Middle Atlantic +Census Division RECS Mountain North +Census Division RECS Mountain South +Census Division RECS New England +Census Division RECS Pacific +Census Division RECS South Atlantic +Census Division RECS West North Central +Census Division RECS West South Central +Census Region Midwest +Census Region Northeast +Census Region South +Census Region West +City "AK, Anchorage" ResStockArguments site_city=auto +City "AL, Auburn" ResStockArguments site_city=auto +City "AL, Birmingham" ResStockArguments site_city=auto +City "AL, Decatur" ResStockArguments site_city=auto +City "AL, Dothan" ResStockArguments site_city=auto +City "AL, Florence" ResStockArguments site_city=auto +City "AL, Gadsden" ResStockArguments site_city=auto +City "AL, Hoover" ResStockArguments site_city=auto +City "AL, Huntsville" ResStockArguments site_city=auto +City "AL, Madison" ResStockArguments site_city=auto +City "AL, Mobile" ResStockArguments site_city=auto +City "AL, Montgomery" ResStockArguments site_city=auto +City "AL, Phenix City" ResStockArguments site_city=auto +City "AL, Tuscaloosa" ResStockArguments site_city=auto +City "AR, Bentonville" ResStockArguments site_city=auto +City "AR, Conway" ResStockArguments site_city=auto +City "AR, Fayetteville" ResStockArguments site_city=auto +City "AR, Fort Smith" ResStockArguments site_city=auto +City "AR, Hot Springs" ResStockArguments site_city=auto +City "AR, Jonesboro" ResStockArguments site_city=auto +City "AR, Little Rock" ResStockArguments site_city=auto +City "AR, North Little Rock" ResStockArguments site_city=auto +City "AR, Pine Bluff" ResStockArguments site_city=auto +City "AR, Rogers" ResStockArguments site_city=auto +City "AR, Springdale" ResStockArguments site_city=auto +City "AZ, Apache Junction" ResStockArguments site_city=auto +City "AZ, Avondale" ResStockArguments site_city=auto +City "AZ, Buckeye" ResStockArguments site_city=auto +City "AZ, Bullhead City" ResStockArguments site_city=auto +City "AZ, Casa Grande" ResStockArguments site_city=auto +City "AZ, Casas Adobes" ResStockArguments site_city=auto +City "AZ, Catalina Foothills" ResStockArguments site_city=auto +City "AZ, Chandler" ResStockArguments site_city=auto +City "AZ, Flagstaff" ResStockArguments site_city=auto +City "AZ, Fortuna Foothills" ResStockArguments site_city=auto +City "AZ, Gilbert" ResStockArguments site_city=auto +City "AZ, Glendale" ResStockArguments site_city=auto +City "AZ, Goodyear" ResStockArguments site_city=auto +City "AZ, Green Valley" ResStockArguments site_city=auto +City "AZ, Lake Havasu City" ResStockArguments site_city=auto +City "AZ, Marana" ResStockArguments site_city=auto +City "AZ, Maricopa" ResStockArguments site_city=auto +City "AZ, Mesa" ResStockArguments site_city=auto +City "AZ, Oro Valley" ResStockArguments site_city=auto +City "AZ, Peoria" ResStockArguments site_city=auto +City "AZ, Phoenix" ResStockArguments site_city=auto +City "AZ, Prescott Valley" ResStockArguments site_city=auto +City "AZ, Prescott" ResStockArguments site_city=auto +City "AZ, San Tan Valley" ResStockArguments site_city=auto +City "AZ, Scottsdale" ResStockArguments site_city=auto +City "AZ, Sierra Vista" ResStockArguments site_city=auto +City "AZ, Sun City West" ResStockArguments site_city=auto +City "AZ, Sun City" ResStockArguments site_city=auto +City "AZ, Surprise" ResStockArguments site_city=auto +City "AZ, Tempe" ResStockArguments site_city=auto +City "AZ, Tucson" ResStockArguments site_city=auto +City "AZ, Yuma" ResStockArguments site_city=auto +City "CA, Alameda" ResStockArguments site_city=auto +City "CA, Alhambra" ResStockArguments site_city=auto +City "CA, Aliso Viejo" ResStockArguments site_city=auto +City "CA, Altadena" ResStockArguments site_city=auto +City "CA, Anaheim" ResStockArguments site_city=auto +City "CA, Antioch" ResStockArguments site_city=auto +City "CA, Apple Valley" ResStockArguments site_city=auto +City "CA, Arcadia" ResStockArguments site_city=auto +City "CA, Arden-Arcade" ResStockArguments site_city=auto +City "CA, Bakersfield" ResStockArguments site_city=auto +City "CA, Baldwin Park" ResStockArguments site_city=auto +City "CA, Bellflower" ResStockArguments site_city=auto +City "CA, Berkeley" ResStockArguments site_city=auto +City "CA, Beverly Hills" ResStockArguments site_city=auto +City "CA, Brea" ResStockArguments site_city=auto +City "CA, Brentwood" ResStockArguments site_city=auto +City "CA, Buena Park" ResStockArguments site_city=auto +City "CA, Burbank" ResStockArguments site_city=auto +City "CA, Camarillo" ResStockArguments site_city=auto +City "CA, Campbell" ResStockArguments site_city=auto +City "CA, Carlsbad" ResStockArguments site_city=auto +City "CA, Carmichael" ResStockArguments site_city=auto +City "CA, Carson" ResStockArguments site_city=auto +City "CA, Castro Valley" ResStockArguments site_city=auto +City "CA, Cathedral City" ResStockArguments site_city=auto +City "CA, Cerritos" ResStockArguments site_city=auto +City "CA, Chico" ResStockArguments site_city=auto +City "CA, Chino Hills" ResStockArguments site_city=auto +City "CA, Chino" ResStockArguments site_city=auto +City "CA, Chula Vista" ResStockArguments site_city=auto +City "CA, Citrus Heights" ResStockArguments site_city=auto +City "CA, Clovis" ResStockArguments site_city=auto +City "CA, Colton" ResStockArguments site_city=auto +City "CA, Compton" ResStockArguments site_city=auto +City "CA, Concord" ResStockArguments site_city=auto +City "CA, Corona" ResStockArguments site_city=auto +City "CA, Costa Mesa" ResStockArguments site_city=auto +City "CA, Covina" ResStockArguments site_city=auto +City "CA, Culver City" ResStockArguments site_city=auto +City "CA, Cupertino" ResStockArguments site_city=auto +City "CA, Cypress" ResStockArguments site_city=auto +City "CA, Daly City" ResStockArguments site_city=auto +City "CA, Dana Point" ResStockArguments site_city=auto +City "CA, Danville" ResStockArguments site_city=auto +City "CA, Davis" ResStockArguments site_city=auto +City "CA, Diamond Bar" ResStockArguments site_city=auto +City "CA, Downey" ResStockArguments site_city=auto +City "CA, Dublin" ResStockArguments site_city=auto +City "CA, East Los Angeles" ResStockArguments site_city=auto +City "CA, El Cajon" ResStockArguments site_city=auto +City "CA, El Dorado Hills" ResStockArguments site_city=auto +City "CA, El Monte" ResStockArguments site_city=auto +City "CA, Elk Grove" ResStockArguments site_city=auto +City "CA, Encinitas" ResStockArguments site_city=auto +City "CA, Escondido" ResStockArguments site_city=auto +City "CA, Fairfield" ResStockArguments site_city=auto +City "CA, Florence-Graham" ResStockArguments site_city=auto +City "CA, Florin" ResStockArguments site_city=auto +City "CA, Folsom" ResStockArguments site_city=auto +City "CA, Fontana" ResStockArguments site_city=auto +City "CA, Fountain Valley" ResStockArguments site_city=auto +City "CA, Fremont" ResStockArguments site_city=auto +City "CA, Fresno" ResStockArguments site_city=auto +City "CA, Fullerton" ResStockArguments site_city=auto +City "CA, Garden Grove" ResStockArguments site_city=auto +City "CA, Gardena" ResStockArguments site_city=auto +City "CA, Gilroy" ResStockArguments site_city=auto +City "CA, Glendale" ResStockArguments site_city=auto +City "CA, Glendora" ResStockArguments site_city=auto +City "CA, Hacienda Heights" ResStockArguments site_city=auto +City "CA, Hanford" ResStockArguments site_city=auto +City "CA, Hawthorne" ResStockArguments site_city=auto +City "CA, Hayward" ResStockArguments site_city=auto +City "CA, Hemet" ResStockArguments site_city=auto +City "CA, Hesperia" ResStockArguments site_city=auto +City "CA, Highland" ResStockArguments site_city=auto +City "CA, Huntington Beach" ResStockArguments site_city=auto +City "CA, Huntington Park" ResStockArguments site_city=auto +City "CA, Indio" ResStockArguments site_city=auto +City "CA, Inglewood" ResStockArguments site_city=auto +City "CA, Irvine" ResStockArguments site_city=auto +City "CA, La Habra" ResStockArguments site_city=auto +City "CA, La Mesa" ResStockArguments site_city=auto +City "CA, La Quinta" ResStockArguments site_city=auto +City "CA, Laguna Niguel" ResStockArguments site_city=auto +City "CA, Lake Elsinore" ResStockArguments site_city=auto +City "CA, Lake Forest" ResStockArguments site_city=auto +City "CA, Lakewood" ResStockArguments site_city=auto +City "CA, Lancaster" ResStockArguments site_city=auto +City "CA, Lincoln" ResStockArguments site_city=auto +City "CA, Livermore" ResStockArguments site_city=auto +City "CA, Lodi" ResStockArguments site_city=auto +City "CA, Long Beach" ResStockArguments site_city=auto +City "CA, Los Angeles" ResStockArguments site_city=auto +City "CA, Lynwood" ResStockArguments site_city=auto +City "CA, Madera" ResStockArguments site_city=auto +City "CA, Manhattan Beach" ResStockArguments site_city=auto +City "CA, Manteca" ResStockArguments site_city=auto +City "CA, Martinez" ResStockArguments site_city=auto +City "CA, Menifee" ResStockArguments site_city=auto +City "CA, Merced" ResStockArguments site_city=auto +City "CA, Milpitas" ResStockArguments site_city=auto +City "CA, Mission Viejo" ResStockArguments site_city=auto +City "CA, Modesto" ResStockArguments site_city=auto +City "CA, Montebello" ResStockArguments site_city=auto +City "CA, Monterey Park" ResStockArguments site_city=auto +City "CA, Moreno Valley" ResStockArguments site_city=auto +City "CA, Mountain View" ResStockArguments site_city=auto +City "CA, Murrieta" ResStockArguments site_city=auto +City "CA, Napa" ResStockArguments site_city=auto +City "CA, National City" ResStockArguments site_city=auto +City "CA, Newport Beach" ResStockArguments site_city=auto +City "CA, North Highlands" ResStockArguments site_city=auto +City "CA, Norwalk" ResStockArguments site_city=auto +City "CA, Novato" ResStockArguments site_city=auto +City "CA, Oakland" ResStockArguments site_city=auto +City "CA, Oceanside" ResStockArguments site_city=auto +City "CA, Ontario" ResStockArguments site_city=auto +City "CA, Orange" ResStockArguments site_city=auto +City "CA, Oxnard" ResStockArguments site_city=auto +City "CA, Palm Desert" ResStockArguments site_city=auto +City "CA, Palm Springs" ResStockArguments site_city=auto +City "CA, Palmdale" ResStockArguments site_city=auto +City "CA, Palo Alto" ResStockArguments site_city=auto +City "CA, Pasadena" ResStockArguments site_city=auto +City "CA, Perris" ResStockArguments site_city=auto +City "CA, Petaluma" ResStockArguments site_city=auto +City "CA, Pico Rivera" ResStockArguments site_city=auto +City "CA, Pittsburg" ResStockArguments site_city=auto +City "CA, Placentia" ResStockArguments site_city=auto +City "CA, Pleasanton" ResStockArguments site_city=auto +City "CA, Pomona" ResStockArguments site_city=auto +City "CA, Porterville" ResStockArguments site_city=auto +City "CA, Poway" ResStockArguments site_city=auto +City "CA, Rancho Cordova" ResStockArguments site_city=auto +City "CA, Rancho Cucamonga" ResStockArguments site_city=auto +City "CA, Rancho Palos Verdes" ResStockArguments site_city=auto +City "CA, Rancho Santa Margarita" ResStockArguments site_city=auto +City "CA, Redding" ResStockArguments site_city=auto +City "CA, Redlands" ResStockArguments site_city=auto +City "CA, Redondo Beach" ResStockArguments site_city=auto +City "CA, Redwood City" ResStockArguments site_city=auto +City "CA, Rialto" ResStockArguments site_city=auto +City "CA, Richmond" ResStockArguments site_city=auto +City "CA, Riverside" ResStockArguments site_city=auto +City "CA, Rocklin" ResStockArguments site_city=auto +City "CA, Rohnert Park" ResStockArguments site_city=auto +City "CA, Rosemead" ResStockArguments site_city=auto +City "CA, Roseville" ResStockArguments site_city=auto +City "CA, Rowland Heights" ResStockArguments site_city=auto +City "CA, Sacramento" ResStockArguments site_city=auto +City "CA, Salinas" ResStockArguments site_city=auto +City "CA, San Bernardino" ResStockArguments site_city=auto +City "CA, San Bruno" ResStockArguments site_city=auto +City "CA, San Buenaventura Ventura" ResStockArguments site_city=auto +City "CA, San Clemente" ResStockArguments site_city=auto +City "CA, San Diego" ResStockArguments site_city=auto +City "CA, San Francisco" ResStockArguments site_city=auto +City "CA, San Jose" ResStockArguments site_city=auto +City "CA, San Leandro" ResStockArguments site_city=auto +City "CA, San Luis Obispo" ResStockArguments site_city=auto +City "CA, San Marcos" ResStockArguments site_city=auto +City "CA, San Mateo" ResStockArguments site_city=auto +City "CA, San Rafael" ResStockArguments site_city=auto +City "CA, San Ramon" ResStockArguments site_city=auto +City "CA, Santa Ana" ResStockArguments site_city=auto +City "CA, Santa Barbara" ResStockArguments site_city=auto +City "CA, Santa Clara" ResStockArguments site_city=auto +City "CA, Santa Clarita" ResStockArguments site_city=auto +City "CA, Santa Cruz" ResStockArguments site_city=auto +City "CA, Santa Maria" ResStockArguments site_city=auto +City "CA, Santa Monica" ResStockArguments site_city=auto +City "CA, Santa Rosa" ResStockArguments site_city=auto +City "CA, Santee" ResStockArguments site_city=auto +City "CA, Simi Valley" ResStockArguments site_city=auto +City "CA, South Gate" ResStockArguments site_city=auto +City "CA, South Lake Tahoe" ResStockArguments site_city=auto +City "CA, South San Francisco" ResStockArguments site_city=auto +City "CA, South Whittier" ResStockArguments site_city=auto +City "CA, Stockton" ResStockArguments site_city=auto +City "CA, Sunnyvale" ResStockArguments site_city=auto +City "CA, Temecula" ResStockArguments site_city=auto +City "CA, Thousand Oaks" ResStockArguments site_city=auto +City "CA, Torrance" ResStockArguments site_city=auto +City "CA, Tracy" ResStockArguments site_city=auto +City "CA, Tulare" ResStockArguments site_city=auto +City "CA, Turlock" ResStockArguments site_city=auto +City "CA, Tustin" ResStockArguments site_city=auto +City "CA, Union City" ResStockArguments site_city=auto +City "CA, Upland" ResStockArguments site_city=auto +City "CA, Vacaville" ResStockArguments site_city=auto +City "CA, Vallejo" ResStockArguments site_city=auto +City "CA, Victorville" ResStockArguments site_city=auto +City "CA, Visalia" ResStockArguments site_city=auto +City "CA, Vista" ResStockArguments site_city=auto +City "CA, Walnut Creek" ResStockArguments site_city=auto +City "CA, West Covina" ResStockArguments site_city=auto +City "CA, West Hollywood" ResStockArguments site_city=auto +City "CA, West Sacramento" ResStockArguments site_city=auto +City "CA, Westminster" ResStockArguments site_city=auto +City "CA, Whittier" ResStockArguments site_city=auto +City "CA, Woodland" ResStockArguments site_city=auto +City "CA, Yorba Linda" ResStockArguments site_city=auto +City "CA, Yuba City" ResStockArguments site_city=auto +City "CA, Yucaipa" ResStockArguments site_city=auto +City "CO, Arvada" ResStockArguments site_city=auto +City "CO, Aurora" ResStockArguments site_city=auto +City "CO, Boulder" ResStockArguments site_city=auto +City "CO, Broomfield" ResStockArguments site_city=auto +City "CO, Castle Rock" ResStockArguments site_city=auto +City "CO, Centennial" ResStockArguments site_city=auto +City "CO, Colorado Springs" ResStockArguments site_city=auto +City "CO, Commerce City" ResStockArguments site_city=auto +City "CO, Denver" ResStockArguments site_city=auto +City "CO, Englewood" ResStockArguments site_city=auto +City "CO, Fort Collins" ResStockArguments site_city=auto +City "CO, Grand Junction" ResStockArguments site_city=auto +City "CO, Greeley" ResStockArguments site_city=auto +City "CO, Highlands Ranch" ResStockArguments site_city=auto +City "CO, Lakewood" ResStockArguments site_city=auto +City "CO, Littleton" ResStockArguments site_city=auto +City "CO, Longmont" ResStockArguments site_city=auto +City "CO, Loveland" ResStockArguments site_city=auto +City "CO, Parker" ResStockArguments site_city=auto +City "CO, Pueblo" ResStockArguments site_city=auto +City "CO, Thornton" ResStockArguments site_city=auto +City "CO, Westminster" ResStockArguments site_city=auto +City "CT, Bridgeport" ResStockArguments site_city=auto +City "CT, Bristol" ResStockArguments site_city=auto +City "CT, Danbury" ResStockArguments site_city=auto +City "CT, East Hartford" ResStockArguments site_city=auto +City "CT, Hartford" ResStockArguments site_city=auto +City "CT, Meriden" ResStockArguments site_city=auto +City "CT, Middletown" ResStockArguments site_city=auto +City "CT, Milford City Balance" ResStockArguments site_city=auto +City "CT, New Britain" ResStockArguments site_city=auto +City "CT, New Haven" ResStockArguments site_city=auto +City "CT, Norwalk" ResStockArguments site_city=auto +City "CT, Norwich" ResStockArguments site_city=auto +City "CT, Shelton" ResStockArguments site_city=auto +City "CT, Stamford" ResStockArguments site_city=auto +City "CT, Stratford" ResStockArguments site_city=auto +City "CT, Torrington" ResStockArguments site_city=auto +City "CT, Waterbury" ResStockArguments site_city=auto +City "CT, West Hartford" ResStockArguments site_city=auto +City "CT, West Haven" ResStockArguments site_city=auto +City "DC, Washington" ResStockArguments site_city=auto +City "DE, Dover" ResStockArguments site_city=auto +City "DE, Wilmington" ResStockArguments site_city=auto +City "FL, Alafaya" ResStockArguments site_city=auto +City "FL, Altamonte Springs" ResStockArguments site_city=auto +City "FL, Apopka" ResStockArguments site_city=auto +City "FL, Aventura" ResStockArguments site_city=auto +City "FL, Boca Raton" ResStockArguments site_city=auto +City "FL, Bonita Springs" ResStockArguments site_city=auto +City "FL, Boynton Beach" ResStockArguments site_city=auto +City "FL, Bradenton" ResStockArguments site_city=auto +City "FL, Brandon" ResStockArguments site_city=auto +City "FL, Cape Coral" ResStockArguments site_city=auto +City "FL, Carrollwood" ResStockArguments site_city=auto +City "FL, Clearwater" ResStockArguments site_city=auto +City "FL, Coconut Creek" ResStockArguments site_city=auto +City "FL, Coral Gables" ResStockArguments site_city=auto +City "FL, Coral Springs" ResStockArguments site_city=auto +City "FL, Country Club" ResStockArguments site_city=auto +City "FL, Dania Beach" ResStockArguments site_city=auto +City "FL, Davie" ResStockArguments site_city=auto +City "FL, Daytona Beach" ResStockArguments site_city=auto +City "FL, Deerfield Beach" ResStockArguments site_city=auto +City "FL, Delray Beach" ResStockArguments site_city=auto +City "FL, Deltona" ResStockArguments site_city=auto +City "FL, Doral" ResStockArguments site_city=auto +City "FL, Dunedin" ResStockArguments site_city=auto +City "FL, East Lake" ResStockArguments site_city=auto +City "FL, Estero" ResStockArguments site_city=auto +City "FL, Fort Lauderdale" ResStockArguments site_city=auto +City "FL, Fort Myers" ResStockArguments site_city=auto +City "FL, Fort Pierce" ResStockArguments site_city=auto +City "FL, Fountainebleau" ResStockArguments site_city=auto +City "FL, Four Corners" ResStockArguments site_city=auto +City "FL, Gainesville" ResStockArguments site_city=auto +City "FL, Greenacres" ResStockArguments site_city=auto +City "FL, Hallandale Beach" ResStockArguments site_city=auto +City "FL, Hialeah" ResStockArguments site_city=auto +City "FL, Hollywood" ResStockArguments site_city=auto +City "FL, Homestead" ResStockArguments site_city=auto +City "FL, Jacksonville" ResStockArguments site_city=auto +City "FL, Jupiter" ResStockArguments site_city=auto +City "FL, Kendale Lakes" ResStockArguments site_city=auto +City "FL, Kendall" ResStockArguments site_city=auto +City "FL, Kissimmee" ResStockArguments site_city=auto +City "FL, Lake Worth" ResStockArguments site_city=auto +City "FL, Lakeland" ResStockArguments site_city=auto +City "FL, Largo" ResStockArguments site_city=auto +City "FL, Lauderhill" ResStockArguments site_city=auto +City "FL, Lehigh Acres" ResStockArguments site_city=auto +City "FL, Marco Island" ResStockArguments site_city=auto +City "FL, Margate" ResStockArguments site_city=auto +City "FL, Melbourne" ResStockArguments site_city=auto +City "FL, Merritt Island" ResStockArguments site_city=auto +City "FL, Miami Beach" ResStockArguments site_city=auto +City "FL, Miami Gardens" ResStockArguments site_city=auto +City "FL, Miami" ResStockArguments site_city=auto +City "FL, Miramar" ResStockArguments site_city=auto +City "FL, Naples" ResStockArguments site_city=auto +City "FL, New Smyrna Beach" ResStockArguments site_city=auto +City "FL, North Fort Myers" ResStockArguments site_city=auto +City "FL, North Miami Beach" ResStockArguments site_city=auto +City "FL, North Miami" ResStockArguments site_city=auto +City "FL, North Port" ResStockArguments site_city=auto +City "FL, Oakland Park" ResStockArguments site_city=auto +City "FL, Ocala" ResStockArguments site_city=auto +City "FL, Orlando" ResStockArguments site_city=auto +City "FL, Ormond Beach" ResStockArguments site_city=auto +City "FL, Palm Bay" ResStockArguments site_city=auto +City "FL, Palm Beach Gardens" ResStockArguments site_city=auto +City "FL, Palm Coast" ResStockArguments site_city=auto +City "FL, Palm Harbor" ResStockArguments site_city=auto +City "FL, Panama City Beach" ResStockArguments site_city=auto +City "FL, Panama City" ResStockArguments site_city=auto +City "FL, Pembroke Pines" ResStockArguments site_city=auto +City "FL, Pensacola" ResStockArguments site_city=auto +City "FL, Pine Hills" ResStockArguments site_city=auto +City "FL, Pinellas Park" ResStockArguments site_city=auto +City "FL, Plantation" ResStockArguments site_city=auto +City "FL, Poinciana" ResStockArguments site_city=auto +City "FL, Pompano Beach" ResStockArguments site_city=auto +City "FL, Port Charlotte" ResStockArguments site_city=auto +City "FL, Port Orange" ResStockArguments site_city=auto +City "FL, Port St Lucie" ResStockArguments site_city=auto +City "FL, Riverview" ResStockArguments site_city=auto +City "FL, Riviera Beach" ResStockArguments site_city=auto +City "FL, Sanford" ResStockArguments site_city=auto +City "FL, Sarasota" ResStockArguments site_city=auto +City "FL, Spring Hill" ResStockArguments site_city=auto +City "FL, St Cloud" ResStockArguments site_city=auto +City "FL, St Petersburg" ResStockArguments site_city=auto +City "FL, Sun City Center" ResStockArguments site_city=auto +City "FL, Sunny Isles Beach" ResStockArguments site_city=auto +City "FL, Sunrise" ResStockArguments site_city=auto +City "FL, Tallahassee" ResStockArguments site_city=auto +City "FL, Tamarac" ResStockArguments site_city=auto +City "FL, Tamiami" ResStockArguments site_city=auto +City "FL, Tampa" ResStockArguments site_city=auto +City "FL, The Hammocks" ResStockArguments site_city=auto +City "FL, The Villages" ResStockArguments site_city=auto +City "FL, Titusville" ResStockArguments site_city=auto +City "FL, Town N Country" ResStockArguments site_city=auto +City "FL, University" ResStockArguments site_city=auto +City "FL, Venice" ResStockArguments site_city=auto +City "FL, Wellington" ResStockArguments site_city=auto +City "FL, Wesley Chapel" ResStockArguments site_city=auto +City "FL, West Palm Beach" ResStockArguments site_city=auto +City "FL, Weston" ResStockArguments site_city=auto +City "FL, Winter Haven" ResStockArguments site_city=auto +City "GA, Albany" ResStockArguments site_city=auto +City "GA, Alpharetta" ResStockArguments site_city=auto +City "GA, Athens-Clarke County Unified Government Balance" ResStockArguments site_city=auto +City "GA, Atlanta" ResStockArguments site_city=auto +City "GA, Augusta-Richmond County Consolidated Government Balance" ResStockArguments site_city=auto +City "GA, Columbus" ResStockArguments site_city=auto +City "GA, Dunwoody" ResStockArguments site_city=auto +City "GA, East Point" ResStockArguments site_city=auto +City "GA, Hinesville" ResStockArguments site_city=auto +City "GA, Johns Creek" ResStockArguments site_city=auto +City "GA, Mableton" ResStockArguments site_city=auto +City "GA, Macon" ResStockArguments site_city=auto +City "GA, Marietta" ResStockArguments site_city=auto +City "GA, Newnan" ResStockArguments site_city=auto +City "GA, North Atlanta" ResStockArguments site_city=auto +City "GA, Rome" ResStockArguments site_city=auto +City "GA, Roswell" ResStockArguments site_city=auto +City "GA, Sandy Springs" ResStockArguments site_city=auto +City "GA, Savannah" ResStockArguments site_city=auto +City "GA, Smyrna" ResStockArguments site_city=auto +City "GA, Valdosta" ResStockArguments site_city=auto +City "GA, Warner Robins" ResStockArguments site_city=auto +City "HI, East Honolulu" ResStockArguments site_city=auto +City "HI, Hilo" ResStockArguments site_city=auto +City "HI, Kailua" ResStockArguments site_city=auto +City "HI, Urban Honolulu" ResStockArguments site_city=auto +City "IA, Ames" ResStockArguments site_city=auto +City "IA, Ankeny" ResStockArguments site_city=auto +City "IA, Cedar Falls" ResStockArguments site_city=auto +City "IA, Cedar Rapids" ResStockArguments site_city=auto +City "IA, Council Bluffs" ResStockArguments site_city=auto +City "IA, Davenport" ResStockArguments site_city=auto +City "IA, Des Moines" ResStockArguments site_city=auto +City "IA, Dubuque" ResStockArguments site_city=auto +City "IA, Iowa City" ResStockArguments site_city=auto +City "IA, Marion" ResStockArguments site_city=auto +City "IA, Sioux City" ResStockArguments site_city=auto +City "IA, Urbandale" ResStockArguments site_city=auto +City "IA, Waterloo" ResStockArguments site_city=auto +City "IA, West Des Moines" ResStockArguments site_city=auto +City "ID, Boise City" ResStockArguments site_city=auto +City "ID, Caldwell" ResStockArguments site_city=auto +City "ID, Coeur Dalene" ResStockArguments site_city=auto +City "ID, Idaho Falls" ResStockArguments site_city=auto +City "ID, Meridian" ResStockArguments site_city=auto +City "ID, Nampa" ResStockArguments site_city=auto +City "ID, Pocatello" ResStockArguments site_city=auto +City "ID, Twin Falls" ResStockArguments site_city=auto +City "IL, Arlington Heights" ResStockArguments site_city=auto +City "IL, Aurora" ResStockArguments site_city=auto +City "IL, Belleville" ResStockArguments site_city=auto +City "IL, Berwyn" ResStockArguments site_city=auto +City "IL, Bloomington" ResStockArguments site_city=auto +City "IL, Bolingbrook" ResStockArguments site_city=auto +City "IL, Buffalo Grove" ResStockArguments site_city=auto +City "IL, Calumet City" ResStockArguments site_city=auto +City "IL, Carol Stream" ResStockArguments site_city=auto +City "IL, Champaign" ResStockArguments site_city=auto +City "IL, Chicago" ResStockArguments site_city=auto +City "IL, Cicero" ResStockArguments site_city=auto +City "IL, Crystal Lake" ResStockArguments site_city=auto +City "IL, Decatur" ResStockArguments site_city=auto +City "IL, Dekalb" ResStockArguments site_city=auto +City "IL, Des Plaines" ResStockArguments site_city=auto +City "IL, Downers Grove" ResStockArguments site_city=auto +City "IL, Elgin" ResStockArguments site_city=auto +City "IL, Elmhurst" ResStockArguments site_city=auto +City "IL, Evanston" ResStockArguments site_city=auto +City "IL, Glenview" ResStockArguments site_city=auto +City "IL, Hoffman Estates" ResStockArguments site_city=auto +City "IL, Joliet" ResStockArguments site_city=auto +City "IL, Lombard" ResStockArguments site_city=auto +City "IL, Moline" ResStockArguments site_city=auto +City "IL, Mount Prospect" ResStockArguments site_city=auto +City "IL, Naperville" ResStockArguments site_city=auto +City "IL, Normal" ResStockArguments site_city=auto +City "IL, Oak Lawn" ResStockArguments site_city=auto +City "IL, Oak Park" ResStockArguments site_city=auto +City "IL, Orland Park" ResStockArguments site_city=auto +City "IL, Palatine" ResStockArguments site_city=auto +City "IL, Peoria" ResStockArguments site_city=auto +City "IL, Quincy" ResStockArguments site_city=auto +City "IL, Rock Island" ResStockArguments site_city=auto +City "IL, Rockford" ResStockArguments site_city=auto +City "IL, Schaumburg" ResStockArguments site_city=auto +City "IL, Skokie" ResStockArguments site_city=auto +City "IL, Springfield" ResStockArguments site_city=auto +City "IL, Tinley Park" ResStockArguments site_city=auto +City "IL, Urbana" ResStockArguments site_city=auto +City "IL, Waukegan" ResStockArguments site_city=auto +City "IL, Wheaton" ResStockArguments site_city=auto +City "IL, Wheeling" ResStockArguments site_city=auto +City "IN, Anderson" ResStockArguments site_city=auto +City "IN, Bloomington" ResStockArguments site_city=auto +City "IN, Carmel" ResStockArguments site_city=auto +City "IN, Columbus" ResStockArguments site_city=auto +City "IN, Elkhart" ResStockArguments site_city=auto +City "IN, Evansville" ResStockArguments site_city=auto +City "IN, Fishers" ResStockArguments site_city=auto +City "IN, Fort Wayne" ResStockArguments site_city=auto +City "IN, Gary" ResStockArguments site_city=auto +City "IN, Greenwood" ResStockArguments site_city=auto +City "IN, Hammond" ResStockArguments site_city=auto +City "IN, Indianapolis City Balance" ResStockArguments site_city=auto +City "IN, Jeffersonville" ResStockArguments site_city=auto +City "IN, Kokomo" ResStockArguments site_city=auto +City "IN, Lafayette" ResStockArguments site_city=auto +City "IN, Lawrence" ResStockArguments site_city=auto +City "IN, Mishawaka" ResStockArguments site_city=auto +City "IN, Muncie" ResStockArguments site_city=auto +City "IN, New Albany" ResStockArguments site_city=auto +City "IN, Noblesville" ResStockArguments site_city=auto +City "IN, Portage" ResStockArguments site_city=auto +City "IN, Richmond" ResStockArguments site_city=auto +City "IN, South Bend" ResStockArguments site_city=auto +City "IN, Terre Haute" ResStockArguments site_city=auto +City "KS, Hutchinson" ResStockArguments site_city=auto +City "KS, Kansas City" ResStockArguments site_city=auto +City "KS, Lawrence" ResStockArguments site_city=auto +City "KS, Lenexa" ResStockArguments site_city=auto +City "KS, Manhattan" ResStockArguments site_city=auto +City "KS, Olathe" ResStockArguments site_city=auto +City "KS, Overland Park" ResStockArguments site_city=auto +City "KS, Salina" ResStockArguments site_city=auto +City "KS, Shawnee" ResStockArguments site_city=auto +City "KS, Topeka" ResStockArguments site_city=auto +City "KS, Wichita" ResStockArguments site_city=auto +City "KY, Bowling Green" ResStockArguments site_city=auto +City "KY, Covington" ResStockArguments site_city=auto +City "KY, Lexington-Fayette" ResStockArguments site_city=auto +City "KY, Louisville Jefferson County Metro Government Balance" ResStockArguments site_city=auto +City "KY, Owensboro" ResStockArguments site_city=auto +City "LA, Alexandria" ResStockArguments site_city=auto +City "LA, Baton Rouge" ResStockArguments site_city=auto +City "LA, Bossier City" ResStockArguments site_city=auto +City "LA, Kenner" ResStockArguments site_city=auto +City "LA, Lafayette" ResStockArguments site_city=auto +City "LA, Lake Charles" ResStockArguments site_city=auto +City "LA, Metairie" ResStockArguments site_city=auto +City "LA, Monroe" ResStockArguments site_city=auto +City "LA, New Orleans" ResStockArguments site_city=auto +City "LA, Shreveport" ResStockArguments site_city=auto +City "MA, Arlington" ResStockArguments site_city=auto +City "MA, Attleboro" ResStockArguments site_city=auto +City "MA, Barnstable Town" ResStockArguments site_city=auto +City "MA, Beverly" ResStockArguments site_city=auto +City "MA, Boston" ResStockArguments site_city=auto +City "MA, Brockton" ResStockArguments site_city=auto +City "MA, Brookline" ResStockArguments site_city=auto +City "MA, Cambridge" ResStockArguments site_city=auto +City "MA, Chicopee" ResStockArguments site_city=auto +City "MA, Everett" ResStockArguments site_city=auto +City "MA, Fall River" ResStockArguments site_city=auto +City "MA, Fitchburg" ResStockArguments site_city=auto +City "MA, Framingham" ResStockArguments site_city=auto +City "MA, Haverhill" ResStockArguments site_city=auto +City "MA, Holyoke" ResStockArguments site_city=auto +City "MA, Lawrence" ResStockArguments site_city=auto +City "MA, Leominster" ResStockArguments site_city=auto +City "MA, Lowell" ResStockArguments site_city=auto +City "MA, Lynn" ResStockArguments site_city=auto +City "MA, Malden" ResStockArguments site_city=auto +City "MA, Marlborough" ResStockArguments site_city=auto +City "MA, Medford" ResStockArguments site_city=auto +City "MA, Methuen Town" ResStockArguments site_city=auto +City "MA, New Bedford" ResStockArguments site_city=auto +City "MA, Newton" ResStockArguments site_city=auto +City "MA, Peabody" ResStockArguments site_city=auto +City "MA, Pittsfield" ResStockArguments site_city=auto +City "MA, Quincy" ResStockArguments site_city=auto +City "MA, Revere" ResStockArguments site_city=auto +City "MA, Salem" ResStockArguments site_city=auto +City "MA, Somerville" ResStockArguments site_city=auto +City "MA, Springfield" ResStockArguments site_city=auto +City "MA, Taunton" ResStockArguments site_city=auto +City "MA, Waltham" ResStockArguments site_city=auto +City "MA, Watertown Town" ResStockArguments site_city=auto +City "MA, Westfield" ResStockArguments site_city=auto +City "MA, Weymouth Town" ResStockArguments site_city=auto +City "MA, Woburn" ResStockArguments site_city=auto +City "MA, Worcester" ResStockArguments site_city=auto +City "MD, Annapolis" ResStockArguments site_city=auto +City "MD, Aspen Hill" ResStockArguments site_city=auto +City "MD, Baltimore" ResStockArguments site_city=auto +City "MD, Bel Air South" ResStockArguments site_city=auto +City "MD, Bethesda" ResStockArguments site_city=auto +City "MD, Bowie" ResStockArguments site_city=auto +City "MD, Catonsville" ResStockArguments site_city=auto +City "MD, Columbia" ResStockArguments site_city=auto +City "MD, Dundalk" ResStockArguments site_city=auto +City "MD, Ellicott City" ResStockArguments site_city=auto +City "MD, Essex" ResStockArguments site_city=auto +City "MD, Frederick" ResStockArguments site_city=auto +City "MD, Gaithersburg" ResStockArguments site_city=auto +City "MD, Germantown" ResStockArguments site_city=auto +City "MD, Glen Burnie" ResStockArguments site_city=auto +City "MD, Hagerstown" ResStockArguments site_city=auto +City "MD, North Bethesda" ResStockArguments site_city=auto +City "MD, Ocean City" ResStockArguments site_city=auto +City "MD, Odenton" ResStockArguments site_city=auto +City "MD, Potomac" ResStockArguments site_city=auto +City "MD, Rockville" ResStockArguments site_city=auto +City "MD, Severn" ResStockArguments site_city=auto +City "MD, Silver Spring" ResStockArguments site_city=auto +City "MD, Towson" ResStockArguments site_city=auto +City "MD, Waldorf" ResStockArguments site_city=auto +City "MD, Wheaton" ResStockArguments site_city=auto +City "MD, Woodlawn" ResStockArguments site_city=auto +City "ME, Bangor" ResStockArguments site_city=auto +City "ME, Lewiston" ResStockArguments site_city=auto +City "ME, Portland" ResStockArguments site_city=auto +City "MI, Ann Arbor" ResStockArguments site_city=auto +City "MI, Battle Creek" ResStockArguments site_city=auto +City "MI, Bay City" ResStockArguments site_city=auto +City "MI, Dearborn Heights" ResStockArguments site_city=auto +City "MI, Dearborn" ResStockArguments site_city=auto +City "MI, Detroit" ResStockArguments site_city=auto +City "MI, Farmington Hills" ResStockArguments site_city=auto +City "MI, Flint" ResStockArguments site_city=auto +City "MI, Grand Rapids" ResStockArguments site_city=auto +City "MI, Jackson" ResStockArguments site_city=auto +City "MI, Kalamazoo" ResStockArguments site_city=auto +City "MI, Kentwood" ResStockArguments site_city=auto +City "MI, Lansing" ResStockArguments site_city=auto +City "MI, Lincoln Park" ResStockArguments site_city=auto +City "MI, Livonia" ResStockArguments site_city=auto +City "MI, Midland" ResStockArguments site_city=auto +City "MI, Muskegon" ResStockArguments site_city=auto +City "MI, Novi" ResStockArguments site_city=auto +City "MI, Pontiac" ResStockArguments site_city=auto +City "MI, Portage" ResStockArguments site_city=auto +City "MI, Rochester Hills" ResStockArguments site_city=auto +City "MI, Roseville" ResStockArguments site_city=auto +City "MI, Royal Oak" ResStockArguments site_city=auto +City "MI, Saginaw" ResStockArguments site_city=auto +City "MI, Southfield" ResStockArguments site_city=auto +City "MI, St Clair Shores" ResStockArguments site_city=auto +City "MI, Sterling Heights" ResStockArguments site_city=auto +City "MI, Taylor" ResStockArguments site_city=auto +City "MI, Troy" ResStockArguments site_city=auto +City "MI, Warren" ResStockArguments site_city=auto +City "MI, Westland" ResStockArguments site_city=auto +City "MI, Wyoming" ResStockArguments site_city=auto +City "MN, Apple Valley" ResStockArguments site_city=auto +City "MN, Blaine" ResStockArguments site_city=auto +City "MN, Bloomington" ResStockArguments site_city=auto +City "MN, Brooklyn Park" ResStockArguments site_city=auto +City "MN, Burnsville" ResStockArguments site_city=auto +City "MN, Coon Rapids" ResStockArguments site_city=auto +City "MN, Duluth" ResStockArguments site_city=auto +City "MN, Eagan" ResStockArguments site_city=auto +City "MN, Eden Prairie" ResStockArguments site_city=auto +City "MN, Edina" ResStockArguments site_city=auto +City "MN, Lakeville" ResStockArguments site_city=auto +City "MN, Mankato" ResStockArguments site_city=auto +City "MN, Maple Grove" ResStockArguments site_city=auto +City "MN, Maplewood" ResStockArguments site_city=auto +City "MN, Minneapolis" ResStockArguments site_city=auto +City "MN, Minnetonka" ResStockArguments site_city=auto +City "MN, Moorhead" ResStockArguments site_city=auto +City "MN, Plymouth" ResStockArguments site_city=auto +City "MN, Richfield" ResStockArguments site_city=auto +City "MN, Rochester" ResStockArguments site_city=auto +City "MN, Roseville" ResStockArguments site_city=auto +City "MN, St Cloud" ResStockArguments site_city=auto +City "MN, St Louis Park" ResStockArguments site_city=auto +City "MN, St Paul" ResStockArguments site_city=auto +City "MN, Woodbury" ResStockArguments site_city=auto +City "MO, Blue Springs" ResStockArguments site_city=auto +City "MO, Cape Girardeau" ResStockArguments site_city=auto +City "MO, Chesterfield" ResStockArguments site_city=auto +City "MO, Columbia" ResStockArguments site_city=auto +City "MO, Florissant" ResStockArguments site_city=auto +City "MO, Independence" ResStockArguments site_city=auto +City "MO, Jefferson City" ResStockArguments site_city=auto +City "MO, Joplin" ResStockArguments site_city=auto +City "MO, Kansas City" ResStockArguments site_city=auto +City "MO, Lees Summit" ResStockArguments site_city=auto +City "MO, Ofallon" ResStockArguments site_city=auto +City "MO, Springfield" ResStockArguments site_city=auto +City "MO, St Charles" ResStockArguments site_city=auto +City "MO, St Joseph" ResStockArguments site_city=auto +City "MO, St Louis" ResStockArguments site_city=auto +City "MO, St Peters" ResStockArguments site_city=auto +City "MO, University City" ResStockArguments site_city=auto +City "MS, Biloxi" ResStockArguments site_city=auto +City "MS, Gulfport" ResStockArguments site_city=auto +City "MS, Hattiesburg" ResStockArguments site_city=auto +City "MS, Jackson" ResStockArguments site_city=auto +City "MS, Meridian" ResStockArguments site_city=auto +City "MS, Southaven" ResStockArguments site_city=auto +City "MS, Tupelo" ResStockArguments site_city=auto +City "MT, Billings" ResStockArguments site_city=auto +City "MT, Bozeman" ResStockArguments site_city=auto +City "MT, Butte-Silver Bow Balance" ResStockArguments site_city=auto +City "MT, Great Falls" ResStockArguments site_city=auto +City "MT, Missoula" ResStockArguments site_city=auto +City "NC, Asheville" ResStockArguments site_city=auto +City "NC, Burlington" ResStockArguments site_city=auto +City "NC, Cary" ResStockArguments site_city=auto +City "NC, Chapel Hill" ResStockArguments site_city=auto +City "NC, Charlotte" ResStockArguments site_city=auto +City "NC, Concord" ResStockArguments site_city=auto +City "NC, Durham" ResStockArguments site_city=auto +City "NC, Fayetteville" ResStockArguments site_city=auto +City "NC, Gastonia" ResStockArguments site_city=auto +City "NC, Goldsboro" ResStockArguments site_city=auto +City "NC, Greensboro" ResStockArguments site_city=auto +City "NC, Greenville" ResStockArguments site_city=auto +City "NC, Hickory" ResStockArguments site_city=auto +City "NC, High Point" ResStockArguments site_city=auto +City "NC, Huntersville" ResStockArguments site_city=auto +City "NC, Jacksonville" ResStockArguments site_city=auto +City "NC, Kannapolis" ResStockArguments site_city=auto +City "NC, Raleigh" ResStockArguments site_city=auto +City "NC, Rocky Mount" ResStockArguments site_city=auto +City "NC, Wilmington" ResStockArguments site_city=auto +City "NC, Wilson" ResStockArguments site_city=auto +City "NC, Winston-Salem" ResStockArguments site_city=auto +City "ND, Bismarck" ResStockArguments site_city=auto +City "ND, Fargo" ResStockArguments site_city=auto +City "ND, Grand Forks" ResStockArguments site_city=auto +City "ND, Minot" ResStockArguments site_city=auto +City "NE, Bellevue" ResStockArguments site_city=auto +City "NE, Grand Island" ResStockArguments site_city=auto +City "NE, Lincoln" ResStockArguments site_city=auto +City "NE, Omaha" ResStockArguments site_city=auto +City "NH, Concord" ResStockArguments site_city=auto +City "NH, Manchester" ResStockArguments site_city=auto +City "NH, Nashua" ResStockArguments site_city=auto +City "NJ, Atlantic City" ResStockArguments site_city=auto +City "NJ, Bayonne" ResStockArguments site_city=auto +City "NJ, Camden" ResStockArguments site_city=auto +City "NJ, Clifton" ResStockArguments site_city=auto +City "NJ, East Orange" ResStockArguments site_city=auto +City "NJ, Elizabeth" ResStockArguments site_city=auto +City "NJ, Fort Lee" ResStockArguments site_city=auto +City "NJ, Hackensack" ResStockArguments site_city=auto +City "NJ, Hoboken" ResStockArguments site_city=auto +City "NJ, Jersey City" ResStockArguments site_city=auto +City "NJ, Linden" ResStockArguments site_city=auto +City "NJ, New Brunswick" ResStockArguments site_city=auto +City "NJ, Newark" ResStockArguments site_city=auto +City "NJ, Ocean City" ResStockArguments site_city=auto +City "NJ, Passaic" ResStockArguments site_city=auto +City "NJ, Paterson" ResStockArguments site_city=auto +City "NJ, Perth Amboy" ResStockArguments site_city=auto +City "NJ, Plainfield" ResStockArguments site_city=auto +City "NJ, Sayreville" ResStockArguments site_city=auto +City "NJ, Toms River" ResStockArguments site_city=auto +City "NJ, Trenton" ResStockArguments site_city=auto +City "NJ, Union City" ResStockArguments site_city=auto +City "NJ, Vineland" ResStockArguments site_city=auto +City "NJ, West New York" ResStockArguments site_city=auto +City "NM, Albuquerque" ResStockArguments site_city=auto +City "NM, Clovis" ResStockArguments site_city=auto +City "NM, Farmington" ResStockArguments site_city=auto +City "NM, Las Cruces" ResStockArguments site_city=auto +City "NM, Rio Rancho" ResStockArguments site_city=auto +City "NM, Roswell" ResStockArguments site_city=auto +City "NM, Santa Fe" ResStockArguments site_city=auto +City "NM, South Valley" ResStockArguments site_city=auto +City "NV, Carson City" ResStockArguments site_city=auto +City "NV, Enterprise" ResStockArguments site_city=auto +City "NV, Henderson" ResStockArguments site_city=auto +City "NV, Las Vegas" ResStockArguments site_city=auto +City "NV, North Las Vegas" ResStockArguments site_city=auto +City "NV, Pahrump" ResStockArguments site_city=auto +City "NV, Paradise" ResStockArguments site_city=auto +City "NV, Reno" ResStockArguments site_city=auto +City "NV, Sparks" ResStockArguments site_city=auto +City "NV, Spring Valley" ResStockArguments site_city=auto +City "NV, Sunrise Manor" ResStockArguments site_city=auto +City "NV, Whitney" ResStockArguments site_city=auto +City "NY, Albany" ResStockArguments site_city=auto +City "NY, Binghamton" ResStockArguments site_city=auto +City "NY, Brighton" ResStockArguments site_city=auto +City "NY, Buffalo" ResStockArguments site_city=auto +City "NY, Cheektowaga" ResStockArguments site_city=auto +City "NY, Coram" ResStockArguments site_city=auto +City "NY, Hempstead" ResStockArguments site_city=auto +City "NY, Irondequoit" ResStockArguments site_city=auto +City "NY, Levittown" ResStockArguments site_city=auto +City "NY, Long Beach" ResStockArguments site_city=auto +City "NY, Mount Vernon" ResStockArguments site_city=auto +City "NY, New Rochelle" ResStockArguments site_city=auto +City "NY, New York" ResStockArguments site_city=auto +City "NY, Niagara Falls" ResStockArguments site_city=auto +City "NY, Rochester" ResStockArguments site_city=auto +City "NY, Rome" ResStockArguments site_city=auto +City "NY, Schenectady" ResStockArguments site_city=auto +City "NY, Syracuse" ResStockArguments site_city=auto +City "NY, Tonawanda" ResStockArguments site_city=auto +City "NY, Troy" ResStockArguments site_city=auto +City "NY, Utica" ResStockArguments site_city=auto +City "NY, West Seneca" ResStockArguments site_city=auto +City "NY, White Plains" ResStockArguments site_city=auto +City "NY, Yonkers" ResStockArguments site_city=auto +City "OH, Akron" ResStockArguments site_city=auto +City "OH, Beavercreek" ResStockArguments site_city=auto +City "OH, Boardman" ResStockArguments site_city=auto +City "OH, Canton" ResStockArguments site_city=auto +City "OH, Cincinnati" ResStockArguments site_city=auto +City "OH, Cleveland Heights" ResStockArguments site_city=auto +City "OH, Cleveland" ResStockArguments site_city=auto +City "OH, Columbus" ResStockArguments site_city=auto +City "OH, Cuyahoga Falls" ResStockArguments site_city=auto +City "OH, Dayton" ResStockArguments site_city=auto +City "OH, Delaware" ResStockArguments site_city=auto +City "OH, Dublin" ResStockArguments site_city=auto +City "OH, Elyria" ResStockArguments site_city=auto +City "OH, Euclid" ResStockArguments site_city=auto +City "OH, Fairborn" ResStockArguments site_city=auto +City "OH, Fairfield" ResStockArguments site_city=auto +City "OH, Findlay" ResStockArguments site_city=auto +City "OH, Grove City" ResStockArguments site_city=auto +City "OH, Hamilton" ResStockArguments site_city=auto +City "OH, Huber Heights" ResStockArguments site_city=auto +City "OH, Kettering" ResStockArguments site_city=auto +City "OH, Lakewood" ResStockArguments site_city=auto +City "OH, Lancaster" ResStockArguments site_city=auto +City "OH, Lima" ResStockArguments site_city=auto +City "OH, Lorain" ResStockArguments site_city=auto +City "OH, Mansfield" ResStockArguments site_city=auto +City "OH, Marion" ResStockArguments site_city=auto +City "OH, Mentor" ResStockArguments site_city=auto +City "OH, Middletown" ResStockArguments site_city=auto +City "OH, Newark" ResStockArguments site_city=auto +City "OH, Parma" ResStockArguments site_city=auto +City "OH, Springfield" ResStockArguments site_city=auto +City "OH, Stow" ResStockArguments site_city=auto +City "OH, Strongsville" ResStockArguments site_city=auto +City "OH, Toledo" ResStockArguments site_city=auto +City "OH, Warren" ResStockArguments site_city=auto +City "OH, Youngstown" ResStockArguments site_city=auto +City "OK, Bartlesville" ResStockArguments site_city=auto +City "OK, Broken Arrow" ResStockArguments site_city=auto +City "OK, Edmond" ResStockArguments site_city=auto +City "OK, Enid" ResStockArguments site_city=auto +City "OK, Lawton" ResStockArguments site_city=auto +City "OK, Midwest City" ResStockArguments site_city=auto +City "OK, Moore" ResStockArguments site_city=auto +City "OK, Muskogee" ResStockArguments site_city=auto +City "OK, Norman" ResStockArguments site_city=auto +City "OK, Oklahoma City" ResStockArguments site_city=auto +City "OK, Stillwater" ResStockArguments site_city=auto +City "OK, Tulsa" ResStockArguments site_city=auto +City "OR, Albany" ResStockArguments site_city=auto +City "OR, Aloha" ResStockArguments site_city=auto +City "OR, Beaverton" ResStockArguments site_city=auto +City "OR, Bend" ResStockArguments site_city=auto +City "OR, Corvallis" ResStockArguments site_city=auto +City "OR, Eugene" ResStockArguments site_city=auto +City "OR, Grants Pass" ResStockArguments site_city=auto +City "OR, Gresham" ResStockArguments site_city=auto +City "OR, Hillsboro" ResStockArguments site_city=auto +City "OR, Lake Oswego" ResStockArguments site_city=auto +City "OR, Medford" ResStockArguments site_city=auto +City "OR, Portland" ResStockArguments site_city=auto +City "OR, Salem" ResStockArguments site_city=auto +City "OR, Springfield" ResStockArguments site_city=auto +City "OR, Tigard" ResStockArguments site_city=auto +City "PA, Allentown" ResStockArguments site_city=auto +City "PA, Altoona" ResStockArguments site_city=auto +City "PA, Bethlehem" ResStockArguments site_city=auto +City "PA, Erie" ResStockArguments site_city=auto +City "PA, Harrisburg" ResStockArguments site_city=auto +City "PA, Lancaster" ResStockArguments site_city=auto +City "PA, Levittown" ResStockArguments site_city=auto +City "PA, Philadelphia" ResStockArguments site_city=auto +City "PA, Pittsburgh" ResStockArguments site_city=auto +City "PA, Reading" ResStockArguments site_city=auto +City "PA, Scranton" ResStockArguments site_city=auto +City "PA, Wilkes-Barre" ResStockArguments site_city=auto +City "PA, York" ResStockArguments site_city=auto +City "RI, Cranston" ResStockArguments site_city=auto +City "RI, East Providence" ResStockArguments site_city=auto +City "RI, Pawtucket" ResStockArguments site_city=auto +City "RI, Providence" ResStockArguments site_city=auto +City "RI, Warwick" ResStockArguments site_city=auto +City "RI, Woonsocket" ResStockArguments site_city=auto +City "SC, Charleston" ResStockArguments site_city=auto +City "SC, Columbia" ResStockArguments site_city=auto +City "SC, Florence" ResStockArguments site_city=auto +City "SC, Goose Creek" ResStockArguments site_city=auto +City "SC, Greenville" ResStockArguments site_city=auto +City "SC, Hilton Head Island" ResStockArguments site_city=auto +City "SC, Mount Pleasant" ResStockArguments site_city=auto +City "SC, Myrtle Beach" ResStockArguments site_city=auto +City "SC, North Charleston" ResStockArguments site_city=auto +City "SC, North Myrtle Beach" ResStockArguments site_city=auto +City "SC, Rock Hill" ResStockArguments site_city=auto +City "SC, Spartanburg" ResStockArguments site_city=auto +City "SC, Summerville" ResStockArguments site_city=auto +City "SC, Sumter" ResStockArguments site_city=auto +City "SD, Rapid City" ResStockArguments site_city=auto +City "SD, Sioux Falls" ResStockArguments site_city=auto +City "TN, Bartlett" ResStockArguments site_city=auto +City "TN, Chattanooga" ResStockArguments site_city=auto +City "TN, Clarksville" ResStockArguments site_city=auto +City "TN, Cleveland" ResStockArguments site_city=auto +City "TN, Collierville" ResStockArguments site_city=auto +City "TN, Columbia" ResStockArguments site_city=auto +City "TN, Franklin" ResStockArguments site_city=auto +City "TN, Germantown" ResStockArguments site_city=auto +City "TN, Hendersonville" ResStockArguments site_city=auto +City "TN, Jackson" ResStockArguments site_city=auto +City "TN, Johnson City" ResStockArguments site_city=auto +City "TN, Kingsport" ResStockArguments site_city=auto +City "TN, Knoxville" ResStockArguments site_city=auto +City "TN, Memphis" ResStockArguments site_city=auto +City "TN, Murfreesboro" ResStockArguments site_city=auto +City "TN, Nashville-Davidson Metropolitan Government Balance" ResStockArguments site_city=auto +City "TN, Smyrna" ResStockArguments site_city=auto +City "TX, Abilene" ResStockArguments site_city=auto +City "TX, Allen" ResStockArguments site_city=auto +City "TX, Amarillo" ResStockArguments site_city=auto +City "TX, Arlington" ResStockArguments site_city=auto +City "TX, Atascocita" ResStockArguments site_city=auto +City "TX, Austin" ResStockArguments site_city=auto +City "TX, Baytown" ResStockArguments site_city=auto +City "TX, Beaumont" ResStockArguments site_city=auto +City "TX, Bedford" ResStockArguments site_city=auto +City "TX, Brownsville" ResStockArguments site_city=auto +City "TX, Bryan" ResStockArguments site_city=auto +City "TX, Burleson" ResStockArguments site_city=auto +City "TX, Carrollton" ResStockArguments site_city=auto +City "TX, Cedar Hill" ResStockArguments site_city=auto +City "TX, Cedar Park" ResStockArguments site_city=auto +City "TX, College Station" ResStockArguments site_city=auto +City "TX, Conroe" ResStockArguments site_city=auto +City "TX, Coppell" ResStockArguments site_city=auto +City "TX, Corpus Christi" ResStockArguments site_city=auto +City "TX, Dallas" ResStockArguments site_city=auto +City "TX, Denton" ResStockArguments site_city=auto +City "TX, Desoto" ResStockArguments site_city=auto +City "TX, Edinburg" ResStockArguments site_city=auto +City "TX, El Paso" ResStockArguments site_city=auto +City "TX, Euless" ResStockArguments site_city=auto +City "TX, Flower Mound" ResStockArguments site_city=auto +City "TX, Fort Worth" ResStockArguments site_city=auto +City "TX, Frisco" ResStockArguments site_city=auto +City "TX, Galveston" ResStockArguments site_city=auto +City "TX, Garland" ResStockArguments site_city=auto +City "TX, Georgetown" ResStockArguments site_city=auto +City "TX, Grand Prairie" ResStockArguments site_city=auto +City "TX, Grapevine" ResStockArguments site_city=auto +City "TX, Haltom City" ResStockArguments site_city=auto +City "TX, Harlingen" ResStockArguments site_city=auto +City "TX, Houston" ResStockArguments site_city=auto +City "TX, Hurst" ResStockArguments site_city=auto +City "TX, Irving" ResStockArguments site_city=auto +City "TX, Keller" ResStockArguments site_city=auto +City "TX, Killeen" ResStockArguments site_city=auto +City "TX, Laredo" ResStockArguments site_city=auto +City "TX, League City" ResStockArguments site_city=auto +City "TX, Lewisville" ResStockArguments site_city=auto +City "TX, Longview" ResStockArguments site_city=auto +City "TX, Lubbock" ResStockArguments site_city=auto +City "TX, Lufkin" ResStockArguments site_city=auto +City "TX, Mansfield" ResStockArguments site_city=auto +City "TX, Mcallen" ResStockArguments site_city=auto +City "TX, Mckinney" ResStockArguments site_city=auto +City "TX, Mesquite" ResStockArguments site_city=auto +City "TX, Midland" ResStockArguments site_city=auto +City "TX, Mission" ResStockArguments site_city=auto +City "TX, Missouri City" ResStockArguments site_city=auto +City "TX, New Braunfels" ResStockArguments site_city=auto +City "TX, North Richland Hills" ResStockArguments site_city=auto +City "TX, Odessa" ResStockArguments site_city=auto +City "TX, Pasadena" ResStockArguments site_city=auto +City "TX, Pearland" ResStockArguments site_city=auto +City "TX, Pflugerville" ResStockArguments site_city=auto +City "TX, Pharr" ResStockArguments site_city=auto +City "TX, Plano" ResStockArguments site_city=auto +City "TX, Port Arthur" ResStockArguments site_city=auto +City "TX, Richardson" ResStockArguments site_city=auto +City "TX, Round Rock" ResStockArguments site_city=auto +City "TX, Rowlett" ResStockArguments site_city=auto +City "TX, San Angelo" ResStockArguments site_city=auto +City "TX, San Antonio" ResStockArguments site_city=auto +City "TX, San Marcos" ResStockArguments site_city=auto +City "TX, Sherman" ResStockArguments site_city=auto +City "TX, Spring" ResStockArguments site_city=auto +City "TX, Sugar Land" ResStockArguments site_city=auto +City "TX, Temple" ResStockArguments site_city=auto +City "TX, Texarkana" ResStockArguments site_city=auto +City "TX, Texas City" ResStockArguments site_city=auto +City "TX, The Colony" ResStockArguments site_city=auto +City "TX, The Woodlands" ResStockArguments site_city=auto +City "TX, Tyler" ResStockArguments site_city=auto +City "TX, Victoria" ResStockArguments site_city=auto +City "TX, Waco" ResStockArguments site_city=auto +City "TX, Wichita Falls" ResStockArguments site_city=auto +City "TX, Wylie" ResStockArguments site_city=auto +City "UT, Layton" ResStockArguments site_city=auto +City "UT, Lehi" ResStockArguments site_city=auto +City "UT, Logan" ResStockArguments site_city=auto +City "UT, Millcreek" ResStockArguments site_city=auto +City "UT, Murray" ResStockArguments site_city=auto +City "UT, Ogden" ResStockArguments site_city=auto +City "UT, Orem" ResStockArguments site_city=auto +City "UT, Provo" ResStockArguments site_city=auto +City "UT, Salt Lake City" ResStockArguments site_city=auto +City "UT, Sandy" ResStockArguments site_city=auto +City "UT, South Jordan" ResStockArguments site_city=auto +City "UT, St George" ResStockArguments site_city=auto +City "UT, Taylorsville" ResStockArguments site_city=auto +City "UT, West Jordan" ResStockArguments site_city=auto +City "UT, West Valley City" ResStockArguments site_city=auto +City "VA, Alexandria" ResStockArguments site_city=auto +City "VA, Arlington" ResStockArguments site_city=auto +City "VA, Ashburn" ResStockArguments site_city=auto +City "VA, Blacksburg" ResStockArguments site_city=auto +City "VA, Centreville" ResStockArguments site_city=auto +City "VA, Charlottesville" ResStockArguments site_city=auto +City "VA, Chesapeake" ResStockArguments site_city=auto +City "VA, Dale City" ResStockArguments site_city=auto +City "VA, Danville" ResStockArguments site_city=auto +City "VA, Hampton" ResStockArguments site_city=auto +City "VA, Harrisonburg" ResStockArguments site_city=auto +City "VA, Lake Ridge" ResStockArguments site_city=auto +City "VA, Leesburg" ResStockArguments site_city=auto +City "VA, Lynchburg" ResStockArguments site_city=auto +City "VA, Mclean" ResStockArguments site_city=auto +City "VA, Mechanicsville" ResStockArguments site_city=auto +City "VA, Newport News" ResStockArguments site_city=auto +City "VA, Norfolk" ResStockArguments site_city=auto +City "VA, Petersburg" ResStockArguments site_city=auto +City "VA, Portsmouth" ResStockArguments site_city=auto +City "VA, Reston" ResStockArguments site_city=auto +City "VA, Richmond" ResStockArguments site_city=auto +City "VA, Roanoke" ResStockArguments site_city=auto +City "VA, Suffolk" ResStockArguments site_city=auto +City "VA, Tuckahoe" ResStockArguments site_city=auto +City "VA, Virginia Beach" ResStockArguments site_city=auto +City "VT, Burlington" ResStockArguments site_city=auto +City "WA, Auburn" ResStockArguments site_city=auto +City "WA, Bellevue" ResStockArguments site_city=auto +City "WA, Bellingham" ResStockArguments site_city=auto +City "WA, Bremerton" ResStockArguments site_city=auto +City "WA, Edmonds" ResStockArguments site_city=auto +City "WA, Everett" ResStockArguments site_city=auto +City "WA, Federal Way" ResStockArguments site_city=auto +City "WA, Kennewick" ResStockArguments site_city=auto +City "WA, Kent" ResStockArguments site_city=auto +City "WA, Kirkland" ResStockArguments site_city=auto +City "WA, Lacey" ResStockArguments site_city=auto +City "WA, Lakewood" ResStockArguments site_city=auto +City "WA, Longview" ResStockArguments site_city=auto +City "WA, Marysville" ResStockArguments site_city=auto +City "WA, Olympia" ResStockArguments site_city=auto +City "WA, Pasco" ResStockArguments site_city=auto +City "WA, Puyallup" ResStockArguments site_city=auto +City "WA, Redmond" ResStockArguments site_city=auto +City "WA, Renton" ResStockArguments site_city=auto +City "WA, Richland" ResStockArguments site_city=auto +City "WA, Sammamish" ResStockArguments site_city=auto +City "WA, Seattle" ResStockArguments site_city=auto +City "WA, Shoreline" ResStockArguments site_city=auto +City "WA, South Hill" ResStockArguments site_city=auto +City "WA, Spokane Valley" ResStockArguments site_city=auto +City "WA, Spokane" ResStockArguments site_city=auto +City "WA, Tacoma" ResStockArguments site_city=auto +City "WA, Vancouver" ResStockArguments site_city=auto +City "WA, Yakima" ResStockArguments site_city=auto +City "WI, Appleton" ResStockArguments site_city=auto +City "WI, Beloit" ResStockArguments site_city=auto +City "WI, Eau Claire" ResStockArguments site_city=auto +City "WI, Fond Du Lac" ResStockArguments site_city=auto +City "WI, Green Bay" ResStockArguments site_city=auto +City "WI, Greenfield" ResStockArguments site_city=auto +City "WI, Janesville" ResStockArguments site_city=auto +City "WI, Kenosha" ResStockArguments site_city=auto +City "WI, La Crosse" ResStockArguments site_city=auto +City "WI, Madison" ResStockArguments site_city=auto +City "WI, Manitowoc" ResStockArguments site_city=auto +City "WI, Menomonee Falls" ResStockArguments site_city=auto +City "WI, Milwaukee" ResStockArguments site_city=auto +City "WI, New Berlin" ResStockArguments site_city=auto +City "WI, Oshkosh" ResStockArguments site_city=auto +City "WI, Racine" ResStockArguments site_city=auto +City "WI, Sheboygan" ResStockArguments site_city=auto +City "WI, Waukesha" ResStockArguments site_city=auto +City "WI, Wausau" ResStockArguments site_city=auto +City "WI, Wauwatosa" ResStockArguments site_city=auto +City "WI, West Allis" ResStockArguments site_city=auto +City "WV, Charleston" ResStockArguments site_city=auto +City "WV, Huntington" ResStockArguments site_city=auto +City "WV, Parkersburg" ResStockArguments site_city=auto +City "WY, Casper" ResStockArguments site_city=auto +City "WY, Cheyenne" ResStockArguments site_city=auto +City In another census Place ResStockArguments site_city=auto +City Not in a census Place ResStockArguments site_city=auto +Clothes Dryer "Electric, Heat Pump, Ventless" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=4.5 clothes_dryer_vented_flow_rate=0 +Clothes Dryer "Electric Heat Pump, 120V" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=4.5 clothes_dryer_vented_flow_rate=0 +Clothes Dryer "Electric, Premium" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.42 clothes_dryer_vented_flow_rate=auto +Clothes Dryer "Electric, Premium, EnergyStar" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.93 clothes_dryer_vented_flow_rate=auto +Clothes Dryer "Electric, Premium, Heat Pump, Ventless" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=5.2 clothes_dryer_vented_flow_rate=0 +Clothes Dryer "Gas, Premium" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.03 clothes_dryer_vented_flow_rate=auto +Clothes Dryer Electric ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.70 clothes_dryer_vented_flow_rate=auto +Clothes Dryer Gas ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.39 clothes_dryer_vented_flow_rate=auto +Clothes Dryer None ResStockArguments clothes_dryer_present=false clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.70 clothes_dryer_vented_flow_rate=auto +Clothes Dryer Propane ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=propane clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.39 clothes_dryer_vented_flow_rate=auto +Clothes Dryer Void +Clothes Dryer Usage Level 100% Usage ResStockArguments clothes_dryer_usage_multiplier=1.0 +Clothes Dryer Usage Level 120% Usage ResStockArguments clothes_dryer_usage_multiplier=1.2 +Clothes Dryer Usage Level 80% Usage ResStockArguments clothes_dryer_usage_multiplier=0.8 +Clothes Washer "EnergyStar, Cold Only" ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.07 clothes_washer_rated_annual_kwh=123 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=9 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.68 +Clothes Washer CEE Advanced Tier ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=3.1 clothes_washer_rated_annual_kwh=120 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=14 clothes_washer_label_usage=7.538462 clothes_washer_capacity=5.8 +Clothes Washer EnergyStar ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.07 clothes_washer_rated_annual_kwh=123 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=9 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.68 +Clothes Washer EnergyStar More Efficient ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.83 clothes_washer_rated_annual_kwh=90 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=8 clothes_washer_label_usage=7.538462 clothes_washer_capacity=4.5 +Clothes Washer EnergyStar Most Efficient ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.92 clothes_washer_rated_annual_kwh=75 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=7 clothes_washer_label_usage=7.538462 clothes_washer_capacity=4.5 +Clothes Washer None ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=0 clothes_washer_rated_annual_kwh=0 clothes_washer_label_electric_rate=0 clothes_washer_label_gas_rate=0 clothes_washer_label_annual_gas_cost=0 clothes_washer_label_usage=0 clothes_washer_capacity=0 +Clothes Washer Standard ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=0.95 clothes_washer_rated_annual_kwh=387 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=24 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.5 +Clothes Washer Void +Clothes Washer Presence None ResStockArguments clothes_washer_present=false +Clothes Washer Presence Void +Clothes Washer Presence Yes ResStockArguments clothes_washer_present=true +Clothes Washer Usage Level 100% Usage ResStockArguments clothes_washer_usage_multiplier=1.0 +Clothes Washer Usage Level 120% Usage ResStockArguments clothes_washer_usage_multiplier=1.2 +Clothes Washer Usage Level 80% Usage ResStockArguments clothes_washer_usage_multiplier=0.8 +Cooking Range Electric Induction ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=electricity cooking_range_oven_is_induction=true cooking_range_oven_is_convection=auto +Cooking Range Electric Resistance ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=electricity cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto +Cooking Range "Electric Induction, 120V, battery powered" ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=electricity cooking_range_oven_is_induction=true cooking_range_oven_is_convection=auto +Cooking Range Gas ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=natural gas cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto +Cooking Range None ResStockArguments cooking_range_oven_present=false cooking_range_oven_location=auto cooking_range_oven_fuel_type=natural gas cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto +Cooking Range Propane ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=propane cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto +Cooking Range Void +Cooking Range Usage Level 100% Usage ResStockArguments cooking_range_oven_usage_multiplier=1.0 +Cooking Range Usage Level 120% Usage ResStockArguments cooking_range_oven_usage_multiplier=1.2 +Cooking Range Usage Level 80% Usage ResStockArguments cooking_range_oven_usage_multiplier=0.8 +Cooling Setpoint 60F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=60 hvac_control_cooling_weekend_setpoint_temp=60 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 62F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=62 hvac_control_cooling_weekend_setpoint_temp=62 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 64F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=64 hvac_control_cooling_weekend_setpoint_temp=64 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 65F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=65 hvac_control_cooling_weekend_setpoint_temp=65 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 66F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=66 hvac_control_cooling_weekend_setpoint_temp=66 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 67F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=67 hvac_control_cooling_weekend_setpoint_temp=67 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 68F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=68 hvac_control_cooling_weekend_setpoint_temp=68 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 69F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=69 hvac_control_cooling_weekend_setpoint_temp=69 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 70F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=70 hvac_control_cooling_weekend_setpoint_temp=70 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 72F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=72 hvac_control_cooling_weekend_setpoint_temp=72 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 73F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=73 hvac_control_cooling_weekend_setpoint_temp=73 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 74F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=74 hvac_control_cooling_weekend_setpoint_temp=74 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 75F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=75 hvac_control_cooling_weekend_setpoint_temp=75 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 76F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=76 hvac_control_cooling_weekend_setpoint_temp=76 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 76F w/ Building America season ResStockArguments hvac_control_cooling_weekday_setpoint_temp=76 hvac_control_cooling_weekend_setpoint_temp=76 use_auto_cooling_season=true hvac_control_cooling_season_period=auto +Cooling Setpoint 77F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=77 hvac_control_cooling_weekend_setpoint_temp=77 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 78F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=78 hvac_control_cooling_weekend_setpoint_temp=78 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 80F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=80 hvac_control_cooling_weekend_setpoint_temp=80 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint Has Offset No +Cooling Setpoint Has Offset Yes +Cooling Setpoint Offset Magnitude 0F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=0 hvac_control_cooling_weekend_setpoint_offset_magnitude=0 +Cooling Setpoint Offset Magnitude 2F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=2 hvac_control_cooling_weekend_setpoint_offset_magnitude=2 +Cooling Setpoint Offset Magnitude 5F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=5 hvac_control_cooling_weekend_setpoint_offset_magnitude=5 +Cooling Setpoint Offset Magnitude 9F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=9 hvac_control_cooling_weekend_setpoint_offset_magnitude=9 +Cooling Setpoint Offset Period Day Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup and Night Setback ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day Setup and Night Setback +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day Setup and Night Setback +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day Setup and Night Setback +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day Setup and Night Setback -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" +Cooling Setpoint Offset Period Day and Night Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1" +Cooling Setpoint Offset Period Day and Night Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1" +Cooling Setpoint Offset Period Day and Night Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day and Night Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day and Night Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day and Night Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day and Night Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1" +Cooling Setpoint Offset Period Day and Night Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1" +Cooling Setpoint Offset Period Day and Night Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1" +Cooling Setpoint Offset Period Day and Night Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1" +Cooling Setpoint Offset Period Day and Night Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1" +Cooling Setpoint Offset Period Night Setback ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" +Cooling Setpoint Offset Period Night Setback +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" +Cooling Setpoint Offset Period Night Setback +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setback +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setback +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setback +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setback -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" +Cooling Setpoint Offset Period Night Setback -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" +Cooling Setpoint Offset Period Night Setback -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" +Cooling Setpoint Offset Period Night Setback -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" +Cooling Setpoint Offset Period Night Setback -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" +Cooling Setpoint Offset Period Night Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1" +Cooling Setpoint Offset Period Night Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1" +Cooling Setpoint Offset Period Night Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1" +Cooling Setpoint Offset Period Night Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1" +Cooling Setpoint Offset Period Night Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1" +Cooling Setpoint Offset Period Night Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1" +Cooling Setpoint Offset Period Night Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1" +Cooling Setpoint Offset Period None ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Corridor Double Exterior ResStockArguments geometry_corridor_position=Double Exterior geometry_corridor_width=10 +Corridor Double-Loaded Interior ResStockArguments geometry_corridor_position=Double-Loaded Interior geometry_corridor_width=10 +Corridor None ResStockArguments geometry_corridor_position=None geometry_corridor_width=0 +Corridor Not Applicable ResStockArguments geometry_corridor_position=None geometry_corridor_width=0 +Corridor Single Exterior Front ResStockArguments geometry_corridor_position=Single Exterior (Front) geometry_corridor_width=10 +County "AK, Aleutians East Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200130.epw site_zip_code=99661 site_time_zone_utc_offset=-9 +County "AK, Aleutians West Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200160.epw site_zip_code=99685 site_time_zone_utc_offset=-9 +County "AK, Anchorage Municipality" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200200.epw site_zip_code=99501 site_time_zone_utc_offset=-9 +County "AK, Bethel Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200500.epw site_zip_code=99545 site_time_zone_utc_offset=-9 +County "AK, Bristol Bay Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200600.epw site_zip_code=99633 site_time_zone_utc_offset=-9 +County "AK, Denali Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200680.epw site_zip_code=99743 site_time_zone_utc_offset=-9 +County "AK, Dillingham Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200700.epw site_zip_code=99576 site_time_zone_utc_offset=-9 +County "AK, Fairbanks North Star Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200900.epw site_zip_code=99709 site_time_zone_utc_offset=-9 +County "AK, Haines Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201000.epw site_zip_code=99827 site_time_zone_utc_offset=-9 +County "AK, Hoonah-Angoon Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201050.epw site_zip_code=99829 site_time_zone_utc_offset=-9 +County "AK, Juneau City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201100.epw site_zip_code=99802 site_time_zone_utc_offset=-9 +County "AK, Kenai Peninsula Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201220.epw site_zip_code=99611 site_time_zone_utc_offset=-9 +County "AK, Ketchikan Gateway Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201300.epw site_zip_code=99901 site_time_zone_utc_offset=-9 +County "AK, Kodiak Island Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201500.epw site_zip_code=99615 site_time_zone_utc_offset=-9 +County "AK, Kusilvak Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202700.epw site_zip_code=99604 site_time_zone_utc_offset=-9 +County "AK, Lake and Peninsula Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201640.epw site_zip_code=99653 site_time_zone_utc_offset=-9 +County "AK, Matanuska-Susitna Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201700.epw site_zip_code=99645 site_time_zone_utc_offset=-9 +County "AK, Nome Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201800.epw site_zip_code=99762 site_time_zone_utc_offset=-9 +County "AK, North Slope Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201850.epw site_zip_code=99723 site_time_zone_utc_offset=-9 +County "AK, Northwest Arctic Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201880.epw site_zip_code=99752 site_time_zone_utc_offset=-9 +County "AK, Petersburg Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201950.epw site_zip_code=99833 site_time_zone_utc_offset=-9 +County "AK, Prince of Wales-Hyder Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201980.epw site_zip_code=99926 site_time_zone_utc_offset=-9 +County "AK, Sitka City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202200.epw site_zip_code=99835 site_time_zone_utc_offset=-9 +County "AK, Skagway Municipality" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202300.epw site_zip_code=99840 site_time_zone_utc_offset=-9 +County "AK, Southeast Fairbanks Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202400.epw site_zip_code=99731 site_time_zone_utc_offset=-9 +County "AK, Valdez-Cordova Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202610.epw site_zip_code=99686 site_time_zone_utc_offset=-9 +County "AK, Wrangell City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202750.epw site_zip_code=99903 site_time_zone_utc_offset=-9 +County "AK, Yakutat City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202820.epw site_zip_code=99689 site_time_zone_utc_offset=-9 +County "AK, Yukon-Koyukuk Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202900.epw site_zip_code=99740 site_time_zone_utc_offset=-9 +County "AL, Autauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100010.epw site_zip_code=36067 site_time_zone_utc_offset=-6 +County "AL, Baldwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100030.epw site_zip_code=36535 site_time_zone_utc_offset=-6 +County "AL, Barbour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100050.epw site_zip_code=36027 site_time_zone_utc_offset=-6 +County "AL, Bibb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100070.epw site_zip_code=35042 site_time_zone_utc_offset=-6 +County "AL, Blount County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100090.epw site_zip_code=35121 site_time_zone_utc_offset=-6 +County "AL, Bullock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100110.epw site_zip_code=36089 site_time_zone_utc_offset=-6 +County "AL, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100130.epw site_zip_code=36037 site_time_zone_utc_offset=-6 +County "AL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100150.epw site_zip_code=36201 site_time_zone_utc_offset=-6 +County "AL, Chambers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100170.epw site_zip_code=36863 site_time_zone_utc_offset=-6 +County "AL, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100190.epw site_zip_code=35960 site_time_zone_utc_offset=-6 +County "AL, Chilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100210.epw site_zip_code=35045 site_time_zone_utc_offset=-6 +County "AL, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100230.epw site_zip_code=36904 site_time_zone_utc_offset=-6 +County "AL, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100250.epw site_zip_code=36545 site_time_zone_utc_offset=-6 +County "AL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100270.epw site_zip_code=36251 site_time_zone_utc_offset=-6 +County "AL, Cleburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100290.epw site_zip_code=36264 site_time_zone_utc_offset=-6 +County "AL, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100310.epw site_zip_code=36330 site_time_zone_utc_offset=-6 +County "AL, Colbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100330.epw site_zip_code=35674 site_time_zone_utc_offset=-6 +County "AL, Conecuh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100350.epw site_zip_code=36401 site_time_zone_utc_offset=-6 +County "AL, Coosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100370.epw site_zip_code=35151 site_time_zone_utc_offset=-6 +County "AL, Covington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100390.epw site_zip_code=36420 site_time_zone_utc_offset=-6 +County "AL, Crenshaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100410.epw site_zip_code=36049 site_time_zone_utc_offset=-6 +County "AL, Cullman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100430.epw site_zip_code=35055 site_time_zone_utc_offset=-6 +County "AL, Dale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100450.epw site_zip_code=36360 site_time_zone_utc_offset=-6 +County "AL, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100470.epw site_zip_code=36701 site_time_zone_utc_offset=-6 +County "AL, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100490.epw site_zip_code=35967 site_time_zone_utc_offset=-6 +County "AL, Elmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100510.epw site_zip_code=36092 site_time_zone_utc_offset=-6 +County "AL, Escambia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100530.epw site_zip_code=36426 site_time_zone_utc_offset=-6 +County "AL, Etowah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100550.epw site_zip_code=35901 site_time_zone_utc_offset=-6 +County "AL, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100570.epw site_zip_code=35555 site_time_zone_utc_offset=-6 +County "AL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100590.epw site_zip_code=35653 site_time_zone_utc_offset=-6 +County "AL, Geneva County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100610.epw site_zip_code=36375 site_time_zone_utc_offset=-6 +County "AL, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100630.epw site_zip_code=35462 site_time_zone_utc_offset=-6 +County "AL, Hale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100650.epw site_zip_code=36744 site_time_zone_utc_offset=-6 +County "AL, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100670.epw site_zip_code=36310 site_time_zone_utc_offset=-6 +County "AL, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100690.epw site_zip_code=36301 site_time_zone_utc_offset=-6 +County "AL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100710.epw site_zip_code=35768 site_time_zone_utc_offset=-6 +County "AL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100730.epw site_zip_code=35215 site_time_zone_utc_offset=-6 +County "AL, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100750.epw site_zip_code=35586 site_time_zone_utc_offset=-6 +County "AL, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100770.epw site_zip_code=35630 site_time_zone_utc_offset=-6 +County "AL, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100790.epw site_zip_code=35650 site_time_zone_utc_offset=-6 +County "AL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100810.epw site_zip_code=36830 site_time_zone_utc_offset=-6 +County "AL, Limestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100830.epw site_zip_code=35611 site_time_zone_utc_offset=-6 +County "AL, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100850.epw site_zip_code=36040 site_time_zone_utc_offset=-6 +County "AL, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100870.epw site_zip_code=36083 site_time_zone_utc_offset=-6 +County "AL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100890.epw site_zip_code=35758 site_time_zone_utc_offset=-6 +County "AL, Marengo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100910.epw site_zip_code=36732 site_time_zone_utc_offset=-6 +County "AL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100930.epw site_zip_code=35570 site_time_zone_utc_offset=-6 +County "AL, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100950.epw site_zip_code=35976 site_time_zone_utc_offset=-6 +County "AL, Mobile County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100970.epw site_zip_code=36695 site_time_zone_utc_offset=-6 +County "AL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100990.epw site_zip_code=36460 site_time_zone_utc_offset=-6 +County "AL, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101010.epw site_zip_code=36117 site_time_zone_utc_offset=-6 +County "AL, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101030.epw site_zip_code=35601 site_time_zone_utc_offset=-6 +County "AL, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101050.epw site_zip_code=36756 site_time_zone_utc_offset=-6 +County "AL, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101070.epw site_zip_code=35466 site_time_zone_utc_offset=-6 +County "AL, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101090.epw site_zip_code=36081 site_time_zone_utc_offset=-6 +County "AL, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101110.epw site_zip_code=36274 site_time_zone_utc_offset=-6 +County "AL, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101130.epw site_zip_code=36869 site_time_zone_utc_offset=-6 +County "AL, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101170.epw site_zip_code=35242 site_time_zone_utc_offset=-6 +County "AL, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101150.epw site_zip_code=35120 site_time_zone_utc_offset=-6 +County "AL, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101190.epw site_zip_code=36925 site_time_zone_utc_offset=-6 +County "AL, Talladega County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101210.epw site_zip_code=35160 site_time_zone_utc_offset=-6 +County "AL, Tallapoosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101230.epw site_zip_code=35010 site_time_zone_utc_offset=-6 +County "AL, Tuscaloosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101250.epw site_zip_code=35401 site_time_zone_utc_offset=-6 +County "AL, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101270.epw site_zip_code=35504 site_time_zone_utc_offset=-6 +County "AL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101290.epw site_zip_code=36558 site_time_zone_utc_offset=-6 +County "AL, Wilcox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101310.epw site_zip_code=36726 site_time_zone_utc_offset=-6 +County "AL, Winston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101330.epw site_zip_code=35565 site_time_zone_utc_offset=-6 +County "AR, Arkansas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500010.epw site_zip_code=72160 site_time_zone_utc_offset=-6 +County "AR, Ashley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500030.epw site_zip_code=71635 site_time_zone_utc_offset=-6 +County "AR, Baxter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500050.epw site_zip_code=72653 site_time_zone_utc_offset=-6 +County "AR, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500070.epw site_zip_code=72712 site_time_zone_utc_offset=-6 +County "AR, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500090.epw site_zip_code=72601 site_time_zone_utc_offset=-6 +County "AR, Bradley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500110.epw site_zip_code=71671 site_time_zone_utc_offset=-6 +County "AR, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500130.epw site_zip_code=71744 site_time_zone_utc_offset=-6 +County "AR, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500150.epw site_zip_code=72616 site_time_zone_utc_offset=-6 +County "AR, Chicot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500170.epw site_zip_code=71653 site_time_zone_utc_offset=-6 +County "AR, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500190.epw site_zip_code=71923 site_time_zone_utc_offset=-6 +County "AR, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500210.epw site_zip_code=72454 site_time_zone_utc_offset=-6 +County "AR, Cleburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500230.epw site_zip_code=72543 site_time_zone_utc_offset=-6 +County "AR, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500250.epw site_zip_code=71665 site_time_zone_utc_offset=-6 +County "AR, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500270.epw site_zip_code=71753 site_time_zone_utc_offset=-6 +County "AR, Conway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500290.epw site_zip_code=72110 site_time_zone_utc_offset=-6 +County "AR, Craighead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500310.epw site_zip_code=72401 site_time_zone_utc_offset=-6 +County "AR, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500330.epw site_zip_code=72956 site_time_zone_utc_offset=-6 +County "AR, Crittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500350.epw site_zip_code=72301 site_time_zone_utc_offset=-6 +County "AR, Cross County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500370.epw site_zip_code=72396 site_time_zone_utc_offset=-6 +County "AR, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500390.epw site_zip_code=71742 site_time_zone_utc_offset=-6 +County "AR, Desha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500410.epw site_zip_code=71639 site_time_zone_utc_offset=-6 +County "AR, Drew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500430.epw site_zip_code=71655 site_time_zone_utc_offset=-6 +County "AR, Faulkner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500450.epw site_zip_code=72034 site_time_zone_utc_offset=-6 +County "AR, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500470.epw site_zip_code=72949 site_time_zone_utc_offset=-6 +County "AR, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500490.epw site_zip_code=72554 site_time_zone_utc_offset=-6 +County "AR, Garland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500510.epw site_zip_code=71913 site_time_zone_utc_offset=-6 +County "AR, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500530.epw site_zip_code=72150 site_time_zone_utc_offset=-6 +County "AR, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500550.epw site_zip_code=72450 site_time_zone_utc_offset=-6 +County "AR, Hempstead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500570.epw site_zip_code=71801 site_time_zone_utc_offset=-6 +County "AR, Hot Spring County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500590.epw site_zip_code=72104 site_time_zone_utc_offset=-6 +County "AR, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500610.epw site_zip_code=71852 site_time_zone_utc_offset=-6 +County "AR, Independence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500630.epw site_zip_code=72501 site_time_zone_utc_offset=-6 +County "AR, Izard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500650.epw site_zip_code=72556 site_time_zone_utc_offset=-6 +County "AR, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500670.epw site_zip_code=72112 site_time_zone_utc_offset=-6 +County "AR, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500690.epw site_zip_code=71603 site_time_zone_utc_offset=-6 +County "AR, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500710.epw site_zip_code=72830 site_time_zone_utc_offset=-6 +County "AR, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500730.epw site_zip_code=71860 site_time_zone_utc_offset=-6 +County "AR, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500750.epw site_zip_code=72476 site_time_zone_utc_offset=-6 +County "AR, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500770.epw site_zip_code=72360 site_time_zone_utc_offset=-6 +County "AR, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500790.epw site_zip_code=71667 site_time_zone_utc_offset=-6 +County "AR, Little River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500810.epw site_zip_code=71822 site_time_zone_utc_offset=-6 +County "AR, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500830.epw site_zip_code=72927 site_time_zone_utc_offset=-6 +County "AR, Lonoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500850.epw site_zip_code=72023 site_time_zone_utc_offset=-6 +County "AR, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500870.epw site_zip_code=72740 site_time_zone_utc_offset=-6 +County "AR, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500890.epw site_zip_code=72687 site_time_zone_utc_offset=-6 +County "AR, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500910.epw site_zip_code=71854 site_time_zone_utc_offset=-6 +County "AR, Mississippi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500930.epw site_zip_code=72315 site_time_zone_utc_offset=-6 +County "AR, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500950.epw site_zip_code=72021 site_time_zone_utc_offset=-6 +County "AR, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500970.epw site_zip_code=71957 site_time_zone_utc_offset=-6 +County "AR, Nevada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500990.epw site_zip_code=71857 site_time_zone_utc_offset=-6 +County "AR, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501010.epw site_zip_code=72641 site_time_zone_utc_offset=-6 +County "AR, Ouachita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501030.epw site_zip_code=71701 site_time_zone_utc_offset=-6 +County "AR, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501050.epw site_zip_code=72126 site_time_zone_utc_offset=-6 +County "AR, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501070.epw site_zip_code=72390 site_time_zone_utc_offset=-6 +County "AR, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501090.epw site_zip_code=71943 site_time_zone_utc_offset=-6 +County "AR, Poinsett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501110.epw site_zip_code=72472 site_time_zone_utc_offset=-6 +County "AR, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501130.epw site_zip_code=71953 site_time_zone_utc_offset=-6 +County "AR, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501150.epw site_zip_code=72802 site_time_zone_utc_offset=-6 +County "AR, Prairie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501170.epw site_zip_code=72040 site_time_zone_utc_offset=-6 +County "AR, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501190.epw site_zip_code=72076 site_time_zone_utc_offset=-6 +County "AR, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501210.epw site_zip_code=72455 site_time_zone_utc_offset=-6 +County "AR, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501250.epw site_zip_code=72019 site_time_zone_utc_offset=-6 +County "AR, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501270.epw site_zip_code=72958 site_time_zone_utc_offset=-6 +County "AR, Searcy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501290.epw site_zip_code=72650 site_time_zone_utc_offset=-6 +County "AR, Sebastian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501310.epw site_zip_code=72903 site_time_zone_utc_offset=-6 +County "AR, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501330.epw site_zip_code=71832 site_time_zone_utc_offset=-6 +County "AR, Sharp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501350.epw site_zip_code=72529 site_time_zone_utc_offset=-6 +County "AR, St. Francis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501230.epw site_zip_code=72335 site_time_zone_utc_offset=-6 +County "AR, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501370.epw site_zip_code=72560 site_time_zone_utc_offset=-6 +County "AR, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501390.epw site_zip_code=71730 site_time_zone_utc_offset=-6 +County "AR, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501410.epw site_zip_code=72031 site_time_zone_utc_offset=-6 +County "AR, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501430.epw site_zip_code=72701 site_time_zone_utc_offset=-6 +County "AR, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501450.epw site_zip_code=72143 site_time_zone_utc_offset=-6 +County "AR, Woodruff County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501470.epw site_zip_code=72006 site_time_zone_utc_offset=-6 +County "AR, Yell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501490.epw site_zip_code=72834 site_time_zone_utc_offset=-6 +County "AZ, Apache County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400010.epw site_zip_code=85936 site_time_zone_utc_offset=-7 +County "AZ, Cochise County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400030.epw site_zip_code=85635 site_time_zone_utc_offset=-7 +County "AZ, Coconino County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400050.epw site_zip_code=86001 site_time_zone_utc_offset=-7 +County "AZ, Gila County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400070.epw site_zip_code=85541 site_time_zone_utc_offset=-7 +County "AZ, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400090.epw site_zip_code=85546 site_time_zone_utc_offset=-7 +County "AZ, Greenlee County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400110.epw site_zip_code=85534 site_time_zone_utc_offset=-7 +County "AZ, La Paz County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400120.epw site_zip_code=85344 site_time_zone_utc_offset=-7 +County "AZ, Maricopa County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400130.epw site_zip_code=85281 site_time_zone_utc_offset=-7 +County "AZ, Mohave County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400150.epw site_zip_code=86442 site_time_zone_utc_offset=-7 +County "AZ, Navajo County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400170.epw site_zip_code=85901 site_time_zone_utc_offset=-7 +County "AZ, Pima County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400190.epw site_zip_code=85705 site_time_zone_utc_offset=-7 +County "AZ, Pinal County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400210.epw site_zip_code=85122 site_time_zone_utc_offset=-7 +County "AZ, Santa Cruz County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400230.epw site_zip_code=85621 site_time_zone_utc_offset=-7 +County "AZ, Yavapai County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400250.epw site_zip_code=86314 site_time_zone_utc_offset=-7 +County "AZ, Yuma County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400270.epw site_zip_code=85364 site_time_zone_utc_offset=-7 +County "CA, Alameda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600010.epw site_zip_code=94501 site_time_zone_utc_offset=-8 +County "CA, Alpine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600030.epw site_zip_code=96120 site_time_zone_utc_offset=-8 +County "CA, Amador County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600050.epw site_zip_code=95642 site_time_zone_utc_offset=-8 +County "CA, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600070.epw site_zip_code=95928 site_time_zone_utc_offset=-8 +County "CA, Calaveras County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600090.epw site_zip_code=95252 site_time_zone_utc_offset=-8 +County "CA, Colusa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600110.epw site_zip_code=95932 site_time_zone_utc_offset=-8 +County "CA, Contra Costa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600130.epw site_zip_code=94565 site_time_zone_utc_offset=-8 +County "CA, Del Norte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600150.epw site_zip_code=95531 site_time_zone_utc_offset=-8 +County "CA, El Dorado County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600170.epw site_zip_code=95762 site_time_zone_utc_offset=-8 +County "CA, Fresno County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600190.epw site_zip_code=93722 site_time_zone_utc_offset=-8 +County "CA, Glenn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600210.epw site_zip_code=95963 site_time_zone_utc_offset=-8 +County "CA, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600230.epw site_zip_code=95501 site_time_zone_utc_offset=-8 +County "CA, Imperial County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600250.epw site_zip_code=92243 site_time_zone_utc_offset=-8 +County "CA, Inyo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600270.epw site_zip_code=93514 site_time_zone_utc_offset=-8 +County "CA, Kern County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600290.epw site_zip_code=93306 site_time_zone_utc_offset=-8 +County "CA, Kings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600310.epw site_zip_code=93230 site_time_zone_utc_offset=-8 +County "CA, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600330.epw site_zip_code=95422 site_time_zone_utc_offset=-8 +County "CA, Lassen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600350.epw site_zip_code=96130 site_time_zone_utc_offset=-8 +County "CA, Los Angeles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600370.epw site_zip_code=90250 site_time_zone_utc_offset=-8 +County "CA, Madera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600390.epw site_zip_code=93637 site_time_zone_utc_offset=-8 +County "CA, Marin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600410.epw site_zip_code=94901 site_time_zone_utc_offset=-8 +County "CA, Mariposa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600430.epw site_zip_code=95338 site_time_zone_utc_offset=-8 +County "CA, Mendocino County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600450.epw site_zip_code=95482 site_time_zone_utc_offset=-8 +County "CA, Merced County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600470.epw site_zip_code=93635 site_time_zone_utc_offset=-8 +County "CA, Modoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600490.epw site_zip_code=96101 site_time_zone_utc_offset=-8 +County "CA, Mono County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600510.epw site_zip_code=93546 site_time_zone_utc_offset=-8 +County "CA, Monterey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600530.epw site_zip_code=93906 site_time_zone_utc_offset=-8 +County "CA, Napa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600550.epw site_zip_code=94558 site_time_zone_utc_offset=-8 +County "CA, Nevada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600570.epw site_zip_code=95945 site_time_zone_utc_offset=-8 +County "CA, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600590.epw site_zip_code=92683 site_time_zone_utc_offset=-8 +County "CA, Placer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600610.epw site_zip_code=95747 site_time_zone_utc_offset=-8 +County "CA, Plumas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600630.epw site_zip_code=96122 site_time_zone_utc_offset=-8 +County "CA, Riverside County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600650.epw site_zip_code=92503 site_time_zone_utc_offset=-8 +County "CA, Sacramento County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600670.epw site_zip_code=95630 site_time_zone_utc_offset=-8 +County "CA, San Benito County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600690.epw site_zip_code=95023 site_time_zone_utc_offset=-8 +County "CA, San Bernardino County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600710.epw site_zip_code=92336 site_time_zone_utc_offset=-8 +County "CA, San Diego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600730.epw site_zip_code=92101 site_time_zone_utc_offset=-8 +County "CA, San Francisco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600750.epw site_zip_code=94109 site_time_zone_utc_offset=-8 +County "CA, San Joaquin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600770.epw site_zip_code=95206 site_time_zone_utc_offset=-8 +County "CA, San Luis Obispo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600790.epw site_zip_code=93446 site_time_zone_utc_offset=-8 +County "CA, San Mateo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600810.epw site_zip_code=94080 site_time_zone_utc_offset=-8 +County "CA, Santa Barbara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600830.epw site_zip_code=93436 site_time_zone_utc_offset=-8 +County "CA, Santa Clara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600850.epw site_zip_code=95035 site_time_zone_utc_offset=-8 +County "CA, Santa Cruz County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600870.epw site_zip_code=95076 site_time_zone_utc_offset=-8 +County "CA, Shasta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600890.epw site_zip_code=96003 site_time_zone_utc_offset=-8 +County "CA, Sierra County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600910.epw site_zip_code=95960 site_time_zone_utc_offset=-8 +County "CA, Siskiyou County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600930.epw site_zip_code=96097 site_time_zone_utc_offset=-8 +County "CA, Solano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600950.epw site_zip_code=94533 site_time_zone_utc_offset=-8 +County "CA, Sonoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600970.epw site_zip_code=95403 site_time_zone_utc_offset=-8 +County "CA, Stanislaus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600990.epw site_zip_code=95355 site_time_zone_utc_offset=-8 +County "CA, Sutter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601010.epw site_zip_code=95991 site_time_zone_utc_offset=-8 +County "CA, Tehama County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601030.epw site_zip_code=96080 site_time_zone_utc_offset=-8 +County "CA, Trinity County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601050.epw site_zip_code=96091 site_time_zone_utc_offset=-8 +County "CA, Tulare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601070.epw site_zip_code=93274 site_time_zone_utc_offset=-8 +County "CA, Tuolumne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601090.epw site_zip_code=95370 site_time_zone_utc_offset=-8 +County "CA, Ventura County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601110.epw site_zip_code=93065 site_time_zone_utc_offset=-8 +County "CA, Yolo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601130.epw site_zip_code=95616 site_time_zone_utc_offset=-8 +County "CA, Yuba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601150.epw site_zip_code=95901 site_time_zone_utc_offset=-8 +County "CO, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800010.epw site_zip_code=80229 site_time_zone_utc_offset=-7 +County "CO, Alamosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800030.epw site_zip_code=81101 site_time_zone_utc_offset=-7 +County "CO, Arapahoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800050.epw site_zip_code=80013 site_time_zone_utc_offset=-7 +County "CO, Archuleta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800070.epw site_zip_code=81147 site_time_zone_utc_offset=-7 +County "CO, Baca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800090.epw site_zip_code=81073 site_time_zone_utc_offset=-7 +County "CO, Bent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800110.epw site_zip_code=81054 site_time_zone_utc_offset=-7 +County "CO, Boulder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800130.epw site_zip_code=80501 site_time_zone_utc_offset=-7 +County "CO, Broomfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800140.epw site_zip_code=80020 site_time_zone_utc_offset=-7 +County "CO, Chaffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800150.epw site_zip_code=81201 site_time_zone_utc_offset=-7 +County "CO, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800170.epw site_zip_code=80810 site_time_zone_utc_offset=-7 +County "CO, Clear Creek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800190.epw site_zip_code=80439 site_time_zone_utc_offset=-7 +County "CO, Conejos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800210.epw site_zip_code=81120 site_time_zone_utc_offset=-7 +County "CO, Costilla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800230.epw site_zip_code=81133 site_time_zone_utc_offset=-7 +County "CO, Crowley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800250.epw site_zip_code=81063 site_time_zone_utc_offset=-7 +County "CO, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800270.epw site_zip_code=81252 site_time_zone_utc_offset=-7 +County "CO, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800290.epw site_zip_code=81416 site_time_zone_utc_offset=-7 +County "CO, Denver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800310.epw site_zip_code=80211 site_time_zone_utc_offset=-7 +County "CO, Dolores County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800330.epw site_zip_code=81324 site_time_zone_utc_offset=-7 +County "CO, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800350.epw site_zip_code=80134 site_time_zone_utc_offset=-7 +County "CO, Eagle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800370.epw site_zip_code=81620 site_time_zone_utc_offset=-7 +County "CO, El Paso County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800410.epw site_zip_code=80918 site_time_zone_utc_offset=-7 +County "CO, Elbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800390.epw site_zip_code=80107 site_time_zone_utc_offset=-7 +County "CO, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800430.epw site_zip_code=81212 site_time_zone_utc_offset=-7 +County "CO, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800450.epw site_zip_code=81601 site_time_zone_utc_offset=-7 +County "CO, Gilpin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800470.epw site_zip_code=80422 site_time_zone_utc_offset=-7 +County "CO, Grand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800490.epw site_zip_code=80459 site_time_zone_utc_offset=-7 +County "CO, Gunnison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800510.epw site_zip_code=81230 site_time_zone_utc_offset=-7 +County "CO, Hinsdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800530.epw site_zip_code=81235 site_time_zone_utc_offset=-7 +County "CO, Huerfano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800550.epw site_zip_code=81089 site_time_zone_utc_offset=-7 +County "CO, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800570.epw site_zip_code=80480 site_time_zone_utc_offset=-7 +County "CO, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800590.epw site_zip_code=80127 site_time_zone_utc_offset=-7 +County "CO, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800610.epw site_zip_code=81036 site_time_zone_utc_offset=-7 +County "CO, Kit Carson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800630.epw site_zip_code=80807 site_time_zone_utc_offset=-7 +County "CO, La Plata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800670.epw site_zip_code=81301 site_time_zone_utc_offset=-7 +County "CO, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800650.epw site_zip_code=80461 site_time_zone_utc_offset=-7 +County "CO, Larimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800690.epw site_zip_code=80525 site_time_zone_utc_offset=-7 +County "CO, Las Animas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800710.epw site_zip_code=81082 site_time_zone_utc_offset=-7 +County "CO, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800730.epw site_zip_code=80828 site_time_zone_utc_offset=-7 +County "CO, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800750.epw site_zip_code=80751 site_time_zone_utc_offset=-7 +County "CO, Mesa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800770.epw site_zip_code=81504 site_time_zone_utc_offset=-7 +County "CO, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800790.epw site_zip_code=81130 site_time_zone_utc_offset=-7 +County "CO, Moffat County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800810.epw site_zip_code=81625 site_time_zone_utc_offset=-7 +County "CO, Montezuma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800830.epw site_zip_code=81321 site_time_zone_utc_offset=-7 +County "CO, Montrose County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800850.epw site_zip_code=81401 site_time_zone_utc_offset=-7 +County "CO, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800870.epw site_zip_code=80701 site_time_zone_utc_offset=-7 +County "CO, Otero County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800890.epw site_zip_code=81050 site_time_zone_utc_offset=-7 +County "CO, Ouray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800910.epw site_zip_code=81432 site_time_zone_utc_offset=-7 +County "CO, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800930.epw site_zip_code=80421 site_time_zone_utc_offset=-7 +County "CO, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800950.epw site_zip_code=80734 site_time_zone_utc_offset=-7 +County "CO, Pitkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800970.epw site_zip_code=81612 site_time_zone_utc_offset=-7 +County "CO, Prowers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800990.epw site_zip_code=81052 site_time_zone_utc_offset=-7 +County "CO, Pueblo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801010.epw site_zip_code=81001 site_time_zone_utc_offset=-7 +County "CO, Rio Blanco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801030.epw site_zip_code=81648 site_time_zone_utc_offset=-7 +County "CO, Rio Grande County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801050.epw site_zip_code=81144 site_time_zone_utc_offset=-7 +County "CO, Routt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801070.epw site_zip_code=80487 site_time_zone_utc_offset=-7 +County "CO, Saguache County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801090.epw site_zip_code=81125 site_time_zone_utc_offset=-7 +County "CO, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801110.epw site_zip_code=81433 site_time_zone_utc_offset=-7 +County "CO, San Miguel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801130.epw site_zip_code=81435 site_time_zone_utc_offset=-7 +County "CO, Sedgwick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801150.epw site_zip_code=80737 site_time_zone_utc_offset=-7 +County "CO, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801170.epw site_zip_code=80424 site_time_zone_utc_offset=-7 +County "CO, Teller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801190.epw site_zip_code=80863 site_time_zone_utc_offset=-7 +County "CO, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801210.epw site_zip_code=80720 site_time_zone_utc_offset=-7 +County "CO, Weld County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801230.epw site_zip_code=80634 site_time_zone_utc_offset=-7 +County "CO, Yuma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801250.epw site_zip_code=80759 site_time_zone_utc_offset=-7 +County "CT, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900010.epw site_zip_code=06902 site_time_zone_utc_offset=-5 +County "CT, Hartford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900030.epw site_zip_code=06010 site_time_zone_utc_offset=-5 +County "CT, Litchfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900050.epw site_zip_code=06790 site_time_zone_utc_offset=-5 +County "CT, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900070.epw site_zip_code=06457 site_time_zone_utc_offset=-5 +County "CT, New Haven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900090.epw site_zip_code=06516 site_time_zone_utc_offset=-5 +County "CT, New London County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900110.epw site_zip_code=06360 site_time_zone_utc_offset=-5 +County "CT, Tolland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900130.epw site_zip_code=06066 site_time_zone_utc_offset=-5 +County "CT, Windham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900150.epw site_zip_code=06226 site_time_zone_utc_offset=-5 +County "DC, District of Columbia" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1100010.epw site_zip_code=20002 site_time_zone_utc_offset=-5 +County "DE, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000010.epw site_zip_code=19904 site_time_zone_utc_offset=-5 +County "DE, New Castle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000030.epw site_zip_code=19720 site_time_zone_utc_offset=-5 +County "DE, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000050.epw site_zip_code=19966 site_time_zone_utc_offset=-5 +County "FL, Alachua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200010.epw site_zip_code=32608 site_time_zone_utc_offset=-5 +County "FL, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200030.epw site_zip_code=32063 site_time_zone_utc_offset=-5 +County "FL, Bay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200050.epw site_zip_code=32404 site_time_zone_utc_offset=-6 +County "FL, Bradford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200070.epw site_zip_code=32091 site_time_zone_utc_offset=-5 +County "FL, Brevard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200090.epw site_zip_code=32940 site_time_zone_utc_offset=-5 +County "FL, Broward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200110.epw site_zip_code=33027 site_time_zone_utc_offset=-5 +County "FL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200130.epw site_zip_code=32424 site_time_zone_utc_offset=-6 +County "FL, Charlotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200150.epw site_zip_code=33950 site_time_zone_utc_offset=-5 +County "FL, Citrus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200170.epw site_zip_code=34446 site_time_zone_utc_offset=-5 +County "FL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200190.epw site_zip_code=32068 site_time_zone_utc_offset=-5 +County "FL, Collier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200210.epw site_zip_code=34112 site_time_zone_utc_offset=-5 +County "FL, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200230.epw site_zip_code=32025 site_time_zone_utc_offset=-5 +County "FL, DeSoto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200270.epw site_zip_code=34266 site_time_zone_utc_offset=-5 +County "FL, Dixie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200290.epw site_zip_code=32680 site_time_zone_utc_offset=-5 +County "FL, Duval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200310.epw site_zip_code=32256 site_time_zone_utc_offset=-5 +County "FL, Escambia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200330.epw site_zip_code=32507 site_time_zone_utc_offset=-6 +County "FL, Flagler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200350.epw site_zip_code=32137 site_time_zone_utc_offset=-5 +County "FL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200370.epw site_zip_code=32328 site_time_zone_utc_offset=-5 +County "FL, Gadsden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200390.epw site_zip_code=32351 site_time_zone_utc_offset=-5 +County "FL, Gilchrist County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200410.epw site_zip_code=32693 site_time_zone_utc_offset=-5 +County "FL, Glades County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200430.epw site_zip_code=33471 site_time_zone_utc_offset=-5 +County "FL, Gulf County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200450.epw site_zip_code=32456 site_time_zone_utc_offset=-6 +County "FL, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200470.epw site_zip_code=32052 site_time_zone_utc_offset=-5 +County "FL, Hardee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200490.epw site_zip_code=33873 site_time_zone_utc_offset=-5 +County "FL, Hendry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200510.epw site_zip_code=33440 site_time_zone_utc_offset=-5 +County "FL, Hernando County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200530.epw site_zip_code=34609 site_time_zone_utc_offset=-5 +County "FL, Highlands County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200550.epw site_zip_code=33870 site_time_zone_utc_offset=-5 +County "FL, Hillsborough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200570.epw site_zip_code=33647 site_time_zone_utc_offset=-5 +County "FL, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200590.epw site_zip_code=32425 site_time_zone_utc_offset=-6 +County "FL, Indian River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200610.epw site_zip_code=32958 site_time_zone_utc_offset=-5 +County "FL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200630.epw site_zip_code=32446 site_time_zone_utc_offset=-6 +County "FL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200650.epw site_zip_code=32344 site_time_zone_utc_offset=-5 +County "FL, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200670.epw site_zip_code=32066 site_time_zone_utc_offset=-5 +County "FL, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200690.epw site_zip_code=34711 site_time_zone_utc_offset=-5 +County "FL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200710.epw site_zip_code=34135 site_time_zone_utc_offset=-5 +County "FL, Leon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200730.epw site_zip_code=32303 site_time_zone_utc_offset=-5 +County "FL, Levy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200750.epw site_zip_code=32696 site_time_zone_utc_offset=-5 +County "FL, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200770.epw site_zip_code=32321 site_time_zone_utc_offset=-5 +County "FL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200790.epw site_zip_code=32340 site_time_zone_utc_offset=-5 +County "FL, Manatee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200810.epw site_zip_code=34221 site_time_zone_utc_offset=-5 +County "FL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200830.epw site_zip_code=34491 site_time_zone_utc_offset=-5 +County "FL, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200850.epw site_zip_code=34997 site_time_zone_utc_offset=-5 +County "FL, Miami-Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200860.epw site_zip_code=33160 site_time_zone_utc_offset=-5 +County "FL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200870.epw site_zip_code=33040 site_time_zone_utc_offset=-5 +County "FL, Nassau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200890.epw site_zip_code=32034 site_time_zone_utc_offset=-5 +County "FL, Okaloosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200910.epw site_zip_code=32541 site_time_zone_utc_offset=-6 +County "FL, Okeechobee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200930.epw site_zip_code=34974 site_time_zone_utc_offset=-5 +County "FL, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200950.epw site_zip_code=34787 site_time_zone_utc_offset=-5 +County "FL, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200970.epw site_zip_code=34746 site_time_zone_utc_offset=-5 +County "FL, Palm Beach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200990.epw site_zip_code=33411 site_time_zone_utc_offset=-5 +County "FL, Pasco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201010.epw site_zip_code=34668 site_time_zone_utc_offset=-5 +County "FL, Pinellas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201030.epw site_zip_code=34698 site_time_zone_utc_offset=-5 +County "FL, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201050.epw site_zip_code=33810 site_time_zone_utc_offset=-5 +County "FL, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201070.epw site_zip_code=32177 site_time_zone_utc_offset=-5 +County "FL, Santa Rosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201130.epw site_zip_code=32566 site_time_zone_utc_offset=-6 +County "FL, Sarasota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201150.epw site_zip_code=34293 site_time_zone_utc_offset=-5 +County "FL, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201170.epw site_zip_code=32771 site_time_zone_utc_offset=-5 +County "FL, St. Johns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201090.epw site_zip_code=32259 site_time_zone_utc_offset=-5 +County "FL, St. Lucie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201110.epw site_zip_code=34953 site_time_zone_utc_offset=-5 +County "FL, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201190.epw site_zip_code=32162 site_time_zone_utc_offset=-5 +County "FL, Suwannee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201210.epw site_zip_code=32060 site_time_zone_utc_offset=-5 +County "FL, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201230.epw site_zip_code=32348 site_time_zone_utc_offset=-5 +County "FL, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201250.epw site_zip_code=32054 site_time_zone_utc_offset=-5 +County "FL, Volusia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201270.epw site_zip_code=32174 site_time_zone_utc_offset=-5 +County "FL, Wakulla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201290.epw site_zip_code=32327 site_time_zone_utc_offset=-5 +County "FL, Walton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201310.epw site_zip_code=32459 site_time_zone_utc_offset=-6 +County "FL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201330.epw site_zip_code=32428 site_time_zone_utc_offset=-6 +County "GA, Appling County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300010.epw site_zip_code=31513 site_time_zone_utc_offset=-5 +County "GA, Atkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300030.epw site_zip_code=31642 site_time_zone_utc_offset=-5 +County "GA, Bacon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300050.epw site_zip_code=31510 site_time_zone_utc_offset=-5 +County "GA, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300070.epw site_zip_code=39870 site_time_zone_utc_offset=-5 +County "GA, Baldwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300090.epw site_zip_code=31061 site_time_zone_utc_offset=-5 +County "GA, Banks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300110.epw site_zip_code=30547 site_time_zone_utc_offset=-5 +County "GA, Barrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300130.epw site_zip_code=30680 site_time_zone_utc_offset=-5 +County "GA, Bartow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300150.epw site_zip_code=30120 site_time_zone_utc_offset=-5 +County "GA, Ben Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300170.epw site_zip_code=31750 site_time_zone_utc_offset=-5 +County "GA, Berrien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300190.epw site_zip_code=31639 site_time_zone_utc_offset=-5 +County "GA, Bibb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300210.epw site_zip_code=31204 site_time_zone_utc_offset=-5 +County "GA, Bleckley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300230.epw site_zip_code=31014 site_time_zone_utc_offset=-5 +County "GA, Brantley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300250.epw site_zip_code=31553 site_time_zone_utc_offset=-5 +County "GA, Brooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300270.epw site_zip_code=31643 site_time_zone_utc_offset=-5 +County "GA, Bryan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300290.epw site_zip_code=31324 site_time_zone_utc_offset=-5 +County "GA, Bulloch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300310.epw site_zip_code=30458 site_time_zone_utc_offset=-5 +County "GA, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300330.epw site_zip_code=30830 site_time_zone_utc_offset=-5 +County "GA, Butts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300350.epw site_zip_code=30233 site_time_zone_utc_offset=-5 +County "GA, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300370.epw site_zip_code=39846 site_time_zone_utc_offset=-5 +County "GA, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300390.epw site_zip_code=31558 site_time_zone_utc_offset=-5 +County "GA, Candler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300430.epw site_zip_code=30439 site_time_zone_utc_offset=-5 +County "GA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300450.epw site_zip_code=30117 site_time_zone_utc_offset=-5 +County "GA, Catoosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300470.epw site_zip_code=30736 site_time_zone_utc_offset=-5 +County "GA, Charlton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300490.epw site_zip_code=31537 site_time_zone_utc_offset=-5 +County "GA, Chatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300510.epw site_zip_code=31419 site_time_zone_utc_offset=-5 +County "GA, Chattahoochee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300530.epw site_zip_code=31905 site_time_zone_utc_offset=-5 +County "GA, Chattooga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300550.epw site_zip_code=30747 site_time_zone_utc_offset=-5 +County "GA, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300570.epw site_zip_code=30188 site_time_zone_utc_offset=-5 +County "GA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300590.epw site_zip_code=30606 site_time_zone_utc_offset=-5 +County "GA, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300610.epw site_zip_code=39851 site_time_zone_utc_offset=-5 +County "GA, Clayton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300630.epw site_zip_code=30236 site_time_zone_utc_offset=-5 +County "GA, Clinch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300650.epw site_zip_code=31634 site_time_zone_utc_offset=-5 +County "GA, Cobb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300670.epw site_zip_code=30080 site_time_zone_utc_offset=-5 +County "GA, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300690.epw site_zip_code=31533 site_time_zone_utc_offset=-5 +County "GA, Colquitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300710.epw site_zip_code=31768 site_time_zone_utc_offset=-5 +County "GA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300730.epw site_zip_code=30809 site_time_zone_utc_offset=-5 +County "GA, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300750.epw site_zip_code=31620 site_time_zone_utc_offset=-5 +County "GA, Coweta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300770.epw site_zip_code=30263 site_time_zone_utc_offset=-5 +County "GA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300790.epw site_zip_code=31078 site_time_zone_utc_offset=-5 +County "GA, Crisp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300810.epw site_zip_code=31015 site_time_zone_utc_offset=-5 +County "GA, Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300830.epw site_zip_code=30752 site_time_zone_utc_offset=-5 +County "GA, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300850.epw site_zip_code=30534 site_time_zone_utc_offset=-5 +County "GA, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300890.epw site_zip_code=30058 site_time_zone_utc_offset=-5 +County "GA, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300870.epw site_zip_code=39819 site_time_zone_utc_offset=-5 +County "GA, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300910.epw site_zip_code=31023 site_time_zone_utc_offset=-5 +County "GA, Dooly County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300930.epw site_zip_code=31092 site_time_zone_utc_offset=-5 +County "GA, Dougherty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300950.epw site_zip_code=31705 site_time_zone_utc_offset=-5 +County "GA, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300970.epw site_zip_code=30135 site_time_zone_utc_offset=-5 +County "GA, Early County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300990.epw site_zip_code=39823 site_time_zone_utc_offset=-5 +County "GA, Echols County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301010.epw site_zip_code=31636 site_time_zone_utc_offset=-5 +County "GA, Effingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301030.epw site_zip_code=31326 site_time_zone_utc_offset=-5 +County "GA, Elbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301050.epw site_zip_code=30635 site_time_zone_utc_offset=-5 +County "GA, Emanuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301070.epw site_zip_code=30401 site_time_zone_utc_offset=-5 +County "GA, Evans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301090.epw site_zip_code=30417 site_time_zone_utc_offset=-5 +County "GA, Fannin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301110.epw site_zip_code=30513 site_time_zone_utc_offset=-5 +County "GA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301130.epw site_zip_code=30269 site_time_zone_utc_offset=-5 +County "GA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301150.epw site_zip_code=30165 site_time_zone_utc_offset=-5 +County "GA, Forsyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301170.epw site_zip_code=30040 site_time_zone_utc_offset=-5 +County "GA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301190.epw site_zip_code=30553 site_time_zone_utc_offset=-5 +County "GA, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301210.epw site_zip_code=30318 site_time_zone_utc_offset=-5 +County "GA, Gilmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301230.epw site_zip_code=30540 site_time_zone_utc_offset=-5 +County "GA, Glascock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301250.epw site_zip_code=30810 site_time_zone_utc_offset=-5 +County "GA, Glynn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301270.epw site_zip_code=31525 site_time_zone_utc_offset=-5 +County "GA, Gordon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301290.epw site_zip_code=30701 site_time_zone_utc_offset=-5 +County "GA, Grady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301310.epw site_zip_code=39828 site_time_zone_utc_offset=-5 +County "GA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301330.epw site_zip_code=30642 site_time_zone_utc_offset=-5 +County "GA, Gwinnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301350.epw site_zip_code=30044 site_time_zone_utc_offset=-5 +County "GA, Habersham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301370.epw site_zip_code=30531 site_time_zone_utc_offset=-5 +County "GA, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301390.epw site_zip_code=30542 site_time_zone_utc_offset=-5 +County "GA, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301410.epw site_zip_code=31087 site_time_zone_utc_offset=-5 +County "GA, Haralson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301430.epw site_zip_code=30110 site_time_zone_utc_offset=-5 +County "GA, Harris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301450.epw site_zip_code=31804 site_time_zone_utc_offset=-5 +County "GA, Hart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301470.epw site_zip_code=30643 site_time_zone_utc_offset=-5 +County "GA, Heard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301490.epw site_zip_code=30217 site_time_zone_utc_offset=-5 +County "GA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301510.epw site_zip_code=30253 site_time_zone_utc_offset=-5 +County "GA, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301530.epw site_zip_code=31088 site_time_zone_utc_offset=-5 +County "GA, Irwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301550.epw site_zip_code=31774 site_time_zone_utc_offset=-5 +County "GA, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301570.epw site_zip_code=30549 site_time_zone_utc_offset=-5 +County "GA, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301590.epw site_zip_code=31064 site_time_zone_utc_offset=-5 +County "GA, Jeff Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301610.epw site_zip_code=31539 site_time_zone_utc_offset=-5 +County "GA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301630.epw site_zip_code=30434 site_time_zone_utc_offset=-5 +County "GA, Jenkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301650.epw site_zip_code=30442 site_time_zone_utc_offset=-5 +County "GA, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301670.epw site_zip_code=31096 site_time_zone_utc_offset=-5 +County "GA, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301690.epw site_zip_code=31032 site_time_zone_utc_offset=-5 +County "GA, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301710.epw site_zip_code=30204 site_time_zone_utc_offset=-5 +County "GA, Lanier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301730.epw site_zip_code=31635 site_time_zone_utc_offset=-5 +County "GA, Laurens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301750.epw site_zip_code=31021 site_time_zone_utc_offset=-5 +County "GA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301770.epw site_zip_code=31763 site_time_zone_utc_offset=-5 +County "GA, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301790.epw site_zip_code=31313 site_time_zone_utc_offset=-5 +County "GA, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301810.epw site_zip_code=30817 site_time_zone_utc_offset=-5 +County "GA, Long County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301830.epw site_zip_code=31316 site_time_zone_utc_offset=-5 +County "GA, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301850.epw site_zip_code=31601 site_time_zone_utc_offset=-5 +County "GA, Lumpkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301870.epw site_zip_code=30533 site_time_zone_utc_offset=-5 +County "GA, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301930.epw site_zip_code=31063 site_time_zone_utc_offset=-5 +County "GA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301950.epw site_zip_code=30633 site_time_zone_utc_offset=-5 +County "GA, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301970.epw site_zip_code=31803 site_time_zone_utc_offset=-5 +County "GA, McDuffie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301890.epw site_zip_code=30824 site_time_zone_utc_offset=-5 +County "GA, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301910.epw site_zip_code=31331 site_time_zone_utc_offset=-5 +County "GA, Meriwether County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301990.epw site_zip_code=31816 site_time_zone_utc_offset=-5 +County "GA, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302010.epw site_zip_code=39837 site_time_zone_utc_offset=-5 +County "GA, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302050.epw site_zip_code=31730 site_time_zone_utc_offset=-5 +County "GA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302070.epw site_zip_code=31029 site_time_zone_utc_offset=-5 +County "GA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302090.epw site_zip_code=30445 site_time_zone_utc_offset=-5 +County "GA, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302110.epw site_zip_code=30650 site_time_zone_utc_offset=-5 +County "GA, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302130.epw site_zip_code=30705 site_time_zone_utc_offset=-5 +County "GA, Muscogee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302150.epw site_zip_code=31907 site_time_zone_utc_offset=-5 +County "GA, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302170.epw site_zip_code=30016 site_time_zone_utc_offset=-5 +County "GA, Oconee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302190.epw site_zip_code=30677 site_time_zone_utc_offset=-5 +County "GA, Oglethorpe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302210.epw site_zip_code=30683 site_time_zone_utc_offset=-5 +County "GA, Paulding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302230.epw site_zip_code=30132 site_time_zone_utc_offset=-5 +County "GA, Peach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302250.epw site_zip_code=31030 site_time_zone_utc_offset=-5 +County "GA, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302270.epw site_zip_code=30143 site_time_zone_utc_offset=-5 +County "GA, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302290.epw site_zip_code=31516 site_time_zone_utc_offset=-5 +County "GA, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302310.epw site_zip_code=30292 site_time_zone_utc_offset=-5 +County "GA, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302330.epw site_zip_code=30125 site_time_zone_utc_offset=-5 +County "GA, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302350.epw site_zip_code=31036 site_time_zone_utc_offset=-5 +County "GA, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302370.epw site_zip_code=31024 site_time_zone_utc_offset=-5 +County "GA, Quitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302390.epw site_zip_code=39854 site_time_zone_utc_offset=-5 +County "GA, Rabun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302410.epw site_zip_code=30525 site_time_zone_utc_offset=-5 +County "GA, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302430.epw site_zip_code=39840 site_time_zone_utc_offset=-5 +County "GA, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302450.epw site_zip_code=30909 site_time_zone_utc_offset=-5 +County "GA, Rockdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302470.epw site_zip_code=30094 site_time_zone_utc_offset=-5 +County "GA, Schley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302490.epw site_zip_code=31806 site_time_zone_utc_offset=-5 +County "GA, Screven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302510.epw site_zip_code=30467 site_time_zone_utc_offset=-5 +County "GA, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302530.epw site_zip_code=39845 site_time_zone_utc_offset=-5 +County "GA, Spalding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302550.epw site_zip_code=30223 site_time_zone_utc_offset=-5 +County "GA, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302570.epw site_zip_code=30577 site_time_zone_utc_offset=-5 +County "GA, Stewart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302590.epw site_zip_code=31825 site_time_zone_utc_offset=-5 +County "GA, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302610.epw site_zip_code=31709 site_time_zone_utc_offset=-5 +County "GA, Talbot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302630.epw site_zip_code=31827 site_time_zone_utc_offset=-5 +County "GA, Taliaferro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302650.epw site_zip_code=30631 site_time_zone_utc_offset=-5 +County "GA, Tattnall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302670.epw site_zip_code=30427 site_time_zone_utc_offset=-5 +County "GA, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302690.epw site_zip_code=31006 site_time_zone_utc_offset=-5 +County "GA, Telfair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302710.epw site_zip_code=31055 site_time_zone_utc_offset=-5 +County "GA, Terrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302730.epw site_zip_code=39842 site_time_zone_utc_offset=-5 +County "GA, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302750.epw site_zip_code=31792 site_time_zone_utc_offset=-5 +County "GA, Tift County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302770.epw site_zip_code=31794 site_time_zone_utc_offset=-5 +County "GA, Toombs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302790.epw site_zip_code=30474 site_time_zone_utc_offset=-5 +County "GA, Towns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302810.epw site_zip_code=30546 site_time_zone_utc_offset=-5 +County "GA, Treutlen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302830.epw site_zip_code=30457 site_time_zone_utc_offset=-5 +County "GA, Troup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302850.epw site_zip_code=30241 site_time_zone_utc_offset=-5 +County "GA, Turner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302870.epw site_zip_code=31714 site_time_zone_utc_offset=-5 +County "GA, Twiggs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302890.epw site_zip_code=31044 site_time_zone_utc_offset=-5 +County "GA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302910.epw site_zip_code=30512 site_time_zone_utc_offset=-5 +County "GA, Upson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302930.epw site_zip_code=30286 site_time_zone_utc_offset=-5 +County "GA, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302950.epw site_zip_code=30741 site_time_zone_utc_offset=-5 +County "GA, Walton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302970.epw site_zip_code=30052 site_time_zone_utc_offset=-5 +County "GA, Ware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302990.epw site_zip_code=31503 site_time_zone_utc_offset=-5 +County "GA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303010.epw site_zip_code=30828 site_time_zone_utc_offset=-5 +County "GA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303030.epw site_zip_code=31082 site_time_zone_utc_offset=-5 +County "GA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303050.epw site_zip_code=31545 site_time_zone_utc_offset=-5 +County "GA, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303070.epw site_zip_code=31824 site_time_zone_utc_offset=-5 +County "GA, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303090.epw site_zip_code=30428 site_time_zone_utc_offset=-5 +County "GA, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303110.epw site_zip_code=30528 site_time_zone_utc_offset=-5 +County "GA, Whitfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303130.epw site_zip_code=30721 site_time_zone_utc_offset=-5 +County "GA, Wilcox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303150.epw site_zip_code=31001 site_time_zone_utc_offset=-5 +County "GA, Wilkes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303170.epw site_zip_code=30673 site_time_zone_utc_offset=-5 +County "GA, Wilkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303190.epw site_zip_code=31031 site_time_zone_utc_offset=-5 +County "GA, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303210.epw site_zip_code=31791 site_time_zone_utc_offset=-5 +County "HI, Hawaii County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500010.epw site_zip_code=96721 site_time_zone_utc_offset=-10 +County "HI, Honolulu County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500030.epw site_zip_code=96813 site_time_zone_utc_offset=-10 +County "HI, Kalawao County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500050.epw site_zip_code=96742 site_time_zone_utc_offset=-10 +County "HI, Kauai County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500070.epw site_zip_code=96746 site_time_zone_utc_offset=-10 +County "HI, Maui County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500090.epw site_zip_code=96793 site_time_zone_utc_offset=-10 +County "IA, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900010.epw site_zip_code=50849 site_time_zone_utc_offset=-6 +County "IA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900030.epw site_zip_code=50841 site_time_zone_utc_offset=-6 +County "IA, Allamakee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900050.epw site_zip_code=52172 site_time_zone_utc_offset=-6 +County "IA, Appanoose County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900070.epw site_zip_code=52544 site_time_zone_utc_offset=-6 +County "IA, Audubon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900090.epw site_zip_code=50025 site_time_zone_utc_offset=-6 +County "IA, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900110.epw site_zip_code=52349 site_time_zone_utc_offset=-6 +County "IA, Black Hawk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900130.epw site_zip_code=50613 site_time_zone_utc_offset=-6 +County "IA, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900150.epw site_zip_code=50036 site_time_zone_utc_offset=-6 +County "IA, Bremer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900170.epw site_zip_code=50677 site_time_zone_utc_offset=-6 +County "IA, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900190.epw site_zip_code=50644 site_time_zone_utc_offset=-6 +County "IA, Buena Vista County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900210.epw site_zip_code=50588 site_time_zone_utc_offset=-6 +County "IA, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900230.epw site_zip_code=50665 site_time_zone_utc_offset=-6 +County "IA, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900250.epw site_zip_code=50563 site_time_zone_utc_offset=-6 +County "IA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900270.epw site_zip_code=51401 site_time_zone_utc_offset=-6 +County "IA, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900290.epw site_zip_code=50022 site_time_zone_utc_offset=-6 +County "IA, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900310.epw site_zip_code=52772 site_time_zone_utc_offset=-6 +County "IA, Cerro Gordo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900330.epw site_zip_code=50401 site_time_zone_utc_offset=-6 +County "IA, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900350.epw site_zip_code=51012 site_time_zone_utc_offset=-6 +County "IA, Chickasaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900370.epw site_zip_code=50659 site_time_zone_utc_offset=-6 +County "IA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900390.epw site_zip_code=50213 site_time_zone_utc_offset=-6 +County "IA, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900410.epw site_zip_code=51301 site_time_zone_utc_offset=-6 +County "IA, Clayton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900430.epw site_zip_code=52052 site_time_zone_utc_offset=-6 +County "IA, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900450.epw site_zip_code=52732 site_time_zone_utc_offset=-6 +County "IA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900470.epw site_zip_code=51442 site_time_zone_utc_offset=-6 +County "IA, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900490.epw site_zip_code=50263 site_time_zone_utc_offset=-6 +County "IA, Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900510.epw site_zip_code=52537 site_time_zone_utc_offset=-6 +County "IA, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900530.epw site_zip_code=50144 site_time_zone_utc_offset=-6 +County "IA, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900550.epw site_zip_code=52057 site_time_zone_utc_offset=-6 +County "IA, Des Moines County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900570.epw site_zip_code=52601 site_time_zone_utc_offset=-6 +County "IA, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900590.epw site_zip_code=51360 site_time_zone_utc_offset=-6 +County "IA, Dubuque County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900610.epw site_zip_code=52001 site_time_zone_utc_offset=-6 +County "IA, Emmet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900630.epw site_zip_code=51334 site_time_zone_utc_offset=-6 +County "IA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900650.epw site_zip_code=50662 site_time_zone_utc_offset=-6 +County "IA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900670.epw site_zip_code=50616 site_time_zone_utc_offset=-6 +County "IA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900690.epw site_zip_code=50441 site_time_zone_utc_offset=-6 +County "IA, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900710.epw site_zip_code=51652 site_time_zone_utc_offset=-6 +County "IA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900730.epw site_zip_code=50129 site_time_zone_utc_offset=-6 +County "IA, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900750.epw site_zip_code=50638 site_time_zone_utc_offset=-6 +County "IA, Guthrie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900770.epw site_zip_code=50216 site_time_zone_utc_offset=-6 +County "IA, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900790.epw site_zip_code=50595 site_time_zone_utc_offset=-6 +County "IA, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900810.epw site_zip_code=50438 site_time_zone_utc_offset=-6 +County "IA, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900830.epw site_zip_code=50126 site_time_zone_utc_offset=-6 +County "IA, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900850.epw site_zip_code=51555 site_time_zone_utc_offset=-6 +County "IA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900870.epw site_zip_code=52641 site_time_zone_utc_offset=-6 +County "IA, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900890.epw site_zip_code=52136 site_time_zone_utc_offset=-6 +County "IA, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900910.epw site_zip_code=50548 site_time_zone_utc_offset=-6 +County "IA, Ida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900930.epw site_zip_code=51445 site_time_zone_utc_offset=-6 +County "IA, Iowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900950.epw site_zip_code=52361 site_time_zone_utc_offset=-6 +County "IA, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900970.epw site_zip_code=52060 site_time_zone_utc_offset=-6 +County "IA, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900990.epw site_zip_code=50208 site_time_zone_utc_offset=-6 +County "IA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901010.epw site_zip_code=52556 site_time_zone_utc_offset=-6 +County "IA, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901030.epw site_zip_code=52240 site_time_zone_utc_offset=-6 +County "IA, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901050.epw site_zip_code=52205 site_time_zone_utc_offset=-6 +County "IA, Keokuk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901070.epw site_zip_code=52591 site_time_zone_utc_offset=-6 +County "IA, Kossuth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901090.epw site_zip_code=50511 site_time_zone_utc_offset=-6 +County "IA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901110.epw site_zip_code=52627 site_time_zone_utc_offset=-6 +County "IA, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901130.epw site_zip_code=52404 site_time_zone_utc_offset=-6 +County "IA, Louisa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901150.epw site_zip_code=52653 site_time_zone_utc_offset=-6 +County "IA, Lucas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901170.epw site_zip_code=50049 site_time_zone_utc_offset=-6 +County "IA, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901190.epw site_zip_code=51246 site_time_zone_utc_offset=-6 +County "IA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901210.epw site_zip_code=50273 site_time_zone_utc_offset=-6 +County "IA, Mahaska County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901230.epw site_zip_code=52577 site_time_zone_utc_offset=-6 +County "IA, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901250.epw site_zip_code=50219 site_time_zone_utc_offset=-6 +County "IA, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901270.epw site_zip_code=50158 site_time_zone_utc_offset=-6 +County "IA, Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901290.epw site_zip_code=51534 site_time_zone_utc_offset=-6 +County "IA, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901310.epw site_zip_code=50461 site_time_zone_utc_offset=-6 +County "IA, Monona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901330.epw site_zip_code=51040 site_time_zone_utc_offset=-6 +County "IA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901350.epw site_zip_code=52531 site_time_zone_utc_offset=-6 +County "IA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901370.epw site_zip_code=51566 site_time_zone_utc_offset=-6 +County "IA, Muscatine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901390.epw site_zip_code=52761 site_time_zone_utc_offset=-6 +County "IA, O'Brien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901410.epw site_zip_code=51201 site_time_zone_utc_offset=-6 +County "IA, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901430.epw site_zip_code=51249 site_time_zone_utc_offset=-6 +County "IA, Page County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901450.epw site_zip_code=51632 site_time_zone_utc_offset=-6 +County "IA, Palo Alto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901470.epw site_zip_code=50536 site_time_zone_utc_offset=-6 +County "IA, Plymouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901490.epw site_zip_code=51031 site_time_zone_utc_offset=-6 +County "IA, Pocahontas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901510.epw site_zip_code=50574 site_time_zone_utc_offset=-6 +County "IA, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901530.epw site_zip_code=50023 site_time_zone_utc_offset=-6 +County "IA, Pottawattamie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901550.epw site_zip_code=51503 site_time_zone_utc_offset=-6 +County "IA, Poweshiek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901570.epw site_zip_code=50112 site_time_zone_utc_offset=-6 +County "IA, Ringgold County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901590.epw site_zip_code=50854 site_time_zone_utc_offset=-6 +County "IA, Sac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901610.epw site_zip_code=50583 site_time_zone_utc_offset=-6 +County "IA, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901630.epw site_zip_code=52722 site_time_zone_utc_offset=-6 +County "IA, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901650.epw site_zip_code=51537 site_time_zone_utc_offset=-6 +County "IA, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901670.epw site_zip_code=51250 site_time_zone_utc_offset=-6 +County "IA, Story County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901690.epw site_zip_code=50010 site_time_zone_utc_offset=-6 +County "IA, Tama County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901710.epw site_zip_code=52339 site_time_zone_utc_offset=-6 +County "IA, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901730.epw site_zip_code=50833 site_time_zone_utc_offset=-6 +County "IA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901750.epw site_zip_code=50801 site_time_zone_utc_offset=-6 +County "IA, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901770.epw site_zip_code=52565 site_time_zone_utc_offset=-6 +County "IA, Wapello County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901790.epw site_zip_code=52501 site_time_zone_utc_offset=-6 +County "IA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901810.epw site_zip_code=50125 site_time_zone_utc_offset=-6 +County "IA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901830.epw site_zip_code=52353 site_time_zone_utc_offset=-6 +County "IA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901850.epw site_zip_code=50060 site_time_zone_utc_offset=-6 +County "IA, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901870.epw site_zip_code=50501 site_time_zone_utc_offset=-6 +County "IA, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901890.epw site_zip_code=50436 site_time_zone_utc_offset=-6 +County "IA, Winneshiek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901910.epw site_zip_code=52101 site_time_zone_utc_offset=-6 +County "IA, Woodbury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901930.epw site_zip_code=51106 site_time_zone_utc_offset=-6 +County "IA, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901950.epw site_zip_code=50459 site_time_zone_utc_offset=-6 +County "IA, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901970.epw site_zip_code=50533 site_time_zone_utc_offset=-6 +County "ID, Ada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600010.epw site_zip_code=83646 site_time_zone_utc_offset=-7 +County "ID, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600030.epw site_zip_code=83612 site_time_zone_utc_offset=-7 +County "ID, Bannock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600050.epw site_zip_code=83201 site_time_zone_utc_offset=-7 +County "ID, Bear Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600070.epw site_zip_code=83254 site_time_zone_utc_offset=-7 +County "ID, Benewah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600090.epw site_zip_code=83861 site_time_zone_utc_offset=-8 +County "ID, Bingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600110.epw site_zip_code=83221 site_time_zone_utc_offset=-7 +County "ID, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600130.epw site_zip_code=83333 site_time_zone_utc_offset=-7 +County "ID, Boise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600150.epw site_zip_code=83716 site_time_zone_utc_offset=-7 +County "ID, Bonner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600170.epw site_zip_code=83864 site_time_zone_utc_offset=-8 +County "ID, Bonneville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600190.epw site_zip_code=83401 site_time_zone_utc_offset=-7 +County "ID, Boundary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600210.epw site_zip_code=83805 site_time_zone_utc_offset=-8 +County "ID, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600230.epw site_zip_code=83213 site_time_zone_utc_offset=-7 +County "ID, Camas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600250.epw site_zip_code=83327 site_time_zone_utc_offset=-7 +County "ID, Canyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600270.epw site_zip_code=83686 site_time_zone_utc_offset=-7 +County "ID, Caribou County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600290.epw site_zip_code=83276 site_time_zone_utc_offset=-7 +County "ID, Cassia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600310.epw site_zip_code=83318 site_time_zone_utc_offset=-7 +County "ID, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600330.epw site_zip_code=83423 site_time_zone_utc_offset=-7 +County "ID, Clearwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600350.epw site_zip_code=83544 site_time_zone_utc_offset=-8 +County "ID, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600370.epw site_zip_code=83226 site_time_zone_utc_offset=-7 +County "ID, Elmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600390.epw site_zip_code=83647 site_time_zone_utc_offset=-7 +County "ID, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600410.epw site_zip_code=83263 site_time_zone_utc_offset=-7 +County "ID, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600430.epw site_zip_code=83445 site_time_zone_utc_offset=-7 +County "ID, Gem County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600450.epw site_zip_code=83617 site_time_zone_utc_offset=-7 +County "ID, Gooding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600470.epw site_zip_code=83330 site_time_zone_utc_offset=-7 +County "ID, Idaho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600490.epw site_zip_code=83530 site_time_zone_utc_offset=-8 +County "ID, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600510.epw site_zip_code=83442 site_time_zone_utc_offset=-7 +County "ID, Jerome County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600530.epw site_zip_code=83338 site_time_zone_utc_offset=-7 +County "ID, Kootenai County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600550.epw site_zip_code=83854 site_time_zone_utc_offset=-8 +County "ID, Latah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600570.epw site_zip_code=83843 site_time_zone_utc_offset=-8 +County "ID, Lemhi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600590.epw site_zip_code=83467 site_time_zone_utc_offset=-7 +County "ID, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600610.epw site_zip_code=83536 site_time_zone_utc_offset=-8 +County "ID, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600630.epw site_zip_code=83352 site_time_zone_utc_offset=-7 +County "ID, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600650.epw site_zip_code=83440 site_time_zone_utc_offset=-7 +County "ID, Minidoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600670.epw site_zip_code=83350 site_time_zone_utc_offset=-7 +County "ID, Nez Perce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600690.epw site_zip_code=83501 site_time_zone_utc_offset=-8 +County "ID, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600710.epw site_zip_code=83252 site_time_zone_utc_offset=-7 +County "ID, Owyhee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600730.epw site_zip_code=83628 site_time_zone_utc_offset=-7 +County "ID, Payette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600750.epw site_zip_code=83661 site_time_zone_utc_offset=-7 +County "ID, Power County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600770.epw site_zip_code=83211 site_time_zone_utc_offset=-7 +County "ID, Shoshone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600790.epw site_zip_code=83837 site_time_zone_utc_offset=-8 +County "ID, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600810.epw site_zip_code=83455 site_time_zone_utc_offset=-7 +County "ID, Twin Falls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600830.epw site_zip_code=83301 site_time_zone_utc_offset=-7 +County "ID, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600850.epw site_zip_code=83638 site_time_zone_utc_offset=-7 +County "ID, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600870.epw site_zip_code=83672 site_time_zone_utc_offset=-7 +County "IL, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700010.epw site_zip_code=62301 site_time_zone_utc_offset=-6 +County "IL, Alexander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700030.epw site_zip_code=62914 site_time_zone_utc_offset=-6 +County "IL, Bond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700050.epw site_zip_code=62246 site_time_zone_utc_offset=-6 +County "IL, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700070.epw site_zip_code=61008 site_time_zone_utc_offset=-6 +County "IL, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700090.epw site_zip_code=62353 site_time_zone_utc_offset=-6 +County "IL, Bureau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700110.epw site_zip_code=61356 site_time_zone_utc_offset=-6 +County "IL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700130.epw site_zip_code=62047 site_time_zone_utc_offset=-6 +County "IL, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700150.epw site_zip_code=61074 site_time_zone_utc_offset=-6 +County "IL, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700170.epw site_zip_code=62618 site_time_zone_utc_offset=-6 +County "IL, Champaign County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700190.epw site_zip_code=61820 site_time_zone_utc_offset=-6 +County "IL, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700210.epw site_zip_code=62568 site_time_zone_utc_offset=-6 +County "IL, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700230.epw site_zip_code=62441 site_time_zone_utc_offset=-6 +County "IL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700250.epw site_zip_code=62839 site_time_zone_utc_offset=-6 +County "IL, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700270.epw site_zip_code=62231 site_time_zone_utc_offset=-6 +County "IL, Coles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700290.epw site_zip_code=61938 site_time_zone_utc_offset=-6 +County "IL, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700310.epw site_zip_code=60657 site_time_zone_utc_offset=-6 +County "IL, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700330.epw site_zip_code=62454 site_time_zone_utc_offset=-6 +County "IL, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700350.epw site_zip_code=62428 site_time_zone_utc_offset=-6 +County "IL, De Witt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700390.epw site_zip_code=61727 site_time_zone_utc_offset=-6 +County "IL, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700370.epw site_zip_code=60115 site_time_zone_utc_offset=-6 +County "IL, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700410.epw site_zip_code=61953 site_time_zone_utc_offset=-6 +County "IL, DuPage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700430.epw site_zip_code=60148 site_time_zone_utc_offset=-6 +County "IL, Edgar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700450.epw site_zip_code=61944 site_time_zone_utc_offset=-6 +County "IL, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700470.epw site_zip_code=62806 site_time_zone_utc_offset=-6 +County "IL, Effingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700490.epw site_zip_code=62401 site_time_zone_utc_offset=-6 +County "IL, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700510.epw site_zip_code=62471 site_time_zone_utc_offset=-6 +County "IL, Ford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700530.epw site_zip_code=60957 site_time_zone_utc_offset=-6 +County "IL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700550.epw site_zip_code=62896 site_time_zone_utc_offset=-6 +County "IL, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700570.epw site_zip_code=61520 site_time_zone_utc_offset=-6 +County "IL, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700590.epw site_zip_code=62984 site_time_zone_utc_offset=-6 +County "IL, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700610.epw site_zip_code=62016 site_time_zone_utc_offset=-6 +County "IL, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700630.epw site_zip_code=60450 site_time_zone_utc_offset=-6 +County "IL, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700650.epw site_zip_code=62859 site_time_zone_utc_offset=-6 +County "IL, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700670.epw site_zip_code=62321 site_time_zone_utc_offset=-6 +County "IL, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700690.epw site_zip_code=62931 site_time_zone_utc_offset=-6 +County "IL, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700710.epw site_zip_code=61469 site_time_zone_utc_offset=-6 +County "IL, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700730.epw site_zip_code=61443 site_time_zone_utc_offset=-6 +County "IL, Iroquois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700750.epw site_zip_code=60970 site_time_zone_utc_offset=-6 +County "IL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700770.epw site_zip_code=62901 site_time_zone_utc_offset=-6 +County "IL, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700790.epw site_zip_code=62448 site_time_zone_utc_offset=-6 +County "IL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700810.epw site_zip_code=62864 site_time_zone_utc_offset=-6 +County "IL, Jersey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700830.epw site_zip_code=62052 site_time_zone_utc_offset=-6 +County "IL, Jo Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700850.epw site_zip_code=61036 site_time_zone_utc_offset=-6 +County "IL, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700870.epw site_zip_code=62995 site_time_zone_utc_offset=-6 +County "IL, Kane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700890.epw site_zip_code=60506 site_time_zone_utc_offset=-6 +County "IL, Kankakee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700910.epw site_zip_code=60901 site_time_zone_utc_offset=-6 +County "IL, Kendall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700930.epw site_zip_code=60543 site_time_zone_utc_offset=-6 +County "IL, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700950.epw site_zip_code=61401 site_time_zone_utc_offset=-6 +County "IL, LaSalle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700990.epw site_zip_code=61350 site_time_zone_utc_offset=-6 +County "IL, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700970.epw site_zip_code=60085 site_time_zone_utc_offset=-6 +County "IL, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701010.epw site_zip_code=62439 site_time_zone_utc_offset=-6 +County "IL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701030.epw site_zip_code=61021 site_time_zone_utc_offset=-6 +County "IL, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701050.epw site_zip_code=61764 site_time_zone_utc_offset=-6 +County "IL, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701070.epw site_zip_code=62656 site_time_zone_utc_offset=-6 +County "IL, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701150.epw site_zip_code=62521 site_time_zone_utc_offset=-6 +County "IL, Macoupin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701170.epw site_zip_code=62626 site_time_zone_utc_offset=-6 +County "IL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701190.epw site_zip_code=62040 site_time_zone_utc_offset=-6 +County "IL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701210.epw site_zip_code=62801 site_time_zone_utc_offset=-6 +County "IL, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701230.epw site_zip_code=61540 site_time_zone_utc_offset=-6 +County "IL, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701250.epw site_zip_code=62644 site_time_zone_utc_offset=-6 +County "IL, Massac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701270.epw site_zip_code=62960 site_time_zone_utc_offset=-6 +County "IL, McDonough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701090.epw site_zip_code=61455 site_time_zone_utc_offset=-6 +County "IL, McHenry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701110.epw site_zip_code=60014 site_time_zone_utc_offset=-6 +County "IL, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701130.epw site_zip_code=61761 site_time_zone_utc_offset=-6 +County "IL, Menard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701290.epw site_zip_code=62675 site_time_zone_utc_offset=-6 +County "IL, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701310.epw site_zip_code=61231 site_time_zone_utc_offset=-6 +County "IL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701330.epw site_zip_code=62298 site_time_zone_utc_offset=-6 +County "IL, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701350.epw site_zip_code=62056 site_time_zone_utc_offset=-6 +County "IL, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701370.epw site_zip_code=62650 site_time_zone_utc_offset=-6 +County "IL, Moultrie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701390.epw site_zip_code=61951 site_time_zone_utc_offset=-6 +County "IL, Ogle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701410.epw site_zip_code=61068 site_time_zone_utc_offset=-6 +County "IL, Peoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701430.epw site_zip_code=61604 site_time_zone_utc_offset=-6 +County "IL, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701450.epw site_zip_code=62832 site_time_zone_utc_offset=-6 +County "IL, Piatt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701470.epw site_zip_code=61856 site_time_zone_utc_offset=-6 +County "IL, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701490.epw site_zip_code=62363 site_time_zone_utc_offset=-6 +County "IL, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701510.epw site_zip_code=62938 site_time_zone_utc_offset=-6 +County "IL, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701530.epw site_zip_code=62964 site_time_zone_utc_offset=-6 +County "IL, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701550.epw site_zip_code=61326 site_time_zone_utc_offset=-6 +County "IL, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701570.epw site_zip_code=62286 site_time_zone_utc_offset=-6 +County "IL, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701590.epw site_zip_code=62450 site_time_zone_utc_offset=-6 +County "IL, Rock Island County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701610.epw site_zip_code=61265 site_time_zone_utc_offset=-6 +County "IL, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701650.epw site_zip_code=62946 site_time_zone_utc_offset=-6 +County "IL, Sangamon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701670.epw site_zip_code=62704 site_time_zone_utc_offset=-6 +County "IL, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701690.epw site_zip_code=62681 site_time_zone_utc_offset=-6 +County "IL, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701710.epw site_zip_code=62694 site_time_zone_utc_offset=-6 +County "IL, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701730.epw site_zip_code=62565 site_time_zone_utc_offset=-6 +County "IL, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701630.epw site_zip_code=62269 site_time_zone_utc_offset=-6 +County "IL, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701750.epw site_zip_code=61491 site_time_zone_utc_offset=-6 +County "IL, Stephenson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701770.epw site_zip_code=61032 site_time_zone_utc_offset=-6 +County "IL, Tazewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701790.epw site_zip_code=61554 site_time_zone_utc_offset=-6 +County "IL, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701810.epw site_zip_code=62906 site_time_zone_utc_offset=-6 +County "IL, Vermilion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701830.epw site_zip_code=61832 site_time_zone_utc_offset=-6 +County "IL, Wabash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701850.epw site_zip_code=62863 site_time_zone_utc_offset=-6 +County "IL, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701870.epw site_zip_code=61462 site_time_zone_utc_offset=-6 +County "IL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701890.epw site_zip_code=62263 site_time_zone_utc_offset=-6 +County "IL, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701910.epw site_zip_code=62837 site_time_zone_utc_offset=-6 +County "IL, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701930.epw site_zip_code=62821 site_time_zone_utc_offset=-6 +County "IL, Whiteside County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701950.epw site_zip_code=61081 site_time_zone_utc_offset=-6 +County "IL, Will County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701970.epw site_zip_code=60435 site_time_zone_utc_offset=-6 +County "IL, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701990.epw site_zip_code=62959 site_time_zone_utc_offset=-6 +County "IL, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1702010.epw site_zip_code=61107 site_time_zone_utc_offset=-6 +County "IL, Woodford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1702030.epw site_zip_code=61548 site_time_zone_utc_offset=-6 +County "IN, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800010.epw site_zip_code=46733 site_time_zone_utc_offset=-5 +County "IN, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800030.epw site_zip_code=46835 site_time_zone_utc_offset=-5 +County "IN, Bartholomew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800050.epw site_zip_code=47201 site_time_zone_utc_offset=-5 +County "IN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800070.epw site_zip_code=47944 site_time_zone_utc_offset=-5 +County "IN, Blackford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800090.epw site_zip_code=47348 site_time_zone_utc_offset=-5 +County "IN, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800110.epw site_zip_code=46077 site_time_zone_utc_offset=-5 +County "IN, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800130.epw site_zip_code=47448 site_time_zone_utc_offset=-5 +County "IN, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800150.epw site_zip_code=46923 site_time_zone_utc_offset=-5 +County "IN, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800170.epw site_zip_code=46947 site_time_zone_utc_offset=-5 +County "IN, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800190.epw site_zip_code=47130 site_time_zone_utc_offset=-5 +County "IN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800210.epw site_zip_code=47834 site_time_zone_utc_offset=-5 +County "IN, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800230.epw site_zip_code=46041 site_time_zone_utc_offset=-5 +County "IN, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800250.epw site_zip_code=47118 site_time_zone_utc_offset=-5 +County "IN, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800270.epw site_zip_code=47501 site_time_zone_utc_offset=-5 +County "IN, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800330.epw site_zip_code=46706 site_time_zone_utc_offset=-5 +County "IN, Dearborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800290.epw site_zip_code=47025 site_time_zone_utc_offset=-5 +County "IN, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800310.epw site_zip_code=47240 site_time_zone_utc_offset=-5 +County "IN, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800350.epw site_zip_code=47304 site_time_zone_utc_offset=-5 +County "IN, Dubois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800370.epw site_zip_code=47546 site_time_zone_utc_offset=-5 +County "IN, Elkhart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800390.epw site_zip_code=46514 site_time_zone_utc_offset=-5 +County "IN, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800410.epw site_zip_code=47331 site_time_zone_utc_offset=-5 +County "IN, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800430.epw site_zip_code=47150 site_time_zone_utc_offset=-5 +County "IN, Fountain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800450.epw site_zip_code=47918 site_time_zone_utc_offset=-5 +County "IN, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800470.epw site_zip_code=47012 site_time_zone_utc_offset=-5 +County "IN, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800490.epw site_zip_code=46975 site_time_zone_utc_offset=-5 +County "IN, Gibson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800510.epw site_zip_code=47670 site_time_zone_utc_offset=-6 +County "IN, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800530.epw site_zip_code=46953 site_time_zone_utc_offset=-5 +County "IN, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800550.epw site_zip_code=47441 site_time_zone_utc_offset=-5 +County "IN, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800570.epw site_zip_code=46032 site_time_zone_utc_offset=-5 +County "IN, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800590.epw site_zip_code=46140 site_time_zone_utc_offset=-5 +County "IN, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800610.epw site_zip_code=47112 site_time_zone_utc_offset=-5 +County "IN, Hendricks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800630.epw site_zip_code=46112 site_time_zone_utc_offset=-5 +County "IN, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800650.epw site_zip_code=47362 site_time_zone_utc_offset=-5 +County "IN, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800670.epw site_zip_code=46901 site_time_zone_utc_offset=-5 +County "IN, Huntington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800690.epw site_zip_code=46750 site_time_zone_utc_offset=-5 +County "IN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800710.epw site_zip_code=47274 site_time_zone_utc_offset=-5 +County "IN, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800730.epw site_zip_code=47978 site_time_zone_utc_offset=-6 +County "IN, Jay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800750.epw site_zip_code=47371 site_time_zone_utc_offset=-5 +County "IN, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800770.epw site_zip_code=47250 site_time_zone_utc_offset=-5 +County "IN, Jennings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800790.epw site_zip_code=47265 site_time_zone_utc_offset=-5 +County "IN, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800810.epw site_zip_code=46143 site_time_zone_utc_offset=-5 +County "IN, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800830.epw site_zip_code=47591 site_time_zone_utc_offset=-5 +County "IN, Kosciusko County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800850.epw site_zip_code=46580 site_time_zone_utc_offset=-5 +County "IN, LaGrange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800870.epw site_zip_code=46761 site_time_zone_utc_offset=-5 +County "IN, LaPorte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800910.epw site_zip_code=46360 site_time_zone_utc_offset=-6 +County "IN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800890.epw site_zip_code=46307 site_time_zone_utc_offset=-6 +County "IN, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800930.epw site_zip_code=47421 site_time_zone_utc_offset=-5 +County "IN, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800950.epw site_zip_code=46016 site_time_zone_utc_offset=-5 +County "IN, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800970.epw site_zip_code=46227 site_time_zone_utc_offset=-5 +County "IN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800990.epw site_zip_code=46563 site_time_zone_utc_offset=-5 +County "IN, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801010.epw site_zip_code=47581 site_time_zone_utc_offset=-5 +County "IN, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801030.epw site_zip_code=46970 site_time_zone_utc_offset=-5 +County "IN, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801050.epw site_zip_code=47401 site_time_zone_utc_offset=-5 +County "IN, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801070.epw site_zip_code=47933 site_time_zone_utc_offset=-5 +County "IN, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801090.epw site_zip_code=46151 site_time_zone_utc_offset=-5 +County "IN, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801110.epw site_zip_code=46349 site_time_zone_utc_offset=-6 +County "IN, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801130.epw site_zip_code=46755 site_time_zone_utc_offset=-5 +County "IN, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801150.epw site_zip_code=47040 site_time_zone_utc_offset=-5 +County "IN, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801170.epw site_zip_code=47454 site_time_zone_utc_offset=-5 +County "IN, Owen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801190.epw site_zip_code=47460 site_time_zone_utc_offset=-5 +County "IN, Parke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801210.epw site_zip_code=47872 site_time_zone_utc_offset=-5 +County "IN, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801230.epw site_zip_code=47586 site_time_zone_utc_offset=-6 +County "IN, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801250.epw site_zip_code=47567 site_time_zone_utc_offset=-5 +County "IN, Porter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801270.epw site_zip_code=46383 site_time_zone_utc_offset=-6 +County "IN, Posey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801290.epw site_zip_code=47620 site_time_zone_utc_offset=-6 +County "IN, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801310.epw site_zip_code=46996 site_time_zone_utc_offset=-5 +County "IN, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801330.epw site_zip_code=46135 site_time_zone_utc_offset=-5 +County "IN, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801350.epw site_zip_code=47394 site_time_zone_utc_offset=-5 +County "IN, Ripley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801370.epw site_zip_code=47006 site_time_zone_utc_offset=-5 +County "IN, Rush County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801390.epw site_zip_code=46173 site_time_zone_utc_offset=-5 +County "IN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801430.epw site_zip_code=47170 site_time_zone_utc_offset=-5 +County "IN, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801450.epw site_zip_code=46176 site_time_zone_utc_offset=-5 +County "IN, Spencer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801470.epw site_zip_code=47635 site_time_zone_utc_offset=-6 +County "IN, St. Joseph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801410.epw site_zip_code=46544 site_time_zone_utc_offset=-5 +County "IN, Starke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801490.epw site_zip_code=46534 site_time_zone_utc_offset=-6 +County "IN, Steuben County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801510.epw site_zip_code=46703 site_time_zone_utc_offset=-5 +County "IN, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801530.epw site_zip_code=47882 site_time_zone_utc_offset=-5 +County "IN, Switzerland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801550.epw site_zip_code=47043 site_time_zone_utc_offset=-5 +County "IN, Tippecanoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801570.epw site_zip_code=47906 site_time_zone_utc_offset=-5 +County "IN, Tipton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801590.epw site_zip_code=46072 site_time_zone_utc_offset=-5 +County "IN, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801610.epw site_zip_code=47353 site_time_zone_utc_offset=-5 +County "IN, Vanderburgh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801630.epw site_zip_code=47714 site_time_zone_utc_offset=-6 +County "IN, Vermillion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801650.epw site_zip_code=47842 site_time_zone_utc_offset=-5 +County "IN, Vigo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801670.epw site_zip_code=47802 site_time_zone_utc_offset=-5 +County "IN, Wabash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801690.epw site_zip_code=46992 site_time_zone_utc_offset=-5 +County "IN, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801710.epw site_zip_code=47993 site_time_zone_utc_offset=-5 +County "IN, Warrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801730.epw site_zip_code=47630 site_time_zone_utc_offset=-6 +County "IN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801750.epw site_zip_code=47167 site_time_zone_utc_offset=-5 +County "IN, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801770.epw site_zip_code=47374 site_time_zone_utc_offset=-5 +County "IN, Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801790.epw site_zip_code=46714 site_time_zone_utc_offset=-5 +County "IN, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801810.epw site_zip_code=47960 site_time_zone_utc_offset=-5 +County "IN, Whitley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801830.epw site_zip_code=46725 site_time_zone_utc_offset=-5 +County "KS, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000010.epw site_zip_code=66749 site_time_zone_utc_offset=-6 +County "KS, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000030.epw site_zip_code=66032 site_time_zone_utc_offset=-6 +County "KS, Atchison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000050.epw site_zip_code=66002 site_time_zone_utc_offset=-6 +County "KS, Barber County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000070.epw site_zip_code=67104 site_time_zone_utc_offset=-6 +County "KS, Barton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000090.epw site_zip_code=67530 site_time_zone_utc_offset=-6 +County "KS, Bourbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000110.epw site_zip_code=66701 site_time_zone_utc_offset=-6 +County "KS, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000130.epw site_zip_code=66434 site_time_zone_utc_offset=-6 +County "KS, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000150.epw site_zip_code=67042 site_time_zone_utc_offset=-6 +County "KS, Chase County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000170.epw site_zip_code=66845 site_time_zone_utc_offset=-6 +County "KS, Chautauqua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000190.epw site_zip_code=67361 site_time_zone_utc_offset=-6 +County "KS, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000210.epw site_zip_code=66713 site_time_zone_utc_offset=-6 +County "KS, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000230.epw site_zip_code=67756 site_time_zone_utc_offset=-6 +County "KS, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000250.epw site_zip_code=67865 site_time_zone_utc_offset=-6 +County "KS, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000270.epw site_zip_code=67432 site_time_zone_utc_offset=-6 +County "KS, Cloud County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000290.epw site_zip_code=66901 site_time_zone_utc_offset=-6 +County "KS, Coffey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000310.epw site_zip_code=66839 site_time_zone_utc_offset=-6 +County "KS, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000330.epw site_zip_code=67029 site_time_zone_utc_offset=-6 +County "KS, Cowley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000350.epw site_zip_code=67005 site_time_zone_utc_offset=-6 +County "KS, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000370.epw site_zip_code=66762 site_time_zone_utc_offset=-6 +County "KS, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000390.epw site_zip_code=67749 site_time_zone_utc_offset=-6 +County "KS, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000410.epw site_zip_code=67410 site_time_zone_utc_offset=-6 +County "KS, Doniphan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000430.epw site_zip_code=66090 site_time_zone_utc_offset=-6 +County "KS, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000450.epw site_zip_code=66049 site_time_zone_utc_offset=-6 +County "KS, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000470.epw site_zip_code=67547 site_time_zone_utc_offset=-6 +County "KS, Elk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000490.epw site_zip_code=67349 site_time_zone_utc_offset=-6 +County "KS, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000510.epw site_zip_code=67601 site_time_zone_utc_offset=-6 +County "KS, Ellsworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000530.epw site_zip_code=67439 site_time_zone_utc_offset=-6 +County "KS, Finney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000550.epw site_zip_code=67846 site_time_zone_utc_offset=-6 +County "KS, Ford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000570.epw site_zip_code=67801 site_time_zone_utc_offset=-6 +County "KS, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000590.epw site_zip_code=66067 site_time_zone_utc_offset=-6 +County "KS, Geary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000610.epw site_zip_code=66441 site_time_zone_utc_offset=-6 +County "KS, Gove County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000630.epw site_zip_code=67752 site_time_zone_utc_offset=-6 +County "KS, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000650.epw site_zip_code=67642 site_time_zone_utc_offset=-6 +County "KS, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000670.epw site_zip_code=67880 site_time_zone_utc_offset=-6 +County "KS, Gray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000690.epw site_zip_code=67867 site_time_zone_utc_offset=-6 +County "KS, Greeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000710.epw site_zip_code=67879 site_time_zone_utc_offset=-7 +County "KS, Greenwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000730.epw site_zip_code=67045 site_time_zone_utc_offset=-6 +County "KS, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000750.epw site_zip_code=67878 site_time_zone_utc_offset=-7 +County "KS, Harper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000770.epw site_zip_code=67003 site_time_zone_utc_offset=-6 +County "KS, Harvey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000790.epw site_zip_code=67114 site_time_zone_utc_offset=-6 +County "KS, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000810.epw site_zip_code=67877 site_time_zone_utc_offset=-6 +County "KS, Hodgeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000830.epw site_zip_code=67854 site_time_zone_utc_offset=-6 +County "KS, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000850.epw site_zip_code=66436 site_time_zone_utc_offset=-6 +County "KS, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000870.epw site_zip_code=66512 site_time_zone_utc_offset=-6 +County "KS, Jewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000890.epw site_zip_code=66956 site_time_zone_utc_offset=-6 +County "KS, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000910.epw site_zip_code=66062 site_time_zone_utc_offset=-6 +County "KS, Kearny County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000930.epw site_zip_code=67860 site_time_zone_utc_offset=-6 +County "KS, Kingman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000950.epw site_zip_code=67068 site_time_zone_utc_offset=-6 +County "KS, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000970.epw site_zip_code=67054 site_time_zone_utc_offset=-6 +County "KS, Labette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000990.epw site_zip_code=67357 site_time_zone_utc_offset=-6 +County "KS, Lane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001010.epw site_zip_code=67839 site_time_zone_utc_offset=-6 +County "KS, Leavenworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001030.epw site_zip_code=66048 site_time_zone_utc_offset=-6 +County "KS, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001050.epw site_zip_code=67455 site_time_zone_utc_offset=-6 +County "KS, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001070.epw site_zip_code=66040 site_time_zone_utc_offset=-6 +County "KS, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001090.epw site_zip_code=67748 site_time_zone_utc_offset=-6 +County "KS, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001110.epw site_zip_code=66801 site_time_zone_utc_offset=-6 +County "KS, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001150.epw site_zip_code=67063 site_time_zone_utc_offset=-6 +County "KS, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001170.epw site_zip_code=66508 site_time_zone_utc_offset=-6 +County "KS, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001130.epw site_zip_code=67460 site_time_zone_utc_offset=-6 +County "KS, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001190.epw site_zip_code=67864 site_time_zone_utc_offset=-6 +County "KS, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001210.epw site_zip_code=66071 site_time_zone_utc_offset=-6 +County "KS, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001230.epw site_zip_code=67420 site_time_zone_utc_offset=-6 +County "KS, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001250.epw site_zip_code=67301 site_time_zone_utc_offset=-6 +County "KS, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001270.epw site_zip_code=66846 site_time_zone_utc_offset=-6 +County "KS, Morton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001290.epw site_zip_code=67950 site_time_zone_utc_offset=-6 +County "KS, Nemaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001310.epw site_zip_code=66538 site_time_zone_utc_offset=-6 +County "KS, Neosho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001330.epw site_zip_code=66720 site_time_zone_utc_offset=-6 +County "KS, Ness County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001350.epw site_zip_code=67560 site_time_zone_utc_offset=-6 +County "KS, Norton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001370.epw site_zip_code=67654 site_time_zone_utc_offset=-6 +County "KS, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001390.epw site_zip_code=66523 site_time_zone_utc_offset=-6 +County "KS, Osborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001410.epw site_zip_code=67473 site_time_zone_utc_offset=-6 +County "KS, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001430.epw site_zip_code=67467 site_time_zone_utc_offset=-6 +County "KS, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001450.epw site_zip_code=67550 site_time_zone_utc_offset=-6 +County "KS, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001470.epw site_zip_code=67661 site_time_zone_utc_offset=-6 +County "KS, Pottawatomie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001490.epw site_zip_code=66547 site_time_zone_utc_offset=-6 +County "KS, Pratt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001510.epw site_zip_code=67124 site_time_zone_utc_offset=-6 +County "KS, Rawlins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001530.epw site_zip_code=67730 site_time_zone_utc_offset=-6 +County "KS, Reno County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001550.epw site_zip_code=67501 site_time_zone_utc_offset=-6 +County "KS, Republic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001570.epw site_zip_code=66935 site_time_zone_utc_offset=-6 +County "KS, Rice County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001590.epw site_zip_code=67554 site_time_zone_utc_offset=-6 +County "KS, Riley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001610.epw site_zip_code=66502 site_time_zone_utc_offset=-6 +County "KS, Rooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001630.epw site_zip_code=67663 site_time_zone_utc_offset=-6 +County "KS, Rush County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001650.epw site_zip_code=67548 site_time_zone_utc_offset=-6 +County "KS, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001670.epw site_zip_code=67665 site_time_zone_utc_offset=-6 +County "KS, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001690.epw site_zip_code=67401 site_time_zone_utc_offset=-6 +County "KS, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001710.epw site_zip_code=67871 site_time_zone_utc_offset=-6 +County "KS, Sedgwick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001730.epw site_zip_code=67212 site_time_zone_utc_offset=-6 +County "KS, Seward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001750.epw site_zip_code=67901 site_time_zone_utc_offset=-6 +County "KS, Shawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001770.epw site_zip_code=66614 site_time_zone_utc_offset=-6 +County "KS, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001790.epw site_zip_code=67740 site_time_zone_utc_offset=-6 +County "KS, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001810.epw site_zip_code=67735 site_time_zone_utc_offset=-7 +County "KS, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001830.epw site_zip_code=66967 site_time_zone_utc_offset=-6 +County "KS, Stafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001850.epw site_zip_code=67576 site_time_zone_utc_offset=-6 +County "KS, Stanton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001870.epw site_zip_code=67855 site_time_zone_utc_offset=-6 +County "KS, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001890.epw site_zip_code=67951 site_time_zone_utc_offset=-6 +County "KS, Sumner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001910.epw site_zip_code=67152 site_time_zone_utc_offset=-6 +County "KS, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001930.epw site_zip_code=67701 site_time_zone_utc_offset=-6 +County "KS, Trego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001950.epw site_zip_code=67672 site_time_zone_utc_offset=-6 +County "KS, Wabaunsee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001970.epw site_zip_code=66401 site_time_zone_utc_offset=-6 +County "KS, Wallace County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001990.epw site_zip_code=67758 site_time_zone_utc_offset=-7 +County "KS, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002010.epw site_zip_code=66968 site_time_zone_utc_offset=-6 +County "KS, Wichita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002030.epw site_zip_code=67861 site_time_zone_utc_offset=-6 +County "KS, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002050.epw site_zip_code=66736 site_time_zone_utc_offset=-6 +County "KS, Woodson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002070.epw site_zip_code=66783 site_time_zone_utc_offset=-6 +County "KS, Wyandotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002090.epw site_zip_code=66102 site_time_zone_utc_offset=-6 +County "KY, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100010.epw site_zip_code=42728 site_time_zone_utc_offset=-6 +County "KY, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100030.epw site_zip_code=42164 site_time_zone_utc_offset=-6 +County "KY, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100050.epw site_zip_code=40342 site_time_zone_utc_offset=-5 +County "KY, Ballard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100070.epw site_zip_code=42053 site_time_zone_utc_offset=-6 +County "KY, Barren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100090.epw site_zip_code=42141 site_time_zone_utc_offset=-6 +County "KY, Bath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100110.epw site_zip_code=40360 site_time_zone_utc_offset=-5 +County "KY, Bell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100130.epw site_zip_code=40965 site_time_zone_utc_offset=-5 +County "KY, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100150.epw site_zip_code=41042 site_time_zone_utc_offset=-5 +County "KY, Bourbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100170.epw site_zip_code=40361 site_time_zone_utc_offset=-5 +County "KY, Boyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100190.epw site_zip_code=41102 site_time_zone_utc_offset=-5 +County "KY, Boyle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100210.epw site_zip_code=40422 site_time_zone_utc_offset=-5 +County "KY, Bracken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100230.epw site_zip_code=41004 site_time_zone_utc_offset=-5 +County "KY, Breathitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100250.epw site_zip_code=41339 site_time_zone_utc_offset=-5 +County "KY, Breckinridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100270.epw site_zip_code=40143 site_time_zone_utc_offset=-6 +County "KY, Bullitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100290.epw site_zip_code=40165 site_time_zone_utc_offset=-5 +County "KY, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100310.epw site_zip_code=42261 site_time_zone_utc_offset=-6 +County "KY, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100330.epw site_zip_code=42445 site_time_zone_utc_offset=-6 +County "KY, Calloway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100350.epw site_zip_code=42071 site_time_zone_utc_offset=-6 +County "KY, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100370.epw site_zip_code=41071 site_time_zone_utc_offset=-5 +County "KY, Carlisle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100390.epw site_zip_code=42023 site_time_zone_utc_offset=-6 +County "KY, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100410.epw site_zip_code=41008 site_time_zone_utc_offset=-5 +County "KY, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100430.epw site_zip_code=41143 site_time_zone_utc_offset=-5 +County "KY, Casey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100450.epw site_zip_code=42539 site_time_zone_utc_offset=-5 +County "KY, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100470.epw site_zip_code=42240 site_time_zone_utc_offset=-6 +County "KY, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100490.epw site_zip_code=40391 site_time_zone_utc_offset=-5 +County "KY, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100510.epw site_zip_code=40962 site_time_zone_utc_offset=-5 +County "KY, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100530.epw site_zip_code=42602 site_time_zone_utc_offset=-6 +County "KY, Crittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100550.epw site_zip_code=42064 site_time_zone_utc_offset=-6 +County "KY, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100570.epw site_zip_code=42717 site_time_zone_utc_offset=-6 +County "KY, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100590.epw site_zip_code=42301 site_time_zone_utc_offset=-6 +County "KY, Edmonson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100610.epw site_zip_code=42210 site_time_zone_utc_offset=-6 +County "KY, Elliott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100630.epw site_zip_code=41171 site_time_zone_utc_offset=-5 +County "KY, Estill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100650.epw site_zip_code=40336 site_time_zone_utc_offset=-5 +County "KY, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100670.epw site_zip_code=40509 site_time_zone_utc_offset=-5 +County "KY, Fleming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100690.epw site_zip_code=41041 site_time_zone_utc_offset=-5 +County "KY, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100710.epw site_zip_code=41653 site_time_zone_utc_offset=-5 +County "KY, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100730.epw site_zip_code=40601 site_time_zone_utc_offset=-5 +County "KY, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100750.epw site_zip_code=42041 site_time_zone_utc_offset=-6 +County "KY, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100770.epw site_zip_code=41095 site_time_zone_utc_offset=-5 +County "KY, Garrard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100790.epw site_zip_code=40444 site_time_zone_utc_offset=-5 +County "KY, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100810.epw site_zip_code=41035 site_time_zone_utc_offset=-5 +County "KY, Graves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100830.epw site_zip_code=42066 site_time_zone_utc_offset=-6 +County "KY, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100850.epw site_zip_code=42754 site_time_zone_utc_offset=-6 +County "KY, Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100870.epw site_zip_code=42743 site_time_zone_utc_offset=-6 +County "KY, Greenup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100890.epw site_zip_code=41144 site_time_zone_utc_offset=-5 +County "KY, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100910.epw site_zip_code=42348 site_time_zone_utc_offset=-6 +County "KY, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100930.epw site_zip_code=42701 site_time_zone_utc_offset=-5 +County "KY, Harlan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100950.epw site_zip_code=40831 site_time_zone_utc_offset=-5 +County "KY, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100970.epw site_zip_code=41031 site_time_zone_utc_offset=-5 +County "KY, Hart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100990.epw site_zip_code=42765 site_time_zone_utc_offset=-6 +County "KY, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101010.epw site_zip_code=42420 site_time_zone_utc_offset=-6 +County "KY, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101030.epw site_zip_code=40019 site_time_zone_utc_offset=-5 +County "KY, Hickman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101050.epw site_zip_code=42031 site_time_zone_utc_offset=-6 +County "KY, Hopkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101070.epw site_zip_code=42431 site_time_zone_utc_offset=-6 +County "KY, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101090.epw site_zip_code=40447 site_time_zone_utc_offset=-5 +County "KY, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101110.epw site_zip_code=40214 site_time_zone_utc_offset=-5 +County "KY, Jessamine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101130.epw site_zip_code=40356 site_time_zone_utc_offset=-5 +County "KY, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101150.epw site_zip_code=41240 site_time_zone_utc_offset=-5 +County "KY, Kenton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101170.epw site_zip_code=41017 site_time_zone_utc_offset=-5 +County "KY, Knott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101190.epw site_zip_code=41822 site_time_zone_utc_offset=-5 +County "KY, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101210.epw site_zip_code=40906 site_time_zone_utc_offset=-5 +County "KY, Larue County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101230.epw site_zip_code=42748 site_time_zone_utc_offset=-5 +County "KY, Laurel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101250.epw site_zip_code=40741 site_time_zone_utc_offset=-5 +County "KY, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101270.epw site_zip_code=41230 site_time_zone_utc_offset=-5 +County "KY, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101290.epw site_zip_code=41311 site_time_zone_utc_offset=-5 +County "KY, Leslie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101310.epw site_zip_code=41749 site_time_zone_utc_offset=-5 +County "KY, Letcher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101330.epw site_zip_code=41858 site_time_zone_utc_offset=-5 +County "KY, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101350.epw site_zip_code=41179 site_time_zone_utc_offset=-5 +County "KY, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101370.epw site_zip_code=40484 site_time_zone_utc_offset=-5 +County "KY, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101390.epw site_zip_code=42045 site_time_zone_utc_offset=-6 +County "KY, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101410.epw site_zip_code=42276 site_time_zone_utc_offset=-6 +County "KY, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101430.epw site_zip_code=42038 site_time_zone_utc_offset=-6 +County "KY, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101510.epw site_zip_code=40475 site_time_zone_utc_offset=-5 +County "KY, Magoffin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101530.epw site_zip_code=41465 site_time_zone_utc_offset=-5 +County "KY, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101550.epw site_zip_code=40033 site_time_zone_utc_offset=-5 +County "KY, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101570.epw site_zip_code=42025 site_time_zone_utc_offset=-6 +County "KY, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101590.epw site_zip_code=41224 site_time_zone_utc_offset=-5 +County "KY, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101610.epw site_zip_code=41056 site_time_zone_utc_offset=-5 +County "KY, McCracken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101450.epw site_zip_code=42001 site_time_zone_utc_offset=-6 +County "KY, McCreary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101470.epw site_zip_code=42653 site_time_zone_utc_offset=-5 +County "KY, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101490.epw site_zip_code=42327 site_time_zone_utc_offset=-6 +County "KY, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101630.epw site_zip_code=40108 site_time_zone_utc_offset=-5 +County "KY, Menifee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101650.epw site_zip_code=40322 site_time_zone_utc_offset=-5 +County "KY, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101670.epw site_zip_code=40330 site_time_zone_utc_offset=-5 +County "KY, Metcalfe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101690.epw site_zip_code=42129 site_time_zone_utc_offset=-6 +County "KY, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101710.epw site_zip_code=42167 site_time_zone_utc_offset=-6 +County "KY, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101730.epw site_zip_code=40353 site_time_zone_utc_offset=-5 +County "KY, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101750.epw site_zip_code=41472 site_time_zone_utc_offset=-5 +County "KY, Muhlenberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101770.epw site_zip_code=42345 site_time_zone_utc_offset=-6 +County "KY, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101790.epw site_zip_code=40004 site_time_zone_utc_offset=-5 +County "KY, Nicholas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101810.epw site_zip_code=40311 site_time_zone_utc_offset=-5 +County "KY, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101830.epw site_zip_code=42320 site_time_zone_utc_offset=-6 +County "KY, Oldham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101850.epw site_zip_code=40014 site_time_zone_utc_offset=-5 +County "KY, Owen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101870.epw site_zip_code=40359 site_time_zone_utc_offset=-5 +County "KY, Owsley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101890.epw site_zip_code=41314 site_time_zone_utc_offset=-5 +County "KY, Pendleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101910.epw site_zip_code=41040 site_time_zone_utc_offset=-5 +County "KY, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101930.epw site_zip_code=41701 site_time_zone_utc_offset=-5 +County "KY, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101950.epw site_zip_code=41501 site_time_zone_utc_offset=-5 +County "KY, Powell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101970.epw site_zip_code=40380 site_time_zone_utc_offset=-5 +County "KY, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101990.epw site_zip_code=42503 site_time_zone_utc_offset=-5 +County "KY, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102010.epw site_zip_code=41064 site_time_zone_utc_offset=-5 +County "KY, Rockcastle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102030.epw site_zip_code=40456 site_time_zone_utc_offset=-5 +County "KY, Rowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102050.epw site_zip_code=40351 site_time_zone_utc_offset=-5 +County "KY, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102070.epw site_zip_code=42642 site_time_zone_utc_offset=-6 +County "KY, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102090.epw site_zip_code=40324 site_time_zone_utc_offset=-5 +County "KY, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102110.epw site_zip_code=40065 site_time_zone_utc_offset=-5 +County "KY, Simpson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102130.epw site_zip_code=42134 site_time_zone_utc_offset=-6 +County "KY, Spencer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102150.epw site_zip_code=40071 site_time_zone_utc_offset=-5 +County "KY, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102170.epw site_zip_code=42718 site_time_zone_utc_offset=-5 +County "KY, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102190.epw site_zip_code=42220 site_time_zone_utc_offset=-6 +County "KY, Trigg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102210.epw site_zip_code=42211 site_time_zone_utc_offset=-6 +County "KY, Trimble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102230.epw site_zip_code=40006 site_time_zone_utc_offset=-5 +County "KY, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102250.epw site_zip_code=42437 site_time_zone_utc_offset=-6 +County "KY, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102270.epw site_zip_code=42101 site_time_zone_utc_offset=-6 +County "KY, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102290.epw site_zip_code=40069 site_time_zone_utc_offset=-5 +County "KY, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102310.epw site_zip_code=42633 site_time_zone_utc_offset=-5 +County "KY, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102330.epw site_zip_code=42450 site_time_zone_utc_offset=-6 +County "KY, Whitley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102350.epw site_zip_code=40769 site_time_zone_utc_offset=-5 +County "KY, Wolfe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102370.epw site_zip_code=41301 site_time_zone_utc_offset=-5 +County "KY, Woodford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102390.epw site_zip_code=40383 site_time_zone_utc_offset=-5 +County "LA, Acadia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200010.epw site_zip_code=70526 site_time_zone_utc_offset=-6 +County "LA, Allen Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200030.epw site_zip_code=71463 site_time_zone_utc_offset=-6 +County "LA, Ascension Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200050.epw site_zip_code=70737 site_time_zone_utc_offset=-6 +County "LA, Assumption Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200070.epw site_zip_code=70339 site_time_zone_utc_offset=-6 +County "LA, Avoyelles Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200090.epw site_zip_code=71351 site_time_zone_utc_offset=-6 +County "LA, Beauregard Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200110.epw site_zip_code=70634 site_time_zone_utc_offset=-6 +County "LA, Bienville Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200130.epw site_zip_code=71001 site_time_zone_utc_offset=-6 +County "LA, Bossier Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200150.epw site_zip_code=71111 site_time_zone_utc_offset=-6 +County "LA, Caddo Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200170.epw site_zip_code=71106 site_time_zone_utc_offset=-6 +County "LA, Calcasieu Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200190.epw site_zip_code=70605 site_time_zone_utc_offset=-6 +County "LA, Caldwell Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200210.epw site_zip_code=71418 site_time_zone_utc_offset=-6 +County "LA, Cameron Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200230.epw site_zip_code=70607 site_time_zone_utc_offset=-6 +County "LA, Catahoula Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200250.epw site_zip_code=71343 site_time_zone_utc_offset=-6 +County "LA, Claiborne Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200270.epw site_zip_code=71040 site_time_zone_utc_offset=-6 +County "LA, Concordia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200290.epw site_zip_code=71334 site_time_zone_utc_offset=-6 +County "LA, De Soto Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200310.epw site_zip_code=71052 site_time_zone_utc_offset=-6 +County "LA, East Baton Rouge Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200330.epw site_zip_code=70816 site_time_zone_utc_offset=-6 +County "LA, East Carroll Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200350.epw site_zip_code=71254 site_time_zone_utc_offset=-6 +County "LA, East Feliciana Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200370.epw site_zip_code=70722 site_time_zone_utc_offset=-6 +County "LA, Evangeline Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200390.epw site_zip_code=70586 site_time_zone_utc_offset=-6 +County "LA, Franklin Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200410.epw site_zip_code=71295 site_time_zone_utc_offset=-6 +County "LA, Grant Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200430.epw site_zip_code=71467 site_time_zone_utc_offset=-6 +County "LA, Iberia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200450.epw site_zip_code=70560 site_time_zone_utc_offset=-6 +County "LA, Iberville Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200470.epw site_zip_code=70764 site_time_zone_utc_offset=-6 +County "LA, Jackson Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200490.epw site_zip_code=71251 site_time_zone_utc_offset=-6 +County "LA, Jefferson Davis Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200530.epw site_zip_code=70546 site_time_zone_utc_offset=-6 +County "LA, Jefferson Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200510.epw site_zip_code=70072 site_time_zone_utc_offset=-6 +County "LA, La Salle Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200590.epw site_zip_code=71342 site_time_zone_utc_offset=-6 +County "LA, Lafayette Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200550.epw site_zip_code=70506 site_time_zone_utc_offset=-6 +County "LA, Lafourche Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200570.epw site_zip_code=70301 site_time_zone_utc_offset=-6 +County "LA, Lincoln Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200610.epw site_zip_code=71270 site_time_zone_utc_offset=-6 +County "LA, Livingston Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200630.epw site_zip_code=70726 site_time_zone_utc_offset=-6 +County "LA, Madison Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200650.epw site_zip_code=71282 site_time_zone_utc_offset=-6 +County "LA, Morehouse Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200670.epw site_zip_code=71220 site_time_zone_utc_offset=-6 +County "LA, Natchitoches Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200690.epw site_zip_code=71457 site_time_zone_utc_offset=-6 +County "LA, Orleans Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200710.epw site_zip_code=70119 site_time_zone_utc_offset=-6 +County "LA, Ouachita Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200730.epw site_zip_code=71203 site_time_zone_utc_offset=-6 +County "LA, Plaquemines Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200750.epw site_zip_code=70037 site_time_zone_utc_offset=-6 +County "LA, Pointe Coupee Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200770.epw site_zip_code=70760 site_time_zone_utc_offset=-6 +County "LA, Rapides Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200790.epw site_zip_code=71360 site_time_zone_utc_offset=-6 +County "LA, Red River Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200810.epw site_zip_code=71019 site_time_zone_utc_offset=-6 +County "LA, Richland Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200830.epw site_zip_code=71269 site_time_zone_utc_offset=-6 +County "LA, Sabine Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200850.epw site_zip_code=71449 site_time_zone_utc_offset=-6 +County "LA, St. Bernard Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200870.epw site_zip_code=70043 site_time_zone_utc_offset=-6 +County "LA, St. Charles Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200890.epw site_zip_code=70070 site_time_zone_utc_offset=-6 +County "LA, St. Helena Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200910.epw site_zip_code=70441 site_time_zone_utc_offset=-6 +County "LA, St. James Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200930.epw site_zip_code=70090 site_time_zone_utc_offset=-6 +County "LA, St. John the Baptist Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200950.epw site_zip_code=70068 site_time_zone_utc_offset=-6 +County "LA, St. Landry Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200970.epw site_zip_code=70570 site_time_zone_utc_offset=-6 +County "LA, St. Martin Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200990.epw site_zip_code=70517 site_time_zone_utc_offset=-6 +County "LA, St. Mary Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201010.epw site_zip_code=70380 site_time_zone_utc_offset=-6 +County "LA, St. Tammany Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201030.epw site_zip_code=70433 site_time_zone_utc_offset=-6 +County "LA, Tangipahoa Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201050.epw site_zip_code=70454 site_time_zone_utc_offset=-6 +County "LA, Tensas Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201070.epw site_zip_code=71366 site_time_zone_utc_offset=-6 +County "LA, Terrebonne Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201090.epw site_zip_code=70360 site_time_zone_utc_offset=-6 +County "LA, Union Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201110.epw site_zip_code=71241 site_time_zone_utc_offset=-6 +County "LA, Vermilion Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201130.epw site_zip_code=70510 site_time_zone_utc_offset=-6 +County "LA, Vernon Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201150.epw site_zip_code=71446 site_time_zone_utc_offset=-6 +County "LA, Washington Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201170.epw site_zip_code=70427 site_time_zone_utc_offset=-6 +County "LA, Webster Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201190.epw site_zip_code=71055 site_time_zone_utc_offset=-6 +County "LA, West Baton Rouge Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201210.epw site_zip_code=70767 site_time_zone_utc_offset=-6 +County "LA, West Carroll Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201230.epw site_zip_code=71263 site_time_zone_utc_offset=-6 +County "LA, West Feliciana Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201250.epw site_zip_code=70775 site_time_zone_utc_offset=-6 +County "LA, Winn Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201270.epw site_zip_code=71483 site_time_zone_utc_offset=-6 +County "MA, Barnstable County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500010.epw site_zip_code=02536 site_time_zone_utc_offset=-5 +County "MA, Berkshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500030.epw site_zip_code=01201 site_time_zone_utc_offset=-5 +County "MA, Bristol County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500050.epw site_zip_code=02780 site_time_zone_utc_offset=-5 +County "MA, Dukes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500070.epw site_zip_code=02568 site_time_zone_utc_offset=-5 +County "MA, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500090.epw site_zip_code=01960 site_time_zone_utc_offset=-5 +County "MA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500110.epw site_zip_code=01301 site_time_zone_utc_offset=-5 +County "MA, Hampden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500130.epw site_zip_code=01085 site_time_zone_utc_offset=-5 +County "MA, Hampshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500150.epw site_zip_code=01002 site_time_zone_utc_offset=-5 +County "MA, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500170.epw site_zip_code=02148 site_time_zone_utc_offset=-5 +County "MA, Nantucket County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500190.epw site_zip_code=02554 site_time_zone_utc_offset=-5 +County "MA, Norfolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500210.epw site_zip_code=02169 site_time_zone_utc_offset=-5 +County "MA, Plymouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500230.epw site_zip_code=02360 site_time_zone_utc_offset=-5 +County "MA, Suffolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500250.epw site_zip_code=02151 site_time_zone_utc_offset=-5 +County "MA, Worcester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500270.epw site_zip_code=01453 site_time_zone_utc_offset=-5 +County "MD, Allegany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400010.epw site_zip_code=21502 site_time_zone_utc_offset=-5 +County "MD, Anne Arundel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400030.epw site_zip_code=21122 site_time_zone_utc_offset=-5 +County "MD, Baltimore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400050.epw site_zip_code=21117 site_time_zone_utc_offset=-5 +County "MD, Baltimore city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2405100.epw site_zip_code=21215 site_time_zone_utc_offset=-5 +County "MD, Calvert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400090.epw site_zip_code=20657 site_time_zone_utc_offset=-5 +County "MD, Caroline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400110.epw site_zip_code=21629 site_time_zone_utc_offset=-5 +County "MD, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400130.epw site_zip_code=21157 site_time_zone_utc_offset=-5 +County "MD, Cecil County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400150.epw site_zip_code=21921 site_time_zone_utc_offset=-5 +County "MD, Charles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400170.epw site_zip_code=20603 site_time_zone_utc_offset=-5 +County "MD, Dorchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400190.epw site_zip_code=21613 site_time_zone_utc_offset=-5 +County "MD, Frederick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400210.epw site_zip_code=21702 site_time_zone_utc_offset=-5 +County "MD, Garrett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400230.epw site_zip_code=21550 site_time_zone_utc_offset=-5 +County "MD, Harford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400250.epw site_zip_code=21014 site_time_zone_utc_offset=-5 +County "MD, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400270.epw site_zip_code=21044 site_time_zone_utc_offset=-5 +County "MD, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400290.epw site_zip_code=21620 site_time_zone_utc_offset=-5 +County "MD, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400310.epw site_zip_code=20906 site_time_zone_utc_offset=-5 +County "MD, Prince George's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400330.epw site_zip_code=20774 site_time_zone_utc_offset=-5 +County "MD, Queen Anne's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400350.epw site_zip_code=21666 site_time_zone_utc_offset=-5 +County "MD, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400390.epw site_zip_code=21853 site_time_zone_utc_offset=-5 +County "MD, St. Mary's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400370.epw site_zip_code=20653 site_time_zone_utc_offset=-5 +County "MD, Talbot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400410.epw site_zip_code=21601 site_time_zone_utc_offset=-5 +County "MD, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400430.epw site_zip_code=21740 site_time_zone_utc_offset=-5 +County "MD, Wicomico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400450.epw site_zip_code=21804 site_time_zone_utc_offset=-5 +County "MD, Worcester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400470.epw site_zip_code=21842 site_time_zone_utc_offset=-5 +County "ME, Androscoggin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300010.epw site_zip_code=04240 site_time_zone_utc_offset=-5 +County "ME, Aroostook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300030.epw site_zip_code=04769 site_time_zone_utc_offset=-5 +County "ME, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300050.epw site_zip_code=04103 site_time_zone_utc_offset=-5 +County "ME, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300070.epw site_zip_code=04938 site_time_zone_utc_offset=-5 +County "ME, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300090.epw site_zip_code=04605 site_time_zone_utc_offset=-5 +County "ME, Kennebec County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300110.epw site_zip_code=04901 site_time_zone_utc_offset=-5 +County "ME, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300130.epw site_zip_code=04841 site_time_zone_utc_offset=-5 +County "ME, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300150.epw site_zip_code=04572 site_time_zone_utc_offset=-5 +County "ME, Oxford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300170.epw site_zip_code=04276 site_time_zone_utc_offset=-5 +County "ME, Penobscot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300190.epw site_zip_code=04401 site_time_zone_utc_offset=-5 +County "ME, Piscataquis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300210.epw site_zip_code=04426 site_time_zone_utc_offset=-5 +County "ME, Sagadahoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300230.epw site_zip_code=04530 site_time_zone_utc_offset=-5 +County "ME, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300250.epw site_zip_code=04976 site_time_zone_utc_offset=-5 +County "ME, Waldo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300270.epw site_zip_code=04915 site_time_zone_utc_offset=-5 +County "ME, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300290.epw site_zip_code=04654 site_time_zone_utc_offset=-5 +County "ME, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300310.epw site_zip_code=04005 site_time_zone_utc_offset=-5 +County "MI, Alcona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600010.epw site_zip_code=48740 site_time_zone_utc_offset=-5 +County "MI, Alger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600030.epw site_zip_code=49862 site_time_zone_utc_offset=-5 +County "MI, Allegan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600050.epw site_zip_code=49010 site_time_zone_utc_offset=-5 +County "MI, Alpena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600070.epw site_zip_code=49707 site_time_zone_utc_offset=-5 +County "MI, Antrim County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600090.epw site_zip_code=49615 site_time_zone_utc_offset=-5 +County "MI, Arenac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600110.epw site_zip_code=48658 site_time_zone_utc_offset=-5 +County "MI, Baraga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600130.epw site_zip_code=49946 site_time_zone_utc_offset=-5 +County "MI, Barry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600150.epw site_zip_code=49058 site_time_zone_utc_offset=-5 +County "MI, Bay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600170.epw site_zip_code=48706 site_time_zone_utc_offset=-5 +County "MI, Benzie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600190.epw site_zip_code=49635 site_time_zone_utc_offset=-5 +County "MI, Berrien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600210.epw site_zip_code=49022 site_time_zone_utc_offset=-5 +County "MI, Branch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600230.epw site_zip_code=49036 site_time_zone_utc_offset=-5 +County "MI, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600250.epw site_zip_code=49015 site_time_zone_utc_offset=-5 +County "MI, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600270.epw site_zip_code=49047 site_time_zone_utc_offset=-5 +County "MI, Charlevoix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600290.epw site_zip_code=49720 site_time_zone_utc_offset=-5 +County "MI, Cheboygan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600310.epw site_zip_code=49721 site_time_zone_utc_offset=-5 +County "MI, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600330.epw site_zip_code=49783 site_time_zone_utc_offset=-5 +County "MI, Clare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600350.epw site_zip_code=48625 site_time_zone_utc_offset=-5 +County "MI, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600370.epw site_zip_code=48820 site_time_zone_utc_offset=-5 +County "MI, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600390.epw site_zip_code=49738 site_time_zone_utc_offset=-5 +County "MI, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600410.epw site_zip_code=49829 site_time_zone_utc_offset=-5 +County "MI, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600430.epw site_zip_code=49801 site_time_zone_utc_offset=-6 +County "MI, Eaton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600450.epw site_zip_code=48917 site_time_zone_utc_offset=-5 +County "MI, Emmet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600470.epw site_zip_code=49770 site_time_zone_utc_offset=-5 +County "MI, Genesee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600490.epw site_zip_code=48439 site_time_zone_utc_offset=-5 +County "MI, Gladwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600510.epw site_zip_code=48624 site_time_zone_utc_offset=-5 +County "MI, Gogebic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600530.epw site_zip_code=49938 site_time_zone_utc_offset=-6 +County "MI, Grand Traverse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600550.epw site_zip_code=49686 site_time_zone_utc_offset=-5 +County "MI, Gratiot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600570.epw site_zip_code=48801 site_time_zone_utc_offset=-5 +County "MI, Hillsdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600590.epw site_zip_code=49242 site_time_zone_utc_offset=-5 +County "MI, Houghton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600610.epw site_zip_code=49931 site_time_zone_utc_offset=-5 +County "MI, Huron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600630.epw site_zip_code=48413 site_time_zone_utc_offset=-5 +County "MI, Ingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600650.epw site_zip_code=48823 site_time_zone_utc_offset=-5 +County "MI, Ionia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600670.epw site_zip_code=48846 site_time_zone_utc_offset=-5 +County "MI, Iosco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600690.epw site_zip_code=48750 site_time_zone_utc_offset=-5 +County "MI, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600710.epw site_zip_code=49935 site_time_zone_utc_offset=-6 +County "MI, Isabella County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600730.epw site_zip_code=48858 site_time_zone_utc_offset=-5 +County "MI, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600750.epw site_zip_code=49201 site_time_zone_utc_offset=-5 +County "MI, Kalamazoo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600770.epw site_zip_code=49009 site_time_zone_utc_offset=-5 +County "MI, Kalkaska County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600790.epw site_zip_code=49646 site_time_zone_utc_offset=-5 +County "MI, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600810.epw site_zip_code=49503 site_time_zone_utc_offset=-5 +County "MI, Keweenaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600830.epw site_zip_code=49950 site_time_zone_utc_offset=-5 +County "MI, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600850.epw site_zip_code=49304 site_time_zone_utc_offset=-5 +County "MI, Lapeer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600870.epw site_zip_code=48446 site_time_zone_utc_offset=-5 +County "MI, Leelanau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600890.epw site_zip_code=49684 site_time_zone_utc_offset=-5 +County "MI, Lenawee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600910.epw site_zip_code=49221 site_time_zone_utc_offset=-5 +County "MI, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600930.epw site_zip_code=48843 site_time_zone_utc_offset=-5 +County "MI, Luce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600950.epw site_zip_code=49868 site_time_zone_utc_offset=-5 +County "MI, Mackinac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600970.epw site_zip_code=49781 site_time_zone_utc_offset=-5 +County "MI, Macomb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600990.epw site_zip_code=48038 site_time_zone_utc_offset=-5 +County "MI, Manistee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601010.epw site_zip_code=49660 site_time_zone_utc_offset=-5 +County "MI, Marquette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601030.epw site_zip_code=49855 site_time_zone_utc_offset=-5 +County "MI, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601050.epw site_zip_code=49431 site_time_zone_utc_offset=-5 +County "MI, Mecosta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601070.epw site_zip_code=49307 site_time_zone_utc_offset=-5 +County "MI, Menominee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601090.epw site_zip_code=49858 site_time_zone_utc_offset=-6 +County "MI, Midland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601110.epw site_zip_code=48642 site_time_zone_utc_offset=-5 +County "MI, Missaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601130.epw site_zip_code=49651 site_time_zone_utc_offset=-5 +County "MI, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601150.epw site_zip_code=48162 site_time_zone_utc_offset=-5 +County "MI, Montcalm County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601170.epw site_zip_code=48838 site_time_zone_utc_offset=-5 +County "MI, Montmorency County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601190.epw site_zip_code=49709 site_time_zone_utc_offset=-5 +County "MI, Muskegon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601210.epw site_zip_code=49442 site_time_zone_utc_offset=-5 +County "MI, Newaygo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601230.epw site_zip_code=49337 site_time_zone_utc_offset=-5 +County "MI, Oakland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601250.epw site_zip_code=48307 site_time_zone_utc_offset=-5 +County "MI, Oceana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601270.epw site_zip_code=49420 site_time_zone_utc_offset=-5 +County "MI, Ogemaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601290.epw site_zip_code=48661 site_time_zone_utc_offset=-5 +County "MI, Ontonagon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601310.epw site_zip_code=49953 site_time_zone_utc_offset=-5 +County "MI, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601330.epw site_zip_code=49631 site_time_zone_utc_offset=-5 +County "MI, Oscoda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601350.epw site_zip_code=48647 site_time_zone_utc_offset=-5 +County "MI, Otsego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601370.epw site_zip_code=49735 site_time_zone_utc_offset=-5 +County "MI, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601390.epw site_zip_code=49424 site_time_zone_utc_offset=-5 +County "MI, Presque Isle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601410.epw site_zip_code=49779 site_time_zone_utc_offset=-5 +County "MI, Roscommon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601430.epw site_zip_code=48629 site_time_zone_utc_offset=-5 +County "MI, Saginaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601450.epw site_zip_code=48601 site_time_zone_utc_offset=-5 +County "MI, Sanilac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601510.epw site_zip_code=48450 site_time_zone_utc_offset=-5 +County "MI, Schoolcraft County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601530.epw site_zip_code=49854 site_time_zone_utc_offset=-5 +County "MI, Shiawassee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601550.epw site_zip_code=48867 site_time_zone_utc_offset=-5 +County "MI, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601470.epw site_zip_code=48060 site_time_zone_utc_offset=-5 +County "MI, St. Joseph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601490.epw site_zip_code=49091 site_time_zone_utc_offset=-5 +County "MI, Tuscola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601570.epw site_zip_code=48723 site_time_zone_utc_offset=-5 +County "MI, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601590.epw site_zip_code=49090 site_time_zone_utc_offset=-5 +County "MI, Washtenaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601610.epw site_zip_code=48197 site_time_zone_utc_offset=-5 +County "MI, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601630.epw site_zip_code=48180 site_time_zone_utc_offset=-5 +County "MI, Wexford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601650.epw site_zip_code=49601 site_time_zone_utc_offset=-5 +County "MN, Aitkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700010.epw site_zip_code=56431 site_time_zone_utc_offset=-6 +County "MN, Anoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700030.epw site_zip_code=55303 site_time_zone_utc_offset=-6 +County "MN, Becker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700050.epw site_zip_code=56501 site_time_zone_utc_offset=-6 +County "MN, Beltrami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700070.epw site_zip_code=56601 site_time_zone_utc_offset=-6 +County "MN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700090.epw site_zip_code=56379 site_time_zone_utc_offset=-6 +County "MN, Big Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700110.epw site_zip_code=56278 site_time_zone_utc_offset=-6 +County "MN, Blue Earth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700130.epw site_zip_code=56001 site_time_zone_utc_offset=-6 +County "MN, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700150.epw site_zip_code=56073 site_time_zone_utc_offset=-6 +County "MN, Carlton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700170.epw site_zip_code=55720 site_time_zone_utc_offset=-6 +County "MN, Carver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700190.epw site_zip_code=55318 site_time_zone_utc_offset=-6 +County "MN, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700210.epw site_zip_code=56474 site_time_zone_utc_offset=-6 +County "MN, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700230.epw site_zip_code=56265 site_time_zone_utc_offset=-6 +County "MN, Chisago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700250.epw site_zip_code=55056 site_time_zone_utc_offset=-6 +County "MN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700270.epw site_zip_code=56560 site_time_zone_utc_offset=-6 +County "MN, Clearwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700290.epw site_zip_code=56621 site_time_zone_utc_offset=-6 +County "MN, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700310.epw site_zip_code=55604 site_time_zone_utc_offset=-6 +County "MN, Cottonwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700330.epw site_zip_code=56101 site_time_zone_utc_offset=-6 +County "MN, Crow Wing County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700350.epw site_zip_code=56401 site_time_zone_utc_offset=-6 +County "MN, Dakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700370.epw site_zip_code=55124 site_time_zone_utc_offset=-6 +County "MN, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700390.epw site_zip_code=55944 site_time_zone_utc_offset=-6 +County "MN, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700410.epw site_zip_code=56308 site_time_zone_utc_offset=-6 +County "MN, Faribault County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700430.epw site_zip_code=56013 site_time_zone_utc_offset=-6 +County "MN, Fillmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700450.epw site_zip_code=55975 site_time_zone_utc_offset=-6 +County "MN, Freeborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700470.epw site_zip_code=56007 site_time_zone_utc_offset=-6 +County "MN, Goodhue County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700490.epw site_zip_code=55066 site_time_zone_utc_offset=-6 +County "MN, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700510.epw site_zip_code=56531 site_time_zone_utc_offset=-6 +County "MN, Hennepin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700530.epw site_zip_code=55408 site_time_zone_utc_offset=-6 +County "MN, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700550.epw site_zip_code=55947 site_time_zone_utc_offset=-6 +County "MN, Hubbard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700570.epw site_zip_code=56470 site_time_zone_utc_offset=-6 +County "MN, Isanti County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700590.epw site_zip_code=55008 site_time_zone_utc_offset=-6 +County "MN, Itasca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700610.epw site_zip_code=55744 site_time_zone_utc_offset=-6 +County "MN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700630.epw site_zip_code=56143 site_time_zone_utc_offset=-6 +County "MN, Kanabec County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700650.epw site_zip_code=55051 site_time_zone_utc_offset=-6 +County "MN, Kandiyohi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700670.epw site_zip_code=56201 site_time_zone_utc_offset=-6 +County "MN, Kittson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700690.epw site_zip_code=56728 site_time_zone_utc_offset=-6 +County "MN, Koochiching County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700710.epw site_zip_code=56649 site_time_zone_utc_offset=-6 +County "MN, Lac qui Parle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700730.epw site_zip_code=56256 site_time_zone_utc_offset=-6 +County "MN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700750.epw site_zip_code=55616 site_time_zone_utc_offset=-6 +County "MN, Lake of the Woods County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700770.epw site_zip_code=56623 site_time_zone_utc_offset=-6 +County "MN, Le Sueur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700790.epw site_zip_code=56058 site_time_zone_utc_offset=-6 +County "MN, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700810.epw site_zip_code=56178 site_time_zone_utc_offset=-6 +County "MN, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700830.epw site_zip_code=56258 site_time_zone_utc_offset=-6 +County "MN, Mahnomen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700870.epw site_zip_code=56557 site_time_zone_utc_offset=-6 +County "MN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700890.epw site_zip_code=56762 site_time_zone_utc_offset=-6 +County "MN, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700910.epw site_zip_code=56031 site_time_zone_utc_offset=-6 +County "MN, McLeod County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700850.epw site_zip_code=55350 site_time_zone_utc_offset=-6 +County "MN, Meeker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700930.epw site_zip_code=55355 site_time_zone_utc_offset=-6 +County "MN, Mille Lacs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700950.epw site_zip_code=56353 site_time_zone_utc_offset=-6 +County "MN, Morrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700970.epw site_zip_code=56345 site_time_zone_utc_offset=-6 +County "MN, Mower County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700990.epw site_zip_code=55912 site_time_zone_utc_offset=-6 +County "MN, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701010.epw site_zip_code=56172 site_time_zone_utc_offset=-6 +County "MN, Nicollet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701030.epw site_zip_code=56003 site_time_zone_utc_offset=-6 +County "MN, Nobles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701050.epw site_zip_code=56187 site_time_zone_utc_offset=-6 +County "MN, Norman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701070.epw site_zip_code=56510 site_time_zone_utc_offset=-6 +County "MN, Olmsted County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701090.epw site_zip_code=55901 site_time_zone_utc_offset=-6 +County "MN, Otter Tail County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701110.epw site_zip_code=56537 site_time_zone_utc_offset=-6 +County "MN, Pennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701130.epw site_zip_code=56701 site_time_zone_utc_offset=-6 +County "MN, Pine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701150.epw site_zip_code=55063 site_time_zone_utc_offset=-6 +County "MN, Pipestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701170.epw site_zip_code=56164 site_time_zone_utc_offset=-6 +County "MN, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701190.epw site_zip_code=56721 site_time_zone_utc_offset=-6 +County "MN, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701210.epw site_zip_code=56334 site_time_zone_utc_offset=-6 +County "MN, Ramsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701230.epw site_zip_code=55106 site_time_zone_utc_offset=-6 +County "MN, Red Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701250.epw site_zip_code=56750 site_time_zone_utc_offset=-6 +County "MN, Redwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701270.epw site_zip_code=56283 site_time_zone_utc_offset=-6 +County "MN, Renville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701290.epw site_zip_code=56277 site_time_zone_utc_offset=-6 +County "MN, Rice County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701310.epw site_zip_code=55021 site_time_zone_utc_offset=-6 +County "MN, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701330.epw site_zip_code=56156 site_time_zone_utc_offset=-6 +County "MN, Roseau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701350.epw site_zip_code=56751 site_time_zone_utc_offset=-6 +County "MN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701390.epw site_zip_code=55379 site_time_zone_utc_offset=-6 +County "MN, Sherburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701410.epw site_zip_code=55330 site_time_zone_utc_offset=-6 +County "MN, Sibley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701430.epw site_zip_code=55334 site_time_zone_utc_offset=-6 +County "MN, St. Louis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701370.epw site_zip_code=55811 site_time_zone_utc_offset=-6 +County "MN, Stearns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701450.epw site_zip_code=56301 site_time_zone_utc_offset=-6 +County "MN, Steele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701470.epw site_zip_code=55060 site_time_zone_utc_offset=-6 +County "MN, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701490.epw site_zip_code=56267 site_time_zone_utc_offset=-6 +County "MN, Swift County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701510.epw site_zip_code=56215 site_time_zone_utc_offset=-6 +County "MN, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701530.epw site_zip_code=56347 site_time_zone_utc_offset=-6 +County "MN, Traverse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701550.epw site_zip_code=56296 site_time_zone_utc_offset=-6 +County "MN, Wabasha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701570.epw site_zip_code=55041 site_time_zone_utc_offset=-6 +County "MN, Wadena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701590.epw site_zip_code=56482 site_time_zone_utc_offset=-6 +County "MN, Waseca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701610.epw site_zip_code=56093 site_time_zone_utc_offset=-6 +County "MN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701630.epw site_zip_code=55125 site_time_zone_utc_offset=-6 +County "MN, Watonwan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701650.epw site_zip_code=56081 site_time_zone_utc_offset=-6 +County "MN, Wilkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701670.epw site_zip_code=56520 site_time_zone_utc_offset=-6 +County "MN, Winona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701690.epw site_zip_code=55987 site_time_zone_utc_offset=-6 +County "MN, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701710.epw site_zip_code=55313 site_time_zone_utc_offset=-6 +County "MN, Yellow Medicine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701730.epw site_zip_code=56220 site_time_zone_utc_offset=-6 +County "MO, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900010.epw site_zip_code=63501 site_time_zone_utc_offset=-6 +County "MO, Andrew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900030.epw site_zip_code=64485 site_time_zone_utc_offset=-6 +County "MO, Atchison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900050.epw site_zip_code=64491 site_time_zone_utc_offset=-6 +County "MO, Audrain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900070.epw site_zip_code=65265 site_time_zone_utc_offset=-6 +County "MO, Barry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900090.epw site_zip_code=65625 site_time_zone_utc_offset=-6 +County "MO, Barton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900110.epw site_zip_code=64759 site_time_zone_utc_offset=-6 +County "MO, Bates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900130.epw site_zip_code=64730 site_time_zone_utc_offset=-6 +County "MO, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900150.epw site_zip_code=65355 site_time_zone_utc_offset=-6 +County "MO, Bollinger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900170.epw site_zip_code=63764 site_time_zone_utc_offset=-6 +County "MO, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900190.epw site_zip_code=65203 site_time_zone_utc_offset=-6 +County "MO, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900210.epw site_zip_code=64506 site_time_zone_utc_offset=-6 +County "MO, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900230.epw site_zip_code=63901 site_time_zone_utc_offset=-6 +County "MO, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900250.epw site_zip_code=64644 site_time_zone_utc_offset=-6 +County "MO, Callaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900270.epw site_zip_code=65251 site_time_zone_utc_offset=-6 +County "MO, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900290.epw site_zip_code=65020 site_time_zone_utc_offset=-6 +County "MO, Cape Girardeau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900310.epw site_zip_code=63701 site_time_zone_utc_offset=-6 +County "MO, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900330.epw site_zip_code=64633 site_time_zone_utc_offset=-6 +County "MO, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900350.epw site_zip_code=63965 site_time_zone_utc_offset=-6 +County "MO, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900370.epw site_zip_code=64012 site_time_zone_utc_offset=-6 +County "MO, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900390.epw site_zip_code=64744 site_time_zone_utc_offset=-6 +County "MO, Chariton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900410.epw site_zip_code=65281 site_time_zone_utc_offset=-6 +County "MO, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900430.epw site_zip_code=65714 site_time_zone_utc_offset=-6 +County "MO, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900450.epw site_zip_code=63445 site_time_zone_utc_offset=-6 +County "MO, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900470.epw site_zip_code=64118 site_time_zone_utc_offset=-6 +County "MO, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900490.epw site_zip_code=64429 site_time_zone_utc_offset=-6 +County "MO, Cole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900510.epw site_zip_code=65109 site_time_zone_utc_offset=-6 +County "MO, Cooper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900530.epw site_zip_code=65233 site_time_zone_utc_offset=-6 +County "MO, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900550.epw site_zip_code=65453 site_time_zone_utc_offset=-6 +County "MO, Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900570.epw site_zip_code=65661 site_time_zone_utc_offset=-6 +County "MO, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900590.epw site_zip_code=65622 site_time_zone_utc_offset=-6 +County "MO, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900610.epw site_zip_code=64640 site_time_zone_utc_offset=-6 +County "MO, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900630.epw site_zip_code=64429 site_time_zone_utc_offset=-6 +County "MO, Dent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900650.epw site_zip_code=65560 site_time_zone_utc_offset=-6 +County "MO, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900670.epw site_zip_code=65608 site_time_zone_utc_offset=-6 +County "MO, Dunklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900690.epw site_zip_code=63857 site_time_zone_utc_offset=-6 +County "MO, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900710.epw site_zip_code=63090 site_time_zone_utc_offset=-6 +County "MO, Gasconade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900730.epw site_zip_code=65066 site_time_zone_utc_offset=-6 +County "MO, Gentry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900750.epw site_zip_code=64402 site_time_zone_utc_offset=-6 +County "MO, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900770.epw site_zip_code=65807 site_time_zone_utc_offset=-6 +County "MO, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900790.epw site_zip_code=64683 site_time_zone_utc_offset=-6 +County "MO, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900810.epw site_zip_code=64424 site_time_zone_utc_offset=-6 +County "MO, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900830.epw site_zip_code=64735 site_time_zone_utc_offset=-6 +County "MO, Hickory County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900850.epw site_zip_code=65779 site_time_zone_utc_offset=-6 +County "MO, Holt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900870.epw site_zip_code=64470 site_time_zone_utc_offset=-6 +County "MO, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900890.epw site_zip_code=65248 site_time_zone_utc_offset=-6 +County "MO, Howell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900910.epw site_zip_code=65775 site_time_zone_utc_offset=-6 +County "MO, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900930.epw site_zip_code=63650 site_time_zone_utc_offset=-6 +County "MO, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900950.epw site_zip_code=64055 site_time_zone_utc_offset=-6 +County "MO, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900970.epw site_zip_code=64801 site_time_zone_utc_offset=-6 +County "MO, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900990.epw site_zip_code=63010 site_time_zone_utc_offset=-6 +County "MO, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901010.epw site_zip_code=64093 site_time_zone_utc_offset=-6 +County "MO, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901030.epw site_zip_code=63537 site_time_zone_utc_offset=-6 +County "MO, Laclede County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901050.epw site_zip_code=65536 site_time_zone_utc_offset=-6 +County "MO, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901070.epw site_zip_code=64076 site_time_zone_utc_offset=-6 +County "MO, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901090.epw site_zip_code=65605 site_time_zone_utc_offset=-6 +County "MO, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901110.epw site_zip_code=63435 site_time_zone_utc_offset=-6 +County "MO, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901130.epw site_zip_code=63379 site_time_zone_utc_offset=-6 +County "MO, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901150.epw site_zip_code=64628 site_time_zone_utc_offset=-6 +County "MO, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901170.epw site_zip_code=64601 site_time_zone_utc_offset=-6 +County "MO, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901210.epw site_zip_code=63552 site_time_zone_utc_offset=-6 +County "MO, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901230.epw site_zip_code=63645 site_time_zone_utc_offset=-6 +County "MO, Maries County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901250.epw site_zip_code=65582 site_time_zone_utc_offset=-6 +County "MO, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901270.epw site_zip_code=63401 site_time_zone_utc_offset=-6 +County "MO, McDonald County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901190.epw site_zip_code=64831 site_time_zone_utc_offset=-6 +County "MO, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901290.epw site_zip_code=64673 site_time_zone_utc_offset=-6 +County "MO, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901310.epw site_zip_code=65026 site_time_zone_utc_offset=-6 +County "MO, Mississippi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901330.epw site_zip_code=63845 site_time_zone_utc_offset=-6 +County "MO, Moniteau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901350.epw site_zip_code=65018 site_time_zone_utc_offset=-6 +County "MO, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901370.epw site_zip_code=65275 site_time_zone_utc_offset=-6 +County "MO, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901390.epw site_zip_code=63361 site_time_zone_utc_offset=-6 +County "MO, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901410.epw site_zip_code=65037 site_time_zone_utc_offset=-6 +County "MO, New Madrid County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901430.epw site_zip_code=63873 site_time_zone_utc_offset=-6 +County "MO, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901450.epw site_zip_code=64850 site_time_zone_utc_offset=-6 +County "MO, Nodaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901470.epw site_zip_code=64468 site_time_zone_utc_offset=-6 +County "MO, Oregon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901490.epw site_zip_code=65606 site_time_zone_utc_offset=-6 +County "MO, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901510.epw site_zip_code=65051 site_time_zone_utc_offset=-6 +County "MO, Ozark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901530.epw site_zip_code=65655 site_time_zone_utc_offset=-6 +County "MO, Pemiscot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901550.epw site_zip_code=63830 site_time_zone_utc_offset=-6 +County "MO, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901570.epw site_zip_code=63775 site_time_zone_utc_offset=-6 +County "MO, Pettis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901590.epw site_zip_code=65301 site_time_zone_utc_offset=-6 +County "MO, Phelps County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901610.epw site_zip_code=65401 site_time_zone_utc_offset=-6 +County "MO, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901630.epw site_zip_code=63334 site_time_zone_utc_offset=-6 +County "MO, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901650.epw site_zip_code=64151 site_time_zone_utc_offset=-6 +County "MO, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901670.epw site_zip_code=65613 site_time_zone_utc_offset=-6 +County "MO, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901690.epw site_zip_code=65473 site_time_zone_utc_offset=-6 +County "MO, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901710.epw site_zip_code=63565 site_time_zone_utc_offset=-6 +County "MO, Ralls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901730.epw site_zip_code=63459 site_time_zone_utc_offset=-6 +County "MO, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901750.epw site_zip_code=65270 site_time_zone_utc_offset=-6 +County "MO, Ray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901770.epw site_zip_code=64085 site_time_zone_utc_offset=-6 +County "MO, Reynolds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901790.epw site_zip_code=63638 site_time_zone_utc_offset=-6 +County "MO, Ripley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901810.epw site_zip_code=63935 site_time_zone_utc_offset=-6 +County "MO, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901950.epw site_zip_code=65340 site_time_zone_utc_offset=-6 +County "MO, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901970.epw site_zip_code=63548 site_time_zone_utc_offset=-6 +County "MO, Scotland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901990.epw site_zip_code=63555 site_time_zone_utc_offset=-6 +County "MO, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902010.epw site_zip_code=63801 site_time_zone_utc_offset=-6 +County "MO, Shannon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902030.epw site_zip_code=65588 site_time_zone_utc_offset=-6 +County "MO, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902050.epw site_zip_code=63468 site_time_zone_utc_offset=-6 +County "MO, St. Charles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901830.epw site_zip_code=63376 site_time_zone_utc_offset=-6 +County "MO, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901850.epw site_zip_code=64776 site_time_zone_utc_offset=-6 +County "MO, St. Francois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901870.epw site_zip_code=63640 site_time_zone_utc_offset=-6 +County "MO, St. Louis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901890.epw site_zip_code=63021 site_time_zone_utc_offset=-6 +County "MO, St. Louis city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2905100.epw site_zip_code=63116 site_time_zone_utc_offset=-6 +County "MO, Ste. Genevieve County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901860.epw site_zip_code=63670 site_time_zone_utc_offset=-6 +County "MO, Stoddard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902070.epw site_zip_code=63841 site_time_zone_utc_offset=-6 +County "MO, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902090.epw site_zip_code=65737 site_time_zone_utc_offset=-6 +County "MO, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902110.epw site_zip_code=63556 site_time_zone_utc_offset=-6 +County "MO, Taney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902130.epw site_zip_code=65616 site_time_zone_utc_offset=-6 +County "MO, Texas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902150.epw site_zip_code=65483 site_time_zone_utc_offset=-6 +County "MO, Vernon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902170.epw site_zip_code=64772 site_time_zone_utc_offset=-6 +County "MO, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902190.epw site_zip_code=63383 site_time_zone_utc_offset=-6 +County "MO, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902210.epw site_zip_code=63664 site_time_zone_utc_offset=-6 +County "MO, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902230.epw site_zip_code=63957 site_time_zone_utc_offset=-6 +County "MO, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902250.epw site_zip_code=65706 site_time_zone_utc_offset=-6 +County "MO, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902270.epw site_zip_code=64456 site_time_zone_utc_offset=-6 +County "MO, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902290.epw site_zip_code=65711 site_time_zone_utc_offset=-6 +County "MS, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800010.epw site_zip_code=39120 site_time_zone_utc_offset=-6 +County "MS, Alcorn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800030.epw site_zip_code=38834 site_time_zone_utc_offset=-6 +County "MS, Amite County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800050.epw site_zip_code=39645 site_time_zone_utc_offset=-6 +County "MS, Attala County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800070.epw site_zip_code=39090 site_time_zone_utc_offset=-6 +County "MS, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800090.epw site_zip_code=38603 site_time_zone_utc_offset=-6 +County "MS, Bolivar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800110.epw site_zip_code=38732 site_time_zone_utc_offset=-6 +County "MS, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800130.epw site_zip_code=38916 site_time_zone_utc_offset=-6 +County "MS, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800150.epw site_zip_code=38917 site_time_zone_utc_offset=-6 +County "MS, Chickasaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800170.epw site_zip_code=38851 site_time_zone_utc_offset=-6 +County "MS, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800190.epw site_zip_code=39735 site_time_zone_utc_offset=-6 +County "MS, Claiborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800210.epw site_zip_code=39150 site_time_zone_utc_offset=-6 +County "MS, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800230.epw site_zip_code=39355 site_time_zone_utc_offset=-6 +County "MS, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800250.epw site_zip_code=39773 site_time_zone_utc_offset=-6 +County "MS, Coahoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800270.epw site_zip_code=38614 site_time_zone_utc_offset=-6 +County "MS, Copiah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800290.epw site_zip_code=39059 site_time_zone_utc_offset=-6 +County "MS, Covington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800310.epw site_zip_code=39428 site_time_zone_utc_offset=-6 +County "MS, DeSoto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800330.epw site_zip_code=38654 site_time_zone_utc_offset=-6 +County "MS, Forrest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800350.epw site_zip_code=39401 site_time_zone_utc_offset=-6 +County "MS, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800370.epw site_zip_code=39653 site_time_zone_utc_offset=-6 +County "MS, George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800390.epw site_zip_code=39452 site_time_zone_utc_offset=-6 +County "MS, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800410.epw site_zip_code=39451 site_time_zone_utc_offset=-6 +County "MS, Grenada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800430.epw site_zip_code=38901 site_time_zone_utc_offset=-6 +County "MS, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800450.epw site_zip_code=39520 site_time_zone_utc_offset=-6 +County "MS, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800470.epw site_zip_code=39503 site_time_zone_utc_offset=-6 +County "MS, Hinds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800490.epw site_zip_code=39209 site_time_zone_utc_offset=-6 +County "MS, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800510.epw site_zip_code=39095 site_time_zone_utc_offset=-6 +County "MS, Humphreys County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800530.epw site_zip_code=39038 site_time_zone_utc_offset=-6 +County "MS, Issaquena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800550.epw site_zip_code=39159 site_time_zone_utc_offset=-6 +County "MS, Itawamba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800570.epw site_zip_code=38843 site_time_zone_utc_offset=-6 +County "MS, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800590.epw site_zip_code=39564 site_time_zone_utc_offset=-6 +County "MS, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800610.epw site_zip_code=39422 site_time_zone_utc_offset=-6 +County "MS, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800630.epw site_zip_code=39069 site_time_zone_utc_offset=-6 +County "MS, Jefferson Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800650.epw site_zip_code=39474 site_time_zone_utc_offset=-6 +County "MS, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800670.epw site_zip_code=39443 site_time_zone_utc_offset=-6 +County "MS, Kemper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800690.epw site_zip_code=39328 site_time_zone_utc_offset=-6 +County "MS, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800710.epw site_zip_code=38655 site_time_zone_utc_offset=-6 +County "MS, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800730.epw site_zip_code=39402 site_time_zone_utc_offset=-6 +County "MS, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800750.epw site_zip_code=39301 site_time_zone_utc_offset=-6 +County "MS, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800770.epw site_zip_code=39654 site_time_zone_utc_offset=-6 +County "MS, Leake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800790.epw site_zip_code=39051 site_time_zone_utc_offset=-6 +County "MS, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800810.epw site_zip_code=38801 site_time_zone_utc_offset=-6 +County "MS, Leflore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800830.epw site_zip_code=38930 site_time_zone_utc_offset=-6 +County "MS, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800850.epw site_zip_code=39601 site_time_zone_utc_offset=-6 +County "MS, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800870.epw site_zip_code=39702 site_time_zone_utc_offset=-6 +County "MS, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800890.epw site_zip_code=39110 site_time_zone_utc_offset=-6 +County "MS, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800910.epw site_zip_code=39429 site_time_zone_utc_offset=-6 +County "MS, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800930.epw site_zip_code=38611 site_time_zone_utc_offset=-6 +County "MS, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800950.epw site_zip_code=38821 site_time_zone_utc_offset=-6 +County "MS, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800970.epw site_zip_code=38967 site_time_zone_utc_offset=-6 +County "MS, Neshoba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800990.epw site_zip_code=39350 site_time_zone_utc_offset=-6 +County "MS, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801010.epw site_zip_code=39345 site_time_zone_utc_offset=-6 +County "MS, Noxubee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801030.epw site_zip_code=39341 site_time_zone_utc_offset=-6 +County "MS, Oktibbeha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801050.epw site_zip_code=39759 site_time_zone_utc_offset=-6 +County "MS, Panola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801070.epw site_zip_code=38606 site_time_zone_utc_offset=-6 +County "MS, Pearl River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801090.epw site_zip_code=39466 site_time_zone_utc_offset=-6 +County "MS, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801110.epw site_zip_code=39476 site_time_zone_utc_offset=-6 +County "MS, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801130.epw site_zip_code=39648 site_time_zone_utc_offset=-6 +County "MS, Pontotoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801150.epw site_zip_code=38863 site_time_zone_utc_offset=-6 +County "MS, Prentiss County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801170.epw site_zip_code=38829 site_time_zone_utc_offset=-6 +County "MS, Quitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801190.epw site_zip_code=38646 site_time_zone_utc_offset=-6 +County "MS, Rankin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801210.epw site_zip_code=39047 site_time_zone_utc_offset=-6 +County "MS, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801230.epw site_zip_code=39074 site_time_zone_utc_offset=-6 +County "MS, Sharkey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801250.epw site_zip_code=39159 site_time_zone_utc_offset=-6 +County "MS, Simpson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801270.epw site_zip_code=39111 site_time_zone_utc_offset=-6 +County "MS, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801290.epw site_zip_code=39168 site_time_zone_utc_offset=-6 +County "MS, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801310.epw site_zip_code=39577 site_time_zone_utc_offset=-6 +County "MS, Sunflower County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801330.epw site_zip_code=38751 site_time_zone_utc_offset=-6 +County "MS, Tallahatchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801350.epw site_zip_code=38921 site_time_zone_utc_offset=-6 +County "MS, Tate County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801370.epw site_zip_code=38668 site_time_zone_utc_offset=-6 +County "MS, Tippah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801390.epw site_zip_code=38663 site_time_zone_utc_offset=-6 +County "MS, Tishomingo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801410.epw site_zip_code=38852 site_time_zone_utc_offset=-6 +County "MS, Tunica County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801430.epw site_zip_code=38676 site_time_zone_utc_offset=-6 +County "MS, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801450.epw site_zip_code=38652 site_time_zone_utc_offset=-6 +County "MS, Walthall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801470.epw site_zip_code=39667 site_time_zone_utc_offset=-6 +County "MS, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801490.epw site_zip_code=39180 site_time_zone_utc_offset=-6 +County "MS, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801510.epw site_zip_code=38701 site_time_zone_utc_offset=-6 +County "MS, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801530.epw site_zip_code=39367 site_time_zone_utc_offset=-6 +County "MS, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801550.epw site_zip_code=39744 site_time_zone_utc_offset=-6 +County "MS, Wilkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801570.epw site_zip_code=39669 site_time_zone_utc_offset=-6 +County "MS, Winston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801590.epw site_zip_code=39339 site_time_zone_utc_offset=-6 +County "MS, Yalobusha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801610.epw site_zip_code=38965 site_time_zone_utc_offset=-6 +County "MS, Yazoo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801630.epw site_zip_code=39194 site_time_zone_utc_offset=-6 +County "MT, Beaverhead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000010.epw site_zip_code=59725 site_time_zone_utc_offset=-7 +County "MT, Big Horn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000030.epw site_zip_code=59034 site_time_zone_utc_offset=-7 +County "MT, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000050.epw site_zip_code=59526 site_time_zone_utc_offset=-7 +County "MT, Broadwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000070.epw site_zip_code=59644 site_time_zone_utc_offset=-7 +County "MT, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000090.epw site_zip_code=59068 site_time_zone_utc_offset=-7 +County "MT, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000110.epw site_zip_code=59324 site_time_zone_utc_offset=-7 +County "MT, Cascade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000130.epw site_zip_code=59405 site_time_zone_utc_offset=-7 +County "MT, Chouteau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000150.epw site_zip_code=59442 site_time_zone_utc_offset=-7 +County "MT, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000170.epw site_zip_code=59301 site_time_zone_utc_offset=-7 +County "MT, Daniels County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000190.epw site_zip_code=59263 site_time_zone_utc_offset=-7 +County "MT, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000210.epw site_zip_code=59330 site_time_zone_utc_offset=-7 +County "MT, Deer Lodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000230.epw site_zip_code=59711 site_time_zone_utc_offset=-7 +County "MT, Fallon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000250.epw site_zip_code=59313 site_time_zone_utc_offset=-7 +County "MT, Fergus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000270.epw site_zip_code=59457 site_time_zone_utc_offset=-7 +County "MT, Flathead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000290.epw site_zip_code=59901 site_time_zone_utc_offset=-7 +County "MT, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000310.epw site_zip_code=59718 site_time_zone_utc_offset=-7 +County "MT, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000330.epw site_zip_code=59337 site_time_zone_utc_offset=-7 +County "MT, Glacier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000350.epw site_zip_code=59427 site_time_zone_utc_offset=-7 +County "MT, Golden Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000370.epw site_zip_code=59074 site_time_zone_utc_offset=-7 +County "MT, Granite County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000390.epw site_zip_code=59858 site_time_zone_utc_offset=-7 +County "MT, Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000410.epw site_zip_code=59501 site_time_zone_utc_offset=-7 +County "MT, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000430.epw site_zip_code=59634 site_time_zone_utc_offset=-7 +County "MT, Judith Basin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000450.epw site_zip_code=59479 site_time_zone_utc_offset=-7 +County "MT, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000470.epw site_zip_code=59860 site_time_zone_utc_offset=-7 +County "MT, Lewis and Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000490.epw site_zip_code=59601 site_time_zone_utc_offset=-7 +County "MT, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000510.epw site_zip_code=59522 site_time_zone_utc_offset=-7 +County "MT, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000530.epw site_zip_code=59923 site_time_zone_utc_offset=-7 +County "MT, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000570.epw site_zip_code=59729 site_time_zone_utc_offset=-7 +County "MT, McCone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000550.epw site_zip_code=59215 site_time_zone_utc_offset=-7 +County "MT, Meagher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000590.epw site_zip_code=59645 site_time_zone_utc_offset=-7 +County "MT, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000610.epw site_zip_code=59872 site_time_zone_utc_offset=-7 +County "MT, Missoula County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000630.epw site_zip_code=59801 site_time_zone_utc_offset=-7 +County "MT, Musselshell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000650.epw site_zip_code=59072 site_time_zone_utc_offset=-7 +County "MT, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000670.epw site_zip_code=59047 site_time_zone_utc_offset=-7 +County "MT, Petroleum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000690.epw site_zip_code=59087 site_time_zone_utc_offset=-7 +County "MT, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000710.epw site_zip_code=59538 site_time_zone_utc_offset=-7 +County "MT, Pondera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000730.epw site_zip_code=59425 site_time_zone_utc_offset=-7 +County "MT, Powder River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000750.epw site_zip_code=59317 site_time_zone_utc_offset=-7 +County "MT, Powell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000770.epw site_zip_code=59722 site_time_zone_utc_offset=-7 +County "MT, Prairie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000790.epw site_zip_code=59349 site_time_zone_utc_offset=-7 +County "MT, Ravalli County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000810.epw site_zip_code=59840 site_time_zone_utc_offset=-7 +County "MT, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000830.epw site_zip_code=59270 site_time_zone_utc_offset=-7 +County "MT, Roosevelt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000850.epw site_zip_code=59201 site_time_zone_utc_offset=-7 +County "MT, Rosebud County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000870.epw site_zip_code=59327 site_time_zone_utc_offset=-7 +County "MT, Sanders County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000890.epw site_zip_code=59859 site_time_zone_utc_offset=-7 +County "MT, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000910.epw site_zip_code=59254 site_time_zone_utc_offset=-7 +County "MT, Silver Bow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000930.epw site_zip_code=59701 site_time_zone_utc_offset=-7 +County "MT, Stillwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000950.epw site_zip_code=59019 site_time_zone_utc_offset=-7 +County "MT, Sweet Grass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000970.epw site_zip_code=59011 site_time_zone_utc_offset=-7 +County "MT, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000990.epw site_zip_code=59422 site_time_zone_utc_offset=-7 +County "MT, Toole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001010.epw site_zip_code=59474 site_time_zone_utc_offset=-7 +County "MT, Treasure County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001030.epw site_zip_code=59038 site_time_zone_utc_offset=-7 +County "MT, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001050.epw site_zip_code=59230 site_time_zone_utc_offset=-7 +County "MT, Wheatland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001070.epw site_zip_code=59036 site_time_zone_utc_offset=-7 +County "MT, Wibaux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001090.epw site_zip_code=59353 site_time_zone_utc_offset=-7 +County "MT, Yellowstone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001110.epw site_zip_code=59102 site_time_zone_utc_offset=-7 +County "NC, Alamance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700010.epw site_zip_code=27215 site_time_zone_utc_offset=-5 +County "NC, Alexander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700030.epw site_zip_code=28681 site_time_zone_utc_offset=-5 +County "NC, Alleghany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700050.epw site_zip_code=28675 site_time_zone_utc_offset=-5 +County "NC, Anson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700070.epw site_zip_code=28170 site_time_zone_utc_offset=-5 +County "NC, Ashe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700090.epw site_zip_code=28694 site_time_zone_utc_offset=-5 +County "NC, Avery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700110.epw site_zip_code=28657 site_time_zone_utc_offset=-5 +County "NC, Beaufort County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700130.epw site_zip_code=27889 site_time_zone_utc_offset=-5 +County "NC, Bertie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700150.epw site_zip_code=27983 site_time_zone_utc_offset=-5 +County "NC, Bladen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700170.epw site_zip_code=28337 site_time_zone_utc_offset=-5 +County "NC, Brunswick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700190.epw site_zip_code=28451 site_time_zone_utc_offset=-5 +County "NC, Buncombe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700210.epw site_zip_code=28806 site_time_zone_utc_offset=-5 +County "NC, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700230.epw site_zip_code=28655 site_time_zone_utc_offset=-5 +County "NC, Cabarrus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700250.epw site_zip_code=28027 site_time_zone_utc_offset=-5 +County "NC, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700270.epw site_zip_code=28645 site_time_zone_utc_offset=-5 +County "NC, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700290.epw site_zip_code=27921 site_time_zone_utc_offset=-5 +County "NC, Carteret County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700310.epw site_zip_code=28570 site_time_zone_utc_offset=-5 +County "NC, Caswell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700330.epw site_zip_code=27379 site_time_zone_utc_offset=-5 +County "NC, Catawba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700350.epw site_zip_code=28601 site_time_zone_utc_offset=-5 +County "NC, Chatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700370.epw site_zip_code=27312 site_time_zone_utc_offset=-5 +County "NC, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700390.epw site_zip_code=28906 site_time_zone_utc_offset=-5 +County "NC, Chowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700410.epw site_zip_code=27932 site_time_zone_utc_offset=-5 +County "NC, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700430.epw site_zip_code=28904 site_time_zone_utc_offset=-5 +County "NC, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700450.epw site_zip_code=28150 site_time_zone_utc_offset=-5 +County "NC, Columbus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700470.epw site_zip_code=28472 site_time_zone_utc_offset=-5 +County "NC, Craven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700490.epw site_zip_code=28562 site_time_zone_utc_offset=-5 +County "NC, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700510.epw site_zip_code=28314 site_time_zone_utc_offset=-5 +County "NC, Currituck County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700530.epw site_zip_code=27958 site_time_zone_utc_offset=-5 +County "NC, Dare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700550.epw site_zip_code=27949 site_time_zone_utc_offset=-5 +County "NC, Davidson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700570.epw site_zip_code=27360 site_time_zone_utc_offset=-5 +County "NC, Davie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700590.epw site_zip_code=27028 site_time_zone_utc_offset=-5 +County "NC, Duplin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700610.epw site_zip_code=28466 site_time_zone_utc_offset=-5 +County "NC, Durham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700630.epw site_zip_code=27703 site_time_zone_utc_offset=-5 +County "NC, Edgecombe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700650.epw site_zip_code=27801 site_time_zone_utc_offset=-5 +County "NC, Forsyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700670.epw site_zip_code=27284 site_time_zone_utc_offset=-5 +County "NC, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700690.epw site_zip_code=27549 site_time_zone_utc_offset=-5 +County "NC, Gaston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700710.epw site_zip_code=28054 site_time_zone_utc_offset=-5 +County "NC, Gates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700730.epw site_zip_code=27937 site_time_zone_utc_offset=-5 +County "NC, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700750.epw site_zip_code=28771 site_time_zone_utc_offset=-5 +County "NC, Granville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700770.epw site_zip_code=27565 site_time_zone_utc_offset=-5 +County "NC, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700790.epw site_zip_code=28580 site_time_zone_utc_offset=-5 +County "NC, Guilford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700810.epw site_zip_code=27406 site_time_zone_utc_offset=-5 +County "NC, Halifax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700830.epw site_zip_code=27870 site_time_zone_utc_offset=-5 +County "NC, Harnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700850.epw site_zip_code=27546 site_time_zone_utc_offset=-5 +County "NC, Haywood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700870.epw site_zip_code=28786 site_time_zone_utc_offset=-5 +County "NC, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700890.epw site_zip_code=28792 site_time_zone_utc_offset=-5 +County "NC, Hertford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700910.epw site_zip_code=27910 site_time_zone_utc_offset=-5 +County "NC, Hoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700930.epw site_zip_code=28376 site_time_zone_utc_offset=-5 +County "NC, Hyde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700950.epw site_zip_code=27824 site_time_zone_utc_offset=-5 +County "NC, Iredell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700970.epw site_zip_code=28117 site_time_zone_utc_offset=-5 +County "NC, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700990.epw site_zip_code=28779 site_time_zone_utc_offset=-5 +County "NC, Johnston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701010.epw site_zip_code=27520 site_time_zone_utc_offset=-5 +County "NC, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701030.epw site_zip_code=28585 site_time_zone_utc_offset=-5 +County "NC, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701050.epw site_zip_code=27330 site_time_zone_utc_offset=-5 +County "NC, Lenoir County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701070.epw site_zip_code=28501 site_time_zone_utc_offset=-5 +County "NC, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701090.epw site_zip_code=28092 site_time_zone_utc_offset=-5 +County "NC, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701130.epw site_zip_code=28734 site_time_zone_utc_offset=-5 +County "NC, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701150.epw site_zip_code=28753 site_time_zone_utc_offset=-5 +County "NC, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701170.epw site_zip_code=27892 site_time_zone_utc_offset=-5 +County "NC, McDowell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701110.epw site_zip_code=28752 site_time_zone_utc_offset=-5 +County "NC, Mecklenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701190.epw site_zip_code=28269 site_time_zone_utc_offset=-5 +County "NC, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701210.epw site_zip_code=28777 site_time_zone_utc_offset=-5 +County "NC, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701230.epw site_zip_code=27371 site_time_zone_utc_offset=-5 +County "NC, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701250.epw site_zip_code=28374 site_time_zone_utc_offset=-5 +County "NC, Nash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701270.epw site_zip_code=27804 site_time_zone_utc_offset=-5 +County "NC, New Hanover County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701290.epw site_zip_code=28412 site_time_zone_utc_offset=-5 +County "NC, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701310.epw site_zip_code=27831 site_time_zone_utc_offset=-5 +County "NC, Onslow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701330.epw site_zip_code=28540 site_time_zone_utc_offset=-5 +County "NC, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701350.epw site_zip_code=27514 site_time_zone_utc_offset=-5 +County "NC, Pamlico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701370.epw site_zip_code=28571 site_time_zone_utc_offset=-5 +County "NC, Pasquotank County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701390.epw site_zip_code=27909 site_time_zone_utc_offset=-5 +County "NC, Pender County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701410.epw site_zip_code=28443 site_time_zone_utc_offset=-5 +County "NC, Perquimans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701430.epw site_zip_code=27944 site_time_zone_utc_offset=-5 +County "NC, Person County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701450.epw site_zip_code=27574 site_time_zone_utc_offset=-5 +County "NC, Pitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701470.epw site_zip_code=27858 site_time_zone_utc_offset=-5 +County "NC, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701490.epw site_zip_code=28782 site_time_zone_utc_offset=-5 +County "NC, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701510.epw site_zip_code=27205 site_time_zone_utc_offset=-5 +County "NC, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701530.epw site_zip_code=28379 site_time_zone_utc_offset=-5 +County "NC, Robeson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701550.epw site_zip_code=28358 site_time_zone_utc_offset=-5 +County "NC, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701570.epw site_zip_code=27320 site_time_zone_utc_offset=-5 +County "NC, Rowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701590.epw site_zip_code=28146 site_time_zone_utc_offset=-5 +County "NC, Rutherford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701610.epw site_zip_code=28043 site_time_zone_utc_offset=-5 +County "NC, Sampson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701630.epw site_zip_code=28328 site_time_zone_utc_offset=-5 +County "NC, Scotland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701650.epw site_zip_code=28352 site_time_zone_utc_offset=-5 +County "NC, Stanly County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701670.epw site_zip_code=28001 site_time_zone_utc_offset=-5 +County "NC, Stokes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701690.epw site_zip_code=27021 site_time_zone_utc_offset=-5 +County "NC, Surry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701710.epw site_zip_code=27030 site_time_zone_utc_offset=-5 +County "NC, Swain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701730.epw site_zip_code=28713 site_time_zone_utc_offset=-5 +County "NC, Transylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701750.epw site_zip_code=28712 site_time_zone_utc_offset=-5 +County "NC, Tyrrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701770.epw site_zip_code=27925 site_time_zone_utc_offset=-5 +County "NC, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701790.epw site_zip_code=28173 site_time_zone_utc_offset=-5 +County "NC, Vance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701810.epw site_zip_code=27537 site_time_zone_utc_offset=-5 +County "NC, Wake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701830.epw site_zip_code=27610 site_time_zone_utc_offset=-5 +County "NC, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701850.epw site_zip_code=27589 site_time_zone_utc_offset=-5 +County "NC, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701870.epw site_zip_code=27962 site_time_zone_utc_offset=-5 +County "NC, Watauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701890.epw site_zip_code=28607 site_time_zone_utc_offset=-5 +County "NC, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701910.epw site_zip_code=27530 site_time_zone_utc_offset=-5 +County "NC, Wilkes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701930.epw site_zip_code=28659 site_time_zone_utc_offset=-5 +County "NC, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701950.epw site_zip_code=27893 site_time_zone_utc_offset=-5 +County "NC, Yadkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701970.epw site_zip_code=27055 site_time_zone_utc_offset=-5 +County "NC, Yancey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701990.epw site_zip_code=28714 site_time_zone_utc_offset=-5 +County "ND, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800010.epw site_zip_code=58639 site_time_zone_utc_offset=-7 +County "ND, Barnes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800030.epw site_zip_code=58072 site_time_zone_utc_offset=-6 +County "ND, Benson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800050.epw site_zip_code=58348 site_time_zone_utc_offset=-6 +County "ND, Billings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800070.epw site_zip_code=58622 site_time_zone_utc_offset=-7 +County "ND, Bottineau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800090.epw site_zip_code=58318 site_time_zone_utc_offset=-6 +County "ND, Bowman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800110.epw site_zip_code=58623 site_time_zone_utc_offset=-7 +County "ND, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800130.epw site_zip_code=58773 site_time_zone_utc_offset=-6 +County "ND, Burleigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800150.epw site_zip_code=58503 site_time_zone_utc_offset=-6 +County "ND, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800170.epw site_zip_code=58103 site_time_zone_utc_offset=-6 +County "ND, Cavalier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800190.epw site_zip_code=58249 site_time_zone_utc_offset=-6 +County "ND, Dickey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800210.epw site_zip_code=58474 site_time_zone_utc_offset=-6 +County "ND, Divide County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800230.epw site_zip_code=58730 site_time_zone_utc_offset=-6 +County "ND, Dunn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800250.epw site_zip_code=58640 site_time_zone_utc_offset=-7 +County "ND, Eddy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800270.epw site_zip_code=58356 site_time_zone_utc_offset=-6 +County "ND, Emmons County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800290.epw site_zip_code=58552 site_time_zone_utc_offset=-6 +County "ND, Foster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800310.epw site_zip_code=58421 site_time_zone_utc_offset=-6 +County "ND, Golden Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800330.epw site_zip_code=58621 site_time_zone_utc_offset=-7 +County "ND, Grand Forks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800350.epw site_zip_code=58201 site_time_zone_utc_offset=-6 +County "ND, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800370.epw site_zip_code=58533 site_time_zone_utc_offset=-7 +County "ND, Griggs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800390.epw site_zip_code=58425 site_time_zone_utc_offset=-6 +County "ND, Hettinger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800410.epw site_zip_code=58646 site_time_zone_utc_offset=-7 +County "ND, Kidder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800430.epw site_zip_code=58482 site_time_zone_utc_offset=-6 +County "ND, LaMoure County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800450.epw site_zip_code=58458 site_time_zone_utc_offset=-6 +County "ND, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800470.epw site_zip_code=58561 site_time_zone_utc_offset=-6 +County "ND, McHenry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800490.epw site_zip_code=58790 site_time_zone_utc_offset=-6 +County "ND, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800510.epw site_zip_code=58495 site_time_zone_utc_offset=-6 +County "ND, McKenzie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800530.epw site_zip_code=58854 site_time_zone_utc_offset=-7 +County "ND, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800550.epw site_zip_code=58540 site_time_zone_utc_offset=-6 +County "ND, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800570.epw site_zip_code=58545 site_time_zone_utc_offset=-6 +County "ND, Morton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800590.epw site_zip_code=58554 site_time_zone_utc_offset=-6 +County "ND, Mountrail County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800610.epw site_zip_code=58763 site_time_zone_utc_offset=-6 +County "ND, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800630.epw site_zip_code=58344 site_time_zone_utc_offset=-6 +County "ND, Oliver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800650.epw site_zip_code=58530 site_time_zone_utc_offset=-6 +County "ND, Pembina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800670.epw site_zip_code=58220 site_time_zone_utc_offset=-6 +County "ND, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800690.epw site_zip_code=58368 site_time_zone_utc_offset=-6 +County "ND, Ramsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800710.epw site_zip_code=58301 site_time_zone_utc_offset=-6 +County "ND, Ransom County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800730.epw site_zip_code=58054 site_time_zone_utc_offset=-6 +County "ND, Renville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800750.epw site_zip_code=58761 site_time_zone_utc_offset=-6 +County "ND, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800770.epw site_zip_code=58075 site_time_zone_utc_offset=-6 +County "ND, Rolette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800790.epw site_zip_code=58367 site_time_zone_utc_offset=-6 +County "ND, Sargent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800810.epw site_zip_code=58060 site_time_zone_utc_offset=-6 +County "ND, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800830.epw site_zip_code=58463 site_time_zone_utc_offset=-6 +County "ND, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800850.epw site_zip_code=58538 site_time_zone_utc_offset=-6 +County "ND, Slope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800870.epw site_zip_code=58620 site_time_zone_utc_offset=-7 +County "ND, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800890.epw site_zip_code=58601 site_time_zone_utc_offset=-7 +County "ND, Steele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800910.epw site_zip_code=58230 site_time_zone_utc_offset=-6 +County "ND, Stutsman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800930.epw site_zip_code=58401 site_time_zone_utc_offset=-6 +County "ND, Towner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800950.epw site_zip_code=58324 site_time_zone_utc_offset=-6 +County "ND, Traill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800970.epw site_zip_code=58257 site_time_zone_utc_offset=-6 +County "ND, Walsh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800990.epw site_zip_code=58237 site_time_zone_utc_offset=-6 +County "ND, Ward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801010.epw site_zip_code=58701 site_time_zone_utc_offset=-6 +County "ND, Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801030.epw site_zip_code=58341 site_time_zone_utc_offset=-6 +County "ND, Williams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801050.epw site_zip_code=58801 site_time_zone_utc_offset=-6 +County "NE, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100010.epw site_zip_code=68901 site_time_zone_utc_offset=-6 +County "NE, Antelope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100030.epw site_zip_code=68756 site_time_zone_utc_offset=-6 +County "NE, Arthur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100050.epw site_zip_code=69121 site_time_zone_utc_offset=-7 +County "NE, Banner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100070.epw site_zip_code=69345 site_time_zone_utc_offset=-7 +County "NE, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100090.epw site_zip_code=68833 site_time_zone_utc_offset=-6 +County "NE, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100110.epw site_zip_code=68620 site_time_zone_utc_offset=-6 +County "NE, Box Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100130.epw site_zip_code=69301 site_time_zone_utc_offset=-7 +County "NE, Boyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100150.epw site_zip_code=68777 site_time_zone_utc_offset=-6 +County "NE, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100170.epw site_zip_code=69210 site_time_zone_utc_offset=-6 +County "NE, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100190.epw site_zip_code=68845 site_time_zone_utc_offset=-6 +County "NE, Burt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100210.epw site_zip_code=68061 site_time_zone_utc_offset=-6 +County "NE, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100230.epw site_zip_code=68632 site_time_zone_utc_offset=-6 +County "NE, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100250.epw site_zip_code=68048 site_time_zone_utc_offset=-6 +County "NE, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100270.epw site_zip_code=68739 site_time_zone_utc_offset=-6 +County "NE, Chase County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100290.epw site_zip_code=69033 site_time_zone_utc_offset=-7 +County "NE, Cherry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100310.epw site_zip_code=69201 site_time_zone_utc_offset=-6 +County "NE, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100330.epw site_zip_code=69162 site_time_zone_utc_offset=-7 +County "NE, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100350.epw site_zip_code=68979 site_time_zone_utc_offset=-6 +County "NE, Colfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100370.epw site_zip_code=68661 site_time_zone_utc_offset=-6 +County "NE, Cuming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100390.epw site_zip_code=68788 site_time_zone_utc_offset=-6 +County "NE, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100410.epw site_zip_code=68822 site_time_zone_utc_offset=-6 +County "NE, Dakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100430.epw site_zip_code=68776 site_time_zone_utc_offset=-6 +County "NE, Dawes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100450.epw site_zip_code=69337 site_time_zone_utc_offset=-7 +County "NE, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100470.epw site_zip_code=68850 site_time_zone_utc_offset=-6 +County "NE, Deuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100490.epw site_zip_code=69129 site_time_zone_utc_offset=-7 +County "NE, Dixon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100510.epw site_zip_code=68770 site_time_zone_utc_offset=-6 +County "NE, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100530.epw site_zip_code=68025 site_time_zone_utc_offset=-6 +County "NE, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100550.epw site_zip_code=68022 site_time_zone_utc_offset=-6 +County "NE, Dundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100570.epw site_zip_code=69021 site_time_zone_utc_offset=-7 +County "NE, Fillmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100590.epw site_zip_code=68361 site_time_zone_utc_offset=-6 +County "NE, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100610.epw site_zip_code=68939 site_time_zone_utc_offset=-6 +County "NE, Frontier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100630.epw site_zip_code=69025 site_time_zone_utc_offset=-6 +County "NE, Furnas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100650.epw site_zip_code=69022 site_time_zone_utc_offset=-6 +County "NE, Gage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100670.epw site_zip_code=68310 site_time_zone_utc_offset=-6 +County "NE, Garden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100690.epw site_zip_code=69154 site_time_zone_utc_offset=-7 +County "NE, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100710.epw site_zip_code=68823 site_time_zone_utc_offset=-6 +County "NE, Gosper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100730.epw site_zip_code=68937 site_time_zone_utc_offset=-6 +County "NE, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100750.epw site_zip_code=69350 site_time_zone_utc_offset=-7 +County "NE, Greeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100770.epw site_zip_code=68665 site_time_zone_utc_offset=-6 +County "NE, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100790.epw site_zip_code=68801 site_time_zone_utc_offset=-6 +County "NE, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100810.epw site_zip_code=68818 site_time_zone_utc_offset=-6 +County "NE, Harlan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100830.epw site_zip_code=68920 site_time_zone_utc_offset=-6 +County "NE, Hayes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100850.epw site_zip_code=69032 site_time_zone_utc_offset=-6 +County "NE, Hitchcock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100870.epw site_zip_code=69024 site_time_zone_utc_offset=-6 +County "NE, Holt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100890.epw site_zip_code=68763 site_time_zone_utc_offset=-6 +County "NE, Hooker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100910.epw site_zip_code=69152 site_time_zone_utc_offset=-7 +County "NE, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100930.epw site_zip_code=68873 site_time_zone_utc_offset=-6 +County "NE, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100950.epw site_zip_code=68352 site_time_zone_utc_offset=-6 +County "NE, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100970.epw site_zip_code=68450 site_time_zone_utc_offset=-6 +County "NE, Kearney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100990.epw site_zip_code=68959 site_time_zone_utc_offset=-6 +County "NE, Keith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101010.epw site_zip_code=69153 site_time_zone_utc_offset=-7 +County "NE, Keya Paha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101030.epw site_zip_code=68778 site_time_zone_utc_offset=-6 +County "NE, Kimball County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101050.epw site_zip_code=69145 site_time_zone_utc_offset=-7 +County "NE, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101070.epw site_zip_code=68718 site_time_zone_utc_offset=-6 +County "NE, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101090.epw site_zip_code=68516 site_time_zone_utc_offset=-6 +County "NE, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101110.epw site_zip_code=69101 site_time_zone_utc_offset=-6 +County "NE, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101130.epw site_zip_code=69163 site_time_zone_utc_offset=-6 +County "NE, Loup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101150.epw site_zip_code=68823 site_time_zone_utc_offset=-6 +County "NE, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101190.epw site_zip_code=68701 site_time_zone_utc_offset=-6 +County "NE, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101170.epw site_zip_code=69167 site_time_zone_utc_offset=-6 +County "NE, Merrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101210.epw site_zip_code=68826 site_time_zone_utc_offset=-6 +County "NE, Morrill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101230.epw site_zip_code=69336 site_time_zone_utc_offset=-7 +County "NE, Nance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101250.epw site_zip_code=68638 site_time_zone_utc_offset=-6 +County "NE, Nemaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101270.epw site_zip_code=68305 site_time_zone_utc_offset=-6 +County "NE, Nuckolls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101290.epw site_zip_code=68978 site_time_zone_utc_offset=-6 +County "NE, Otoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101310.epw site_zip_code=68410 site_time_zone_utc_offset=-6 +County "NE, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101330.epw site_zip_code=68420 site_time_zone_utc_offset=-6 +County "NE, Perkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101350.epw site_zip_code=69140 site_time_zone_utc_offset=-7 +County "NE, Phelps County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101370.epw site_zip_code=68949 site_time_zone_utc_offset=-6 +County "NE, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101390.epw site_zip_code=68767 site_time_zone_utc_offset=-6 +County "NE, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101410.epw site_zip_code=68601 site_time_zone_utc_offset=-6 +County "NE, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101430.epw site_zip_code=68666 site_time_zone_utc_offset=-6 +County "NE, Red Willow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101450.epw site_zip_code=69001 site_time_zone_utc_offset=-6 +County "NE, Richardson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101470.epw site_zip_code=68355 site_time_zone_utc_offset=-6 +County "NE, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101490.epw site_zip_code=68714 site_time_zone_utc_offset=-6 +County "NE, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101510.epw site_zip_code=68333 site_time_zone_utc_offset=-6 +County "NE, Sarpy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101530.epw site_zip_code=68046 site_time_zone_utc_offset=-6 +County "NE, Saunders County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101550.epw site_zip_code=68066 site_time_zone_utc_offset=-6 +County "NE, Scotts Bluff County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101570.epw site_zip_code=69361 site_time_zone_utc_offset=-7 +County "NE, Seward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101590.epw site_zip_code=68434 site_time_zone_utc_offset=-6 +County "NE, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101610.epw site_zip_code=69343 site_time_zone_utc_offset=-7 +County "NE, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101630.epw site_zip_code=68853 site_time_zone_utc_offset=-6 +County "NE, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101650.epw site_zip_code=69346 site_time_zone_utc_offset=-7 +County "NE, Stanton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101670.epw site_zip_code=68779 site_time_zone_utc_offset=-6 +County "NE, Thayer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101690.epw site_zip_code=68370 site_time_zone_utc_offset=-6 +County "NE, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101710.epw site_zip_code=69166 site_time_zone_utc_offset=-6 +County "NE, Thurston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101730.epw site_zip_code=68071 site_time_zone_utc_offset=-6 +County "NE, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101750.epw site_zip_code=68862 site_time_zone_utc_offset=-6 +County "NE, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101770.epw site_zip_code=68008 site_time_zone_utc_offset=-6 +County "NE, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101790.epw site_zip_code=68787 site_time_zone_utc_offset=-6 +County "NE, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101810.epw site_zip_code=68970 site_time_zone_utc_offset=-6 +County "NE, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101830.epw site_zip_code=68637 site_time_zone_utc_offset=-6 +County "NE, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101850.epw site_zip_code=68467 site_time_zone_utc_offset=-6 +County "NH, Belknap County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300010.epw site_zip_code=03246 site_time_zone_utc_offset=-5 +County "NH, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300030.epw site_zip_code=03894 site_time_zone_utc_offset=-5 +County "NH, Cheshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300050.epw site_zip_code=03431 site_time_zone_utc_offset=-5 +County "NH, Coos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300070.epw site_zip_code=03570 site_time_zone_utc_offset=-5 +County "NH, Grafton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300090.epw site_zip_code=03766 site_time_zone_utc_offset=-5 +County "NH, Hillsborough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300110.epw site_zip_code=03103 site_time_zone_utc_offset=-5 +County "NH, Merrimack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300130.epw site_zip_code=03301 site_time_zone_utc_offset=-5 +County "NH, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300150.epw site_zip_code=03038 site_time_zone_utc_offset=-5 +County "NH, Strafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300170.epw site_zip_code=03820 site_time_zone_utc_offset=-5 +County "NH, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300190.epw site_zip_code=03743 site_time_zone_utc_offset=-5 +County "NJ, Atlantic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400010.epw site_zip_code=08401 site_time_zone_utc_offset=-5 +County "NJ, Bergen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400030.epw site_zip_code=07410 site_time_zone_utc_offset=-5 +County "NJ, Burlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400050.epw site_zip_code=08054 site_time_zone_utc_offset=-5 +County "NJ, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400070.epw site_zip_code=08021 site_time_zone_utc_offset=-5 +County "NJ, Cape May County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400090.epw site_zip_code=08260 site_time_zone_utc_offset=-5 +County "NJ, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400110.epw site_zip_code=08332 site_time_zone_utc_offset=-5 +County "NJ, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400130.epw site_zip_code=07111 site_time_zone_utc_offset=-5 +County "NJ, Gloucester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400150.epw site_zip_code=08096 site_time_zone_utc_offset=-5 +County "NJ, Hudson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400170.epw site_zip_code=07302 site_time_zone_utc_offset=-5 +County "NJ, Hunterdon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400190.epw site_zip_code=08822 site_time_zone_utc_offset=-5 +County "NJ, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400210.epw site_zip_code=08618 site_time_zone_utc_offset=-5 +County "NJ, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400230.epw site_zip_code=08831 site_time_zone_utc_offset=-5 +County "NJ, Monmouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400250.epw site_zip_code=07728 site_time_zone_utc_offset=-5 +County "NJ, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400270.epw site_zip_code=07960 site_time_zone_utc_offset=-5 +County "NJ, Ocean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400290.epw site_zip_code=08701 site_time_zone_utc_offset=-5 +County "NJ, Passaic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400310.epw site_zip_code=07055 site_time_zone_utc_offset=-5 +County "NJ, Salem County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400330.epw site_zip_code=08069 site_time_zone_utc_offset=-5 +County "NJ, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400350.epw site_zip_code=08873 site_time_zone_utc_offset=-5 +County "NJ, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400370.epw site_zip_code=07860 site_time_zone_utc_offset=-5 +County "NJ, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400390.epw site_zip_code=07083 site_time_zone_utc_offset=-5 +County "NJ, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400410.epw site_zip_code=08865 site_time_zone_utc_offset=-5 +County "NM, Bernalillo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500010.epw site_zip_code=87111 site_time_zone_utc_offset=-7 +County "NM, Catron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500030.epw site_zip_code=87829 site_time_zone_utc_offset=-7 +County "NM, Chaves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500050.epw site_zip_code=88203 site_time_zone_utc_offset=-7 +County "NM, Cibola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500060.epw site_zip_code=87020 site_time_zone_utc_offset=-7 +County "NM, Colfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500070.epw site_zip_code=87740 site_time_zone_utc_offset=-7 +County "NM, Curry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500090.epw site_zip_code=88101 site_time_zone_utc_offset=-7 +County "NM, De Baca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500110.epw site_zip_code=88119 site_time_zone_utc_offset=-7 +County "NM, Dona Ana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500130.epw site_zip_code=88001 site_time_zone_utc_offset=-7 +County "NM, Eddy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500150.epw site_zip_code=88220 site_time_zone_utc_offset=-7 +County "NM, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500170.epw site_zip_code=88061 site_time_zone_utc_offset=-7 +County "NM, Guadalupe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500190.epw site_zip_code=88435 site_time_zone_utc_offset=-7 +County "NM, Harding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500210.epw site_zip_code=87743 site_time_zone_utc_offset=-7 +County "NM, Hidalgo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500230.epw site_zip_code=88045 site_time_zone_utc_offset=-7 +County "NM, Lea County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500250.epw site_zip_code=88240 site_time_zone_utc_offset=-7 +County "NM, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500270.epw site_zip_code=88355 site_time_zone_utc_offset=-7 +County "NM, Los Alamos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500280.epw site_zip_code=87544 site_time_zone_utc_offset=-7 +County "NM, Luna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500290.epw site_zip_code=88030 site_time_zone_utc_offset=-7 +County "NM, McKinley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500310.epw site_zip_code=87301 site_time_zone_utc_offset=-7 +County "NM, Mora County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500330.epw site_zip_code=87722 site_time_zone_utc_offset=-7 +County "NM, Otero County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500350.epw site_zip_code=88310 site_time_zone_utc_offset=-7 +County "NM, Quay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500370.epw site_zip_code=88401 site_time_zone_utc_offset=-7 +County "NM, Rio Arriba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500390.epw site_zip_code=87532 site_time_zone_utc_offset=-7 +County "NM, Roosevelt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500410.epw site_zip_code=88130 site_time_zone_utc_offset=-7 +County "NM, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500450.epw site_zip_code=87401 site_time_zone_utc_offset=-7 +County "NM, San Miguel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500470.epw site_zip_code=87701 site_time_zone_utc_offset=-7 +County "NM, Sandoval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500430.epw site_zip_code=87124 site_time_zone_utc_offset=-7 +County "NM, Santa Fe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500490.epw site_zip_code=87507 site_time_zone_utc_offset=-7 +County "NM, Sierra County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500510.epw site_zip_code=87901 site_time_zone_utc_offset=-7 +County "NM, Socorro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500530.epw site_zip_code=87801 site_time_zone_utc_offset=-7 +County "NM, Taos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500550.epw site_zip_code=87571 site_time_zone_utc_offset=-7 +County "NM, Torrance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500570.epw site_zip_code=87035 site_time_zone_utc_offset=-7 +County "NM, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500590.epw site_zip_code=88415 site_time_zone_utc_offset=-7 +County "NM, Valencia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500610.epw site_zip_code=87031 site_time_zone_utc_offset=-7 +County "NV, Carson City" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3205100.epw site_zip_code=89701 site_time_zone_utc_offset=-8 +County "NV, Churchill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200010.epw site_zip_code=89406 site_time_zone_utc_offset=-8 +County "NV, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200030.epw site_zip_code=89052 site_time_zone_utc_offset=-8 +County "NV, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200050.epw site_zip_code=89460 site_time_zone_utc_offset=-8 +County "NV, Elko County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200070.epw site_zip_code=89801 site_time_zone_utc_offset=-8 +County "NV, Esmeralda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200090.epw site_zip_code=89010 site_time_zone_utc_offset=-8 +County "NV, Eureka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200110.epw site_zip_code=89316 site_time_zone_utc_offset=-8 +County "NV, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200130.epw site_zip_code=89445 site_time_zone_utc_offset=-8 +County "NV, Lander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200150.epw site_zip_code=89820 site_time_zone_utc_offset=-8 +County "NV, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200170.epw site_zip_code=89017 site_time_zone_utc_offset=-8 +County "NV, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200190.epw site_zip_code=89408 site_time_zone_utc_offset=-8 +County "NV, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200210.epw site_zip_code=89415 site_time_zone_utc_offset=-8 +County "NV, Nye County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200230.epw site_zip_code=89048 site_time_zone_utc_offset=-8 +County "NV, Pershing County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200270.epw site_zip_code=89419 site_time_zone_utc_offset=-8 +County "NV, Storey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200290.epw site_zip_code=89521 site_time_zone_utc_offset=-8 +County "NV, Washoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200310.epw site_zip_code=89502 site_time_zone_utc_offset=-8 +County "NV, White Pine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200330.epw site_zip_code=89301 site_time_zone_utc_offset=-8 +County "NY, Albany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600010.epw site_zip_code=12203 site_time_zone_utc_offset=-5 +County "NY, Allegany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600030.epw site_zip_code=14895 site_time_zone_utc_offset=-5 +County "NY, Bronx County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600050.epw site_zip_code=10467 site_time_zone_utc_offset=-5 +County "NY, Broome County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600070.epw site_zip_code=13760 site_time_zone_utc_offset=-5 +County "NY, Cattaraugus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600090.epw site_zip_code=14760 site_time_zone_utc_offset=-5 +County "NY, Cayuga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600110.epw site_zip_code=13021 site_time_zone_utc_offset=-5 +County "NY, Chautauqua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600130.epw site_zip_code=14701 site_time_zone_utc_offset=-5 +County "NY, Chemung County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600150.epw site_zip_code=14845 site_time_zone_utc_offset=-5 +County "NY, Chenango County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600170.epw site_zip_code=13815 site_time_zone_utc_offset=-5 +County "NY, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600190.epw site_zip_code=12901 site_time_zone_utc_offset=-5 +County "NY, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600210.epw site_zip_code=12534 site_time_zone_utc_offset=-5 +County "NY, Cortland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600230.epw site_zip_code=13045 site_time_zone_utc_offset=-5 +County "NY, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600250.epw site_zip_code=13856 site_time_zone_utc_offset=-5 +County "NY, Dutchess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600270.epw site_zip_code=12601 site_time_zone_utc_offset=-5 +County "NY, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600290.epw site_zip_code=14221 site_time_zone_utc_offset=-5 +County "NY, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600310.epw site_zip_code=12946 site_time_zone_utc_offset=-5 +County "NY, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600330.epw site_zip_code=12953 site_time_zone_utc_offset=-5 +County "NY, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600350.epw site_zip_code=12078 site_time_zone_utc_offset=-5 +County "NY, Genesee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600370.epw site_zip_code=14020 site_time_zone_utc_offset=-5 +County "NY, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600390.epw site_zip_code=12414 site_time_zone_utc_offset=-5 +County "NY, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600410.epw site_zip_code=12842 site_time_zone_utc_offset=-5 +County "NY, Herkimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600430.epw site_zip_code=13357 site_time_zone_utc_offset=-5 +County "NY, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600450.epw site_zip_code=13601 site_time_zone_utc_offset=-5 +County "NY, Kings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600470.epw site_zip_code=11226 site_time_zone_utc_offset=-5 +County "NY, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600490.epw site_zip_code=13367 site_time_zone_utc_offset=-5 +County "NY, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600510.epw site_zip_code=14454 site_time_zone_utc_offset=-5 +County "NY, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600530.epw site_zip_code=13032 site_time_zone_utc_offset=-5 +County "NY, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600550.epw site_zip_code=14580 site_time_zone_utc_offset=-5 +County "NY, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600570.epw site_zip_code=12010 site_time_zone_utc_offset=-5 +County "NY, Nassau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600590.epw site_zip_code=11758 site_time_zone_utc_offset=-5 +County "NY, New York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600610.epw site_zip_code=10025 site_time_zone_utc_offset=-5 +County "NY, Niagara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600630.epw site_zip_code=14094 site_time_zone_utc_offset=-5 +County "NY, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600650.epw site_zip_code=13440 site_time_zone_utc_offset=-5 +County "NY, Onondaga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600670.epw site_zip_code=13027 site_time_zone_utc_offset=-5 +County "NY, Ontario County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600690.epw site_zip_code=14424 site_time_zone_utc_offset=-5 +County "NY, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600710.epw site_zip_code=12550 site_time_zone_utc_offset=-5 +County "NY, Orleans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600730.epw site_zip_code=14411 site_time_zone_utc_offset=-5 +County "NY, Oswego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600750.epw site_zip_code=13126 site_time_zone_utc_offset=-5 +County "NY, Otsego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600770.epw site_zip_code=13820 site_time_zone_utc_offset=-5 +County "NY, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600790.epw site_zip_code=10512 site_time_zone_utc_offset=-5 +County "NY, Queens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600810.epw site_zip_code=11375 site_time_zone_utc_offset=-5 +County "NY, Rensselaer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600830.epw site_zip_code=12180 site_time_zone_utc_offset=-5 +County "NY, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600850.epw site_zip_code=10314 site_time_zone_utc_offset=-5 +County "NY, Rockland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600870.epw site_zip_code=10977 site_time_zone_utc_offset=-5 +County "NY, Saratoga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600910.epw site_zip_code=12866 site_time_zone_utc_offset=-5 +County "NY, Schenectady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600930.epw site_zip_code=12306 site_time_zone_utc_offset=-5 +County "NY, Schoharie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600950.epw site_zip_code=12043 site_time_zone_utc_offset=-5 +County "NY, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600970.epw site_zip_code=14891 site_time_zone_utc_offset=-5 +County "NY, Seneca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600990.epw site_zip_code=13148 site_time_zone_utc_offset=-5 +County "NY, St. Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600890.epw site_zip_code=13676 site_time_zone_utc_offset=-5 +County "NY, Steuben County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601010.epw site_zip_code=14830 site_time_zone_utc_offset=-5 +County "NY, Suffolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601030.epw site_zip_code=11746 site_time_zone_utc_offset=-5 +County "NY, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601050.epw site_zip_code=12701 site_time_zone_utc_offset=-5 +County "NY, Tioga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601070.epw site_zip_code=13827 site_time_zone_utc_offset=-5 +County "NY, Tompkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601090.epw site_zip_code=14850 site_time_zone_utc_offset=-5 +County "NY, Ulster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601110.epw site_zip_code=12401 site_time_zone_utc_offset=-5 +County "NY, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601130.epw site_zip_code=12804 site_time_zone_utc_offset=-5 +County "NY, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601150.epw site_zip_code=12839 site_time_zone_utc_offset=-5 +County "NY, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601170.epw site_zip_code=14513 site_time_zone_utc_offset=-5 +County "NY, Westchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601190.epw site_zip_code=10701 site_time_zone_utc_offset=-5 +County "NY, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601210.epw site_zip_code=14569 site_time_zone_utc_offset=-5 +County "NY, Yates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601230.epw site_zip_code=14527 site_time_zone_utc_offset=-5 +County "OH, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900010.epw site_zip_code=45693 site_time_zone_utc_offset=-5 +County "OH, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900030.epw site_zip_code=45805 site_time_zone_utc_offset=-5 +County "OH, Ashland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900050.epw site_zip_code=44805 site_time_zone_utc_offset=-5 +County "OH, Ashtabula County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900070.epw site_zip_code=44004 site_time_zone_utc_offset=-5 +County "OH, Athens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900090.epw site_zip_code=45701 site_time_zone_utc_offset=-5 +County "OH, Auglaize County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900110.epw site_zip_code=45895 site_time_zone_utc_offset=-5 +County "OH, Belmont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900130.epw site_zip_code=43950 site_time_zone_utc_offset=-5 +County "OH, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900150.epw site_zip_code=45121 site_time_zone_utc_offset=-5 +County "OH, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900170.epw site_zip_code=45011 site_time_zone_utc_offset=-5 +County "OH, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900190.epw site_zip_code=44615 site_time_zone_utc_offset=-5 +County "OH, Champaign County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900210.epw site_zip_code=43078 site_time_zone_utc_offset=-5 +County "OH, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900230.epw site_zip_code=45503 site_time_zone_utc_offset=-5 +County "OH, Clermont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900250.epw site_zip_code=45103 site_time_zone_utc_offset=-5 +County "OH, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900270.epw site_zip_code=45177 site_time_zone_utc_offset=-5 +County "OH, Columbiana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900290.epw site_zip_code=43920 site_time_zone_utc_offset=-5 +County "OH, Coshocton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900310.epw site_zip_code=43812 site_time_zone_utc_offset=-5 +County "OH, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900330.epw site_zip_code=44820 site_time_zone_utc_offset=-5 +County "OH, Cuyahoga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900350.epw site_zip_code=44107 site_time_zone_utc_offset=-5 +County "OH, Darke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900370.epw site_zip_code=45331 site_time_zone_utc_offset=-5 +County "OH, Defiance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900390.epw site_zip_code=43512 site_time_zone_utc_offset=-5 +County "OH, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900410.epw site_zip_code=43015 site_time_zone_utc_offset=-5 +County "OH, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900430.epw site_zip_code=44870 site_time_zone_utc_offset=-5 +County "OH, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900450.epw site_zip_code=43130 site_time_zone_utc_offset=-5 +County "OH, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900470.epw site_zip_code=43160 site_time_zone_utc_offset=-5 +County "OH, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900490.epw site_zip_code=43081 site_time_zone_utc_offset=-5 +County "OH, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900510.epw site_zip_code=43567 site_time_zone_utc_offset=-5 +County "OH, Gallia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900530.epw site_zip_code=45631 site_time_zone_utc_offset=-5 +County "OH, Geauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900550.epw site_zip_code=44024 site_time_zone_utc_offset=-5 +County "OH, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900570.epw site_zip_code=45324 site_time_zone_utc_offset=-5 +County "OH, Guernsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900590.epw site_zip_code=43725 site_time_zone_utc_offset=-5 +County "OH, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900610.epw site_zip_code=45238 site_time_zone_utc_offset=-5 +County "OH, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900630.epw site_zip_code=45840 site_time_zone_utc_offset=-5 +County "OH, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900650.epw site_zip_code=43326 site_time_zone_utc_offset=-5 +County "OH, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900670.epw site_zip_code=43907 site_time_zone_utc_offset=-5 +County "OH, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900690.epw site_zip_code=43545 site_time_zone_utc_offset=-5 +County "OH, Highland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900710.epw site_zip_code=45133 site_time_zone_utc_offset=-5 +County "OH, Hocking County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900730.epw site_zip_code=43138 site_time_zone_utc_offset=-5 +County "OH, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900750.epw site_zip_code=44654 site_time_zone_utc_offset=-5 +County "OH, Huron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900770.epw site_zip_code=44857 site_time_zone_utc_offset=-5 +County "OH, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900790.epw site_zip_code=45640 site_time_zone_utc_offset=-5 +County "OH, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900810.epw site_zip_code=43952 site_time_zone_utc_offset=-5 +County "OH, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900830.epw site_zip_code=43050 site_time_zone_utc_offset=-5 +County "OH, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900850.epw site_zip_code=44060 site_time_zone_utc_offset=-5 +County "OH, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900870.epw site_zip_code=45638 site_time_zone_utc_offset=-5 +County "OH, Licking County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900890.epw site_zip_code=43055 site_time_zone_utc_offset=-5 +County "OH, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900910.epw site_zip_code=43311 site_time_zone_utc_offset=-5 +County "OH, Lorain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900930.epw site_zip_code=44035 site_time_zone_utc_offset=-5 +County "OH, Lucas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900950.epw site_zip_code=43615 site_time_zone_utc_offset=-5 +County "OH, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900970.epw site_zip_code=43140 site_time_zone_utc_offset=-5 +County "OH, Mahoning County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900990.epw site_zip_code=44512 site_time_zone_utc_offset=-5 +County "OH, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901010.epw site_zip_code=43302 site_time_zone_utc_offset=-5 +County "OH, Medina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901030.epw site_zip_code=44256 site_time_zone_utc_offset=-5 +County "OH, Meigs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901050.epw site_zip_code=45769 site_time_zone_utc_offset=-5 +County "OH, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901070.epw site_zip_code=45822 site_time_zone_utc_offset=-5 +County "OH, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901090.epw site_zip_code=45373 site_time_zone_utc_offset=-5 +County "OH, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901110.epw site_zip_code=43793 site_time_zone_utc_offset=-5 +County "OH, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901130.epw site_zip_code=45424 site_time_zone_utc_offset=-5 +County "OH, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901150.epw site_zip_code=43756 site_time_zone_utc_offset=-5 +County "OH, Morrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901170.epw site_zip_code=43338 site_time_zone_utc_offset=-5 +County "OH, Muskingum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901190.epw site_zip_code=43701 site_time_zone_utc_offset=-5 +County "OH, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901210.epw site_zip_code=43724 site_time_zone_utc_offset=-5 +County "OH, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901230.epw site_zip_code=43452 site_time_zone_utc_offset=-5 +County "OH, Paulding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901250.epw site_zip_code=45879 site_time_zone_utc_offset=-5 +County "OH, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901270.epw site_zip_code=43764 site_time_zone_utc_offset=-5 +County "OH, Pickaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901290.epw site_zip_code=43113 site_time_zone_utc_offset=-5 +County "OH, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901310.epw site_zip_code=45690 site_time_zone_utc_offset=-5 +County "OH, Portage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901330.epw site_zip_code=44240 site_time_zone_utc_offset=-5 +County "OH, Preble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901350.epw site_zip_code=45320 site_time_zone_utc_offset=-5 +County "OH, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901370.epw site_zip_code=45875 site_time_zone_utc_offset=-5 +County "OH, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901390.epw site_zip_code=44903 site_time_zone_utc_offset=-5 +County "OH, Ross County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901410.epw site_zip_code=45601 site_time_zone_utc_offset=-5 +County "OH, Sandusky County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901430.epw site_zip_code=43420 site_time_zone_utc_offset=-5 +County "OH, Scioto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901450.epw site_zip_code=45662 site_time_zone_utc_offset=-5 +County "OH, Seneca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901470.epw site_zip_code=44883 site_time_zone_utc_offset=-5 +County "OH, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901490.epw site_zip_code=45365 site_time_zone_utc_offset=-5 +County "OH, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901510.epw site_zip_code=44646 site_time_zone_utc_offset=-5 +County "OH, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901530.epw site_zip_code=44224 site_time_zone_utc_offset=-5 +County "OH, Trumbull County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901550.epw site_zip_code=44483 site_time_zone_utc_offset=-5 +County "OH, Tuscarawas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901570.epw site_zip_code=44663 site_time_zone_utc_offset=-5 +County "OH, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901590.epw site_zip_code=43040 site_time_zone_utc_offset=-5 +County "OH, Van Wert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901610.epw site_zip_code=45891 site_time_zone_utc_offset=-5 +County "OH, Vinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901630.epw site_zip_code=45651 site_time_zone_utc_offset=-5 +County "OH, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901650.epw site_zip_code=45040 site_time_zone_utc_offset=-5 +County "OH, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901670.epw site_zip_code=45750 site_time_zone_utc_offset=-5 +County "OH, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901690.epw site_zip_code=44691 site_time_zone_utc_offset=-5 +County "OH, Williams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901710.epw site_zip_code=43506 site_time_zone_utc_offset=-5 +County "OH, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901730.epw site_zip_code=43551 site_time_zone_utc_offset=-5 +County "OH, Wyandot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901750.epw site_zip_code=43351 site_time_zone_utc_offset=-5 +County "OK, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000010.epw site_zip_code=74960 site_time_zone_utc_offset=-6 +County "OK, Alfalfa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000030.epw site_zip_code=73728 site_time_zone_utc_offset=-6 +County "OK, Atoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000050.epw site_zip_code=74525 site_time_zone_utc_offset=-6 +County "OK, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000070.epw site_zip_code=73932 site_time_zone_utc_offset=-6 +County "OK, Beckham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000090.epw site_zip_code=73644 site_time_zone_utc_offset=-6 +County "OK, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000110.epw site_zip_code=73772 site_time_zone_utc_offset=-6 +County "OK, Bryan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000130.epw site_zip_code=74701 site_time_zone_utc_offset=-6 +County "OK, Caddo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000150.epw site_zip_code=73005 site_time_zone_utc_offset=-6 +County "OK, Canadian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000170.epw site_zip_code=73099 site_time_zone_utc_offset=-6 +County "OK, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000190.epw site_zip_code=73401 site_time_zone_utc_offset=-6 +County "OK, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000210.epw site_zip_code=74464 site_time_zone_utc_offset=-6 +County "OK, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000230.epw site_zip_code=74743 site_time_zone_utc_offset=-6 +County "OK, Cimarron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000250.epw site_zip_code=73933 site_time_zone_utc_offset=-6 +County "OK, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000270.epw site_zip_code=73160 site_time_zone_utc_offset=-6 +County "OK, Coal County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000290.epw site_zip_code=74538 site_time_zone_utc_offset=-6 +County "OK, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000310.epw site_zip_code=73505 site_time_zone_utc_offset=-6 +County "OK, Cotton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000330.epw site_zip_code=73572 site_time_zone_utc_offset=-6 +County "OK, Craig County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000350.epw site_zip_code=74301 site_time_zone_utc_offset=-6 +County "OK, Creek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000370.epw site_zip_code=74066 site_time_zone_utc_offset=-6 +County "OK, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000390.epw site_zip_code=73096 site_time_zone_utc_offset=-6 +County "OK, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000410.epw site_zip_code=74344 site_time_zone_utc_offset=-6 +County "OK, Dewey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000430.epw site_zip_code=73859 site_time_zone_utc_offset=-6 +County "OK, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000450.epw site_zip_code=73858 site_time_zone_utc_offset=-6 +County "OK, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000470.epw site_zip_code=73703 site_time_zone_utc_offset=-6 +County "OK, Garvin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000490.epw site_zip_code=73075 site_time_zone_utc_offset=-6 +County "OK, Grady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000510.epw site_zip_code=73018 site_time_zone_utc_offset=-6 +County "OK, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000530.epw site_zip_code=73759 site_time_zone_utc_offset=-6 +County "OK, Greer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000550.epw site_zip_code=73554 site_time_zone_utc_offset=-6 +County "OK, Harmon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000570.epw site_zip_code=73550 site_time_zone_utc_offset=-6 +County "OK, Harper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000590.epw site_zip_code=73848 site_time_zone_utc_offset=-6 +County "OK, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000610.epw site_zip_code=74462 site_time_zone_utc_offset=-6 +County "OK, Hughes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000630.epw site_zip_code=74848 site_time_zone_utc_offset=-6 +County "OK, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000650.epw site_zip_code=73521 site_time_zone_utc_offset=-6 +County "OK, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000670.epw site_zip_code=73573 site_time_zone_utc_offset=-6 +County "OK, Johnston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000690.epw site_zip_code=73460 site_time_zone_utc_offset=-6 +County "OK, Kay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000710.epw site_zip_code=74601 site_time_zone_utc_offset=-6 +County "OK, Kingfisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000730.epw site_zip_code=73750 site_time_zone_utc_offset=-6 +County "OK, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000750.epw site_zip_code=73651 site_time_zone_utc_offset=-6 +County "OK, Latimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000770.epw site_zip_code=74578 site_time_zone_utc_offset=-6 +County "OK, Le Flore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000790.epw site_zip_code=74953 site_time_zone_utc_offset=-6 +County "OK, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000810.epw site_zip_code=74834 site_time_zone_utc_offset=-6 +County "OK, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000830.epw site_zip_code=73044 site_time_zone_utc_offset=-6 +County "OK, Love County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000850.epw site_zip_code=73448 site_time_zone_utc_offset=-6 +County "OK, Major County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000930.epw site_zip_code=73737 site_time_zone_utc_offset=-6 +County "OK, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000950.epw site_zip_code=73439 site_time_zone_utc_offset=-6 +County "OK, Mayes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000970.epw site_zip_code=74361 site_time_zone_utc_offset=-6 +County "OK, McClain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000870.epw site_zip_code=73080 site_time_zone_utc_offset=-6 +County "OK, McCurtain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000890.epw site_zip_code=74728 site_time_zone_utc_offset=-6 +County "OK, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000910.epw site_zip_code=74432 site_time_zone_utc_offset=-6 +County "OK, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000990.epw site_zip_code=73086 site_time_zone_utc_offset=-6 +County "OK, Muskogee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001010.epw site_zip_code=74403 site_time_zone_utc_offset=-6 +County "OK, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001030.epw site_zip_code=73077 site_time_zone_utc_offset=-6 +County "OK, Nowata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001050.epw site_zip_code=74048 site_time_zone_utc_offset=-6 +County "OK, Okfuskee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001070.epw site_zip_code=74859 site_time_zone_utc_offset=-6 +County "OK, Oklahoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001090.epw site_zip_code=73013 site_time_zone_utc_offset=-6 +County "OK, Okmulgee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001110.epw site_zip_code=74447 site_time_zone_utc_offset=-6 +County "OK, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001130.epw site_zip_code=74070 site_time_zone_utc_offset=-6 +County "OK, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001150.epw site_zip_code=74354 site_time_zone_utc_offset=-6 +County "OK, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001170.epw site_zip_code=74020 site_time_zone_utc_offset=-6 +County "OK, Payne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001190.epw site_zip_code=74074 site_time_zone_utc_offset=-6 +County "OK, Pittsburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001210.epw site_zip_code=74501 site_time_zone_utc_offset=-6 +County "OK, Pontotoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001230.epw site_zip_code=74820 site_time_zone_utc_offset=-6 +County "OK, Pottawatomie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001250.epw site_zip_code=74801 site_time_zone_utc_offset=-6 +County "OK, Pushmataha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001270.epw site_zip_code=74523 site_time_zone_utc_offset=-6 +County "OK, Roger Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001290.epw site_zip_code=73628 site_time_zone_utc_offset=-6 +County "OK, Rogers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001310.epw site_zip_code=74017 site_time_zone_utc_offset=-6 +County "OK, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001330.epw site_zip_code=74868 site_time_zone_utc_offset=-6 +County "OK, Sequoyah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001350.epw site_zip_code=74955 site_time_zone_utc_offset=-6 +County "OK, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001370.epw site_zip_code=73533 site_time_zone_utc_offset=-6 +County "OK, Texas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001390.epw site_zip_code=73942 site_time_zone_utc_offset=-6 +County "OK, Tillman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001410.epw site_zip_code=73542 site_time_zone_utc_offset=-6 +County "OK, Tulsa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001430.epw site_zip_code=74012 site_time_zone_utc_offset=-6 +County "OK, Wagoner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001450.epw site_zip_code=74014 site_time_zone_utc_offset=-6 +County "OK, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001470.epw site_zip_code=74006 site_time_zone_utc_offset=-6 +County "OK, Washita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001490.epw site_zip_code=73632 site_time_zone_utc_offset=-6 +County "OK, Woods County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001510.epw site_zip_code=73717 site_time_zone_utc_offset=-6 +County "OK, Woodward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001530.epw site_zip_code=73801 site_time_zone_utc_offset=-6 +County "OR, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100010.epw site_zip_code=97814 site_time_zone_utc_offset=-8 +County "OR, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100030.epw site_zip_code=97330 site_time_zone_utc_offset=-8 +County "OR, Clackamas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100050.epw site_zip_code=97045 site_time_zone_utc_offset=-8 +County "OR, Clatsop County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100070.epw site_zip_code=97103 site_time_zone_utc_offset=-8 +County "OR, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100090.epw site_zip_code=97051 site_time_zone_utc_offset=-8 +County "OR, Coos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100110.epw site_zip_code=97420 site_time_zone_utc_offset=-8 +County "OR, Crook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100130.epw site_zip_code=97754 site_time_zone_utc_offset=-8 +County "OR, Curry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100150.epw site_zip_code=97415 site_time_zone_utc_offset=-8 +County "OR, Deschutes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100170.epw site_zip_code=97702 site_time_zone_utc_offset=-8 +County "OR, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100190.epw site_zip_code=97471 site_time_zone_utc_offset=-8 +County "OR, Gilliam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100210.epw site_zip_code=97823 site_time_zone_utc_offset=-8 +County "OR, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100230.epw site_zip_code=97845 site_time_zone_utc_offset=-8 +County "OR, Harney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100250.epw site_zip_code=97720 site_time_zone_utc_offset=-8 +County "OR, Hood River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100270.epw site_zip_code=97031 site_time_zone_utc_offset=-8 +County "OR, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100290.epw site_zip_code=97504 site_time_zone_utc_offset=-8 +County "OR, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100310.epw site_zip_code=97741 site_time_zone_utc_offset=-8 +County "OR, Josephine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100330.epw site_zip_code=97526 site_time_zone_utc_offset=-8 +County "OR, Klamath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100350.epw site_zip_code=97603 site_time_zone_utc_offset=-8 +County "OR, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100370.epw site_zip_code=97630 site_time_zone_utc_offset=-8 +County "OR, Lane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100390.epw site_zip_code=97402 site_time_zone_utc_offset=-8 +County "OR, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100410.epw site_zip_code=97367 site_time_zone_utc_offset=-8 +County "OR, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100430.epw site_zip_code=97322 site_time_zone_utc_offset=-8 +County "OR, Malheur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100450.epw site_zip_code=97914 site_time_zone_utc_offset=-7 +County "OR, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100470.epw site_zip_code=97301 site_time_zone_utc_offset=-8 +County "OR, Morrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100490.epw site_zip_code=97818 site_time_zone_utc_offset=-8 +County "OR, Multnomah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100510.epw site_zip_code=97206 site_time_zone_utc_offset=-8 +County "OR, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100530.epw site_zip_code=97304 site_time_zone_utc_offset=-8 +County "OR, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100550.epw site_zip_code=97065 site_time_zone_utc_offset=-8 +County "OR, Tillamook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100570.epw site_zip_code=97141 site_time_zone_utc_offset=-8 +County "OR, Umatilla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100590.epw site_zip_code=97838 site_time_zone_utc_offset=-8 +County "OR, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100610.epw site_zip_code=97850 site_time_zone_utc_offset=-8 +County "OR, Wallowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100630.epw site_zip_code=97828 site_time_zone_utc_offset=-8 +County "OR, Wasco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100650.epw site_zip_code=97058 site_time_zone_utc_offset=-8 +County "OR, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100670.epw site_zip_code=97229 site_time_zone_utc_offset=-8 +County "OR, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100690.epw site_zip_code=97830 site_time_zone_utc_offset=-8 +County "OR, Yamhill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100710.epw site_zip_code=97128 site_time_zone_utc_offset=-8 +County "PA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200010.epw site_zip_code=17325 site_time_zone_utc_offset=-5 +County "PA, Allegheny County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200030.epw site_zip_code=15237 site_time_zone_utc_offset=-5 +County "PA, Armstrong County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200050.epw site_zip_code=16201 site_time_zone_utc_offset=-5 +County "PA, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200070.epw site_zip_code=15001 site_time_zone_utc_offset=-5 +County "PA, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200090.epw site_zip_code=15522 site_time_zone_utc_offset=-5 +County "PA, Berks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200110.epw site_zip_code=19606 site_time_zone_utc_offset=-5 +County "PA, Blair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200130.epw site_zip_code=16601 site_time_zone_utc_offset=-5 +County "PA, Bradford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200150.epw site_zip_code=18840 site_time_zone_utc_offset=-5 +County "PA, Bucks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200170.epw site_zip_code=19020 site_time_zone_utc_offset=-5 +County "PA, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200190.epw site_zip_code=16001 site_time_zone_utc_offset=-5 +County "PA, Cambria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200210.epw site_zip_code=15905 site_time_zone_utc_offset=-5 +County "PA, Cameron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200230.epw site_zip_code=15834 site_time_zone_utc_offset=-5 +County "PA, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200250.epw site_zip_code=18235 site_time_zone_utc_offset=-5 +County "PA, Centre County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200270.epw site_zip_code=16801 site_time_zone_utc_offset=-5 +County "PA, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200290.epw site_zip_code=19380 site_time_zone_utc_offset=-5 +County "PA, Clarion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200310.epw site_zip_code=16214 site_time_zone_utc_offset=-5 +County "PA, Clearfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200330.epw site_zip_code=15801 site_time_zone_utc_offset=-5 +County "PA, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200350.epw site_zip_code=17745 site_time_zone_utc_offset=-5 +County "PA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200370.epw site_zip_code=17815 site_time_zone_utc_offset=-5 +County "PA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200390.epw site_zip_code=16335 site_time_zone_utc_offset=-5 +County "PA, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200410.epw site_zip_code=17055 site_time_zone_utc_offset=-5 +County "PA, Dauphin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200430.epw site_zip_code=17112 site_time_zone_utc_offset=-5 +County "PA, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200450.epw site_zip_code=19063 site_time_zone_utc_offset=-5 +County "PA, Elk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200470.epw site_zip_code=15857 site_time_zone_utc_offset=-5 +County "PA, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200490.epw site_zip_code=16509 site_time_zone_utc_offset=-5 +County "PA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200510.epw site_zip_code=15401 site_time_zone_utc_offset=-5 +County "PA, Forest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200530.epw site_zip_code=16353 site_time_zone_utc_offset=-5 +County "PA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200550.epw site_zip_code=17268 site_time_zone_utc_offset=-5 +County "PA, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200570.epw site_zip_code=17233 site_time_zone_utc_offset=-5 +County "PA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200590.epw site_zip_code=15370 site_time_zone_utc_offset=-5 +County "PA, Huntingdon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200610.epw site_zip_code=16652 site_time_zone_utc_offset=-5 +County "PA, Indiana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200630.epw site_zip_code=15701 site_time_zone_utc_offset=-5 +County "PA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200650.epw site_zip_code=15767 site_time_zone_utc_offset=-5 +County "PA, Juniata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200670.epw site_zip_code=17059 site_time_zone_utc_offset=-5 +County "PA, Lackawanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200690.epw site_zip_code=18505 site_time_zone_utc_offset=-5 +County "PA, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200710.epw site_zip_code=17603 site_time_zone_utc_offset=-5 +County "PA, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200730.epw site_zip_code=16101 site_time_zone_utc_offset=-5 +County "PA, Lebanon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200750.epw site_zip_code=17042 site_time_zone_utc_offset=-5 +County "PA, Lehigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200770.epw site_zip_code=18103 site_time_zone_utc_offset=-5 +County "PA, Luzerne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200790.epw site_zip_code=18702 site_time_zone_utc_offset=-5 +County "PA, Lycoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200810.epw site_zip_code=17701 site_time_zone_utc_offset=-5 +County "PA, McKean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200830.epw site_zip_code=16701 site_time_zone_utc_offset=-5 +County "PA, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200850.epw site_zip_code=16148 site_time_zone_utc_offset=-5 +County "PA, Mifflin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200870.epw site_zip_code=17044 site_time_zone_utc_offset=-5 +County "PA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200890.epw site_zip_code=18301 site_time_zone_utc_offset=-5 +County "PA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200910.epw site_zip_code=19446 site_time_zone_utc_offset=-5 +County "PA, Montour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200930.epw site_zip_code=17821 site_time_zone_utc_offset=-5 +County "PA, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200950.epw site_zip_code=18042 site_time_zone_utc_offset=-5 +County "PA, Northumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200970.epw site_zip_code=17801 site_time_zone_utc_offset=-5 +County "PA, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200990.epw site_zip_code=17020 site_time_zone_utc_offset=-5 +County "PA, Philadelphia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201010.epw site_zip_code=19143 site_time_zone_utc_offset=-5 +County "PA, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201030.epw site_zip_code=18337 site_time_zone_utc_offset=-5 +County "PA, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201050.epw site_zip_code=16915 site_time_zone_utc_offset=-5 +County "PA, Schuylkill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201070.epw site_zip_code=17901 site_time_zone_utc_offset=-5 +County "PA, Snyder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201090.epw site_zip_code=17870 site_time_zone_utc_offset=-5 +County "PA, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201110.epw site_zip_code=15501 site_time_zone_utc_offset=-5 +County "PA, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201130.epw site_zip_code=18614 site_time_zone_utc_offset=-5 +County "PA, Susquehanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201150.epw site_zip_code=18801 site_time_zone_utc_offset=-5 +County "PA, Tioga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201170.epw site_zip_code=16901 site_time_zone_utc_offset=-5 +County "PA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201190.epw site_zip_code=17837 site_time_zone_utc_offset=-5 +County "PA, Venango County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201210.epw site_zip_code=16301 site_time_zone_utc_offset=-5 +County "PA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201230.epw site_zip_code=16365 site_time_zone_utc_offset=-5 +County "PA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201250.epw site_zip_code=15301 site_time_zone_utc_offset=-5 +County "PA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201270.epw site_zip_code=18431 site_time_zone_utc_offset=-5 +County "PA, Westmoreland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201290.epw site_zip_code=15601 site_time_zone_utc_offset=-5 +County "PA, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201310.epw site_zip_code=18657 site_time_zone_utc_offset=-5 +County "PA, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201330.epw site_zip_code=17331 site_time_zone_utc_offset=-5 +County "RI, Bristol County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400010.epw site_zip_code=02809 site_time_zone_utc_offset=-5 +County "RI, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400030.epw site_zip_code=02893 site_time_zone_utc_offset=-5 +County "RI, Newport County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400050.epw site_zip_code=02840 site_time_zone_utc_offset=-5 +County "RI, Providence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400070.epw site_zip_code=02860 site_time_zone_utc_offset=-5 +County "RI, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400090.epw site_zip_code=02891 site_time_zone_utc_offset=-5 +County "SC, Abbeville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500010.epw site_zip_code=29620 site_time_zone_utc_offset=-5 +County "SC, Aiken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500030.epw site_zip_code=29803 site_time_zone_utc_offset=-5 +County "SC, Allendale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500050.epw site_zip_code=29810 site_time_zone_utc_offset=-5 +County "SC, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500070.epw site_zip_code=29621 site_time_zone_utc_offset=-5 +County "SC, Bamberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500090.epw site_zip_code=29003 site_time_zone_utc_offset=-5 +County "SC, Barnwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500110.epw site_zip_code=29812 site_time_zone_utc_offset=-5 +County "SC, Beaufort County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500130.epw site_zip_code=29910 site_time_zone_utc_offset=-5 +County "SC, Berkeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500150.epw site_zip_code=29445 site_time_zone_utc_offset=-5 +County "SC, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500170.epw site_zip_code=29135 site_time_zone_utc_offset=-5 +County "SC, Charleston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500190.epw site_zip_code=29464 site_time_zone_utc_offset=-5 +County "SC, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500210.epw site_zip_code=29340 site_time_zone_utc_offset=-5 +County "SC, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500230.epw site_zip_code=29706 site_time_zone_utc_offset=-5 +County "SC, Chesterfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500250.epw site_zip_code=29520 site_time_zone_utc_offset=-5 +County "SC, Clarendon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500270.epw site_zip_code=29102 site_time_zone_utc_offset=-5 +County "SC, Colleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500290.epw site_zip_code=29488 site_time_zone_utc_offset=-5 +County "SC, Darlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500310.epw site_zip_code=29550 site_time_zone_utc_offset=-5 +County "SC, Dillon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500330.epw site_zip_code=29536 site_time_zone_utc_offset=-5 +County "SC, Dorchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500350.epw site_zip_code=29485 site_time_zone_utc_offset=-5 +County "SC, Edgefield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500370.epw site_zip_code=29860 site_time_zone_utc_offset=-5 +County "SC, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500390.epw site_zip_code=29180 site_time_zone_utc_offset=-5 +County "SC, Florence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500410.epw site_zip_code=29501 site_time_zone_utc_offset=-5 +County "SC, Georgetown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500430.epw site_zip_code=29440 site_time_zone_utc_offset=-5 +County "SC, Greenville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500450.epw site_zip_code=29681 site_time_zone_utc_offset=-5 +County "SC, Greenwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500470.epw site_zip_code=29649 site_time_zone_utc_offset=-5 +County "SC, Hampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500490.epw site_zip_code=29918 site_time_zone_utc_offset=-5 +County "SC, Horry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500510.epw site_zip_code=29579 site_time_zone_utc_offset=-5 +County "SC, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500530.epw site_zip_code=29936 site_time_zone_utc_offset=-5 +County "SC, Kershaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500550.epw site_zip_code=29020 site_time_zone_utc_offset=-5 +County "SC, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500570.epw site_zip_code=29720 site_time_zone_utc_offset=-5 +County "SC, Laurens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500590.epw site_zip_code=29360 site_time_zone_utc_offset=-5 +County "SC, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500610.epw site_zip_code=29010 site_time_zone_utc_offset=-5 +County "SC, Lexington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500630.epw site_zip_code=29072 site_time_zone_utc_offset=-5 +County "SC, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500670.epw site_zip_code=29571 site_time_zone_utc_offset=-5 +County "SC, Marlboro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500690.epw site_zip_code=29512 site_time_zone_utc_offset=-5 +County "SC, McCormick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500650.epw site_zip_code=29835 site_time_zone_utc_offset=-5 +County "SC, Newberry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500710.epw site_zip_code=29108 site_time_zone_utc_offset=-5 +County "SC, Oconee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500730.epw site_zip_code=29678 site_time_zone_utc_offset=-5 +County "SC, Orangeburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500750.epw site_zip_code=29115 site_time_zone_utc_offset=-5 +County "SC, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500770.epw site_zip_code=29640 site_time_zone_utc_offset=-5 +County "SC, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500790.epw site_zip_code=29223 site_time_zone_utc_offset=-5 +County "SC, Saluda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500810.epw site_zip_code=29138 site_time_zone_utc_offset=-5 +County "SC, Spartanburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500830.epw site_zip_code=29301 site_time_zone_utc_offset=-5 +County "SC, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500850.epw site_zip_code=29150 site_time_zone_utc_offset=-5 +County "SC, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500870.epw site_zip_code=29379 site_time_zone_utc_offset=-5 +County "SC, Williamsburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500890.epw site_zip_code=29556 site_time_zone_utc_offset=-5 +County "SC, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500910.epw site_zip_code=29732 site_time_zone_utc_offset=-5 +County "SD, Aurora County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600030.epw site_zip_code=57368 site_time_zone_utc_offset=-6 +County "SD, Beadle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600050.epw site_zip_code=57350 site_time_zone_utc_offset=-6 +County "SD, Bennett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600070.epw site_zip_code=57551 site_time_zone_utc_offset=-7 +County "SD, Bon Homme County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600090.epw site_zip_code=57066 site_time_zone_utc_offset=-6 +County "SD, Brookings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600110.epw site_zip_code=57006 site_time_zone_utc_offset=-6 +County "SD, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600130.epw site_zip_code=57401 site_time_zone_utc_offset=-6 +County "SD, Brule County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600150.epw site_zip_code=57325 site_time_zone_utc_offset=-6 +County "SD, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600170.epw site_zip_code=57341 site_time_zone_utc_offset=-6 +County "SD, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600190.epw site_zip_code=57717 site_time_zone_utc_offset=-7 +County "SD, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600210.epw site_zip_code=57632 site_time_zone_utc_offset=-6 +County "SD, Charles Mix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600230.epw site_zip_code=57380 site_time_zone_utc_offset=-6 +County "SD, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600250.epw site_zip_code=57225 site_time_zone_utc_offset=-6 +County "SD, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600270.epw site_zip_code=57069 site_time_zone_utc_offset=-6 +County "SD, Codington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600290.epw site_zip_code=57201 site_time_zone_utc_offset=-6 +County "SD, Corson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600310.epw site_zip_code=57642 site_time_zone_utc_offset=-7 +County "SD, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600330.epw site_zip_code=57730 site_time_zone_utc_offset=-7 +County "SD, Davison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600350.epw site_zip_code=57301 site_time_zone_utc_offset=-6 +County "SD, Day County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600370.epw site_zip_code=57274 site_time_zone_utc_offset=-6 +County "SD, Deuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600390.epw site_zip_code=57226 site_time_zone_utc_offset=-6 +County "SD, Dewey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600410.epw site_zip_code=57625 site_time_zone_utc_offset=-7 +County "SD, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600430.epw site_zip_code=57328 site_time_zone_utc_offset=-6 +County "SD, Edmunds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600450.epw site_zip_code=57451 site_time_zone_utc_offset=-6 +County "SD, Fall River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600470.epw site_zip_code=57747 site_time_zone_utc_offset=-7 +County "SD, Faulk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600490.epw site_zip_code=57438 site_time_zone_utc_offset=-6 +County "SD, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600510.epw site_zip_code=57252 site_time_zone_utc_offset=-6 +County "SD, Gregory County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600530.epw site_zip_code=57533 site_time_zone_utc_offset=-6 +County "SD, Haakon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600550.epw site_zip_code=57552 site_time_zone_utc_offset=-7 +County "SD, Hamlin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600570.epw site_zip_code=57223 site_time_zone_utc_offset=-6 +County "SD, Hand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600590.epw site_zip_code=57362 site_time_zone_utc_offset=-6 +County "SD, Hanson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600610.epw site_zip_code=57311 site_time_zone_utc_offset=-6 +County "SD, Harding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600630.epw site_zip_code=57720 site_time_zone_utc_offset=-7 +County "SD, Hughes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600650.epw site_zip_code=57501 site_time_zone_utc_offset=-6 +County "SD, Hutchinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600670.epw site_zip_code=57366 site_time_zone_utc_offset=-6 +County "SD, Hyde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600690.epw site_zip_code=57345 site_time_zone_utc_offset=-6 +County "SD, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600710.epw site_zip_code=57543 site_time_zone_utc_offset=-7 +County "SD, Jerauld County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600730.epw site_zip_code=57382 site_time_zone_utc_offset=-6 +County "SD, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600750.epw site_zip_code=57559 site_time_zone_utc_offset=-6 +County "SD, Kingsbury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600770.epw site_zip_code=57231 site_time_zone_utc_offset=-6 +County "SD, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600790.epw site_zip_code=57042 site_time_zone_utc_offset=-6 +County "SD, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600810.epw site_zip_code=57783 site_time_zone_utc_offset=-7 +County "SD, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600830.epw site_zip_code=57108 site_time_zone_utc_offset=-6 +County "SD, Lyman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600850.epw site_zip_code=57569 site_time_zone_utc_offset=-6 +County "SD, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600910.epw site_zip_code=57430 site_time_zone_utc_offset=-6 +County "SD, McCook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600870.epw site_zip_code=57058 site_time_zone_utc_offset=-6 +County "SD, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600890.epw site_zip_code=57437 site_time_zone_utc_offset=-6 +County "SD, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600930.epw site_zip_code=57785 site_time_zone_utc_offset=-7 +County "SD, Mellette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600950.epw site_zip_code=57579 site_time_zone_utc_offset=-6 +County "SD, Miner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600970.epw site_zip_code=57349 site_time_zone_utc_offset=-6 +County "SD, Minnehaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600990.epw site_zip_code=57106 site_time_zone_utc_offset=-6 +County "SD, Moody County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601010.epw site_zip_code=57028 site_time_zone_utc_offset=-6 +County "SD, Oglala Lakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601020.epw site_zip_code=57770 site_time_zone_utc_offset=-7 +County "SD, Pennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601030.epw site_zip_code=57701 site_time_zone_utc_offset=-7 +County "SD, Perkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601050.epw site_zip_code=57638 site_time_zone_utc_offset=-7 +County "SD, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601070.epw site_zip_code=57442 site_time_zone_utc_offset=-6 +County "SD, Roberts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601090.epw site_zip_code=57262 site_time_zone_utc_offset=-6 +County "SD, Sanborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601110.epw site_zip_code=57385 site_time_zone_utc_offset=-6 +County "SD, Spink County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601150.epw site_zip_code=57469 site_time_zone_utc_offset=-6 +County "SD, Stanley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601170.epw site_zip_code=57532 site_time_zone_utc_offset=-7 +County "SD, Sully County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601190.epw site_zip_code=57564 site_time_zone_utc_offset=-6 +County "SD, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601210.epw site_zip_code=57555 site_time_zone_utc_offset=-6 +County "SD, Tripp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601230.epw site_zip_code=57580 site_time_zone_utc_offset=-6 +County "SD, Turner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601250.epw site_zip_code=57053 site_time_zone_utc_offset=-6 +County "SD, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601270.epw site_zip_code=57049 site_time_zone_utc_offset=-6 +County "SD, Walworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601290.epw site_zip_code=57601 site_time_zone_utc_offset=-6 +County "SD, Yankton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601350.epw site_zip_code=57078 site_time_zone_utc_offset=-6 +County "SD, Ziebach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601370.epw site_zip_code=57623 site_time_zone_utc_offset=-7 +County "TN, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700010.epw site_zip_code=37830 site_time_zone_utc_offset=-5 +County "TN, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700030.epw site_zip_code=37160 site_time_zone_utc_offset=-6 +County "TN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700050.epw site_zip_code=38320 site_time_zone_utc_offset=-6 +County "TN, Bledsoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700070.epw site_zip_code=37367 site_time_zone_utc_offset=-6 +County "TN, Blount County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700090.epw site_zip_code=37803 site_time_zone_utc_offset=-5 +County "TN, Bradley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700110.epw site_zip_code=37312 site_time_zone_utc_offset=-5 +County "TN, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700130.epw site_zip_code=37766 site_time_zone_utc_offset=-5 +County "TN, Cannon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700150.epw site_zip_code=37190 site_time_zone_utc_offset=-6 +County "TN, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700170.epw site_zip_code=38344 site_time_zone_utc_offset=-6 +County "TN, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700190.epw site_zip_code=37643 site_time_zone_utc_offset=-5 +County "TN, Cheatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700210.epw site_zip_code=37015 site_time_zone_utc_offset=-6 +County "TN, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700230.epw site_zip_code=38340 site_time_zone_utc_offset=-6 +County "TN, Claiborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700250.epw site_zip_code=37879 site_time_zone_utc_offset=-5 +County "TN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700270.epw site_zip_code=38551 site_time_zone_utc_offset=-6 +County "TN, Cocke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700290.epw site_zip_code=37821 site_time_zone_utc_offset=-5 +County "TN, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700310.epw site_zip_code=37355 site_time_zone_utc_offset=-6 +County "TN, Crockett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700330.epw site_zip_code=38006 site_time_zone_utc_offset=-6 +County "TN, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700350.epw site_zip_code=38555 site_time_zone_utc_offset=-6 +County "TN, Davidson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700370.epw site_zip_code=37013 site_time_zone_utc_offset=-6 +County "TN, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700410.epw site_zip_code=37166 site_time_zone_utc_offset=-6 +County "TN, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700390.epw site_zip_code=38363 site_time_zone_utc_offset=-6 +County "TN, Dickson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700430.epw site_zip_code=37055 site_time_zone_utc_offset=-6 +County "TN, Dyer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700450.epw site_zip_code=38024 site_time_zone_utc_offset=-6 +County "TN, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700470.epw site_zip_code=38060 site_time_zone_utc_offset=-6 +County "TN, Fentress County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700490.epw site_zip_code=38556 site_time_zone_utc_offset=-6 +County "TN, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700510.epw site_zip_code=37398 site_time_zone_utc_offset=-6 +County "TN, Gibson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700530.epw site_zip_code=38343 site_time_zone_utc_offset=-6 +County "TN, Giles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700550.epw site_zip_code=38478 site_time_zone_utc_offset=-6 +County "TN, Grainger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700570.epw site_zip_code=37861 site_time_zone_utc_offset=-5 +County "TN, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700590.epw site_zip_code=37743 site_time_zone_utc_offset=-5 +County "TN, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700610.epw site_zip_code=37387 site_time_zone_utc_offset=-6 +County "TN, Hamblen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700630.epw site_zip_code=37814 site_time_zone_utc_offset=-5 +County "TN, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700650.epw site_zip_code=37421 site_time_zone_utc_offset=-5 +County "TN, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700670.epw site_zip_code=37869 site_time_zone_utc_offset=-5 +County "TN, Hardeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700690.epw site_zip_code=38008 site_time_zone_utc_offset=-6 +County "TN, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700710.epw site_zip_code=38372 site_time_zone_utc_offset=-6 +County "TN, Hawkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700730.epw site_zip_code=37857 site_time_zone_utc_offset=-5 +County "TN, Haywood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700750.epw site_zip_code=38012 site_time_zone_utc_offset=-6 +County "TN, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700770.epw site_zip_code=38351 site_time_zone_utc_offset=-6 +County "TN, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700790.epw site_zip_code=38242 site_time_zone_utc_offset=-6 +County "TN, Hickman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700810.epw site_zip_code=37033 site_time_zone_utc_offset=-6 +County "TN, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700830.epw site_zip_code=37061 site_time_zone_utc_offset=-6 +County "TN, Humphreys County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700850.epw site_zip_code=37185 site_time_zone_utc_offset=-6 +County "TN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700870.epw site_zip_code=38562 site_time_zone_utc_offset=-6 +County "TN, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700890.epw site_zip_code=37725 site_time_zone_utc_offset=-5 +County "TN, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700910.epw site_zip_code=37683 site_time_zone_utc_offset=-5 +County "TN, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700930.epw site_zip_code=37920 site_time_zone_utc_offset=-5 +County "TN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700950.epw site_zip_code=38079 site_time_zone_utc_offset=-6 +County "TN, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700970.epw site_zip_code=38063 site_time_zone_utc_offset=-6 +County "TN, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700990.epw site_zip_code=38464 site_time_zone_utc_offset=-6 +County "TN, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701010.epw site_zip_code=38462 site_time_zone_utc_offset=-6 +County "TN, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701030.epw site_zip_code=37334 site_time_zone_utc_offset=-6 +County "TN, Loudon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701050.epw site_zip_code=37774 site_time_zone_utc_offset=-5 +County "TN, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701110.epw site_zip_code=37083 site_time_zone_utc_offset=-6 +County "TN, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701130.epw site_zip_code=38305 site_time_zone_utc_offset=-6 +County "TN, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701150.epw site_zip_code=37397 site_time_zone_utc_offset=-6 +County "TN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701170.epw site_zip_code=37091 site_time_zone_utc_offset=-6 +County "TN, Maury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701190.epw site_zip_code=38401 site_time_zone_utc_offset=-6 +County "TN, McMinn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701070.epw site_zip_code=37303 site_time_zone_utc_offset=-5 +County "TN, McNairy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701090.epw site_zip_code=38375 site_time_zone_utc_offset=-6 +County "TN, Meigs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701210.epw site_zip_code=37322 site_time_zone_utc_offset=-5 +County "TN, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701230.epw site_zip_code=37354 site_time_zone_utc_offset=-5 +County "TN, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701250.epw site_zip_code=37042 site_time_zone_utc_offset=-6 +County "TN, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701270.epw site_zip_code=37352 site_time_zone_utc_offset=-6 +County "TN, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701290.epw site_zip_code=37887 site_time_zone_utc_offset=-5 +County "TN, Obion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701310.epw site_zip_code=38261 site_time_zone_utc_offset=-6 +County "TN, Overton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701330.epw site_zip_code=38570 site_time_zone_utc_offset=-6 +County "TN, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701350.epw site_zip_code=37096 site_time_zone_utc_offset=-6 +County "TN, Pickett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701370.epw site_zip_code=38549 site_time_zone_utc_offset=-6 +County "TN, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701390.epw site_zip_code=37307 site_time_zone_utc_offset=-5 +County "TN, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701410.epw site_zip_code=38501 site_time_zone_utc_offset=-6 +County "TN, Rhea County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701430.epw site_zip_code=37321 site_time_zone_utc_offset=-5 +County "TN, Roane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701450.epw site_zip_code=37748 site_time_zone_utc_offset=-5 +County "TN, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701470.epw site_zip_code=37172 site_time_zone_utc_offset=-6 +County "TN, Rutherford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701490.epw site_zip_code=37128 site_time_zone_utc_offset=-6 +County "TN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701510.epw site_zip_code=37841 site_time_zone_utc_offset=-5 +County "TN, Sequatchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701530.epw site_zip_code=37327 site_time_zone_utc_offset=-6 +County "TN, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701550.epw site_zip_code=37876 site_time_zone_utc_offset=-5 +County "TN, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701570.epw site_zip_code=38111 site_time_zone_utc_offset=-6 +County "TN, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701590.epw site_zip_code=37030 site_time_zone_utc_offset=-6 +County "TN, Stewart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701610.epw site_zip_code=37058 site_time_zone_utc_offset=-6 +County "TN, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701630.epw site_zip_code=37660 site_time_zone_utc_offset=-5 +County "TN, Sumner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701650.epw site_zip_code=37075 site_time_zone_utc_offset=-6 +County "TN, Tipton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701670.epw site_zip_code=38019 site_time_zone_utc_offset=-6 +County "TN, Trousdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701690.epw site_zip_code=37074 site_time_zone_utc_offset=-6 +County "TN, Unicoi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701710.epw site_zip_code=37650 site_time_zone_utc_offset=-5 +County "TN, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701730.epw site_zip_code=37807 site_time_zone_utc_offset=-5 +County "TN, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701750.epw site_zip_code=38585 site_time_zone_utc_offset=-6 +County "TN, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701770.epw site_zip_code=37110 site_time_zone_utc_offset=-6 +County "TN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701790.epw site_zip_code=37604 site_time_zone_utc_offset=-5 +County "TN, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701810.epw site_zip_code=38485 site_time_zone_utc_offset=-6 +County "TN, Weakley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701830.epw site_zip_code=38237 site_time_zone_utc_offset=-6 +County "TN, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701850.epw site_zip_code=38583 site_time_zone_utc_offset=-6 +County "TN, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701870.epw site_zip_code=37064 site_time_zone_utc_offset=-6 +County "TN, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701890.epw site_zip_code=37122 site_time_zone_utc_offset=-6 +County "TX, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800010.epw site_zip_code=75803 site_time_zone_utc_offset=-6 +County "TX, Andrews County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800030.epw site_zip_code=79714 site_time_zone_utc_offset=-6 +County "TX, Angelina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800050.epw site_zip_code=75904 site_time_zone_utc_offset=-6 +County "TX, Aransas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800070.epw site_zip_code=78382 site_time_zone_utc_offset=-6 +County "TX, Archer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800090.epw site_zip_code=76310 site_time_zone_utc_offset=-6 +County "TX, Armstrong County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800110.epw site_zip_code=79019 site_time_zone_utc_offset=-6 +County "TX, Atascosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800130.epw site_zip_code=78064 site_time_zone_utc_offset=-6 +County "TX, Austin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800150.epw site_zip_code=77474 site_time_zone_utc_offset=-6 +County "TX, Bailey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800170.epw site_zip_code=79347 site_time_zone_utc_offset=-6 +County "TX, Bandera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800190.epw site_zip_code=78003 site_time_zone_utc_offset=-6 +County "TX, Bastrop County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800210.epw site_zip_code=78602 site_time_zone_utc_offset=-6 +County "TX, Baylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800230.epw site_zip_code=76380 site_time_zone_utc_offset=-6 +County "TX, Bee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800250.epw site_zip_code=78102 site_time_zone_utc_offset=-6 +County "TX, Bell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800270.epw site_zip_code=76502 site_time_zone_utc_offset=-6 +County "TX, Bexar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800290.epw site_zip_code=78245 site_time_zone_utc_offset=-6 +County "TX, Blanco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800310.epw site_zip_code=78606 site_time_zone_utc_offset=-6 +County "TX, Borden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800330.epw site_zip_code=79351 site_time_zone_utc_offset=-6 +County "TX, Bosque County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800350.epw site_zip_code=76634 site_time_zone_utc_offset=-6 +County "TX, Bowie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800370.epw site_zip_code=75501 site_time_zone_utc_offset=-6 +County "TX, Brazoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800390.epw site_zip_code=77584 site_time_zone_utc_offset=-6 +County "TX, Brazos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800410.epw site_zip_code=77845 site_time_zone_utc_offset=-6 +County "TX, Brewster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800430.epw site_zip_code=79830 site_time_zone_utc_offset=-6 +County "TX, Briscoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800450.epw site_zip_code=79257 site_time_zone_utc_offset=-6 +County "TX, Brooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800470.epw site_zip_code=78355 site_time_zone_utc_offset=-6 +County "TX, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800490.epw site_zip_code=76801 site_time_zone_utc_offset=-6 +County "TX, Burleson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800510.epw site_zip_code=77836 site_time_zone_utc_offset=-6 +County "TX, Burnet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800530.epw site_zip_code=78654 site_time_zone_utc_offset=-6 +County "TX, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800550.epw site_zip_code=78644 site_time_zone_utc_offset=-6 +County "TX, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800570.epw site_zip_code=77979 site_time_zone_utc_offset=-6 +County "TX, Callahan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800590.epw site_zip_code=79510 site_time_zone_utc_offset=-6 +County "TX, Cameron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800610.epw site_zip_code=78521 site_time_zone_utc_offset=-6 +County "TX, Camp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800630.epw site_zip_code=75686 site_time_zone_utc_offset=-6 +County "TX, Carson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800650.epw site_zip_code=79068 site_time_zone_utc_offset=-6 +County "TX, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800670.epw site_zip_code=75551 site_time_zone_utc_offset=-6 +County "TX, Castro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800690.epw site_zip_code=79027 site_time_zone_utc_offset=-6 +County "TX, Chambers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800710.epw site_zip_code=77523 site_time_zone_utc_offset=-6 +County "TX, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800730.epw site_zip_code=75766 site_time_zone_utc_offset=-6 +County "TX, Childress County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800750.epw site_zip_code=79201 site_time_zone_utc_offset=-6 +County "TX, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800770.epw site_zip_code=76365 site_time_zone_utc_offset=-6 +County "TX, Cochran County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800790.epw site_zip_code=79346 site_time_zone_utc_offset=-6 +County "TX, Coke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800810.epw site_zip_code=76945 site_time_zone_utc_offset=-6 +County "TX, Coleman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800830.epw site_zip_code=76834 site_time_zone_utc_offset=-6 +County "TX, Collin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800850.epw site_zip_code=75035 site_time_zone_utc_offset=-6 +County "TX, Collingsworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800870.epw site_zip_code=79095 site_time_zone_utc_offset=-6 +County "TX, Colorado County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800890.epw site_zip_code=78934 site_time_zone_utc_offset=-6 +County "TX, Comal County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800910.epw site_zip_code=78130 site_time_zone_utc_offset=-6 +County "TX, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800930.epw site_zip_code=76442 site_time_zone_utc_offset=-6 +County "TX, Concho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800950.epw site_zip_code=76837 site_time_zone_utc_offset=-6 +County "TX, Cooke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800970.epw site_zip_code=76240 site_time_zone_utc_offset=-6 +County "TX, Coryell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800990.epw site_zip_code=76522 site_time_zone_utc_offset=-6 +County "TX, Cottle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801010.epw site_zip_code=79248 site_time_zone_utc_offset=-6 +County "TX, Crane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801030.epw site_zip_code=79731 site_time_zone_utc_offset=-6 +County "TX, Crockett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801050.epw site_zip_code=76943 site_time_zone_utc_offset=-6 +County "TX, Crosby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801070.epw site_zip_code=79322 site_time_zone_utc_offset=-6 +County "TX, Culberson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801090.epw site_zip_code=79847 site_time_zone_utc_offset=-6 +County "TX, Dallam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801110.epw site_zip_code=79022 site_time_zone_utc_offset=-6 +County "TX, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801130.epw site_zip_code=75243 site_time_zone_utc_offset=-6 +County "TX, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801150.epw site_zip_code=79331 site_time_zone_utc_offset=-6 +County "TX, DeWitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801230.epw site_zip_code=77954 site_time_zone_utc_offset=-6 +County "TX, Deaf Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801170.epw site_zip_code=79045 site_time_zone_utc_offset=-6 +County "TX, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801190.epw site_zip_code=75432 site_time_zone_utc_offset=-6 +County "TX, Denton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801210.epw site_zip_code=75056 site_time_zone_utc_offset=-6 +County "TX, Dickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801250.epw site_zip_code=79370 site_time_zone_utc_offset=-6 +County "TX, Dimmit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801270.epw site_zip_code=78834 site_time_zone_utc_offset=-6 +County "TX, Donley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801290.epw site_zip_code=79226 site_time_zone_utc_offset=-6 +County "TX, Duval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801310.epw site_zip_code=78384 site_time_zone_utc_offset=-6 +County "TX, Eastland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801330.epw site_zip_code=76437 site_time_zone_utc_offset=-6 +County "TX, Ector County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801350.epw site_zip_code=79762 site_time_zone_utc_offset=-6 +County "TX, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801370.epw site_zip_code=78880 site_time_zone_utc_offset=-6 +County "TX, El Paso County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801410.epw site_zip_code=79936 site_time_zone_utc_offset=-7 +County "TX, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801390.epw site_zip_code=75165 site_time_zone_utc_offset=-6 +County "TX, Erath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801430.epw site_zip_code=76401 site_time_zone_utc_offset=-6 +County "TX, Falls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801450.epw site_zip_code=76661 site_time_zone_utc_offset=-6 +County "TX, Fannin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801470.epw site_zip_code=75418 site_time_zone_utc_offset=-6 +County "TX, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801490.epw site_zip_code=78945 site_time_zone_utc_offset=-6 +County "TX, Fisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801510.epw site_zip_code=79546 site_time_zone_utc_offset=-6 +County "TX, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801530.epw site_zip_code=79235 site_time_zone_utc_offset=-6 +County "TX, Foard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801550.epw site_zip_code=79227 site_time_zone_utc_offset=-6 +County "TX, Fort Bend County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801570.epw site_zip_code=77494 site_time_zone_utc_offset=-6 +County "TX, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801590.epw site_zip_code=75457 site_time_zone_utc_offset=-6 +County "TX, Freestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801610.epw site_zip_code=75860 site_time_zone_utc_offset=-6 +County "TX, Frio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801630.epw site_zip_code=78061 site_time_zone_utc_offset=-6 +County "TX, Gaines County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801650.epw site_zip_code=79360 site_time_zone_utc_offset=-6 +County "TX, Galveston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801670.epw site_zip_code=77573 site_time_zone_utc_offset=-6 +County "TX, Garza County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801690.epw site_zip_code=79356 site_time_zone_utc_offset=-6 +County "TX, Gillespie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801710.epw site_zip_code=78624 site_time_zone_utc_offset=-6 +County "TX, Glasscock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801730.epw site_zip_code=79739 site_time_zone_utc_offset=-6 +County "TX, Goliad County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801750.epw site_zip_code=77963 site_time_zone_utc_offset=-6 +County "TX, Gonzales County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801770.epw site_zip_code=78629 site_time_zone_utc_offset=-6 +County "TX, Gray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801790.epw site_zip_code=79065 site_time_zone_utc_offset=-6 +County "TX, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801810.epw site_zip_code=75092 site_time_zone_utc_offset=-6 +County "TX, Gregg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801830.epw site_zip_code=75605 site_time_zone_utc_offset=-6 +County "TX, Grimes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801850.epw site_zip_code=77868 site_time_zone_utc_offset=-6 +County "TX, Guadalupe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801870.epw site_zip_code=78155 site_time_zone_utc_offset=-6 +County "TX, Hale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801890.epw site_zip_code=79072 site_time_zone_utc_offset=-6 +County "TX, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801910.epw site_zip_code=79245 site_time_zone_utc_offset=-6 +County "TX, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801930.epw site_zip_code=76531 site_time_zone_utc_offset=-6 +County "TX, Hansford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801950.epw site_zip_code=79081 site_time_zone_utc_offset=-6 +County "TX, Hardeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801970.epw site_zip_code=79252 site_time_zone_utc_offset=-6 +County "TX, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801990.epw site_zip_code=77657 site_time_zone_utc_offset=-6 +County "TX, Harris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802010.epw site_zip_code=77449 site_time_zone_utc_offset=-6 +County "TX, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802030.epw site_zip_code=75672 site_time_zone_utc_offset=-6 +County "TX, Hartley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802050.epw site_zip_code=79022 site_time_zone_utc_offset=-6 +County "TX, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802070.epw site_zip_code=79521 site_time_zone_utc_offset=-6 +County "TX, Hays County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802090.epw site_zip_code=78666 site_time_zone_utc_offset=-6 +County "TX, Hemphill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802110.epw site_zip_code=79014 site_time_zone_utc_offset=-6 +County "TX, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802130.epw site_zip_code=75156 site_time_zone_utc_offset=-6 +County "TX, Hidalgo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802150.epw site_zip_code=78572 site_time_zone_utc_offset=-6 +County "TX, Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802170.epw site_zip_code=76692 site_time_zone_utc_offset=-6 +County "TX, Hockley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802190.epw site_zip_code=79336 site_time_zone_utc_offset=-6 +County "TX, Hood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802210.epw site_zip_code=76048 site_time_zone_utc_offset=-6 +County "TX, Hopkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802230.epw site_zip_code=75482 site_time_zone_utc_offset=-6 +County "TX, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802250.epw site_zip_code=75835 site_time_zone_utc_offset=-6 +County "TX, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802270.epw site_zip_code=79720 site_time_zone_utc_offset=-6 +County "TX, Hudspeth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802290.epw site_zip_code=79839 site_time_zone_utc_offset=-7 +County "TX, Hunt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802310.epw site_zip_code=75401 site_time_zone_utc_offset=-6 +County "TX, Hutchinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802330.epw site_zip_code=79007 site_time_zone_utc_offset=-6 +County "TX, Irion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802350.epw site_zip_code=76941 site_time_zone_utc_offset=-6 +County "TX, Jack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802370.epw site_zip_code=76458 site_time_zone_utc_offset=-6 +County "TX, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802390.epw site_zip_code=77957 site_time_zone_utc_offset=-6 +County "TX, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802410.epw site_zip_code=75951 site_time_zone_utc_offset=-6 +County "TX, Jeff Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802430.epw site_zip_code=79734 site_time_zone_utc_offset=-6 +County "TX, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802450.epw site_zip_code=77642 site_time_zone_utc_offset=-6 +County "TX, Jim Hogg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802470.epw site_zip_code=78361 site_time_zone_utc_offset=-6 +County "TX, Jim Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802490.epw site_zip_code=78332 site_time_zone_utc_offset=-6 +County "TX, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802510.epw site_zip_code=76028 site_time_zone_utc_offset=-6 +County "TX, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802530.epw site_zip_code=79501 site_time_zone_utc_offset=-6 +County "TX, Karnes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802550.epw site_zip_code=78119 site_time_zone_utc_offset=-6 +County "TX, Kaufman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802570.epw site_zip_code=75126 site_time_zone_utc_offset=-6 +County "TX, Kendall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802590.epw site_zip_code=78006 site_time_zone_utc_offset=-6 +County "TX, Kenedy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802610.epw site_zip_code=78385 site_time_zone_utc_offset=-6 +County "TX, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802630.epw site_zip_code=79549 site_time_zone_utc_offset=-6 +County "TX, Kerr County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802650.epw site_zip_code=78028 site_time_zone_utc_offset=-6 +County "TX, Kimble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802670.epw site_zip_code=76849 site_time_zone_utc_offset=-6 +County "TX, King County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802690.epw site_zip_code=79248 site_time_zone_utc_offset=-6 +County "TX, Kinney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802710.epw site_zip_code=78832 site_time_zone_utc_offset=-6 +County "TX, Kleberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802730.epw site_zip_code=78363 site_time_zone_utc_offset=-6 +County "TX, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802750.epw site_zip_code=76371 site_time_zone_utc_offset=-6 +County "TX, La Salle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802830.epw site_zip_code=78014 site_time_zone_utc_offset=-6 +County "TX, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802770.epw site_zip_code=75460 site_time_zone_utc_offset=-6 +County "TX, Lamb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802790.epw site_zip_code=79339 site_time_zone_utc_offset=-6 +County "TX, Lampasas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802810.epw site_zip_code=76550 site_time_zone_utc_offset=-6 +County "TX, Lavaca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802850.epw site_zip_code=77964 site_time_zone_utc_offset=-6 +County "TX, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802870.epw site_zip_code=78942 site_time_zone_utc_offset=-6 +County "TX, Leon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802890.epw site_zip_code=75831 site_time_zone_utc_offset=-6 +County "TX, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802910.epw site_zip_code=77327 site_time_zone_utc_offset=-6 +County "TX, Limestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802930.epw site_zip_code=76667 site_time_zone_utc_offset=-6 +County "TX, Lipscomb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802950.epw site_zip_code=79005 site_time_zone_utc_offset=-6 +County "TX, Live Oak County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802970.epw site_zip_code=78022 site_time_zone_utc_offset=-6 +County "TX, Llano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802990.epw site_zip_code=78657 site_time_zone_utc_offset=-6 +County "TX, Loving County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803010.epw site_zip_code=79754 site_time_zone_utc_offset=-6 +County "TX, Lubbock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803030.epw site_zip_code=79424 site_time_zone_utc_offset=-6 +County "TX, Lynn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803050.epw site_zip_code=79373 site_time_zone_utc_offset=-6 +County "TX, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803130.epw site_zip_code=77864 site_time_zone_utc_offset=-6 +County "TX, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803150.epw site_zip_code=75657 site_time_zone_utc_offset=-6 +County "TX, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803170.epw site_zip_code=79782 site_time_zone_utc_offset=-6 +County "TX, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803190.epw site_zip_code=76856 site_time_zone_utc_offset=-6 +County "TX, Matagorda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803210.epw site_zip_code=77414 site_time_zone_utc_offset=-6 +County "TX, Maverick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803230.epw site_zip_code=78852 site_time_zone_utc_offset=-6 +County "TX, McCulloch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803070.epw site_zip_code=76825 site_time_zone_utc_offset=-6 +County "TX, McLennan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803090.epw site_zip_code=76706 site_time_zone_utc_offset=-6 +County "TX, McMullen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803110.epw site_zip_code=78072 site_time_zone_utc_offset=-6 +County "TX, Medina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803250.epw site_zip_code=78861 site_time_zone_utc_offset=-6 +County "TX, Menard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803270.epw site_zip_code=76859 site_time_zone_utc_offset=-6 +County "TX, Midland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803290.epw site_zip_code=79705 site_time_zone_utc_offset=-6 +County "TX, Milam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803310.epw site_zip_code=76567 site_time_zone_utc_offset=-6 +County "TX, Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803330.epw site_zip_code=76844 site_time_zone_utc_offset=-6 +County "TX, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803350.epw site_zip_code=79512 site_time_zone_utc_offset=-6 +County "TX, Montague County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803370.epw site_zip_code=76230 site_time_zone_utc_offset=-6 +County "TX, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803390.epw site_zip_code=77386 site_time_zone_utc_offset=-6 +County "TX, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803410.epw site_zip_code=79029 site_time_zone_utc_offset=-6 +County "TX, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803430.epw site_zip_code=75638 site_time_zone_utc_offset=-6 +County "TX, Motley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803450.epw site_zip_code=79234 site_time_zone_utc_offset=-6 +County "TX, Nacogdoches County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803470.epw site_zip_code=75964 site_time_zone_utc_offset=-6 +County "TX, Navarro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803490.epw site_zip_code=75110 site_time_zone_utc_offset=-6 +County "TX, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803510.epw site_zip_code=75966 site_time_zone_utc_offset=-6 +County "TX, Nolan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803530.epw site_zip_code=79556 site_time_zone_utc_offset=-6 +County "TX, Nueces County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803550.epw site_zip_code=78414 site_time_zone_utc_offset=-6 +County "TX, Ochiltree County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803570.epw site_zip_code=79070 site_time_zone_utc_offset=-6 +County "TX, Oldham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803590.epw site_zip_code=79092 site_time_zone_utc_offset=-6 +County "TX, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803610.epw site_zip_code=77630 site_time_zone_utc_offset=-6 +County "TX, Palo Pinto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803630.epw site_zip_code=76067 site_time_zone_utc_offset=-6 +County "TX, Panola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803650.epw site_zip_code=75633 site_time_zone_utc_offset=-6 +County "TX, Parker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803670.epw site_zip_code=76087 site_time_zone_utc_offset=-6 +County "TX, Parmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803690.epw site_zip_code=79035 site_time_zone_utc_offset=-6 +County "TX, Pecos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803710.epw site_zip_code=79735 site_time_zone_utc_offset=-6 +County "TX, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803730.epw site_zip_code=77351 site_time_zone_utc_offset=-6 +County "TX, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803750.epw site_zip_code=79107 site_time_zone_utc_offset=-6 +County "TX, Presidio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803770.epw site_zip_code=79845 site_time_zone_utc_offset=-6 +County "TX, Rains County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803790.epw site_zip_code=75440 site_time_zone_utc_offset=-6 +County "TX, Randall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803810.epw site_zip_code=79109 site_time_zone_utc_offset=-6 +County "TX, Reagan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803830.epw site_zip_code=76932 site_time_zone_utc_offset=-6 +County "TX, Real County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803850.epw site_zip_code=78873 site_time_zone_utc_offset=-6 +County "TX, Red River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803870.epw site_zip_code=75426 site_time_zone_utc_offset=-6 +County "TX, Reeves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803890.epw site_zip_code=79772 site_time_zone_utc_offset=-6 +County "TX, Refugio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803910.epw site_zip_code=78377 site_time_zone_utc_offset=-6 +County "TX, Roberts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803930.epw site_zip_code=79059 site_time_zone_utc_offset=-6 +County "TX, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803950.epw site_zip_code=77859 site_time_zone_utc_offset=-6 +County "TX, Rockwall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803970.epw site_zip_code=75087 site_time_zone_utc_offset=-6 +County "TX, Runnels County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803990.epw site_zip_code=76821 site_time_zone_utc_offset=-6 +County "TX, Rusk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804010.epw site_zip_code=75652 site_time_zone_utc_offset=-6 +County "TX, Sabine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804030.epw site_zip_code=75948 site_time_zone_utc_offset=-6 +County "TX, San Augustine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804050.epw site_zip_code=75972 site_time_zone_utc_offset=-6 +County "TX, San Jacinto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804070.epw site_zip_code=77331 site_time_zone_utc_offset=-6 +County "TX, San Patricio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804090.epw site_zip_code=78374 site_time_zone_utc_offset=-6 +County "TX, San Saba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804110.epw site_zip_code=76877 site_time_zone_utc_offset=-6 +County "TX, Schleicher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804130.epw site_zip_code=76936 site_time_zone_utc_offset=-6 +County "TX, Scurry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804150.epw site_zip_code=79549 site_time_zone_utc_offset=-6 +County "TX, Shackelford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804170.epw site_zip_code=76430 site_time_zone_utc_offset=-6 +County "TX, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804190.epw site_zip_code=75935 site_time_zone_utc_offset=-6 +County "TX, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804210.epw site_zip_code=79084 site_time_zone_utc_offset=-6 +County "TX, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804230.epw site_zip_code=75703 site_time_zone_utc_offset=-6 +County "TX, Somervell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804250.epw site_zip_code=76043 site_time_zone_utc_offset=-6 +County "TX, Starr County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804270.epw site_zip_code=78582 site_time_zone_utc_offset=-6 +County "TX, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804290.epw site_zip_code=76424 site_time_zone_utc_offset=-6 +County "TX, Sterling County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804310.epw site_zip_code=76951 site_time_zone_utc_offset=-6 +County "TX, Stonewall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804330.epw site_zip_code=79502 site_time_zone_utc_offset=-6 +County "TX, Sutton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804350.epw site_zip_code=76950 site_time_zone_utc_offset=-6 +County "TX, Swisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804370.epw site_zip_code=79088 site_time_zone_utc_offset=-6 +County "TX, Tarrant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804390.epw site_zip_code=76244 site_time_zone_utc_offset=-6 +County "TX, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804410.epw site_zip_code=79605 site_time_zone_utc_offset=-6 +County "TX, Terrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804430.epw site_zip_code=78851 site_time_zone_utc_offset=-6 +County "TX, Terry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804450.epw site_zip_code=79316 site_time_zone_utc_offset=-6 +County "TX, Throckmorton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804470.epw site_zip_code=76483 site_time_zone_utc_offset=-6 +County "TX, Titus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804490.epw site_zip_code=75455 site_time_zone_utc_offset=-6 +County "TX, Tom Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804510.epw site_zip_code=76904 site_time_zone_utc_offset=-6 +County "TX, Travis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804530.epw site_zip_code=78660 site_time_zone_utc_offset=-6 +County "TX, Trinity County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804550.epw site_zip_code=75862 site_time_zone_utc_offset=-6 +County "TX, Tyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804570.epw site_zip_code=75979 site_time_zone_utc_offset=-6 +County "TX, Upshur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804590.epw site_zip_code=75644 site_time_zone_utc_offset=-6 +County "TX, Upton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804610.epw site_zip_code=79778 site_time_zone_utc_offset=-6 +County "TX, Uvalde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804630.epw site_zip_code=78801 site_time_zone_utc_offset=-6 +County "TX, Val Verde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804650.epw site_zip_code=78840 site_time_zone_utc_offset=-6 +County "TX, Van Zandt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804670.epw site_zip_code=75103 site_time_zone_utc_offset=-6 +County "TX, Victoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804690.epw site_zip_code=77901 site_time_zone_utc_offset=-6 +County "TX, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804710.epw site_zip_code=77340 site_time_zone_utc_offset=-6 +County "TX, Waller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804730.epw site_zip_code=77423 site_time_zone_utc_offset=-6 +County "TX, Ward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804750.epw site_zip_code=79756 site_time_zone_utc_offset=-6 +County "TX, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804770.epw site_zip_code=77833 site_time_zone_utc_offset=-6 +County "TX, Webb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804790.epw site_zip_code=78045 site_time_zone_utc_offset=-6 +County "TX, Wharton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804810.epw site_zip_code=77437 site_time_zone_utc_offset=-6 +County "TX, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804830.epw site_zip_code=79079 site_time_zone_utc_offset=-6 +County "TX, Wichita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804850.epw site_zip_code=76311 site_time_zone_utc_offset=-6 +County "TX, Wilbarger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804870.epw site_zip_code=76384 site_time_zone_utc_offset=-6 +County "TX, Willacy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804890.epw site_zip_code=78580 site_time_zone_utc_offset=-6 +County "TX, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804910.epw site_zip_code=78641 site_time_zone_utc_offset=-6 +County "TX, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804930.epw site_zip_code=78114 site_time_zone_utc_offset=-6 +County "TX, Winkler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804950.epw site_zip_code=79745 site_time_zone_utc_offset=-6 +County "TX, Wise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804970.epw site_zip_code=76234 site_time_zone_utc_offset=-6 +County "TX, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804990.epw site_zip_code=75773 site_time_zone_utc_offset=-6 +County "TX, Yoakum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805010.epw site_zip_code=79323 site_time_zone_utc_offset=-6 +County "TX, Young County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805030.epw site_zip_code=76450 site_time_zone_utc_offset=-6 +County "TX, Zapata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805050.epw site_zip_code=78076 site_time_zone_utc_offset=-6 +County "TX, Zavala County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805070.epw site_zip_code=78839 site_time_zone_utc_offset=-6 +County "UT, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900010.epw site_zip_code=84713 site_time_zone_utc_offset=-7 +County "UT, Box Elder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900030.epw site_zip_code=84302 site_time_zone_utc_offset=-7 +County "UT, Cache County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900050.epw site_zip_code=84321 site_time_zone_utc_offset=-7 +County "UT, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900070.epw site_zip_code=84501 site_time_zone_utc_offset=-7 +County "UT, Daggett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900090.epw site_zip_code=84046 site_time_zone_utc_offset=-7 +County "UT, Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900110.epw site_zip_code=84015 site_time_zone_utc_offset=-7 +County "UT, Duchesne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900130.epw site_zip_code=84066 site_time_zone_utc_offset=-7 +County "UT, Emery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900150.epw site_zip_code=84528 site_time_zone_utc_offset=-7 +County "UT, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900170.epw site_zip_code=84726 site_time_zone_utc_offset=-7 +County "UT, Grand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900190.epw site_zip_code=84532 site_time_zone_utc_offset=-7 +County "UT, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900210.epw site_zip_code=84721 site_time_zone_utc_offset=-7 +County "UT, Juab County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900230.epw site_zip_code=84648 site_time_zone_utc_offset=-7 +County "UT, Kane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900250.epw site_zip_code=84741 site_time_zone_utc_offset=-7 +County "UT, Millard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900270.epw site_zip_code=84624 site_time_zone_utc_offset=-7 +County "UT, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900290.epw site_zip_code=84050 site_time_zone_utc_offset=-7 +County "UT, Piute County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900310.epw site_zip_code=84750 site_time_zone_utc_offset=-7 +County "UT, Rich County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900330.epw site_zip_code=84028 site_time_zone_utc_offset=-7 +County "UT, Salt Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900350.epw site_zip_code=84096 site_time_zone_utc_offset=-7 +County "UT, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900370.epw site_zip_code=84511 site_time_zone_utc_offset=-7 +County "UT, Sanpete County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900390.epw site_zip_code=84627 site_time_zone_utc_offset=-7 +County "UT, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900410.epw site_zip_code=84701 site_time_zone_utc_offset=-7 +County "UT, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900430.epw site_zip_code=84098 site_time_zone_utc_offset=-7 +County "UT, Tooele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900450.epw site_zip_code=84074 site_time_zone_utc_offset=-7 +County "UT, Uintah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900470.epw site_zip_code=84078 site_time_zone_utc_offset=-7 +County "UT, Utah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900490.epw site_zip_code=84043 site_time_zone_utc_offset=-7 +County "UT, Wasatch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900510.epw site_zip_code=84032 site_time_zone_utc_offset=-7 +County "UT, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900530.epw site_zip_code=84770 site_time_zone_utc_offset=-7 +County "UT, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900550.epw site_zip_code=84775 site_time_zone_utc_offset=-7 +County "UT, Weber County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900570.epw site_zip_code=84404 site_time_zone_utc_offset=-7 +County "VA, Accomack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100010.epw site_zip_code=23336 site_time_zone_utc_offset=-5 +County "VA, Albemarle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100030.epw site_zip_code=22901 site_time_zone_utc_offset=-5 +County "VA, Alexandria city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105100.epw site_zip_code=22304 site_time_zone_utc_offset=-5 +County "VA, Alleghany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100050.epw site_zip_code=24426 site_time_zone_utc_offset=-5 +County "VA, Amelia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100070.epw site_zip_code=23002 site_time_zone_utc_offset=-5 +County "VA, Amherst County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100090.epw site_zip_code=24572 site_time_zone_utc_offset=-5 +County "VA, Appomattox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100110.epw site_zip_code=24522 site_time_zone_utc_offset=-5 +County "VA, Arlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100130.epw site_zip_code=22204 site_time_zone_utc_offset=-5 +County "VA, Augusta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100150.epw site_zip_code=24401 site_time_zone_utc_offset=-5 +County "VA, Bath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100170.epw site_zip_code=24460 site_time_zone_utc_offset=-5 +County "VA, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100190.epw site_zip_code=24551 site_time_zone_utc_offset=-5 +County "VA, Bland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100210.epw site_zip_code=24315 site_time_zone_utc_offset=-5 +County "VA, Botetourt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100230.epw site_zip_code=24175 site_time_zone_utc_offset=-5 +County "VA, Bristol city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105200.epw site_zip_code=24201 site_time_zone_utc_offset=-5 +County "VA, Brunswick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100250.epw site_zip_code=23868 site_time_zone_utc_offset=-5 +County "VA, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100270.epw site_zip_code=24614 site_time_zone_utc_offset=-5 +County "VA, Buckingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100290.epw site_zip_code=23936 site_time_zone_utc_offset=-5 +County "VA, Buena Vista city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105300.epw site_zip_code=24416 site_time_zone_utc_offset=-5 +County "VA, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100310.epw site_zip_code=24502 site_time_zone_utc_offset=-5 +County "VA, Caroline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100330.epw site_zip_code=22546 site_time_zone_utc_offset=-5 +County "VA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100350.epw site_zip_code=24343 site_time_zone_utc_offset=-5 +County "VA, Charles City County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100360.epw site_zip_code=23030 site_time_zone_utc_offset=-5 +County "VA, Charlotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100370.epw site_zip_code=23923 site_time_zone_utc_offset=-5 +County "VA, Charlottesville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105400.epw site_zip_code=22903 site_time_zone_utc_offset=-5 +County "VA, Chesapeake city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105500.epw site_zip_code=23320 site_time_zone_utc_offset=-5 +County "VA, Chesterfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100410.epw site_zip_code=23112 site_time_zone_utc_offset=-5 +County "VA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100430.epw site_zip_code=22611 site_time_zone_utc_offset=-5 +County "VA, Colonial Heights city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105700.epw site_zip_code=23834 site_time_zone_utc_offset=-5 +County "VA, Covington city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105800.epw site_zip_code=24426 site_time_zone_utc_offset=-5 +County "VA, Craig County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100450.epw site_zip_code=24127 site_time_zone_utc_offset=-5 +County "VA, Culpeper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100470.epw site_zip_code=22701 site_time_zone_utc_offset=-5 +County "VA, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100490.epw site_zip_code=23040 site_time_zone_utc_offset=-5 +County "VA, Danville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105900.epw site_zip_code=24541 site_time_zone_utc_offset=-5 +County "VA, Dickenson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100510.epw site_zip_code=24228 site_time_zone_utc_offset=-5 +County "VA, Dinwiddie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100530.epw site_zip_code=23803 site_time_zone_utc_offset=-5 +County "VA, Emporia city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105950.epw site_zip_code=23847 site_time_zone_utc_offset=-5 +County "VA, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100570.epw site_zip_code=22560 site_time_zone_utc_offset=-5 +County "VA, Fairfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100590.epw site_zip_code=20171 site_time_zone_utc_offset=-5 +County "VA, Fairfax city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106000.epw site_zip_code=22030 site_time_zone_utc_offset=-5 +County "VA, Falls Church city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106100.epw site_zip_code=22046 site_time_zone_utc_offset=-5 +County "VA, Fauquier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100610.epw site_zip_code=20187 site_time_zone_utc_offset=-5 +County "VA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100630.epw site_zip_code=24091 site_time_zone_utc_offset=-5 +County "VA, Fluvanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100650.epw site_zip_code=22963 site_time_zone_utc_offset=-5 +County "VA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100670.epw site_zip_code=24151 site_time_zone_utc_offset=-5 +County "VA, Franklin city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106200.epw site_zip_code=23851 site_time_zone_utc_offset=-5 +County "VA, Frederick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100690.epw site_zip_code=22602 site_time_zone_utc_offset=-5 +County "VA, Fredericksburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106300.epw site_zip_code=22401 site_time_zone_utc_offset=-5 +County "VA, Galax city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106400.epw site_zip_code=24333 site_time_zone_utc_offset=-5 +County "VA, Giles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100710.epw site_zip_code=24134 site_time_zone_utc_offset=-5 +County "VA, Gloucester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100730.epw site_zip_code=23061 site_time_zone_utc_offset=-5 +County "VA, Goochland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100750.epw site_zip_code=23103 site_time_zone_utc_offset=-5 +County "VA, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100770.epw site_zip_code=24333 site_time_zone_utc_offset=-5 +County "VA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100790.epw site_zip_code=22968 site_time_zone_utc_offset=-5 +County "VA, Greensville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100810.epw site_zip_code=23847 site_time_zone_utc_offset=-5 +County "VA, Halifax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100830.epw site_zip_code=24592 site_time_zone_utc_offset=-5 +County "VA, Hampton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106500.epw site_zip_code=23666 site_time_zone_utc_offset=-5 +County "VA, Hanover County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100850.epw site_zip_code=23111 site_time_zone_utc_offset=-5 +County "VA, Harrisonburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106600.epw site_zip_code=22801 site_time_zone_utc_offset=-5 +County "VA, Henrico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100870.epw site_zip_code=23228 site_time_zone_utc_offset=-5 +County "VA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100890.epw site_zip_code=24112 site_time_zone_utc_offset=-5 +County "VA, Highland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100910.epw site_zip_code=24465 site_time_zone_utc_offset=-5 +County "VA, Hopewell city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106700.epw site_zip_code=23860 site_time_zone_utc_offset=-5 +County "VA, Isle of Wight County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100930.epw site_zip_code=23430 site_time_zone_utc_offset=-5 +County "VA, James City County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100950.epw site_zip_code=23188 site_time_zone_utc_offset=-5 +County "VA, King George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100990.epw site_zip_code=22485 site_time_zone_utc_offset=-5 +County "VA, King William County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101010.epw site_zip_code=23009 site_time_zone_utc_offset=-5 +County "VA, King and Queen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100970.epw site_zip_code=23156 site_time_zone_utc_offset=-5 +County "VA, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101030.epw site_zip_code=22503 site_time_zone_utc_offset=-5 +County "VA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101050.epw site_zip_code=24263 site_time_zone_utc_offset=-5 +County "VA, Lexington city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106780.epw site_zip_code=24450 site_time_zone_utc_offset=-5 +County "VA, Loudoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101070.epw site_zip_code=20189 site_time_zone_utc_offset=-5 +County "VA, Louisa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101090.epw site_zip_code=23093 site_time_zone_utc_offset=-5 +County "VA, Lunenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101110.epw site_zip_code=23974 site_time_zone_utc_offset=-5 +County "VA, Lynchburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106800.epw site_zip_code=24502 site_time_zone_utc_offset=-5 +County "VA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101130.epw site_zip_code=22727 site_time_zone_utc_offset=-5 +County "VA, Manassas Park city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106850.epw site_zip_code=20111 site_time_zone_utc_offset=-5 +County "VA, Manassas city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106830.epw site_zip_code=20110 site_time_zone_utc_offset=-5 +County "VA, Martinsville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106900.epw site_zip_code=24112 site_time_zone_utc_offset=-5 +County "VA, Mathews County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101150.epw site_zip_code=23109 site_time_zone_utc_offset=-5 +County "VA, Mecklenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101170.epw site_zip_code=23970 site_time_zone_utc_offset=-5 +County "VA, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101190.epw site_zip_code=23043 site_time_zone_utc_offset=-5 +County "VA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101210.epw site_zip_code=24060 site_time_zone_utc_offset=-5 +County "VA, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101250.epw site_zip_code=22967 site_time_zone_utc_offset=-5 +County "VA, New Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101270.epw site_zip_code=23141 site_time_zone_utc_offset=-5 +County "VA, Newport News city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107000.epw site_zip_code=23608 site_time_zone_utc_offset=-5 +County "VA, Norfolk city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107100.epw site_zip_code=23503 site_time_zone_utc_offset=-5 +County "VA, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101310.epw site_zip_code=23310 site_time_zone_utc_offset=-5 +County "VA, Northumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101330.epw site_zip_code=22473 site_time_zone_utc_offset=-5 +County "VA, Norton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107200.epw site_zip_code=24273 site_time_zone_utc_offset=-5 +County "VA, Nottoway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101350.epw site_zip_code=23824 site_time_zone_utc_offset=-5 +County "VA, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101370.epw site_zip_code=22508 site_time_zone_utc_offset=-5 +County "VA, Page County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101390.epw site_zip_code=22835 site_time_zone_utc_offset=-5 +County "VA, Patrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101410.epw site_zip_code=24171 site_time_zone_utc_offset=-5 +County "VA, Petersburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107300.epw site_zip_code=23803 site_time_zone_utc_offset=-5 +County "VA, Pittsylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101430.epw site_zip_code=24540 site_time_zone_utc_offset=-5 +County "VA, Poquoson city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107350.epw site_zip_code=23662 site_time_zone_utc_offset=-5 +County "VA, Portsmouth city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107400.epw site_zip_code=23703 site_time_zone_utc_offset=-5 +County "VA, Powhatan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101450.epw site_zip_code=23139 site_time_zone_utc_offset=-5 +County "VA, Prince Edward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101470.epw site_zip_code=23901 site_time_zone_utc_offset=-5 +County "VA, Prince George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101490.epw site_zip_code=23875 site_time_zone_utc_offset=-5 +County "VA, Prince William County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101530.epw site_zip_code=22191 site_time_zone_utc_offset=-5 +County "VA, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101550.epw site_zip_code=24301 site_time_zone_utc_offset=-5 +County "VA, Radford city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107500.epw site_zip_code=24141 site_time_zone_utc_offset=-5 +County "VA, Rappahannock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101570.epw site_zip_code=20106 site_time_zone_utc_offset=-5 +County "VA, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101590.epw site_zip_code=22572 site_time_zone_utc_offset=-5 +County "VA, Richmond city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107600.epw site_zip_code=23220 site_time_zone_utc_offset=-5 +County "VA, Roanoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101610.epw site_zip_code=24018 site_time_zone_utc_offset=-5 +County "VA, Roanoke city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107700.epw site_zip_code=24017 site_time_zone_utc_offset=-5 +County "VA, Rockbridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101630.epw site_zip_code=24450 site_time_zone_utc_offset=-5 +County "VA, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101650.epw site_zip_code=22801 site_time_zone_utc_offset=-5 +County "VA, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101670.epw site_zip_code=24266 site_time_zone_utc_offset=-5 +County "VA, Salem city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107750.epw site_zip_code=24153 site_time_zone_utc_offset=-5 +County "VA, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101690.epw site_zip_code=24251 site_time_zone_utc_offset=-5 +County "VA, Shenandoah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101710.epw site_zip_code=22657 site_time_zone_utc_offset=-5 +County "VA, Smyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101730.epw site_zip_code=24354 site_time_zone_utc_offset=-5 +County "VA, Southampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101750.epw site_zip_code=23851 site_time_zone_utc_offset=-5 +County "VA, Spotsylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101770.epw site_zip_code=22407 site_time_zone_utc_offset=-5 +County "VA, Stafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101790.epw site_zip_code=22554 site_time_zone_utc_offset=-5 +County "VA, Staunton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107900.epw site_zip_code=24401 site_time_zone_utc_offset=-5 +County "VA, Suffolk city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108000.epw site_zip_code=23434 site_time_zone_utc_offset=-5 +County "VA, Surry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101810.epw site_zip_code=23883 site_time_zone_utc_offset=-5 +County "VA, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101830.epw site_zip_code=23890 site_time_zone_utc_offset=-5 +County "VA, Tazewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101850.epw site_zip_code=24605 site_time_zone_utc_offset=-5 +County "VA, Virginia Beach city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108100.epw site_zip_code=23462 site_time_zone_utc_offset=-5 +County "VA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101870.epw site_zip_code=22630 site_time_zone_utc_offset=-5 +County "VA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101910.epw site_zip_code=24210 site_time_zone_utc_offset=-5 +County "VA, Waynesboro city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108200.epw site_zip_code=22980 site_time_zone_utc_offset=-5 +County "VA, Westmoreland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101930.epw site_zip_code=22443 site_time_zone_utc_offset=-5 +County "VA, Williamsburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108300.epw site_zip_code=23185 site_time_zone_utc_offset=-5 +County "VA, Winchester city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108400.epw site_zip_code=22601 site_time_zone_utc_offset=-5 +County "VA, Wise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101950.epw site_zip_code=24219 site_time_zone_utc_offset=-5 +County "VA, Wythe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101970.epw site_zip_code=24382 site_time_zone_utc_offset=-5 +County "VA, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101990.epw site_zip_code=23692 site_time_zone_utc_offset=-5 +County "VT, Addison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000010.epw site_zip_code=05753 site_time_zone_utc_offset=-5 +County "VT, Bennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000030.epw site_zip_code=05201 site_time_zone_utc_offset=-5 +County "VT, Caledonia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000050.epw site_zip_code=05819 site_time_zone_utc_offset=-5 +County "VT, Chittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000070.epw site_zip_code=05401 site_time_zone_utc_offset=-5 +County "VT, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000090.epw site_zip_code=05906 site_time_zone_utc_offset=-5 +County "VT, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000110.epw site_zip_code=05478 site_time_zone_utc_offset=-5 +County "VT, Grand Isle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000130.epw site_zip_code=05440 site_time_zone_utc_offset=-5 +County "VT, Lamoille County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000150.epw site_zip_code=05672 site_time_zone_utc_offset=-5 +County "VT, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000170.epw site_zip_code=05060 site_time_zone_utc_offset=-5 +County "VT, Orleans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000190.epw site_zip_code=05855 site_time_zone_utc_offset=-5 +County "VT, Rutland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000210.epw site_zip_code=05701 site_time_zone_utc_offset=-5 +County "VT, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000230.epw site_zip_code=05641 site_time_zone_utc_offset=-5 +County "VT, Windham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000250.epw site_zip_code=05301 site_time_zone_utc_offset=-5 +County "VT, Windsor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000270.epw site_zip_code=05156 site_time_zone_utc_offset=-5 +County "WA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300010.epw site_zip_code=99344 site_time_zone_utc_offset=-8 +County "WA, Asotin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300030.epw site_zip_code=99403 site_time_zone_utc_offset=-8 +County "WA, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300050.epw site_zip_code=99336 site_time_zone_utc_offset=-8 +County "WA, Chelan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300070.epw site_zip_code=98801 site_time_zone_utc_offset=-8 +County "WA, Clallam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300090.epw site_zip_code=98382 site_time_zone_utc_offset=-8 +County "WA, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300110.epw site_zip_code=98682 site_time_zone_utc_offset=-8 +County "WA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300130.epw site_zip_code=99328 site_time_zone_utc_offset=-8 +County "WA, Cowlitz County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300150.epw site_zip_code=98632 site_time_zone_utc_offset=-8 +County "WA, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300170.epw site_zip_code=98802 site_time_zone_utc_offset=-8 +County "WA, Ferry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300190.epw site_zip_code=99166 site_time_zone_utc_offset=-8 +County "WA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300210.epw site_zip_code=99301 site_time_zone_utc_offset=-8 +County "WA, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300230.epw site_zip_code=99347 site_time_zone_utc_offset=-8 +County "WA, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300250.epw site_zip_code=98837 site_time_zone_utc_offset=-8 +County "WA, Grays Harbor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300270.epw site_zip_code=98520 site_time_zone_utc_offset=-8 +County "WA, Island County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300290.epw site_zip_code=98277 site_time_zone_utc_offset=-8 +County "WA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300310.epw site_zip_code=98368 site_time_zone_utc_offset=-8 +County "WA, King County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300330.epw site_zip_code=98052 site_time_zone_utc_offset=-8 +County "WA, Kitsap County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300350.epw site_zip_code=98312 site_time_zone_utc_offset=-8 +County "WA, Kittitas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300370.epw site_zip_code=98926 site_time_zone_utc_offset=-8 +County "WA, Klickitat County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300390.epw site_zip_code=98672 site_time_zone_utc_offset=-8 +County "WA, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300410.epw site_zip_code=98531 site_time_zone_utc_offset=-8 +County "WA, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300430.epw site_zip_code=99122 site_time_zone_utc_offset=-8 +County "WA, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300450.epw site_zip_code=98584 site_time_zone_utc_offset=-8 +County "WA, Okanogan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300470.epw site_zip_code=98841 site_time_zone_utc_offset=-8 +County "WA, Pacific County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300490.epw site_zip_code=98640 site_time_zone_utc_offset=-8 +County "WA, Pend Oreille County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300510.epw site_zip_code=99156 site_time_zone_utc_offset=-8 +County "WA, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300530.epw site_zip_code=98391 site_time_zone_utc_offset=-8 +County "WA, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300550.epw site_zip_code=98250 site_time_zone_utc_offset=-8 +County "WA, Skagit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300570.epw site_zip_code=98273 site_time_zone_utc_offset=-8 +County "WA, Skamania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300590.epw site_zip_code=98648 site_time_zone_utc_offset=-8 +County "WA, Snohomish County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300610.epw site_zip_code=98012 site_time_zone_utc_offset=-8 +County "WA, Spokane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300630.epw site_zip_code=99208 site_time_zone_utc_offset=-8 +County "WA, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300650.epw site_zip_code=99114 site_time_zone_utc_offset=-8 +County "WA, Thurston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300670.epw site_zip_code=98501 site_time_zone_utc_offset=-8 +County "WA, Wahkiakum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300690.epw site_zip_code=98612 site_time_zone_utc_offset=-8 +County "WA, Walla Walla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300710.epw site_zip_code=99362 site_time_zone_utc_offset=-8 +County "WA, Whatcom County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300730.epw site_zip_code=98225 site_time_zone_utc_offset=-8 +County "WA, Whitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300750.epw site_zip_code=99163 site_time_zone_utc_offset=-8 +County "WA, Yakima County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300770.epw site_zip_code=98902 site_time_zone_utc_offset=-8 +County "WI, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500010.epw site_zip_code=53934 site_time_zone_utc_offset=-6 +County "WI, Ashland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500030.epw site_zip_code=54806 site_time_zone_utc_offset=-6 +County "WI, Barron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500050.epw site_zip_code=54868 site_time_zone_utc_offset=-6 +County "WI, Bayfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500070.epw site_zip_code=54891 site_time_zone_utc_offset=-6 +County "WI, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500090.epw site_zip_code=54115 site_time_zone_utc_offset=-6 +County "WI, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500110.epw site_zip_code=54755 site_time_zone_utc_offset=-6 +County "WI, Burnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500130.epw site_zip_code=54830 site_time_zone_utc_offset=-6 +County "WI, Calumet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500150.epw site_zip_code=54915 site_time_zone_utc_offset=-6 +County "WI, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500170.epw site_zip_code=54729 site_time_zone_utc_offset=-6 +County "WI, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500190.epw site_zip_code=54456 site_time_zone_utc_offset=-6 +County "WI, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500210.epw site_zip_code=53901 site_time_zone_utc_offset=-6 +County "WI, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500230.epw site_zip_code=53821 site_time_zone_utc_offset=-6 +County "WI, Dane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500250.epw site_zip_code=53711 site_time_zone_utc_offset=-6 +County "WI, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500270.epw site_zip_code=53916 site_time_zone_utc_offset=-6 +County "WI, Door County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500290.epw site_zip_code=54235 site_time_zone_utc_offset=-6 +County "WI, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500310.epw site_zip_code=54880 site_time_zone_utc_offset=-6 +County "WI, Dunn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500330.epw site_zip_code=54751 site_time_zone_utc_offset=-6 +County "WI, Eau Claire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500350.epw site_zip_code=54703 site_time_zone_utc_offset=-6 +County "WI, Florence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500370.epw site_zip_code=54121 site_time_zone_utc_offset=-6 +County "WI, Fond du Lac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500390.epw site_zip_code=54935 site_time_zone_utc_offset=-6 +County "WI, Forest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500410.epw site_zip_code=54520 site_time_zone_utc_offset=-6 +County "WI, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500430.epw site_zip_code=53818 site_time_zone_utc_offset=-6 +County "WI, Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500450.epw site_zip_code=53566 site_time_zone_utc_offset=-6 +County "WI, Green Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500470.epw site_zip_code=54923 site_time_zone_utc_offset=-6 +County "WI, Iowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500490.epw site_zip_code=53533 site_time_zone_utc_offset=-6 +County "WI, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500510.epw site_zip_code=54547 site_time_zone_utc_offset=-6 +County "WI, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500530.epw site_zip_code=54615 site_time_zone_utc_offset=-6 +County "WI, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500550.epw site_zip_code=53538 site_time_zone_utc_offset=-6 +County "WI, Juneau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500570.epw site_zip_code=53948 site_time_zone_utc_offset=-6 +County "WI, Kenosha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500590.epw site_zip_code=53142 site_time_zone_utc_offset=-6 +County "WI, Kewaunee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500610.epw site_zip_code=54216 site_time_zone_utc_offset=-6 +County "WI, La Crosse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500630.epw site_zip_code=54601 site_time_zone_utc_offset=-6 +County "WI, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500650.epw site_zip_code=53530 site_time_zone_utc_offset=-6 +County "WI, Langlade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500670.epw site_zip_code=54409 site_time_zone_utc_offset=-6 +County "WI, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500690.epw site_zip_code=54452 site_time_zone_utc_offset=-6 +County "WI, Manitowoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500710.epw site_zip_code=54220 site_time_zone_utc_offset=-6 +County "WI, Marathon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500730.epw site_zip_code=54401 site_time_zone_utc_offset=-6 +County "WI, Marinette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500750.epw site_zip_code=54143 site_time_zone_utc_offset=-6 +County "WI, Marquette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500770.epw site_zip_code=53949 site_time_zone_utc_offset=-6 +County "WI, Menominee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500780.epw site_zip_code=54135 site_time_zone_utc_offset=-6 +County "WI, Milwaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500790.epw site_zip_code=53209 site_time_zone_utc_offset=-6 +County "WI, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500810.epw site_zip_code=54656 site_time_zone_utc_offset=-6 +County "WI, Oconto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500830.epw site_zip_code=54153 site_time_zone_utc_offset=-6 +County "WI, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500850.epw site_zip_code=54501 site_time_zone_utc_offset=-6 +County "WI, Outagamie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500870.epw site_zip_code=54911 site_time_zone_utc_offset=-6 +County "WI, Ozaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500890.epw site_zip_code=53092 site_time_zone_utc_offset=-6 +County "WI, Pepin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500910.epw site_zip_code=54736 site_time_zone_utc_offset=-6 +County "WI, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500930.epw site_zip_code=54022 site_time_zone_utc_offset=-6 +County "WI, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500950.epw site_zip_code=54001 site_time_zone_utc_offset=-6 +County "WI, Portage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500970.epw site_zip_code=54481 site_time_zone_utc_offset=-6 +County "WI, Price County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500990.epw site_zip_code=54555 site_time_zone_utc_offset=-6 +County "WI, Racine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501010.epw site_zip_code=53402 site_time_zone_utc_offset=-6 +County "WI, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501030.epw site_zip_code=53581 site_time_zone_utc_offset=-6 +County "WI, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501050.epw site_zip_code=53511 site_time_zone_utc_offset=-6 +County "WI, Rusk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501070.epw site_zip_code=54848 site_time_zone_utc_offset=-6 +County "WI, Sauk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501110.epw site_zip_code=53913 site_time_zone_utc_offset=-6 +County "WI, Sawyer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501130.epw site_zip_code=54843 site_time_zone_utc_offset=-6 +County "WI, Shawano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501150.epw site_zip_code=54166 site_time_zone_utc_offset=-6 +County "WI, Sheboygan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501170.epw site_zip_code=53081 site_time_zone_utc_offset=-6 +County "WI, St. Croix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501090.epw site_zip_code=54016 site_time_zone_utc_offset=-6 +County "WI, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501190.epw site_zip_code=54451 site_time_zone_utc_offset=-6 +County "WI, Trempealeau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501210.epw site_zip_code=54612 site_time_zone_utc_offset=-6 +County "WI, Vernon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501230.epw site_zip_code=54665 site_time_zone_utc_offset=-6 +County "WI, Vilas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501250.epw site_zip_code=54521 site_time_zone_utc_offset=-6 +County "WI, Walworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501270.epw site_zip_code=53147 site_time_zone_utc_offset=-6 +County "WI, Washburn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501290.epw site_zip_code=54801 site_time_zone_utc_offset=-6 +County "WI, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501310.epw site_zip_code=53022 site_time_zone_utc_offset=-6 +County "WI, Waukesha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501330.epw site_zip_code=53051 site_time_zone_utc_offset=-6 +County "WI, Waupaca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501350.epw site_zip_code=54981 site_time_zone_utc_offset=-6 +County "WI, Waushara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501370.epw site_zip_code=54982 site_time_zone_utc_offset=-6 +County "WI, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501390.epw site_zip_code=54956 site_time_zone_utc_offset=-6 +County "WI, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501410.epw site_zip_code=54449 site_time_zone_utc_offset=-6 +County "WV, Barbour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400010.epw site_zip_code=26416 site_time_zone_utc_offset=-5 +County "WV, Berkeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400030.epw site_zip_code=25404 site_time_zone_utc_offset=-5 +County "WV, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400050.epw site_zip_code=25130 site_time_zone_utc_offset=-5 +County "WV, Braxton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400070.epw site_zip_code=26601 site_time_zone_utc_offset=-5 +County "WV, Brooke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400090.epw site_zip_code=26070 site_time_zone_utc_offset=-5 +County "WV, Cabell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400110.epw site_zip_code=25701 site_time_zone_utc_offset=-5 +County "WV, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400130.epw site_zip_code=26147 site_time_zone_utc_offset=-5 +County "WV, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400150.epw site_zip_code=25043 site_time_zone_utc_offset=-5 +County "WV, Doddridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400170.epw site_zip_code=26456 site_time_zone_utc_offset=-5 +County "WV, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400190.epw site_zip_code=25901 site_time_zone_utc_offset=-5 +County "WV, Gilmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400210.epw site_zip_code=26351 site_time_zone_utc_offset=-5 +County "WV, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400230.epw site_zip_code=26847 site_time_zone_utc_offset=-5 +County "WV, Greenbrier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400250.epw site_zip_code=24901 site_time_zone_utc_offset=-5 +County "WV, Hampshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400270.epw site_zip_code=26757 site_time_zone_utc_offset=-5 +County "WV, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400290.epw site_zip_code=26062 site_time_zone_utc_offset=-5 +County "WV, Hardy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400310.epw site_zip_code=26836 site_time_zone_utc_offset=-5 +County "WV, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400330.epw site_zip_code=26301 site_time_zone_utc_offset=-5 +County "WV, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400350.epw site_zip_code=25271 site_time_zone_utc_offset=-5 +County "WV, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400370.epw site_zip_code=25414 site_time_zone_utc_offset=-5 +County "WV, Kanawha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400390.epw site_zip_code=25177 site_time_zone_utc_offset=-5 +County "WV, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400410.epw site_zip_code=26452 site_time_zone_utc_offset=-5 +County "WV, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400430.epw site_zip_code=25506 site_time_zone_utc_offset=-5 +County "WV, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400450.epw site_zip_code=25601 site_time_zone_utc_offset=-5 +County "WV, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400490.epw site_zip_code=26554 site_time_zone_utc_offset=-5 +County "WV, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400510.epw site_zip_code=26041 site_time_zone_utc_offset=-5 +County "WV, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400530.epw site_zip_code=25550 site_time_zone_utc_offset=-5 +County "WV, McDowell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400470.epw site_zip_code=24801 site_time_zone_utc_offset=-5 +County "WV, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400550.epw site_zip_code=24701 site_time_zone_utc_offset=-5 +County "WV, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400570.epw site_zip_code=26726 site_time_zone_utc_offset=-5 +County "WV, Mingo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400590.epw site_zip_code=25661 site_time_zone_utc_offset=-5 +County "WV, Monongalia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400610.epw site_zip_code=26505 site_time_zone_utc_offset=-5 +County "WV, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400630.epw site_zip_code=24963 site_time_zone_utc_offset=-5 +County "WV, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400650.epw site_zip_code=25411 site_time_zone_utc_offset=-5 +County "WV, Nicholas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400670.epw site_zip_code=26651 site_time_zone_utc_offset=-5 +County "WV, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400690.epw site_zip_code=26003 site_time_zone_utc_offset=-5 +County "WV, Pendleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400710.epw site_zip_code=26807 site_time_zone_utc_offset=-5 +County "WV, Pleasants County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400730.epw site_zip_code=26170 site_time_zone_utc_offset=-5 +County "WV, Pocahontas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400750.epw site_zip_code=24954 site_time_zone_utc_offset=-5 +County "WV, Preston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400770.epw site_zip_code=26537 site_time_zone_utc_offset=-5 +County "WV, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400790.epw site_zip_code=25526 site_time_zone_utc_offset=-5 +County "WV, Raleigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400810.epw site_zip_code=25801 site_time_zone_utc_offset=-5 +County "WV, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400830.epw site_zip_code=26241 site_time_zone_utc_offset=-5 +County "WV, Ritchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400850.epw site_zip_code=26362 site_time_zone_utc_offset=-5 +County "WV, Roane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400870.epw site_zip_code=25276 site_time_zone_utc_offset=-5 +County "WV, Summers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400890.epw site_zip_code=25951 site_time_zone_utc_offset=-5 +County "WV, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400910.epw site_zip_code=26354 site_time_zone_utc_offset=-5 +County "WV, Tucker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400930.epw site_zip_code=26287 site_time_zone_utc_offset=-5 +County "WV, Tyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400950.epw site_zip_code=26175 site_time_zone_utc_offset=-5 +County "WV, Upshur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400970.epw site_zip_code=26201 site_time_zone_utc_offset=-5 +County "WV, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400990.epw site_zip_code=25704 site_time_zone_utc_offset=-5 +County "WV, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401010.epw site_zip_code=26288 site_time_zone_utc_offset=-5 +County "WV, Wetzel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401030.epw site_zip_code=26155 site_time_zone_utc_offset=-5 +County "WV, Wirt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401050.epw site_zip_code=26143 site_time_zone_utc_offset=-5 +County "WV, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401070.epw site_zip_code=26101 site_time_zone_utc_offset=-5 +County "WV, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401090.epw site_zip_code=25882 site_time_zone_utc_offset=-5 +County "WY, Albany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600010.epw site_zip_code=82070 site_time_zone_utc_offset=-7 +County "WY, Big Horn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600030.epw site_zip_code=82431 site_time_zone_utc_offset=-7 +County "WY, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600050.epw site_zip_code=82718 site_time_zone_utc_offset=-7 +County "WY, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600070.epw site_zip_code=82301 site_time_zone_utc_offset=-7 +County "WY, Converse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600090.epw site_zip_code=82633 site_time_zone_utc_offset=-7 +County "WY, Crook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600110.epw site_zip_code=82729 site_time_zone_utc_offset=-7 +County "WY, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600130.epw site_zip_code=82501 site_time_zone_utc_offset=-7 +County "WY, Goshen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600150.epw site_zip_code=82240 site_time_zone_utc_offset=-7 +County "WY, Hot Springs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600170.epw site_zip_code=82443 site_time_zone_utc_offset=-7 +County "WY, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600190.epw site_zip_code=82834 site_time_zone_utc_offset=-7 +County "WY, Laramie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600210.epw site_zip_code=82001 site_time_zone_utc_offset=-7 +County "WY, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600230.epw site_zip_code=83127 site_time_zone_utc_offset=-7 +County "WY, Natrona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600250.epw site_zip_code=82601 site_time_zone_utc_offset=-7 +County "WY, Niobrara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600270.epw site_zip_code=82225 site_time_zone_utc_offset=-7 +County "WY, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600290.epw site_zip_code=82414 site_time_zone_utc_offset=-7 +County "WY, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600310.epw site_zip_code=82201 site_time_zone_utc_offset=-7 +County "WY, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600330.epw site_zip_code=82801 site_time_zone_utc_offset=-7 +County "WY, Sublette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600350.epw site_zip_code=82941 site_time_zone_utc_offset=-7 +County "WY, Sweetwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600370.epw site_zip_code=82901 site_time_zone_utc_offset=-7 +County "WY, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600390.epw site_zip_code=83001 site_time_zone_utc_offset=-7 +County "WY, Uinta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600410.epw site_zip_code=82930 site_time_zone_utc_offset=-7 +County "WY, Washakie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600430.epw site_zip_code=82401 site_time_zone_utc_offset=-7 +County "WY, Weston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600450.epw site_zip_code=82701 site_time_zone_utc_offset=-7 +County Metro Status Metropolitan +County Metro Status Non-Metropolitan +County and PUMA "G0100010, G01002100" +County and PUMA "G0100030, G01002600" +County and PUMA "G0100050, G01002400" +County and PUMA "G0100070, G01001700" +County and PUMA "G0100090, G01000800" +County and PUMA "G0100110, G01002400" +County and PUMA "G0100130, G01002300" +County and PUMA "G0100150, G01001100" +County and PUMA "G0100170, G01001800" +County and PUMA "G0100190, G01001000" +County and PUMA "G0100210, G01001800" +County and PUMA "G0100230, G01002200" +County and PUMA "G0100250, G01002200" +County and PUMA "G0100270, G01001000" +County and PUMA "G0100290, G01001000" +County and PUMA "G0100310, G01002300" +County and PUMA "G0100330, G01000100" +County and PUMA "G0100350, G01002200" +County and PUMA "G0100370, G01001800" +County and PUMA "G0100390, G01002300" +County and PUMA "G0100410, G01002300" +County and PUMA "G0100430, G01000700" +County and PUMA "G0100450, G01002500" +County and PUMA "G0100470, G01001700" +County and PUMA "G0100490, G01000400" +County and PUMA "G0100510, G01002100" +County and PUMA "G0100530, G01002200" +County and PUMA "G0100550, G01000900" +County and PUMA "G0100570, G01001400" +County and PUMA "G0100590, G01000100" +County and PUMA "G0100610, G01002500" +County and PUMA "G0100630, G01001700" +County and PUMA "G0100650, G01001700" +County and PUMA "G0100670, G01002500" +County and PUMA "G0100690, G01002500" +County and PUMA "G0100710, G01000400" +County and PUMA "G0100730, G01001301" +County and PUMA "G0100730, G01001302" +County and PUMA "G0100730, G01001303" +County and PUMA "G0100730, G01001304" +County and PUMA "G0100730, G01001305" +County and PUMA "G0100750, G01001400" +County and PUMA "G0100770, G01000100" +County and PUMA "G0100790, G01000600" +County and PUMA "G0100810, G01001900" +County and PUMA "G0100830, G01000200" +County and PUMA "G0100850, G01002100" +County and PUMA "G0100870, G01002400" +County and PUMA "G0100890, G01000200" +County and PUMA "G0100890, G01000301" +County and PUMA "G0100890, G01000302" +County and PUMA "G0100890, G01000500" +County and PUMA "G0100910, G01001700" +County and PUMA "G0100930, G01000100" +County and PUMA "G0100930, G01001400" +County and PUMA "G0100950, G01000500" +County and PUMA "G0100970, G01002701" +County and PUMA "G0100970, G01002702" +County and PUMA "G0100970, G01002703" +County and PUMA "G0100990, G01002200" +County and PUMA "G0101010, G01002000" +County and PUMA "G0101010, G01002100" +County and PUMA "G0101030, G01000600" +County and PUMA "G0101050, G01001700" +County and PUMA "G0101070, G01001500" +County and PUMA "G0101090, G01002400" +County and PUMA "G0101110, G01001000" +County and PUMA "G0101130, G01002400" +County and PUMA "G0101150, G01000800" +County and PUMA "G0101170, G01001200" +County and PUMA "G0101190, G01001700" +County and PUMA "G0101210, G01001000" +County and PUMA "G0101230, G01001800" +County and PUMA "G0101250, G01001500" +County and PUMA "G0101250, G01001600" +County and PUMA "G0101270, G01001400" +County and PUMA "G0101290, G01002200" +County and PUMA "G0101310, G01002200" +County and PUMA "G0101330, G01000700" +County and PUMA "G0200130, G02000400" +County and PUMA "G0200160, G02000400" +County and PUMA "G0200200, G02000101" +County and PUMA "G0200200, G02000102" +County and PUMA "G0200500, G02000400" +County and PUMA "G0200600, G02000400" +County and PUMA "G0200680, G02000300" +County and PUMA "G0200700, G02000400" +County and PUMA "G0200900, G02000300" +County and PUMA "G0201000, G02000300" +County and PUMA "G0201050, G02000400" +County and PUMA "G0201100, G02000300" +County and PUMA "G0201220, G02000200" +County and PUMA "G0201300, G02000300" +County and PUMA "G0201500, G02000400" +County and PUMA "G0201580, G02000400" +County and PUMA "G0201640, G02000400" +County and PUMA "G0201700, G02000200" +County and PUMA "G0201800, G02000400" +County and PUMA "G0201850, G02000400" +County and PUMA "G0201880, G02000400" +County and PUMA "G0201950, G02000400" +County and PUMA "G0201980, G02000400" +County and PUMA "G0202200, G02000400" +County and PUMA "G0202300, G02000300" +County and PUMA "G0202400, G02000300" +County and PUMA "G0202610, G02000300" +County and PUMA "G0202750, G02000400" +County and PUMA "G0202820, G02000400" +County and PUMA "G0202900, G02000400" +County and PUMA "G0400010, G04000300" +County and PUMA "G0400030, G04000900" +County and PUMA "G0400050, G04000400" +County and PUMA "G0400070, G04000800" +County and PUMA "G0400090, G04000800" +County and PUMA "G0400110, G04000800" +County and PUMA "G0400120, G04000600" +County and PUMA "G0400130, G04000100" +County and PUMA "G0400130, G04000101" +County and PUMA "G0400130, G04000102" +County and PUMA "G0400130, G04000103" +County and PUMA "G0400130, G04000104" +County and PUMA "G0400130, G04000105" +County and PUMA "G0400130, G04000106" +County and PUMA "G0400130, G04000107" +County and PUMA "G0400130, G04000108" +County and PUMA "G0400130, G04000109" +County and PUMA "G0400130, G04000110" +County and PUMA "G0400130, G04000111" +County and PUMA "G0400130, G04000112" +County and PUMA "G0400130, G04000113" +County and PUMA "G0400130, G04000114" +County and PUMA "G0400130, G04000115" +County and PUMA "G0400130, G04000116" +County and PUMA "G0400130, G04000117" +County and PUMA "G0400130, G04000118" +County and PUMA "G0400130, G04000119" +County and PUMA "G0400130, G04000120" +County and PUMA "G0400130, G04000121" +County and PUMA "G0400130, G04000122" +County and PUMA "G0400130, G04000123" +County and PUMA "G0400130, G04000124" +County and PUMA "G0400130, G04000125" +County and PUMA "G0400130, G04000126" +County and PUMA "G0400130, G04000127" +County and PUMA "G0400130, G04000128" +County and PUMA "G0400130, G04000129" +County and PUMA "G0400130, G04000130" +County and PUMA "G0400130, G04000131" +County and PUMA "G0400130, G04000132" +County and PUMA "G0400130, G04000133" +County and PUMA "G0400130, G04000134" +County and PUMA "G0400150, G04000600" +County and PUMA "G0400170, G04000300" +County and PUMA "G0400190, G04000201" +County and PUMA "G0400190, G04000202" +County and PUMA "G0400190, G04000203" +County and PUMA "G0400190, G04000204" +County and PUMA "G0400190, G04000205" +County and PUMA "G0400190, G04000206" +County and PUMA "G0400190, G04000207" +County and PUMA "G0400190, G04000208" +County and PUMA "G0400190, G04000209" +County and PUMA "G0400210, G04000800" +County and PUMA "G0400210, G04000803" +County and PUMA "G0400210, G04000805" +County and PUMA "G0400210, G04000807" +County and PUMA "G0400230, G04000900" +County and PUMA "G0400250, G04000500" +County and PUMA "G0400270, G04000700" +County and PUMA "G0500010, G05001700" +County and PUMA "G0500010, G05001800" +County and PUMA "G0500030, G05001800" +County and PUMA "G0500050, G05000300" +County and PUMA "G0500070, G05000100" +County and PUMA "G0500090, G05000300" +County and PUMA "G0500110, G05001800" +County and PUMA "G0500130, G05001900" +County and PUMA "G0500150, G05000300" +County and PUMA "G0500170, G05001800" +County and PUMA "G0500190, G05001600" +County and PUMA "G0500210, G05000500" +County and PUMA "G0500230, G05000400" +County and PUMA "G0500250, G05001800" +County and PUMA "G0500270, G05001900" +County and PUMA "G0500290, G05001300" +County and PUMA "G0500310, G05000500" +County and PUMA "G0500310, G05000600" +County and PUMA "G0500330, G05001400" +County and PUMA "G0500350, G05000600" +County and PUMA "G0500370, G05000700" +County and PUMA "G0500390, G05001900" +County and PUMA "G0500410, G05001800" +County and PUMA "G0500430, G05001800" +County and PUMA "G0500450, G05001100" +County and PUMA "G0500470, G05001500" +County and PUMA "G0500490, G05000400" +County and PUMA "G0500510, G05001600" +County and PUMA "G0500530, G05001700" +County and PUMA "G0500550, G05000500" +County and PUMA "G0500570, G05002000" +County and PUMA "G0500590, G05001600" +County and PUMA "G0500610, G05001500" +County and PUMA "G0500630, G05000400" +County and PUMA "G0500650, G05000400" +County and PUMA "G0500670, G05000800" +County and PUMA "G0500690, G05001700" +County and PUMA "G0500710, G05001300" +County and PUMA "G0500730, G05002000" +County and PUMA "G0500750, G05000500" +County and PUMA "G0500770, G05000700" +County and PUMA "G0500790, G05001800" +County and PUMA "G0500810, G05002000" +County and PUMA "G0500830, G05001500" +County and PUMA "G0500850, G05001100" +County and PUMA "G0500870, G05000300" +County and PUMA "G0500890, G05000300" +County and PUMA "G0500910, G05002000" +County and PUMA "G0500930, G05000600" +County and PUMA "G0500950, G05000700" +County and PUMA "G0500970, G05001600" +County and PUMA "G0500990, G05002000" +County and PUMA "G0501010, G05000300" +County and PUMA "G0501030, G05001900" +County and PUMA "G0501050, G05001300" +County and PUMA "G0501070, G05000700" +County and PUMA "G0501090, G05002000" +County and PUMA "G0501110, G05000700" +County and PUMA "G0501130, G05001500" +County and PUMA "G0501150, G05001300" +County and PUMA "G0501170, G05000800" +County and PUMA "G0501190, G05000900" +County and PUMA "G0501190, G05001000" +County and PUMA "G0501210, G05000500" +County and PUMA "G0501230, G05000700" +County and PUMA "G0501250, G05001200" +County and PUMA "G0501270, G05001500" +County and PUMA "G0501290, G05000300" +County and PUMA "G0501310, G05001400" +County and PUMA "G0501330, G05001500" +County and PUMA "G0501350, G05000400" +County and PUMA "G0501370, G05000400" +County and PUMA "G0501390, G05001900" +County and PUMA "G0501410, G05000400" +County and PUMA "G0501430, G05000200" +County and PUMA "G0501450, G05000800" +County and PUMA "G0501470, G05000800" +County and PUMA "G0501490, G05001300" +County and PUMA "G0600010, G06000101" +County and PUMA "G0600010, G06000102" +County and PUMA "G0600010, G06000103" +County and PUMA "G0600010, G06000104" +County and PUMA "G0600010, G06000105" +County and PUMA "G0600010, G06000106" +County and PUMA "G0600010, G06000107" +County and PUMA "G0600010, G06000108" +County and PUMA "G0600010, G06000109" +County and PUMA "G0600010, G06000110" +County and PUMA "G0600030, G06000300" +County and PUMA "G0600050, G06000300" +County and PUMA "G0600070, G06000701" +County and PUMA "G0600070, G06000702" +County and PUMA "G0600090, G06000300" +County and PUMA "G0600110, G06001100" +County and PUMA "G0600130, G06001301" +County and PUMA "G0600130, G06001302" +County and PUMA "G0600130, G06001303" +County and PUMA "G0600130, G06001304" +County and PUMA "G0600130, G06001305" +County and PUMA "G0600130, G06001306" +County and PUMA "G0600130, G06001307" +County and PUMA "G0600130, G06001308" +County and PUMA "G0600130, G06001309" +County and PUMA "G0600150, G06001500" +County and PUMA "G0600170, G06001700" +County and PUMA "G0600190, G06001901" +County and PUMA "G0600190, G06001902" +County and PUMA "G0600190, G06001903" +County and PUMA "G0600190, G06001904" +County and PUMA "G0600190, G06001905" +County and PUMA "G0600190, G06001906" +County and PUMA "G0600190, G06001907" +County and PUMA "G0600210, G06001100" +County and PUMA "G0600230, G06002300" +County and PUMA "G0600250, G06002500" +County and PUMA "G0600270, G06000300" +County and PUMA "G0600290, G06002901" +County and PUMA "G0600290, G06002902" +County and PUMA "G0600290, G06002903" +County and PUMA "G0600290, G06002904" +County and PUMA "G0600290, G06002905" +County and PUMA "G0600310, G06003100" +County and PUMA "G0600330, G06003300" +County and PUMA "G0600350, G06001500" +County and PUMA "G0600370, G06003701" +County and PUMA "G0600370, G06003702" +County and PUMA "G0600370, G06003703" +County and PUMA "G0600370, G06003704" +County and PUMA "G0600370, G06003705" +County and PUMA "G0600370, G06003706" +County and PUMA "G0600370, G06003707" +County and PUMA "G0600370, G06003708" +County and PUMA "G0600370, G06003709" +County and PUMA "G0600370, G06003710" +County and PUMA "G0600370, G06003711" +County and PUMA "G0600370, G06003712" +County and PUMA "G0600370, G06003713" +County and PUMA "G0600370, G06003714" +County and PUMA "G0600370, G06003715" +County and PUMA "G0600370, G06003716" +County and PUMA "G0600370, G06003717" +County and PUMA "G0600370, G06003718" +County and PUMA "G0600370, G06003719" +County and PUMA "G0600370, G06003720" +County and PUMA "G0600370, G06003721" +County and PUMA "G0600370, G06003722" +County and PUMA "G0600370, G06003723" +County and PUMA "G0600370, G06003724" +County and PUMA "G0600370, G06003725" +County and PUMA "G0600370, G06003726" +County and PUMA "G0600370, G06003727" +County and PUMA "G0600370, G06003728" +County and PUMA "G0600370, G06003729" +County and PUMA "G0600370, G06003730" +County and PUMA "G0600370, G06003731" +County and PUMA "G0600370, G06003732" +County and PUMA "G0600370, G06003733" +County and PUMA "G0600370, G06003734" +County and PUMA "G0600370, G06003735" +County and PUMA "G0600370, G06003736" +County and PUMA "G0600370, G06003737" +County and PUMA "G0600370, G06003738" +County and PUMA "G0600370, G06003739" +County and PUMA "G0600370, G06003740" +County and PUMA "G0600370, G06003741" +County and PUMA "G0600370, G06003742" +County and PUMA "G0600370, G06003743" +County and PUMA "G0600370, G06003744" +County and PUMA "G0600370, G06003745" +County and PUMA "G0600370, G06003746" +County and PUMA "G0600370, G06003747" +County and PUMA "G0600370, G06003748" +County and PUMA "G0600370, G06003749" +County and PUMA "G0600370, G06003750" +County and PUMA "G0600370, G06003751" +County and PUMA "G0600370, G06003752" +County and PUMA "G0600370, G06003753" +County and PUMA "G0600370, G06003754" +County and PUMA "G0600370, G06003755" +County and PUMA "G0600370, G06003756" +County and PUMA "G0600370, G06003757" +County and PUMA "G0600370, G06003758" +County and PUMA "G0600370, G06003759" +County and PUMA "G0600370, G06003760" +County and PUMA "G0600370, G06003761" +County and PUMA "G0600370, G06003762" +County and PUMA "G0600370, G06003763" +County and PUMA "G0600370, G06003764" +County and PUMA "G0600370, G06003765" +County and PUMA "G0600370, G06003766" +County and PUMA "G0600370, G06003767" +County and PUMA "G0600370, G06003768" +County and PUMA "G0600370, G06003769" +County and PUMA "G0600390, G06003900" +County and PUMA "G0600410, G06004101" +County and PUMA "G0600410, G06004102" +County and PUMA "G0600430, G06000300" +County and PUMA "G0600450, G06003300" +County and PUMA "G0600470, G06004701" +County and PUMA "G0600470, G06004702" +County and PUMA "G0600490, G06001500" +County and PUMA "G0600510, G06000300" +County and PUMA "G0600530, G06005301" +County and PUMA "G0600530, G06005302" +County and PUMA "G0600530, G06005303" +County and PUMA "G0600550, G06005500" +County and PUMA "G0600570, G06005700" +County and PUMA "G0600590, G06005901" +County and PUMA "G0600590, G06005902" +County and PUMA "G0600590, G06005903" +County and PUMA "G0600590, G06005904" +County and PUMA "G0600590, G06005905" +County and PUMA "G0600590, G06005906" +County and PUMA "G0600590, G06005907" +County and PUMA "G0600590, G06005908" +County and PUMA "G0600590, G06005909" +County and PUMA "G0600590, G06005910" +County and PUMA "G0600590, G06005911" +County and PUMA "G0600590, G06005912" +County and PUMA "G0600590, G06005913" +County and PUMA "G0600590, G06005914" +County and PUMA "G0600590, G06005915" +County and PUMA "G0600590, G06005916" +County and PUMA "G0600590, G06005917" +County and PUMA "G0600590, G06005918" +County and PUMA "G0600610, G06006101" +County and PUMA "G0600610, G06006102" +County and PUMA "G0600610, G06006103" +County and PUMA "G0600630, G06001500" +County and PUMA "G0600650, G06006501" +County and PUMA "G0600650, G06006502" +County and PUMA "G0600650, G06006503" +County and PUMA "G0600650, G06006504" +County and PUMA "G0600650, G06006505" +County and PUMA "G0600650, G06006506" +County and PUMA "G0600650, G06006507" +County and PUMA "G0600650, G06006508" +County and PUMA "G0600650, G06006509" +County and PUMA "G0600650, G06006510" +County and PUMA "G0600650, G06006511" +County and PUMA "G0600650, G06006512" +County and PUMA "G0600650, G06006513" +County and PUMA "G0600650, G06006514" +County and PUMA "G0600650, G06006515" +County and PUMA "G0600670, G06006701" +County and PUMA "G0600670, G06006702" +County and PUMA "G0600670, G06006703" +County and PUMA "G0600670, G06006704" +County and PUMA "G0600670, G06006705" +County and PUMA "G0600670, G06006706" +County and PUMA "G0600670, G06006707" +County and PUMA "G0600670, G06006708" +County and PUMA "G0600670, G06006709" +County and PUMA "G0600670, G06006710" +County and PUMA "G0600670, G06006711" +County and PUMA "G0600670, G06006712" +County and PUMA "G0600690, G06005303" +County and PUMA "G0600710, G06007101" +County and PUMA "G0600710, G06007102" +County and PUMA "G0600710, G06007103" +County and PUMA "G0600710, G06007104" +County and PUMA "G0600710, G06007105" +County and PUMA "G0600710, G06007106" +County and PUMA "G0600710, G06007107" +County and PUMA "G0600710, G06007108" +County and PUMA "G0600710, G06007109" +County and PUMA "G0600710, G06007110" +County and PUMA "G0600710, G06007111" +County and PUMA "G0600710, G06007112" +County and PUMA "G0600710, G06007113" +County and PUMA "G0600710, G06007114" +County and PUMA "G0600710, G06007115" +County and PUMA "G0600730, G06007301" +County and PUMA "G0600730, G06007302" +County and PUMA "G0600730, G06007303" +County and PUMA "G0600730, G06007304" +County and PUMA "G0600730, G06007305" +County and PUMA "G0600730, G06007306" +County and PUMA "G0600730, G06007307" +County and PUMA "G0600730, G06007308" +County and PUMA "G0600730, G06007309" +County and PUMA "G0600730, G06007310" +County and PUMA "G0600730, G06007311" +County and PUMA "G0600730, G06007312" +County and PUMA "G0600730, G06007313" +County and PUMA "G0600730, G06007314" +County and PUMA "G0600730, G06007315" +County and PUMA "G0600730, G06007316" +County and PUMA "G0600730, G06007317" +County and PUMA "G0600730, G06007318" +County and PUMA "G0600730, G06007319" +County and PUMA "G0600730, G06007320" +County and PUMA "G0600730, G06007321" +County and PUMA "G0600730, G06007322" +County and PUMA "G0600750, G06007501" +County and PUMA "G0600750, G06007502" +County and PUMA "G0600750, G06007503" +County and PUMA "G0600750, G06007504" +County and PUMA "G0600750, G06007505" +County and PUMA "G0600750, G06007506" +County and PUMA "G0600750, G06007507" +County and PUMA "G0600770, G06007701" +County and PUMA "G0600770, G06007702" +County and PUMA "G0600770, G06007703" +County and PUMA "G0600770, G06007704" +County and PUMA "G0600790, G06007901" +County and PUMA "G0600790, G06007902" +County and PUMA "G0600810, G06008101" +County and PUMA "G0600810, G06008102" +County and PUMA "G0600810, G06008103" +County and PUMA "G0600810, G06008104" +County and PUMA "G0600810, G06008105" +County and PUMA "G0600810, G06008106" +County and PUMA "G0600830, G06008301" +County and PUMA "G0600830, G06008302" +County and PUMA "G0600830, G06008303" +County and PUMA "G0600850, G06008501" +County and PUMA "G0600850, G06008502" +County and PUMA "G0600850, G06008503" +County and PUMA "G0600850, G06008504" +County and PUMA "G0600850, G06008505" +County and PUMA "G0600850, G06008506" +County and PUMA "G0600850, G06008507" +County and PUMA "G0600850, G06008508" +County and PUMA "G0600850, G06008509" +County and PUMA "G0600850, G06008510" +County and PUMA "G0600850, G06008511" +County and PUMA "G0600850, G06008512" +County and PUMA "G0600850, G06008513" +County and PUMA "G0600850, G06008514" +County and PUMA "G0600870, G06008701" +County and PUMA "G0600870, G06008702" +County and PUMA "G0600890, G06008900" +County and PUMA "G0600910, G06005700" +County and PUMA "G0600930, G06001500" +County and PUMA "G0600950, G06009501" +County and PUMA "G0600950, G06009502" +County and PUMA "G0600950, G06009503" +County and PUMA "G0600970, G06009701" +County and PUMA "G0600970, G06009702" +County and PUMA "G0600970, G06009703" +County and PUMA "G0600990, G06009901" +County and PUMA "G0600990, G06009902" +County and PUMA "G0600990, G06009903" +County and PUMA "G0600990, G06009904" +County and PUMA "G0601010, G06010100" +County and PUMA "G0601030, G06001100" +County and PUMA "G0601050, G06001100" +County and PUMA "G0601070, G06010701" +County and PUMA "G0601070, G06010702" +County and PUMA "G0601070, G06010703" +County and PUMA "G0601090, G06000300" +County and PUMA "G0601110, G06011101" +County and PUMA "G0601110, G06011102" +County and PUMA "G0601110, G06011103" +County and PUMA "G0601110, G06011104" +County and PUMA "G0601110, G06011105" +County and PUMA "G0601110, G06011106" +County and PUMA "G0601130, G06011300" +County and PUMA "G0601150, G06010100" +County and PUMA "G0800010, G08000804" +County and PUMA "G0800010, G08000805" +County and PUMA "G0800010, G08000806" +County and PUMA "G0800010, G08000807" +County and PUMA "G0800010, G08000809" +County and PUMA "G0800010, G08000810" +County and PUMA "G0800010, G08000817" +County and PUMA "G0800010, G08000824" +County and PUMA "G0800030, G08000800" +County and PUMA "G0800050, G08000808" +County and PUMA "G0800050, G08000809" +County and PUMA "G0800050, G08000810" +County and PUMA "G0800050, G08000811" +County and PUMA "G0800050, G08000815" +County and PUMA "G0800050, G08000820" +County and PUMA "G0800050, G08000824" +County and PUMA "G0800070, G08000900" +County and PUMA "G0800090, G08000800" +County and PUMA "G0800110, G08000100" +County and PUMA "G0800130, G08000801" +County and PUMA "G0800130, G08000802" +County and PUMA "G0800130, G08000803" +County and PUMA "G0800130, G08000804" +County and PUMA "G0800140, G08000804" +County and PUMA "G0800140, G08000805" +County and PUMA "G0800150, G08000600" +County and PUMA "G0800170, G08000100" +County and PUMA "G0800190, G08000801" +County and PUMA "G0800210, G08000800" +County and PUMA "G0800230, G08000800" +County and PUMA "G0800250, G08000100" +County and PUMA "G0800270, G08000600" +County and PUMA "G0800290, G08001002" +County and PUMA "G0800310, G08000812" +County and PUMA "G0800310, G08000813" +County and PUMA "G0800310, G08000814" +County and PUMA "G0800310, G08000815" +County and PUMA "G0800310, G08000816" +County and PUMA "G0800330, G08000900" +County and PUMA "G0800350, G08000821" +County and PUMA "G0800350, G08000822" +County and PUMA "G0800350, G08000823" +County and PUMA "G0800370, G08000400" +County and PUMA "G0800390, G08000100" +County and PUMA "G0800390, G08000823" +County and PUMA "G0800410, G08004101" +County and PUMA "G0800410, G08004102" +County and PUMA "G0800410, G08004103" +County and PUMA "G0800410, G08004104" +County and PUMA "G0800410, G08004105" +County and PUMA "G0800410, G08004106" +County and PUMA "G0800430, G08000600" +County and PUMA "G0800450, G08000200" +County and PUMA "G0800470, G08000801" +County and PUMA "G0800490, G08000400" +County and PUMA "G0800510, G08000900" +County and PUMA "G0800530, G08000900" +County and PUMA "G0800550, G08000600" +County and PUMA "G0800570, G08000400" +County and PUMA "G0800590, G08000801" +County and PUMA "G0800590, G08000804" +County and PUMA "G0800590, G08000805" +County and PUMA "G0800590, G08000817" +County and PUMA "G0800590, G08000818" +County and PUMA "G0800590, G08000819" +County and PUMA "G0800590, G08000820" +County and PUMA "G0800590, G08000821" +County and PUMA "G0800610, G08000100" +County and PUMA "G0800630, G08000100" +County and PUMA "G0800650, G08000600" +County and PUMA "G0800670, G08000900" +County and PUMA "G0800690, G08000102" +County and PUMA "G0800690, G08000103" +County and PUMA "G0800710, G08000800" +County and PUMA "G0800730, G08000100" +County and PUMA "G0800750, G08000100" +County and PUMA "G0800770, G08001001" +County and PUMA "G0800770, G08001002" +County and PUMA "G0800790, G08000800" +County and PUMA "G0800810, G08000200" +County and PUMA "G0800830, G08000900" +County and PUMA "G0800850, G08001002" +County and PUMA "G0800870, G08000100" +County and PUMA "G0800890, G08000800" +County and PUMA "G0800910, G08001002" +County and PUMA "G0800930, G08000600" +County and PUMA "G0800950, G08000100" +County and PUMA "G0800970, G08000400" +County and PUMA "G0800990, G08000800" +County and PUMA "G0801010, G08000600" +County and PUMA "G0801010, G08000700" +County and PUMA "G0801010, G08000800" +County and PUMA "G0801030, G08000200" +County and PUMA "G0801050, G08000800" +County and PUMA "G0801070, G08000200" +County and PUMA "G0801090, G08000800" +County and PUMA "G0801110, G08000900" +County and PUMA "G0801130, G08001002" +County and PUMA "G0801150, G08000100" +County and PUMA "G0801170, G08000400" +County and PUMA "G0801190, G08004101" +County and PUMA "G0801210, G08000100" +County and PUMA "G0801230, G08000100" +County and PUMA "G0801230, G08000300" +County and PUMA "G0801230, G08000802" +County and PUMA "G0801230, G08000824" +County and PUMA "G0801250, G08000100" +County and PUMA "G0900010, G09000100" +County and PUMA "G0900010, G09000101" +County and PUMA "G0900010, G09000102" +County and PUMA "G0900010, G09000103" +County and PUMA "G0900010, G09000104" +County and PUMA "G0900010, G09000105" +County and PUMA "G0900030, G09000300" +County and PUMA "G0900030, G09000301" +County and PUMA "G0900030, G09000302" +County and PUMA "G0900030, G09000303" +County and PUMA "G0900030, G09000304" +County and PUMA "G0900030, G09000305" +County and PUMA "G0900030, G09000306" +County and PUMA "G0900050, G09000500" +County and PUMA "G0900070, G09000700" +County and PUMA "G0900090, G09000900" +County and PUMA "G0900090, G09000901" +County and PUMA "G0900090, G09000902" +County and PUMA "G0900090, G09000903" +County and PUMA "G0900090, G09000904" +County and PUMA "G0900090, G09000905" +County and PUMA "G0900090, G09000906" +County and PUMA "G0900110, G09001100" +County and PUMA "G0900110, G09001101" +County and PUMA "G0900130, G09001300" +County and PUMA "G0900150, G09001500" +County and PUMA "G1000010, G10000200" +County and PUMA "G1000030, G10000101" +County and PUMA "G1000030, G10000102" +County and PUMA "G1000030, G10000103" +County and PUMA "G1000030, G10000104" +County and PUMA "G1000050, G10000300" +County and PUMA "G1100010, G11000101" +County and PUMA "G1100010, G11000102" +County and PUMA "G1100010, G11000103" +County and PUMA "G1100010, G11000104" +County and PUMA "G1100010, G11000105" +County and PUMA "G1200010, G12000101" +County and PUMA "G1200010, G12000102" +County and PUMA "G1200030, G12008900" +County and PUMA "G1200050, G12000500" +County and PUMA "G1200070, G12002300" +County and PUMA "G1200090, G12000901" +County and PUMA "G1200090, G12000902" +County and PUMA "G1200090, G12000903" +County and PUMA "G1200090, G12000904" +County and PUMA "G1200110, G12001101" +County and PUMA "G1200110, G12001102" +County and PUMA "G1200110, G12001103" +County and PUMA "G1200110, G12001104" +County and PUMA "G1200110, G12001105" +County and PUMA "G1200110, G12001106" +County and PUMA "G1200110, G12001107" +County and PUMA "G1200110, G12001108" +County and PUMA "G1200110, G12001109" +County and PUMA "G1200110, G12001110" +County and PUMA "G1200110, G12001111" +County and PUMA "G1200110, G12001112" +County and PUMA "G1200110, G12001113" +County and PUMA "G1200110, G12001114" +County and PUMA "G1200130, G12006300" +County and PUMA "G1200150, G12001500" +County and PUMA "G1200170, G12001701" +County and PUMA "G1200190, G12001900" +County and PUMA "G1200210, G12002101" +County and PUMA "G1200210, G12002102" +County and PUMA "G1200210, G12002103" +County and PUMA "G1200230, G12002300" +County and PUMA "G1200270, G12002700" +County and PUMA "G1200290, G12002300" +County and PUMA "G1200310, G12003101" +County and PUMA "G1200310, G12003102" +County and PUMA "G1200310, G12003103" +County and PUMA "G1200310, G12003104" +County and PUMA "G1200310, G12003105" +County and PUMA "G1200310, G12003106" +County and PUMA "G1200310, G12003107" +County and PUMA "G1200330, G12003301" +County and PUMA "G1200330, G12003302" +County and PUMA "G1200350, G12003500" +County and PUMA "G1200370, G12006300" +County and PUMA "G1200390, G12006300" +County and PUMA "G1200410, G12002300" +County and PUMA "G1200430, G12009300" +County and PUMA "G1200450, G12006300" +County and PUMA "G1200470, G12012100" +County and PUMA "G1200490, G12002700" +County and PUMA "G1200510, G12009300" +County and PUMA "G1200530, G12005301" +County and PUMA "G1200550, G12002700" +County and PUMA "G1200550, G12009300" +County and PUMA "G1200570, G12005701" +County and PUMA "G1200570, G12005702" +County and PUMA "G1200570, G12005703" +County and PUMA "G1200570, G12005704" +County and PUMA "G1200570, G12005705" +County and PUMA "G1200570, G12005706" +County and PUMA "G1200570, G12005707" +County and PUMA "G1200570, G12005708" +County and PUMA "G1200590, G12000500" +County and PUMA "G1200610, G12006100" +County and PUMA "G1200630, G12006300" +County and PUMA "G1200650, G12006300" +County and PUMA "G1200670, G12012100" +County and PUMA "G1200690, G12006901" +County and PUMA "G1200690, G12006902" +County and PUMA "G1200690, G12006903" +County and PUMA "G1200710, G12007101" +County and PUMA "G1200710, G12007102" +County and PUMA "G1200710, G12007103" +County and PUMA "G1200710, G12007104" +County and PUMA "G1200710, G12007105" +County and PUMA "G1200730, G12007300" +County and PUMA "G1200730, G12007301" +County and PUMA "G1200750, G12002300" +County and PUMA "G1200770, G12006300" +County and PUMA "G1200790, G12012100" +County and PUMA "G1200810, G12008101" +County and PUMA "G1200810, G12008102" +County and PUMA "G1200810, G12008103" +County and PUMA "G1200830, G12008301" +County and PUMA "G1200830, G12008302" +County and PUMA "G1200830, G12008303" +County and PUMA "G1200850, G12008500" +County and PUMA "G1200860, G12008601" +County and PUMA "G1200860, G12008602" +County and PUMA "G1200860, G12008603" +County and PUMA "G1200860, G12008604" +County and PUMA "G1200860, G12008605" +County and PUMA "G1200860, G12008606" +County and PUMA "G1200860, G12008607" +County and PUMA "G1200860, G12008608" +County and PUMA "G1200860, G12008609" +County and PUMA "G1200860, G12008610" +County and PUMA "G1200860, G12008611" +County and PUMA "G1200860, G12008612" +County and PUMA "G1200860, G12008613" +County and PUMA "G1200860, G12008614" +County and PUMA "G1200860, G12008615" +County and PUMA "G1200860, G12008616" +County and PUMA "G1200860, G12008617" +County and PUMA "G1200860, G12008618" +County and PUMA "G1200860, G12008619" +County and PUMA "G1200860, G12008620" +County and PUMA "G1200860, G12008621" +County and PUMA "G1200860, G12008622" +County and PUMA "G1200860, G12008623" +County and PUMA "G1200860, G12008624" +County and PUMA "G1200860, G12008700" +County and PUMA "G1200870, G12008700" +County and PUMA "G1200890, G12008900" +County and PUMA "G1200910, G12009100" +County and PUMA "G1200930, G12009300" +County and PUMA "G1200950, G12009501" +County and PUMA "G1200950, G12009502" +County and PUMA "G1200950, G12009503" +County and PUMA "G1200950, G12009504" +County and PUMA "G1200950, G12009505" +County and PUMA "G1200950, G12009506" +County and PUMA "G1200950, G12009507" +County and PUMA "G1200950, G12009508" +County and PUMA "G1200950, G12009509" +County and PUMA "G1200950, G12009510" +County and PUMA "G1200970, G12009701" +County and PUMA "G1200970, G12009702" +County and PUMA "G1200990, G12009901" +County and PUMA "G1200990, G12009902" +County and PUMA "G1200990, G12009903" +County and PUMA "G1200990, G12009904" +County and PUMA "G1200990, G12009905" +County and PUMA "G1200990, G12009906" +County and PUMA "G1200990, G12009907" +County and PUMA "G1200990, G12009908" +County and PUMA "G1200990, G12009909" +County and PUMA "G1200990, G12009910" +County and PUMA "G1200990, G12009911" +County and PUMA "G1201010, G12010101" +County and PUMA "G1201010, G12010102" +County and PUMA "G1201010, G12010103" +County and PUMA "G1201010, G12010104" +County and PUMA "G1201030, G12010301" +County and PUMA "G1201030, G12010302" +County and PUMA "G1201030, G12010303" +County and PUMA "G1201030, G12010304" +County and PUMA "G1201030, G12010305" +County and PUMA "G1201030, G12010306" +County and PUMA "G1201030, G12010307" +County and PUMA "G1201030, G12010308" +County and PUMA "G1201050, G12010501" +County and PUMA "G1201050, G12010502" +County and PUMA "G1201050, G12010503" +County and PUMA "G1201050, G12010504" +County and PUMA "G1201070, G12010700" +County and PUMA "G1201090, G12010700" +County and PUMA "G1201090, G12010900" +County and PUMA "G1201110, G12011101" +County and PUMA "G1201110, G12011102" +County and PUMA "G1201130, G12011300" +County and PUMA "G1201150, G12011501" +County and PUMA "G1201150, G12011502" +County and PUMA "G1201150, G12011503" +County and PUMA "G1201170, G12011701" +County and PUMA "G1201170, G12011702" +County and PUMA "G1201170, G12011703" +County and PUMA "G1201170, G12011704" +County and PUMA "G1201190, G12006902" +County and PUMA "G1201190, G12006903" +County and PUMA "G1201210, G12012100" +County and PUMA "G1201230, G12012100" +County and PUMA "G1201250, G12002300" +County and PUMA "G1201270, G12003500" +County and PUMA "G1201270, G12012701" +County and PUMA "G1201270, G12012702" +County and PUMA "G1201270, G12012703" +County and PUMA "G1201270, G12012704" +County and PUMA "G1201290, G12006300" +County and PUMA "G1201310, G12000500" +County and PUMA "G1201330, G12000500" +County and PUMA "G1300010, G13001200" +County and PUMA "G1300030, G13000500" +County and PUMA "G1300050, G13000500" +County and PUMA "G1300070, G13001100" +County and PUMA "G1300090, G13001600" +County and PUMA "G1300110, G13003500" +County and PUMA "G1300130, G13003800" +County and PUMA "G1300150, G13002900" +County and PUMA "G1300170, G13000700" +County and PUMA "G1300190, G13000700" +County and PUMA "G1300210, G13001400" +County and PUMA "G1300230, G13001300" +County and PUMA "G1300250, G13000500" +County and PUMA "G1300270, G13000700" +County and PUMA "G1300290, G13000200" +County and PUMA "G1300310, G13000300" +County and PUMA "G1300330, G13004200" +County and PUMA "G1300350, G13001900" +County and PUMA "G1300370, G13001100" +County and PUMA "G1300390, G13000100" +County and PUMA "G1300430, G13001300" +County and PUMA "G1300450, G13002300" +County and PUMA "G1300470, G13002600" +County and PUMA "G1300490, G13000500" +County and PUMA "G1300510, G13000401" +County and PUMA "G1300510, G13000402" +County and PUMA "G1300530, G13001700" +County and PUMA "G1300550, G13002600" +County and PUMA "G1300570, G13003101" +County and PUMA "G1300570, G13003102" +County and PUMA "G1300590, G13003600" +County and PUMA "G1300610, G13001800" +County and PUMA "G1300630, G13005001" +County and PUMA "G1300630, G13005002" +County and PUMA "G1300650, G13000500" +County and PUMA "G1300670, G13003001" +County and PUMA "G1300670, G13003002" +County and PUMA "G1300670, G13003003" +County and PUMA "G1300670, G13003004" +County and PUMA "G1300670, G13003005" +County and PUMA "G1300690, G13000500" +County and PUMA "G1300710, G13000800" +County and PUMA "G1300730, G13004100" +County and PUMA "G1300750, G13000700" +County and PUMA "G1300770, G13002100" +County and PUMA "G1300790, G13001600" +County and PUMA "G1300810, G13001800" +County and PUMA "G1300830, G13002600" +County and PUMA "G1300850, G13003200" +County and PUMA "G1300870, G13001100" +County and PUMA "G1300890, G13001007" +County and PUMA "G1300890, G13001008" +County and PUMA "G1300890, G13002001" +County and PUMA "G1300890, G13002002" +County and PUMA "G1300890, G13002003" +County and PUMA "G1300890, G13002004" +County and PUMA "G1300910, G13001300" +County and PUMA "G1300930, G13001800" +County and PUMA "G1300950, G13000900" +County and PUMA "G1300970, G13004400" +County and PUMA "G1300990, G13001100" +County and PUMA "G1301010, G13000500" +County and PUMA "G1301030, G13000300" +County and PUMA "G1301050, G13003700" +County and PUMA "G1301070, G13001300" +County and PUMA "G1301090, G13001200" +County and PUMA "G1301110, G13002800" +County and PUMA "G1301130, G13002400" +County and PUMA "G1301150, G13002500" +County and PUMA "G1301170, G13003300" +County and PUMA "G1301190, G13003500" +County and PUMA "G1301210, G13001001" +County and PUMA "G1301210, G13001002" +County and PUMA "G1301210, G13001003" +County and PUMA "G1301210, G13001004" +County and PUMA "G1301210, G13001005" +County and PUMA "G1301210, G13001006" +County and PUMA "G1301210, G13001007" +County and PUMA "G1301210, G13004600" +County and PUMA "G1301230, G13002800" +County and PUMA "G1301250, G13004200" +County and PUMA "G1301270, G13000100" +County and PUMA "G1301290, G13002800" +County and PUMA "G1301310, G13001100" +County and PUMA "G1301330, G13003700" +County and PUMA "G1301350, G13004001" +County and PUMA "G1301350, G13004002" +County and PUMA "G1301350, G13004003" +County and PUMA "G1301350, G13004004" +County and PUMA "G1301350, G13004005" +County and PUMA "G1301350, G13004006" +County and PUMA "G1301370, G13003500" +County and PUMA "G1301390, G13003400" +County and PUMA "G1301410, G13004200" +County and PUMA "G1301430, G13002500" +County and PUMA "G1301450, G13001800" +County and PUMA "G1301470, G13003500" +County and PUMA "G1301490, G13002200" +County and PUMA "G1301510, G13006001" +County and PUMA "G1301510, G13006002" +County and PUMA "G1301530, G13001500" +County and PUMA "G1301550, G13000700" +County and PUMA "G1301570, G13003800" +County and PUMA "G1301590, G13003900" +County and PUMA "G1301610, G13001200" +County and PUMA "G1301630, G13004200" +County and PUMA "G1301650, G13004200" +County and PUMA "G1301670, G13001300" +County and PUMA "G1301690, G13001600" +County and PUMA "G1301710, G13001900" +County and PUMA "G1301730, G13000500" +County and PUMA "G1301750, G13001300" +County and PUMA "G1301770, G13000900" +County and PUMA "G1301790, G13000200" +County and PUMA "G1301810, G13004200" +County and PUMA "G1301830, G13000200" +County and PUMA "G1301850, G13000600" +County and PUMA "G1301870, G13003200" +County and PUMA "G1301890, G13004200" +County and PUMA "G1301910, G13000100" +County and PUMA "G1301930, G13001800" +County and PUMA "G1301950, G13003700" +County and PUMA "G1301970, G13001800" +County and PUMA "G1301990, G13002200" +County and PUMA "G1302010, G13001100" +County and PUMA "G1302050, G13001100" +County and PUMA "G1302070, G13001600" +County and PUMA "G1302090, G13001200" +County and PUMA "G1302110, G13003900" +County and PUMA "G1302130, G13002800" +County and PUMA "G1302150, G13001700" +County and PUMA "G1302170, G13004300" +County and PUMA "G1302190, G13003700" +County and PUMA "G1302210, G13003700" +County and PUMA "G1302230, G13004500" +County and PUMA "G1302250, G13001600" +County and PUMA "G1302270, G13002800" +County and PUMA "G1302290, G13000500" +County and PUMA "G1302310, G13001900" +County and PUMA "G1302330, G13002500" +County and PUMA "G1302350, G13001500" +County and PUMA "G1302370, G13001600" +County and PUMA "G1302390, G13001800" +County and PUMA "G1302410, G13003200" +County and PUMA "G1302430, G13001800" +County and PUMA "G1302450, G13004000" +County and PUMA "G1302470, G13004300" +County and PUMA "G1302490, G13001800" +County and PUMA "G1302510, G13000300" +County and PUMA "G1302530, G13001100" +County and PUMA "G1302550, G13001900" +County and PUMA "G1302570, G13003500" +County and PUMA "G1302590, G13001800" +County and PUMA "G1302610, G13001800" +County and PUMA "G1302630, G13001800" +County and PUMA "G1302650, G13004200" +County and PUMA "G1302670, G13001200" +County and PUMA "G1302690, G13001800" +County and PUMA "G1302710, G13001200" +County and PUMA "G1302730, G13001100" +County and PUMA "G1302750, G13000800" +County and PUMA "G1302770, G13000700" +County and PUMA "G1302790, G13001200" +County and PUMA "G1302810, G13003200" +County and PUMA "G1302830, G13001300" +County and PUMA "G1302850, G13002200" +County and PUMA "G1302870, G13000700" +County and PUMA "G1302890, G13001600" +County and PUMA "G1302910, G13003200" +County and PUMA "G1302930, G13001900" +County and PUMA "G1302950, G13002600" +County and PUMA "G1302970, G13003900" +County and PUMA "G1302990, G13000500" +County and PUMA "G1303010, G13004200" +County and PUMA "G1303030, G13004200" +County and PUMA "G1303050, G13001200" +County and PUMA "G1303070, G13001800" +County and PUMA "G1303090, G13001200" +County and PUMA "G1303110, G13003200" +County and PUMA "G1303130, G13002700" +County and PUMA "G1303150, G13001300" +County and PUMA "G1303170, G13004200" +County and PUMA "G1303190, G13001600" +County and PUMA "G1303210, G13000800" +County and PUMA "G1500010, G15000200" +County and PUMA "G1500030, G15000301" +County and PUMA "G1500030, G15000302" +County and PUMA "G1500030, G15000303" +County and PUMA "G1500030, G15000304" +County and PUMA "G1500030, G15000305" +County and PUMA "G1500030, G15000306" +County and PUMA "G1500030, G15000307" +County and PUMA "G1500030, G15000308" +County and PUMA "G1500050, G15000100" +County and PUMA "G1500070, G15000100" +County and PUMA "G1500090, G15000100" +County and PUMA "G1600010, G16000400" +County and PUMA "G1600010, G16000600" +County and PUMA "G1600010, G16000701" +County and PUMA "G1600010, G16000702" +County and PUMA "G1600010, G16000800" +County and PUMA "G1600030, G16000300" +County and PUMA "G1600050, G16001300" +County and PUMA "G1600070, G16001300" +County and PUMA "G1600090, G16000100" +County and PUMA "G1600110, G16001100" +County and PUMA "G1600110, G16001300" +County and PUMA "G1600130, G16001000" +County and PUMA "G1600150, G16000300" +County and PUMA "G1600170, G16000100" +County and PUMA "G1600190, G16001200" +County and PUMA "G1600210, G16000100" +County and PUMA "G1600230, G16000300" +County and PUMA "G1600250, G16001000" +County and PUMA "G1600270, G16000400" +County and PUMA "G1600270, G16000500" +County and PUMA "G1600270, G16000600" +County and PUMA "G1600290, G16001300" +County and PUMA "G1600310, G16000900" +County and PUMA "G1600330, G16000300" +County and PUMA "G1600350, G16000300" +County and PUMA "G1600370, G16000300" +County and PUMA "G1600390, G16001000" +County and PUMA "G1600410, G16001300" +County and PUMA "G1600430, G16001100" +County and PUMA "G1600450, G16000400" +County and PUMA "G1600470, G16001000" +County and PUMA "G1600490, G16000300" +County and PUMA "G1600510, G16001100" +County and PUMA "G1600530, G16001000" +County and PUMA "G1600550, G16000100" +County and PUMA "G1600550, G16000200" +County and PUMA "G1600570, G16000100" +County and PUMA "G1600590, G16000300" +County and PUMA "G1600610, G16000300" +County and PUMA "G1600630, G16001000" +County and PUMA "G1600650, G16001100" +County and PUMA "G1600670, G16001000" +County and PUMA "G1600690, G16000300" +County and PUMA "G1600710, G16001300" +County and PUMA "G1600730, G16000500" +County and PUMA "G1600750, G16000400" +County and PUMA "G1600770, G16001300" +County and PUMA "G1600790, G16000100" +County and PUMA "G1600810, G16001100" +County and PUMA "G1600830, G16000900" +County and PUMA "G1600850, G16000300" +County and PUMA "G1600870, G16000400" +County and PUMA "G1700010, G17000300" +County and PUMA "G1700030, G17000800" +County and PUMA "G1700050, G17000501" +County and PUMA "G1700070, G17002901" +County and PUMA "G1700090, G17000300" +County and PUMA "G1700110, G17002501" +County and PUMA "G1700130, G17000401" +County and PUMA "G1700150, G17000104" +County and PUMA "G1700170, G17000401" +County and PUMA "G1700190, G17002100" +County and PUMA "G1700210, G17001602" +County and PUMA "G1700230, G17000700" +County and PUMA "G1700250, G17000700" +County and PUMA "G1700270, G17000501" +County and PUMA "G1700290, G17000600" +County and PUMA "G1700310, G17003401" +County and PUMA "G1700310, G17003407" +County and PUMA "G1700310, G17003408" +County and PUMA "G1700310, G17003409" +County and PUMA "G1700310, G17003410" +County and PUMA "G1700310, G17003411" +County and PUMA "G1700310, G17003412" +County and PUMA "G1700310, G17003413" +County and PUMA "G1700310, G17003414" +County and PUMA "G1700310, G17003415" +County and PUMA "G1700310, G17003416" +County and PUMA "G1700310, G17003417" +County and PUMA "G1700310, G17003418" +County and PUMA "G1700310, G17003419" +County and PUMA "G1700310, G17003420" +County and PUMA "G1700310, G17003421" +County and PUMA "G1700310, G17003422" +County and PUMA "G1700310, G17003501" +County and PUMA "G1700310, G17003502" +County and PUMA "G1700310, G17003503" +County and PUMA "G1700310, G17003504" +County and PUMA "G1700310, G17003520" +County and PUMA "G1700310, G17003521" +County and PUMA "G1700310, G17003522" +County and PUMA "G1700310, G17003523" +County and PUMA "G1700310, G17003524" +County and PUMA "G1700310, G17003525" +County and PUMA "G1700310, G17003526" +County and PUMA "G1700310, G17003527" +County and PUMA "G1700310, G17003528" +County and PUMA "G1700310, G17003529" +County and PUMA "G1700310, G17003530" +County and PUMA "G1700310, G17003531" +County and PUMA "G1700310, G17003532" +County and PUMA "G1700330, G17000700" +County and PUMA "G1700350, G17000600" +County and PUMA "G1700370, G17002601" +County and PUMA "G1700390, G17001602" +County and PUMA "G1700410, G17000600" +County and PUMA "G1700430, G17003202" +County and PUMA "G1700430, G17003203" +County and PUMA "G1700430, G17003204" +County and PUMA "G1700430, G17003205" +County and PUMA "G1700430, G17003207" +County and PUMA "G1700430, G17003208" +County and PUMA "G1700430, G17003209" +County and PUMA "G1700450, G17000600" +County and PUMA "G1700470, G17000800" +County and PUMA "G1700490, G17000501" +County and PUMA "G1700510, G17000501" +County and PUMA "G1700530, G17002200" +County and PUMA "G1700550, G17000900" +County and PUMA "G1700570, G17000202" +County and PUMA "G1700590, G17000800" +County and PUMA "G1700610, G17000401" +County and PUMA "G1700630, G17003700" +County and PUMA "G1700650, G17000800" +County and PUMA "G1700670, G17000202" +County and PUMA "G1700690, G17000800" +County and PUMA "G1700710, G17000202" +County and PUMA "G1700730, G17000202" +County and PUMA "G1700750, G17002200" +County and PUMA "G1700770, G17000900" +County and PUMA "G1700790, G17000700" +County and PUMA "G1700810, G17001001" +County and PUMA "G1700830, G17000401" +County and PUMA "G1700850, G17000104" +County and PUMA "G1700870, G17000800" +County and PUMA "G1700890, G17003005" +County and PUMA "G1700890, G17003007" +County and PUMA "G1700890, G17003008" +County and PUMA "G1700890, G17003009" +County and PUMA "G1700910, G17002300" +County and PUMA "G1700930, G17003700" +County and PUMA "G1700950, G17002501" +County and PUMA "G1700970, G17003306" +County and PUMA "G1700970, G17003307" +County and PUMA "G1700970, G17003308" +County and PUMA "G1700970, G17003309" +County and PUMA "G1700970, G17003310" +County and PUMA "G1700990, G17002400" +County and PUMA "G1701010, G17000700" +County and PUMA "G1701030, G17000104" +County and PUMA "G1701050, G17002200" +County and PUMA "G1701070, G17001602" +County and PUMA "G1701090, G17000202" +County and PUMA "G1701110, G17003601" +County and PUMA "G1701110, G17003602" +County and PUMA "G1701130, G17002000" +County and PUMA "G1701150, G17001500" +County and PUMA "G1701170, G17000401" +County and PUMA "G1701190, G17001204" +County and PUMA "G1701190, G17001205" +County and PUMA "G1701210, G17001001" +County and PUMA "G1701230, G17002501" +County and PUMA "G1701250, G17000300" +County and PUMA "G1701270, G17000800" +County and PUMA "G1701290, G17001602" +County and PUMA "G1701310, G17000202" +County and PUMA "G1701330, G17001001" +County and PUMA "G1701350, G17000501" +County and PUMA "G1701370, G17000401" +County and PUMA "G1701390, G17001602" +County and PUMA "G1701410, G17002700" +County and PUMA "G1701430, G17001701" +County and PUMA "G1701450, G17000900" +County and PUMA "G1701470, G17001602" +County and PUMA "G1701490, G17000300" +County and PUMA "G1701510, G17000800" +County and PUMA "G1701530, G17000800" +County and PUMA "G1701550, G17002501" +County and PUMA "G1701570, G17001001" +County and PUMA "G1701590, G17000700" +County and PUMA "G1701610, G17000105" +County and PUMA "G1701630, G17001104" +County and PUMA "G1701630, G17001105" +County and PUMA "G1701650, G17000800" +County and PUMA "G1701670, G17001300" +County and PUMA "G1701690, G17000300" +County and PUMA "G1701710, G17000401" +County and PUMA "G1701730, G17001602" +County and PUMA "G1701750, G17002501" +County and PUMA "G1701770, G17002700" +County and PUMA "G1701790, G17001900" +County and PUMA "G1701810, G17000800" +County and PUMA "G1701830, G17002200" +County and PUMA "G1701850, G17000800" +County and PUMA "G1701870, G17000202" +County and PUMA "G1701890, G17001001" +County and PUMA "G1701910, G17000700" +County and PUMA "G1701930, G17000800" +County and PUMA "G1701950, G17000104" +County and PUMA "G1701970, G17003102" +County and PUMA "G1701970, G17003105" +County and PUMA "G1701970, G17003106" +County and PUMA "G1701970, G17003107" +County and PUMA "G1701970, G17003108" +County and PUMA "G1701990, G17000900" +County and PUMA "G1702010, G17002801" +County and PUMA "G1702010, G17002901" +County and PUMA "G1702030, G17002501" +County and PUMA "G1800010, G18000900" +County and PUMA "G1800030, G18001001" +County and PUMA "G1800030, G18001002" +County and PUMA "G1800030, G18001003" +County and PUMA "G1800050, G18002900" +County and PUMA "G1800070, G18001100" +County and PUMA "G1800090, G18001500" +County and PUMA "G1800110, G18001801" +County and PUMA "G1800130, G18002100" +County and PUMA "G1800150, G18001100" +County and PUMA "G1800170, G18001300" +County and PUMA "G1800190, G18003600" +County and PUMA "G1800210, G18001600" +County and PUMA "G1800230, G18001100" +County and PUMA "G1800250, G18003400" +County and PUMA "G1800270, G18002700" +County and PUMA "G1800290, G18003100" +County and PUMA "G1800310, G18003000" +County and PUMA "G1800330, G18000600" +County and PUMA "G1800350, G18002000" +County and PUMA "G1800370, G18003400" +County and PUMA "G1800390, G18000500" +County and PUMA "G1800410, G18002600" +County and PUMA "G1800430, G18003500" +County and PUMA "G1800450, G18001600" +County and PUMA "G1800470, G18003100" +County and PUMA "G1800490, G18000700" +County and PUMA "G1800510, G18003200" +County and PUMA "G1800530, G18001400" +County and PUMA "G1800550, G18002700" +County and PUMA "G1800570, G18001801" +County and PUMA "G1800570, G18001802" +County and PUMA "G1800570, G18001803" +County and PUMA "G1800590, G18002500" +County and PUMA "G1800610, G18003500" +County and PUMA "G1800630, G18002200" +County and PUMA "G1800650, G18001500" +County and PUMA "G1800670, G18001300" +County and PUMA "G1800690, G18000900" +County and PUMA "G1800710, G18002900" +County and PUMA "G1800730, G18000700" +County and PUMA "G1800750, G18001500" +County and PUMA "G1800770, G18003000" +County and PUMA "G1800790, G18003000" +County and PUMA "G1800810, G18002400" +County and PUMA "G1800830, G18003400" +County and PUMA "G1800850, G18000800" +County and PUMA "G1800870, G18000600" +County and PUMA "G1800890, G18000101" +County and PUMA "G1800890, G18000102" +County and PUMA "G1800890, G18000103" +County and PUMA "G1800890, G18000104" +County and PUMA "G1800910, G18000300" +County and PUMA "G1800930, G18002700" +County and PUMA "G1800950, G18001900" +County and PUMA "G1800970, G18002301" +County and PUMA "G1800970, G18002302" +County and PUMA "G1800970, G18002303" +County and PUMA "G1800970, G18002304" +County and PUMA "G1800970, G18002305" +County and PUMA "G1800970, G18002306" +County and PUMA "G1800970, G18002307" +County and PUMA "G1800990, G18000800" +County and PUMA "G1801010, G18002700" +County and PUMA "G1801030, G18001400" +County and PUMA "G1801050, G18002800" +County and PUMA "G1801070, G18001100" +County and PUMA "G1801090, G18002100" +County and PUMA "G1801110, G18000700" +County and PUMA "G1801130, G18000600" +County and PUMA "G1801150, G18003100" +County and PUMA "G1801170, G18002700" +County and PUMA "G1801190, G18002700" +County and PUMA "G1801210, G18001600" +County and PUMA "G1801230, G18003400" +County and PUMA "G1801250, G18003400" +County and PUMA "G1801270, G18000200" +County and PUMA "G1801290, G18003200" +County and PUMA "G1801310, G18000700" +County and PUMA "G1801330, G18002100" +County and PUMA "G1801350, G18001500" +County and PUMA "G1801370, G18003100" +County and PUMA "G1801390, G18002600" +County and PUMA "G1801410, G18000401" +County and PUMA "G1801410, G18000402" +County and PUMA "G1801430, G18003000" +County and PUMA "G1801450, G18002500" +County and PUMA "G1801470, G18003400" +County and PUMA "G1801490, G18000700" +County and PUMA "G1801510, G18000600" +County and PUMA "G1801530, G18001600" +County and PUMA "G1801550, G18003100" +County and PUMA "G1801570, G18001200" +County and PUMA "G1801590, G18001300" +County and PUMA "G1801610, G18002600" +County and PUMA "G1801630, G18003300" +County and PUMA "G1801650, G18001600" +County and PUMA "G1801670, G18001700" +County and PUMA "G1801690, G18001400" +County and PUMA "G1801710, G18001600" +County and PUMA "G1801730, G18003200" +County and PUMA "G1801750, G18003500" +County and PUMA "G1801770, G18002600" +County and PUMA "G1801790, G18000900" +County and PUMA "G1801810, G18001100" +County and PUMA "G1801830, G18000900" +County and PUMA "G1900010, G19001800" +County and PUMA "G1900030, G19001800" +County and PUMA "G1900050, G19000400" +County and PUMA "G1900070, G19001800" +County and PUMA "G1900090, G19001800" +County and PUMA "G1900110, G19001200" +County and PUMA "G1900130, G19000500" +County and PUMA "G1900150, G19001300" +County and PUMA "G1900170, G19000400" +County and PUMA "G1900190, G19000700" +County and PUMA "G1900210, G19001900" +County and PUMA "G1900230, G19000600" +County and PUMA "G1900250, G19001900" +County and PUMA "G1900270, G19001900" +County and PUMA "G1900290, G19002100" +County and PUMA "G1900310, G19000800" +County and PUMA "G1900330, G19000200" +County and PUMA "G1900350, G19001900" +County and PUMA "G1900370, G19000400" +County and PUMA "G1900390, G19001800" +County and PUMA "G1900410, G19000100" +County and PUMA "G1900430, G19000400" +County and PUMA "G1900450, G19000800" +County and PUMA "G1900470, G19001900" +County and PUMA "G1900490, G19001400" +County and PUMA "G1900490, G19001500" +County and PUMA "G1900510, G19002200" +County and PUMA "G1900530, G19001800" +County and PUMA "G1900550, G19000700" +County and PUMA "G1900570, G19002300" +County and PUMA "G1900590, G19000100" +County and PUMA "G1900610, G19000700" +County and PUMA "G1900630, G19000100" +County and PUMA "G1900650, G19000400" +County and PUMA "G1900670, G19000200" +County and PUMA "G1900690, G19000600" +County and PUMA "G1900710, G19002100" +County and PUMA "G1900730, G19001900" +County and PUMA "G1900750, G19000600" +County and PUMA "G1900770, G19001800" +County and PUMA "G1900790, G19000600" +County and PUMA "G1900810, G19000200" +County and PUMA "G1900830, G19000600" +County and PUMA "G1900850, G19002100" +County and PUMA "G1900870, G19002300" +County and PUMA "G1900890, G19000400" +County and PUMA "G1900910, G19000600" +County and PUMA "G1900930, G19001900" +County and PUMA "G1900950, G19001200" +County and PUMA "G1900970, G19000700" +County and PUMA "G1900990, G19001400" +County and PUMA "G1901010, G19002200" +County and PUMA "G1901030, G19001100" +County and PUMA "G1901050, G19000800" +County and PUMA "G1901070, G19002200" +County and PUMA "G1901090, G19000200" +County and PUMA "G1901110, G19002300" +County and PUMA "G1901130, G19001000" +County and PUMA "G1901150, G19002300" +County and PUMA "G1901170, G19001800" +County and PUMA "G1901190, G19000100" +County and PUMA "G1901210, G19001400" +County and PUMA "G1901230, G19002200" +County and PUMA "G1901250, G19001400" +County and PUMA "G1901270, G19001200" +County and PUMA "G1901290, G19002100" +County and PUMA "G1901310, G19000200" +County and PUMA "G1901330, G19001900" +County and PUMA "G1901350, G19001800" +County and PUMA "G1901370, G19002100" +County and PUMA "G1901390, G19000800" +County and PUMA "G1901410, G19000100" +County and PUMA "G1901430, G19000100" +County and PUMA "G1901450, G19002100" +County and PUMA "G1901470, G19000100" +County and PUMA "G1901490, G19002000" +County and PUMA "G1901510, G19001900" +County and PUMA "G1901530, G19001500" +County and PUMA "G1901530, G19001600" +County and PUMA "G1901530, G19001700" +County and PUMA "G1901550, G19002100" +County and PUMA "G1901570, G19001200" +County and PUMA "G1901590, G19001800" +County and PUMA "G1901610, G19001900" +County and PUMA "G1901630, G19000900" +County and PUMA "G1901650, G19002100" +County and PUMA "G1901670, G19000100" +County and PUMA "G1901690, G19001300" +County and PUMA "G1901710, G19001200" +County and PUMA "G1901730, G19001800" +County and PUMA "G1901750, G19001800" +County and PUMA "G1901770, G19002200" +County and PUMA "G1901790, G19002200" +County and PUMA "G1901810, G19001400" +County and PUMA "G1901830, G19002200" +County and PUMA "G1901850, G19001800" +County and PUMA "G1901870, G19000600" +County and PUMA "G1901890, G19000200" +County and PUMA "G1901910, G19000400" +County and PUMA "G1901930, G19002000" +County and PUMA "G1901950, G19000200" +County and PUMA "G1901970, G19000600" +County and PUMA "G2000010, G20001400" +County and PUMA "G2000030, G20001400" +County and PUMA "G2000050, G20000400" +County and PUMA "G2000070, G20001100" +County and PUMA "G2000090, G20001100" +County and PUMA "G2000110, G20001400" +County and PUMA "G2000130, G20000802" +County and PUMA "G2000150, G20001302" +County and PUMA "G2000150, G20001304" +County and PUMA "G2000170, G20000900" +County and PUMA "G2000190, G20000900" +County and PUMA "G2000210, G20001500" +County and PUMA "G2000230, G20000100" +County and PUMA "G2000250, G20001200" +County and PUMA "G2000270, G20000200" +County and PUMA "G2000290, G20000200" +County and PUMA "G2000310, G20000900" +County and PUMA "G2000330, G20001100" +County and PUMA "G2000350, G20000900" +County and PUMA "G2000350, G20001100" +County and PUMA "G2000370, G20001500" +County and PUMA "G2000390, G20000100" +County and PUMA "G2000410, G20000200" +County and PUMA "G2000430, G20000400" +County and PUMA "G2000450, G20000700" +County and PUMA "G2000470, G20001100" +County and PUMA "G2000490, G20000900" +County and PUMA "G2000510, G20000100" +County and PUMA "G2000530, G20000200" +County and PUMA "G2000550, G20001200" +County and PUMA "G2000570, G20001200" +County and PUMA "G2000590, G20001400" +County and PUMA "G2000610, G20000300" +County and PUMA "G2000630, G20000100" +County and PUMA "G2000650, G20000100" +County and PUMA "G2000670, G20001200" +County and PUMA "G2000690, G20001200" +County and PUMA "G2000710, G20000100" +County and PUMA "G2000730, G20000900" +County and PUMA "G2000750, G20001200" +County and PUMA "G2000770, G20001100" +County and PUMA "G2000790, G20001301" +County and PUMA "G2000810, G20001200" +County and PUMA "G2000830, G20001200" +County and PUMA "G2000850, G20000802" +County and PUMA "G2000870, G20000400" +County and PUMA "G2000890, G20000200" +County and PUMA "G2000910, G20000601" +County and PUMA "G2000910, G20000602" +County and PUMA "G2000910, G20000603" +County and PUMA "G2000910, G20000604" +County and PUMA "G2000930, G20001200" +County and PUMA "G2000950, G20001100" +County and PUMA "G2000970, G20001100" +County and PUMA "G2000990, G20001500" +County and PUMA "G2001010, G20000100" +County and PUMA "G2001030, G20000400" +County and PUMA "G2001050, G20000200" +County and PUMA "G2001070, G20001400" +County and PUMA "G2001090, G20000100" +County and PUMA "G2001110, G20000900" +County and PUMA "G2001130, G20001000" +County and PUMA "G2001150, G20000900" +County and PUMA "G2001170, G20000200" +County and PUMA "G2001190, G20001200" +County and PUMA "G2001210, G20001400" +County and PUMA "G2001230, G20000200" +County and PUMA "G2001250, G20001500" +County and PUMA "G2001270, G20000900" +County and PUMA "G2001290, G20001200" +County and PUMA "G2001310, G20000200" +County and PUMA "G2001330, G20001500" +County and PUMA "G2001350, G20000100" +County and PUMA "G2001370, G20000100" +County and PUMA "G2001390, G20000802" +County and PUMA "G2001410, G20000100" +County and PUMA "G2001430, G20000200" +County and PUMA "G2001450, G20001100" +County and PUMA "G2001470, G20000100" +County and PUMA "G2001490, G20000300" +County and PUMA "G2001510, G20001100" +County and PUMA "G2001530, G20000100" +County and PUMA "G2001550, G20001000" +County and PUMA "G2001570, G20000200" +County and PUMA "G2001590, G20001000" +County and PUMA "G2001610, G20000300" +County and PUMA "G2001630, G20000100" +County and PUMA "G2001650, G20001100" +County and PUMA "G2001670, G20000100" +County and PUMA "G2001690, G20000200" +County and PUMA "G2001710, G20000100" +County and PUMA "G2001730, G20001301" +County and PUMA "G2001730, G20001302" +County and PUMA "G2001730, G20001303" +County and PUMA "G2001730, G20001304" +County and PUMA "G2001750, G20001200" +County and PUMA "G2001770, G20000801" +County and PUMA "G2001770, G20000802" +County and PUMA "G2001790, G20000100" +County and PUMA "G2001810, G20000100" +County and PUMA "G2001830, G20000100" +County and PUMA "G2001850, G20001100" +County and PUMA "G2001870, G20001200" +County and PUMA "G2001890, G20001200" +County and PUMA "G2001910, G20001100" +County and PUMA "G2001930, G20000100" +County and PUMA "G2001950, G20000100" +County and PUMA "G2001970, G20000802" +County and PUMA "G2001990, G20000100" +County and PUMA "G2002010, G20000200" +County and PUMA "G2002030, G20000100" +County and PUMA "G2002050, G20000900" +County and PUMA "G2002070, G20000900" +County and PUMA "G2002090, G20000500" +County and PUMA "G2100010, G21000600" +County and PUMA "G2100030, G21000400" +County and PUMA "G2100050, G21002000" +County and PUMA "G2100070, G21000100" +County and PUMA "G2100090, G21000400" +County and PUMA "G2100110, G21002700" +County and PUMA "G2100130, G21000900" +County and PUMA "G2100150, G21002500" +County and PUMA "G2100170, G21002300" +County and PUMA "G2100190, G21002800" +County and PUMA "G2100210, G21002100" +County and PUMA "G2100230, G21002700" +County and PUMA "G2100250, G21001000" +County and PUMA "G2100270, G21001300" +County and PUMA "G2100290, G21001600" +County and PUMA "G2100310, G21000400" +County and PUMA "G2100330, G21000200" +County and PUMA "G2100350, G21000100" +County and PUMA "G2100370, G21002600" +County and PUMA "G2100390, G21000100" +County and PUMA "G2100410, G21002600" +County and PUMA "G2100430, G21002800" +County and PUMA "G2100450, G21000600" +County and PUMA "G2100470, G21000300" +County and PUMA "G2100490, G21002300" +County and PUMA "G2100510, G21000800" +County and PUMA "G2100530, G21000600" +County and PUMA "G2100550, G21000200" +County and PUMA "G2100570, G21000600" +County and PUMA "G2100590, G21001500" +County and PUMA "G2100610, G21000400" +County and PUMA "G2100630, G21002800" +County and PUMA "G2100650, G21002200" +County and PUMA "G2100670, G21001901" +County and PUMA "G2100670, G21001902" +County and PUMA "G2100690, G21002700" +County and PUMA "G2100710, G21001100" +County and PUMA "G2100730, G21002000" +County and PUMA "G2100750, G21000100" +County and PUMA "G2100770, G21002600" +County and PUMA "G2100790, G21002100" +County and PUMA "G2100810, G21002600" +County and PUMA "G2100830, G21000100" +County and PUMA "G2100850, G21001300" +County and PUMA "G2100870, G21000600" +County and PUMA "G2100890, G21002800" +County and PUMA "G2100910, G21001500" +County and PUMA "G2100930, G21001200" +County and PUMA "G2100930, G21001300" +County and PUMA "G2100950, G21000900" +County and PUMA "G2100970, G21002300" +County and PUMA "G2100990, G21000400" +County and PUMA "G2101010, G21001400" +County and PUMA "G2101030, G21001800" +County and PUMA "G2101050, G21000100" +County and PUMA "G2101070, G21000200" +County and PUMA "G2101090, G21000800" +County and PUMA "G2101110, G21001701" +County and PUMA "G2101110, G21001702" +County and PUMA "G2101110, G21001703" +County and PUMA "G2101110, G21001704" +County and PUMA "G2101110, G21001705" +County and PUMA "G2101110, G21001706" +County and PUMA "G2101130, G21002100" +County and PUMA "G2101150, G21001100" +County and PUMA "G2101170, G21002400" +County and PUMA "G2101190, G21001000" +County and PUMA "G2101210, G21000900" +County and PUMA "G2101230, G21001200" +County and PUMA "G2101250, G21000800" +County and PUMA "G2101270, G21002800" +County and PUMA "G2101290, G21001000" +County and PUMA "G2101310, G21001000" +County and PUMA "G2101330, G21001000" +County and PUMA "G2101350, G21002700" +County and PUMA "G2101370, G21002100" +County and PUMA "G2101390, G21000200" +County and PUMA "G2101410, G21000400" +County and PUMA "G2101430, G21000300" +County and PUMA "G2101450, G21000100" +County and PUMA "G2101470, G21000700" +County and PUMA "G2101490, G21001400" +County and PUMA "G2101510, G21002200" +County and PUMA "G2101530, G21001100" +County and PUMA "G2101550, G21001200" +County and PUMA "G2101570, G21000100" +County and PUMA "G2101590, G21001100" +County and PUMA "G2101610, G21002700" +County and PUMA "G2101630, G21001300" +County and PUMA "G2101650, G21002700" +County and PUMA "G2101670, G21002000" +County and PUMA "G2101690, G21000400" +County and PUMA "G2101710, G21000400" +County and PUMA "G2101730, G21002700" +County and PUMA "G2101750, G21002700" +County and PUMA "G2101770, G21000200" +County and PUMA "G2101790, G21001200" +County and PUMA "G2101810, G21002300" +County and PUMA "G2101830, G21001400" +County and PUMA "G2101850, G21001800" +County and PUMA "G2101870, G21002600" +County and PUMA "G2101890, G21001000" +County and PUMA "G2101910, G21002600" +County and PUMA "G2101930, G21001000" +County and PUMA "G2101950, G21001100" +County and PUMA "G2101970, G21002200" +County and PUMA "G2101990, G21000700" +County and PUMA "G2102010, G21002700" +County and PUMA "G2102030, G21000800" +County and PUMA "G2102050, G21002700" +County and PUMA "G2102070, G21000600" +County and PUMA "G2102090, G21002300" +County and PUMA "G2102110, G21001600" +County and PUMA "G2102110, G21001800" +County and PUMA "G2102130, G21000400" +County and PUMA "G2102150, G21001600" +County and PUMA "G2102170, G21000600" +County and PUMA "G2102190, G21000300" +County and PUMA "G2102210, G21000300" +County and PUMA "G2102230, G21001800" +County and PUMA "G2102250, G21001400" +County and PUMA "G2102270, G21000500" +County and PUMA "G2102290, G21001200" +County and PUMA "G2102310, G21000700" +County and PUMA "G2102330, G21001400" +County and PUMA "G2102350, G21000900" +County and PUMA "G2102370, G21001000" +County and PUMA "G2102390, G21002000" +County and PUMA "G2200010, G22001100" +County and PUMA "G2200030, G22000800" +County and PUMA "G2200050, G22001600" +County and PUMA "G2200070, G22002000" +County and PUMA "G2200090, G22000600" +County and PUMA "G2200110, G22000800" +County and PUMA "G2200130, G22000300" +County and PUMA "G2200150, G22000200" +County and PUMA "G2200170, G22000100" +County and PUMA "G2200170, G22000101" +County and PUMA "G2200190, G22000800" +County and PUMA "G2200190, G22000900" +County and PUMA "G2200210, G22000500" +County and PUMA "G2200230, G22000900" +County and PUMA "G2200250, G22000600" +County and PUMA "G2200270, G22000300" +County and PUMA "G2200290, G22000600" +County and PUMA "G2200310, G22000300" +County and PUMA "G2200330, G22001500" +County and PUMA "G2200330, G22001501" +County and PUMA "G2200330, G22001502" +County and PUMA "G2200350, G22000500" +County and PUMA "G2200370, G22001400" +County and PUMA "G2200390, G22001000" +County and PUMA "G2200410, G22000500" +County and PUMA "G2200430, G22000600" +County and PUMA "G2200450, G22001300" +County and PUMA "G2200470, G22001400" +County and PUMA "G2200490, G22000500" +County and PUMA "G2200510, G22002300" +County and PUMA "G2200510, G22002301" +County and PUMA "G2200510, G22002302" +County and PUMA "G2200510, G22002500" +County and PUMA "G2200530, G22000900" +County and PUMA "G2200550, G22001200" +County and PUMA "G2200550, G22001201" +County and PUMA "G2200570, G22002000" +County and PUMA "G2200590, G22000600" +County and PUMA "G2200610, G22000300" +County and PUMA "G2200630, G22001700" +County and PUMA "G2200650, G22000500" +County and PUMA "G2200670, G22000500" +County and PUMA "G2200690, G22000300" +County and PUMA "G2200710, G22002400" +County and PUMA "G2200710, G22002401" +County and PUMA "G2200710, G22002402" +County and PUMA "G2200730, G22000400" +County and PUMA "G2200750, G22002500" +County and PUMA "G2200770, G22001400" +County and PUMA "G2200790, G22000700" +County and PUMA "G2200810, G22000300" +County and PUMA "G2200830, G22000500" +County and PUMA "G2200850, G22000300" +County and PUMA "G2200870, G22002500" +County and PUMA "G2200890, G22001900" +County and PUMA "G2200910, G22001700" +County and PUMA "G2200930, G22001900" +County and PUMA "G2200950, G22001900" +County and PUMA "G2200970, G22001000" +County and PUMA "G2200990, G22001300" +County and PUMA "G2201010, G22001300" +County and PUMA "G2201030, G22002200" +County and PUMA "G2201030, G22002201" +County and PUMA "G2201050, G22001800" +County and PUMA "G2201070, G22000500" +County and PUMA "G2201090, G22002100" +County and PUMA "G2201110, G22000500" +County and PUMA "G2201130, G22001100" +County and PUMA "G2201150, G22000700" +County and PUMA "G2201170, G22001800" +County and PUMA "G2201190, G22000200" +County and PUMA "G2201210, G22001400" +County and PUMA "G2201230, G22000500" +County and PUMA "G2201250, G22001400" +County and PUMA "G2201270, G22000600" +County and PUMA "G2300010, G23000600" +County and PUMA "G2300030, G23000100" +County and PUMA "G2300050, G23000700" +County and PUMA "G2300050, G23000800" +County and PUMA "G2300050, G23000900" +County and PUMA "G2300050, G23001000" +County and PUMA "G2300070, G23000200" +County and PUMA "G2300090, G23000500" +County and PUMA "G2300110, G23000400" +County and PUMA "G2300130, G23000500" +County and PUMA "G2300150, G23000500" +County and PUMA "G2300170, G23000200" +County and PUMA "G2300190, G23000300" +County and PUMA "G2300210, G23000200" +County and PUMA "G2300230, G23000700" +County and PUMA "G2300250, G23000200" +County and PUMA "G2300270, G23000500" +County and PUMA "G2300290, G23000100" +County and PUMA "G2300310, G23000800" +County and PUMA "G2300310, G23000900" +County and PUMA "G2400010, G24000100" +County and PUMA "G2400030, G24001201" +County and PUMA "G2400030, G24001202" +County and PUMA "G2400030, G24001203" +County and PUMA "G2400030, G24001204" +County and PUMA "G2400050, G24000501" +County and PUMA "G2400050, G24000502" +County and PUMA "G2400050, G24000503" +County and PUMA "G2400050, G24000504" +County and PUMA "G2400050, G24000505" +County and PUMA "G2400050, G24000506" +County and PUMA "G2400050, G24000507" +County and PUMA "G2400090, G24001500" +County and PUMA "G2400110, G24001300" +County and PUMA "G2400130, G24000400" +County and PUMA "G2400150, G24000700" +County and PUMA "G2400170, G24001600" +County and PUMA "G2400190, G24001300" +County and PUMA "G2400210, G24000301" +County and PUMA "G2400210, G24000302" +County and PUMA "G2400230, G24000100" +County and PUMA "G2400250, G24000601" +County and PUMA "G2400250, G24000602" +County and PUMA "G2400270, G24000901" +County and PUMA "G2400270, G24000902" +County and PUMA "G2400290, G24001300" +County and PUMA "G2400310, G24001001" +County and PUMA "G2400310, G24001002" +County and PUMA "G2400310, G24001003" +County and PUMA "G2400310, G24001004" +County and PUMA "G2400310, G24001005" +County and PUMA "G2400310, G24001006" +County and PUMA "G2400310, G24001007" +County and PUMA "G2400330, G24001101" +County and PUMA "G2400330, G24001102" +County and PUMA "G2400330, G24001103" +County and PUMA "G2400330, G24001104" +County and PUMA "G2400330, G24001105" +County and PUMA "G2400330, G24001106" +County and PUMA "G2400330, G24001107" +County and PUMA "G2400350, G24001300" +County and PUMA "G2400370, G24001500" +County and PUMA "G2400390, G24001400" +County and PUMA "G2400410, G24001300" +County and PUMA "G2400430, G24000200" +County and PUMA "G2400450, G24001400" +County and PUMA "G2400470, G24001400" +County and PUMA "G2405100, G24000801" +County and PUMA "G2405100, G24000802" +County and PUMA "G2405100, G24000803" +County and PUMA "G2405100, G24000804" +County and PUMA "G2405100, G24000805" +County and PUMA "G2500010, G25004700" +County and PUMA "G2500010, G25004800" +County and PUMA "G2500030, G25000100" +County and PUMA "G2500050, G25004200" +County and PUMA "G2500050, G25004301" +County and PUMA "G2500050, G25004302" +County and PUMA "G2500050, G25004303" +County and PUMA "G2500050, G25004500" +County and PUMA "G2500050, G25004901" +County and PUMA "G2500070, G25004800" +County and PUMA "G2500090, G25000701" +County and PUMA "G2500090, G25000702" +County and PUMA "G2500090, G25000703" +County and PUMA "G2500090, G25000704" +County and PUMA "G2500090, G25001000" +County and PUMA "G2500090, G25001300" +County and PUMA "G2500090, G25002800" +County and PUMA "G2500110, G25000200" +County and PUMA "G2500130, G25001600" +County and PUMA "G2500130, G25001900" +County and PUMA "G2500130, G25001901" +County and PUMA "G2500130, G25001902" +County and PUMA "G2500150, G25000200" +County and PUMA "G2500150, G25001600" +County and PUMA "G2500170, G25000400" +County and PUMA "G2500170, G25000501" +County and PUMA "G2500170, G25000502" +County and PUMA "G2500170, G25000503" +County and PUMA "G2500170, G25000504" +County and PUMA "G2500170, G25000505" +County and PUMA "G2500170, G25000506" +County and PUMA "G2500170, G25000507" +County and PUMA "G2500170, G25000508" +County and PUMA "G2500170, G25001000" +County and PUMA "G2500170, G25001300" +County and PUMA "G2500170, G25001400" +County and PUMA "G2500170, G25002400" +County and PUMA "G2500170, G25002800" +County and PUMA "G2500170, G25003400" +County and PUMA "G2500170, G25003500" +County and PUMA "G2500190, G25004800" +County and PUMA "G2500210, G25002400" +County and PUMA "G2500210, G25003400" +County and PUMA "G2500210, G25003500" +County and PUMA "G2500210, G25003601" +County and PUMA "G2500210, G25003602" +County and PUMA "G2500210, G25003603" +County and PUMA "G2500210, G25003900" +County and PUMA "G2500210, G25004000" +County and PUMA "G2500210, G25004200" +County and PUMA "G2500230, G25003900" +County and PUMA "G2500230, G25004000" +County and PUMA "G2500230, G25004301" +County and PUMA "G2500230, G25004901" +County and PUMA "G2500230, G25004902" +County and PUMA "G2500230, G25004903" +County and PUMA "G2500250, G25003301" +County and PUMA "G2500250, G25003302" +County and PUMA "G2500250, G25003303" +County and PUMA "G2500250, G25003304" +County and PUMA "G2500250, G25003305" +County and PUMA "G2500250, G25003306" +County and PUMA "G2500270, G25000300" +County and PUMA "G2500270, G25000301" +County and PUMA "G2500270, G25000302" +County and PUMA "G2500270, G25000303" +County and PUMA "G2500270, G25000304" +County and PUMA "G2500270, G25000400" +County and PUMA "G2500270, G25001400" +County and PUMA "G2500270, G25002400" +County and PUMA "G2600010, G26000300" +County and PUMA "G2600030, G26000200" +County and PUMA "G2600050, G26000900" +County and PUMA "G2600070, G26000300" +County and PUMA "G2600090, G26000400" +County and PUMA "G2600110, G26001300" +County and PUMA "G2600130, G26000100" +County and PUMA "G2600150, G26002000" +County and PUMA "G2600170, G26001400" +County and PUMA "G2600190, G26000500" +County and PUMA "G2600210, G26002400" +County and PUMA "G2600230, G26002200" +County and PUMA "G2600250, G26002000" +County and PUMA "G2600270, G26002300" +County and PUMA "G2600290, G26000400" +County and PUMA "G2600310, G26000300" +County and PUMA "G2600330, G26000200" +County and PUMA "G2600350, G26001200" +County and PUMA "G2600370, G26001900" +County and PUMA "G2600390, G26000300" +County and PUMA "G2600410, G26000200" +County and PUMA "G2600430, G26000100" +County and PUMA "G2600450, G26001900" +County and PUMA "G2600470, G26000400" +County and PUMA "G2600490, G26001701" +County and PUMA "G2600490, G26001702" +County and PUMA "G2600490, G26001703" +County and PUMA "G2600490, G26001704" +County and PUMA "G2600510, G26001300" +County and PUMA "G2600530, G26000100" +County and PUMA "G2600550, G26000500" +County and PUMA "G2600570, G26001200" +County and PUMA "G2600590, G26002500" +County and PUMA "G2600610, G26000100" +County and PUMA "G2600630, G26001600" +County and PUMA "G2600650, G26001801" +County and PUMA "G2600650, G26001802" +County and PUMA "G2600670, G26001100" +County and PUMA "G2600690, G26001300" +County and PUMA "G2600710, G26000100" +County and PUMA "G2600730, G26001200" +County and PUMA "G2600750, G26002600" +County and PUMA "G2600770, G26002101" +County and PUMA "G2600770, G26002102" +County and PUMA "G2600790, G26000400" +County and PUMA "G2600810, G26001001" +County and PUMA "G2600810, G26001002" +County and PUMA "G2600810, G26001003" +County and PUMA "G2600810, G26001004" +County and PUMA "G2600830, G26000100" +County and PUMA "G2600850, G26000600" +County and PUMA "G2600870, G26001701" +County and PUMA "G2600890, G26000500" +County and PUMA "G2600910, G26002500" +County and PUMA "G2600930, G26002800" +County and PUMA "G2600950, G26000200" +County and PUMA "G2600970, G26000200" +County and PUMA "G2600990, G26003001" +County and PUMA "G2600990, G26003002" +County and PUMA "G2600990, G26003003" +County and PUMA "G2600990, G26003004" +County and PUMA "G2600990, G26003005" +County and PUMA "G2600990, G26003006" +County and PUMA "G2601010, G26000500" +County and PUMA "G2601030, G26000100" +County and PUMA "G2601050, G26000600" +County and PUMA "G2601070, G26001100" +County and PUMA "G2601090, G26000200" +County and PUMA "G2601110, G26001400" +County and PUMA "G2601130, G26000400" +County and PUMA "G2601150, G26003300" +County and PUMA "G2601170, G26001100" +County and PUMA "G2601190, G26000300" +County and PUMA "G2601210, G26000700" +County and PUMA "G2601230, G26000600" +County and PUMA "G2601250, G26002901" +County and PUMA "G2601250, G26002902" +County and PUMA "G2601250, G26002903" +County and PUMA "G2601250, G26002904" +County and PUMA "G2601250, G26002905" +County and PUMA "G2601250, G26002906" +County and PUMA "G2601250, G26002907" +County and PUMA "G2601250, G26002908" +County and PUMA "G2601270, G26000600" +County and PUMA "G2601290, G26001300" +County and PUMA "G2601310, G26000100" +County and PUMA "G2601330, G26001100" +County and PUMA "G2601350, G26000300" +County and PUMA "G2601370, G26000300" +County and PUMA "G2601390, G26000801" +County and PUMA "G2601390, G26000802" +County and PUMA "G2601410, G26000300" +County and PUMA "G2601430, G26001300" +County and PUMA "G2601450, G26001500" +County and PUMA "G2601470, G26003100" +County and PUMA "G2601490, G26002200" +County and PUMA "G2601510, G26001600" +County and PUMA "G2601530, G26000200" +County and PUMA "G2601550, G26001704" +County and PUMA "G2601570, G26001600" +County and PUMA "G2601590, G26002300" +County and PUMA "G2601610, G26002701" +County and PUMA "G2601610, G26002702" +County and PUMA "G2601610, G26002703" +County and PUMA "G2601630, G26003201" +County and PUMA "G2601630, G26003202" +County and PUMA "G2601630, G26003203" +County and PUMA "G2601630, G26003204" +County and PUMA "G2601630, G26003205" +County and PUMA "G2601630, G26003206" +County and PUMA "G2601630, G26003207" +County and PUMA "G2601630, G26003208" +County and PUMA "G2601630, G26003209" +County and PUMA "G2601630, G26003210" +County and PUMA "G2601630, G26003211" +County and PUMA "G2601630, G26003212" +County and PUMA "G2601630, G26003213" +County and PUMA "G2601650, G26000400" +County and PUMA "G2700010, G27000300" +County and PUMA "G2700030, G27001101" +County and PUMA "G2700030, G27001102" +County and PUMA "G2700030, G27001103" +County and PUMA "G2700050, G27000200" +County and PUMA "G2700070, G27000200" +County and PUMA "G2700090, G27001000" +County and PUMA "G2700110, G27000800" +County and PUMA "G2700130, G27002200" +County and PUMA "G2700150, G27002000" +County and PUMA "G2700170, G27000300" +County and PUMA "G2700170, G27000400" +County and PUMA "G2700190, G27001700" +County and PUMA "G2700210, G27000300" +County and PUMA "G2700230, G27002000" +County and PUMA "G2700250, G27000600" +County and PUMA "G2700270, G27000100" +County and PUMA "G2700290, G27000200" +County and PUMA "G2700310, G27000400" +County and PUMA "G2700330, G27002100" +County and PUMA "G2700350, G27000700" +County and PUMA "G2700370, G27001501" +County and PUMA "G2700370, G27001502" +County and PUMA "G2700370, G27001503" +County and PUMA "G2700390, G27002400" +County and PUMA "G2700410, G27000800" +County and PUMA "G2700430, G27002100" +County and PUMA "G2700450, G27002600" +County and PUMA "G2700470, G27002400" +County and PUMA "G2700490, G27002300" +County and PUMA "G2700510, G27000800" +County and PUMA "G2700530, G27001401" +County and PUMA "G2700530, G27001402" +County and PUMA "G2700530, G27001403" +County and PUMA "G2700530, G27001404" +County and PUMA "G2700530, G27001405" +County and PUMA "G2700530, G27001406" +County and PUMA "G2700530, G27001407" +County and PUMA "G2700530, G27001408" +County and PUMA "G2700530, G27001409" +County and PUMA "G2700530, G27001410" +County and PUMA "G2700550, G27002600" +County and PUMA "G2700570, G27000200" +County and PUMA "G2700590, G27000600" +County and PUMA "G2700610, G27000300" +County and PUMA "G2700630, G27002100" +County and PUMA "G2700650, G27000600" +County and PUMA "G2700670, G27001900" +County and PUMA "G2700690, G27000100" +County and PUMA "G2700710, G27000400" +County and PUMA "G2700730, G27002000" +County and PUMA "G2700750, G27000400" +County and PUMA "G2700770, G27000200" +County and PUMA "G2700790, G27002300" +County and PUMA "G2700810, G27002000" +County and PUMA "G2700830, G27002000" +County and PUMA "G2700850, G27001900" +County and PUMA "G2700870, G27000200" +County and PUMA "G2700890, G27000100" +County and PUMA "G2700910, G27002100" +County and PUMA "G2700930, G27001900" +County and PUMA "G2700950, G27000600" +County and PUMA "G2700970, G27000700" +County and PUMA "G2700990, G27002400" +County and PUMA "G2701010, G27002100" +County and PUMA "G2701030, G27002200" +County and PUMA "G2701050, G27002100" +County and PUMA "G2701070, G27000100" +County and PUMA "G2701090, G27002500" +County and PUMA "G2701110, G27000800" +County and PUMA "G2701130, G27000100" +County and PUMA "G2701150, G27000600" +County and PUMA "G2701170, G27002100" +County and PUMA "G2701190, G27000100" +County and PUMA "G2701210, G27000800" +County and PUMA "G2701230, G27001301" +County and PUMA "G2701230, G27001302" +County and PUMA "G2701230, G27001303" +County and PUMA "G2701230, G27001304" +County and PUMA "G2701250, G27000100" +County and PUMA "G2701270, G27002000" +County and PUMA "G2701290, G27001900" +County and PUMA "G2701310, G27002300" +County and PUMA "G2701330, G27002100" +County and PUMA "G2701350, G27000100" +County and PUMA "G2701370, G27000400" +County and PUMA "G2701370, G27000500" +County and PUMA "G2701390, G27001600" +County and PUMA "G2701390, G27001700" +County and PUMA "G2701410, G27001000" +County and PUMA "G2701430, G27001900" +County and PUMA "G2701450, G27000900" +County and PUMA "G2701470, G27002400" +County and PUMA "G2701490, G27000800" +County and PUMA "G2701510, G27000800" +County and PUMA "G2701530, G27000700" +County and PUMA "G2701550, G27000800" +County and PUMA "G2701570, G27002600" +County and PUMA "G2701590, G27000700" +County and PUMA "G2701610, G27002200" +County and PUMA "G2701630, G27001201" +County and PUMA "G2701630, G27001202" +County and PUMA "G2701650, G27002100" +County and PUMA "G2701670, G27000800" +County and PUMA "G2701690, G27002600" +County and PUMA "G2701710, G27001800" +County and PUMA "G2701730, G27002000" +County and PUMA "G2800010, G28001600" +County and PUMA "G2800030, G28000200" +County and PUMA "G2800050, G28001600" +County and PUMA "G2800070, G28000700" +County and PUMA "G2800090, G28000200" +County and PUMA "G2800110, G28000800" +County and PUMA "G2800130, G28000400" +County and PUMA "G2800150, G28000700" +County and PUMA "G2800170, G28000400" +County and PUMA "G2800190, G28000600" +County and PUMA "G2800210, G28001600" +County and PUMA "G2800230, G28001500" +County and PUMA "G2800250, G28000600" +County and PUMA "G2800270, G28000300" +County and PUMA "G2800290, G28001200" +County and PUMA "G2800310, G28001700" +County and PUMA "G2800330, G28000100" +County and PUMA "G2800350, G28001800" +County and PUMA "G2800370, G28001600" +County and PUMA "G2800390, G28001900" +County and PUMA "G2800410, G28001700" +County and PUMA "G2800430, G28000700" +County and PUMA "G2800450, G28001900" +County and PUMA "G2800470, G28002000" +County and PUMA "G2800490, G28001000" +County and PUMA "G2800490, G28001100" +County and PUMA "G2800490, G28001200" +County and PUMA "G2800510, G28000700" +County and PUMA "G2800530, G28000800" +County and PUMA "G2800550, G28000800" +County and PUMA "G2800570, G28000400" +County and PUMA "G2800590, G28002100" +County and PUMA "G2800610, G28001400" +County and PUMA "G2800630, G28001600" +County and PUMA "G2800650, G28001700" +County and PUMA "G2800670, G28001700" +County and PUMA "G2800690, G28001400" +County and PUMA "G2800710, G28000400" +County and PUMA "G2800730, G28001800" +County and PUMA "G2800750, G28001500" +County and PUMA "G2800770, G28001600" +County and PUMA "G2800790, G28001400" +County and PUMA "G2800810, G28000500" +County and PUMA "G2800830, G28000700" +County and PUMA "G2800850, G28001600" +County and PUMA "G2800870, G28000600" +County and PUMA "G2800890, G28000900" +County and PUMA "G2800890, G28001000" +County and PUMA "G2800910, G28001800" +County and PUMA "G2800930, G28000200" +County and PUMA "G2800950, G28000400" +County and PUMA "G2800970, G28000700" +County and PUMA "G2800990, G28001400" +County and PUMA "G2801010, G28001500" +County and PUMA "G2801030, G28000600" +County and PUMA "G2801050, G28000600" +County and PUMA "G2801070, G28000300" +County and PUMA "G2801090, G28001900" +County and PUMA "G2801110, G28001800" +County and PUMA "G2801130, G28001600" +County and PUMA "G2801150, G28000500" +County and PUMA "G2801170, G28000200" +County and PUMA "G2801190, G28000300" +County and PUMA "G2801210, G28001300" +County and PUMA "G2801230, G28001400" +County and PUMA "G2801250, G28000800" +County and PUMA "G2801270, G28001300" +County and PUMA "G2801290, G28001400" +County and PUMA "G2801310, G28001900" +County and PUMA "G2801330, G28000800" +County and PUMA "G2801350, G28000300" +County and PUMA "G2801370, G28000300" +County and PUMA "G2801390, G28000200" +County and PUMA "G2801410, G28000200" +County and PUMA "G2801430, G28000300" +County and PUMA "G2801450, G28000500" +County and PUMA "G2801470, G28001600" +County and PUMA "G2801490, G28001200" +County and PUMA "G2801510, G28000800" +County and PUMA "G2801530, G28001700" +County and PUMA "G2801550, G28000600" +County and PUMA "G2801570, G28001600" +County and PUMA "G2801590, G28000600" +County and PUMA "G2801610, G28000700" +County and PUMA "G2801630, G28000900" +County and PUMA "G2900010, G29000300" +County and PUMA "G2900030, G29000200" +County and PUMA "G2900050, G29000100" +County and PUMA "G2900070, G29000400" +County and PUMA "G2900090, G29002700" +County and PUMA "G2900110, G29001200" +County and PUMA "G2900130, G29001100" +County and PUMA "G2900150, G29001300" +County and PUMA "G2900170, G29002200" +County and PUMA "G2900190, G29000600" +County and PUMA "G2900210, G29000200" +County and PUMA "G2900230, G29002400" +County and PUMA "G2900250, G29000800" +County and PUMA "G2900270, G29000500" +County and PUMA "G2900290, G29001400" +County and PUMA "G2900310, G29002200" +County and PUMA "G2900330, G29000700" +County and PUMA "G2900350, G29002400" +County and PUMA "G2900370, G29001100" +County and PUMA "G2900390, G29001200" +County and PUMA "G2900410, G29000700" +County and PUMA "G2900430, G29002601" +County and PUMA "G2900450, G29000300" +County and PUMA "G2900470, G29000901" +County and PUMA "G2900470, G29000902" +County and PUMA "G2900470, G29000903" +County and PUMA "G2900490, G29000800" +County and PUMA "G2900510, G29000500" +County and PUMA "G2900530, G29000700" +County and PUMA "G2900550, G29001500" +County and PUMA "G2900570, G29001200" +County and PUMA "G2900590, G29001300" +County and PUMA "G2900610, G29000100" +County and PUMA "G2900630, G29000200" +County and PUMA "G2900650, G29001500" +County and PUMA "G2900670, G29002500" +County and PUMA "G2900690, G29002300" +County and PUMA "G2900710, G29001600" +County and PUMA "G2900730, G29001500" +County and PUMA "G2900750, G29000100" +County and PUMA "G2900770, G29002601" +County and PUMA "G2900770, G29002602" +County and PUMA "G2900770, G29002603" +County and PUMA "G2900790, G29000100" +County and PUMA "G2900810, G29000100" +County and PUMA "G2900830, G29001200" +County and PUMA "G2900850, G29001300" +County and PUMA "G2900870, G29000100" +County and PUMA "G2900890, G29000700" +County and PUMA "G2900910, G29002500" +County and PUMA "G2900930, G29002400" +County and PUMA "G2900950, G29001001" +County and PUMA "G2900950, G29001002" +County and PUMA "G2900950, G29001003" +County and PUMA "G2900950, G29001004" +County and PUMA "G2900950, G29001005" +County and PUMA "G2900970, G29002800" +County and PUMA "G2900990, G29002001" +County and PUMA "G2900990, G29002002" +County and PUMA "G2901010, G29000800" +County and PUMA "G2901030, G29000300" +County and PUMA "G2901050, G29001300" +County and PUMA "G2901070, G29000800" +County and PUMA "G2901090, G29001200" +County and PUMA "G2901110, G29000300" +County and PUMA "G2901130, G29000400" +County and PUMA "G2901150, G29000100" +County and PUMA "G2901170, G29000100" +County and PUMA "G2901190, G29002700" +County and PUMA "G2901210, G29000300" +County and PUMA "G2901230, G29002400" +County and PUMA "G2901250, G29001500" +County and PUMA "G2901270, G29000300" +County and PUMA "G2901290, G29000100" +County and PUMA "G2901310, G29001400" +County and PUMA "G2901330, G29002300" +County and PUMA "G2901350, G29000500" +County and PUMA "G2901370, G29000300" +County and PUMA "G2901390, G29000400" +County and PUMA "G2901410, G29001400" +County and PUMA "G2901430, G29002300" +County and PUMA "G2901450, G29002800" +County and PUMA "G2901470, G29000100" +County and PUMA "G2901490, G29002500" +County and PUMA "G2901510, G29000500" +County and PUMA "G2901530, G29002500" +County and PUMA "G2901550, G29002300" +County and PUMA "G2901570, G29002100" +County and PUMA "G2901590, G29000700" +County and PUMA "G2901610, G29001500" +County and PUMA "G2901630, G29000400" +County and PUMA "G2901650, G29000903" +County and PUMA "G2901670, G29001300" +County and PUMA "G2901690, G29001400" +County and PUMA "G2901710, G29000100" +County and PUMA "G2901730, G29000300" +County and PUMA "G2901750, G29000700" +County and PUMA "G2901770, G29000800" +County and PUMA "G2901790, G29002400" +County and PUMA "G2901810, G29002400" +County and PUMA "G2901830, G29001701" +County and PUMA "G2901830, G29001702" +County and PUMA "G2901830, G29001703" +County and PUMA "G2901850, G29001200" +County and PUMA "G2901860, G29002100" +County and PUMA "G2901870, G29002100" +County and PUMA "G2901890, G29001801" +County and PUMA "G2901890, G29001802" +County and PUMA "G2901890, G29001803" +County and PUMA "G2901890, G29001804" +County and PUMA "G2901890, G29001805" +County and PUMA "G2901890, G29001806" +County and PUMA "G2901890, G29001807" +County and PUMA "G2901890, G29001808" +County and PUMA "G2901950, G29000700" +County and PUMA "G2901970, G29000300" +County and PUMA "G2901990, G29000300" +County and PUMA "G2902010, G29002200" +County and PUMA "G2902030, G29002500" +County and PUMA "G2902050, G29000300" +County and PUMA "G2902070, G29002300" +County and PUMA "G2902090, G29002700" +County and PUMA "G2902110, G29000100" +County and PUMA "G2902130, G29002700" +County and PUMA "G2902150, G29002500" +County and PUMA "G2902170, G29001200" +County and PUMA "G2902190, G29000400" +County and PUMA "G2902210, G29002100" +County and PUMA "G2902230, G29002400" +County and PUMA "G2902250, G29002601" +County and PUMA "G2902270, G29000100" +County and PUMA "G2902290, G29002500" +County and PUMA "G2905100, G29001901" +County and PUMA "G2905100, G29001902" +County and PUMA "G3000010, G30000300" +County and PUMA "G3000030, G30000600" +County and PUMA "G3000050, G30000400" +County and PUMA "G3000070, G30000300" +County and PUMA "G3000090, G30000500" +County and PUMA "G3000110, G30000600" +County and PUMA "G3000130, G30000400" +County and PUMA "G3000150, G30000400" +County and PUMA "G3000170, G30000600" +County and PUMA "G3000190, G30000600" +County and PUMA "G3000210, G30000600" +County and PUMA "G3000230, G30000300" +County and PUMA "G3000250, G30000600" +County and PUMA "G3000270, G30000400" +County and PUMA "G3000290, G30000100" +County and PUMA "G3000310, G30000500" +County and PUMA "G3000330, G30000600" +County and PUMA "G3000350, G30000100" +County and PUMA "G3000370, G30000600" +County and PUMA "G3000390, G30000300" +County and PUMA "G3000410, G30000400" +County and PUMA "G3000430, G30000300" +County and PUMA "G3000450, G30000400" +County and PUMA "G3000470, G30000200" +County and PUMA "G3000490, G30000300" +County and PUMA "G3000510, G30000400" +County and PUMA "G3000530, G30000100" +County and PUMA "G3000550, G30000600" +County and PUMA "G3000570, G30000300" +County and PUMA "G3000590, G30000400" +County and PUMA "G3000610, G30000200" +County and PUMA "G3000630, G30000200" +County and PUMA "G3000650, G30000600" +County and PUMA "G3000670, G30000500" +County and PUMA "G3000690, G30000400" +County and PUMA "G3000710, G30000600" +County and PUMA "G3000730, G30000400" +County and PUMA "G3000750, G30000600" +County and PUMA "G3000770, G30000300" +County and PUMA "G3000790, G30000600" +County and PUMA "G3000810, G30000200" +County and PUMA "G3000830, G30000600" +County and PUMA "G3000850, G30000600" +County and PUMA "G3000870, G30000600" +County and PUMA "G3000890, G30000200" +County and PUMA "G3000910, G30000600" +County and PUMA "G3000930, G30000300" +County and PUMA "G3000950, G30000500" +County and PUMA "G3000970, G30000500" +County and PUMA "G3000990, G30000400" +County and PUMA "G3001010, G30000400" +County and PUMA "G3001030, G30000600" +County and PUMA "G3001050, G30000600" +County and PUMA "G3001070, G30000400" +County and PUMA "G3001090, G30000600" +County and PUMA "G3001110, G30000600" +County and PUMA "G3001110, G30000700" +County and PUMA "G3100010, G31000500" +County and PUMA "G3100030, G31000200" +County and PUMA "G3100050, G31000400" +County and PUMA "G3100070, G31000100" +County and PUMA "G3100090, G31000300" +County and PUMA "G3100110, G31000200" +County and PUMA "G3100130, G31000100" +County and PUMA "G3100150, G31000100" +County and PUMA "G3100170, G31000100" +County and PUMA "G3100190, G31000500" +County and PUMA "G3100210, G31000200" +County and PUMA "G3100230, G31000600" +County and PUMA "G3100250, G31000701" +County and PUMA "G3100270, G31000200" +County and PUMA "G3100290, G31000400" +County and PUMA "G3100310, G31000100" +County and PUMA "G3100330, G31000100" +County and PUMA "G3100350, G31000500" +County and PUMA "G3100370, G31000200" +County and PUMA "G3100390, G31000200" +County and PUMA "G3100410, G31000300" +County and PUMA "G3100430, G31000200" +County and PUMA "G3100450, G31000100" +County and PUMA "G3100470, G31000400" +County and PUMA "G3100490, G31000100" +County and PUMA "G3100510, G31000200" +County and PUMA "G3100530, G31000701" +County and PUMA "G3100550, G31000901" +County and PUMA "G3100550, G31000902" +County and PUMA "G3100550, G31000903" +County and PUMA "G3100550, G31000904" +County and PUMA "G3100570, G31000400" +County and PUMA "G3100590, G31000600" +County and PUMA "G3100610, G31000500" +County and PUMA "G3100630, G31000400" +County and PUMA "G3100650, G31000400" +County and PUMA "G3100670, G31000600" +County and PUMA "G3100690, G31000100" +County and PUMA "G3100710, G31000300" +County and PUMA "G3100730, G31000400" +County and PUMA "G3100750, G31000400" +County and PUMA "G3100770, G31000300" +County and PUMA "G3100790, G31000300" +County and PUMA "G3100810, G31000300" +County and PUMA "G3100830, G31000500" +County and PUMA "G3100850, G31000400" +County and PUMA "G3100870, G31000400" +County and PUMA "G3100890, G31000100" +County and PUMA "G3100910, G31000400" +County and PUMA "G3100930, G31000300" +County and PUMA "G3100950, G31000600" +County and PUMA "G3100970, G31000600" +County and PUMA "G3100990, G31000500" +County and PUMA "G3101010, G31000400" +County and PUMA "G3101030, G31000100" +County and PUMA "G3101050, G31000100" +County and PUMA "G3101070, G31000200" +County and PUMA "G3101090, G31000801" +County and PUMA "G3101090, G31000802" +County and PUMA "G3101110, G31000400" +County and PUMA "G3101130, G31000400" +County and PUMA "G3101150, G31000300" +County and PUMA "G3101170, G31000400" +County and PUMA "G3101190, G31000200" +County and PUMA "G3101210, G31000300" +County and PUMA "G3101230, G31000100" +County and PUMA "G3101250, G31000200" +County and PUMA "G3101270, G31000600" +County and PUMA "G3101290, G31000500" +County and PUMA "G3101310, G31000600" +County and PUMA "G3101330, G31000600" +County and PUMA "G3101350, G31000400" +County and PUMA "G3101370, G31000500" +County and PUMA "G3101390, G31000200" +County and PUMA "G3101410, G31000200" +County and PUMA "G3101430, G31000600" +County and PUMA "G3101450, G31000400" +County and PUMA "G3101470, G31000600" +County and PUMA "G3101490, G31000100" +County and PUMA "G3101510, G31000600" +County and PUMA "G3101530, G31000702" +County and PUMA "G3101550, G31000701" +County and PUMA "G3101570, G31000100" +County and PUMA "G3101590, G31000600" +County and PUMA "G3101610, G31000100" +County and PUMA "G3101630, G31000300" +County and PUMA "G3101650, G31000100" +County and PUMA "G3101670, G31000200" +County and PUMA "G3101690, G31000600" +County and PUMA "G3101710, G31000400" +County and PUMA "G3101730, G31000200" +County and PUMA "G3101750, G31000300" +County and PUMA "G3101770, G31000701" +County and PUMA "G3101790, G31000200" +County and PUMA "G3101810, G31000500" +County and PUMA "G3101830, G31000300" +County and PUMA "G3101850, G31000600" +County and PUMA "G3200010, G32000300" +County and PUMA "G3200030, G32000401" +County and PUMA "G3200030, G32000402" +County and PUMA "G3200030, G32000403" +County and PUMA "G3200030, G32000404" +County and PUMA "G3200030, G32000405" +County and PUMA "G3200030, G32000406" +County and PUMA "G3200030, G32000407" +County and PUMA "G3200030, G32000408" +County and PUMA "G3200030, G32000409" +County and PUMA "G3200030, G32000410" +County and PUMA "G3200030, G32000411" +County and PUMA "G3200030, G32000412" +County and PUMA "G3200030, G32000413" +County and PUMA "G3200050, G32000200" +County and PUMA "G3200070, G32000300" +County and PUMA "G3200090, G32000300" +County and PUMA "G3200110, G32000300" +County and PUMA "G3200130, G32000300" +County and PUMA "G3200150, G32000300" +County and PUMA "G3200170, G32000300" +County and PUMA "G3200190, G32000200" +County and PUMA "G3200210, G32000300" +County and PUMA "G3200230, G32000300" +County and PUMA "G3200270, G32000300" +County and PUMA "G3200290, G32000200" +County and PUMA "G3200310, G32000101" +County and PUMA "G3200310, G32000102" +County and PUMA "G3200310, G32000103" +County and PUMA "G3200330, G32000300" +County and PUMA "G3205100, G32000200" +County and PUMA "G3300010, G33000200" +County and PUMA "G3300030, G33000200" +County and PUMA "G3300030, G33000300" +County and PUMA "G3300050, G33000500" +County and PUMA "G3300070, G33000100" +County and PUMA "G3300090, G33000100" +County and PUMA "G3300110, G33000600" +County and PUMA "G3300110, G33000700" +County and PUMA "G3300110, G33000800" +County and PUMA "G3300110, G33000900" +County and PUMA "G3300130, G33000200" +County and PUMA "G3300130, G33000400" +County and PUMA "G3300130, G33000700" +County and PUMA "G3300150, G33000300" +County and PUMA "G3300150, G33000700" +County and PUMA "G3300150, G33001000" +County and PUMA "G3300170, G33000300" +County and PUMA "G3300190, G33000500" +County and PUMA "G3400010, G34000101" +County and PUMA "G3400010, G34000102" +County and PUMA "G3400010, G34002600" +County and PUMA "G3400030, G34000301" +County and PUMA "G3400030, G34000302" +County and PUMA "G3400030, G34000303" +County and PUMA "G3400030, G34000304" +County and PUMA "G3400030, G34000305" +County and PUMA "G3400030, G34000306" +County and PUMA "G3400030, G34000307" +County and PUMA "G3400030, G34000308" +County and PUMA "G3400050, G34002001" +County and PUMA "G3400050, G34002002" +County and PUMA "G3400050, G34002003" +County and PUMA "G3400070, G34002101" +County and PUMA "G3400070, G34002102" +County and PUMA "G3400070, G34002103" +County and PUMA "G3400070, G34002104" +County and PUMA "G3400090, G34002600" +County and PUMA "G3400110, G34002400" +County and PUMA "G3400110, G34002500" +County and PUMA "G3400130, G34001301" +County and PUMA "G3400130, G34001302" +County and PUMA "G3400130, G34001401" +County and PUMA "G3400130, G34001402" +County and PUMA "G3400130, G34001403" +County and PUMA "G3400130, G34001404" +County and PUMA "G3400150, G34002201" +County and PUMA "G3400150, G34002202" +County and PUMA "G3400170, G34000601" +County and PUMA "G3400170, G34000602" +County and PUMA "G3400170, G34000701" +County and PUMA "G3400170, G34000702" +County and PUMA "G3400170, G34000703" +County and PUMA "G3400190, G34000800" +County and PUMA "G3400210, G34002301" +County and PUMA "G3400210, G34002302" +County and PUMA "G3400210, G34002303" +County and PUMA "G3400230, G34000901" +County and PUMA "G3400230, G34000902" +County and PUMA "G3400230, G34000903" +County and PUMA "G3400230, G34000904" +County and PUMA "G3400230, G34000905" +County and PUMA "G3400230, G34000906" +County and PUMA "G3400230, G34000907" +County and PUMA "G3400250, G34001101" +County and PUMA "G3400250, G34001102" +County and PUMA "G3400250, G34001103" +County and PUMA "G3400250, G34001104" +County and PUMA "G3400250, G34001105" +County and PUMA "G3400250, G34001106" +County and PUMA "G3400270, G34001501" +County and PUMA "G3400270, G34001502" +County and PUMA "G3400270, G34001503" +County and PUMA "G3400270, G34001504" +County and PUMA "G3400290, G34001201" +County and PUMA "G3400290, G34001202" +County and PUMA "G3400290, G34001203" +County and PUMA "G3400290, G34001204" +County and PUMA "G3400290, G34001205" +County and PUMA "G3400310, G34000400" +County and PUMA "G3400310, G34000501" +County and PUMA "G3400310, G34000502" +County and PUMA "G3400310, G34000503" +County and PUMA "G3400330, G34002500" +County and PUMA "G3400350, G34001001" +County and PUMA "G3400350, G34001002" +County and PUMA "G3400350, G34001003" +County and PUMA "G3400370, G34001600" +County and PUMA "G3400390, G34001800" +County and PUMA "G3400390, G34001901" +County and PUMA "G3400390, G34001902" +County and PUMA "G3400390, G34001903" +County and PUMA "G3400390, G34001904" +County and PUMA "G3400410, G34001700" +County and PUMA "G3500010, G35000700" +County and PUMA "G3500010, G35000801" +County and PUMA "G3500010, G35000802" +County and PUMA "G3500010, G35000803" +County and PUMA "G3500010, G35000804" +County and PUMA "G3500010, G35000805" +County and PUMA "G3500010, G35000806" +County and PUMA "G3500030, G35000900" +County and PUMA "G3500050, G35001100" +County and PUMA "G3500060, G35000100" +County and PUMA "G3500070, G35000400" +County and PUMA "G3500090, G35000400" +County and PUMA "G3500110, G35000400" +County and PUMA "G3500130, G35001001" +County and PUMA "G3500130, G35001002" +County and PUMA "G3500150, G35001200" +County and PUMA "G3500170, G35000900" +County and PUMA "G3500190, G35000400" +County and PUMA "G3500210, G35000400" +County and PUMA "G3500230, G35000900" +County and PUMA "G3500250, G35001200" +County and PUMA "G3500270, G35001100" +County and PUMA "G3500280, G35000300" +County and PUMA "G3500290, G35000900" +County and PUMA "G3500310, G35000100" +County and PUMA "G3500330, G35000300" +County and PUMA "G3500350, G35001100" +County and PUMA "G3500370, G35000400" +County and PUMA "G3500390, G35000300" +County and PUMA "G3500410, G35000400" +County and PUMA "G3500430, G35000600" +County and PUMA "G3500450, G35000100" +County and PUMA "G3500450, G35000200" +County and PUMA "G3500470, G35000300" +County and PUMA "G3500490, G35000500" +County and PUMA "G3500510, G35000900" +County and PUMA "G3500530, G35000900" +County and PUMA "G3500550, G35000300" +County and PUMA "G3500570, G35000900" +County and PUMA "G3500590, G35000400" +County and PUMA "G3500610, G35000700" +County and PUMA "G3600010, G36002001" +County and PUMA "G3600010, G36002002" +County and PUMA "G3600030, G36002500" +County and PUMA "G3600050, G36003701" +County and PUMA "G3600050, G36003702" +County and PUMA "G3600050, G36003703" +County and PUMA "G3600050, G36003704" +County and PUMA "G3600050, G36003705" +County and PUMA "G3600050, G36003706" +County and PUMA "G3600050, G36003707" +County and PUMA "G3600050, G36003708" +County and PUMA "G3600050, G36003709" +County and PUMA "G3600050, G36003710" +County and PUMA "G3600070, G36002201" +County and PUMA "G3600070, G36002202" +County and PUMA "G3600070, G36002203" +County and PUMA "G3600090, G36002500" +County and PUMA "G3600110, G36000704" +County and PUMA "G3600130, G36002600" +County and PUMA "G3600150, G36002401" +County and PUMA "G3600150, G36002402" +County and PUMA "G3600170, G36002203" +County and PUMA "G3600190, G36000200" +County and PUMA "G3600210, G36002100" +County and PUMA "G3600230, G36001500" +County and PUMA "G3600250, G36002203" +County and PUMA "G3600270, G36002801" +County and PUMA "G3600270, G36002802" +County and PUMA "G3600290, G36001201" +County and PUMA "G3600290, G36001202" +County and PUMA "G3600290, G36001203" +County and PUMA "G3600290, G36001204" +County and PUMA "G3600290, G36001205" +County and PUMA "G3600290, G36001206" +County and PUMA "G3600290, G36001207" +County and PUMA "G3600310, G36000200" +County and PUMA "G3600330, G36000200" +County and PUMA "G3600350, G36001600" +County and PUMA "G3600370, G36001000" +County and PUMA "G3600390, G36002100" +County and PUMA "G3600410, G36000200" +County and PUMA "G3600430, G36000401" +County and PUMA "G3600430, G36000403" +County and PUMA "G3600450, G36000500" +County and PUMA "G3600470, G36004001" +County and PUMA "G3600470, G36004002" +County and PUMA "G3600470, G36004003" +County and PUMA "G3600470, G36004004" +County and PUMA "G3600470, G36004005" +County and PUMA "G3600470, G36004006" +County and PUMA "G3600470, G36004007" +County and PUMA "G3600470, G36004008" +County and PUMA "G3600470, G36004009" +County and PUMA "G3600470, G36004010" +County and PUMA "G3600470, G36004011" +County and PUMA "G3600470, G36004012" +County and PUMA "G3600470, G36004013" +County and PUMA "G3600470, G36004014" +County and PUMA "G3600470, G36004015" +County and PUMA "G3600470, G36004016" +County and PUMA "G3600470, G36004017" +County and PUMA "G3600470, G36004018" +County and PUMA "G3600490, G36000500" +County and PUMA "G3600510, G36001300" +County and PUMA "G3600530, G36001500" +County and PUMA "G3600550, G36000901" +County and PUMA "G3600550, G36000902" +County and PUMA "G3600550, G36000903" +County and PUMA "G3600550, G36000904" +County and PUMA "G3600550, G36000905" +County and PUMA "G3600550, G36000906" +County and PUMA "G3600570, G36001600" +County and PUMA "G3600590, G36003201" +County and PUMA "G3600590, G36003202" +County and PUMA "G3600590, G36003203" +County and PUMA "G3600590, G36003204" +County and PUMA "G3600590, G36003205" +County and PUMA "G3600590, G36003206" +County and PUMA "G3600590, G36003207" +County and PUMA "G3600590, G36003208" +County and PUMA "G3600590, G36003209" +County and PUMA "G3600590, G36003210" +County and PUMA "G3600590, G36003211" +County and PUMA "G3600590, G36003212" +County and PUMA "G3600610, G36003801" +County and PUMA "G3600610, G36003802" +County and PUMA "G3600610, G36003803" +County and PUMA "G3600610, G36003804" +County and PUMA "G3600610, G36003805" +County and PUMA "G3600610, G36003806" +County and PUMA "G3600610, G36003807" +County and PUMA "G3600610, G36003808" +County and PUMA "G3600610, G36003809" +County and PUMA "G3600610, G36003810" +County and PUMA "G3600630, G36001101" +County and PUMA "G3600630, G36001102" +County and PUMA "G3600650, G36000401" +County and PUMA "G3600650, G36000402" +County and PUMA "G3600650, G36000403" +County and PUMA "G3600670, G36000701" +County and PUMA "G3600670, G36000702" +County and PUMA "G3600670, G36000703" +County and PUMA "G3600670, G36000704" +County and PUMA "G3600690, G36001400" +County and PUMA "G3600710, G36002901" +County and PUMA "G3600710, G36002902" +County and PUMA "G3600710, G36002903" +County and PUMA "G3600730, G36001000" +County and PUMA "G3600750, G36000600" +County and PUMA "G3600770, G36000403" +County and PUMA "G3600790, G36003101" +County and PUMA "G3600810, G36004101" +County and PUMA "G3600810, G36004102" +County and PUMA "G3600810, G36004103" +County and PUMA "G3600810, G36004104" +County and PUMA "G3600810, G36004105" +County and PUMA "G3600810, G36004106" +County and PUMA "G3600810, G36004107" +County and PUMA "G3600810, G36004108" +County and PUMA "G3600810, G36004109" +County and PUMA "G3600810, G36004110" +County and PUMA "G3600810, G36004111" +County and PUMA "G3600810, G36004112" +County and PUMA "G3600810, G36004113" +County and PUMA "G3600810, G36004114" +County and PUMA "G3600830, G36001900" +County and PUMA "G3600850, G36003901" +County and PUMA "G3600850, G36003902" +County and PUMA "G3600850, G36003903" +County and PUMA "G3600870, G36003001" +County and PUMA "G3600870, G36003002" +County and PUMA "G3600870, G36003003" +County and PUMA "G3600890, G36000100" +County and PUMA "G3600910, G36001801" +County and PUMA "G3600910, G36001802" +County and PUMA "G3600930, G36001700" +County and PUMA "G3600950, G36000403" +County and PUMA "G3600970, G36002402" +County and PUMA "G3600990, G36000800" +County and PUMA "G3601010, G36002401" +County and PUMA "G3601010, G36002402" +County and PUMA "G3601030, G36003301" +County and PUMA "G3601030, G36003302" +County and PUMA "G3601030, G36003303" +County and PUMA "G3601030, G36003304" +County and PUMA "G3601030, G36003305" +County and PUMA "G3601030, G36003306" +County and PUMA "G3601030, G36003307" +County and PUMA "G3601030, G36003308" +County and PUMA "G3601030, G36003309" +County and PUMA "G3601030, G36003310" +County and PUMA "G3601030, G36003311" +County and PUMA "G3601030, G36003312" +County and PUMA "G3601030, G36003313" +County and PUMA "G3601050, G36002701" +County and PUMA "G3601070, G36002202" +County and PUMA "G3601090, G36002300" +County and PUMA "G3601110, G36002701" +County and PUMA "G3601110, G36002702" +County and PUMA "G3601130, G36000300" +County and PUMA "G3601150, G36000300" +County and PUMA "G3601170, G36000800" +County and PUMA "G3601190, G36003101" +County and PUMA "G3601190, G36003102" +County and PUMA "G3601190, G36003103" +County and PUMA "G3601190, G36003104" +County and PUMA "G3601190, G36003105" +County and PUMA "G3601190, G36003106" +County and PUMA "G3601190, G36003107" +County and PUMA "G3601210, G36001300" +County and PUMA "G3601230, G36001400" +County and PUMA "G3700010, G37001600" +County and PUMA "G3700030, G37002000" +County and PUMA "G3700050, G37000200" +County and PUMA "G3700070, G37005300" +County and PUMA "G3700090, G37000100" +County and PUMA "G3700110, G37000100" +County and PUMA "G3700130, G37004400" +County and PUMA "G3700150, G37000800" +County and PUMA "G3700170, G37004900" +County and PUMA "G3700190, G37004800" +County and PUMA "G3700210, G37002201" +County and PUMA "G3700210, G37002202" +County and PUMA "G3700230, G37002100" +County and PUMA "G3700250, G37003200" +County and PUMA "G3700250, G37003300" +County and PUMA "G3700270, G37002000" +County and PUMA "G3700290, G37000700" +County and PUMA "G3700310, G37004400" +County and PUMA "G3700330, G37000400" +County and PUMA "G3700350, G37002800" +County and PUMA "G3700370, G37001500" +County and PUMA "G3700390, G37002400" +County and PUMA "G3700410, G37000700" +County and PUMA "G3700430, G37002400" +County and PUMA "G3700450, G37002600" +County and PUMA "G3700450, G37002700" +County and PUMA "G3700470, G37004900" +County and PUMA "G3700490, G37004300" +County and PUMA "G3700510, G37005001" +County and PUMA "G3700510, G37005002" +County and PUMA "G3700510, G37005003" +County and PUMA "G3700530, G37000700" +County and PUMA "G3700550, G37000800" +County and PUMA "G3700570, G37003500" +County and PUMA "G3700590, G37001900" +County and PUMA "G3700610, G37003900" +County and PUMA "G3700630, G37001301" +County and PUMA "G3700630, G37001302" +County and PUMA "G3700650, G37000900" +County and PUMA "G3700670, G37001801" +County and PUMA "G3700670, G37001802" +County and PUMA "G3700670, G37001803" +County and PUMA "G3700690, G37000500" +County and PUMA "G3700710, G37003001" +County and PUMA "G3700710, G37003002" +County and PUMA "G3700730, G37000700" +County and PUMA "G3700750, G37002300" +County and PUMA "G3700770, G37000400" +County and PUMA "G3700790, G37001000" +County and PUMA "G3700810, G37001701" +County and PUMA "G3700810, G37001702" +County and PUMA "G3700810, G37001703" +County and PUMA "G3700810, G37001704" +County and PUMA "G3700830, G37000600" +County and PUMA "G3700850, G37003800" +County and PUMA "G3700870, G37002300" +County and PUMA "G3700890, G37002500" +County and PUMA "G3700910, G37000600" +County and PUMA "G3700930, G37005200" +County and PUMA "G3700950, G37000800" +County and PUMA "G3700970, G37001900" +County and PUMA "G3700970, G37002900" +County and PUMA "G3700990, G37002300" +County and PUMA "G3700990, G37002400" +County and PUMA "G3701010, G37001100" +County and PUMA "G3701030, G37004100" +County and PUMA "G3701050, G37001500" +County and PUMA "G3701070, G37004100" +County and PUMA "G3701090, G37002700" +County and PUMA "G3701110, G37002100" +County and PUMA "G3701130, G37002400" +County and PUMA "G3701150, G37002300" +County and PUMA "G3701170, G37000800" +County and PUMA "G3701190, G37003101" +County and PUMA "G3701190, G37003102" +County and PUMA "G3701190, G37003103" +County and PUMA "G3701190, G37003104" +County and PUMA "G3701190, G37003105" +County and PUMA "G3701190, G37003106" +County and PUMA "G3701190, G37003107" +County and PUMA "G3701190, G37003108" +County and PUMA "G3701210, G37000100" +County and PUMA "G3701230, G37003700" +County and PUMA "G3701250, G37003700" +County and PUMA "G3701270, G37000900" +County and PUMA "G3701290, G37004600" +County and PUMA "G3701290, G37004700" +County and PUMA "G3701310, G37000600" +County and PUMA "G3701330, G37004100" +County and PUMA "G3701330, G37004500" +County and PUMA "G3701350, G37001400" +County and PUMA "G3701370, G37004400" +County and PUMA "G3701390, G37000700" +County and PUMA "G3701410, G37004600" +County and PUMA "G3701430, G37000700" +County and PUMA "G3701450, G37000400" +County and PUMA "G3701470, G37004200" +County and PUMA "G3701490, G37002600" +County and PUMA "G3701510, G37003600" +County and PUMA "G3701530, G37005200" +County and PUMA "G3701550, G37004900" +County and PUMA "G3701550, G37005100" +County and PUMA "G3701570, G37000300" +County and PUMA "G3701590, G37003400" +County and PUMA "G3701610, G37002600" +County and PUMA "G3701630, G37003900" +County and PUMA "G3701650, G37005200" +County and PUMA "G3701670, G37003300" +County and PUMA "G3701690, G37000300" +County and PUMA "G3701710, G37000200" +County and PUMA "G3701730, G37002300" +County and PUMA "G3701750, G37002500" +County and PUMA "G3701770, G37000800" +County and PUMA "G3701790, G37005300" +County and PUMA "G3701790, G37005400" +County and PUMA "G3701810, G37000500" +County and PUMA "G3701830, G37001201" +County and PUMA "G3701830, G37001202" +County and PUMA "G3701830, G37001203" +County and PUMA "G3701830, G37001204" +County and PUMA "G3701830, G37001205" +County and PUMA "G3701830, G37001206" +County and PUMA "G3701830, G37001207" +County and PUMA "G3701830, G37001208" +County and PUMA "G3701850, G37000500" +County and PUMA "G3701850, G37000600" +County and PUMA "G3701870, G37000800" +County and PUMA "G3701890, G37000100" +County and PUMA "G3701910, G37004000" +County and PUMA "G3701930, G37000200" +County and PUMA "G3701950, G37001000" +County and PUMA "G3701970, G37001900" +County and PUMA "G3701990, G37000100" +County and PUMA "G3800010, G38000100" +County and PUMA "G3800030, G38000200" +County and PUMA "G3800050, G38000200" +County and PUMA "G3800070, G38000100" +County and PUMA "G3800090, G38000200" +County and PUMA "G3800110, G38000100" +County and PUMA "G3800130, G38000100" +County and PUMA "G3800150, G38000300" +County and PUMA "G3800170, G38000500" +County and PUMA "G3800190, G38000400" +County and PUMA "G3800210, G38000200" +County and PUMA "G3800230, G38000100" +County and PUMA "G3800250, G38000100" +County and PUMA "G3800270, G38000200" +County and PUMA "G3800290, G38000300" +County and PUMA "G3800310, G38000200" +County and PUMA "G3800330, G38000100" +County and PUMA "G3800350, G38000400" +County and PUMA "G3800370, G38000100" +County and PUMA "G3800390, G38000400" +County and PUMA "G3800410, G38000100" +County and PUMA "G3800430, G38000300" +County and PUMA "G3800450, G38000200" +County and PUMA "G3800470, G38000300" +County and PUMA "G3800490, G38000100" +County and PUMA "G3800510, G38000300" +County and PUMA "G3800530, G38000100" +County and PUMA "G3800550, G38000100" +County and PUMA "G3800570, G38000100" +County and PUMA "G3800590, G38000300" +County and PUMA "G3800610, G38000100" +County and PUMA "G3800630, G38000200" +County and PUMA "G3800650, G38000100" +County and PUMA "G3800670, G38000400" +County and PUMA "G3800690, G38000200" +County and PUMA "G3800710, G38000200" +County and PUMA "G3800730, G38000200" +County and PUMA "G3800750, G38000100" +County and PUMA "G3800770, G38000200" +County and PUMA "G3800790, G38000200" +County and PUMA "G3800810, G38000200" +County and PUMA "G3800830, G38000200" +County and PUMA "G3800850, G38000100" +County and PUMA "G3800870, G38000100" +County and PUMA "G3800890, G38000100" +County and PUMA "G3800910, G38000400" +County and PUMA "G3800930, G38000200" +County and PUMA "G3800950, G38000400" +County and PUMA "G3800970, G38000400" +County and PUMA "G3800990, G38000400" +County and PUMA "G3801010, G38000100" +County and PUMA "G3801030, G38000200" +County and PUMA "G3801050, G38000100" +County and PUMA "G3900010, G39005200" +County and PUMA "G3900030, G39002500" +County and PUMA "G3900050, G39002100" +County and PUMA "G3900070, G39001300" +County and PUMA "G3900090, G39005000" +County and PUMA "G3900110, G39002600" +County and PUMA "G3900130, G39003500" +County and PUMA "G3900150, G39005700" +County and PUMA "G3900170, G39005401" +County and PUMA "G3900170, G39005402" +County and PUMA "G3900170, G39005403" +County and PUMA "G3900190, G39003300" +County and PUMA "G3900210, G39002700" +County and PUMA "G3900230, G39004300" +County and PUMA "G3900250, G39005600" +County and PUMA "G3900250, G39005700" +County and PUMA "G3900270, G39005200" +County and PUMA "G3900290, G39003400" +County and PUMA "G3900310, G39002900" +County and PUMA "G3900330, G39002300" +County and PUMA "G3900350, G39000901" +County and PUMA "G3900350, G39000902" +County and PUMA "G3900350, G39000903" +County and PUMA "G3900350, G39000904" +County and PUMA "G3900350, G39000905" +County and PUMA "G3900350, G39000906" +County and PUMA "G3900350, G39000907" +County and PUMA "G3900350, G39000908" +County and PUMA "G3900350, G39000909" +County and PUMA "G3900350, G39000910" +County and PUMA "G3900370, G39004500" +County and PUMA "G3900390, G39000100" +County and PUMA "G3900410, G39004000" +County and PUMA "G3900430, G39000700" +County and PUMA "G3900450, G39003900" +County and PUMA "G3900470, G39004800" +County and PUMA "G3900490, G39004101" +County and PUMA "G3900490, G39004102" +County and PUMA "G3900490, G39004103" +County and PUMA "G3900490, G39004104" +County and PUMA "G3900490, G39004105" +County and PUMA "G3900490, G39004106" +County and PUMA "G3900490, G39004107" +County and PUMA "G3900490, G39004108" +County and PUMA "G3900490, G39004109" +County and PUMA "G3900490, G39004110" +County and PUMA "G3900490, G39004111" +County and PUMA "G3900510, G39000200" +County and PUMA "G3900530, G39005000" +County and PUMA "G3900550, G39001200" +County and PUMA "G3900570, G39004700" +County and PUMA "G3900590, G39002900" +County and PUMA "G3900610, G39005501" +County and PUMA "G3900610, G39005502" +County and PUMA "G3900610, G39005503" +County and PUMA "G3900610, G39005504" +County and PUMA "G3900610, G39005505" +County and PUMA "G3900610, G39005506" +County and PUMA "G3900610, G39005507" +County and PUMA "G3900630, G39002400" +County and PUMA "G3900650, G39002700" +County and PUMA "G3900670, G39003000" +County and PUMA "G3900690, G39000100" +County and PUMA "G3900710, G39005200" +County and PUMA "G3900730, G39004900" +County and PUMA "G3900750, G39002900" +County and PUMA "G3900770, G39002100" +County and PUMA "G3900790, G39004900" +County and PUMA "G3900810, G39003500" +County and PUMA "G3900830, G39002800" +County and PUMA "G3900850, G39001000" +County and PUMA "G3900850, G39001100" +County and PUMA "G3900850, G39001200" +County and PUMA "G3900870, G39005100" +County and PUMA "G3900890, G39003800" +County and PUMA "G3900910, G39002700" +County and PUMA "G3900930, G39000801" +County and PUMA "G3900930, G39000802" +County and PUMA "G3900950, G39000200" +County and PUMA "G3900950, G39000300" +County and PUMA "G3900950, G39000400" +County and PUMA "G3900950, G39000500" +County and PUMA "G3900950, G39000600" +County and PUMA "G3900970, G39004200" +County and PUMA "G3900990, G39001400" +County and PUMA "G3900990, G39001500" +County and PUMA "G3901010, G39002800" +County and PUMA "G3901030, G39001900" +County and PUMA "G3901050, G39005000" +County and PUMA "G3901070, G39002600" +County and PUMA "G3901090, G39004400" +County and PUMA "G3901110, G39003600" +County and PUMA "G3901130, G39004601" +County and PUMA "G3901130, G39004602" +County and PUMA "G3901130, G39004603" +County and PUMA "G3901130, G39004604" +County and PUMA "G3901150, G39003600" +County and PUMA "G3901170, G39002800" +County and PUMA "G3901190, G39003700" +County and PUMA "G3901210, G39003600" +County and PUMA "G3901230, G39000600" +County and PUMA "G3901250, G39000100" +County and PUMA "G3901270, G39003700" +County and PUMA "G3901290, G39004200" +County and PUMA "G3901310, G39004900" +County and PUMA "G3901330, G39001700" +County and PUMA "G3901350, G39004500" +County and PUMA "G3901370, G39002400" +County and PUMA "G3901390, G39002200" +County and PUMA "G3901410, G39004800" +County and PUMA "G3901430, G39000700" +County and PUMA "G3901450, G39005100" +County and PUMA "G3901470, G39002300" +County and PUMA "G3901490, G39004500" +County and PUMA "G3901510, G39003100" +County and PUMA "G3901510, G39003200" +County and PUMA "G3901510, G39003300" +County and PUMA "G3901530, G39001801" +County and PUMA "G3901530, G39001802" +County and PUMA "G3901530, G39001803" +County and PUMA "G3901530, G39001804" +County and PUMA "G3901530, G39001805" +County and PUMA "G3901550, G39001400" +County and PUMA "G3901550, G39001600" +County and PUMA "G3901570, G39003000" +County and PUMA "G3901590, G39004200" +County and PUMA "G3901610, G39002600" +County and PUMA "G3901630, G39004900" +County and PUMA "G3901650, G39005301" +County and PUMA "G3901650, G39005302" +County and PUMA "G3901670, G39003600" +County and PUMA "G3901690, G39002000" +County and PUMA "G3901710, G39000100" +County and PUMA "G3901730, G39000200" +County and PUMA "G3901730, G39000300" +County and PUMA "G3901730, G39000600" +County and PUMA "G3901750, G39002300" +County and PUMA "G4000010, G40000200" +County and PUMA "G4000030, G40000500" +County and PUMA "G4000050, G40000702" +County and PUMA "G4000070, G40000500" +County and PUMA "G4000090, G40000400" +County and PUMA "G4000110, G40000500" +County and PUMA "G4000130, G40000702" +County and PUMA "G4000150, G40000602" +County and PUMA "G4000170, G40000800" +County and PUMA "G4000190, G40000701" +County and PUMA "G4000210, G40000200" +County and PUMA "G4000230, G40000300" +County and PUMA "G4000250, G40000500" +County and PUMA "G4000270, G40000900" +County and PUMA "G4000290, G40000702" +County and PUMA "G4000310, G40000601" +County and PUMA "G4000310, G40000602" +County and PUMA "G4000330, G40000602" +County and PUMA "G4000350, G40000100" +County and PUMA "G4000370, G40001204" +County and PUMA "G4000370, G40001501" +County and PUMA "G4000370, G40001601" +County and PUMA "G4000390, G40000400" +County and PUMA "G4000410, G40000100" +County and PUMA "G4000430, G40000500" +County and PUMA "G4000450, G40000500" +County and PUMA "G4000470, G40001400" +County and PUMA "G4000490, G40000701" +County and PUMA "G4000510, G40001101" +County and PUMA "G4000530, G40000500" +County and PUMA "G4000550, G40000400" +County and PUMA "G4000570, G40000400" +County and PUMA "G4000590, G40000500" +County and PUMA "G4000610, G40000300" +County and PUMA "G4000630, G40001501" +County and PUMA "G4000650, G40000400" +County and PUMA "G4000670, G40000602" +County and PUMA "G4000690, G40000702" +County and PUMA "G4000710, G40001400" +County and PUMA "G4000730, G40000500" +County and PUMA "G4000750, G40000400" +County and PUMA "G4000770, G40000300" +County and PUMA "G4000790, G40000300" +County and PUMA "G4000810, G40001102" +County and PUMA "G4000830, G40001102" +County and PUMA "G4000850, G40000701" +County and PUMA "G4000870, G40001101" +County and PUMA "G4000890, G40000300" +County and PUMA "G4000910, G40001302" +County and PUMA "G4000930, G40000500" +County and PUMA "G4000950, G40000702" +County and PUMA "G4000970, G40000100" +County and PUMA "G4000990, G40000701" +County and PUMA "G4001010, G40001302" +County and PUMA "G4001030, G40001400" +County and PUMA "G4001050, G40000100" +County and PUMA "G4001070, G40001501" +County and PUMA "G4001090, G40001001" +County and PUMA "G4001090, G40001002" +County and PUMA "G4001090, G40001003" +County and PUMA "G4001090, G40001004" +County and PUMA "G4001090, G40001005" +County and PUMA "G4001090, G40001006" +County and PUMA "G4001110, G40001302" +County and PUMA "G4001130, G40001204" +County and PUMA "G4001130, G40001601" +County and PUMA "G4001150, G40000100" +County and PUMA "G4001170, G40001601" +County and PUMA "G4001190, G40001501" +County and PUMA "G4001210, G40000300" +County and PUMA "G4001230, G40000701" +County and PUMA "G4001230, G40000702" +County and PUMA "G4001250, G40001101" +County and PUMA "G4001250, G40001102" +County and PUMA "G4001270, G40000300" +County and PUMA "G4001290, G40000400" +County and PUMA "G4001310, G40000100" +County and PUMA "G4001310, G40001301" +County and PUMA "G4001330, G40001501" +County and PUMA "G4001350, G40000200" +County and PUMA "G4001370, G40000602" +County and PUMA "G4001390, G40000500" +County and PUMA "G4001410, G40000602" +County and PUMA "G4001430, G40001201" +County and PUMA "G4001430, G40001202" +County and PUMA "G4001430, G40001203" +County and PUMA "G4001430, G40001204" +County and PUMA "G4001450, G40001301" +County and PUMA "G4001450, G40001302" +County and PUMA "G4001470, G40001601" +County and PUMA "G4001490, G40000400" +County and PUMA "G4001510, G40000500" +County and PUMA "G4001530, G40000500" +County and PUMA "G4100010, G41000100" +County and PUMA "G4100030, G41000600" +County and PUMA "G4100050, G41001317" +County and PUMA "G4100050, G41001318" +County and PUMA "G4100050, G41001319" +County and PUMA "G4100070, G41000500" +County and PUMA "G4100090, G41000500" +County and PUMA "G4100110, G41000800" +County and PUMA "G4100130, G41000200" +County and PUMA "G4100150, G41000800" +County and PUMA "G4100170, G41000400" +County and PUMA "G4100190, G41001000" +County and PUMA "G4100210, G41000200" +County and PUMA "G4100230, G41000200" +County and PUMA "G4100250, G41000300" +County and PUMA "G4100270, G41000200" +County and PUMA "G4100290, G41000901" +County and PUMA "G4100290, G41000902" +County and PUMA "G4100310, G41000200" +County and PUMA "G4100330, G41000800" +County and PUMA "G4100350, G41000300" +County and PUMA "G4100370, G41000300" +County and PUMA "G4100390, G41000703" +County and PUMA "G4100390, G41000704" +County and PUMA "G4100390, G41000705" +County and PUMA "G4100410, G41000500" +County and PUMA "G4100430, G41000600" +County and PUMA "G4100450, G41000300" +County and PUMA "G4100470, G41001103" +County and PUMA "G4100470, G41001104" +County and PUMA "G4100470, G41001105" +County and PUMA "G4100490, G41000200" +County and PUMA "G4100510, G41001301" +County and PUMA "G4100510, G41001302" +County and PUMA "G4100510, G41001303" +County and PUMA "G4100510, G41001305" +County and PUMA "G4100510, G41001314" +County and PUMA "G4100510, G41001316" +County and PUMA "G4100530, G41001200" +County and PUMA "G4100550, G41000200" +County and PUMA "G4100570, G41000500" +County and PUMA "G4100590, G41000100" +County and PUMA "G4100610, G41000100" +County and PUMA "G4100630, G41000100" +County and PUMA "G4100650, G41000200" +County and PUMA "G4100670, G41001320" +County and PUMA "G4100670, G41001321" +County and PUMA "G4100670, G41001322" +County and PUMA "G4100670, G41001323" +County and PUMA "G4100670, G41001324" +County and PUMA "G4100690, G41000200" +County and PUMA "G4100710, G41001200" +County and PUMA "G4200010, G42003701" +County and PUMA "G4200030, G42001701" +County and PUMA "G4200030, G42001702" +County and PUMA "G4200030, G42001801" +County and PUMA "G4200030, G42001802" +County and PUMA "G4200030, G42001803" +County and PUMA "G4200030, G42001804" +County and PUMA "G4200030, G42001805" +County and PUMA "G4200030, G42001806" +County and PUMA "G4200030, G42001807" +County and PUMA "G4200050, G42001900" +County and PUMA "G4200070, G42001501" +County and PUMA "G4200070, G42001502" +County and PUMA "G4200090, G42003800" +County and PUMA "G4200110, G42002701" +County and PUMA "G4200110, G42002702" +County and PUMA "G4200110, G42002703" +County and PUMA "G4200130, G42002200" +County and PUMA "G4200150, G42000400" +County and PUMA "G4200170, G42003001" +County and PUMA "G4200170, G42003002" +County and PUMA "G4200170, G42003003" +County and PUMA "G4200170, G42003004" +County and PUMA "G4200190, G42001600" +County and PUMA "G4200210, G42002100" +County and PUMA "G4200230, G42000300" +County and PUMA "G4200250, G42002801" +County and PUMA "G4200270, G42001200" +County and PUMA "G4200290, G42003401" +County and PUMA "G4200290, G42003402" +County and PUMA "G4200290, G42003403" +County and PUMA "G4200290, G42003404" +County and PUMA "G4200310, G42001300" +County and PUMA "G4200330, G42000300" +County and PUMA "G4200350, G42000900" +County and PUMA "G4200370, G42000803" +County and PUMA "G4200390, G42000200" +County and PUMA "G4200410, G42002301" +County and PUMA "G4200410, G42002302" +County and PUMA "G4200430, G42002401" +County and PUMA "G4200430, G42002402" +County and PUMA "G4200450, G42003301" +County and PUMA "G4200450, G42003302" +County and PUMA "G4200450, G42003303" +County and PUMA "G4200450, G42003304" +County and PUMA "G4200470, G42000300" +County and PUMA "G4200490, G42000101" +County and PUMA "G4200490, G42000102" +County and PUMA "G4200510, G42003900" +County and PUMA "G4200530, G42001300" +County and PUMA "G4200550, G42003701" +County and PUMA "G4200550, G42003702" +County and PUMA "G4200570, G42003800" +County and PUMA "G4200590, G42004002" +County and PUMA "G4200610, G42002200" +County and PUMA "G4200630, G42001900" +County and PUMA "G4200650, G42001300" +County and PUMA "G4200670, G42001100" +County and PUMA "G4200690, G42000701" +County and PUMA "G4200690, G42000702" +County and PUMA "G4200710, G42003501" +County and PUMA "G4200710, G42003502" +County and PUMA "G4200710, G42003503" +County and PUMA "G4200710, G42003504" +County and PUMA "G4200730, G42001501" +County and PUMA "G4200750, G42002500" +County and PUMA "G4200770, G42002801" +County and PUMA "G4200770, G42002802" +County and PUMA "G4200770, G42002803" +County and PUMA "G4200770, G42002901" +County and PUMA "G4200790, G42000801" +County and PUMA "G4200790, G42000802" +County and PUMA "G4200790, G42000803" +County and PUMA "G4200810, G42000900" +County and PUMA "G4200830, G42000300" +County and PUMA "G4200850, G42001400" +County and PUMA "G4200870, G42001100" +County and PUMA "G4200890, G42000600" +County and PUMA "G4200910, G42003101" +County and PUMA "G4200910, G42003102" +County and PUMA "G4200910, G42003103" +County and PUMA "G4200910, G42003104" +County and PUMA "G4200910, G42003105" +County and PUMA "G4200910, G42003106" +County and PUMA "G4200930, G42001000" +County and PUMA "G4200950, G42002901" +County and PUMA "G4200950, G42002902" +County and PUMA "G4200970, G42001000" +County and PUMA "G4200990, G42002301" +County and PUMA "G4201010, G42003201" +County and PUMA "G4201010, G42003202" +County and PUMA "G4201010, G42003203" +County and PUMA "G4201010, G42003204" +County and PUMA "G4201010, G42003205" +County and PUMA "G4201010, G42003206" +County and PUMA "G4201010, G42003207" +County and PUMA "G4201010, G42003208" +County and PUMA "G4201010, G42003209" +County and PUMA "G4201010, G42003210" +County and PUMA "G4201010, G42003211" +County and PUMA "G4201030, G42000500" +County and PUMA "G4201050, G42000300" +County and PUMA "G4201070, G42002600" +County and PUMA "G4201090, G42001100" +County and PUMA "G4201110, G42003800" +County and PUMA "G4201130, G42000400" +County and PUMA "G4201150, G42000500" +County and PUMA "G4201170, G42000400" +County and PUMA "G4201190, G42001100" +County and PUMA "G4201210, G42001300" +County and PUMA "G4201230, G42000200" +County and PUMA "G4201250, G42004001" +County and PUMA "G4201250, G42004002" +County and PUMA "G4201270, G42000500" +County and PUMA "G4201290, G42002001" +County and PUMA "G4201290, G42002002" +County and PUMA "G4201290, G42002003" +County and PUMA "G4201310, G42000702" +County and PUMA "G4201330, G42003601" +County and PUMA "G4201330, G42003602" +County and PUMA "G4201330, G42003603" +County and PUMA "G4400010, G44000300" +County and PUMA "G4400030, G44000201" +County and PUMA "G4400050, G44000300" +County and PUMA "G4400070, G44000101" +County and PUMA "G4400070, G44000102" +County and PUMA "G4400070, G44000103" +County and PUMA "G4400070, G44000104" +County and PUMA "G4400090, G44000400" +County and PUMA "G4500010, G45001600" +County and PUMA "G4500030, G45001500" +County and PUMA "G4500050, G45001300" +County and PUMA "G4500070, G45000200" +County and PUMA "G4500090, G45001300" +County and PUMA "G4500110, G45001300" +County and PUMA "G4500130, G45001400" +County and PUMA "G4500150, G45001201" +County and PUMA "G4500150, G45001202" +County and PUMA "G4500150, G45001203" +County and PUMA "G4500150, G45001204" +County and PUMA "G4500170, G45000605" +County and PUMA "G4500190, G45001201" +County and PUMA "G4500190, G45001202" +County and PUMA "G4500190, G45001203" +County and PUMA "G4500190, G45001204" +County and PUMA "G4500210, G45000400" +County and PUMA "G4500230, G45000400" +County and PUMA "G4500250, G45000700" +County and PUMA "G4500270, G45000800" +County and PUMA "G4500290, G45001300" +County and PUMA "G4500310, G45000900" +County and PUMA "G4500330, G45001000" +County and PUMA "G4500350, G45001201" +County and PUMA "G4500350, G45001204" +County and PUMA "G4500370, G45001500" +County and PUMA "G4500390, G45000603" +County and PUMA "G4500410, G45000900" +County and PUMA "G4500430, G45001000" +County and PUMA "G4500450, G45000102" +County and PUMA "G4500450, G45000103" +County and PUMA "G4500450, G45000104" +County and PUMA "G4500450, G45000105" +County and PUMA "G4500470, G45001600" +County and PUMA "G4500490, G45001300" +County and PUMA "G4500510, G45001101" +County and PUMA "G4500510, G45001102" +County and PUMA "G4500530, G45001400" +County and PUMA "G4500550, G45000605" +County and PUMA "G4500570, G45000700" +County and PUMA "G4500590, G45000105" +County and PUMA "G4500610, G45000800" +County and PUMA "G4500630, G45000601" +County and PUMA "G4500630, G45000602" +County and PUMA "G4500650, G45001600" +County and PUMA "G4500670, G45001000" +County and PUMA "G4500690, G45000700" +County and PUMA "G4500710, G45000400" +County and PUMA "G4500730, G45000101" +County and PUMA "G4500750, G45001300" +County and PUMA "G4500770, G45000101" +County and PUMA "G4500790, G45000603" +County and PUMA "G4500790, G45000604" +County and PUMA "G4500790, G45000605" +County and PUMA "G4500810, G45000601" +County and PUMA "G4500830, G45000301" +County and PUMA "G4500830, G45000302" +County and PUMA "G4500850, G45000800" +County and PUMA "G4500870, G45000400" +County and PUMA "G4500890, G45000800" +County and PUMA "G4500910, G45000501" +County and PUMA "G4500910, G45000502" +County and PUMA "G4600030, G46000400" +County and PUMA "G4600050, G46000400" +County and PUMA "G4600070, G46000200" +County and PUMA "G4600090, G46000400" +County and PUMA "G4600110, G46000400" +County and PUMA "G4600130, G46000300" +County and PUMA "G4600150, G46000400" +County and PUMA "G4600170, G46000200" +County and PUMA "G4600190, G46000100" +County and PUMA "G4600210, G46000300" +County and PUMA "G4600230, G46000200" +County and PUMA "G4600250, G46000300" +County and PUMA "G4600270, G46000500" +County and PUMA "G4600290, G46000300" +County and PUMA "G4600310, G46000200" +County and PUMA "G4600330, G46000100" +County and PUMA "G4600350, G46000400" +County and PUMA "G4600370, G46000300" +County and PUMA "G4600390, G46000300" +County and PUMA "G4600410, G46000200" +County and PUMA "G4600430, G46000400" +County and PUMA "G4600450, G46000300" +County and PUMA "G4600470, G46000200" +County and PUMA "G4600490, G46000300" +County and PUMA "G4600510, G46000300" +County and PUMA "G4600530, G46000200" +County and PUMA "G4600550, G46000200" +County and PUMA "G4600570, G46000300" +County and PUMA "G4600590, G46000400" +County and PUMA "G4600610, G46000400" +County and PUMA "G4600630, G46000100" +County and PUMA "G4600650, G46000200" +County and PUMA "G4600670, G46000400" +County and PUMA "G4600690, G46000200" +County and PUMA "G4600710, G46000200" +County and PUMA "G4600730, G46000400" +County and PUMA "G4600750, G46000200" +County and PUMA "G4600770, G46000400" +County and PUMA "G4600790, G46000400" +County and PUMA "G4600810, G46000100" +County and PUMA "G4600830, G46000500" +County and PUMA "G4600830, G46000600" +County and PUMA "G4600850, G46000200" +County and PUMA "G4600870, G46000500" +County and PUMA "G4600890, G46000300" +County and PUMA "G4600910, G46000300" +County and PUMA "G4600930, G46000100" +County and PUMA "G4600950, G46000200" +County and PUMA "G4600970, G46000400" +County and PUMA "G4600990, G46000500" +County and PUMA "G4600990, G46000600" +County and PUMA "G4601010, G46000400" +County and PUMA "G4601020, G46000200" +County and PUMA "G4601030, G46000100" +County and PUMA "G4601050, G46000100" +County and PUMA "G4601070, G46000300" +County and PUMA "G4601090, G46000300" +County and PUMA "G4601110, G46000400" +County and PUMA "G4601150, G46000300" +County and PUMA "G4601170, G46000200" +County and PUMA "G4601190, G46000200" +County and PUMA "G4601210, G46000200" +County and PUMA "G4601230, G46000200" +County and PUMA "G4601250, G46000500" +County and PUMA "G4601270, G46000500" +County and PUMA "G4601290, G46000300" +County and PUMA "G4601350, G46000500" +County and PUMA "G4601370, G46000200" +County and PUMA "G4700010, G47001601" +County and PUMA "G4700030, G47002700" +County and PUMA "G4700050, G47000200" +County and PUMA "G4700070, G47002100" +County and PUMA "G4700090, G47001700" +County and PUMA "G4700110, G47001900" +County and PUMA "G4700130, G47000900" +County and PUMA "G4700150, G47000600" +County and PUMA "G4700170, G47000200" +County and PUMA "G4700190, G47001200" +County and PUMA "G4700210, G47000400" +County and PUMA "G4700230, G47003000" +County and PUMA "G4700250, G47000900" +County and PUMA "G4700270, G47000700" +County and PUMA "G4700290, G47001400" +County and PUMA "G4700310, G47002200" +County and PUMA "G4700330, G47000100" +County and PUMA "G4700350, G47000800" +County and PUMA "G4700370, G47002501" +County and PUMA "G4700370, G47002502" +County and PUMA "G4700370, G47002503" +County and PUMA "G4700370, G47002504" +County and PUMA "G4700370, G47002505" +County and PUMA "G4700390, G47002900" +County and PUMA "G4700410, G47000600" +County and PUMA "G4700430, G47000400" +County and PUMA "G4700450, G47000100" +County and PUMA "G4700470, G47003100" +County and PUMA "G4700490, G47000800" +County and PUMA "G4700510, G47002200" +County and PUMA "G4700530, G47000100" +County and PUMA "G4700550, G47002800" +County and PUMA "G4700570, G47001400" +County and PUMA "G4700590, G47001200" +County and PUMA "G4700610, G47002100" +County and PUMA "G4700630, G47001400" +County and PUMA "G4700650, G47002001" +County and PUMA "G4700650, G47002002" +County and PUMA "G4700650, G47002003" +County and PUMA "G4700670, G47000900" +County and PUMA "G4700690, G47002900" +County and PUMA "G4700710, G47002900" +County and PUMA "G4700730, G47001000" +County and PUMA "G4700750, G47002900" +County and PUMA "G4700770, G47002900" +County and PUMA "G4700790, G47000200" +County and PUMA "G4700810, G47000400" +County and PUMA "G4700830, G47000200" +County and PUMA "G4700850, G47000200" +County and PUMA "G4700870, G47000700" +County and PUMA "G4700890, G47001500" +County and PUMA "G4700910, G47001200" +County and PUMA "G4700930, G47001601" +County and PUMA "G4700930, G47001602" +County and PUMA "G4700930, G47001603" +County and PUMA "G4700930, G47001604" +County and PUMA "G4700950, G47000100" +County and PUMA "G4700970, G47003100" +County and PUMA "G4700990, G47002800" +County and PUMA "G4701010, G47002800" +County and PUMA "G4701030, G47002200" +County and PUMA "G4701050, G47001800" +County and PUMA "G4701070, G47001900" +County and PUMA "G4701090, G47002900" +County and PUMA "G4701110, G47000600" +County and PUMA "G4701130, G47003000" +County and PUMA "G4701150, G47002100" +County and PUMA "G4701170, G47002700" +County and PUMA "G4701190, G47002700" +County and PUMA "G4701210, G47002100" +County and PUMA "G4701230, G47001800" +County and PUMA "G4701250, G47000300" +County and PUMA "G4701270, G47002200" +County and PUMA "G4701290, G47000900" +County and PUMA "G4701310, G47000100" +County and PUMA "G4701330, G47000700" +County and PUMA "G4701350, G47002800" +County and PUMA "G4701370, G47000700" +County and PUMA "G4701390, G47001900" +County and PUMA "G4701410, G47000700" +County and PUMA "G4701430, G47002100" +County and PUMA "G4701450, G47001800" +County and PUMA "G4701470, G47000400" +County and PUMA "G4701490, G47002401" +County and PUMA "G4701490, G47002402" +County and PUMA "G4701510, G47000900" +County and PUMA "G4701530, G47002100" +County and PUMA "G4701550, G47001500" +County and PUMA "G4701570, G47003201" +County and PUMA "G4701570, G47003202" +County and PUMA "G4701570, G47003203" +County and PUMA "G4701570, G47003204" +County and PUMA "G4701570, G47003205" +County and PUMA "G4701570, G47003206" +County and PUMA "G4701570, G47003207" +County and PUMA "G4701570, G47003208" +County and PUMA "G4701590, G47000600" +County and PUMA "G4701610, G47000300" +County and PUMA "G4701630, G47001000" +County and PUMA "G4701630, G47001100" +County and PUMA "G4701650, G47000500" +County and PUMA "G4701670, G47003100" +County and PUMA "G4701690, G47000600" +County and PUMA "G4701710, G47001200" +County and PUMA "G4701730, G47001601" +County and PUMA "G4701750, G47000800" +County and PUMA "G4701770, G47000600" +County and PUMA "G4701790, G47001300" +County and PUMA "G4701810, G47002800" +County and PUMA "G4701830, G47000200" +County and PUMA "G4701850, G47000800" +County and PUMA "G4701870, G47002600" +County and PUMA "G4701890, G47002300" +County and PUMA "G4800010, G48001800" +County and PUMA "G4800030, G48003200" +County and PUMA "G4800050, G48004000" +County and PUMA "G4800070, G48006500" +County and PUMA "G4800090, G48000600" +County and PUMA "G4800110, G48000100" +County and PUMA "G4800130, G48006100" +County and PUMA "G4800150, G48005000" +County and PUMA "G4800170, G48000400" +County and PUMA "G4800190, G48006100" +County and PUMA "G4800210, G48005100" +County and PUMA "G4800230, G48000600" +County and PUMA "G4800250, G48006500" +County and PUMA "G4800270, G48003501" +County and PUMA "G4800270, G48003502" +County and PUMA "G4800290, G48005901" +County and PUMA "G4800290, G48005902" +County and PUMA "G4800290, G48005903" +County and PUMA "G4800290, G48005904" +County and PUMA "G4800290, G48005905" +County and PUMA "G4800290, G48005906" +County and PUMA "G4800290, G48005907" +County and PUMA "G4800290, G48005908" +County and PUMA "G4800290, G48005909" +County and PUMA "G4800290, G48005910" +County and PUMA "G4800290, G48005911" +County and PUMA "G4800290, G48005912" +County and PUMA "G4800290, G48005913" +County and PUMA "G4800290, G48005914" +County and PUMA "G4800290, G48005915" +County and PUMA "G4800290, G48005916" +County and PUMA "G4800310, G48006000" +County and PUMA "G4800330, G48002800" +County and PUMA "G4800350, G48003700" +County and PUMA "G4800370, G48001100" +County and PUMA "G4800390, G48004801" +County and PUMA "G4800390, G48004802" +County and PUMA "G4800390, G48004803" +County and PUMA "G4800410, G48003602" +County and PUMA "G4800430, G48003200" +County and PUMA "G4800450, G48000100" +County and PUMA "G4800470, G48006900" +County and PUMA "G4800490, G48002600" +County and PUMA "G4800510, G48003601" +County and PUMA "G4800530, G48003400" +County and PUMA "G4800550, G48005100" +County and PUMA "G4800570, G48005600" +County and PUMA "G4800590, G48002600" +County and PUMA "G4800610, G48006701" +County and PUMA "G4800610, G48006702" +County and PUMA "G4800610, G48006703" +County and PUMA "G4800630, G48001300" +County and PUMA "G4800650, G48000100" +County and PUMA "G4800670, G48001100" +County and PUMA "G4800690, G48000100" +County and PUMA "G4800710, G48004400" +County and PUMA "G4800730, G48001700" +County and PUMA "G4800750, G48000100" +County and PUMA "G4800770, G48000600" +County and PUMA "G4800790, G48000400" +County and PUMA "G4800810, G48002800" +County and PUMA "G4800830, G48002600" +County and PUMA "G4800850, G48001901" +County and PUMA "G4800850, G48001902" +County and PUMA "G4800850, G48001903" +County and PUMA "G4800850, G48001904" +County and PUMA "G4800850, G48001905" +County and PUMA "G4800850, G48001906" +County and PUMA "G4800850, G48001907" +County and PUMA "G4800870, G48000100" +County and PUMA "G4800890, G48005000" +County and PUMA "G4800910, G48005800" +County and PUMA "G4800930, G48002600" +County and PUMA "G4800950, G48002800" +County and PUMA "G4800970, G48000800" +County and PUMA "G4800990, G48003400" +County and PUMA "G4801010, G48000600" +County and PUMA "G4801030, G48003200" +County and PUMA "G4801050, G48002800" +County and PUMA "G4801070, G48000400" +County and PUMA "G4801090, G48003200" +County and PUMA "G4801110, G48000100" +County and PUMA "G4801130, G48002301" +County and PUMA "G4801130, G48002302" +County and PUMA "G4801130, G48002303" +County and PUMA "G4801130, G48002304" +County and PUMA "G4801130, G48002305" +County and PUMA "G4801130, G48002306" +County and PUMA "G4801130, G48002307" +County and PUMA "G4801130, G48002308" +County and PUMA "G4801130, G48002309" +County and PUMA "G4801130, G48002310" +County and PUMA "G4801130, G48002311" +County and PUMA "G4801130, G48002312" +County and PUMA "G4801130, G48002313" +County and PUMA "G4801130, G48002314" +County and PUMA "G4801130, G48002315" +County and PUMA "G4801130, G48002316" +County and PUMA "G4801130, G48002317" +County and PUMA "G4801130, G48002318" +County and PUMA "G4801130, G48002319" +County and PUMA "G4801130, G48002320" +County and PUMA "G4801130, G48002321" +County and PUMA "G4801130, G48002322" +County and PUMA "G4801150, G48002800" +County and PUMA "G4801170, G48000100" +County and PUMA "G4801190, G48001000" +County and PUMA "G4801210, G48002001" +County and PUMA "G4801210, G48002002" +County and PUMA "G4801210, G48002003" +County and PUMA "G4801210, G48002004" +County and PUMA "G4801210, G48002005" +County and PUMA "G4801210, G48002006" +County and PUMA "G4801230, G48005500" +County and PUMA "G4801250, G48000400" +County and PUMA "G4801270, G48006200" +County and PUMA "G4801290, G48000100" +County and PUMA "G4801310, G48006400" +County and PUMA "G4801330, G48002600" +County and PUMA "G4801350, G48003100" +County and PUMA "G4801370, G48006200" +County and PUMA "G4801390, G48002101" +County and PUMA "G4801410, G48003301" +County and PUMA "G4801410, G48003302" +County and PUMA "G4801410, G48003303" +County and PUMA "G4801410, G48003304" +County and PUMA "G4801410, G48003305" +County and PUMA "G4801410, G48003306" +County and PUMA "G4801430, G48002200" +County and PUMA "G4801450, G48003700" +County and PUMA "G4801470, G48000800" +County and PUMA "G4801490, G48005100" +County and PUMA "G4801510, G48002600" +County and PUMA "G4801530, G48000400" +County and PUMA "G4801550, G48000600" +County and PUMA "G4801570, G48004901" +County and PUMA "G4801570, G48004902" +County and PUMA "G4801570, G48004903" +County and PUMA "G4801570, G48004904" +County and PUMA "G4801570, G48004905" +County and PUMA "G4801590, G48001000" +County and PUMA "G4801610, G48003700" +County and PUMA "G4801630, G48006100" +County and PUMA "G4801650, G48003200" +County and PUMA "G4801670, G48004701" +County and PUMA "G4801670, G48004702" +County and PUMA "G4801690, G48000400" +County and PUMA "G4801710, G48006000" +County and PUMA "G4801730, G48002800" +County and PUMA "G4801750, G48005500" +County and PUMA "G4801770, G48005500" +County and PUMA "G4801790, G48000100" +County and PUMA "G4801810, G48000800" +County and PUMA "G4801830, G48001600" +County and PUMA "G4801850, G48003601" +County and PUMA "G4801870, G48005700" +County and PUMA "G4801890, G48000400" +County and PUMA "G4801910, G48000100" +County and PUMA "G4801930, G48003400" +County and PUMA "G4801950, G48000100" +County and PUMA "G4801970, G48000600" +County and PUMA "G4801990, G48004200" +County and PUMA "G4802010, G48004601" +County and PUMA "G4802010, G48004602" +County and PUMA "G4802010, G48004603" +County and PUMA "G4802010, G48004604" +County and PUMA "G4802010, G48004605" +County and PUMA "G4802010, G48004606" +County and PUMA "G4802010, G48004607" +County and PUMA "G4802010, G48004608" +County and PUMA "G4802010, G48004609" +County and PUMA "G4802010, G48004610" +County and PUMA "G4802010, G48004611" +County and PUMA "G4802010, G48004612" +County and PUMA "G4802010, G48004613" +County and PUMA "G4802010, G48004614" +County and PUMA "G4802010, G48004615" +County and PUMA "G4802010, G48004616" +County and PUMA "G4802010, G48004617" +County and PUMA "G4802010, G48004618" +County and PUMA "G4802010, G48004619" +County and PUMA "G4802010, G48004620" +County and PUMA "G4802010, G48004621" +County and PUMA "G4802010, G48004622" +County and PUMA "G4802010, G48004623" +County and PUMA "G4802010, G48004624" +County and PUMA "G4802010, G48004625" +County and PUMA "G4802010, G48004626" +County and PUMA "G4802010, G48004627" +County and PUMA "G4802010, G48004628" +County and PUMA "G4802010, G48004629" +County and PUMA "G4802010, G48004630" +County and PUMA "G4802010, G48004631" +County and PUMA "G4802010, G48004632" +County and PUMA "G4802010, G48004633" +County and PUMA "G4802010, G48004634" +County and PUMA "G4802010, G48004635" +County and PUMA "G4802010, G48004636" +County and PUMA "G4802010, G48004637" +County and PUMA "G4802010, G48004638" +County and PUMA "G4802030, G48001200" +County and PUMA "G4802050, G48000100" +County and PUMA "G4802070, G48002600" +County and PUMA "G4802090, G48005400" +County and PUMA "G4802110, G48000100" +County and PUMA "G4802130, G48001800" +County and PUMA "G4802150, G48006801" +County and PUMA "G4802150, G48006802" +County and PUMA "G4802150, G48006803" +County and PUMA "G4802150, G48006804" +County and PUMA "G4802150, G48006805" +County and PUMA "G4802150, G48006806" +County and PUMA "G4802150, G48006807" +County and PUMA "G4802170, G48003700" +County and PUMA "G4802190, G48000400" +County and PUMA "G4802210, G48002200" +County and PUMA "G4802230, G48001000" +County and PUMA "G4802250, G48003900" +County and PUMA "G4802270, G48002800" +County and PUMA "G4802290, G48003200" +County and PUMA "G4802310, G48000900" +County and PUMA "G4802330, G48000100" +County and PUMA "G4802350, G48002800" +County and PUMA "G4802370, G48000600" +County and PUMA "G4802390, G48005500" +County and PUMA "G4802410, G48004100" +County and PUMA "G4802430, G48003200" +County and PUMA "G4802450, G48004301" +County and PUMA "G4802450, G48004302" +County and PUMA "G4802470, G48006400" +County and PUMA "G4802490, G48006900" +County and PUMA "G4802510, G48002102" +County and PUMA "G4802530, G48002600" +County and PUMA "G4802550, G48005500" +County and PUMA "G4802570, G48001400" +County and PUMA "G4802590, G48006000" +County and PUMA "G4802610, G48006900" +County and PUMA "G4802630, G48002600" +County and PUMA "G4802650, G48006000" +County and PUMA "G4802670, G48002800" +County and PUMA "G4802690, G48000400" +County and PUMA "G4802710, G48006200" +County and PUMA "G4802730, G48006900" +County and PUMA "G4802750, G48002600" +County and PUMA "G4802770, G48001000" +County and PUMA "G4802790, G48000400" +County and PUMA "G4802810, G48003400" +County and PUMA "G4802830, G48006200" +County and PUMA "G4802850, G48005500" +County and PUMA "G4802870, G48005100" +County and PUMA "G4802890, G48003601" +County and PUMA "G4802910, G48004400" +County and PUMA "G4802930, G48003700" +County and PUMA "G4802950, G48000100" +County and PUMA "G4802970, G48006400" +County and PUMA "G4802990, G48003400" +County and PUMA "G4803010, G48003200" +County and PUMA "G4803030, G48000501" +County and PUMA "G4803030, G48000502" +County and PUMA "G4803050, G48000400" +County and PUMA "G4803070, G48002800" +County and PUMA "G4803090, G48003801" +County and PUMA "G4803090, G48003802" +County and PUMA "G4803110, G48006400" +County and PUMA "G4803130, G48003601" +County and PUMA "G4803150, G48001200" +County and PUMA "G4803170, G48002800" +County and PUMA "G4803190, G48002800" +County and PUMA "G4803210, G48005000" +County and PUMA "G4803230, G48006200" +County and PUMA "G4803250, G48006100" +County and PUMA "G4803270, G48002800" +County and PUMA "G4803290, G48003000" +County and PUMA "G4803310, G48003601" +County and PUMA "G4803330, G48003400" +County and PUMA "G4803350, G48002600" +County and PUMA "G4803370, G48000600" +County and PUMA "G4803390, G48004501" +County and PUMA "G4803390, G48004502" +County and PUMA "G4803390, G48004503" +County and PUMA "G4803390, G48004504" +County and PUMA "G4803410, G48000100" +County and PUMA "G4803430, G48001000" +County and PUMA "G4803450, G48000400" +County and PUMA "G4803470, G48004000" +County and PUMA "G4803490, G48003700" +County and PUMA "G4803510, G48004100" +County and PUMA "G4803530, G48002600" +County and PUMA "G4803550, G48006601" +County and PUMA "G4803550, G48006602" +County and PUMA "G4803550, G48006603" +County and PUMA "G4803570, G48000100" +County and PUMA "G4803590, G48000100" +County and PUMA "G4803610, G48004200" +County and PUMA "G4803630, G48002200" +County and PUMA "G4803650, G48001700" +County and PUMA "G4803670, G48002400" +County and PUMA "G4803690, G48000100" +County and PUMA "G4803710, G48003200" +County and PUMA "G4803730, G48003900" +County and PUMA "G4803750, G48000200" +County and PUMA "G4803770, G48003200" +County and PUMA "G4803790, G48001300" +County and PUMA "G4803810, G48000300" +County and PUMA "G4803830, G48002800" +County and PUMA "G4803850, G48006200" +County and PUMA "G4803870, G48001000" +County and PUMA "G4803890, G48003200" +County and PUMA "G4803910, G48006500" +County and PUMA "G4803930, G48000100" +County and PUMA "G4803950, G48003601" +County and PUMA "G4803970, G48000900" +County and PUMA "G4803990, G48002600" +County and PUMA "G4804010, G48001700" +County and PUMA "G4804030, G48004100" +County and PUMA "G4804050, G48004100" +County and PUMA "G4804070, G48003900" +County and PUMA "G4804090, G48006500" +County and PUMA "G4804110, G48003400" +County and PUMA "G4804130, G48002800" +County and PUMA "G4804150, G48002600" +County and PUMA "G4804170, G48002600" +County and PUMA "G4804190, G48004100" +County and PUMA "G4804210, G48000100" +County and PUMA "G4804230, G48001501" +County and PUMA "G4804230, G48001502" +County and PUMA "G4804250, G48002200" +County and PUMA "G4804270, G48006400" +County and PUMA "G4804290, G48002600" +County and PUMA "G4804310, G48002800" +County and PUMA "G4804330, G48002600" +County and PUMA "G4804350, G48002800" +County and PUMA "G4804370, G48000100" +County and PUMA "G4804390, G48002501" +County and PUMA "G4804390, G48002502" +County and PUMA "G4804390, G48002503" +County and PUMA "G4804390, G48002504" +County and PUMA "G4804390, G48002505" +County and PUMA "G4804390, G48002506" +County and PUMA "G4804390, G48002507" +County and PUMA "G4804390, G48002508" +County and PUMA "G4804390, G48002509" +County and PUMA "G4804390, G48002510" +County and PUMA "G4804390, G48002511" +County and PUMA "G4804390, G48002512" +County and PUMA "G4804390, G48002513" +County and PUMA "G4804390, G48002514" +County and PUMA "G4804390, G48002515" +County and PUMA "G4804390, G48002516" +County and PUMA "G4804410, G48002700" +County and PUMA "G4804430, G48003200" +County and PUMA "G4804450, G48000400" +County and PUMA "G4804470, G48002600" +County and PUMA "G4804490, G48001000" +County and PUMA "G4804510, G48002900" +County and PUMA "G4804530, G48005301" +County and PUMA "G4804530, G48005302" +County and PUMA "G4804530, G48005303" +County and PUMA "G4804530, G48005304" +County and PUMA "G4804530, G48005305" +County and PUMA "G4804530, G48005306" +County and PUMA "G4804530, G48005307" +County and PUMA "G4804530, G48005308" +County and PUMA "G4804530, G48005309" +County and PUMA "G4804550, G48003900" +County and PUMA "G4804570, G48004100" +County and PUMA "G4804590, G48001200" +County and PUMA "G4804610, G48002800" +County and PUMA "G4804630, G48006200" +County and PUMA "G4804650, G48006200" +County and PUMA "G4804670, G48001300" +County and PUMA "G4804690, G48005600" +County and PUMA "G4804710, G48003900" +County and PUMA "G4804730, G48005000" +County and PUMA "G4804750, G48003200" +County and PUMA "G4804770, G48003601" +County and PUMA "G4804790, G48006301" +County and PUMA "G4804790, G48006302" +County and PUMA "G4804810, G48005000" +County and PUMA "G4804830, G48000100" +County and PUMA "G4804850, G48000700" +County and PUMA "G4804870, G48000600" +County and PUMA "G4804890, G48006900" +County and PUMA "G4804910, G48005201" +County and PUMA "G4804910, G48005202" +County and PUMA "G4804910, G48005203" +County and PUMA "G4804910, G48005204" +County and PUMA "G4804930, G48005500" +County and PUMA "G4804950, G48003200" +County and PUMA "G4804970, G48000600" +County and PUMA "G4804990, G48001300" +County and PUMA "G4805010, G48000400" +County and PUMA "G4805030, G48000600" +County and PUMA "G4805050, G48006400" +County and PUMA "G4805070, G48006200" +County and PUMA "G4900010, G49021001" +County and PUMA "G4900030, G49003001" +County and PUMA "G4900050, G49005001" +County and PUMA "G4900070, G49013001" +County and PUMA "G4900090, G49013001" +County and PUMA "G4900110, G49011001" +County and PUMA "G4900110, G49011002" +County and PUMA "G4900130, G49013001" +County and PUMA "G4900150, G49013001" +County and PUMA "G4900170, G49021001" +County and PUMA "G4900190, G49013001" +County and PUMA "G4900210, G49021001" +County and PUMA "G4900230, G49021001" +County and PUMA "G4900250, G49021001" +County and PUMA "G4900270, G49021001" +County and PUMA "G4900290, G49005001" +County and PUMA "G4900310, G49021001" +County and PUMA "G4900330, G49005001" +County and PUMA "G4900350, G49035001" +County and PUMA "G4900350, G49035002" +County and PUMA "G4900350, G49035003" +County and PUMA "G4900350, G49035004" +County and PUMA "G4900350, G49035005" +County and PUMA "G4900350, G49035006" +County and PUMA "G4900350, G49035007" +County and PUMA "G4900350, G49035008" +County and PUMA "G4900350, G49035009" +County and PUMA "G4900370, G49013001" +County and PUMA "G4900390, G49021001" +County and PUMA "G4900410, G49021001" +County and PUMA "G4900430, G49005001" +County and PUMA "G4900450, G49003001" +County and PUMA "G4900470, G49013001" +County and PUMA "G4900490, G49049001" +County and PUMA "G4900490, G49049002" +County and PUMA "G4900490, G49049003" +County and PUMA "G4900490, G49049004" +County and PUMA "G4900510, G49013001" +County and PUMA "G4900530, G49053001" +County and PUMA "G4900550, G49021001" +County and PUMA "G4900570, G49057001" +County and PUMA "G4900570, G49057002" +County and PUMA "G5000010, G50000400" +County and PUMA "G5000030, G50000400" +County and PUMA "G5000050, G50000200" +County and PUMA "G5000070, G50000100" +County and PUMA "G5000090, G50000200" +County and PUMA "G5000110, G50000100" +County and PUMA "G5000130, G50000100" +County and PUMA "G5000150, G50000200" +County and PUMA "G5000170, G50000300" +County and PUMA "G5000190, G50000200" +County and PUMA "G5000210, G50000400" +County and PUMA "G5000230, G50000200" +County and PUMA "G5000250, G50000300" +County and PUMA "G5000270, G50000300" +County and PUMA "G5100010, G51051125" +County and PUMA "G5100030, G51051089" +County and PUMA "G5100030, G51051090" +County and PUMA "G5100050, G51051045" +County and PUMA "G5100070, G51051105" +County and PUMA "G5100090, G51051095" +County and PUMA "G5100110, G51051095" +County and PUMA "G5100130, G51001301" +County and PUMA "G5100130, G51001302" +County and PUMA "G5100150, G51051080" +County and PUMA "G5100170, G51051080" +County and PUMA "G5100190, G51051095" +County and PUMA "G5100210, G51051020" +County and PUMA "G5100230, G51051045" +County and PUMA "G5100250, G51051105" +County and PUMA "G5100270, G51051010" +County and PUMA "G5100290, G51051105" +County and PUMA "G5100310, G51051096" +County and PUMA "G5100330, G51051120" +County and PUMA "G5100350, G51051020" +County and PUMA "G5100360, G51051215" +County and PUMA "G5100370, G51051105" +County and PUMA "G5100410, G51004101" +County and PUMA "G5100410, G51004102" +County and PUMA "G5100410, G51004103" +County and PUMA "G5100430, G51051084" +County and PUMA "G5100450, G51051045" +County and PUMA "G5100470, G51051087" +County and PUMA "G5100490, G51051105" +County and PUMA "G5100510, G51051010" +County and PUMA "G5100530, G51051135" +County and PUMA "G5100570, G51051125" +County and PUMA "G5100590, G51059301" +County and PUMA "G5100590, G51059302" +County and PUMA "G5100590, G51059303" +County and PUMA "G5100590, G51059304" +County and PUMA "G5100590, G51059305" +County and PUMA "G5100590, G51059306" +County and PUMA "G5100590, G51059307" +County and PUMA "G5100590, G51059308" +County and PUMA "G5100590, G51059309" +County and PUMA "G5100610, G51051087" +County and PUMA "G5100630, G51051040" +County and PUMA "G5100650, G51051089" +County and PUMA "G5100670, G51051045" +County and PUMA "G5100690, G51051084" +County and PUMA "G5100710, G51051040" +County and PUMA "G5100730, G51051125" +County and PUMA "G5100750, G51051215" +County and PUMA "G5100770, G51051020" +County and PUMA "G5100790, G51051090" +County and PUMA "G5100810, G51051135" +County and PUMA "G5100830, G51051105" +County and PUMA "G5100850, G51051215" +County and PUMA "G5100870, G51051224" +County and PUMA "G5100870, G51051225" +County and PUMA "G5100890, G51051097" +County and PUMA "G5100910, G51051080" +County and PUMA "G5100930, G51051145" +County and PUMA "G5100950, G51051206" +County and PUMA "G5100970, G51051125" +County and PUMA "G5100990, G51051120" +County and PUMA "G5101010, G51051215" +County and PUMA "G5101030, G51051125" +County and PUMA "G5101050, G51051010" +County and PUMA "G5101070, G51010701" +County and PUMA "G5101070, G51010702" +County and PUMA "G5101070, G51010703" +County and PUMA "G5101090, G51051089" +County and PUMA "G5101110, G51051105" +County and PUMA "G5101130, G51051087" +County and PUMA "G5101150, G51051125" +County and PUMA "G5101170, G51051105" +County and PUMA "G5101190, G51051125" +County and PUMA "G5101210, G51051040" +County and PUMA "G5101250, G51051089" +County and PUMA "G5101270, G51051215" +County and PUMA "G5101310, G51051125" +County and PUMA "G5101330, G51051125" +County and PUMA "G5101350, G51051105" +County and PUMA "G5101370, G51051087" +County and PUMA "G5101390, G51051085" +County and PUMA "G5101410, G51051097" +County and PUMA "G5101430, G51051097" +County and PUMA "G5101450, G51051215" +County and PUMA "G5101470, G51051105" +County and PUMA "G5101490, G51051135" +County and PUMA "G5101530, G51051244" +County and PUMA "G5101530, G51051245" +County and PUMA "G5101530, G51051246" +County and PUMA "G5101550, G51051040" +County and PUMA "G5101570, G51051087" +County and PUMA "G5101590, G51051125" +County and PUMA "G5101610, G51051044" +County and PUMA "G5101610, G51051045" +County and PUMA "G5101630, G51051080" +County and PUMA "G5101650, G51051110" +County and PUMA "G5101670, G51051010" +County and PUMA "G5101690, G51051010" +County and PUMA "G5101710, G51051085" +County and PUMA "G5101730, G51051020" +County and PUMA "G5101750, G51051145" +County and PUMA "G5101770, G51051120" +County and PUMA "G5101790, G51051115" +County and PUMA "G5101810, G51051135" +County and PUMA "G5101830, G51051135" +County and PUMA "G5101850, G51051010" +County and PUMA "G5101870, G51051085" +County and PUMA "G5101910, G51051020" +County and PUMA "G5101930, G51051125" +County and PUMA "G5101950, G51051010" +County and PUMA "G5101970, G51051020" +County and PUMA "G5101990, G51051206" +County and PUMA "G5105100, G51051255" +County and PUMA "G5105200, G51051020" +County and PUMA "G5105300, G51051080" +County and PUMA "G5105400, G51051090" +County and PUMA "G5105500, G51055001" +County and PUMA "G5105500, G51055002" +County and PUMA "G5105700, G51051135" +County and PUMA "G5105800, G51051045" +County and PUMA "G5105900, G51051097" +County and PUMA "G5105950, G51051135" +County and PUMA "G5106000, G51059303" +County and PUMA "G5106100, G51059308" +County and PUMA "G5106200, G51051145" +County and PUMA "G5106300, G51051115" +County and PUMA "G5106400, G51051020" +County and PUMA "G5106500, G51051186" +County and PUMA "G5106600, G51051110" +County and PUMA "G5106700, G51051135" +County and PUMA "G5106780, G51051080" +County and PUMA "G5106800, G51051096" +County and PUMA "G5106830, G51051245" +County and PUMA "G5106850, G51051245" +County and PUMA "G5106900, G51051097" +County and PUMA "G5107000, G51051175" +County and PUMA "G5107100, G51051154" +County and PUMA "G5107100, G51051155" +County and PUMA "G5107200, G51051010" +County and PUMA "G5107300, G51051135" +County and PUMA "G5107350, G51051206" +County and PUMA "G5107400, G51051155" +County and PUMA "G5107500, G51051040" +County and PUMA "G5107600, G51051235" +County and PUMA "G5107700, G51051044" +County and PUMA "G5107750, G51051044" +County and PUMA "G5107900, G51051080" +County and PUMA "G5108000, G51051145" +County and PUMA "G5108100, G51051164" +County and PUMA "G5108100, G51051165" +County and PUMA "G5108100, G51051167" +County and PUMA "G5108200, G51051080" +County and PUMA "G5108300, G51051206" +County and PUMA "G5108400, G51051084" +County and PUMA "G5300010, G53010600" +County and PUMA "G5300030, G53010600" +County and PUMA "G5300050, G53010701" +County and PUMA "G5300050, G53010702" +County and PUMA "G5300050, G53010703" +County and PUMA "G5300070, G53010300" +County and PUMA "G5300090, G53011900" +County and PUMA "G5300110, G53011101" +County and PUMA "G5300110, G53011102" +County and PUMA "G5300110, G53011103" +County and PUMA "G5300110, G53011104" +County and PUMA "G5300130, G53010600" +County and PUMA "G5300150, G53011200" +County and PUMA "G5300170, G53010300" +County and PUMA "G5300190, G53010400" +County and PUMA "G5300210, G53010701" +County and PUMA "G5300210, G53010703" +County and PUMA "G5300230, G53010600" +County and PUMA "G5300250, G53010800" +County and PUMA "G5300270, G53011300" +County and PUMA "G5300290, G53010200" +County and PUMA "G5300310, G53011900" +County and PUMA "G5300330, G53011601" +County and PUMA "G5300330, G53011602" +County and PUMA "G5300330, G53011603" +County and PUMA "G5300330, G53011604" +County and PUMA "G5300330, G53011605" +County and PUMA "G5300330, G53011606" +County and PUMA "G5300330, G53011607" +County and PUMA "G5300330, G53011608" +County and PUMA "G5300330, G53011609" +County and PUMA "G5300330, G53011610" +County and PUMA "G5300330, G53011611" +County and PUMA "G5300330, G53011612" +County and PUMA "G5300330, G53011613" +County and PUMA "G5300330, G53011614" +County and PUMA "G5300330, G53011615" +County and PUMA "G5300330, G53011616" +County and PUMA "G5300350, G53011801" +County and PUMA "G5300350, G53011802" +County and PUMA "G5300370, G53010800" +County and PUMA "G5300390, G53011000" +County and PUMA "G5300410, G53011000" +County and PUMA "G5300430, G53010600" +County and PUMA "G5300450, G53011300" +County and PUMA "G5300470, G53010400" +County and PUMA "G5300490, G53011200" +County and PUMA "G5300510, G53010400" +County and PUMA "G5300530, G53011501" +County and PUMA "G5300530, G53011502" +County and PUMA "G5300530, G53011503" +County and PUMA "G5300530, G53011504" +County and PUMA "G5300530, G53011505" +County and PUMA "G5300530, G53011506" +County and PUMA "G5300530, G53011507" +County and PUMA "G5300550, G53010200" +County and PUMA "G5300570, G53010200" +County and PUMA "G5300590, G53011000" +County and PUMA "G5300610, G53011701" +County and PUMA "G5300610, G53011702" +County and PUMA "G5300610, G53011703" +County and PUMA "G5300610, G53011704" +County and PUMA "G5300610, G53011705" +County and PUMA "G5300610, G53011706" +County and PUMA "G5300630, G53010501" +County and PUMA "G5300630, G53010502" +County and PUMA "G5300630, G53010503" +County and PUMA "G5300630, G53010504" +County and PUMA "G5300650, G53010400" +County and PUMA "G5300670, G53011401" +County and PUMA "G5300670, G53011402" +County and PUMA "G5300690, G53011200" +County and PUMA "G5300710, G53010703" +County and PUMA "G5300730, G53010100" +County and PUMA "G5300750, G53010600" +County and PUMA "G5300770, G53010901" +County and PUMA "G5300770, G53010902" +County and PUMA "G5400010, G54000500" +County and PUMA "G5400030, G54000400" +County and PUMA "G5400050, G54000900" +County and PUMA "G5400070, G54000600" +County and PUMA "G5400090, G54000100" +County and PUMA "G5400110, G54000800" +County and PUMA "G5400130, G54000600" +County and PUMA "G5400150, G54001000" +County and PUMA "G5400170, G54000200" +County and PUMA "G5400190, G54001200" +County and PUMA "G5400210, G54000600" +County and PUMA "G5400230, G54000500" +County and PUMA "G5400250, G54001100" +County and PUMA "G5400270, G54000400" +County and PUMA "G5400290, G54000100" +County and PUMA "G5400310, G54000500" +County and PUMA "G5400330, G54000200" +County and PUMA "G5400350, G54000600" +County and PUMA "G5400370, G54000400" +County and PUMA "G5400390, G54001000" +County and PUMA "G5400410, G54000500" +County and PUMA "G5400430, G54000900" +County and PUMA "G5400450, G54001300" +County and PUMA "G5400470, G54001300" +County and PUMA "G5400490, G54000200" +County and PUMA "G5400510, G54000100" +County and PUMA "G5400530, G54000800" +County and PUMA "G5400550, G54001200" +County and PUMA "G5400570, G54000400" +County and PUMA "G5400590, G54001300" +County and PUMA "G5400610, G54000300" +County and PUMA "G5400630, G54001100" +County and PUMA "G5400650, G54000400" +County and PUMA "G5400670, G54001100" +County and PUMA "G5400690, G54000100" +County and PUMA "G5400710, G54000500" +County and PUMA "G5400730, G54000700" +County and PUMA "G5400750, G54001100" +County and PUMA "G5400770, G54000300" +County and PUMA "G5400790, G54000900" +County and PUMA "G5400810, G54001200" +County and PUMA "G5400830, G54000500" +County and PUMA "G5400850, G54000600" +County and PUMA "G5400870, G54000600" +County and PUMA "G5400890, G54001100" +County and PUMA "G5400910, G54000200" +County and PUMA "G5400930, G54000500" +County and PUMA "G5400950, G54000600" +County and PUMA "G5400970, G54000500" +County and PUMA "G5400990, G54000800" +County and PUMA "G5401010, G54001100" +County and PUMA "G5401030, G54000600" +County and PUMA "G5401050, G54000700" +County and PUMA "G5401070, G54000700" +County and PUMA "G5401090, G54001300" +County and PUMA "G5500010, G55001601" +County and PUMA "G5500030, G55000100" +County and PUMA "G5500050, G55055101" +County and PUMA "G5500070, G55000100" +County and PUMA "G5500090, G55000200" +County and PUMA "G5500090, G55000300" +County and PUMA "G5500110, G55000700" +County and PUMA "G5500130, G55000100" +County and PUMA "G5500150, G55001401" +County and PUMA "G5500170, G55055101" +County and PUMA "G5500170, G55055103" +County and PUMA "G5500190, G55055101" +County and PUMA "G5500210, G55001000" +County and PUMA "G5500230, G55000700" +County and PUMA "G5500250, G55000101" +County and PUMA "G5500250, G55000102" +County and PUMA "G5500250, G55000103" +County and PUMA "G5500270, G55001001" +County and PUMA "G5500290, G55001300" +County and PUMA "G5500310, G55000100" +County and PUMA "G5500330, G55055102" +County and PUMA "G5500350, G55055103" +County and PUMA "G5500370, G55001300" +County and PUMA "G5500390, G55001401" +County and PUMA "G5500410, G55000600" +County and PUMA "G5500430, G55000800" +County and PUMA "G5500450, G55000800" +County and PUMA "G5500470, G55001400" +County and PUMA "G5500490, G55000800" +County and PUMA "G5500510, G55000100" +County and PUMA "G5500530, G55000700" +County and PUMA "G5500550, G55001001" +County and PUMA "G5500570, G55001601" +County and PUMA "G5500590, G55010000" +County and PUMA "G5500610, G55001301" +County and PUMA "G5500630, G55000900" +County and PUMA "G5500650, G55000800" +County and PUMA "G5500670, G55000600" +County and PUMA "G5500690, G55000600" +County and PUMA "G5500710, G55001301" +County and PUMA "G5500730, G55001600" +County and PUMA "G5500750, G55001300" +County and PUMA "G5500770, G55001400" +County and PUMA "G5500780, G55001400" +County and PUMA "G5500790, G55040101" +County and PUMA "G5500790, G55040301" +County and PUMA "G5500790, G55040701" +County and PUMA "G5500790, G55041001" +County and PUMA "G5500790, G55041002" +County and PUMA "G5500790, G55041003" +County and PUMA "G5500790, G55041004" +County and PUMA "G5500790, G55041005" +County and PUMA "G5500810, G55000700" +County and PUMA "G5500830, G55001300" +County and PUMA "G5500850, G55000600" +County and PUMA "G5500870, G55001500" +County and PUMA "G5500890, G55020000" +County and PUMA "G5500910, G55000700" +County and PUMA "G5500930, G55000700" +County and PUMA "G5500950, G55055101" +County and PUMA "G5500970, G55001601" +County and PUMA "G5500990, G55000100" +County and PUMA "G5501010, G55030000" +County and PUMA "G5501030, G55000800" +County and PUMA "G5501050, G55002400" +County and PUMA "G5501070, G55000100" +County and PUMA "G5501090, G55055102" +County and PUMA "G5501110, G55001000" +County and PUMA "G5501130, G55000100" +County and PUMA "G5501150, G55001400" +County and PUMA "G5501170, G55002500" +County and PUMA "G5501190, G55000100" +County and PUMA "G5501210, G55000700" +County and PUMA "G5501230, G55000700" +County and PUMA "G5501250, G55000600" +County and PUMA "G5501270, G55050000" +County and PUMA "G5501290, G55000100" +County and PUMA "G5501310, G55020000" +County and PUMA "G5501330, G55070101" +County and PUMA "G5501330, G55070201" +County and PUMA "G5501330, G55070301" +County and PUMA "G5501350, G55001400" +County and PUMA "G5501370, G55001400" +County and PUMA "G5501390, G55001501" +County and PUMA "G5501410, G55001601" +County and PUMA "G5600010, G56000300" +County and PUMA "G5600030, G56000100" +County and PUMA "G5600050, G56000200" +County and PUMA "G5600070, G56000400" +County and PUMA "G5600090, G56000400" +County and PUMA "G5600110, G56000200" +County and PUMA "G5600130, G56000500" +County and PUMA "G5600150, G56000200" +County and PUMA "G5600170, G56000500" +County and PUMA "G5600190, G56000200" +County and PUMA "G5600210, G56000300" +County and PUMA "G5600230, G56000100" +County and PUMA "G5600250, G56000400" +County and PUMA "G5600270, G56000200" +County and PUMA "G5600290, G56000100" +County and PUMA "G5600310, G56000200" +County and PUMA "G5600330, G56000100" +County and PUMA "G5600350, G56000500" +County and PUMA "G5600370, G56000500" +County and PUMA "G5600390, G56000100" +County and PUMA "G5600410, G56000500" +County and PUMA "G5600430, G56000200" +County and PUMA "G5600450, G56000200" +County and PUMA "G7200010, G72000401" +County and PUMA "G7200030, G72000101" +County and PUMA "G7200050, G72000102" +County and PUMA "G7200070, G72000602" +County and PUMA "G7200090, G72000602" +County and PUMA "G7200110, G72000101" +County and PUMA "G7200130, G72000301" +County and PUMA "G7200150, G72000701" +County and PUMA "G7200170, G72000301" +County and PUMA "G7200190, G72000601" +County and PUMA "G7200210, G72000801" +County and PUMA "G7200210, G72000802" +County and PUMA "G7200230, G72000201" +County and PUMA "G7200250, G72001001" +County and PUMA "G7200270, G72000302" +County and PUMA "G7200290, G72000902" +County and PUMA "G7200310, G72000901" +County and PUMA "G7200310, G72000902" +County and PUMA "G7200330, G72000803" +County and PUMA "G7200350, G72000602" +County and PUMA "G7200370, G72001101" +County and PUMA "G7200390, G72000501" +County and PUMA "G7200410, G72000602" +County and PUMA "G7200430, G72000403" +County and PUMA "G7200450, G72000601" +County and PUMA "G7200470, G72000601" +County and PUMA "G7200490, G72001101" +County and PUMA "G7200510, G72000502" +County and PUMA "G7200530, G72001101" +County and PUMA "G7200540, G72000301" +County and PUMA "G7200550, G72000401" +County and PUMA "G7200570, G72000701" +County and PUMA "G7200590, G72000401" +County and PUMA "G7200610, G72000803" +County and PUMA "G7200630, G72001002" +County and PUMA "G7200650, G72000302" +County and PUMA "G7200670, G72000202" +County and PUMA "G7200690, G72001102" +County and PUMA "G7200710, G72000102" +County and PUMA "G7200730, G72000402" +County and PUMA "G7200750, G72000403" +County and PUMA "G7200770, G72001002" +County and PUMA "G7200790, G72000201" +County and PUMA "G7200810, G72000302" +County and PUMA "G7200830, G72000202" +County and PUMA "G7200850, G72001002" +County and PUMA "G7200870, G72000902" +County and PUMA "G7200890, G72001101" +County and PUMA "G7200910, G72000501" +County and PUMA "G7200930, G72000202" +County and PUMA "G7200950, G72000701" +County and PUMA "G7200970, G72000202" +County and PUMA "G7200990, G72000101" +County and PUMA "G7201010, G72000501" +County and PUMA "G7201030, G72001102" +County and PUMA "G7201050, G72000601" +County and PUMA "G7201070, G72000601" +County and PUMA "G7201090, G72000701" +County and PUMA "G7201110, G72000401" +County and PUMA "G7201130, G72000402" +County and PUMA "G7201150, G72000102" +County and PUMA "G7201170, G72000101" +County and PUMA "G7201190, G72001101" +County and PUMA "G7201210, G72000201" +County and PUMA "G7201230, G72000701" +County and PUMA "G7201250, G72000201" +County and PUMA "G7201270, G72000804" +County and PUMA "G7201270, G72000805" +County and PUMA "G7201270, G72000806" +County and PUMA "G7201290, G72001002" +County and PUMA "G7201310, G72000101" +County and PUMA "G7201330, G72000403" +County and PUMA "G7201350, G72000503" +County and PUMA "G7201370, G72000502" +County and PUMA "G7201390, G72000902" +County and PUMA "G7201410, G72000302" +County and PUMA "G7201430, G72000503" +County and PUMA "G7201450, G72000501" +County and PUMA "G7201470, G72001101" +County and PUMA "G7201490, G72000403" +County and PUMA "G7201510, G72001102" +County and PUMA "G7201530, G72000401" +Custom State AK +Custom State Others +Dehumidifier "65 pints/day, 50% RH" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=1.8 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 +Dehumidifier "65 pints/day, 50% RH, 2.0 EF" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=2 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 +Dehumidifier "65 pints/day, 60% RH" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=1.8 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.6 dehumidifier_fraction_dehumidification_load_served=1 +Dehumidifier None ResStockArguments dehumidifier_type=none dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=0 dehumidifier_capacity=40 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 +Dishwasher 144 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=144 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=13 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 199 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=199 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=18 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 220 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=220 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=19 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 255 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=255 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=21 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 270 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=270 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=22 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 290 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=290 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=23 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 318 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=318 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=25 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher None ResStockArguments dishwasher_present=false dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=0 dishwasher_label_electric_rate=0 dishwasher_label_gas_rate=0 dishwasher_label_annual_gas_cost=0 dishwasher_label_usage=0 dishwasher_place_setting_capacity=0 +Dishwasher Void +Dishwasher Usage Level 100% Usage ResStockArguments dishwasher_usage_multiplier=1.0 +Dishwasher Usage Level 120% Usage ResStockArguments dishwasher_usage_multiplier=1.2 +Dishwasher Usage Level 80% Usage ResStockArguments dishwasher_usage_multiplier=0.8 +Door Area 20 ft^2 ResStockArguments door_area=20 +Door Area 30 ft^2 ResStockArguments door_area=30 +Door Area 40 ft^2 ResStockArguments door_area=40 +Doors Fiberglass ResStockArguments door_rvalue=5 +Doors Steel ResStockArguments door_rvalue=5 +Doors Wood ResStockArguments door_rvalue=2.1 +Duct Leakage and Insulation "0% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0 ducts_return_leakage_to_outside_value=0 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "10% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "10% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "10% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "10% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "14% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "14% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "14% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "14% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "15% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "15% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "15% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "15% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "20% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "20% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "20% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "20% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "22.5% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "22.5% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "22.5% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "22.5% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "24% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "24% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "24% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "24% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "30% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "30% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "30% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "30% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "34% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "34% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "34% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "34% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "53% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "53% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "53% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "53% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "6% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "6% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "6% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "6% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "7.5% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "7.5% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "7.5% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "7.5% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "85% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "85% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "85% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "85% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation None ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0 ducts_return_leakage_to_outside_value=0 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Location Attic ResStockArguments ducts_supply_location=attic ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=attic ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location Crawlspace ResStockArguments ducts_supply_location=crawlspace ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=crawlspace ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location Garage ResStockArguments ducts_supply_location=garage ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=garage ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location Heated Basement ResStockArguments ducts_supply_location=basement - conditioned ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=basement - conditioned ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location Living Space ResStockArguments ducts_supply_location=conditioned space ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=conditioned space ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location None ResStockArguments ducts_supply_location=conditioned space ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=conditioned space ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=0 +Duct Location Unheated Basement ResStockArguments ducts_supply_location=basement - unconditioned ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=basement - unconditioned ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Eaves 1 ft ResStockArguments geometry_eaves_depth=1 +Eaves 2 ft ResStockArguments geometry_eaves_depth=2 +Eaves 3 ft ResStockArguments geometry_eaves_depth=3 +Eaves None ResStockArguments geometry_eaves_depth=0 +Electric Vehicle "EV, 4000 miles, 0.3 kWh/mi" ResStockArguments misc_plug_loads_vehicle_present=true misc_plug_loads_vehicle_annual_kwh=1481 misc_plug_loads_vehicle_usage_multiplier=1.0 misc_plug_loads_vehicle_2_usage_multiplier=1.0 +Electric Vehicle "EV, 5000 miles, 0.3 kWh/mi" ResStockArguments misc_plug_loads_vehicle_present=true misc_plug_loads_vehicle_annual_kwh=1852 misc_plug_loads_vehicle_usage_multiplier=1.0 misc_plug_loads_vehicle_2_usage_multiplier=1.0 +Electric Vehicle None ResStockArguments misc_plug_loads_vehicle_present=false misc_plug_loads_vehicle_annual_kwh=0 misc_plug_loads_vehicle_usage_multiplier=0 misc_plug_loads_vehicle_2_usage_multiplier=0 +Energystar Climate Zone 2023 North-Central +Energystar Climate Zone 2023 Northern +Energystar Climate Zone 2023 South-Central +Energystar Climate Zone 2023 Southern +Energystar Climate Zone 2023 Void +Federal Poverty Level 0-100% +Federal Poverty Level 100-150% +Federal Poverty Level 150-200% +Federal Poverty Level 200-300% +Federal Poverty Level 300-400% +Federal Poverty Level 400%+ +Federal Poverty Level Not Available +Generation And Emissions Assessment Region AZNMc +Generation And Emissions Assessment Region CAMXc +Generation And Emissions Assessment Region ERCTc +Generation And Emissions Assessment Region FRCCc +Generation And Emissions Assessment Region MROEc +Generation And Emissions Assessment Region MROWc +Generation And Emissions Assessment Region NEWEc +Generation And Emissions Assessment Region NWPPc +Generation And Emissions Assessment Region NYSTc +Generation And Emissions Assessment Region None +Generation And Emissions Assessment Region RFCEc +Generation And Emissions Assessment Region RFCMc +Generation And Emissions Assessment Region RFCWc +Generation And Emissions Assessment Region RMPAc +Generation And Emissions Assessment Region SPNOc +Generation And Emissions Assessment Region SPSOc +Generation And Emissions Assessment Region SRMVc +Generation And Emissions Assessment Region SRMWc +Generation And Emissions Assessment Region SRSOc +Generation And Emissions Assessment Region SRTVc +Generation And Emissions Assessment Region SRVCc +Geometry Attic Type Finished Attic or Cathedral Ceilings ResStockArguments geometry_attic_type=ConditionedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 +Geometry Attic Type None ResStockArguments geometry_attic_type=FlatRoof geometry_roof_type=gable geometry_roof_pitch=6:12 +Geometry Attic Type Unvented Attic ResStockArguments geometry_attic_type=UnventedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 +Geometry Attic Type Vented Attic ResStockArguments geometry_attic_type=VentedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 +Geometry Building Horizontal Location MF Left ResStockArguments geometry_unit_horizontal_location=Left +Geometry Building Horizontal Location MF Middle ResStockArguments geometry_unit_horizontal_location=Middle +Geometry Building Horizontal Location MF None +Geometry Building Horizontal Location MF Not Applicable ResStockArguments geometry_unit_horizontal_location=None +Geometry Building Horizontal Location MF Right ResStockArguments geometry_unit_horizontal_location=Right +Geometry Building Horizontal Location SFA Left ResStockArguments geometry_unit_horizontal_location=Left +Geometry Building Horizontal Location SFA Middle ResStockArguments geometry_unit_horizontal_location=Middle +Geometry Building Horizontal Location SFA None +Geometry Building Horizontal Location SFA Right ResStockArguments geometry_unit_horizontal_location=Right +Geometry Building Level MF Bottom ResStockArguments geometry_unit_level=Bottom +Geometry Building Level MF Middle ResStockArguments geometry_unit_level=Middle +Geometry Building Level MF None +Geometry Building Level MF Top ResStockArguments geometry_unit_level=Top +Geometry Building Number Units MF 10 ResStockArguments geometry_building_num_units=10 +Geometry Building Number Units MF 102 ResStockArguments geometry_building_num_units=102 +Geometry Building Number Units MF 11 ResStockArguments geometry_building_num_units=11 +Geometry Building Number Units MF 116 ResStockArguments geometry_building_num_units=116 +Geometry Building Number Units MF 12 ResStockArguments geometry_building_num_units=12 +Geometry Building Number Units MF 13 ResStockArguments geometry_building_num_units=13 +Geometry Building Number Units MF 14 ResStockArguments geometry_building_num_units=14 +Geometry Building Number Units MF 15 ResStockArguments geometry_building_num_units=15 +Geometry Building Number Units MF 16 ResStockArguments geometry_building_num_units=16 +Geometry Building Number Units MF 17 ResStockArguments geometry_building_num_units=17 +Geometry Building Number Units MF 18 ResStockArguments geometry_building_num_units=18 +Geometry Building Number Units MF 183 ResStockArguments geometry_building_num_units=183 +Geometry Building Number Units MF 19 ResStockArguments geometry_building_num_units=19 +Geometry Building Number Units MF 2 ResStockArguments geometry_building_num_units=2 +Geometry Building Number Units MF 20 ResStockArguments geometry_building_num_units=20 +Geometry Building Number Units MF 21 ResStockArguments geometry_building_num_units=21 +Geometry Building Number Units MF 24 ResStockArguments geometry_building_num_units=24 +Geometry Building Number Units MF 3 ResStockArguments geometry_building_num_units=3 +Geometry Building Number Units MF 30 ResStockArguments geometry_building_num_units=30 +Geometry Building Number Units MF 323 ResStockArguments geometry_building_num_units=323 +Geometry Building Number Units MF 326 ResStockArguments geometry_building_num_units=326 +Geometry Building Number Units MF 36 ResStockArguments geometry_building_num_units=36 +Geometry Building Number Units MF 4 ResStockArguments geometry_building_num_units=4 +Geometry Building Number Units MF 43 ResStockArguments geometry_building_num_units=43 +Geometry Building Number Units MF 5 ResStockArguments geometry_building_num_units=5 +Geometry Building Number Units MF 6 ResStockArguments geometry_building_num_units=6 +Geometry Building Number Units MF 67 ResStockArguments geometry_building_num_units=67 +Geometry Building Number Units MF 7 ResStockArguments geometry_building_num_units=7 +Geometry Building Number Units MF 8 ResStockArguments geometry_building_num_units=8 +Geometry Building Number Units MF 9 ResStockArguments geometry_building_num_units=9 +Geometry Building Number Units MF None +Geometry Building Number Units SFA 10 ResStockArguments geometry_building_num_units=10 +Geometry Building Number Units SFA 12 ResStockArguments geometry_building_num_units=12 +Geometry Building Number Units SFA 144 ResStockArguments geometry_building_num_units=144 +Geometry Building Number Units SFA 15 ResStockArguments geometry_building_num_units=15 +Geometry Building Number Units SFA 16 ResStockArguments geometry_building_num_units=16 +Geometry Building Number Units SFA 2 ResStockArguments geometry_building_num_units=2 +Geometry Building Number Units SFA 20 ResStockArguments geometry_building_num_units=20 +Geometry Building Number Units SFA 24 ResStockArguments geometry_building_num_units=24 +Geometry Building Number Units SFA 3 ResStockArguments geometry_building_num_units=3 +Geometry Building Number Units SFA 30 ResStockArguments geometry_building_num_units=30 +Geometry Building Number Units SFA 36 ResStockArguments geometry_building_num_units=36 +Geometry Building Number Units SFA 4 ResStockArguments geometry_building_num_units=4 +Geometry Building Number Units SFA 5 ResStockArguments geometry_building_num_units=5 +Geometry Building Number Units SFA 50 ResStockArguments geometry_building_num_units=50 +Geometry Building Number Units SFA 6 ResStockArguments geometry_building_num_units=6 +Geometry Building Number Units SFA 60 ResStockArguments geometry_building_num_units=60 +Geometry Building Number Units SFA 7 ResStockArguments geometry_building_num_units=7 +Geometry Building Number Units SFA 8 ResStockArguments geometry_building_num_units=8 +Geometry Building Number Units SFA 9 ResStockArguments geometry_building_num_units=9 +Geometry Building Number Units SFA 90 ResStockArguments geometry_building_num_units=90 +Geometry Building Number Units SFA None +Geometry Building Type ACS 10 to 19 Unit +Geometry Building Type ACS 2 Unit +Geometry Building Type ACS 20 to 49 Unit +Geometry Building Type ACS 3 or 4 Unit +Geometry Building Type ACS 5 to 9 Unit +Geometry Building Type ACS 50 or more Unit +Geometry Building Type ACS Mobile Home +Geometry Building Type ACS Single-Family Attached +Geometry Building Type ACS Single-Family Detached +Geometry Building Type Height "Multifamily with 5+ units, 1-3 stories" +Geometry Building Type Height "Multifamily with 5+ units, 4-7 stories" +Geometry Building Type Height "Multifamily with 5+ units, 8+ stories" +Geometry Building Type Height Mobile Home +Geometry Building Type Height Multifamily with 2-4 Units +Geometry Building Type Height Single-Family Attached +Geometry Building Type Height Single-Family Detached +Geometry Building Type RECS Mobile Home ResStockArguments geometry_unit_type=single-family detached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=1.8 +Geometry Building Type RECS Multi-Family with 2 - 4 Units ResStockArguments geometry_unit_type=apartment unit geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 +Geometry Building Type RECS Multi-Family with 5+ Units ResStockArguments geometry_unit_type=apartment unit geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 +Geometry Building Type RECS Single-Family Attached ResStockArguments geometry_unit_type=single-family attached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 +Geometry Building Type RECS Single-Family Detached ResStockArguments geometry_unit_type=single-family detached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=1.8 +Geometry Floor Area 0-499 ResStockArguments geometry_unit_cfa_bin=0-499 geometry_unit_cfa=auto geometry_garage_protrusion=0.75 +Geometry Floor Area 1000-1499 ResStockArguments geometry_unit_cfa_bin=1000-1499 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 1500-1999 ResStockArguments geometry_unit_cfa_bin=1500-1999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 2000-2499 ResStockArguments geometry_unit_cfa_bin=2000-2499 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 2500-2999 ResStockArguments geometry_unit_cfa_bin=2500-2999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 3000-3999 ResStockArguments geometry_unit_cfa_bin=3000-3999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 4000+ ResStockArguments geometry_unit_cfa_bin=4000+ geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 500-749 ResStockArguments geometry_unit_cfa_bin=500-749 geometry_unit_cfa=auto geometry_garage_protrusion=0.75 +Geometry Floor Area 750-999 ResStockArguments geometry_unit_cfa_bin=750-999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area Bin 0-1499 +Geometry Floor Area Bin 1500-2499 +Geometry Floor Area Bin 2500-3999 +Geometry Floor Area Bin 4000+ +Geometry Foundation Type Ambient ResStockArguments geometry_foundation_type=Ambient geometry_foundation_height=4 geometry_foundation_height_above_grade=4 geometry_rim_joist_height=0 +Geometry Foundation Type Conditioned Crawlspace ResStockArguments geometry_foundation_type=ConditionedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Foundation Type Heated Basement ResStockArguments geometry_foundation_type=ConditionedBasement geometry_foundation_height=8 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Foundation Type Slab ResStockArguments geometry_foundation_type=SlabOnGrade geometry_foundation_height=0 geometry_foundation_height_above_grade=0 geometry_rim_joist_height=0 +Geometry Foundation Type Unheated Basement ResStockArguments geometry_foundation_type=UnconditionedBasement geometry_foundation_height=8 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Foundation Type Unvented Crawlspace ResStockArguments geometry_foundation_type=UnventedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Foundation Type Vented Crawlspace ResStockArguments geometry_foundation_type=VentedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Garage 1 Car ResStockArguments geometry_garage_width=12 geometry_garage_depth=24 geometry_garage_position=Right +Geometry Garage 2 Car ResStockArguments geometry_garage_width=24 geometry_garage_depth=24 geometry_garage_position=Right +Geometry Garage 3 Car ResStockArguments geometry_garage_width=36 geometry_garage_depth=24 geometry_garage_position=Right +Geometry Garage None ResStockArguments geometry_garage_width=0 geometry_garage_depth=24 geometry_garage_position=Right +Geometry Heated Basement No +Geometry Heated Basement Yes +Geometry Number Units ACS bins 10 to 19 Units +Geometry Number Units ACS bins 20 to 49 Units +Geometry Number Units ACS bins 5 to 9 Units +Geometry Number Units ACS bins 50 or more +Geometry Number Units ACS bins <5 +Geometry Space Combination "Mobile Home, Ambient, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Slab, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Slab, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage" +Geometry Space Combination Void +Geometry Stories 1 ResStockArguments geometry_num_floors_above_grade=1 +Geometry Stories 10 ResStockArguments geometry_num_floors_above_grade=10 +Geometry Stories 11 ResStockArguments geometry_num_floors_above_grade=11 +Geometry Stories 12 ResStockArguments geometry_num_floors_above_grade=12 +Geometry Stories 13 ResStockArguments geometry_num_floors_above_grade=13 +Geometry Stories 14 ResStockArguments geometry_num_floors_above_grade=14 +Geometry Stories 15 ResStockArguments geometry_num_floors_above_grade=15 +Geometry Stories 2 ResStockArguments geometry_num_floors_above_grade=2 +Geometry Stories 20 ResStockArguments geometry_num_floors_above_grade=20 +Geometry Stories 21 ResStockArguments geometry_num_floors_above_grade=21 +Geometry Stories 3 ResStockArguments geometry_num_floors_above_grade=3 +Geometry Stories 35 ResStockArguments geometry_num_floors_above_grade=35 +Geometry Stories 4 ResStockArguments geometry_num_floors_above_grade=4 +Geometry Stories 5 ResStockArguments geometry_num_floors_above_grade=5 +Geometry Stories 6 ResStockArguments geometry_num_floors_above_grade=6 +Geometry Stories 7 ResStockArguments geometry_num_floors_above_grade=7 +Geometry Stories 8 ResStockArguments geometry_num_floors_above_grade=8 +Geometry Stories 9 ResStockArguments geometry_num_floors_above_grade=9 +Geometry Stories Low Rise 1 +Geometry Stories Low Rise 2 +Geometry Stories Low Rise 3 +Geometry Stories Low Rise 4+ +Geometry Story Bin 8+ +Geometry Story Bin <8 +Geometry Wall Exterior Finish "Aluminum, Light" ResStockArguments wall_siding_type=aluminum siding wall_color=light exterior_finish_r=0.6 +Geometry Wall Exterior Finish "Brick, Light" ResStockArguments wall_siding_type=brick veneer wall_color=light exterior_finish_r=0.7 +Geometry Wall Exterior Finish "Brick, Medium/Dark" ResStockArguments wall_siding_type=brick veneer wall_color=medium dark exterior_finish_r=0.7 +Geometry Wall Exterior Finish "Fiber-Cement, Light" ResStockArguments wall_siding_type=fiber cement siding wall_color=light exterior_finish_r=0.2 +Geometry Wall Exterior Finish "Shingle, Asbestos, Medium" ResStockArguments wall_siding_type=asbestos siding wall_color=medium exterior_finish_r=0.6 +Geometry Wall Exterior Finish "Shingle, Composition, Medium" ResStockArguments wall_siding_type=composite shingle siding wall_color=medium exterior_finish_r=0.6 +Geometry Wall Exterior Finish "Stucco, Light" ResStockArguments wall_siding_type=stucco wall_color=light exterior_finish_r=0.2 +Geometry Wall Exterior Finish "Stucco, Medium/Dark" ResStockArguments wall_siding_type=stucco wall_color=medium dark exterior_finish_r=0.2 +Geometry Wall Exterior Finish "Vinyl, Light" ResStockArguments wall_siding_type=vinyl siding wall_color=light exterior_finish_r=0.6 +Geometry Wall Exterior Finish "Wood, Medium/Dark" ResStockArguments wall_siding_type=wood siding wall_color=medium dark exterior_finish_r=1.4 +Geometry Wall Exterior Finish None ResStockArguments wall_siding_type=none wall_color=medium exterior_finish_r=0 +Geometry Wall Type Brick +Geometry Wall Type Concrete +Geometry Wall Type Steel Frame +Geometry Wall Type Void +Geometry Wall Type Wood Frame +Ground Thermal Conductivity 0.5 ResStockArguments site_ground_conductivity=0.5 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 0.8 ResStockArguments site_ground_conductivity=0.8 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 1.1 ResStockArguments site_ground_conductivity=1.1 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 1.4 ResStockArguments site_ground_conductivity=1.4 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 1.7 ResStockArguments site_ground_conductivity=1.7 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 2 ResStockArguments site_ground_conductivity=2.0 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 2.3 ResStockArguments site_ground_conductivity=2.3 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 2.6 ResStockArguments site_ground_conductivity=2.6 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +HVAC Cooling Autosizing Factor 40% Oversized ResStockArguments cooling_system_cooling_autosizing_factor=1.4 heat_pump_cooling_autosizing_factor=auto +HVAC Cooling Autosizing Factor None +HVAC Cooling Efficiency "AC, SEER 10" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=10 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 13" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 14" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=14 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 15" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=15 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 18" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=18 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 24.5" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=24.5 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 8" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=8 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "Room AC, EER 10.7" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=10.7 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "Room AC, EER 12.0" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=12 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "Room AC, EER 8.5" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=8.5 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "Room AC, EER 9.8" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=9.8 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency Ducted Heat Pump ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency Evaporative Cooler ResStockArguments cooling_system_type=evaporative cooler cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency Non-Ducted Heat Pump ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency None ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency Shared Cooling +HVAC Cooling Partial Space Conditioning 100% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=1 +HVAC Cooling Partial Space Conditioning 20% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.2 +HVAC Cooling Partial Space Conditioning 40% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.4 +HVAC Cooling Partial Space Conditioning 60% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.6 +HVAC Cooling Partial Space Conditioning 80% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.8 +HVAC Cooling Partial Space Conditioning <10% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.1 +HVAC Cooling Partial Space Conditioning None ResStockArguments cooling_system_fraction_cool_load_served=0 +HVAC Cooling Partial Space Conditioning Void +HVAC Cooling Type Central AC +HVAC Cooling Type Ducted Heat Pump +HVAC Cooling Type Evaporative or Swamp Cooler +HVAC Cooling Type Non-Ducted Heat Pump +HVAC Cooling Type None +HVAC Cooling Type Room AC +HVAC Detailed Performance Data Default ResStockArguments hvac_perf_data_capacity_type=auto hvac_perf_data_heating_outdoor_temperatures=auto hvac_perf_data_heating_min_speed_capacities=auto hvac_perf_data_heating_max_speed_capacities=auto hvac_perf_data_heating_min_speed_cops=auto hvac_perf_data_heating_max_speed_cops=auto hvac_perf_data_cooling_outdoor_temperatures=auto hvac_perf_data_cooling_min_speed_capacities=auto hvac_perf_data_cooling_max_speed_capacities=auto hvac_perf_data_cooling_min_speed_cops=auto hvac_perf_data_cooling_max_speed_cops=auto +HVAC Has Ducts No +HVAC Has Ducts Void +HVAC Has Ducts Yes +HVAC Has Shared System Cooling Only +HVAC Has Shared System Heating Only +HVAC Has Shared System Heating and Cooling +HVAC Has Shared System None +HVAC Has Shared System Void +HVAC Has Zonal Electric Heating No +HVAC Has Zonal Electric Heating Yes +HVAC Heating Autosizing Factor 40% Oversized ResStockArguments heating_system_heating_autosizing_factor=1.4 heating_system_2_heating_autosizing_factor=auto heat_pump_heating_autosizing_factor=auto heat_pump_backup_heating_autosizing_factor=auto +HVAC Heating Autosizing Factor None +HVAC Heating Efficiency "ASHP, SEER 10, 6.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=6.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 10.3, 7.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 11.5, 7.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=11.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 13, 7.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=13 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 13, 8.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=13 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 14, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 14.3, 8.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 15, 8.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 15, 9.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 16, 9.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 17, 8.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 18, 9.3 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 22, 10 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=10 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=22 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 14, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Electric Baseboard, 100% Efficiency" ResStockArguments heating_system_type=ElectricResistance heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Electric Boiler, 100% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Electric Furnace, 100% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Electric Wall Furnace, 100% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 72% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.72 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.76 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.8 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 82% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.82 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 85% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.85 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.9 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 95% AFUE, OAT Reset" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.95 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 96% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.96 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 60% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.6 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 68% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.68 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 72% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.72 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 76% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.76 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 80% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.8 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 85% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.85 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 90% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.9 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 92.5% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.925 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 96% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.96 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Wall/Floor Furnace, 60% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=0.6 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Wall/Floor Furnace, 68% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=0.68 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "GSHP, EER 16.6, COP 3.6" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=3.6 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=16.6 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=vertical geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "GSHP, EER 20.2, COP 4.2" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=4.2 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=20.2 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=vertical geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 14.5, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 14.5, 8.2 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 17, 9.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 17, 9.5 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 18.0, 9.6 HSPF, 60% Conditioned" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.6 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=0.6 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=0.6 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 18.0, 9.6 HSPF, 60% Conditioned, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.6 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=0.6 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=0.6 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 25, 12.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=12.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=25.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 25, 12.7 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=12.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=25.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 29.3, 14 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=14 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=29.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 29.3, 14 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=14 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=29.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 33, 13.3 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=13.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=33.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 33, 13.3 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=13.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=33.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency None ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=6.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency Shared Heating +HVAC Heating Efficiency Void +HVAC Heating Type Ducted Heat Pump +HVAC Heating Type Ducted Heating +HVAC Heating Type Non-Ducted Heat Pump +HVAC Heating Type Non-Ducted Heating +HVAC Heating Type None +HVAC Heating Type And Fuel Electricity ASHP +HVAC Heating Type And Fuel Electricity Baseboard +HVAC Heating Type And Fuel Electricity Electric Boiler +HVAC Heating Type And Fuel Electricity Electric Furnace +HVAC Heating Type And Fuel Electricity Electric Wall Furnace +HVAC Heating Type And Fuel Electricity MSHP +HVAC Heating Type And Fuel Electricity Other +HVAC Heating Type And Fuel Electricity Shared Heating +HVAC Heating Type And Fuel Fuel Oil Fuel Boiler +HVAC Heating Type And Fuel Fuel Oil Fuel Furnace +HVAC Heating Type And Fuel Fuel Oil Fuel Wall/Floor Furnace +HVAC Heating Type And Fuel Fuel Oil Shared Heating +HVAC Heating Type And Fuel Natural Gas Fuel Boiler +HVAC Heating Type And Fuel Natural Gas Fuel Furnace +HVAC Heating Type And Fuel Natural Gas Fuel Wall/Floor Furnace +HVAC Heating Type And Fuel Natural Gas Shared Heating +HVAC Heating Type And Fuel None +HVAC Heating Type And Fuel Other Fuel Fuel Boiler +HVAC Heating Type And Fuel Other Fuel Fuel Furnace +HVAC Heating Type And Fuel Other Fuel Fuel Wall/Floor Furnace +HVAC Heating Type And Fuel Other Fuel Shared Heating +HVAC Heating Type And Fuel Propane Fuel Boiler +HVAC Heating Type And Fuel Propane Fuel Furnace +HVAC Heating Type And Fuel Propane Fuel Wall/Floor Furnace +HVAC Heating Type And Fuel Propane Shared Heating +HVAC Heating Type And Fuel Void +HVAC Secondary Heating Efficiency "Electric Baseboard, 100% Efficiency" ResStockArguments heating_system_2_type=ElectricResistance heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Electric Portable Heater, 100% Efficiency" ResStockArguments heating_system_2_type=SpaceHeater heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 60% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.76 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.8 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.90 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 92.5% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.925 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Fireplace, 60% AFUE" ResStockArguments heating_system_2_type=Fireplace heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Furnace, 60% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Furnace, 76% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.76 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Furnace, 80% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.8 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Furnace, 92.5% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.925 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency None ResStockArguments heating_system_2_type=none heating_system_2_heating_efficiency=0 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency Shared Heating ResStockArguments heating_system_2_type=none heating_system_2_heating_efficiency=0 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Fuel Electricity ResStockArguments heating_system_2_fuel=electricity +HVAC Secondary Heating Fuel Fuel Oil ResStockArguments heating_system_2_fuel=fuel oil +HVAC Secondary Heating Fuel Natural Gas ResStockArguments heating_system_2_fuel=natural gas +HVAC Secondary Heating Fuel None ResStockArguments heating_system_2_fuel=electricity +HVAC Secondary Heating Fuel Other Fuel ResStockArguments heating_system_2_fuel=wood +HVAC Secondary Heating Fuel Propane ResStockArguments heating_system_2_fuel=propane +HVAC Secondary Heating Fuel Wood ResStockArguments heating_system_2_fuel=wood +HVAC Secondary Heating Partial Space Conditioning 0% ResStockArguments heating_system_2_fraction_heat_load_served=0 +HVAC Secondary Heating Partial Space Conditioning 10% ResStockArguments heating_system_2_fraction_heat_load_served=0.1 +HVAC Secondary Heating Partial Space Conditioning 20% ResStockArguments heating_system_2_fraction_heat_load_served=0.2 +HVAC Secondary Heating Partial Space Conditioning 30% ResStockArguments heating_system_2_fraction_heat_load_served=0.3 +HVAC Secondary Heating Partial Space Conditioning 40% ResStockArguments heating_system_2_fraction_heat_load_served=0.4 +HVAC Secondary Heating Partial Space Conditioning 49% ResStockArguments heating_system_2_fraction_heat_load_served=0.49 +HVAC Secondary Heating Partial Space Conditioning None ResStockArguments heating_system_2_fraction_heat_load_served=0 +HVAC Secondary Heating Type Ducted Heating +HVAC Secondary Heating Type Non-Ducted Heating +HVAC Secondary Heating Type None +HVAC Shared Efficiencies "Boiler Baseboards Heating Only, Electricity" ResStockArguments heating_system_type=Shared Boiler w/ Baseboard heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Shared Efficiencies "Boiler Baseboards Heating Only, Fuel" ResStockArguments heating_system_type=Shared Boiler w/ Baseboard heating_system_heating_efficiency=0.78 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Shared Efficiencies "Fan Coil Heating and Cooling, Electricity" ResStockArguments heating_system_type=Shared Boiler w/ Ductless Fan Coil heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Shared Efficiencies "Fan Coil Heating and Cooling, Fuel" ResStockArguments heating_system_type=Shared Boiler w/ Ductless Fan Coil heating_system_heating_efficiency=0.78 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Shared Efficiencies Fan Coil Cooling Only ResStockArguments cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false +HVAC Shared Efficiencies None +HVAC System Is Faulted No +HVAC System Is Faulted Yes +HVAC System Is Scaled No +HVAC System Is Scaled Yes +HVAC System Single Speed AC Airflow 154.8 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=154.8 +HVAC System Single Speed AC Airflow 204.4 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=204.4 +HVAC System Single Speed AC Airflow 254.0 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=254.0 +HVAC System Single Speed AC Airflow 303.5 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=303.5 +HVAC System Single Speed AC Airflow 353.1 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=353.1 +HVAC System Single Speed AC Airflow 402.7 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=402.7 +HVAC System Single Speed AC Airflow 452.3 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=452.3 +HVAC System Single Speed AC Airflow 501.9 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=501.9 +HVAC System Single Speed AC Airflow 551.5 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=551.5 +HVAC System Single Speed AC Airflow 601.0 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=601.0 +HVAC System Single Speed AC Airflow 650.6 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=650.6 +HVAC System Single Speed AC Airflow 700.2 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=700.2 +HVAC System Single Speed AC Airflow None +HVAC System Single Speed AC Charge 0.570 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.570 +HVAC System Single Speed AC Charge 0.709 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.709 +HVAC System Single Speed AC Charge 0.848 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.848 +HVAC System Single Speed AC Charge 0.988 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.988 +HVAC System Single Speed AC Charge 1.127 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.127 +HVAC System Single Speed AC Charge 1.266 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.266 +HVAC System Single Speed AC Charge 1.405 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.405 +HVAC System Single Speed AC Charge None +HVAC System Single Speed ASHP Airflow 154.8 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=154.8 +HVAC System Single Speed ASHP Airflow 204.4 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=204.4 +HVAC System Single Speed ASHP Airflow 254.0 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=254.0 +HVAC System Single Speed ASHP Airflow 303.5 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=303.5 +HVAC System Single Speed ASHP Airflow 353.1 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=353.1 +HVAC System Single Speed ASHP Airflow 402.7 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=402.7 +HVAC System Single Speed ASHP Airflow 452.3 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=452.3 +HVAC System Single Speed ASHP Airflow 501.9 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=501.9 +HVAC System Single Speed ASHP Airflow 551.5 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=551.5 +HVAC System Single Speed ASHP Airflow 601.0 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=601.0 +HVAC System Single Speed ASHP Airflow 650.6 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=650.6 +HVAC System Single Speed ASHP Airflow 700.2 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=700.2 +HVAC System Single Speed ASHP Airflow None +HVAC System Single Speed ASHP Charge 0.570 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.570 +HVAC System Single Speed ASHP Charge 0.709 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.709 +HVAC System Single Speed ASHP Charge 0.848 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.848 +HVAC System Single Speed ASHP Charge 0.988 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.988 +HVAC System Single Speed ASHP Charge 1.127 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.127 +HVAC System Single Speed ASHP Charge 1.266 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.266 +HVAC System Single Speed ASHP Charge 1.405 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.405 +HVAC System Single Speed ASHP Charge None +Has PV No +Has PV Yes +Heat Pump Backup Use Existing System ResStockArguments heat_pump_backup_use_existing_system=true +Heating Fuel Electricity ResStockArguments heating_system_fuel=electricity +Heating Fuel Fuel Oil ResStockArguments heating_system_fuel=fuel oil +Heating Fuel Natural Gas ResStockArguments heating_system_fuel=natural gas +Heating Fuel None ResStockArguments heating_system_fuel=natural gas +Heating Fuel Other Fuel ResStockArguments heating_system_fuel=wood +Heating Fuel Propane ResStockArguments heating_system_fuel=propane +Heating Fuel Wood ResStockArguments heating_system_fuel=wood +Heating Setpoint 55F ResStockArguments hvac_control_heating_weekday_setpoint_temp=55 hvac_control_heating_weekend_setpoint_temp=55 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 60F ResStockArguments hvac_control_heating_weekday_setpoint_temp=60 hvac_control_heating_weekend_setpoint_temp=60 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 62F ResStockArguments hvac_control_heating_weekday_setpoint_temp=62 hvac_control_heating_weekend_setpoint_temp=62 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 63F ResStockArguments hvac_control_heating_weekday_setpoint_temp=63 hvac_control_heating_weekend_setpoint_temp=63 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 64F ResStockArguments hvac_control_heating_weekday_setpoint_temp=64 hvac_control_heating_weekend_setpoint_temp=64 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 65F ResStockArguments hvac_control_heating_weekday_setpoint_temp=65 hvac_control_heating_weekend_setpoint_temp=65 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 66F ResStockArguments hvac_control_heating_weekday_setpoint_temp=66 hvac_control_heating_weekend_setpoint_temp=66 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 67F ResStockArguments hvac_control_heating_weekday_setpoint_temp=67 hvac_control_heating_weekend_setpoint_temp=67 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 68F ResStockArguments hvac_control_heating_weekday_setpoint_temp=68 hvac_control_heating_weekend_setpoint_temp=68 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 69F ResStockArguments hvac_control_heating_weekday_setpoint_temp=69 hvac_control_heating_weekend_setpoint_temp=69 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 70F ResStockArguments hvac_control_heating_weekday_setpoint_temp=70 hvac_control_heating_weekend_setpoint_temp=70 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 71F ResStockArguments hvac_control_heating_weekday_setpoint_temp=71 hvac_control_heating_weekend_setpoint_temp=71 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 71F w/ Building America season ResStockArguments hvac_control_heating_weekday_setpoint_temp=71 hvac_control_heating_weekend_setpoint_temp=71 use_auto_heating_season=true hvac_control_heating_season_period=auto +Heating Setpoint 72F ResStockArguments hvac_control_heating_weekday_setpoint_temp=72 hvac_control_heating_weekend_setpoint_temp=72 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 73F ResStockArguments hvac_control_heating_weekday_setpoint_temp=73 hvac_control_heating_weekend_setpoint_temp=73 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 74F ResStockArguments hvac_control_heating_weekday_setpoint_temp=74 hvac_control_heating_weekend_setpoint_temp=74 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 75F ResStockArguments hvac_control_heating_weekday_setpoint_temp=75 hvac_control_heating_weekend_setpoint_temp=75 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 76F ResStockArguments hvac_control_heating_weekday_setpoint_temp=76 hvac_control_heating_weekend_setpoint_temp=76 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 78F ResStockArguments hvac_control_heating_weekday_setpoint_temp=78 hvac_control_heating_weekend_setpoint_temp=78 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 80F ResStockArguments hvac_control_heating_weekday_setpoint_temp=80 hvac_control_heating_weekend_setpoint_temp=80 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint Has Offset No +Heating Setpoint Has Offset Yes +Heating Setpoint Offset Magnitude 0F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=0 hvac_control_heating_weekend_setpoint_offset_magnitude=0 +Heating Setpoint Offset Magnitude 12F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=12 hvac_control_heating_weekend_setpoint_offset_magnitude=12 +Heating Setpoint Offset Magnitude 3F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=3 hvac_control_heating_weekend_setpoint_offset_magnitude=3 +Heating Setpoint Offset Magnitude 6F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=6 hvac_control_heating_weekend_setpoint_offset_magnitude=6 +Heating Setpoint Offset Period Day ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day and Night ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1" +Heating Setpoint Offset Period Day and Night +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1" +Heating Setpoint Offset Period Day and Night +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Heating Setpoint Offset Period Day and Night +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Heating Setpoint Offset Period Day and Night +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0" +Heating Setpoint Offset Period Day and Night +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0" +Heating Setpoint Offset Period Day and Night -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1" +Heating Setpoint Offset Period Day and Night -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1" +Heating Setpoint Offset Period Day and Night -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1" +Heating Setpoint Offset Period Day and Night -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1" +Heating Setpoint Offset Period Day and Night -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" +Heating Setpoint Offset Period Night ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" +Heating Setpoint Offset Period Night +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" +Heating Setpoint Offset Period Night +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Night +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Night +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Night +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Night -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" +Heating Setpoint Offset Period Night -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" +Heating Setpoint Offset Period Night -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" +Heating Setpoint Offset Period Night -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" +Heating Setpoint Offset Period Night -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" +Heating Setpoint Offset Period None ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Holiday Lighting No Exterior Use ResStockArguments holiday_lighting_present=false holiday_lighting_daily_kwh=0 holiday_lighting_period=auto +Holiday Lighting None ResStockArguments holiday_lighting_present=false holiday_lighting_daily_kwh=0 holiday_lighting_period=auto +Hot Water Distribution "R-2, Demand" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=presence sensor demand control hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Distribution "R-2, Timer" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=timer hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Distribution "R-5, Timer" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=timer hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=5 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Distribution R-2 ResStockArguments hot_water_distribution_system_type=Standard hot_water_distribution_standard_piping_length=auto hot_water_distribution_recirc_control_type=no control hot_water_distribution_recirc_piping_length=0 hot_water_distribution_recirc_branch_piping_length=0 hot_water_distribution_recirc_pump_power=0 hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Distribution Uninsulated ResStockArguments hot_water_distribution_system_type=Standard hot_water_distribution_standard_piping_length=auto hot_water_distribution_recirc_control_type=no control hot_water_distribution_recirc_piping_length=0 hot_water_distribution_recirc_branch_piping_length=0 hot_water_distribution_recirc_pump_power=0 hot_water_distribution_pipe_r=0 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Fixtures "100% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=1.31 +Hot Water Fixtures "200% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=2.62 +Hot Water Fixtures "50% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=0.65 +Hot Water Fixtures 100% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.31 +Hot Water Fixtures 110% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.44 +Hot Water Fixtures 120% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.57 +Hot Water Fixtures 130% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.70 +Hot Water Fixtures 140% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.83 +Hot Water Fixtures 150% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.96 +Hot Water Fixtures 160% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=2.09 +Hot Water Fixtures 170% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=2.22 +Hot Water Fixtures 180% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=2.35 +Hot Water Fixtures 190% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=2.49 +Hot Water Fixtures 200% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=2.62 +Hot Water Fixtures 40% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.52 +Hot Water Fixtures 50% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.65 +Hot Water Fixtures 60% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.78 +Hot Water Fixtures 70% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.92 +Hot Water Fixtures 80% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.05 +Hot Water Fixtures 90% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.18 +Household Has Tribal Persons No +Household Has Tribal Persons Not Available +Household Has Tribal Persons Yes +ISO RTO Region CAISO +ISO RTO Region ERCOT +ISO RTO Region MISO +ISO RTO Region NEISO +ISO RTO Region NYISO +ISO RTO Region None +ISO RTO Region PJM +ISO RTO Region SPP +Income 10000-14999 +Income 100000-119999 +Income 120000-139999 +Income 140000-159999 +Income 15000-19999 +Income 160000-179999 +Income 180000-199999 +Income 20000-24999 +Income 200000+ +Income 25000-29999 +Income 30000-34999 +Income 35000-39999 +Income 40000-44999 +Income 45000-49999 +Income 50000-59999 +Income 60000-69999 +Income 70000-79999 +Income 80000-99999 +Income <10000 +Income Not Available +Income RECS2015 100000-119999 +Income RECS2015 120000-139999 +Income RECS2015 140000+ +Income RECS2015 20000-39999 +Income RECS2015 40000-59999 +Income RECS2015 60000-79999 +Income RECS2015 80000-99999 +Income RECS2015 <20000 +Income RECS2015 Not Available +Income RECS2020 100000-149999 +Income RECS2020 150000+ +Income RECS2020 20000-39999 +Income RECS2020 40000-59999 +Income RECS2020 60000-99999 +Income RECS2020 <20000 +Income RECS2020 Not Available +Infiltration "7 ACH50, 0.5 Shelter Coefficient" ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 0.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 0.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 0.75 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.75 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 1 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=1 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 1.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=1.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 10 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=10 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 11.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=11.25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 15 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=15 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 18.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=18.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 2 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=2 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 2.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=2.25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 20 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=20 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 3 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=3 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 3.75 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=3.75 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 30 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=30 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 4 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=4 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 4.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=4.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 40 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=40 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 5.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=5.25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 50 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=50 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 6 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=6 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 7 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 7.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 8 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=8 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration Reduction 15% ResStockArguments air_leakage_percent_reduction=15 +Infiltration Reduction 20% ResStockArguments air_leakage_percent_reduction=20 +Infiltration Reduction 25% ResStockArguments air_leakage_percent_reduction=25 +Insulation Ceiling None ResStockArguments ceiling_assembly_r=0 ceiling_insulation_r=0 +Insulation Ceiling R-13 ResStockArguments ceiling_assembly_r=14.6 ceiling_insulation_r=13 +Insulation Ceiling R-19 ResStockArguments ceiling_assembly_r=20.6 ceiling_insulation_r=19 +Insulation Ceiling R-30 ResStockArguments ceiling_assembly_r=31.6 ceiling_insulation_r=30 +Insulation Ceiling R-38 ResStockArguments ceiling_assembly_r=39.6 ceiling_insulation_r=38 +Insulation Ceiling R-49 ResStockArguments ceiling_assembly_r=50.6 ceiling_insulation_r=49 +Insulation Ceiling R-60 ResStockArguments ceiling_assembly_r=61.6 ceiling_insulation_r=60 +Insulation Ceiling R-7 ResStockArguments ceiling_assembly_r=8.7 ceiling_insulation_r=7 +Insulation Ceiling Uninsulated ResStockArguments ceiling_assembly_r=2.1 ceiling_insulation_r=0 +Insulation Floor Ceiling R-13 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=17.8 floor_over_garage_assembly_r=17.8 +Insulation Floor Ceiling R-19 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=22.6 floor_over_garage_assembly_r=22.6 +Insulation Floor Ceiling R-30 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=30.3 floor_over_garage_assembly_r=30.3 +Insulation Floor Ceiling R-38 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=35.1 floor_over_garage_assembly_r=35.1 +Insulation Floor None ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=0 floor_over_garage_assembly_r=5.3 +Insulation Floor Uninsulated ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=5.3 floor_over_garage_assembly_r=5.3 +Insulation Foundation Wall "Wall R-10, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=10 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto +Insulation Foundation Wall "Wall R-13, Interior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=13 foundation_wall_insulation_location=interior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto +Insulation Foundation Wall "Wall R-15, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=15 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto +Insulation Foundation Wall "Wall R-5, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=5 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto +Insulation Foundation Wall None ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=0 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=0 foundation_wall_assembly_r=auto +Insulation Foundation Wall Uninsulated ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=0 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=0 foundation_wall_assembly_r=auto +Insulation Rim Joist "R-10, Exterior" ResStockArguments rim_joist_continuous_exterior_r=10 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Rim Joist "R-13, Interior" ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=13 rim_joist_assembly_interior_r=10.4 rim_joist_assembly_r=auto +Insulation Rim Joist "R-15, Exterior" ResStockArguments rim_joist_continuous_exterior_r=15 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Rim Joist "R-5, Exterior" ResStockArguments rim_joist_continuous_exterior_r=5 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Rim Joist None ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Rim Joist Uninsulated ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Roof "Finished, R-13" ResStockArguments roof_assembly_r=14.3 +Insulation Roof "Finished, R-19" ResStockArguments roof_assembly_r=21.2 +Insulation Roof "Finished, R-30" ResStockArguments roof_assembly_r=29.7 +Insulation Roof "Finished, R-38" ResStockArguments roof_assembly_r=36.5 +Insulation Roof "Finished, R-49" ResStockArguments roof_assembly_r=47.0 +Insulation Roof "Finished, R-7" ResStockArguments roof_assembly_r=10.2 +Insulation Roof "Finished, Uninsulated" ResStockArguments roof_assembly_r=3.7 +Insulation Roof "Unfinished, Uninsulated" ResStockArguments roof_assembly_r=2.3 +Insulation Sheathing R-10 ResStockArguments wall_continuous_exterior_r=10 +Insulation Sheathing R-15 ResStockArguments wall_continuous_exterior_r=15 +Insulation Sheathing R-5 ResStockArguments wall_continuous_exterior_r=5 +Insulation Slab "2ft R10 Perimeter, Vertical" ResStockArguments slab_perimeter_insulation_r=10 slab_perimeter_depth=2 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "2ft R10 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=10 slab_under_width=2 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "2ft R5 Perimeter, Vertical" ResStockArguments slab_perimeter_insulation_r=5 slab_perimeter_depth=2 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "2ft R5 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=5 slab_under_width=2 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "4ft R5 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=5 slab_under_width=4 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "R10 Whole Slab, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=10 slab_under_width=999 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab None ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab Uninsulated ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Wall "Brick, 12-in, 3-wythe, R-11" ResStockArguments wall_type=StructuralBrick wall_assembly_r=13.3 +Insulation Wall "Brick, 12-in, 3-wythe, R-15" ResStockArguments wall_type=StructuralBrick wall_assembly_r=15.9 +Insulation Wall "Brick, 12-in, 3-wythe, R-19" ResStockArguments wall_type=StructuralBrick wall_assembly_r=18.3 +Insulation Wall "Brick, 12-in, 3-wythe, R-7" ResStockArguments wall_type=StructuralBrick wall_assembly_r=10.3 +Insulation Wall "Brick, 12-in, 3-wythe, Uninsulated" ResStockArguments wall_type=StructuralBrick wall_assembly_r=4.9 +Insulation Wall "CMU, 12-in Hollow" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=4.9 +Insulation Wall "CMU, 12-in Hollow, R-10" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=12.9 +Insulation Wall "CMU, 6-in Concrete Filled" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=3.7 +Insulation Wall "CMU, 6-in Concrete-Filled, R-10" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=11.4 +Insulation Wall "CMU, 6-in Hollow, R-11" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=12.4 +Insulation Wall "CMU, 6-in Hollow, R-15" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=15 +Insulation Wall "CMU, 6-in Hollow, R-19" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=17.4 +Insulation Wall "CMU, 6-in Hollow, R-7" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=9.4 +Insulation Wall "CMU, 6-in Hollow, Uninsulated" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=4 +Insulation Wall "Double Wood Stud, R-33" ResStockArguments wall_type=DoubleWoodStud wall_assembly_r=28.1 +Insulation Wall "Double Wood Stud, R-45, Grade 3" ResStockArguments wall_type=DoubleWoodStud wall_assembly_r=25.1 +Insulation Wall "Generic, 10-in Grid ICF" ResStockArguments wall_type=WoodStud wall_assembly_r=12.4 +Insulation Wall "Generic, T-Mass Wall w/Metal Ties" ResStockArguments wall_type=WoodStud wall_assembly_r=9 +Insulation Wall "ICF, 2-in EPS, 12-in Concrete, 2-in EPS" ResStockArguments wall_type=InsulatedConcreteForms wall_assembly_r=22.5 +Insulation Wall "ICF, 2-in EPS, 4-in Concrete, 2-in EPS" ResStockArguments wall_type=InsulatedConcreteForms wall_assembly_r=20.4 +Insulation Wall "SIP, 3.6 in EPS Core, OSB int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=15.5 +Insulation Wall "SIP, 9.4 in EPS Core, Gypsum int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=35.8 +Insulation Wall "SIP, 9.4 in EPS Core, OSB int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=36 +Insulation Wall "Steel Stud, R-13" ResStockArguments wall_type=SteelFrame wall_assembly_r=7.9 +Insulation Wall "Steel Stud, R-25, Grade 3" ResStockArguments wall_type=SteelFrame wall_assembly_r=10.4 +Insulation Wall "Steel Stud, Uninsulated" ResStockArguments wall_type=SteelFrame wall_assembly_r=3 +Insulation Wall "Wood Stud, R-11" ResStockArguments wall_type=WoodStud wall_assembly_r=10.3 +Insulation Wall "Wood Stud, R-11, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=15.3 +Insulation Wall "Wood Stud, R-13" ResStockArguments wall_type=WoodStud wall_assembly_r=11.3 +Insulation Wall "Wood Stud, R-13, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=16.3 +Insulation Wall "Wood Stud, R-15" ResStockArguments wall_type=WoodStud wall_assembly_r=12.1 +Insulation Wall "Wood Stud, R-15, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=17.1 +Insulation Wall "Wood Stud, R-19" ResStockArguments wall_type=WoodStud wall_assembly_r=15.4 +Insulation Wall "Wood Stud, R-19, Grade 2" ResStockArguments wall_type=WoodStud wall_assembly_r=14.5 +Insulation Wall "Wood Stud, R-19, Grade 2, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=19.5 +Insulation Wall "Wood Stud, R-19, Grade 3" ResStockArguments wall_type=WoodStud wall_assembly_r=13.4 +Insulation Wall "Wood Stud, R-19, Grade 3, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=18.4 +Insulation Wall "Wood Stud, R-19, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=20.4 +Insulation Wall "Wood Stud, R-23 Closed Cell Spray Foam, 2x4, 16 in o.c." ResStockArguments wall_type=WoodStud wall_assembly_r=14.7 +Insulation Wall "Wood Stud, R-23 Closed Cell Spray Foam, 2x4, 16 in o.c., R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=19.7 +Insulation Wall "Wood Stud, R-36" ResStockArguments wall_type=WoodStud wall_assembly_r=22.3 +Insulation Wall "Wood Stud, R-36, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=27.3 +Insulation Wall "Wood Stud, R-7" ResStockArguments wall_type=WoodStud wall_assembly_r=8.7 +Insulation Wall "Wood Stud, R-7, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=13.7 +Insulation Wall "Wood Stud, Uninsulated" ResStockArguments wall_type=WoodStud wall_assembly_r=3.4 +Insulation Wall "Wood Stud, Uninsulated, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=8.4 +Insulation Wall Void +Interior Shading "Summer = 0.5, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.5 window_interior_shading_winter=0.7 +Interior Shading "Summer = 0.5, Winter = 0.95" ResStockArguments window_interior_shading_summer=0.5 window_interior_shading_winter=0.95 +Interior Shading "Summer = 0.6, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.6 window_interior_shading_winter=0.7 +Interior Shading "Summer = 0.7, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.7 +Interior Shading "Summer = 0.7, Winter = 0.85" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.85 +Interior Shading "Summer = 0.7, Winter = 0.95" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.95 +Lighting 100% CFL ResStockArguments lighting_present=true lighting_interior_fraction_cfl=1 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=1 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=1 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 +Lighting 100% Incandescent ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 +Lighting 100% LED ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=1 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=1 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=1 +Lighting 20% LED ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0.2 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0.2 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0.2 +Lighting 60% CFL ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0.6 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0.6 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0.6 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 +Lighting None ResStockArguments lighting_present=false lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 +Lighting Interior Use 100% Usage ResStockArguments lighting_interior_usage_multiplier=1.0 +Lighting Interior Use 95% Usage ResStockArguments lighting_interior_usage_multiplier=0.95 +Lighting Interior Use None ResStockArguments lighting_interior_usage_multiplier=0.0 +Lighting Other Use 100% Usage ResStockArguments lighting_exterior_usage_multiplier=1.0 lighting_garage_usage_multiplier=1.0 +Lighting Other Use 95% Usage ResStockArguments lighting_exterior_usage_multiplier=0.95 lighting_garage_usage_multiplier=0.95 +Lighting Other Use None ResStockArguments lighting_exterior_usage_multiplier=0.0 lighting_garage_usage_multiplier=0.0 +Location Region CR02 +Location Region CR03 +Location Region CR04 +Location Region CR05 +Location Region CR06 +Location Region CR07 +Location Region CR08 +Location Region CR09 +Location Region CR10 +Location Region CR11 +Location Region CRAK +Location Region CRHI +Mechanical Ventilation "ERV, 72%" ResStockArguments mech_vent_fan_type=energy recovery ventilator mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0.48 mech_vent_sensible_recovery_efficiency=0.72 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Mechanical Ventilation "HRV, 60%" ResStockArguments mech_vent_fan_type=heat recovery ventilator mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0.6 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Mechanical Ventilation Exhaust ResStockArguments mech_vent_fan_type=exhaust only mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Mechanical Ventilation None ResStockArguments mech_vent_fan_type=none mech_vent_flow_rate=0 mech_vent_hours_in_operation=0 mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=0 mech_vent_num_units_served=0 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Mechanical Ventilation Supply ResStockArguments mech_vent_fan_type=supply only mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Metropolitan and Micropolitan Statistical Area "Aberdeen, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Aberdeen, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Abilene, TX MSA" +Metropolitan and Micropolitan Statistical Area "Ada, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Adrian, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Akron, OH MSA" +Metropolitan and Micropolitan Statistical Area "Alamogordo, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Albany, GA MSA" +Metropolitan and Micropolitan Statistical Area "Albany, OR MSA" +Metropolitan and Micropolitan Statistical Area "Albany-Schenectady-Troy, NY MSA" +Metropolitan and Micropolitan Statistical Area "Albemarle, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Albert Lea, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Albertville, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Albuquerque, NM MSA" +Metropolitan and Micropolitan Statistical Area "Alexandria, LA MSA" +Metropolitan and Micropolitan Statistical Area "Alexandria, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Alice, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Allentown-Bethlehem-Easton, PA-NJ MSA" +Metropolitan and Micropolitan Statistical Area "Alma, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Alpena, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Altoona, PA MSA" +Metropolitan and Micropolitan Statistical Area "Altus, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Amarillo, TX MSA" +Metropolitan and Micropolitan Statistical Area "Americus, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Ames, IA MSA" +Metropolitan and Micropolitan Statistical Area "Amsterdam, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Anchorage, AK MSA" +Metropolitan and Micropolitan Statistical Area "Andrews, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Angola, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Ann Arbor, MI MSA" +Metropolitan and Micropolitan Statistical Area "Anniston-Oxford-Jacksonville, AL MSA" +Metropolitan and Micropolitan Statistical Area "Appleton, WI MSA" +Metropolitan and Micropolitan Statistical Area "Arcadia, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Ardmore, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Arkadelphia, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Arkansas City-Winfield, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Asheville, NC MSA" +Metropolitan and Micropolitan Statistical Area "Ashland, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Ashtabula, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Astoria, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Atchison, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Athens, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Athens, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Athens, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Athens-Clarke County, GA MSA" +Metropolitan and Micropolitan Statistical Area "Atlanta-Sandy Springs-Roswell, GA MSA" +Metropolitan and Micropolitan Statistical Area "Atlantic City-Hammonton, NJ MSA" +Metropolitan and Micropolitan Statistical Area "Auburn, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Auburn, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Auburn-Opelika, AL MSA" +Metropolitan and Micropolitan Statistical Area "Augusta-Richmond County, GA-SC MSA" +Metropolitan and Micropolitan Statistical Area "Augusta-Waterville, ME MicroSA" +Metropolitan and Micropolitan Statistical Area "Austin, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Austin-Round Rock, TX MSA" +Metropolitan and Micropolitan Statistical Area "Bainbridge, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Bakersfield, CA MSA" +Metropolitan and Micropolitan Statistical Area "Baltimore-Columbia-Towson, MD MSA" +Metropolitan and Micropolitan Statistical Area "Bangor, ME MSA" +Metropolitan and Micropolitan Statistical Area "Baraboo, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Bardstown, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Barnstable Town, MA MSA" +Metropolitan and Micropolitan Statistical Area "Barre, VT MicroSA" +Metropolitan and Micropolitan Statistical Area "Bartlesville, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Bastrop, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Batavia, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Batesville, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Baton Rouge, LA MSA" +Metropolitan and Micropolitan Statistical Area "Battle Creek, MI MSA" +Metropolitan and Micropolitan Statistical Area "Bay City, MI MSA" +Metropolitan and Micropolitan Statistical Area "Bay City, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Beatrice, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Beaumont-Port Arthur, TX MSA" +Metropolitan and Micropolitan Statistical Area "Beaver Dam, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Beckley, WV MSA" +Metropolitan and Micropolitan Statistical Area "Bedford, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Beeville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Bellefontaine, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Bellingham, WA MSA" +Metropolitan and Micropolitan Statistical Area "Bemidji, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Bend-Redmond, OR MSA" +Metropolitan and Micropolitan Statistical Area "Bennettsville, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Bennington, VT MicroSA" +Metropolitan and Micropolitan Statistical Area "Berlin, NH-VT MicroSA" +Metropolitan and Micropolitan Statistical Area "Big Rapids, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Big Spring, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Big Stone Gap, VA MicroSA" +Metropolitan and Micropolitan Statistical Area "Billings, MT MSA" +Metropolitan and Micropolitan Statistical Area "Binghamton, NY MSA" +Metropolitan and Micropolitan Statistical Area "Birmingham-Hoover, AL MSA" +Metropolitan and Micropolitan Statistical Area "Bismarck, ND MSA" +Metropolitan and Micropolitan Statistical Area "Blackfoot, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Blacksburg-Christiansburg-Radford, VA MSA" +Metropolitan and Micropolitan Statistical Area "Bloomington, IL MSA" +Metropolitan and Micropolitan Statistical Area "Bloomington, IN MSA" +Metropolitan and Micropolitan Statistical Area "Bloomsburg-Berwick, PA MSA" +Metropolitan and Micropolitan Statistical Area "Bluefield, WV-VA MicroSA" +Metropolitan and Micropolitan Statistical Area "Blytheville, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Bogalusa, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Boise City, ID MSA" +Metropolitan and Micropolitan Statistical Area "Boone, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Boone, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Borger, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Boston-Cambridge-Newton, MA-NH MSA" +Metropolitan and Micropolitan Statistical Area "Boulder, CO MSA" +Metropolitan and Micropolitan Statistical Area "Bowling Green, KY MSA" +Metropolitan and Micropolitan Statistical Area "Bozeman, MT MicroSA" +Metropolitan and Micropolitan Statistical Area "Bradford, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Brainerd, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Branson, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Breckenridge, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Bremerton-Silverdale, WA MSA" +Metropolitan and Micropolitan Statistical Area "Brenham, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Brevard, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Bridgeport-Stamford-Norwalk, CT MSA" +Metropolitan and Micropolitan Statistical Area "Brookhaven, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Brookings, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Brookings, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Brownsville-Harlingen, TX MSA" +Metropolitan and Micropolitan Statistical Area "Brownwood, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Brunswick, GA MSA" +Metropolitan and Micropolitan Statistical Area "Bucyrus, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Buffalo-Cheektowaga-Niagara Falls, NY MSA" +Metropolitan and Micropolitan Statistical Area "Burley, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Burlington, IA-IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Burlington, NC MSA" +Metropolitan and Micropolitan Statistical Area "Burlington-South Burlington, VT MSA" +Metropolitan and Micropolitan Statistical Area "Butte-Silver Bow, MT MicroSA" +Metropolitan and Micropolitan Statistical Area "Cadillac, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Calhoun, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "California-Lexington Park, MD MSA" +Metropolitan and Micropolitan Statistical Area "Cambridge, MD MicroSA" +Metropolitan and Micropolitan Statistical Area "Cambridge, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Camden, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Campbellsville, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Canon City, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Canton, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Canton-Massillon, OH MSA" +Metropolitan and Micropolitan Statistical Area "Cape Coral-Fort Myers, FL MSA" +Metropolitan and Micropolitan Statistical Area "Cape Girardeau, MO-IL MSA" +Metropolitan and Micropolitan Statistical Area "Carbondale-Marion, IL MSA" +Metropolitan and Micropolitan Statistical Area "Carlsbad-Artesia, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Carson City, NV MSA" +Metropolitan and Micropolitan Statistical Area "Casper, WY MSA" +Metropolitan and Micropolitan Statistical Area "Cedar City, UT MicroSA" +Metropolitan and Micropolitan Statistical Area "Cedar Rapids, IA MSA" +Metropolitan and Micropolitan Statistical Area "Cedartown, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Celina, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Centralia, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Centralia, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Chambersburg-Waynesboro, PA MSA" +Metropolitan and Micropolitan Statistical Area "Champaign-Urbana, IL MSA" +Metropolitan and Micropolitan Statistical Area "Charleston, WV MSA" +Metropolitan and Micropolitan Statistical Area "Charleston-Mattoon, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Charleston-North Charleston, SC MSA" +Metropolitan and Micropolitan Statistical Area "Charlotte-Concord-Gastonia, NC-SC MSA" +Metropolitan and Micropolitan Statistical Area "Charlottesville, VA MSA" +Metropolitan and Micropolitan Statistical Area "Chattanooga, TN-GA MSA" +Metropolitan and Micropolitan Statistical Area "Cheyenne, WY MSA" +Metropolitan and Micropolitan Statistical Area "Chicago-Naperville-Elgin, IL-IN-WI MSA" +Metropolitan and Micropolitan Statistical Area "Chico, CA MSA" +Metropolitan and Micropolitan Statistical Area "Chillicothe, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Cincinnati, OH-KY-IN MSA" +Metropolitan and Micropolitan Statistical Area "Claremont-Lebanon, NH-VT MicroSA" +Metropolitan and Micropolitan Statistical Area "Clarksburg, WV MicroSA" +Metropolitan and Micropolitan Statistical Area "Clarksdale, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Clarksville, TN-KY MSA" +Metropolitan and Micropolitan Statistical Area "Clearlake, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Cleveland, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Cleveland, TN MSA" +Metropolitan and Micropolitan Statistical Area "Cleveland-Elyria, OH MSA" +Metropolitan and Micropolitan Statistical Area "Clewiston, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Clinton, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Clovis, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Coeur d'Alene, ID MSA" +Metropolitan and Micropolitan Statistical Area "Coffeyville, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Coldwater, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "College Station-Bryan, TX MSA" +Metropolitan and Micropolitan Statistical Area "Colorado Springs, CO MSA" +Metropolitan and Micropolitan Statistical Area "Columbia, MO MSA" +Metropolitan and Micropolitan Statistical Area "Columbia, SC MSA" +Metropolitan and Micropolitan Statistical Area "Columbus, GA-AL MSA" +Metropolitan and Micropolitan Statistical Area "Columbus, IN MSA" +Metropolitan and Micropolitan Statistical Area "Columbus, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Columbus, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Columbus, OH MSA" +Metropolitan and Micropolitan Statistical Area "Concord, NH MicroSA" +Metropolitan and Micropolitan Statistical Area "Connersville, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Cookeville, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Coos Bay, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Cordele, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Corinth, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Cornelia, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Corning, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Corpus Christi, TX MSA" +Metropolitan and Micropolitan Statistical Area "Corsicana, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Cortland, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Corvallis, OR MSA" +Metropolitan and Micropolitan Statistical Area "Coshocton, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Craig, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Crawfordsville, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Crescent City, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Crestview-Fort Walton Beach-Destin, FL MSA" +Metropolitan and Micropolitan Statistical Area "Crossville, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Cullman, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Cullowhee, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Cumberland, MD-WV MSA" +Metropolitan and Micropolitan Statistical Area "Dallas-Fort Worth-Arlington, TX MSA" +Metropolitan and Micropolitan Statistical Area "Dalton, GA MSA" +Metropolitan and Micropolitan Statistical Area "Danville, IL MSA" +Metropolitan and Micropolitan Statistical Area "Danville, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Danville, VA MicroSA" +Metropolitan and Micropolitan Statistical Area "Daphne-Fairhope-Foley, AL MSA" +Metropolitan and Micropolitan Statistical Area "Davenport-Moline-Rock Island, IA-IL MSA" +Metropolitan and Micropolitan Statistical Area "Dayton, OH MSA" +Metropolitan and Micropolitan Statistical Area "Dayton, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "DeRidder, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Decatur, AL MSA" +Metropolitan and Micropolitan Statistical Area "Decatur, IL MSA" +Metropolitan and Micropolitan Statistical Area "Decatur, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Defiance, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Del Rio, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Deltona-Daytona Beach-Ormond Beach, FL MSA" +Metropolitan and Micropolitan Statistical Area "Deming, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Denver-Aurora-Lakewood, CO MSA" +Metropolitan and Micropolitan Statistical Area "Des Moines-West Des Moines, IA MSA" +Metropolitan and Micropolitan Statistical Area "Detroit-Warren-Dearborn, MI MSA" +Metropolitan and Micropolitan Statistical Area "Dickinson, ND MicroSA" +Metropolitan and Micropolitan Statistical Area "Dixon, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Dodge City, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Dothan, AL MSA" +Metropolitan and Micropolitan Statistical Area "Douglas, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Dover, DE MSA" +Metropolitan and Micropolitan Statistical Area "DuBois, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Dublin, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Dubuque, IA MSA" +Metropolitan and Micropolitan Statistical Area "Duluth, MN-WI MSA" +Metropolitan and Micropolitan Statistical Area "Dumas, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Duncan, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Dunn, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Durango, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Durant, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Durham-Chapel Hill, NC MSA" +Metropolitan and Micropolitan Statistical Area "Dyersburg, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Eagle Pass, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "East Stroudsburg, PA MSA" +Metropolitan and Micropolitan Statistical Area "Easton, MD MicroSA" +Metropolitan and Micropolitan Statistical Area "Eau Claire, WI MSA" +Metropolitan and Micropolitan Statistical Area "Edwards, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Effingham, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "El Campo, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "El Centro, CA MSA" +Metropolitan and Micropolitan Statistical Area "El Dorado, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "El Paso, TX MSA" +Metropolitan and Micropolitan Statistical Area "Elizabeth City, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Elizabethtown-Fort Knox, KY MSA" +Metropolitan and Micropolitan Statistical Area "Elk City, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Elkhart-Goshen, IN MSA" +Metropolitan and Micropolitan Statistical Area "Elkins, WV MicroSA" +Metropolitan and Micropolitan Statistical Area "Elko, NV MicroSA" +Metropolitan and Micropolitan Statistical Area "Ellensburg, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Elmira, NY MSA" +Metropolitan and Micropolitan Statistical Area "Emporia, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Enid, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Enterprise, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Erie, PA MSA" +Metropolitan and Micropolitan Statistical Area "Escanaba, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Espanola, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Eugene, OR MSA" +Metropolitan and Micropolitan Statistical Area "Eureka-Arcata-Fortuna, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Evanston, WY MicroSA" +Metropolitan and Micropolitan Statistical Area "Evansville, IN-KY MSA" +Metropolitan and Micropolitan Statistical Area "Fairbanks, AK MSA" +Metropolitan and Micropolitan Statistical Area "Fairfield, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Fairmont, WV MicroSA" +Metropolitan and Micropolitan Statistical Area "Fallon, NV MicroSA" +Metropolitan and Micropolitan Statistical Area "Fargo, ND-MN MSA" +Metropolitan and Micropolitan Statistical Area "Faribault-Northfield, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Farmington, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Farmington, NM MSA" +Metropolitan and Micropolitan Statistical Area "Fayetteville, NC MSA" +Metropolitan and Micropolitan Statistical Area "Fayetteville-Springdale-Rogers, AR-MO MSA" +Metropolitan and Micropolitan Statistical Area "Fergus Falls, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Fernley, NV MicroSA" +Metropolitan and Micropolitan Statistical Area "Findlay, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Fitzgerald, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Flagstaff, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Flint, MI MSA" +Metropolitan and Micropolitan Statistical Area "Florence, SC MSA" +Metropolitan and Micropolitan Statistical Area "Florence-Muscle Shoals, AL MSA" +Metropolitan and Micropolitan Statistical Area "Fond du Lac, WI MSA" +Metropolitan and Micropolitan Statistical Area "Forest City, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Forrest City, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Fort Collins, CO MSA" +Metropolitan and Micropolitan Statistical Area "Fort Dodge, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Fort Leonard Wood, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Fort Madison-Keokuk, IA-IL-MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Fort Morgan, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Fort Polk South, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Fort Smith, AR-OK MSA" +Metropolitan and Micropolitan Statistical Area "Fort Wayne, IN MSA" +Metropolitan and Micropolitan Statistical Area "Frankfort, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Frankfort, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Fredericksburg, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Freeport, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Fremont, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Fremont, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Fresno, CA MSA" +Metropolitan and Micropolitan Statistical Area "Gadsden, AL MSA" +Metropolitan and Micropolitan Statistical Area "Gaffney, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Gainesville, FL MSA" +Metropolitan and Micropolitan Statistical Area "Gainesville, GA MSA" +Metropolitan and Micropolitan Statistical Area "Gainesville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Galesburg, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Gallup, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Garden City, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Gardnerville Ranchos, NV MicroSA" +Metropolitan and Micropolitan Statistical Area "Georgetown, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Gettysburg, PA MSA" +Metropolitan and Micropolitan Statistical Area "Gillette, WY MicroSA" +Metropolitan and Micropolitan Statistical Area "Glasgow, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Glens Falls, NY MSA" +Metropolitan and Micropolitan Statistical Area "Glenwood Springs, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Gloversville, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Goldsboro, NC MSA" +Metropolitan and Micropolitan Statistical Area "Grand Forks, ND-MN MSA" +Metropolitan and Micropolitan Statistical Area "Grand Island, NE MSA" +Metropolitan and Micropolitan Statistical Area "Grand Junction, CO MSA" +Metropolitan and Micropolitan Statistical Area "Grand Rapids-Wyoming, MI MSA" +Metropolitan and Micropolitan Statistical Area "Grants Pass, OR MSA" +Metropolitan and Micropolitan Statistical Area "Grants, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Great Bend, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Great Falls, MT MSA" +Metropolitan and Micropolitan Statistical Area "Greeley, CO MSA" +Metropolitan and Micropolitan Statistical Area "Green Bay, WI MSA" +Metropolitan and Micropolitan Statistical Area "Greeneville, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Greenfield Town, MA MicroSA" +Metropolitan and Micropolitan Statistical Area "Greensboro-High Point, NC MSA" +Metropolitan and Micropolitan Statistical Area "Greensburg, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Greenville, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Greenville, NC MSA" +Metropolitan and Micropolitan Statistical Area "Greenville, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Greenville-Anderson-Mauldin, SC MSA" +Metropolitan and Micropolitan Statistical Area "Greenwood, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Greenwood, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Grenada, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Gulfport-Biloxi-Pascagoula, MS MSA" +Metropolitan and Micropolitan Statistical Area "Guymon, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Hagerstown-Martinsburg, MD-WV MSA" +Metropolitan and Micropolitan Statistical Area "Hailey, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Hammond, LA MSA" +Metropolitan and Micropolitan Statistical Area "Hanford-Corcoran, CA MSA" +Metropolitan and Micropolitan Statistical Area "Hannibal, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Harrisburg-Carlisle, PA MSA" +Metropolitan and Micropolitan Statistical Area "Harrison, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Harrisonburg, VA MSA" +Metropolitan and Micropolitan Statistical Area "Hartford-West Hartford-East Hartford, CT MSA" +Metropolitan and Micropolitan Statistical Area "Hastings, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Hattiesburg, MS MSA" +Metropolitan and Micropolitan Statistical Area "Hays, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Heber, UT MicroSA" +Metropolitan and Micropolitan Statistical Area "Helena, MT MicroSA" +Metropolitan and Micropolitan Statistical Area "Helena-West Helena, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Henderson, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Hereford, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Hermiston-Pendleton, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Hickory-Lenoir-Morganton, NC MSA" +Metropolitan and Micropolitan Statistical Area "Hillsdale, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Hilo, HI MicroSA" +Metropolitan and Micropolitan Statistical Area "Hilton Head Island-Bluffton-Beaufort, SC MSA" +Metropolitan and Micropolitan Statistical Area "Hinesville, GA MSA" +Metropolitan and Micropolitan Statistical Area "Hobbs, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Holland, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Homosassa Springs, FL MSA" +Metropolitan and Micropolitan Statistical Area "Hood River, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Hot Springs, AR MSA" +Metropolitan and Micropolitan Statistical Area "Houghton, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Houma-Thibodaux, LA MSA" +Metropolitan and Micropolitan Statistical Area "Houston-The Woodlands-Sugar Land, TX MSA" +Metropolitan and Micropolitan Statistical Area "Hudson, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Huntingdon, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Huntington, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Huntington-Ashland, WV-KY-OH MSA" +Metropolitan and Micropolitan Statistical Area "Huntsville, AL MSA" +Metropolitan and Micropolitan Statistical Area "Huntsville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Huron, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Hutchinson, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Hutchinson, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Idaho Falls, ID MSA" +Metropolitan and Micropolitan Statistical Area "Indiana, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Indianapolis-Carmel-Anderson, IN MSA" +Metropolitan and Micropolitan Statistical Area "Indianola, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Ionia, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Iowa City, IA MSA" +Metropolitan and Micropolitan Statistical Area "Iron Mountain, MI-WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Ithaca, NY MSA" +Metropolitan and Micropolitan Statistical Area "Jackson, MI MSA" +Metropolitan and Micropolitan Statistical Area "Jackson, MS MSA" +Metropolitan and Micropolitan Statistical Area "Jackson, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Jackson, TN MSA" +Metropolitan and Micropolitan Statistical Area "Jackson, WY-ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Jacksonville, FL MSA" +Metropolitan and Micropolitan Statistical Area "Jacksonville, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Jacksonville, NC MSA" +Metropolitan and Micropolitan Statistical Area "Jacksonville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Jamestown, ND MicroSA" +Metropolitan and Micropolitan Statistical Area "Jamestown-Dunkirk-Fredonia, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Janesville-Beloit, WI MSA" +Metropolitan and Micropolitan Statistical Area "Jasper, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Jefferson City, MO MSA" +Metropolitan and Micropolitan Statistical Area "Jefferson, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Jesup, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Johnson City, TN MSA" +Metropolitan and Micropolitan Statistical Area "Johnstown, PA MSA" +Metropolitan and Micropolitan Statistical Area "Jonesboro, AR MSA" +Metropolitan and Micropolitan Statistical Area "Joplin, MO MSA" +Metropolitan and Micropolitan Statistical Area "Junction City, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Juneau, AK MicroSA" +Metropolitan and Micropolitan Statistical Area "Kahului-Wailuku-Lahaina, HI MSA" +Metropolitan and Micropolitan Statistical Area "Kalamazoo-Portage, MI MSA" +Metropolitan and Micropolitan Statistical Area "Kalispell, MT MicroSA" +Metropolitan and Micropolitan Statistical Area "Kankakee, IL MSA" +Metropolitan and Micropolitan Statistical Area "Kansas City, MO-KS MSA" +Metropolitan and Micropolitan Statistical Area "Kapaa, HI MicroSA" +Metropolitan and Micropolitan Statistical Area "Kearney, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Keene, NH MicroSA" +Metropolitan and Micropolitan Statistical Area "Kendallville, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Kennett, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Kennewick-Richland, WA MSA" +Metropolitan and Micropolitan Statistical Area "Kerrville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Ketchikan, AK MicroSA" +Metropolitan and Micropolitan Statistical Area "Key West, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Kill Devil Hills, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Killeen-Temple, TX MSA" +Metropolitan and Micropolitan Statistical Area "Kingsport-Bristol-Bristol, TN-VA MSA" +Metropolitan and Micropolitan Statistical Area "Kingston, NY MSA" +Metropolitan and Micropolitan Statistical Area "Kingsville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Kinston, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Kirksville, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Klamath Falls, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Knoxville, TN MSA" +Metropolitan and Micropolitan Statistical Area "Kokomo, IN MSA" +Metropolitan and Micropolitan Statistical Area "La Crosse-Onalaska, WI-MN MSA" +Metropolitan and Micropolitan Statistical Area "La Grande, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "LaGrange, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Laconia, NH MicroSA" +Metropolitan and Micropolitan Statistical Area "Lafayette, LA MSA" +Metropolitan and Micropolitan Statistical Area "Lafayette-West Lafayette, IN MSA" +Metropolitan and Micropolitan Statistical Area "Lake Charles, LA MSA" +Metropolitan and Micropolitan Statistical Area "Lake City, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Lake Havasu City-Kingman, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Lakeland-Winter Haven, FL MSA" +Metropolitan and Micropolitan Statistical Area "Lamesa, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Lancaster, PA MSA" +Metropolitan and Micropolitan Statistical Area "Lansing-East Lansing, MI MSA" +Metropolitan and Micropolitan Statistical Area "Laramie, WY MicroSA" +Metropolitan and Micropolitan Statistical Area "Laredo, TX MSA" +Metropolitan and Micropolitan Statistical Area "Las Cruces, NM MSA" +Metropolitan and Micropolitan Statistical Area "Las Vegas, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Las Vegas-Henderson-Paradise, NV MSA" +Metropolitan and Micropolitan Statistical Area "Laurel, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Laurinburg, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Lawrence, KS MSA" +Metropolitan and Micropolitan Statistical Area "Lawrenceburg, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Lawton, OK MSA" +Metropolitan and Micropolitan Statistical Area "Lebanon, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Lebanon, PA MSA" +Metropolitan and Micropolitan Statistical Area "Levelland, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Lewisburg, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Lewisburg, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Lewiston, ID-WA MSA" +Metropolitan and Micropolitan Statistical Area "Lewiston-Auburn, ME MSA" +Metropolitan and Micropolitan Statistical Area "Lewistown, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Lexington, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Lexington-Fayette, KY MSA" +Metropolitan and Micropolitan Statistical Area "Liberal, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Lima, OH MSA" +Metropolitan and Micropolitan Statistical Area "Lincoln, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Lincoln, NE MSA" +Metropolitan and Micropolitan Statistical Area "Little Rock-North Little Rock-Conway, AR MSA" +Metropolitan and Micropolitan Statistical Area "Lock Haven, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Logan, UT-ID MSA" +Metropolitan and Micropolitan Statistical Area "Logan, WV MicroSA" +Metropolitan and Micropolitan Statistical Area "Logansport, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "London, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Longview, TX MSA" +Metropolitan and Micropolitan Statistical Area "Longview, WA MSA" +Metropolitan and Micropolitan Statistical Area "Los Alamos, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Los Angeles-Long Beach-Anaheim, CA MSA" +Metropolitan and Micropolitan Statistical Area "Louisville/Jefferson County, KY-IN MSA" +Metropolitan and Micropolitan Statistical Area "Lubbock, TX MSA" +Metropolitan and Micropolitan Statistical Area "Ludington, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Lufkin, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Lumberton, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Lynchburg, VA MSA" +Metropolitan and Micropolitan Statistical Area "Macomb, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Macon, GA MSA" +Metropolitan and Micropolitan Statistical Area "Madera, CA MSA" +Metropolitan and Micropolitan Statistical Area "Madison, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Madison, WI MSA" +Metropolitan and Micropolitan Statistical Area "Madisonville, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Magnolia, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Malone, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Malvern, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Manchester-Nashua, NH MSA" +Metropolitan and Micropolitan Statistical Area "Manhattan, KS MSA" +Metropolitan and Micropolitan Statistical Area "Manitowoc, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Mankato-North Mankato, MN MSA" +Metropolitan and Micropolitan Statistical Area "Mansfield, OH MSA" +Metropolitan and Micropolitan Statistical Area "Marietta, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Marinette, WI-MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Marion, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Marion, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Marion, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Marquette, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Marshall, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Marshall, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Marshall, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Marshalltown, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Martin, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Martinsville, VA MicroSA" +Metropolitan and Micropolitan Statistical Area "Maryville, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Mason City, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Mayfield, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Maysville, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "McAlester, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "McAllen-Edinburg-Mission, TX MSA" +Metropolitan and Micropolitan Statistical Area "McComb, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "McMinnville, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "McPherson, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Meadville, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Medford, OR MSA" +Metropolitan and Micropolitan Statistical Area "Memphis, TN-MS-AR MSA" +Metropolitan and Micropolitan Statistical Area "Menomonie, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Merced, CA MSA" +Metropolitan and Micropolitan Statistical Area "Meridian, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Merrill, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Mexico, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Miami, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Miami-Fort Lauderdale-West Palm Beach, FL MSA" +Metropolitan and Micropolitan Statistical Area "Michigan City-La Porte, IN MSA" +Metropolitan and Micropolitan Statistical Area "Middlesborough, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Midland, MI MSA" +Metropolitan and Micropolitan Statistical Area "Midland, TX MSA" +Metropolitan and Micropolitan Statistical Area "Milledgeville, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Milwaukee-Waukesha-West Allis, WI MSA" +Metropolitan and Micropolitan Statistical Area "Mineral Wells, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Minneapolis-St. Paul-Bloomington, MN-WI MSA" +Metropolitan and Micropolitan Statistical Area "Minot, ND MicroSA" +Metropolitan and Micropolitan Statistical Area "Missoula, MT MSA" +Metropolitan and Micropolitan Statistical Area "Mitchell, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Moberly, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Mobile, AL MSA" +Metropolitan and Micropolitan Statistical Area "Modesto, CA MSA" +Metropolitan and Micropolitan Statistical Area "Monroe, LA MSA" +Metropolitan and Micropolitan Statistical Area "Monroe, MI MSA" +Metropolitan and Micropolitan Statistical Area "Montgomery, AL MSA" +Metropolitan and Micropolitan Statistical Area "Montrose, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Morehead City, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Morgan City, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Morgantown, WV MSA" +Metropolitan and Micropolitan Statistical Area "Morristown, TN MSA" +Metropolitan and Micropolitan Statistical Area "Moscow, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Moses Lake, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Moultrie, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Airy, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Pleasant, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Pleasant, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Sterling, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Vernon, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Vernon, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Vernon-Anacortes, WA MSA" +Metropolitan and Micropolitan Statistical Area "Mountain Home, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Mountain Home, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Muncie, IN MSA" +Metropolitan and Micropolitan Statistical Area "Murray, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Muscatine, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Muskegon, MI MSA" +Metropolitan and Micropolitan Statistical Area "Muskogee, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Myrtle Beach-Conway-North Myrtle Beach, SC-NC MSA" +Metropolitan and Micropolitan Statistical Area "Nacogdoches, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Napa, CA MSA" +Metropolitan and Micropolitan Statistical Area "Naples-Immokalee-Marco Island, FL MSA" +Metropolitan and Micropolitan Statistical Area "Nashville-Davidson--Murfreesboro--Franklin, TN MSA" +Metropolitan and Micropolitan Statistical Area "Natchez, MS-LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Natchitoches, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "New Bern, NC MSA" +Metropolitan and Micropolitan Statistical Area "New Castle, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "New Castle, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "New Haven-Milford, CT MSA" +Metropolitan and Micropolitan Statistical Area "New Orleans-Metairie, LA MSA" +Metropolitan and Micropolitan Statistical Area "New Philadelphia-Dover, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "New Ulm, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "New York-Newark-Jersey City, NY-NJ-PA MSA" +Metropolitan and Micropolitan Statistical Area "Newberry, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Newport, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Newport, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Newton, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Niles-Benton Harbor, MI MSA" +Metropolitan and Micropolitan Statistical Area "Nogales, AZ MicroSA" +Metropolitan and Micropolitan Statistical Area "Norfolk, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "North Platte, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "North Port-Sarasota-Bradenton, FL MSA" +Metropolitan and Micropolitan Statistical Area "North Vernon, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "North Wilkesboro, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Norwalk, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Norwich-New London, CT MSA" +Metropolitan and Micropolitan Statistical Area "Oak Harbor, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Ocala, FL MSA" +Metropolitan and Micropolitan Statistical Area "Ocean City, NJ MSA" +Metropolitan and Micropolitan Statistical Area "Odessa, TX MSA" +Metropolitan and Micropolitan Statistical Area "Ogden-Clearfield, UT MSA" +Metropolitan and Micropolitan Statistical Area "Ogdensburg-Massena, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Oil City, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Okeechobee, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Oklahoma City, OK MSA" +Metropolitan and Micropolitan Statistical Area "Olean, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Olympia-Tumwater, WA MSA" +Metropolitan and Micropolitan Statistical Area "Omaha-Council Bluffs, NE-IA MSA" +Metropolitan and Micropolitan Statistical Area "Oneonta, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Ontario, OR-ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Opelousas, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Orangeburg, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Orlando-Kissimmee-Sanford, FL MSA" +Metropolitan and Micropolitan Statistical Area "Oshkosh-Neenah, WI MSA" +Metropolitan and Micropolitan Statistical Area "Oskaloosa, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Othello, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Ottawa, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Ottawa-Peru, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Ottumwa, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Owatonna, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Owensboro, KY MSA" +Metropolitan and Micropolitan Statistical Area "Owosso, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Oxford, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Oxford, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Oxnard-Thousand Oaks-Ventura, CA MSA" +Metropolitan and Micropolitan Statistical Area "Ozark, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Paducah, KY-IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Pahrump, NV MicroSA" +Metropolitan and Micropolitan Statistical Area "Palatka, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Palestine, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Palm Bay-Melbourne-Titusville, FL MSA" +Metropolitan and Micropolitan Statistical Area "Pampa, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Panama City, FL MSA" +Metropolitan and Micropolitan Statistical Area "Paragould, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Paris, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Paris, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Parkersburg-Vienna, WV MSA" +Metropolitan and Micropolitan Statistical Area "Parsons, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Payson, AZ MicroSA" +Metropolitan and Micropolitan Statistical Area "Pecos, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Pensacola-Ferry Pass-Brent, FL MSA" +Metropolitan and Micropolitan Statistical Area "Peoria, IL MSA" +Metropolitan and Micropolitan Statistical Area "Peru, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Philadelphia-Camden-Wilmington, PA-NJ-DE-MD MSA" +Metropolitan and Micropolitan Statistical Area "Phoenix-Mesa-Scottsdale, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Picayune, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Pierre, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Pine Bluff, AR MSA" +Metropolitan and Micropolitan Statistical Area "Pinehurst-Southern Pines, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Pittsburg, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Pittsburgh, PA MSA" +Metropolitan and Micropolitan Statistical Area "Pittsfield, MA MSA" +Metropolitan and Micropolitan Statistical Area "Plainview, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Platteville, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Plattsburgh, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Plymouth, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Pocatello, ID MSA" +Metropolitan and Micropolitan Statistical Area "Point Pleasant, WV-OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Ponca City, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Pontiac, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Poplar Bluff, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Port Angeles, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Port Clinton, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Port Lavaca, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Port St. Lucie, FL MSA" +Metropolitan and Micropolitan Statistical Area "Portales, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Portland-South Portland, ME MSA" +Metropolitan and Micropolitan Statistical Area "Portland-Vancouver-Hillsboro, OR-WA MSA" +Metropolitan and Micropolitan Statistical Area "Portsmouth, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Pottsville, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Prescott, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Price, UT MicroSA" +Metropolitan and Micropolitan Statistical Area "Prineville, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Providence-Warwick, RI-MA MSA" +Metropolitan and Micropolitan Statistical Area "Provo-Orem, UT MSA" +Metropolitan and Micropolitan Statistical Area "Pueblo, CO MSA" +Metropolitan and Micropolitan Statistical Area "Pullman, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Punta Gorda, FL MSA" +Metropolitan and Micropolitan Statistical Area "Quincy, IL-MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Racine, WI MSA" +Metropolitan and Micropolitan Statistical Area "Raleigh, NC MSA" +Metropolitan and Micropolitan Statistical Area "Rapid City, SD MSA" +Metropolitan and Micropolitan Statistical Area "Raymondville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Reading, PA MSA" +Metropolitan and Micropolitan Statistical Area "Red Bluff, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Red Wing, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Redding, CA MSA" +Metropolitan and Micropolitan Statistical Area "Reno, NV MSA" +Metropolitan and Micropolitan Statistical Area "Rexburg, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Richmond, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Richmond, VA MSA" +Metropolitan and Micropolitan Statistical Area "Richmond-Berea, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Rio Grande City, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Riverside-San Bernardino-Ontario, CA MSA" +Metropolitan and Micropolitan Statistical Area "Riverton, WY MicroSA" +Metropolitan and Micropolitan Statistical Area "Roanoke Rapids, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Roanoke, VA MSA" +Metropolitan and Micropolitan Statistical Area "Rochelle, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Rochester, MN MSA" +Metropolitan and Micropolitan Statistical Area "Rochester, NY MSA" +Metropolitan and Micropolitan Statistical Area "Rock Springs, WY MicroSA" +Metropolitan and Micropolitan Statistical Area "Rockford, IL MSA" +Metropolitan and Micropolitan Statistical Area "Rockingham, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Rocky Mount, NC MSA" +Metropolitan and Micropolitan Statistical Area "Rolla, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Rome, GA MSA" +Metropolitan and Micropolitan Statistical Area "Roseburg, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Roswell, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Russellville, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Ruston, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Rutland, VT MicroSA" +Metropolitan and Micropolitan Statistical Area "Sacramento--Roseville--Arden-Arcade, CA MSA" +Metropolitan and Micropolitan Statistical Area "Safford, AZ MicroSA" +Metropolitan and Micropolitan Statistical Area "Saginaw, MI MSA" +Metropolitan and Micropolitan Statistical Area "Salem, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Salem, OR MSA" +Metropolitan and Micropolitan Statistical Area "Salina, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Salinas, CA MSA" +Metropolitan and Micropolitan Statistical Area "Salisbury, MD-DE MSA" +Metropolitan and Micropolitan Statistical Area "Salt Lake City, UT MSA" +Metropolitan and Micropolitan Statistical Area "San Angelo, TX MSA" +Metropolitan and Micropolitan Statistical Area "San Antonio-New Braunfels, TX MSA" +Metropolitan and Micropolitan Statistical Area "San Diego-Carlsbad, CA MSA" +Metropolitan and Micropolitan Statistical Area "San Francisco-Oakland-Hayward, CA MSA" +Metropolitan and Micropolitan Statistical Area "San Jose-Sunnyvale-Santa Clara, CA MSA" +Metropolitan and Micropolitan Statistical Area "San Luis Obispo-Paso Robles-Arroyo Grande, CA MSA" +Metropolitan and Micropolitan Statistical Area "Sandpoint, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Sandusky, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Sanford, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Santa Cruz-Watsonville, CA MSA" +Metropolitan and Micropolitan Statistical Area "Santa Fe, NM MSA" +Metropolitan and Micropolitan Statistical Area "Santa Maria-Santa Barbara, CA MSA" +Metropolitan and Micropolitan Statistical Area "Santa Rosa, CA MSA" +Metropolitan and Micropolitan Statistical Area "Sault Ste. Marie, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Savannah, GA MSA" +Metropolitan and Micropolitan Statistical Area "Sayre, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Scottsbluff, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Scottsboro, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Scranton--Wilkes-Barre--Hazleton, PA MSA" +Metropolitan and Micropolitan Statistical Area "Searcy, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Seattle-Tacoma-Bellevue, WA MSA" +Metropolitan and Micropolitan Statistical Area "Sebastian-Vero Beach, FL MSA" +Metropolitan and Micropolitan Statistical Area "Sebring, FL MSA" +Metropolitan and Micropolitan Statistical Area "Sedalia, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Selinsgrove, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Selma, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Seneca Falls, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Seneca, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Sevierville, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Seymour, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Shawano, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Shawnee, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Sheboygan, WI MSA" +Metropolitan and Micropolitan Statistical Area "Shelby, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Shelbyville, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Shelton, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Sheridan, WY MicroSA" +Metropolitan and Micropolitan Statistical Area "Sherman-Denison, TX MSA" +Metropolitan and Micropolitan Statistical Area "Show Low, AZ MicroSA" +Metropolitan and Micropolitan Statistical Area "Shreveport-Bossier City, LA MSA" +Metropolitan and Micropolitan Statistical Area "Sidney, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Sierra Vista-Douglas, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Sikeston, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Silver City, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Sioux City, IA-NE-SD MSA" +Metropolitan and Micropolitan Statistical Area "Sioux Falls, SD MSA" +Metropolitan and Micropolitan Statistical Area "Snyder, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Somerset, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Somerset, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Sonora, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "South Bend-Mishawaka, IN-MI MSA" +Metropolitan and Micropolitan Statistical Area "Spartanburg, SC MSA" +Metropolitan and Micropolitan Statistical Area "Spearfish, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Spencer, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Spirit Lake, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Spokane-Spokane Valley, WA MSA" +Metropolitan and Micropolitan Statistical Area "Springfield, IL MSA" +Metropolitan and Micropolitan Statistical Area "Springfield, MA MSA" +Metropolitan and Micropolitan Statistical Area "Springfield, MO MSA" +Metropolitan and Micropolitan Statistical Area "Springfield, OH MSA" +Metropolitan and Micropolitan Statistical Area "St. Cloud, MN MSA" +Metropolitan and Micropolitan Statistical Area "St. George, UT MSA" +Metropolitan and Micropolitan Statistical Area "St. Joseph, MO-KS MSA" +Metropolitan and Micropolitan Statistical Area "St. Louis, MO-IL MSA" +Metropolitan and Micropolitan Statistical Area "St. Marys, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Starkville, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "State College, PA MSA" +Metropolitan and Micropolitan Statistical Area "Statesboro, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Staunton-Waynesboro, VA MSA" +Metropolitan and Micropolitan Statistical Area "Steamboat Springs, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Stephenville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Sterling, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Sterling, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Stevens Point, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Stillwater, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Stockton-Lodi, CA MSA" +Metropolitan and Micropolitan Statistical Area "Storm Lake, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Sturgis, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Sulphur Springs, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Summerville, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Summit Park, UT MicroSA" +Metropolitan and Micropolitan Statistical Area "Sumter, SC MSA" +Metropolitan and Micropolitan Statistical Area "Sunbury, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Susanville, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Sweetwater, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Syracuse, NY MSA" +Metropolitan and Micropolitan Statistical Area "Tahlequah, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Talladega-Sylacauga, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Tallahassee, FL MSA" +Metropolitan and Micropolitan Statistical Area "Tampa-St. Petersburg-Clearwater, FL MSA" +Metropolitan and Micropolitan Statistical Area "Taos, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Taylorville, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Terre Haute, IN MSA" +Metropolitan and Micropolitan Statistical Area "Texarkana, TX-AR MSA" +Metropolitan and Micropolitan Statistical Area "The Dalles, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "The Villages, FL MSA" +Metropolitan and Micropolitan Statistical Area "Thomaston, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Thomasville, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Tiffin, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Tifton, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Toccoa, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Toledo, OH MSA" +Metropolitan and Micropolitan Statistical Area "Topeka, KS MSA" +Metropolitan and Micropolitan Statistical Area "Torrington, CT MicroSA" +Metropolitan and Micropolitan Statistical Area "Traverse City, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Trenton, NJ MSA" +Metropolitan and Micropolitan Statistical Area "Troy, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Truckee-Grass Valley, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Tucson, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Tullahoma-Manchester, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Tulsa, OK MSA" +Metropolitan and Micropolitan Statistical Area "Tupelo, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Tuscaloosa, AL MSA" +Metropolitan and Micropolitan Statistical Area "Twin Falls, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Tyler, TX MSA" +Metropolitan and Micropolitan Statistical Area "Ukiah, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Union City, TN-KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Urban Honolulu, HI MSA" +Metropolitan and Micropolitan Statistical Area "Urbana, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Utica-Rome, NY MSA" +Metropolitan and Micropolitan Statistical Area "Uvalde, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Valdosta, GA MSA" +Metropolitan and Micropolitan Statistical Area "Vallejo-Fairfield, CA MSA" +Metropolitan and Micropolitan Statistical Area "Valley, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Van Wert, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Vermillion, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Vernal, UT MicroSA" +Metropolitan and Micropolitan Statistical Area "Vernon, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Vicksburg, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Victoria, TX MSA" +Metropolitan and Micropolitan Statistical Area "Vidalia, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Vincennes, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Vineland-Bridgeton, NJ MSA" +Metropolitan and Micropolitan Statistical Area "Vineyard Haven, MA MicroSA" +Metropolitan and Micropolitan Statistical Area "Virginia Beach-Norfolk-Newport News, VA-NC MSA" +Metropolitan and Micropolitan Statistical Area "Visalia-Porterville, CA MSA" +Metropolitan and Micropolitan Statistical Area "Wabash, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Waco, TX MSA" +Metropolitan and Micropolitan Statistical Area "Wahpeton, ND-MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Walla Walla, WA MSA" +Metropolitan and Micropolitan Statistical Area "Wapakoneta, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Warner Robins, GA MSA" +Metropolitan and Micropolitan Statistical Area "Warren, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Warrensburg, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Warsaw, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Washington Court House, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Washington, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Washington, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Washington-Arlington-Alexandria, DC-VA-MD-WV MSA" +Metropolitan and Micropolitan Statistical Area "Waterloo-Cedar Falls, IA MSA" +Metropolitan and Micropolitan Statistical Area "Watertown, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Watertown-Fort Atkinson, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Watertown-Fort Drum, NY MSA" +Metropolitan and Micropolitan Statistical Area "Wauchula, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Wausau, WI MSA" +Metropolitan and Micropolitan Statistical Area "Waycross, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Weatherford, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Weirton-Steubenville, WV-OH MSA" +Metropolitan and Micropolitan Statistical Area "Wenatchee, WA MSA" +Metropolitan and Micropolitan Statistical Area "West Plains, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Wheeling, WV-OH MSA" +Metropolitan and Micropolitan Statistical Area "Whitewater-Elkhorn, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Wichita Falls, TX MSA" +Metropolitan and Micropolitan Statistical Area "Wichita, KS MSA" +Metropolitan and Micropolitan Statistical Area "Williamsport, PA MSA" +Metropolitan and Micropolitan Statistical Area "Williston, ND MicroSA" +Metropolitan and Micropolitan Statistical Area "Willmar, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Wilmington, NC MSA" +Metropolitan and Micropolitan Statistical Area "Wilmington, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Wilson, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Winchester, VA-WV MSA" +Metropolitan and Micropolitan Statistical Area "Winnemucca, NV MicroSA" +Metropolitan and Micropolitan Statistical Area "Winona, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Winston-Salem, NC MSA" +Metropolitan and Micropolitan Statistical Area "Wisconsin Rapids-Marshfield, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Woodward, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Wooster, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Worcester, MA-CT MSA" +Metropolitan and Micropolitan Statistical Area "Worthington, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Yakima, WA MSA" +Metropolitan and Micropolitan Statistical Area "Yankton, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "York-Hanover, PA MSA" +Metropolitan and Micropolitan Statistical Area "Youngstown-Warren-Boardman, OH-PA MSA" +Metropolitan and Micropolitan Statistical Area "Yuba City, CA MSA" +Metropolitan and Micropolitan Statistical Area "Yuma, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Zanesville, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Zapata, TX MicroSA" +Metropolitan and Micropolitan Statistical Area None +Misc Extra Refrigerator "EF 15.9, Fed Standard, bottom freezer-reference fridge" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=573 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator "EF 19.8, bottom freezer" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=458 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator "EF 6.9, Average Installed" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1102 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator "EF 6.9, National Average" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1102 extra_refrigerator_usage_multiplier=0.221 +Misc Extra Refrigerator EF 10.2 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=748 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 10.5 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=727 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 15.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=480 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 17.6 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=433 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 19.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=383 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 21.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=348 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 6.7 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1139 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator None ResStockArguments extra_refrigerator_present=false extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=0 extra_refrigerator_usage_multiplier=0 +Misc Extra Refrigerator Void +Misc Freezer "EF 12, Average Installed" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=935 freezer_usage_multiplier=1.0 +Misc Freezer "EF 12, National Average" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=935 freezer_usage_multiplier=0.342 +Misc Freezer "EF 16, 2001 Fed Standard-reference freezer" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=712 freezer_usage_multiplier=1.0 +Misc Freezer "EF 18, 2008 Energy Star" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=641 freezer_usage_multiplier=1.0 +Misc Freezer "EF 20, 2008 Energy Star Most Efficient" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=568 freezer_usage_multiplier=1.0 +Misc Freezer None ResStockArguments freezer_present=false freezer_location=auto freezer_rated_annual_kwh=0 freezer_usage_multiplier=0 +Misc Freezer Void +Misc Gas Fireplace Gas Fireplace ResStockArguments misc_fuel_loads_fireplace_present=true misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=auto misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=1.0 +Misc Gas Fireplace National Average ResStockArguments misc_fuel_loads_fireplace_present=true misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=auto misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=0.032 +Misc Gas Fireplace None ResStockArguments misc_fuel_loads_fireplace_present=false misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=0 misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=0 +Misc Gas Grill Gas Grill ResStockArguments misc_fuel_loads_grill_present=true misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=auto misc_fuel_loads_grill_usage_multiplier=1.0 +Misc Gas Grill National Average ResStockArguments misc_fuel_loads_grill_present=true misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=auto misc_fuel_loads_grill_usage_multiplier=0.029 +Misc Gas Grill None ResStockArguments misc_fuel_loads_grill_present=false misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=0 misc_fuel_loads_grill_usage_multiplier=0 +Misc Gas Lighting Gas Lighting ResStockArguments misc_fuel_loads_lighting_present=true misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=auto misc_fuel_loads_lighting_usage_multiplier=1.0 +Misc Gas Lighting National Average ResStockArguments misc_fuel_loads_lighting_present=true misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=auto misc_fuel_loads_lighting_usage_multiplier=0.012 +Misc Gas Lighting None ResStockArguments misc_fuel_loads_lighting_present=false misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=0 misc_fuel_loads_lighting_usage_multiplier=0 +Misc Hot Tub Spa Electricity ResStockArguments permanent_spa_present=true permanent_spa_pump_annual_kwh=auto permanent_spa_pump_usage_multiplier=1.0 permanent_spa_heater_type=electric resistance permanent_spa_heater_annual_kwh=auto permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=1.0 +Misc Hot Tub Spa Natural Gas ResStockArguments permanent_spa_present=true permanent_spa_pump_annual_kwh=auto permanent_spa_pump_usage_multiplier=1.0 permanent_spa_heater_type=gas fired permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=auto permanent_spa_heater_usage_multiplier=1.0 +Misc Hot Tub Spa None ResStockArguments permanent_spa_present=false permanent_spa_pump_annual_kwh=0 permanent_spa_pump_usage_multiplier=0 permanent_spa_heater_type=none permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=0 +Misc Hot Tub Spa Other Fuel ResStockArguments permanent_spa_present=false permanent_spa_pump_annual_kwh=0 permanent_spa_pump_usage_multiplier=0 permanent_spa_heater_type=none permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=0 +Misc Hot Tub Spa Void +Misc Pool Has Pool ResStockArguments pool_present=true +Misc Pool None ResStockArguments pool_present=false +Misc Pool Void +Misc Pool Heater "Electric, 78F" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.8 +Misc Pool Heater "Electric, Covered" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.3 +Misc Pool Heater "Electric, Covered, 78F" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.2 +Misc Pool Heater "Gas, 78F" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.8 +Misc Pool Heater "Gas, Covered" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.3 +Misc Pool Heater "Gas, Covered, 78F" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.2 +Misc Pool Heater Electricity ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=1.0 +Misc Pool Heater Natural Gas ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=1.0 +Misc Pool Heater None ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 +Misc Pool Heater Other Fuel ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 +Misc Pool Heater Solar ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 +Misc Pool Heater Unheated ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 +Misc Pool Pump 0.75 HP Pump ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=0.75 +Misc Pool Pump 1.0 HP Pump ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=1.0 +Misc Pool Pump National Average ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=0.075 +Misc Pool Pump None ResStockArguments pool_pump_annual_kwh=0 pool_pump_usage_multiplier=0 +Misc Well Pump High Efficiency ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=0.67 misc_plug_loads_well_pump_2_usage_multiplier=1.0 +Misc Well Pump National Average ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=0.127 misc_plug_loads_well_pump_2_usage_multiplier=1.0 +Misc Well Pump None ResStockArguments misc_plug_loads_well_pump_present=false misc_plug_loads_well_pump_annual_kwh=0 misc_plug_loads_well_pump_usage_multiplier=0 misc_plug_loads_well_pump_2_usage_multiplier=0 +Misc Well Pump Typical Efficiency ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=1.0 misc_plug_loads_well_pump_2_usage_multiplier=1.0 +Natural Ventilation "Cooling Season, 7 days/wk" ResStockArguments window_fraction_operable=0.67 +Natural Ventilation None ResStockArguments window_fraction_operable=0 +Neighbors "Left/Right at 15ft, Front/Back at 80ft" ResStockArguments neighbor_front_distance=80 neighbor_back_distance=80 neighbor_left_distance=15 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 12 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=12 neighbor_right_distance=12 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 2 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=2 neighbor_right_distance=2 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 27 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=27 neighbor_right_distance=27 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 4 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=4 neighbor_right_distance=4 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 7 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=7 neighbor_right_distance=7 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Back at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=15 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Front at 15ft ResStockArguments neighbor_front_distance=15 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Left at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=15 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Left/Right at 10ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=10 neighbor_right_distance=10 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Left/Right at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=15 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Left/Right at 20ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=20 neighbor_right_distance=20 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors None ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Right at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Occupants 0 ResStockArguments geometry_unit_num_occupants=0 general_water_use_usage_multiplier=auto +Occupants 1 ResStockArguments geometry_unit_num_occupants=1 general_water_use_usage_multiplier=auto +Occupants 10+ ResStockArguments geometry_unit_num_occupants=11 general_water_use_usage_multiplier=auto +Occupants 2 ResStockArguments geometry_unit_num_occupants=2 general_water_use_usage_multiplier=auto +Occupants 3 ResStockArguments geometry_unit_num_occupants=3 general_water_use_usage_multiplier=auto +Occupants 4 ResStockArguments geometry_unit_num_occupants=4 general_water_use_usage_multiplier=auto +Occupants 5 ResStockArguments geometry_unit_num_occupants=5 general_water_use_usage_multiplier=auto +Occupants 6 ResStockArguments geometry_unit_num_occupants=6 general_water_use_usage_multiplier=auto +Occupants 7 ResStockArguments geometry_unit_num_occupants=7 general_water_use_usage_multiplier=auto +Occupants 8 ResStockArguments geometry_unit_num_occupants=8 general_water_use_usage_multiplier=auto +Occupants 9 ResStockArguments geometry_unit_num_occupants=9 general_water_use_usage_multiplier=auto +Orientation ENE ResStockArguments geometry_unit_orientation=68 +Orientation ESE ResStockArguments geometry_unit_orientation=113 +Orientation East ResStockArguments geometry_unit_orientation=90 +Orientation NNE ResStockArguments geometry_unit_orientation=23 +Orientation NNW ResStockArguments geometry_unit_orientation=338 +Orientation North ResStockArguments geometry_unit_orientation=0 +Orientation Northeast ResStockArguments geometry_unit_orientation=45 +Orientation Northwest ResStockArguments geometry_unit_orientation=315 +Orientation SSE ResStockArguments geometry_unit_orientation=158 +Orientation SSW ResStockArguments geometry_unit_orientation=203 +Orientation South ResStockArguments geometry_unit_orientation=180 +Orientation Southeast ResStockArguments geometry_unit_orientation=135 +Orientation Southwest ResStockArguments geometry_unit_orientation=225 +Orientation WNW ResStockArguments geometry_unit_orientation=293 +Orientation WSW ResStockArguments geometry_unit_orientation=248 +Orientation West ResStockArguments geometry_unit_orientation=270 +Overhangs "2ft, All Windows" ResStockArguments overhangs_front_depth=2 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=2 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=2 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=2 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs "2ft, Back Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=2 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs "2ft, Front Windows" ResStockArguments overhangs_front_depth=2 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs "2ft, Left Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=2 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs "2ft, Right Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=2 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs None ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +PUMA "AK, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AK, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AK, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AK, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AK, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00115" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00116" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00117" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00118" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00119" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00120" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00121" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00122" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00123" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00124" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00125" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00126" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00127" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00128" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00129" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00130" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00131" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00132" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00133" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00134" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03709" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03710" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03711" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03712" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03713" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03714" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03715" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03716" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03717" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03718" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03719" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03720" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03721" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03722" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03723" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03724" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03725" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03726" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03727" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03728" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03729" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03730" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03731" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03732" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03733" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03734" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03735" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03736" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03737" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03738" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03739" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03740" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03741" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03742" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03743" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03744" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03745" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03746" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03747" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03748" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03749" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03750" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03751" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03752" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03753" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03754" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03755" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03756" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03757" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03758" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03759" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03760" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03761" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03762" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03763" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03764" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03765" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03766" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03767" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03768" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03769" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 04701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 04702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05911" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05912" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05913" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05914" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05915" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05916" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05917" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05918" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06511" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06512" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06513" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06514" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06515" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06709" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06710" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06711" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06712" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07115" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07311" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07312" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07313" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07314" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07315" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07316" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07317" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07318" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07319" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07320" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07321" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07322" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08511" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08512" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08513" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08514" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 10100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 10701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 10702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 10703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00808" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00809" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00810" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00811" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00812" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00813" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00814" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00815" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00816" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00817" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00818" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00819" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00820" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00821" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00822" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00823" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00824" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 04104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 04105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 04106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DC, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DC, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DC, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DC, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DC, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DE, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DE, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DE, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DE, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DE, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DE, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 02103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 06100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 06300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 06901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 06902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 06903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08606" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08607" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08608" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08609" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08610" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08611" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08612" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08613" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08614" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08615" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08616" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08617" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08618" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08619" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08620" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08621" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08622" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08623" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08624" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09911" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 12100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 12701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 12702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 12703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 12704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 05001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 05002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 06001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 06002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03009" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03407" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03408" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03409" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03410" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03411" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03412" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03413" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03414" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03415" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03416" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03417" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03418" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03419" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03420" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03421" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03422" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03520" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03521" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03522" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03523" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03524" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03525" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03526" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03527" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03528" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03529" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03530" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03531" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03532" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03210" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03211" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03212" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03213" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01405" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01406" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01407" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01408" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01409" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01410" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01808" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ND, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ND, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ND, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ND, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ND, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00405" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00406" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00407" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00408" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00409" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00410" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00411" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00412" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00413" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03210" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03211" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03212" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03311" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03312" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03313" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03709" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03710" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03808" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03809" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03810" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04009" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04010" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04011" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04012" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04013" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04014" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04015" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04016" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04017" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04018" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01314" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01316" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01317" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01318" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01319" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01320" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01321" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01322" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01323" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01324" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03210" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03211" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 04001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 04002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SD, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SD, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SD, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SD, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SD, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SD, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02311" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02312" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02313" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02314" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02315" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02316" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02317" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02318" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02319" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02320" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02321" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02322" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02511" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02512" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02513" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02514" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02515" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02516" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04606" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04607" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04608" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04609" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04610" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04611" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04612" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04613" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04614" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04615" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04616" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04617" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04618" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04619" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04620" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04621" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04622" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04623" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04624" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04625" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04626" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04627" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04628" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04629" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04630" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04631" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04632" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04633" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04634" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04635" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04636" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04637" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04638" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05911" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05912" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05913" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05914" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05915" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05916" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 05001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 11001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 11002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 13001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 21001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35009" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 49001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 49002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 49003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 49004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 53001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 57001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 57002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 10701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 10702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 10703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51010" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51020" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51040" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51044" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51045" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51080" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51084" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51085" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51087" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51089" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51090" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51095" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51096" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51097" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51115" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51120" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51125" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51135" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51145" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51154" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51155" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51164" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51165" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51167" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51175" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51186" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51215" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51224" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51225" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51235" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51244" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51245" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51246" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51255" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 55001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 55002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VT, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VT, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VT, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VT, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11606" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11607" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11608" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11609" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11610" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11611" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11612" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11613" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11614" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11615" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11616" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 10000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 20000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 30000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 40101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 40301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 40701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 41001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 41002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 41003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 41004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 41005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 50000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 55101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 55102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 55103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 70101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 70201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 70301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WY, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WY, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WY, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WY, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WY, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA Metro Status "In metro area, not/partially in principal city" +PUMA Metro Status "In metro area, principal city" +PUMA Metro Status Not/partially in metro area +PV Orientation East ResStockArguments pv_system_array_azimuth=90 pv_system_2_array_azimuth=0 +PV Orientation None ResStockArguments pv_system_array_azimuth=180 pv_system_2_array_azimuth=0 +PV Orientation North ResStockArguments pv_system_array_azimuth=0 pv_system_2_array_azimuth=0 +PV Orientation Northeast ResStockArguments pv_system_array_azimuth=45 pv_system_2_array_azimuth=0 +PV Orientation Northwest ResStockArguments pv_system_array_azimuth=315 pv_system_2_array_azimuth=0 +PV Orientation South ResStockArguments pv_system_array_azimuth=180 pv_system_2_array_azimuth=0 +PV Orientation Southeast ResStockArguments pv_system_array_azimuth=135 pv_system_2_array_azimuth=0 +PV Orientation Southwest ResStockArguments pv_system_array_azimuth=225 pv_system_2_array_azimuth=0 +PV Orientation West ResStockArguments pv_system_array_azimuth=270 pv_system_2_array_azimuth=0 +PV System Size 1.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=1000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 11.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=11000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 13.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=13000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 3.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=3000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 5.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=5000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 7.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=7000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 9.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=9000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size None ResStockArguments pv_system_present=false pv_system_module_type=auto pv_system_max_power_output=0 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +Plug Load Diversity 100% ResStockArguments misc_plug_loads_other_2_usage_multiplier=1.0 +Plug Load Diversity 150% ResStockArguments misc_plug_loads_other_2_usage_multiplier=1.5 +Plug Load Diversity 200% ResStockArguments misc_plug_loads_other_2_usage_multiplier=2.0 +Plug Load Diversity 25% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.25 +Plug Load Diversity 400% ResStockArguments misc_plug_loads_other_2_usage_multiplier=4.0 +Plug Load Diversity 50% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.5 +Plug Load Diversity 75% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.75 +Plug Loads 100% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.0 misc_plug_loads_television_present=false +Plug Loads 101% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.01 misc_plug_loads_television_present=false +Plug Loads 102% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.02 misc_plug_loads_television_present=false +Plug Loads 103% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.03 misc_plug_loads_television_present=false +Plug Loads 104% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.04 misc_plug_loads_television_present=false +Plug Loads 105% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.05 misc_plug_loads_television_present=false +Plug Loads 106% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.06 misc_plug_loads_television_present=false +Plug Loads 108% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.08 misc_plug_loads_television_present=false +Plug Loads 110% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.1 misc_plug_loads_television_present=false +Plug Loads 113% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.13 misc_plug_loads_television_present=false +Plug Loads 119% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.19 misc_plug_loads_television_present=false +Plug Loads 121% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.21 misc_plug_loads_television_present=false +Plug Loads 123% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.23 misc_plug_loads_television_present=false +Plug Loads 134% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.34 misc_plug_loads_television_present=false +Plug Loads 137% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.37 misc_plug_loads_television_present=false +Plug Loads 140% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.4 misc_plug_loads_television_present=false +Plug Loads 144% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.44 misc_plug_loads_television_present=false +Plug Loads 166% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.66 misc_plug_loads_television_present=false +Plug Loads 78% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.78 misc_plug_loads_television_present=false +Plug Loads 79% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.79 misc_plug_loads_television_present=false +Plug Loads 82% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.82 misc_plug_loads_television_present=false +Plug Loads 84% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.84 misc_plug_loads_television_present=false +Plug Loads 85% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.85 misc_plug_loads_television_present=false +Plug Loads 86% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.86 misc_plug_loads_television_present=false +Plug Loads 89% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.89 misc_plug_loads_television_present=false +Plug Loads 91% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.91 misc_plug_loads_television_present=false +Plug Loads 93% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.93 misc_plug_loads_television_present=false +Plug Loads 94% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.94 misc_plug_loads_television_present=false +Plug Loads 95% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.95 misc_plug_loads_television_present=false +Plug Loads 96% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.96 misc_plug_loads_television_present=false +Plug Loads 97% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.97 misc_plug_loads_television_present=false +Plug Loads 99% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.99 misc_plug_loads_television_present=false +Power Outage Summer ResStockArguments schedules_power_outage_periods=Jul 1 5 - Jul 31 14 schedules_power_outage_periods_window_natvent_availability=always available +REEDS Balancing Area 1 +REEDS Balancing Area 10 +REEDS Balancing Area 100 +REEDS Balancing Area 101 +REEDS Balancing Area 102 +REEDS Balancing Area 103 +REEDS Balancing Area 104 +REEDS Balancing Area 105 +REEDS Balancing Area 106 +REEDS Balancing Area 107 +REEDS Balancing Area 108 +REEDS Balancing Area 109 +REEDS Balancing Area 11 +REEDS Balancing Area 110 +REEDS Balancing Area 111 +REEDS Balancing Area 112 +REEDS Balancing Area 113 +REEDS Balancing Area 114 +REEDS Balancing Area 115 +REEDS Balancing Area 116 +REEDS Balancing Area 117 +REEDS Balancing Area 118 +REEDS Balancing Area 119 +REEDS Balancing Area 12 +REEDS Balancing Area 120 +REEDS Balancing Area 121 +REEDS Balancing Area 122 +REEDS Balancing Area 123 +REEDS Balancing Area 124 +REEDS Balancing Area 125 +REEDS Balancing Area 126 +REEDS Balancing Area 127 +REEDS Balancing Area 128 +REEDS Balancing Area 129 +REEDS Balancing Area 13 +REEDS Balancing Area 130 +REEDS Balancing Area 131 +REEDS Balancing Area 132 +REEDS Balancing Area 133 +REEDS Balancing Area 134 +REEDS Balancing Area 14 +REEDS Balancing Area 15 +REEDS Balancing Area 16 +REEDS Balancing Area 17 +REEDS Balancing Area 18 +REEDS Balancing Area 19 +REEDS Balancing Area 2 +REEDS Balancing Area 20 +REEDS Balancing Area 21 +REEDS Balancing Area 22 +REEDS Balancing Area 23 +REEDS Balancing Area 24 +REEDS Balancing Area 25 +REEDS Balancing Area 26 +REEDS Balancing Area 27 +REEDS Balancing Area 28 +REEDS Balancing Area 29 +REEDS Balancing Area 3 +REEDS Balancing Area 30 +REEDS Balancing Area 31 +REEDS Balancing Area 32 +REEDS Balancing Area 33 +REEDS Balancing Area 34 +REEDS Balancing Area 35 +REEDS Balancing Area 36 +REEDS Balancing Area 37 +REEDS Balancing Area 38 +REEDS Balancing Area 39 +REEDS Balancing Area 4 +REEDS Balancing Area 40 +REEDS Balancing Area 41 +REEDS Balancing Area 42 +REEDS Balancing Area 43 +REEDS Balancing Area 44 +REEDS Balancing Area 45 +REEDS Balancing Area 46 +REEDS Balancing Area 47 +REEDS Balancing Area 48 +REEDS Balancing Area 49 +REEDS Balancing Area 5 +REEDS Balancing Area 50 +REEDS Balancing Area 51 +REEDS Balancing Area 52 +REEDS Balancing Area 53 +REEDS Balancing Area 54 +REEDS Balancing Area 55 +REEDS Balancing Area 56 +REEDS Balancing Area 57 +REEDS Balancing Area 58 +REEDS Balancing Area 59 +REEDS Balancing Area 6 +REEDS Balancing Area 60 +REEDS Balancing Area 61 +REEDS Balancing Area 62 +REEDS Balancing Area 63 +REEDS Balancing Area 64 +REEDS Balancing Area 65 +REEDS Balancing Area 66 +REEDS Balancing Area 67 +REEDS Balancing Area 68 +REEDS Balancing Area 69 +REEDS Balancing Area 7 +REEDS Balancing Area 70 +REEDS Balancing Area 71 +REEDS Balancing Area 72 +REEDS Balancing Area 73 +REEDS Balancing Area 74 +REEDS Balancing Area 75 +REEDS Balancing Area 76 +REEDS Balancing Area 77 +REEDS Balancing Area 78 +REEDS Balancing Area 79 +REEDS Balancing Area 8 +REEDS Balancing Area 80 +REEDS Balancing Area 81 +REEDS Balancing Area 82 +REEDS Balancing Area 83 +REEDS Balancing Area 84 +REEDS Balancing Area 85 +REEDS Balancing Area 86 +REEDS Balancing Area 87 +REEDS Balancing Area 88 +REEDS Balancing Area 89 +REEDS Balancing Area 9 +REEDS Balancing Area 90 +REEDS Balancing Area 91 +REEDS Balancing Area 92 +REEDS Balancing Area 93 +REEDS Balancing Area 94 +REEDS Balancing Area 95 +REEDS Balancing Area 96 +REEDS Balancing Area 97 +REEDS Balancing Area 98 +REEDS Balancing Area 99 +REEDS Balancing Area None +Radiant Barrier No ResStockArguments radiant_barrier_attic_location=none radiant_barrier_grade=1 +Radiant Barrier None ResStockArguments radiant_barrier_attic_location=none radiant_barrier_grade=1 +Radiant Barrier Yes ResStockArguments radiant_barrier_attic_location=Attic roof only radiant_barrier_grade=1 +Range Spot Vent Hour Hour0 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=0 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour1 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=1 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour10 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=10 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour11 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=11 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour12 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=12 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour13 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=13 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour14 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=14 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour15 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=15 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour16 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=16 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour17 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=17 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour18 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=18 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour19 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=19 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour2 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=2 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour20 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=20 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour21 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=21 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour22 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=22 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour23 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=23 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour3 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=3 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour4 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=4 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour5 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=5 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour6 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=6 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour7 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=7 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour8 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=8 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour9 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=9 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Refrigerator EF 10.2 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=748 +Refrigerator EF 10.5 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=727 +Refrigerator EF 15.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=480 +Refrigerator EF 17.6 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=433 +Refrigerator EF 19.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=383 +Refrigerator EF 21.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=348 +Refrigerator EF 6.7 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=1139 +Refrigerator None ResStockArguments refrigerator_present=false refrigerator_location=auto refrigerator_rated_annual_kwh=0 +Refrigerator Void +Refrigerator Usage Level 100% Usage ResStockArguments refrigerator_usage_multiplier=1.0 +Refrigerator Usage Level 105% Usage ResStockArguments refrigerator_usage_multiplier=1.05 +Refrigerator Usage Level 95% Usage ResStockArguments refrigerator_usage_multiplier=0.95 +Roof Material "Asphalt Shingles, Dark" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=dark +Roof Material "Asphalt Shingles, Light" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=light +Roof Material "Asphalt Shingles, Medium" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=medium +Roof Material "Asphalt Shingles, White or cool colors" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=reflective +Roof Material "Composition Shingles, White or Cool Colors" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=reflective +Roof Material "Metal, Cool Colors" ResStockArguments roof_material_type=metal surfacing roof_color=reflective +Roof Material "Metal, Dark" ResStockArguments roof_material_type=metal surfacing roof_color=dark +Roof Material "Metal, Light" ResStockArguments roof_material_type=metal surfacing roof_color=light +Roof Material "Metal, Medium" ResStockArguments roof_material_type=metal surfacing roof_color=medium +Roof Material "Metal, White" ResStockArguments roof_material_type=metal surfacing roof_color=reflective +Roof Material "Tile, Clay or Ceramic" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium +Roof Material "Tile, Clay or Ceramic, White or Cool Colors" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective +Roof Material "Tile, Concrete" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium +Roof Material "Tile, Concrete, White or Cool Colors" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective +Roof Material "Tile, Dark" ResStockArguments roof_material_type=slate or tile shingles roof_color=dark +Roof Material "Tile, Light" ResStockArguments roof_material_type=slate or tile shingles roof_color=light +Roof Material "Tile, Medium" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium +Roof Material "Tile, White" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective +Roof Material Composition Shingles ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=medium +Roof Material Galvanized Steel ResStockArguments roof_material_type=metal surfacing roof_color=medium +Roof Material Slate ResStockArguments roof_material_type=slate or tile shingles roof_color=medium +Roof Material Wood Shingles ResStockArguments roof_material_type=wood shingles or shakes roof_color=medium +Solar Hot Water "40 sqft, South, 10 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=10 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, South, Latitude - 15 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=latitude-15 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, South, Roof Pitch" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, West, 70 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=70 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, West, Latitude + 15 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=latitude+15 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, West, Roof Pitch" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water None ResStockArguments solar_thermal_system_type=none solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +State AK ResStockArguments site_state_code=AK +State AL ResStockArguments site_state_code=AL +State AR ResStockArguments site_state_code=AR +State AZ ResStockArguments site_state_code=AZ +State CA ResStockArguments site_state_code=CA +State CO ResStockArguments site_state_code=CO +State CT ResStockArguments site_state_code=CT +State DC ResStockArguments site_state_code=DC +State DE ResStockArguments site_state_code=DE +State FL ResStockArguments site_state_code=FL +State GA ResStockArguments site_state_code=GA +State HI ResStockArguments site_state_code=HI +State IA ResStockArguments site_state_code=IA +State ID ResStockArguments site_state_code=ID +State IL ResStockArguments site_state_code=IL +State IN ResStockArguments site_state_code=IN +State KS ResStockArguments site_state_code=KS +State KY ResStockArguments site_state_code=KY +State LA ResStockArguments site_state_code=LA +State MA ResStockArguments site_state_code=MA +State MD ResStockArguments site_state_code=MD +State ME ResStockArguments site_state_code=ME +State MI ResStockArguments site_state_code=MI +State MN ResStockArguments site_state_code=MN +State MO ResStockArguments site_state_code=MO +State MS ResStockArguments site_state_code=MS +State MT ResStockArguments site_state_code=MT +State NC ResStockArguments site_state_code=NC +State ND ResStockArguments site_state_code=ND +State NE ResStockArguments site_state_code=NE +State NH ResStockArguments site_state_code=NH +State NJ ResStockArguments site_state_code=NJ +State NM ResStockArguments site_state_code=NM +State NV ResStockArguments site_state_code=NV +State NY ResStockArguments site_state_code=NY +State OH ResStockArguments site_state_code=OH +State OK ResStockArguments site_state_code=OK +State OR ResStockArguments site_state_code=OR +State PA ResStockArguments site_state_code=PA +State RI ResStockArguments site_state_code=RI +State SC ResStockArguments site_state_code=SC +State SD ResStockArguments site_state_code=SD +State TN ResStockArguments site_state_code=TN +State TX ResStockArguments site_state_code=TX +State UT ResStockArguments site_state_code=UT +State VA ResStockArguments site_state_code=VA +State VT ResStockArguments site_state_code=VT +State WA ResStockArguments site_state_code=WA +State WI ResStockArguments site_state_code=WI +State WV ResStockArguments site_state_code=WV +State WY ResStockArguments site_state_code=WY +State Metro Median Income 0-30% +State Metro Median Income 100-120% +State Metro Median Income 120-150% +State Metro Median Income 150%+ +State Metro Median Income 30-60% +State Metro Median Income 60-80% +State Metro Median Income 80-100% +State Metro Median Income Not Available +Storm Windows Clear ResStockArguments window_storm_type=clear +Storm Windows Low-E ResStockArguments window_storm_type=low-e +Tenure Not Available +Tenure Owner +Tenure Renter +Usage Level Average +Usage Level High +Usage Level Low +Usage Level Medium +Vacancy Status Occupied +Vacancy Status Vacant ResStockArguments schedules_vacancy_periods=Jan 1 - Dec 31 +Vintage 1940s ResStockArguments vintage=1940s year_built=auto +Vintage 1950s ResStockArguments vintage=1950s year_built=auto +Vintage 1960s ResStockArguments vintage=1960s year_built=auto +Vintage 1970s ResStockArguments vintage=1970s year_built=auto +Vintage 1980s ResStockArguments vintage=1980s year_built=auto +Vintage 1990s ResStockArguments vintage=1990s year_built=auto +Vintage 2000s ResStockArguments vintage=2000s year_built=auto +Vintage 2010s ResStockArguments vintage=2010s year_built=auto +Vintage <1940 ResStockArguments vintage=<1940 year_built=auto +Vintage <1950 ResStockArguments vintage=<1950 year_built=auto +Vintage ACS 1940-59 +Vintage ACS 1960-79 +Vintage ACS 1980-99 +Vintage ACS 2000-09 +Vintage ACS 2010s +Vintage ACS <1940 +Water Heater Efficiency "Electric Heat Pump, 50 gal, 120 V Shared" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=4.9 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 65 gal, 120 V Shared" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=65 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=4.9 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 80 gal, 120 V Shared" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=80 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=4.9 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 50 gal, 3.45 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 50 gal, 3.45 UEF, 140F" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=140 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 66 gal, 3.35 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=66 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.35 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 80 gal, 3.45 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=80 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Natural Gas Premium, Condensing" ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Natural Gas Tankless, Condensing" ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=natural gas water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.96 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Propane Premium, Condensing" ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Electric Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=electricity water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.95 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Electric Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=electricity water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.92 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Electric Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=electricity water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.99 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency FIXME Fuel Oil Indirect ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.62 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Fuel Oil Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.68 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Fuel Oil Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.62 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Natural Gas Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.67 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Natural Gas Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Natural Gas Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=natural gas water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Other Fuel ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=wood water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Propane Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.67 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Propane Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Propane Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=propane water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Fuel Electricity +Water Heater Fuel Fuel Oil +Water Heater Fuel Natural Gas +Water Heater Fuel Other Fuel +Water Heater Fuel Propane +Water Heater In Unit No +Water Heater In Unit Yes +Water Heater Location Attic ResStockArguments water_heater_location=attic +Water Heater Location Conditioned Mechanical Room ResStockArguments water_heater_location=other heated space +Water Heater Location Crawlspace ResStockArguments water_heater_location=crawlspace +Water Heater Location Garage ResStockArguments water_heater_location=garage +Water Heater Location Heated Basement ResStockArguments water_heater_location=basement - conditioned +Water Heater Location Living Space ResStockArguments water_heater_location=conditioned space +Water Heater Location Outside ResStockArguments water_heater_location=other exterior +Water Heater Location Unheated Basement ResStockArguments water_heater_location=basement - unconditioned +Window Areas F10 B30 L10 R10 ResStockArguments window_front_wwr=0.1 window_back_wwr=0.3 window_left_wwr=0.1 window_right_wwr=0.1 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F12 B12 L12 R12 ResStockArguments window_front_wwr=0.12 window_back_wwr=0.12 window_left_wwr=0.12 window_right_wwr=0.12 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F15 B15 L0 R0 ResStockArguments window_front_wwr=0.15 window_back_wwr=0.15 window_left_wwr=0 window_right_wwr=0 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F15 B15 L15 R15 ResStockArguments window_front_wwr=0.15 window_back_wwr=0.15 window_left_wwr=0.15 window_right_wwr=0.15 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F18 B18 L18 R18 ResStockArguments window_front_wwr=0.18 window_back_wwr=0.18 window_left_wwr=0.18 window_right_wwr=0.18 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F30 B30 L30 R30 ResStockArguments window_front_wwr=0.30 window_back_wwr=0.30 window_left_wwr=0.30 window_right_wwr=0.30 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F6 B6 L6 R6 ResStockArguments window_front_wwr=0.06 window_back_wwr=0.06 window_left_wwr=0.06 window_right_wwr=0.06 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F9 B9 L9 R9 ResStockArguments window_front_wwr=0.09 window_back_wwr=0.09 window_left_wwr=0.09 window_right_wwr=0.09 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas None ResStockArguments window_front_wwr=0.0 window_back_wwr=0.0 window_left_wwr=0.0 window_right_wwr=0.0 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Windows "Double, Clear, Metal, Air" ResStockArguments window_ufactor=0.76 window_shgc=0.67 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Metal, Air, Exterior Clear Storm" ResStockArguments window_ufactor=0.55 window_shgc=0.51 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.49 window_shgc=0.44 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Non-metal, Air" ResStockArguments window_ufactor=0.49 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Non-metal, Air, Exterior Clear Storm" ResStockArguments window_ufactor=0.34 window_shgc=0.49 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Non-metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.28 window_shgc=0.42 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Thermal-Break, Air" ResStockArguments window_ufactor=0.63 window_shgc=0.62 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Low-E, H-Gain" ResStockArguments window_ufactor=0.29 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Low-E, L-Gain" ResStockArguments window_ufactor=0.26 window_shgc=0.31 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Low-E, Non-metal, Air, L-Gain" ResStockArguments window_ufactor=0.37 window_shgc=0.3 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Low-E, Non-metal, Air, M-Gain" ResStockArguments window_ufactor=0.38 window_shgc=0.44 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Metal" ResStockArguments window_ufactor=1.16 window_shgc=0.76 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Metal, Exterior Clear Storm" ResStockArguments window_ufactor=0.67 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.57 window_shgc=0.47 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Non-metal" ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Non-metal, Exterior Clear Storm" ResStockArguments window_ufactor=0.47 window_shgc=0.54 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Non-metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.36 window_shgc=0.46 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Triple, Low-E, Insulated, Argon, H-Gain" ResStockArguments window_ufactor=0.18 window_shgc=0.40 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Triple, Low-E, Insulated, Argon, L-Gain" ResStockArguments window_ufactor=0.17 window_shgc=0.27 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Triple, Low-E, Non-metal, Air, L-Gain" ResStockArguments window_ufactor=0.29 window_shgc=0.26 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows No Windows ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows Void +Infiltration Reduction 30% ResStockArguments air_leakage_percent_reduction=30 +HVAC Secondary Heating Fuel Other Fuel ResStockArguments heating_system_2_fuel=wood +HVAC Heating Efficiency "ASHP, SEER 15.05, 8.82 HSPF, HERS, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "MSHP, SEER 14.5, 8.33 HSPF, HERS, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.33 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "ASHP, SEER 20, 11 HSPF, CCHP, Max Load, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=11 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=20 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.9 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-15 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_is_ducted=true heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "MSHP, SEER 20, 11 HSPF, CCHP, Max Load, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=11 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=20 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.9 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "ASHP, SEER 15.05, 8.82 HSPF, Separate Backup, HERS, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=separate heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=0.0 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_is_ducted=true heat_pump_backup_sizing_methodology=supplemental +HVAC Secondary Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.76 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.80 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.90 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Wall/Floor Furnace, 60% AFUE" ResStockArguments heating_system_2_type=WallFurnace heating_system_2_heating_efficiency=0.60 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Wall/Floor Furnace, 68% AFUE" ResStockArguments heating_system_2_type=WallFurnace heating_system_2_heating_efficiency=0.68 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Electric Boiler, 100% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Electric Wall Furnace, 100% AFUE" ResStockArguments heating_system_2_type=WallFurnace heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 60% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 60% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 60% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 60% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=wood heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 76% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 76% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 76% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 76% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=wood heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 80% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 80% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 80% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 80% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=wood heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 92.5% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 92.5% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 92.5% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 92.5% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=wood heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "MSHP, SEER 14.5, 8.33 HSPF, Separate Backup, HERS, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.33 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=separate heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=0.0 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental From f4dcde1cdd8be4797fe98e3acd8cb78fda766b79 Mon Sep 17 00:00:00 2001 From: Yingli Date: Wed, 24 Jul 2024 17:30:59 -0600 Subject: [PATCH 09/21] options lookup --- resources/options_lookup.tsv | 27946 ++++++++++++++++----------------- 1 file changed, 13957 insertions(+), 13989 deletions(-) diff --git a/resources/options_lookup.tsv b/resources/options_lookup.tsv index 1ae24e4d5f..7809e96d1b 100644 --- a/resources/options_lookup.tsv +++ b/resources/options_lookup.tsv @@ -1,13989 +1,13957 @@ -Parameter Name Option Name Measure Dir Measure Arg 1 Measure Arg 2 ... -AHS Region "CBSA Atlanta-Sandy Springs-Roswell, GA" -AHS Region "CBSA Boston-Cambridge-Newton, MA-NH" -AHS Region "CBSA Chicago-Naperville-Elgin, IL-IN-WI" -AHS Region "CBSA Dallas-Fort Worth-Arlington, TX" -AHS Region "CBSA Detroit-Warren-Dearborn, MI" -AHS Region "CBSA Houston-The Woodlands-Sugar Land, TX" -AHS Region "CBSA Los Angeles-Long Beach-Anaheim, CA" -AHS Region "CBSA Miami-Fort Lauderdale-West Palm Beach, FL" -AHS Region "CBSA New York-Newark-Jersey City, NY-NJ-PA" -AHS Region "CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD" -AHS Region "CBSA Phoenix-Mesa-Scottsdale, AZ" -AHS Region "CBSA Riverside-San Bernardino-Ontario, CA" -AHS Region "CBSA San Francisco-Oakland-Hayward, CA" -AHS Region "CBSA Seattle-Tacoma-Bellevue, WA" -AHS Region "CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV" -AHS Region Non-CBSA East North Central -AHS Region Non-CBSA East South Central -AHS Region Non-CBSA Middle Atlantic -AHS Region Non-CBSA Mountain -AHS Region Non-CBSA New England -AHS Region Non-CBSA Pacific -AHS Region Non-CBSA South Atlantic -AHS Region Non-CBSA West North Central -AHS Region Non-CBSA West South Central -AIANNH Area No -AIANNH Area Yes -ASHRAE IECC Climate Zone 2004 1A ResStockArguments site_iecc_zone=1A site_type=auto -ASHRAE IECC Climate Zone 2004 2A ResStockArguments site_iecc_zone=2A site_type=auto -ASHRAE IECC Climate Zone 2004 2B ResStockArguments site_iecc_zone=2B site_type=auto -ASHRAE IECC Climate Zone 2004 3A ResStockArguments site_iecc_zone=3A site_type=auto -ASHRAE IECC Climate Zone 2004 3B ResStockArguments site_iecc_zone=3B site_type=auto -ASHRAE IECC Climate Zone 2004 3C ResStockArguments site_iecc_zone=3C site_type=auto -ASHRAE IECC Climate Zone 2004 4A ResStockArguments site_iecc_zone=4A site_type=auto -ASHRAE IECC Climate Zone 2004 4B ResStockArguments site_iecc_zone=4B site_type=auto -ASHRAE IECC Climate Zone 2004 4C ResStockArguments site_iecc_zone=4C site_type=auto -ASHRAE IECC Climate Zone 2004 5A ResStockArguments site_iecc_zone=5A site_type=auto -ASHRAE IECC Climate Zone 2004 5B ResStockArguments site_iecc_zone=5B site_type=auto -ASHRAE IECC Climate Zone 2004 6A ResStockArguments site_iecc_zone=6A site_type=auto -ASHRAE IECC Climate Zone 2004 6B ResStockArguments site_iecc_zone=6B site_type=auto -ASHRAE IECC Climate Zone 2004 7A ResStockArguments site_iecc_zone=7 site_type=auto -ASHRAE IECC Climate Zone 2004 7AK ResStockArguments site_iecc_zone=7 site_type=auto -ASHRAE IECC Climate Zone 2004 7B ResStockArguments site_iecc_zone=7 site_type=auto -ASHRAE IECC Climate Zone 2004 8AK ResStockArguments site_iecc_zone=8 site_type=auto -ASHRAE IECC Climate Zone 2004 - 2A Split "2A - FL, GA, AL, MS" -ASHRAE IECC Climate Zone 2004 - 2A Split "2A - TX, LA" -ASHRAE IECC Climate Zone 2004 - 2A Split 1A -ASHRAE IECC Climate Zone 2004 - 2A Split 2B -ASHRAE IECC Climate Zone 2004 - 2A Split 3A -ASHRAE IECC Climate Zone 2004 - 2A Split 3B -ASHRAE IECC Climate Zone 2004 - 2A Split 3C -ASHRAE IECC Climate Zone 2004 - 2A Split 4A -ASHRAE IECC Climate Zone 2004 - 2A Split 4B -ASHRAE IECC Climate Zone 2004 - 2A Split 4C -ASHRAE IECC Climate Zone 2004 - 2A Split 5A -ASHRAE IECC Climate Zone 2004 - 2A Split 5B -ASHRAE IECC Climate Zone 2004 - 2A Split 6A -ASHRAE IECC Climate Zone 2004 - 2A Split 6B -ASHRAE IECC Climate Zone 2004 - 2A Split 7A -ASHRAE IECC Climate Zone 2004 - 2A Split 7AK -ASHRAE IECC Climate Zone 2004 - 2A Split 7B -ASHRAE IECC Climate Zone 2004 - 2A Split 8AK -Area Median Income 0-30% -Area Median Income 100-120% -Area Median Income 120-150% -Area Median Income 150%+ -Area Median Income 30-60% -Area Median Income 60-80% -Area Median Income 80-100% -Area Median Income Not Available -Bathroom Spot Vent Hour Hour0 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=0 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour1 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=1 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour10 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=10 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour11 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=11 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour12 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=12 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour13 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=13 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour14 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=14 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour15 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=15 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour16 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=16 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour17 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=17 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour18 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=18 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour19 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=19 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour2 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=2 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour20 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=20 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour21 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=21 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour22 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=22 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour23 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=23 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour3 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=3 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour4 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=4 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour5 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=5 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour6 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=6 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour7 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=7 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour8 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=8 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour9 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=9 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Battery "20 kWh, 80% Round Trip Efficiency" ResStockArguments battery_present=true battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=0.8 -Battery "20 kWh, Garage" ResStockArguments battery_present=true battery_location=garage battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto -Battery "20 kWh, Outside" ResStockArguments battery_present=true battery_location=outside battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto -Battery 10 kWh ResStockArguments battery_present=true battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto -Battery None ResStockArguments battery_present=false battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto -Bedrooms 1 ResStockArguments geometry_unit_num_bedrooms=1 geometry_unit_num_bathrooms=auto -Bedrooms 2 ResStockArguments geometry_unit_num_bedrooms=2 geometry_unit_num_bathrooms=auto -Bedrooms 3 ResStockArguments geometry_unit_num_bedrooms=3 geometry_unit_num_bathrooms=auto -Bedrooms 4 ResStockArguments geometry_unit_num_bedrooms=4 geometry_unit_num_bathrooms=auto -Bedrooms 5 ResStockArguments geometry_unit_num_bedrooms=5 geometry_unit_num_bathrooms=auto -Building America Climate Zone Cold -Building America Climate Zone Hot-Dry -Building America Climate Zone Hot-Humid -Building America Climate Zone Marine -Building America Climate Zone Mixed-Dry -Building America Climate Zone Mixed-Humid -Building America Climate Zone Subarctic -Building America Climate Zone Very Cold -CEC Climate Zone 1 -CEC Climate Zone 10 -CEC Climate Zone 11 -CEC Climate Zone 12 -CEC Climate Zone 13 -CEC Climate Zone 14 -CEC Climate Zone 15 -CEC Climate Zone 16 -CEC Climate Zone 2 -CEC Climate Zone 3 -CEC Climate Zone 4 -CEC Climate Zone 5 -CEC Climate Zone 6 -CEC Climate Zone 7 -CEC Climate Zone 8 -CEC Climate Zone 9 -CEC Climate Zone None -Ceiling Fan "Premium Efficiency, 0.5F Offset" ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=140.8 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0.5 -Ceiling Fan "Standard Efficiency, 0.5F Offset" ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=70.4 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0.5 -Ceiling Fan "Standard Efficiency, No usage" ResStockArguments ceiling_fan_present=false ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=0 ceiling_fan_quantity=0 ceiling_fan_cooling_setpoint_temp_offset=0 -Ceiling Fan None ResStockArguments ceiling_fan_present=false ceiling_fan_label_energy_use=0 ceiling_fan_efficiency=0 ceiling_fan_quantity=0 ceiling_fan_cooling_setpoint_temp_offset=0 -Ceiling Fan Premium Efficiency ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=140.8 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0 -Ceiling Fan Standard Efficiency ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=70.4 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0 -Census Division East North Central -Census Division East South Central -Census Division Middle Atlantic -Census Division Mountain -Census Division New England -Census Division Pacific -Census Division South Atlantic -Census Division West North Central -Census Division West South Central -Census Division RECS East North Central -Census Division RECS East South Central -Census Division RECS Middle Atlantic -Census Division RECS Mountain North -Census Division RECS Mountain South -Census Division RECS New England -Census Division RECS Pacific -Census Division RECS South Atlantic -Census Division RECS West North Central -Census Division RECS West South Central -Census Region Midwest -Census Region Northeast -Census Region South -Census Region West -City "AK, Anchorage" ResStockArguments site_city=auto -City "AL, Auburn" ResStockArguments site_city=auto -City "AL, Birmingham" ResStockArguments site_city=auto -City "AL, Decatur" ResStockArguments site_city=auto -City "AL, Dothan" ResStockArguments site_city=auto -City "AL, Florence" ResStockArguments site_city=auto -City "AL, Gadsden" ResStockArguments site_city=auto -City "AL, Hoover" ResStockArguments site_city=auto -City "AL, Huntsville" ResStockArguments site_city=auto -City "AL, Madison" ResStockArguments site_city=auto -City "AL, Mobile" ResStockArguments site_city=auto -City "AL, Montgomery" ResStockArguments site_city=auto -City "AL, Phenix City" ResStockArguments site_city=auto -City "AL, Tuscaloosa" ResStockArguments site_city=auto -City "AR, Bentonville" ResStockArguments site_city=auto -City "AR, Conway" ResStockArguments site_city=auto -City "AR, Fayetteville" ResStockArguments site_city=auto -City "AR, Fort Smith" ResStockArguments site_city=auto -City "AR, Hot Springs" ResStockArguments site_city=auto -City "AR, Jonesboro" ResStockArguments site_city=auto -City "AR, Little Rock" ResStockArguments site_city=auto -City "AR, North Little Rock" ResStockArguments site_city=auto -City "AR, Pine Bluff" ResStockArguments site_city=auto -City "AR, Rogers" ResStockArguments site_city=auto -City "AR, Springdale" ResStockArguments site_city=auto -City "AZ, Apache Junction" ResStockArguments site_city=auto -City "AZ, Avondale" ResStockArguments site_city=auto -City "AZ, Buckeye" ResStockArguments site_city=auto -City "AZ, Bullhead City" ResStockArguments site_city=auto -City "AZ, Casa Grande" ResStockArguments site_city=auto -City "AZ, Casas Adobes" ResStockArguments site_city=auto -City "AZ, Catalina Foothills" ResStockArguments site_city=auto -City "AZ, Chandler" ResStockArguments site_city=auto -City "AZ, Flagstaff" ResStockArguments site_city=auto -City "AZ, Fortuna Foothills" ResStockArguments site_city=auto -City "AZ, Gilbert" ResStockArguments site_city=auto -City "AZ, Glendale" ResStockArguments site_city=auto -City "AZ, Goodyear" ResStockArguments site_city=auto -City "AZ, Green Valley" ResStockArguments site_city=auto -City "AZ, Lake Havasu City" ResStockArguments site_city=auto -City "AZ, Marana" ResStockArguments site_city=auto -City "AZ, Maricopa" ResStockArguments site_city=auto -City "AZ, Mesa" ResStockArguments site_city=auto -City "AZ, Oro Valley" ResStockArguments site_city=auto -City "AZ, Peoria" ResStockArguments site_city=auto -City "AZ, Phoenix" ResStockArguments site_city=auto -City "AZ, Prescott Valley" ResStockArguments site_city=auto -City "AZ, Prescott" ResStockArguments site_city=auto -City "AZ, San Tan Valley" ResStockArguments site_city=auto -City "AZ, Scottsdale" ResStockArguments site_city=auto -City "AZ, Sierra Vista" ResStockArguments site_city=auto -City "AZ, Sun City West" ResStockArguments site_city=auto -City "AZ, Sun City" ResStockArguments site_city=auto -City "AZ, Surprise" ResStockArguments site_city=auto -City "AZ, Tempe" ResStockArguments site_city=auto -City "AZ, Tucson" ResStockArguments site_city=auto -City "AZ, Yuma" ResStockArguments site_city=auto -City "CA, Alameda" ResStockArguments site_city=auto -City "CA, Alhambra" ResStockArguments site_city=auto -City "CA, Aliso Viejo" ResStockArguments site_city=auto -City "CA, Altadena" ResStockArguments site_city=auto -City "CA, Anaheim" ResStockArguments site_city=auto -City "CA, Antioch" ResStockArguments site_city=auto -City "CA, Apple Valley" ResStockArguments site_city=auto -City "CA, Arcadia" ResStockArguments site_city=auto -City "CA, Arden-Arcade" ResStockArguments site_city=auto -City "CA, Bakersfield" ResStockArguments site_city=auto -City "CA, Baldwin Park" ResStockArguments site_city=auto -City "CA, Bellflower" ResStockArguments site_city=auto -City "CA, Berkeley" ResStockArguments site_city=auto -City "CA, Beverly Hills" ResStockArguments site_city=auto -City "CA, Brea" ResStockArguments site_city=auto -City "CA, Brentwood" ResStockArguments site_city=auto -City "CA, Buena Park" ResStockArguments site_city=auto -City "CA, Burbank" ResStockArguments site_city=auto -City "CA, Camarillo" ResStockArguments site_city=auto -City "CA, Campbell" ResStockArguments site_city=auto -City "CA, Carlsbad" ResStockArguments site_city=auto -City "CA, Carmichael" ResStockArguments site_city=auto -City "CA, Carson" ResStockArguments site_city=auto -City "CA, Castro Valley" ResStockArguments site_city=auto -City "CA, Cathedral City" ResStockArguments site_city=auto -City "CA, Cerritos" ResStockArguments site_city=auto -City "CA, Chico" ResStockArguments site_city=auto -City "CA, Chino Hills" ResStockArguments site_city=auto -City "CA, Chino" ResStockArguments site_city=auto -City "CA, Chula Vista" ResStockArguments site_city=auto -City "CA, Citrus Heights" ResStockArguments site_city=auto -City "CA, Clovis" ResStockArguments site_city=auto -City "CA, Colton" ResStockArguments site_city=auto -City "CA, Compton" ResStockArguments site_city=auto -City "CA, Concord" ResStockArguments site_city=auto -City "CA, Corona" ResStockArguments site_city=auto -City "CA, Costa Mesa" ResStockArguments site_city=auto -City "CA, Covina" ResStockArguments site_city=auto -City "CA, Culver City" ResStockArguments site_city=auto -City "CA, Cupertino" ResStockArguments site_city=auto -City "CA, Cypress" ResStockArguments site_city=auto -City "CA, Daly City" ResStockArguments site_city=auto -City "CA, Dana Point" ResStockArguments site_city=auto -City "CA, Danville" ResStockArguments site_city=auto -City "CA, Davis" ResStockArguments site_city=auto -City "CA, Diamond Bar" ResStockArguments site_city=auto -City "CA, Downey" ResStockArguments site_city=auto -City "CA, Dublin" ResStockArguments site_city=auto -City "CA, East Los Angeles" ResStockArguments site_city=auto -City "CA, El Cajon" ResStockArguments site_city=auto -City "CA, El Dorado Hills" ResStockArguments site_city=auto -City "CA, El Monte" ResStockArguments site_city=auto -City "CA, Elk Grove" ResStockArguments site_city=auto -City "CA, Encinitas" ResStockArguments site_city=auto -City "CA, Escondido" ResStockArguments site_city=auto -City "CA, Fairfield" ResStockArguments site_city=auto -City "CA, Florence-Graham" ResStockArguments site_city=auto -City "CA, Florin" ResStockArguments site_city=auto -City "CA, Folsom" ResStockArguments site_city=auto -City "CA, Fontana" ResStockArguments site_city=auto -City "CA, Fountain Valley" ResStockArguments site_city=auto -City "CA, Fremont" ResStockArguments site_city=auto -City "CA, Fresno" ResStockArguments site_city=auto -City "CA, Fullerton" ResStockArguments site_city=auto -City "CA, Garden Grove" ResStockArguments site_city=auto -City "CA, Gardena" ResStockArguments site_city=auto -City "CA, Gilroy" ResStockArguments site_city=auto -City "CA, Glendale" ResStockArguments site_city=auto -City "CA, Glendora" ResStockArguments site_city=auto -City "CA, Hacienda Heights" ResStockArguments site_city=auto -City "CA, Hanford" ResStockArguments site_city=auto -City "CA, Hawthorne" ResStockArguments site_city=auto -City "CA, Hayward" ResStockArguments site_city=auto -City "CA, Hemet" ResStockArguments site_city=auto -City "CA, Hesperia" ResStockArguments site_city=auto -City "CA, Highland" ResStockArguments site_city=auto -City "CA, Huntington Beach" ResStockArguments site_city=auto -City "CA, Huntington Park" ResStockArguments site_city=auto -City "CA, Indio" ResStockArguments site_city=auto -City "CA, Inglewood" ResStockArguments site_city=auto -City "CA, Irvine" ResStockArguments site_city=auto -City "CA, La Habra" ResStockArguments site_city=auto -City "CA, La Mesa" ResStockArguments site_city=auto -City "CA, La Quinta" ResStockArguments site_city=auto -City "CA, Laguna Niguel" ResStockArguments site_city=auto -City "CA, Lake Elsinore" ResStockArguments site_city=auto -City "CA, Lake Forest" ResStockArguments site_city=auto -City "CA, Lakewood" ResStockArguments site_city=auto -City "CA, Lancaster" ResStockArguments site_city=auto -City "CA, Lincoln" ResStockArguments site_city=auto -City "CA, Livermore" ResStockArguments site_city=auto -City "CA, Lodi" ResStockArguments site_city=auto -City "CA, Long Beach" ResStockArguments site_city=auto -City "CA, Los Angeles" ResStockArguments site_city=auto -City "CA, Lynwood" ResStockArguments site_city=auto -City "CA, Madera" ResStockArguments site_city=auto -City "CA, Manhattan Beach" ResStockArguments site_city=auto -City "CA, Manteca" ResStockArguments site_city=auto -City "CA, Martinez" ResStockArguments site_city=auto -City "CA, Menifee" ResStockArguments site_city=auto -City "CA, Merced" ResStockArguments site_city=auto -City "CA, Milpitas" ResStockArguments site_city=auto -City "CA, Mission Viejo" ResStockArguments site_city=auto -City "CA, Modesto" ResStockArguments site_city=auto -City "CA, Montebello" ResStockArguments site_city=auto -City "CA, Monterey Park" ResStockArguments site_city=auto -City "CA, Moreno Valley" ResStockArguments site_city=auto -City "CA, Mountain View" ResStockArguments site_city=auto -City "CA, Murrieta" ResStockArguments site_city=auto -City "CA, Napa" ResStockArguments site_city=auto -City "CA, National City" ResStockArguments site_city=auto -City "CA, Newport Beach" ResStockArguments site_city=auto -City "CA, North Highlands" ResStockArguments site_city=auto -City "CA, Norwalk" ResStockArguments site_city=auto -City "CA, Novato" ResStockArguments site_city=auto -City "CA, Oakland" ResStockArguments site_city=auto -City "CA, Oceanside" ResStockArguments site_city=auto -City "CA, Ontario" ResStockArguments site_city=auto -City "CA, Orange" ResStockArguments site_city=auto -City "CA, Oxnard" ResStockArguments site_city=auto -City "CA, Palm Desert" ResStockArguments site_city=auto -City "CA, Palm Springs" ResStockArguments site_city=auto -City "CA, Palmdale" ResStockArguments site_city=auto -City "CA, Palo Alto" ResStockArguments site_city=auto -City "CA, Pasadena" ResStockArguments site_city=auto -City "CA, Perris" ResStockArguments site_city=auto -City "CA, Petaluma" ResStockArguments site_city=auto -City "CA, Pico Rivera" ResStockArguments site_city=auto -City "CA, Pittsburg" ResStockArguments site_city=auto -City "CA, Placentia" ResStockArguments site_city=auto -City "CA, Pleasanton" ResStockArguments site_city=auto -City "CA, Pomona" ResStockArguments site_city=auto -City "CA, Porterville" ResStockArguments site_city=auto -City "CA, Poway" ResStockArguments site_city=auto -City "CA, Rancho Cordova" ResStockArguments site_city=auto -City "CA, Rancho Cucamonga" ResStockArguments site_city=auto -City "CA, Rancho Palos Verdes" ResStockArguments site_city=auto -City "CA, Rancho Santa Margarita" ResStockArguments site_city=auto -City "CA, Redding" ResStockArguments site_city=auto -City "CA, Redlands" ResStockArguments site_city=auto -City "CA, Redondo Beach" ResStockArguments site_city=auto -City "CA, Redwood City" ResStockArguments site_city=auto -City "CA, Rialto" ResStockArguments site_city=auto -City "CA, Richmond" ResStockArguments site_city=auto -City "CA, Riverside" ResStockArguments site_city=auto -City "CA, Rocklin" ResStockArguments site_city=auto -City "CA, Rohnert Park" ResStockArguments site_city=auto -City "CA, Rosemead" ResStockArguments site_city=auto -City "CA, Roseville" ResStockArguments site_city=auto -City "CA, Rowland Heights" ResStockArguments site_city=auto -City "CA, Sacramento" ResStockArguments site_city=auto -City "CA, Salinas" ResStockArguments site_city=auto -City "CA, San Bernardino" ResStockArguments site_city=auto -City "CA, San Bruno" ResStockArguments site_city=auto -City "CA, San Buenaventura Ventura" ResStockArguments site_city=auto -City "CA, San Clemente" ResStockArguments site_city=auto -City "CA, San Diego" ResStockArguments site_city=auto -City "CA, San Francisco" ResStockArguments site_city=auto -City "CA, San Jose" ResStockArguments site_city=auto -City "CA, San Leandro" ResStockArguments site_city=auto -City "CA, San Luis Obispo" ResStockArguments site_city=auto -City "CA, San Marcos" ResStockArguments site_city=auto -City "CA, San Mateo" ResStockArguments site_city=auto -City "CA, San Rafael" ResStockArguments site_city=auto -City "CA, San Ramon" ResStockArguments site_city=auto -City "CA, Santa Ana" ResStockArguments site_city=auto -City "CA, Santa Barbara" ResStockArguments site_city=auto -City "CA, Santa Clara" ResStockArguments site_city=auto -City "CA, Santa Clarita" ResStockArguments site_city=auto -City "CA, Santa Cruz" ResStockArguments site_city=auto -City "CA, Santa Maria" ResStockArguments site_city=auto -City "CA, Santa Monica" ResStockArguments site_city=auto -City "CA, Santa Rosa" ResStockArguments site_city=auto -City "CA, Santee" ResStockArguments site_city=auto -City "CA, Simi Valley" ResStockArguments site_city=auto -City "CA, South Gate" ResStockArguments site_city=auto -City "CA, South Lake Tahoe" ResStockArguments site_city=auto -City "CA, South San Francisco" ResStockArguments site_city=auto -City "CA, South Whittier" ResStockArguments site_city=auto -City "CA, Stockton" ResStockArguments site_city=auto -City "CA, Sunnyvale" ResStockArguments site_city=auto -City "CA, Temecula" ResStockArguments site_city=auto -City "CA, Thousand Oaks" ResStockArguments site_city=auto -City "CA, Torrance" ResStockArguments site_city=auto -City "CA, Tracy" ResStockArguments site_city=auto -City "CA, Tulare" ResStockArguments site_city=auto -City "CA, Turlock" ResStockArguments site_city=auto -City "CA, Tustin" ResStockArguments site_city=auto -City "CA, Union City" ResStockArguments site_city=auto -City "CA, Upland" ResStockArguments site_city=auto -City "CA, Vacaville" ResStockArguments site_city=auto -City "CA, Vallejo" ResStockArguments site_city=auto -City "CA, Victorville" ResStockArguments site_city=auto -City "CA, Visalia" ResStockArguments site_city=auto -City "CA, Vista" ResStockArguments site_city=auto -City "CA, Walnut Creek" ResStockArguments site_city=auto -City "CA, West Covina" ResStockArguments site_city=auto -City "CA, West Hollywood" ResStockArguments site_city=auto -City "CA, West Sacramento" ResStockArguments site_city=auto -City "CA, Westminster" ResStockArguments site_city=auto -City "CA, Whittier" ResStockArguments site_city=auto -City "CA, Woodland" ResStockArguments site_city=auto -City "CA, Yorba Linda" ResStockArguments site_city=auto -City "CA, Yuba City" ResStockArguments site_city=auto -City "CA, Yucaipa" ResStockArguments site_city=auto -City "CO, Arvada" ResStockArguments site_city=auto -City "CO, Aurora" ResStockArguments site_city=auto -City "CO, Boulder" ResStockArguments site_city=auto -City "CO, Broomfield" ResStockArguments site_city=auto -City "CO, Castle Rock" ResStockArguments site_city=auto -City "CO, Centennial" ResStockArguments site_city=auto -City "CO, Colorado Springs" ResStockArguments site_city=auto -City "CO, Commerce City" ResStockArguments site_city=auto -City "CO, Denver" ResStockArguments site_city=auto -City "CO, Englewood" ResStockArguments site_city=auto -City "CO, Fort Collins" ResStockArguments site_city=auto -City "CO, Grand Junction" ResStockArguments site_city=auto -City "CO, Greeley" ResStockArguments site_city=auto -City "CO, Highlands Ranch" ResStockArguments site_city=auto -City "CO, Lakewood" ResStockArguments site_city=auto -City "CO, Littleton" ResStockArguments site_city=auto -City "CO, Longmont" ResStockArguments site_city=auto -City "CO, Loveland" ResStockArguments site_city=auto -City "CO, Parker" ResStockArguments site_city=auto -City "CO, Pueblo" ResStockArguments site_city=auto -City "CO, Thornton" ResStockArguments site_city=auto -City "CO, Westminster" ResStockArguments site_city=auto -City "CT, Bridgeport" ResStockArguments site_city=auto -City "CT, Bristol" ResStockArguments site_city=auto -City "CT, Danbury" ResStockArguments site_city=auto -City "CT, East Hartford" ResStockArguments site_city=auto -City "CT, Hartford" ResStockArguments site_city=auto -City "CT, Meriden" ResStockArguments site_city=auto -City "CT, Middletown" ResStockArguments site_city=auto -City "CT, Milford City Balance" ResStockArguments site_city=auto -City "CT, New Britain" ResStockArguments site_city=auto -City "CT, New Haven" ResStockArguments site_city=auto -City "CT, Norwalk" ResStockArguments site_city=auto -City "CT, Norwich" ResStockArguments site_city=auto -City "CT, Shelton" ResStockArguments site_city=auto -City "CT, Stamford" ResStockArguments site_city=auto -City "CT, Stratford" ResStockArguments site_city=auto -City "CT, Torrington" ResStockArguments site_city=auto -City "CT, Waterbury" ResStockArguments site_city=auto -City "CT, West Hartford" ResStockArguments site_city=auto -City "CT, West Haven" ResStockArguments site_city=auto -City "DC, Washington" ResStockArguments site_city=auto -City "DE, Dover" ResStockArguments site_city=auto -City "DE, Wilmington" ResStockArguments site_city=auto -City "FL, Alafaya" ResStockArguments site_city=auto -City "FL, Altamonte Springs" ResStockArguments site_city=auto -City "FL, Apopka" ResStockArguments site_city=auto -City "FL, Aventura" ResStockArguments site_city=auto -City "FL, Boca Raton" ResStockArguments site_city=auto -City "FL, Bonita Springs" ResStockArguments site_city=auto -City "FL, Boynton Beach" ResStockArguments site_city=auto -City "FL, Bradenton" ResStockArguments site_city=auto -City "FL, Brandon" ResStockArguments site_city=auto -City "FL, Cape Coral" ResStockArguments site_city=auto -City "FL, Carrollwood" ResStockArguments site_city=auto -City "FL, Clearwater" ResStockArguments site_city=auto -City "FL, Coconut Creek" ResStockArguments site_city=auto -City "FL, Coral Gables" ResStockArguments site_city=auto -City "FL, Coral Springs" ResStockArguments site_city=auto -City "FL, Country Club" ResStockArguments site_city=auto -City "FL, Dania Beach" ResStockArguments site_city=auto -City "FL, Davie" ResStockArguments site_city=auto -City "FL, Daytona Beach" ResStockArguments site_city=auto -City "FL, Deerfield Beach" ResStockArguments site_city=auto -City "FL, Delray Beach" ResStockArguments site_city=auto -City "FL, Deltona" ResStockArguments site_city=auto -City "FL, Doral" ResStockArguments site_city=auto -City "FL, Dunedin" ResStockArguments site_city=auto -City "FL, East Lake" ResStockArguments site_city=auto -City "FL, Estero" ResStockArguments site_city=auto -City "FL, Fort Lauderdale" ResStockArguments site_city=auto -City "FL, Fort Myers" ResStockArguments site_city=auto -City "FL, Fort Pierce" ResStockArguments site_city=auto -City "FL, Fountainebleau" ResStockArguments site_city=auto -City "FL, Four Corners" ResStockArguments site_city=auto -City "FL, Gainesville" ResStockArguments site_city=auto -City "FL, Greenacres" ResStockArguments site_city=auto -City "FL, Hallandale Beach" ResStockArguments site_city=auto -City "FL, Hialeah" ResStockArguments site_city=auto -City "FL, Hollywood" ResStockArguments site_city=auto -City "FL, Homestead" ResStockArguments site_city=auto -City "FL, Jacksonville" ResStockArguments site_city=auto -City "FL, Jupiter" ResStockArguments site_city=auto -City "FL, Kendale Lakes" ResStockArguments site_city=auto -City "FL, Kendall" ResStockArguments site_city=auto -City "FL, Kissimmee" ResStockArguments site_city=auto -City "FL, Lake Worth" ResStockArguments site_city=auto -City "FL, Lakeland" ResStockArguments site_city=auto -City "FL, Largo" ResStockArguments site_city=auto -City "FL, Lauderhill" ResStockArguments site_city=auto -City "FL, Lehigh Acres" ResStockArguments site_city=auto -City "FL, Marco Island" ResStockArguments site_city=auto -City "FL, Margate" ResStockArguments site_city=auto -City "FL, Melbourne" ResStockArguments site_city=auto -City "FL, Merritt Island" ResStockArguments site_city=auto -City "FL, Miami Beach" ResStockArguments site_city=auto -City "FL, Miami Gardens" ResStockArguments site_city=auto -City "FL, Miami" ResStockArguments site_city=auto -City "FL, Miramar" ResStockArguments site_city=auto -City "FL, Naples" ResStockArguments site_city=auto -City "FL, New Smyrna Beach" ResStockArguments site_city=auto -City "FL, North Fort Myers" ResStockArguments site_city=auto -City "FL, North Miami Beach" ResStockArguments site_city=auto -City "FL, North Miami" ResStockArguments site_city=auto -City "FL, North Port" ResStockArguments site_city=auto -City "FL, Oakland Park" ResStockArguments site_city=auto -City "FL, Ocala" ResStockArguments site_city=auto -City "FL, Orlando" ResStockArguments site_city=auto -City "FL, Ormond Beach" ResStockArguments site_city=auto -City "FL, Palm Bay" ResStockArguments site_city=auto -City "FL, Palm Beach Gardens" ResStockArguments site_city=auto -City "FL, Palm Coast" ResStockArguments site_city=auto -City "FL, Palm Harbor" ResStockArguments site_city=auto -City "FL, Panama City Beach" ResStockArguments site_city=auto -City "FL, Panama City" ResStockArguments site_city=auto -City "FL, Pembroke Pines" ResStockArguments site_city=auto -City "FL, Pensacola" ResStockArguments site_city=auto -City "FL, Pine Hills" ResStockArguments site_city=auto -City "FL, Pinellas Park" ResStockArguments site_city=auto -City "FL, Plantation" ResStockArguments site_city=auto -City "FL, Poinciana" ResStockArguments site_city=auto -City "FL, Pompano Beach" ResStockArguments site_city=auto -City "FL, Port Charlotte" ResStockArguments site_city=auto -City "FL, Port Orange" ResStockArguments site_city=auto -City "FL, Port St Lucie" ResStockArguments site_city=auto -City "FL, Riverview" ResStockArguments site_city=auto -City "FL, Riviera Beach" ResStockArguments site_city=auto -City "FL, Sanford" ResStockArguments site_city=auto -City "FL, Sarasota" ResStockArguments site_city=auto -City "FL, Spring Hill" ResStockArguments site_city=auto -City "FL, St Cloud" ResStockArguments site_city=auto -City "FL, St Petersburg" ResStockArguments site_city=auto -City "FL, Sun City Center" ResStockArguments site_city=auto -City "FL, Sunny Isles Beach" ResStockArguments site_city=auto -City "FL, Sunrise" ResStockArguments site_city=auto -City "FL, Tallahassee" ResStockArguments site_city=auto -City "FL, Tamarac" ResStockArguments site_city=auto -City "FL, Tamiami" ResStockArguments site_city=auto -City "FL, Tampa" ResStockArguments site_city=auto -City "FL, The Hammocks" ResStockArguments site_city=auto -City "FL, The Villages" ResStockArguments site_city=auto -City "FL, Titusville" ResStockArguments site_city=auto -City "FL, Town N Country" ResStockArguments site_city=auto -City "FL, University" ResStockArguments site_city=auto -City "FL, Venice" ResStockArguments site_city=auto -City "FL, Wellington" ResStockArguments site_city=auto -City "FL, Wesley Chapel" ResStockArguments site_city=auto -City "FL, West Palm Beach" ResStockArguments site_city=auto -City "FL, Weston" ResStockArguments site_city=auto -City "FL, Winter Haven" ResStockArguments site_city=auto -City "GA, Albany" ResStockArguments site_city=auto -City "GA, Alpharetta" ResStockArguments site_city=auto -City "GA, Athens-Clarke County Unified Government Balance" ResStockArguments site_city=auto -City "GA, Atlanta" ResStockArguments site_city=auto -City "GA, Augusta-Richmond County Consolidated Government Balance" ResStockArguments site_city=auto -City "GA, Columbus" ResStockArguments site_city=auto -City "GA, Dunwoody" ResStockArguments site_city=auto -City "GA, East Point" ResStockArguments site_city=auto -City "GA, Hinesville" ResStockArguments site_city=auto -City "GA, Johns Creek" ResStockArguments site_city=auto -City "GA, Mableton" ResStockArguments site_city=auto -City "GA, Macon" ResStockArguments site_city=auto -City "GA, Marietta" ResStockArguments site_city=auto -City "GA, Newnan" ResStockArguments site_city=auto -City "GA, North Atlanta" ResStockArguments site_city=auto -City "GA, Rome" ResStockArguments site_city=auto -City "GA, Roswell" ResStockArguments site_city=auto -City "GA, Sandy Springs" ResStockArguments site_city=auto -City "GA, Savannah" ResStockArguments site_city=auto -City "GA, Smyrna" ResStockArguments site_city=auto -City "GA, Valdosta" ResStockArguments site_city=auto -City "GA, Warner Robins" ResStockArguments site_city=auto -City "HI, East Honolulu" ResStockArguments site_city=auto -City "HI, Hilo" ResStockArguments site_city=auto -City "HI, Kailua" ResStockArguments site_city=auto -City "HI, Urban Honolulu" ResStockArguments site_city=auto -City "IA, Ames" ResStockArguments site_city=auto -City "IA, Ankeny" ResStockArguments site_city=auto -City "IA, Cedar Falls" ResStockArguments site_city=auto -City "IA, Cedar Rapids" ResStockArguments site_city=auto -City "IA, Council Bluffs" ResStockArguments site_city=auto -City "IA, Davenport" ResStockArguments site_city=auto -City "IA, Des Moines" ResStockArguments site_city=auto -City "IA, Dubuque" ResStockArguments site_city=auto -City "IA, Iowa City" ResStockArguments site_city=auto -City "IA, Marion" ResStockArguments site_city=auto -City "IA, Sioux City" ResStockArguments site_city=auto -City "IA, Urbandale" ResStockArguments site_city=auto -City "IA, Waterloo" ResStockArguments site_city=auto -City "IA, West Des Moines" ResStockArguments site_city=auto -City "ID, Boise City" ResStockArguments site_city=auto -City "ID, Caldwell" ResStockArguments site_city=auto -City "ID, Coeur Dalene" ResStockArguments site_city=auto -City "ID, Idaho Falls" ResStockArguments site_city=auto -City "ID, Meridian" ResStockArguments site_city=auto -City "ID, Nampa" ResStockArguments site_city=auto -City "ID, Pocatello" ResStockArguments site_city=auto -City "ID, Twin Falls" ResStockArguments site_city=auto -City "IL, Arlington Heights" ResStockArguments site_city=auto -City "IL, Aurora" ResStockArguments site_city=auto -City "IL, Belleville" ResStockArguments site_city=auto -City "IL, Berwyn" ResStockArguments site_city=auto -City "IL, Bloomington" ResStockArguments site_city=auto -City "IL, Bolingbrook" ResStockArguments site_city=auto -City "IL, Buffalo Grove" ResStockArguments site_city=auto -City "IL, Calumet City" ResStockArguments site_city=auto -City "IL, Carol Stream" ResStockArguments site_city=auto -City "IL, Champaign" ResStockArguments site_city=auto -City "IL, Chicago" ResStockArguments site_city=auto -City "IL, Cicero" ResStockArguments site_city=auto -City "IL, Crystal Lake" ResStockArguments site_city=auto -City "IL, Decatur" ResStockArguments site_city=auto -City "IL, Dekalb" ResStockArguments site_city=auto -City "IL, Des Plaines" ResStockArguments site_city=auto -City "IL, Downers Grove" ResStockArguments site_city=auto -City "IL, Elgin" ResStockArguments site_city=auto -City "IL, Elmhurst" ResStockArguments site_city=auto -City "IL, Evanston" ResStockArguments site_city=auto -City "IL, Glenview" ResStockArguments site_city=auto -City "IL, Hoffman Estates" ResStockArguments site_city=auto -City "IL, Joliet" ResStockArguments site_city=auto -City "IL, Lombard" ResStockArguments site_city=auto -City "IL, Moline" ResStockArguments site_city=auto -City "IL, Mount Prospect" ResStockArguments site_city=auto -City "IL, Naperville" ResStockArguments site_city=auto -City "IL, Normal" ResStockArguments site_city=auto -City "IL, Oak Lawn" ResStockArguments site_city=auto -City "IL, Oak Park" ResStockArguments site_city=auto -City "IL, Orland Park" ResStockArguments site_city=auto -City "IL, Palatine" ResStockArguments site_city=auto -City "IL, Peoria" ResStockArguments site_city=auto -City "IL, Quincy" ResStockArguments site_city=auto -City "IL, Rock Island" ResStockArguments site_city=auto -City "IL, Rockford" ResStockArguments site_city=auto -City "IL, Schaumburg" ResStockArguments site_city=auto -City "IL, Skokie" ResStockArguments site_city=auto -City "IL, Springfield" ResStockArguments site_city=auto -City "IL, Tinley Park" ResStockArguments site_city=auto -City "IL, Urbana" ResStockArguments site_city=auto -City "IL, Waukegan" ResStockArguments site_city=auto -City "IL, Wheaton" ResStockArguments site_city=auto -City "IL, Wheeling" ResStockArguments site_city=auto -City "IN, Anderson" ResStockArguments site_city=auto -City "IN, Bloomington" ResStockArguments site_city=auto -City "IN, Carmel" ResStockArguments site_city=auto -City "IN, Columbus" ResStockArguments site_city=auto -City "IN, Elkhart" ResStockArguments site_city=auto -City "IN, Evansville" ResStockArguments site_city=auto -City "IN, Fishers" ResStockArguments site_city=auto -City "IN, Fort Wayne" ResStockArguments site_city=auto -City "IN, Gary" ResStockArguments site_city=auto -City "IN, Greenwood" ResStockArguments site_city=auto -City "IN, Hammond" ResStockArguments site_city=auto -City "IN, Indianapolis City Balance" ResStockArguments site_city=auto -City "IN, Jeffersonville" ResStockArguments site_city=auto -City "IN, Kokomo" ResStockArguments site_city=auto -City "IN, Lafayette" ResStockArguments site_city=auto -City "IN, Lawrence" ResStockArguments site_city=auto -City "IN, Mishawaka" ResStockArguments site_city=auto -City "IN, Muncie" ResStockArguments site_city=auto -City "IN, New Albany" ResStockArguments site_city=auto -City "IN, Noblesville" ResStockArguments site_city=auto -City "IN, Portage" ResStockArguments site_city=auto -City "IN, Richmond" ResStockArguments site_city=auto -City "IN, South Bend" ResStockArguments site_city=auto -City "IN, Terre Haute" ResStockArguments site_city=auto -City "KS, Hutchinson" ResStockArguments site_city=auto -City "KS, Kansas City" ResStockArguments site_city=auto -City "KS, Lawrence" ResStockArguments site_city=auto -City "KS, Lenexa" ResStockArguments site_city=auto -City "KS, Manhattan" ResStockArguments site_city=auto -City "KS, Olathe" ResStockArguments site_city=auto -City "KS, Overland Park" ResStockArguments site_city=auto -City "KS, Salina" ResStockArguments site_city=auto -City "KS, Shawnee" ResStockArguments site_city=auto -City "KS, Topeka" ResStockArguments site_city=auto -City "KS, Wichita" ResStockArguments site_city=auto -City "KY, Bowling Green" ResStockArguments site_city=auto -City "KY, Covington" ResStockArguments site_city=auto -City "KY, Lexington-Fayette" ResStockArguments site_city=auto -City "KY, Louisville Jefferson County Metro Government Balance" ResStockArguments site_city=auto -City "KY, Owensboro" ResStockArguments site_city=auto -City "LA, Alexandria" ResStockArguments site_city=auto -City "LA, Baton Rouge" ResStockArguments site_city=auto -City "LA, Bossier City" ResStockArguments site_city=auto -City "LA, Kenner" ResStockArguments site_city=auto -City "LA, Lafayette" ResStockArguments site_city=auto -City "LA, Lake Charles" ResStockArguments site_city=auto -City "LA, Metairie" ResStockArguments site_city=auto -City "LA, Monroe" ResStockArguments site_city=auto -City "LA, New Orleans" ResStockArguments site_city=auto -City "LA, Shreveport" ResStockArguments site_city=auto -City "MA, Arlington" ResStockArguments site_city=auto -City "MA, Attleboro" ResStockArguments site_city=auto -City "MA, Barnstable Town" ResStockArguments site_city=auto -City "MA, Beverly" ResStockArguments site_city=auto -City "MA, Boston" ResStockArguments site_city=auto -City "MA, Brockton" ResStockArguments site_city=auto -City "MA, Brookline" ResStockArguments site_city=auto -City "MA, Cambridge" ResStockArguments site_city=auto -City "MA, Chicopee" ResStockArguments site_city=auto -City "MA, Everett" ResStockArguments site_city=auto -City "MA, Fall River" ResStockArguments site_city=auto -City "MA, Fitchburg" ResStockArguments site_city=auto -City "MA, Framingham" ResStockArguments site_city=auto -City "MA, Haverhill" ResStockArguments site_city=auto -City "MA, Holyoke" ResStockArguments site_city=auto -City "MA, Lawrence" ResStockArguments site_city=auto -City "MA, Leominster" ResStockArguments site_city=auto -City "MA, Lowell" ResStockArguments site_city=auto -City "MA, Lynn" ResStockArguments site_city=auto -City "MA, Malden" ResStockArguments site_city=auto -City "MA, Marlborough" ResStockArguments site_city=auto -City "MA, Medford" ResStockArguments site_city=auto -City "MA, Methuen Town" ResStockArguments site_city=auto -City "MA, New Bedford" ResStockArguments site_city=auto -City "MA, Newton" ResStockArguments site_city=auto -City "MA, Peabody" ResStockArguments site_city=auto -City "MA, Pittsfield" ResStockArguments site_city=auto -City "MA, Quincy" ResStockArguments site_city=auto -City "MA, Revere" ResStockArguments site_city=auto -City "MA, Salem" ResStockArguments site_city=auto -City "MA, Somerville" ResStockArguments site_city=auto -City "MA, Springfield" ResStockArguments site_city=auto -City "MA, Taunton" ResStockArguments site_city=auto -City "MA, Waltham" ResStockArguments site_city=auto -City "MA, Watertown Town" ResStockArguments site_city=auto -City "MA, Westfield" ResStockArguments site_city=auto -City "MA, Weymouth Town" ResStockArguments site_city=auto -City "MA, Woburn" ResStockArguments site_city=auto -City "MA, Worcester" ResStockArguments site_city=auto -City "MD, Annapolis" ResStockArguments site_city=auto -City "MD, Aspen Hill" ResStockArguments site_city=auto -City "MD, Baltimore" ResStockArguments site_city=auto -City "MD, Bel Air South" ResStockArguments site_city=auto -City "MD, Bethesda" ResStockArguments site_city=auto -City "MD, Bowie" ResStockArguments site_city=auto -City "MD, Catonsville" ResStockArguments site_city=auto -City "MD, Columbia" ResStockArguments site_city=auto -City "MD, Dundalk" ResStockArguments site_city=auto -City "MD, Ellicott City" ResStockArguments site_city=auto -City "MD, Essex" ResStockArguments site_city=auto -City "MD, Frederick" ResStockArguments site_city=auto -City "MD, Gaithersburg" ResStockArguments site_city=auto -City "MD, Germantown" ResStockArguments site_city=auto -City "MD, Glen Burnie" ResStockArguments site_city=auto -City "MD, Hagerstown" ResStockArguments site_city=auto -City "MD, North Bethesda" ResStockArguments site_city=auto -City "MD, Ocean City" ResStockArguments site_city=auto -City "MD, Odenton" ResStockArguments site_city=auto -City "MD, Potomac" ResStockArguments site_city=auto -City "MD, Rockville" ResStockArguments site_city=auto -City "MD, Severn" ResStockArguments site_city=auto -City "MD, Silver Spring" ResStockArguments site_city=auto -City "MD, Towson" ResStockArguments site_city=auto -City "MD, Waldorf" ResStockArguments site_city=auto -City "MD, Wheaton" ResStockArguments site_city=auto -City "MD, Woodlawn" ResStockArguments site_city=auto -City "ME, Bangor" ResStockArguments site_city=auto -City "ME, Lewiston" ResStockArguments site_city=auto -City "ME, Portland" ResStockArguments site_city=auto -City "MI, Ann Arbor" ResStockArguments site_city=auto -City "MI, Battle Creek" ResStockArguments site_city=auto -City "MI, Bay City" ResStockArguments site_city=auto -City "MI, Dearborn Heights" ResStockArguments site_city=auto -City "MI, Dearborn" ResStockArguments site_city=auto -City "MI, Detroit" ResStockArguments site_city=auto -City "MI, Farmington Hills" ResStockArguments site_city=auto -City "MI, Flint" ResStockArguments site_city=auto -City "MI, Grand Rapids" ResStockArguments site_city=auto -City "MI, Jackson" ResStockArguments site_city=auto -City "MI, Kalamazoo" ResStockArguments site_city=auto -City "MI, Kentwood" ResStockArguments site_city=auto -City "MI, Lansing" ResStockArguments site_city=auto -City "MI, Lincoln Park" ResStockArguments site_city=auto -City "MI, Livonia" ResStockArguments site_city=auto -City "MI, Midland" ResStockArguments site_city=auto -City "MI, Muskegon" ResStockArguments site_city=auto -City "MI, Novi" ResStockArguments site_city=auto -City "MI, Pontiac" ResStockArguments site_city=auto -City "MI, Portage" ResStockArguments site_city=auto -City "MI, Rochester Hills" ResStockArguments site_city=auto -City "MI, Roseville" ResStockArguments site_city=auto -City "MI, Royal Oak" ResStockArguments site_city=auto -City "MI, Saginaw" ResStockArguments site_city=auto -City "MI, Southfield" ResStockArguments site_city=auto -City "MI, St Clair Shores" ResStockArguments site_city=auto -City "MI, Sterling Heights" ResStockArguments site_city=auto -City "MI, Taylor" ResStockArguments site_city=auto -City "MI, Troy" ResStockArguments site_city=auto -City "MI, Warren" ResStockArguments site_city=auto -City "MI, Westland" ResStockArguments site_city=auto -City "MI, Wyoming" ResStockArguments site_city=auto -City "MN, Apple Valley" ResStockArguments site_city=auto -City "MN, Blaine" ResStockArguments site_city=auto -City "MN, Bloomington" ResStockArguments site_city=auto -City "MN, Brooklyn Park" ResStockArguments site_city=auto -City "MN, Burnsville" ResStockArguments site_city=auto -City "MN, Coon Rapids" ResStockArguments site_city=auto -City "MN, Duluth" ResStockArguments site_city=auto -City "MN, Eagan" ResStockArguments site_city=auto -City "MN, Eden Prairie" ResStockArguments site_city=auto -City "MN, Edina" ResStockArguments site_city=auto -City "MN, Lakeville" ResStockArguments site_city=auto -City "MN, Mankato" ResStockArguments site_city=auto -City "MN, Maple Grove" ResStockArguments site_city=auto -City "MN, Maplewood" ResStockArguments site_city=auto -City "MN, Minneapolis" ResStockArguments site_city=auto -City "MN, Minnetonka" ResStockArguments site_city=auto -City "MN, Moorhead" ResStockArguments site_city=auto -City "MN, Plymouth" ResStockArguments site_city=auto -City "MN, Richfield" ResStockArguments site_city=auto -City "MN, Rochester" ResStockArguments site_city=auto -City "MN, Roseville" ResStockArguments site_city=auto -City "MN, St Cloud" ResStockArguments site_city=auto -City "MN, St Louis Park" ResStockArguments site_city=auto -City "MN, St Paul" ResStockArguments site_city=auto -City "MN, Woodbury" ResStockArguments site_city=auto -City "MO, Blue Springs" ResStockArguments site_city=auto -City "MO, Cape Girardeau" ResStockArguments site_city=auto -City "MO, Chesterfield" ResStockArguments site_city=auto -City "MO, Columbia" ResStockArguments site_city=auto -City "MO, Florissant" ResStockArguments site_city=auto -City "MO, Independence" ResStockArguments site_city=auto -City "MO, Jefferson City" ResStockArguments site_city=auto -City "MO, Joplin" ResStockArguments site_city=auto -City "MO, Kansas City" ResStockArguments site_city=auto -City "MO, Lees Summit" ResStockArguments site_city=auto -City "MO, Ofallon" ResStockArguments site_city=auto -City "MO, Springfield" ResStockArguments site_city=auto -City "MO, St Charles" ResStockArguments site_city=auto -City "MO, St Joseph" ResStockArguments site_city=auto -City "MO, St Louis" ResStockArguments site_city=auto -City "MO, St Peters" ResStockArguments site_city=auto -City "MO, University City" ResStockArguments site_city=auto -City "MS, Biloxi" ResStockArguments site_city=auto -City "MS, Gulfport" ResStockArguments site_city=auto -City "MS, Hattiesburg" ResStockArguments site_city=auto -City "MS, Jackson" ResStockArguments site_city=auto -City "MS, Meridian" ResStockArguments site_city=auto -City "MS, Southaven" ResStockArguments site_city=auto -City "MS, Tupelo" ResStockArguments site_city=auto -City "MT, Billings" ResStockArguments site_city=auto -City "MT, Bozeman" ResStockArguments site_city=auto -City "MT, Butte-Silver Bow Balance" ResStockArguments site_city=auto -City "MT, Great Falls" ResStockArguments site_city=auto -City "MT, Missoula" ResStockArguments site_city=auto -City "NC, Asheville" ResStockArguments site_city=auto -City "NC, Burlington" ResStockArguments site_city=auto -City "NC, Cary" ResStockArguments site_city=auto -City "NC, Chapel Hill" ResStockArguments site_city=auto -City "NC, Charlotte" ResStockArguments site_city=auto -City "NC, Concord" ResStockArguments site_city=auto -City "NC, Durham" ResStockArguments site_city=auto -City "NC, Fayetteville" ResStockArguments site_city=auto -City "NC, Gastonia" ResStockArguments site_city=auto -City "NC, Goldsboro" ResStockArguments site_city=auto -City "NC, Greensboro" ResStockArguments site_city=auto -City "NC, Greenville" ResStockArguments site_city=auto -City "NC, Hickory" ResStockArguments site_city=auto -City "NC, High Point" ResStockArguments site_city=auto -City "NC, Huntersville" ResStockArguments site_city=auto -City "NC, Jacksonville" ResStockArguments site_city=auto -City "NC, Kannapolis" ResStockArguments site_city=auto -City "NC, Raleigh" ResStockArguments site_city=auto -City "NC, Rocky Mount" ResStockArguments site_city=auto -City "NC, Wilmington" ResStockArguments site_city=auto -City "NC, Wilson" ResStockArguments site_city=auto -City "NC, Winston-Salem" ResStockArguments site_city=auto -City "ND, Bismarck" ResStockArguments site_city=auto -City "ND, Fargo" ResStockArguments site_city=auto -City "ND, Grand Forks" ResStockArguments site_city=auto -City "ND, Minot" ResStockArguments site_city=auto -City "NE, Bellevue" ResStockArguments site_city=auto -City "NE, Grand Island" ResStockArguments site_city=auto -City "NE, Lincoln" ResStockArguments site_city=auto -City "NE, Omaha" ResStockArguments site_city=auto -City "NH, Concord" ResStockArguments site_city=auto -City "NH, Manchester" ResStockArguments site_city=auto -City "NH, Nashua" ResStockArguments site_city=auto -City "NJ, Atlantic City" ResStockArguments site_city=auto -City "NJ, Bayonne" ResStockArguments site_city=auto -City "NJ, Camden" ResStockArguments site_city=auto -City "NJ, Clifton" ResStockArguments site_city=auto -City "NJ, East Orange" ResStockArguments site_city=auto -City "NJ, Elizabeth" ResStockArguments site_city=auto -City "NJ, Fort Lee" ResStockArguments site_city=auto -City "NJ, Hackensack" ResStockArguments site_city=auto -City "NJ, Hoboken" ResStockArguments site_city=auto -City "NJ, Jersey City" ResStockArguments site_city=auto -City "NJ, Linden" ResStockArguments site_city=auto -City "NJ, New Brunswick" ResStockArguments site_city=auto -City "NJ, Newark" ResStockArguments site_city=auto -City "NJ, Ocean City" ResStockArguments site_city=auto -City "NJ, Passaic" ResStockArguments site_city=auto -City "NJ, Paterson" ResStockArguments site_city=auto -City "NJ, Perth Amboy" ResStockArguments site_city=auto -City "NJ, Plainfield" ResStockArguments site_city=auto -City "NJ, Sayreville" ResStockArguments site_city=auto -City "NJ, Toms River" ResStockArguments site_city=auto -City "NJ, Trenton" ResStockArguments site_city=auto -City "NJ, Union City" ResStockArguments site_city=auto -City "NJ, Vineland" ResStockArguments site_city=auto -City "NJ, West New York" ResStockArguments site_city=auto -City "NM, Albuquerque" ResStockArguments site_city=auto -City "NM, Clovis" ResStockArguments site_city=auto -City "NM, Farmington" ResStockArguments site_city=auto -City "NM, Las Cruces" ResStockArguments site_city=auto -City "NM, Rio Rancho" ResStockArguments site_city=auto -City "NM, Roswell" ResStockArguments site_city=auto -City "NM, Santa Fe" ResStockArguments site_city=auto -City "NM, South Valley" ResStockArguments site_city=auto -City "NV, Carson City" ResStockArguments site_city=auto -City "NV, Enterprise" ResStockArguments site_city=auto -City "NV, Henderson" ResStockArguments site_city=auto -City "NV, Las Vegas" ResStockArguments site_city=auto -City "NV, North Las Vegas" ResStockArguments site_city=auto -City "NV, Pahrump" ResStockArguments site_city=auto -City "NV, Paradise" ResStockArguments site_city=auto -City "NV, Reno" ResStockArguments site_city=auto -City "NV, Sparks" ResStockArguments site_city=auto -City "NV, Spring Valley" ResStockArguments site_city=auto -City "NV, Sunrise Manor" ResStockArguments site_city=auto -City "NV, Whitney" ResStockArguments site_city=auto -City "NY, Albany" ResStockArguments site_city=auto -City "NY, Binghamton" ResStockArguments site_city=auto -City "NY, Brighton" ResStockArguments site_city=auto -City "NY, Buffalo" ResStockArguments site_city=auto -City "NY, Cheektowaga" ResStockArguments site_city=auto -City "NY, Coram" ResStockArguments site_city=auto -City "NY, Hempstead" ResStockArguments site_city=auto -City "NY, Irondequoit" ResStockArguments site_city=auto -City "NY, Levittown" ResStockArguments site_city=auto -City "NY, Long Beach" ResStockArguments site_city=auto -City "NY, Mount Vernon" ResStockArguments site_city=auto -City "NY, New Rochelle" ResStockArguments site_city=auto -City "NY, New York" ResStockArguments site_city=auto -City "NY, Niagara Falls" ResStockArguments site_city=auto -City "NY, Rochester" ResStockArguments site_city=auto -City "NY, Rome" ResStockArguments site_city=auto -City "NY, Schenectady" ResStockArguments site_city=auto -City "NY, Syracuse" ResStockArguments site_city=auto -City "NY, Tonawanda" ResStockArguments site_city=auto -City "NY, Troy" ResStockArguments site_city=auto -City "NY, Utica" ResStockArguments site_city=auto -City "NY, West Seneca" ResStockArguments site_city=auto -City "NY, White Plains" ResStockArguments site_city=auto -City "NY, Yonkers" ResStockArguments site_city=auto -City "OH, Akron" ResStockArguments site_city=auto -City "OH, Beavercreek" ResStockArguments site_city=auto -City "OH, Boardman" ResStockArguments site_city=auto -City "OH, Canton" ResStockArguments site_city=auto -City "OH, Cincinnati" ResStockArguments site_city=auto -City "OH, Cleveland Heights" ResStockArguments site_city=auto -City "OH, Cleveland" ResStockArguments site_city=auto -City "OH, Columbus" ResStockArguments site_city=auto -City "OH, Cuyahoga Falls" ResStockArguments site_city=auto -City "OH, Dayton" ResStockArguments site_city=auto -City "OH, Delaware" ResStockArguments site_city=auto -City "OH, Dublin" ResStockArguments site_city=auto -City "OH, Elyria" ResStockArguments site_city=auto -City "OH, Euclid" ResStockArguments site_city=auto -City "OH, Fairborn" ResStockArguments site_city=auto -City "OH, Fairfield" ResStockArguments site_city=auto -City "OH, Findlay" ResStockArguments site_city=auto -City "OH, Grove City" ResStockArguments site_city=auto -City "OH, Hamilton" ResStockArguments site_city=auto -City "OH, Huber Heights" ResStockArguments site_city=auto -City "OH, Kettering" ResStockArguments site_city=auto -City "OH, Lakewood" ResStockArguments site_city=auto -City "OH, Lancaster" ResStockArguments site_city=auto -City "OH, Lima" ResStockArguments site_city=auto -City "OH, Lorain" ResStockArguments site_city=auto -City "OH, Mansfield" ResStockArguments site_city=auto -City "OH, Marion" ResStockArguments site_city=auto -City "OH, Mentor" ResStockArguments site_city=auto -City "OH, Middletown" ResStockArguments site_city=auto -City "OH, Newark" ResStockArguments site_city=auto -City "OH, Parma" ResStockArguments site_city=auto -City "OH, Springfield" ResStockArguments site_city=auto -City "OH, Stow" ResStockArguments site_city=auto -City "OH, Strongsville" ResStockArguments site_city=auto -City "OH, Toledo" ResStockArguments site_city=auto -City "OH, Warren" ResStockArguments site_city=auto -City "OH, Youngstown" ResStockArguments site_city=auto -City "OK, Bartlesville" ResStockArguments site_city=auto -City "OK, Broken Arrow" ResStockArguments site_city=auto -City "OK, Edmond" ResStockArguments site_city=auto -City "OK, Enid" ResStockArguments site_city=auto -City "OK, Lawton" ResStockArguments site_city=auto -City "OK, Midwest City" ResStockArguments site_city=auto -City "OK, Moore" ResStockArguments site_city=auto -City "OK, Muskogee" ResStockArguments site_city=auto -City "OK, Norman" ResStockArguments site_city=auto -City "OK, Oklahoma City" ResStockArguments site_city=auto -City "OK, Stillwater" ResStockArguments site_city=auto -City "OK, Tulsa" ResStockArguments site_city=auto -City "OR, Albany" ResStockArguments site_city=auto -City "OR, Aloha" ResStockArguments site_city=auto -City "OR, Beaverton" ResStockArguments site_city=auto -City "OR, Bend" ResStockArguments site_city=auto -City "OR, Corvallis" ResStockArguments site_city=auto -City "OR, Eugene" ResStockArguments site_city=auto -City "OR, Grants Pass" ResStockArguments site_city=auto -City "OR, Gresham" ResStockArguments site_city=auto -City "OR, Hillsboro" ResStockArguments site_city=auto -City "OR, Lake Oswego" ResStockArguments site_city=auto -City "OR, Medford" ResStockArguments site_city=auto -City "OR, Portland" ResStockArguments site_city=auto -City "OR, Salem" ResStockArguments site_city=auto -City "OR, Springfield" ResStockArguments site_city=auto -City "OR, Tigard" ResStockArguments site_city=auto -City "PA, Allentown" ResStockArguments site_city=auto -City "PA, Altoona" ResStockArguments site_city=auto -City "PA, Bethlehem" ResStockArguments site_city=auto -City "PA, Erie" ResStockArguments site_city=auto -City "PA, Harrisburg" ResStockArguments site_city=auto -City "PA, Lancaster" ResStockArguments site_city=auto -City "PA, Levittown" ResStockArguments site_city=auto -City "PA, Philadelphia" ResStockArguments site_city=auto -City "PA, Pittsburgh" ResStockArguments site_city=auto -City "PA, Reading" ResStockArguments site_city=auto -City "PA, Scranton" ResStockArguments site_city=auto -City "PA, Wilkes-Barre" ResStockArguments site_city=auto -City "PA, York" ResStockArguments site_city=auto -City "RI, Cranston" ResStockArguments site_city=auto -City "RI, East Providence" ResStockArguments site_city=auto -City "RI, Pawtucket" ResStockArguments site_city=auto -City "RI, Providence" ResStockArguments site_city=auto -City "RI, Warwick" ResStockArguments site_city=auto -City "RI, Woonsocket" ResStockArguments site_city=auto -City "SC, Charleston" ResStockArguments site_city=auto -City "SC, Columbia" ResStockArguments site_city=auto -City "SC, Florence" ResStockArguments site_city=auto -City "SC, Goose Creek" ResStockArguments site_city=auto -City "SC, Greenville" ResStockArguments site_city=auto -City "SC, Hilton Head Island" ResStockArguments site_city=auto -City "SC, Mount Pleasant" ResStockArguments site_city=auto -City "SC, Myrtle Beach" ResStockArguments site_city=auto -City "SC, North Charleston" ResStockArguments site_city=auto -City "SC, North Myrtle Beach" ResStockArguments site_city=auto -City "SC, Rock Hill" ResStockArguments site_city=auto -City "SC, Spartanburg" ResStockArguments site_city=auto -City "SC, Summerville" ResStockArguments site_city=auto -City "SC, Sumter" ResStockArguments site_city=auto -City "SD, Rapid City" ResStockArguments site_city=auto -City "SD, Sioux Falls" ResStockArguments site_city=auto -City "TN, Bartlett" ResStockArguments site_city=auto -City "TN, Chattanooga" ResStockArguments site_city=auto -City "TN, Clarksville" ResStockArguments site_city=auto -City "TN, Cleveland" ResStockArguments site_city=auto -City "TN, Collierville" ResStockArguments site_city=auto -City "TN, Columbia" ResStockArguments site_city=auto -City "TN, Franklin" ResStockArguments site_city=auto -City "TN, Germantown" ResStockArguments site_city=auto -City "TN, Hendersonville" ResStockArguments site_city=auto -City "TN, Jackson" ResStockArguments site_city=auto -City "TN, Johnson City" ResStockArguments site_city=auto -City "TN, Kingsport" ResStockArguments site_city=auto -City "TN, Knoxville" ResStockArguments site_city=auto -City "TN, Memphis" ResStockArguments site_city=auto -City "TN, Murfreesboro" ResStockArguments site_city=auto -City "TN, Nashville-Davidson Metropolitan Government Balance" ResStockArguments site_city=auto -City "TN, Smyrna" ResStockArguments site_city=auto -City "TX, Abilene" ResStockArguments site_city=auto -City "TX, Allen" ResStockArguments site_city=auto -City "TX, Amarillo" ResStockArguments site_city=auto -City "TX, Arlington" ResStockArguments site_city=auto -City "TX, Atascocita" ResStockArguments site_city=auto -City "TX, Austin" ResStockArguments site_city=auto -City "TX, Baytown" ResStockArguments site_city=auto -City "TX, Beaumont" ResStockArguments site_city=auto -City "TX, Bedford" ResStockArguments site_city=auto -City "TX, Brownsville" ResStockArguments site_city=auto -City "TX, Bryan" ResStockArguments site_city=auto -City "TX, Burleson" ResStockArguments site_city=auto -City "TX, Carrollton" ResStockArguments site_city=auto -City "TX, Cedar Hill" ResStockArguments site_city=auto -City "TX, Cedar Park" ResStockArguments site_city=auto -City "TX, College Station" ResStockArguments site_city=auto -City "TX, Conroe" ResStockArguments site_city=auto -City "TX, Coppell" ResStockArguments site_city=auto -City "TX, Corpus Christi" ResStockArguments site_city=auto -City "TX, Dallas" ResStockArguments site_city=auto -City "TX, Denton" ResStockArguments site_city=auto -City "TX, Desoto" ResStockArguments site_city=auto -City "TX, Edinburg" ResStockArguments site_city=auto -City "TX, El Paso" ResStockArguments site_city=auto -City "TX, Euless" ResStockArguments site_city=auto -City "TX, Flower Mound" ResStockArguments site_city=auto -City "TX, Fort Worth" ResStockArguments site_city=auto -City "TX, Frisco" ResStockArguments site_city=auto -City "TX, Galveston" ResStockArguments site_city=auto -City "TX, Garland" ResStockArguments site_city=auto -City "TX, Georgetown" ResStockArguments site_city=auto -City "TX, Grand Prairie" ResStockArguments site_city=auto -City "TX, Grapevine" ResStockArguments site_city=auto -City "TX, Haltom City" ResStockArguments site_city=auto -City "TX, Harlingen" ResStockArguments site_city=auto -City "TX, Houston" ResStockArguments site_city=auto -City "TX, Hurst" ResStockArguments site_city=auto -City "TX, Irving" ResStockArguments site_city=auto -City "TX, Keller" ResStockArguments site_city=auto -City "TX, Killeen" ResStockArguments site_city=auto -City "TX, Laredo" ResStockArguments site_city=auto -City "TX, League City" ResStockArguments site_city=auto -City "TX, Lewisville" ResStockArguments site_city=auto -City "TX, Longview" ResStockArguments site_city=auto -City "TX, Lubbock" ResStockArguments site_city=auto -City "TX, Lufkin" ResStockArguments site_city=auto -City "TX, Mansfield" ResStockArguments site_city=auto -City "TX, Mcallen" ResStockArguments site_city=auto -City "TX, Mckinney" ResStockArguments site_city=auto -City "TX, Mesquite" ResStockArguments site_city=auto -City "TX, Midland" ResStockArguments site_city=auto -City "TX, Mission" ResStockArguments site_city=auto -City "TX, Missouri City" ResStockArguments site_city=auto -City "TX, New Braunfels" ResStockArguments site_city=auto -City "TX, North Richland Hills" ResStockArguments site_city=auto -City "TX, Odessa" ResStockArguments site_city=auto -City "TX, Pasadena" ResStockArguments site_city=auto -City "TX, Pearland" ResStockArguments site_city=auto -City "TX, Pflugerville" ResStockArguments site_city=auto -City "TX, Pharr" ResStockArguments site_city=auto -City "TX, Plano" ResStockArguments site_city=auto -City "TX, Port Arthur" ResStockArguments site_city=auto -City "TX, Richardson" ResStockArguments site_city=auto -City "TX, Round Rock" ResStockArguments site_city=auto -City "TX, Rowlett" ResStockArguments site_city=auto -City "TX, San Angelo" ResStockArguments site_city=auto -City "TX, San Antonio" ResStockArguments site_city=auto -City "TX, San Marcos" ResStockArguments site_city=auto -City "TX, Sherman" ResStockArguments site_city=auto -City "TX, Spring" ResStockArguments site_city=auto -City "TX, Sugar Land" ResStockArguments site_city=auto -City "TX, Temple" ResStockArguments site_city=auto -City "TX, Texarkana" ResStockArguments site_city=auto -City "TX, Texas City" ResStockArguments site_city=auto -City "TX, The Colony" ResStockArguments site_city=auto -City "TX, The Woodlands" ResStockArguments site_city=auto -City "TX, Tyler" ResStockArguments site_city=auto -City "TX, Victoria" ResStockArguments site_city=auto -City "TX, Waco" ResStockArguments site_city=auto -City "TX, Wichita Falls" ResStockArguments site_city=auto -City "TX, Wylie" ResStockArguments site_city=auto -City "UT, Layton" ResStockArguments site_city=auto -City "UT, Lehi" ResStockArguments site_city=auto -City "UT, Logan" ResStockArguments site_city=auto -City "UT, Millcreek" ResStockArguments site_city=auto -City "UT, Murray" ResStockArguments site_city=auto -City "UT, Ogden" ResStockArguments site_city=auto -City "UT, Orem" ResStockArguments site_city=auto -City "UT, Provo" ResStockArguments site_city=auto -City "UT, Salt Lake City" ResStockArguments site_city=auto -City "UT, Sandy" ResStockArguments site_city=auto -City "UT, South Jordan" ResStockArguments site_city=auto -City "UT, St George" ResStockArguments site_city=auto -City "UT, Taylorsville" ResStockArguments site_city=auto -City "UT, West Jordan" ResStockArguments site_city=auto -City "UT, West Valley City" ResStockArguments site_city=auto -City "VA, Alexandria" ResStockArguments site_city=auto -City "VA, Arlington" ResStockArguments site_city=auto -City "VA, Ashburn" ResStockArguments site_city=auto -City "VA, Blacksburg" ResStockArguments site_city=auto -City "VA, Centreville" ResStockArguments site_city=auto -City "VA, Charlottesville" ResStockArguments site_city=auto -City "VA, Chesapeake" ResStockArguments site_city=auto -City "VA, Dale City" ResStockArguments site_city=auto -City "VA, Danville" ResStockArguments site_city=auto -City "VA, Hampton" ResStockArguments site_city=auto -City "VA, Harrisonburg" ResStockArguments site_city=auto -City "VA, Lake Ridge" ResStockArguments site_city=auto -City "VA, Leesburg" ResStockArguments site_city=auto -City "VA, Lynchburg" ResStockArguments site_city=auto -City "VA, Mclean" ResStockArguments site_city=auto -City "VA, Mechanicsville" ResStockArguments site_city=auto -City "VA, Newport News" ResStockArguments site_city=auto -City "VA, Norfolk" ResStockArguments site_city=auto -City "VA, Petersburg" ResStockArguments site_city=auto -City "VA, Portsmouth" ResStockArguments site_city=auto -City "VA, Reston" ResStockArguments site_city=auto -City "VA, Richmond" ResStockArguments site_city=auto -City "VA, Roanoke" ResStockArguments site_city=auto -City "VA, Suffolk" ResStockArguments site_city=auto -City "VA, Tuckahoe" ResStockArguments site_city=auto -City "VA, Virginia Beach" ResStockArguments site_city=auto -City "VT, Burlington" ResStockArguments site_city=auto -City "WA, Auburn" ResStockArguments site_city=auto -City "WA, Bellevue" ResStockArguments site_city=auto -City "WA, Bellingham" ResStockArguments site_city=auto -City "WA, Bremerton" ResStockArguments site_city=auto -City "WA, Edmonds" ResStockArguments site_city=auto -City "WA, Everett" ResStockArguments site_city=auto -City "WA, Federal Way" ResStockArguments site_city=auto -City "WA, Kennewick" ResStockArguments site_city=auto -City "WA, Kent" ResStockArguments site_city=auto -City "WA, Kirkland" ResStockArguments site_city=auto -City "WA, Lacey" ResStockArguments site_city=auto -City "WA, Lakewood" ResStockArguments site_city=auto -City "WA, Longview" ResStockArguments site_city=auto -City "WA, Marysville" ResStockArguments site_city=auto -City "WA, Olympia" ResStockArguments site_city=auto -City "WA, Pasco" ResStockArguments site_city=auto -City "WA, Puyallup" ResStockArguments site_city=auto -City "WA, Redmond" ResStockArguments site_city=auto -City "WA, Renton" ResStockArguments site_city=auto -City "WA, Richland" ResStockArguments site_city=auto -City "WA, Sammamish" ResStockArguments site_city=auto -City "WA, Seattle" ResStockArguments site_city=auto -City "WA, Shoreline" ResStockArguments site_city=auto -City "WA, South Hill" ResStockArguments site_city=auto -City "WA, Spokane Valley" ResStockArguments site_city=auto -City "WA, Spokane" ResStockArguments site_city=auto -City "WA, Tacoma" ResStockArguments site_city=auto -City "WA, Vancouver" ResStockArguments site_city=auto -City "WA, Yakima" ResStockArguments site_city=auto -City "WI, Appleton" ResStockArguments site_city=auto -City "WI, Beloit" ResStockArguments site_city=auto -City "WI, Eau Claire" ResStockArguments site_city=auto -City "WI, Fond Du Lac" ResStockArguments site_city=auto -City "WI, Green Bay" ResStockArguments site_city=auto -City "WI, Greenfield" ResStockArguments site_city=auto -City "WI, Janesville" ResStockArguments site_city=auto -City "WI, Kenosha" ResStockArguments site_city=auto -City "WI, La Crosse" ResStockArguments site_city=auto -City "WI, Madison" ResStockArguments site_city=auto -City "WI, Manitowoc" ResStockArguments site_city=auto -City "WI, Menomonee Falls" ResStockArguments site_city=auto -City "WI, Milwaukee" ResStockArguments site_city=auto -City "WI, New Berlin" ResStockArguments site_city=auto -City "WI, Oshkosh" ResStockArguments site_city=auto -City "WI, Racine" ResStockArguments site_city=auto -City "WI, Sheboygan" ResStockArguments site_city=auto -City "WI, Waukesha" ResStockArguments site_city=auto -City "WI, Wausau" ResStockArguments site_city=auto -City "WI, Wauwatosa" ResStockArguments site_city=auto -City "WI, West Allis" ResStockArguments site_city=auto -City "WV, Charleston" ResStockArguments site_city=auto -City "WV, Huntington" ResStockArguments site_city=auto -City "WV, Parkersburg" ResStockArguments site_city=auto -City "WY, Casper" ResStockArguments site_city=auto -City "WY, Cheyenne" ResStockArguments site_city=auto -City In another census Place ResStockArguments site_city=auto -City Not in a census Place ResStockArguments site_city=auto -Clothes Dryer "Electric, Heat Pump, Ventless" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=4.5 clothes_dryer_vented_flow_rate=0 -Clothes Dryer "Electric Heat Pump, 120V" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=4.5 clothes_dryer_vented_flow_rate=0 -Clothes Dryer "Electric, Premium" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.42 clothes_dryer_vented_flow_rate=auto -Clothes Dryer "Electric, Premium, EnergyStar" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.93 clothes_dryer_vented_flow_rate=auto -Clothes Dryer "Electric, Premium, Heat Pump, Ventless" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=5.2 clothes_dryer_vented_flow_rate=0 -Clothes Dryer "Gas, Premium" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.03 clothes_dryer_vented_flow_rate=auto -Clothes Dryer Electric ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.70 clothes_dryer_vented_flow_rate=auto -Clothes Dryer Gas ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.39 clothes_dryer_vented_flow_rate=auto -Clothes Dryer None ResStockArguments clothes_dryer_present=false clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.70 clothes_dryer_vented_flow_rate=auto -Clothes Dryer Propane ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=propane clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.39 clothes_dryer_vented_flow_rate=auto -Clothes Dryer Void -Clothes Dryer Usage Level 100% Usage ResStockArguments clothes_dryer_usage_multiplier=1.0 -Clothes Dryer Usage Level 120% Usage ResStockArguments clothes_dryer_usage_multiplier=1.2 -Clothes Dryer Usage Level 80% Usage ResStockArguments clothes_dryer_usage_multiplier=0.8 -Clothes Washer "EnergyStar, Cold Only" ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.07 clothes_washer_rated_annual_kwh=123 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=9 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.68 -Clothes Washer CEE Advanced Tier ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=3.1 clothes_washer_rated_annual_kwh=120 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=14 clothes_washer_label_usage=7.538462 clothes_washer_capacity=5.8 -Clothes Washer EnergyStar ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.07 clothes_washer_rated_annual_kwh=123 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=9 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.68 -Clothes Washer EnergyStar More Efficient ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.83 clothes_washer_rated_annual_kwh=90 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=8 clothes_washer_label_usage=7.538462 clothes_washer_capacity=4.5 -Clothes Washer EnergyStar Most Efficient ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.92 clothes_washer_rated_annual_kwh=75 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=7 clothes_washer_label_usage=7.538462 clothes_washer_capacity=4.5 -Clothes Washer None ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=0 clothes_washer_rated_annual_kwh=0 clothes_washer_label_electric_rate=0 clothes_washer_label_gas_rate=0 clothes_washer_label_annual_gas_cost=0 clothes_washer_label_usage=0 clothes_washer_capacity=0 -Clothes Washer Standard ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=0.95 clothes_washer_rated_annual_kwh=387 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=24 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.5 -Clothes Washer Void -Clothes Washer Presence None ResStockArguments clothes_washer_present=false -Clothes Washer Presence Void -Clothes Washer Presence Yes ResStockArguments clothes_washer_present=true -Clothes Washer Usage Level 100% Usage ResStockArguments clothes_washer_usage_multiplier=1.0 -Clothes Washer Usage Level 120% Usage ResStockArguments clothes_washer_usage_multiplier=1.2 -Clothes Washer Usage Level 80% Usage ResStockArguments clothes_washer_usage_multiplier=0.8 -Cooking Range Electric Induction ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=electricity cooking_range_oven_is_induction=true cooking_range_oven_is_convection=auto -Cooking Range Electric Resistance ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=electricity cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto -Cooking Range "Electric Induction, 120V, battery powered" ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=electricity cooking_range_oven_is_induction=true cooking_range_oven_is_convection=auto -Cooking Range Gas ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=natural gas cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto -Cooking Range None ResStockArguments cooking_range_oven_present=false cooking_range_oven_location=auto cooking_range_oven_fuel_type=natural gas cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto -Cooking Range Propane ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=propane cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto -Cooking Range Void -Cooking Range Usage Level 100% Usage ResStockArguments cooking_range_oven_usage_multiplier=1.0 -Cooking Range Usage Level 120% Usage ResStockArguments cooking_range_oven_usage_multiplier=1.2 -Cooking Range Usage Level 80% Usage ResStockArguments cooking_range_oven_usage_multiplier=0.8 -Cooling Setpoint 60F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=60 hvac_control_cooling_weekend_setpoint_temp=60 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 62F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=62 hvac_control_cooling_weekend_setpoint_temp=62 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 64F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=64 hvac_control_cooling_weekend_setpoint_temp=64 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 65F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=65 hvac_control_cooling_weekend_setpoint_temp=65 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 66F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=66 hvac_control_cooling_weekend_setpoint_temp=66 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 67F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=67 hvac_control_cooling_weekend_setpoint_temp=67 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 68F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=68 hvac_control_cooling_weekend_setpoint_temp=68 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 69F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=69 hvac_control_cooling_weekend_setpoint_temp=69 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 70F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=70 hvac_control_cooling_weekend_setpoint_temp=70 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 72F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=72 hvac_control_cooling_weekend_setpoint_temp=72 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 73F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=73 hvac_control_cooling_weekend_setpoint_temp=73 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 74F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=74 hvac_control_cooling_weekend_setpoint_temp=74 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 75F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=75 hvac_control_cooling_weekend_setpoint_temp=75 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 76F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=76 hvac_control_cooling_weekend_setpoint_temp=76 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 76F w/ Building America season ResStockArguments hvac_control_cooling_weekday_setpoint_temp=76 hvac_control_cooling_weekend_setpoint_temp=76 use_auto_cooling_season=true hvac_control_cooling_season_period=auto -Cooling Setpoint 77F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=77 hvac_control_cooling_weekend_setpoint_temp=77 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 78F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=78 hvac_control_cooling_weekend_setpoint_temp=78 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 80F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=80 hvac_control_cooling_weekend_setpoint_temp=80 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint Has Offset No -Cooling Setpoint Has Offset Yes -Cooling Setpoint Offset Magnitude 0F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=0 hvac_control_cooling_weekend_setpoint_offset_magnitude=0 -Cooling Setpoint Offset Magnitude 2F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=2 hvac_control_cooling_weekend_setpoint_offset_magnitude=2 -Cooling Setpoint Offset Magnitude 5F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=5 hvac_control_cooling_weekend_setpoint_offset_magnitude=5 -Cooling Setpoint Offset Magnitude 9F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=9 hvac_control_cooling_weekend_setpoint_offset_magnitude=9 -Cooling Setpoint Offset Period Day Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup and Night Setback ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day Setup and Night Setback +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day Setup and Night Setback +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day Setup and Night Setback +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day Setup and Night Setback -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" -Cooling Setpoint Offset Period Day and Night Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1" -Cooling Setpoint Offset Period Day and Night Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1" -Cooling Setpoint Offset Period Day and Night Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day and Night Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day and Night Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day and Night Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day and Night Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1" -Cooling Setpoint Offset Period Day and Night Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1" -Cooling Setpoint Offset Period Day and Night Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1" -Cooling Setpoint Offset Period Day and Night Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1" -Cooling Setpoint Offset Period Day and Night Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1" -Cooling Setpoint Offset Period Night Setback ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" -Cooling Setpoint Offset Period Night Setback +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" -Cooling Setpoint Offset Period Night Setback +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setback +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setback +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setback +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setback -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" -Cooling Setpoint Offset Period Night Setback -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" -Cooling Setpoint Offset Period Night Setback -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" -Cooling Setpoint Offset Period Night Setback -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" -Cooling Setpoint Offset Period Night Setback -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" -Cooling Setpoint Offset Period Night Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1" -Cooling Setpoint Offset Period Night Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1" -Cooling Setpoint Offset Period Night Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1" -Cooling Setpoint Offset Period Night Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1" -Cooling Setpoint Offset Period Night Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1" -Cooling Setpoint Offset Period Night Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1" -Cooling Setpoint Offset Period Night Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1" -Cooling Setpoint Offset Period None ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Corridor Double Exterior ResStockArguments geometry_corridor_position=Double Exterior geometry_corridor_width=10 -Corridor Double-Loaded Interior ResStockArguments geometry_corridor_position=Double-Loaded Interior geometry_corridor_width=10 -Corridor None ResStockArguments geometry_corridor_position=None geometry_corridor_width=0 -Corridor Not Applicable ResStockArguments geometry_corridor_position=None geometry_corridor_width=0 -Corridor Single Exterior Front ResStockArguments geometry_corridor_position=Single Exterior (Front) geometry_corridor_width=10 -County "AK, Aleutians East Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200130.epw site_zip_code=99661 site_time_zone_utc_offset=-9 -County "AK, Aleutians West Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200160.epw site_zip_code=99685 site_time_zone_utc_offset=-9 -County "AK, Anchorage Municipality" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200200.epw site_zip_code=99501 site_time_zone_utc_offset=-9 -County "AK, Bethel Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200500.epw site_zip_code=99545 site_time_zone_utc_offset=-9 -County "AK, Bristol Bay Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200600.epw site_zip_code=99633 site_time_zone_utc_offset=-9 -County "AK, Denali Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200680.epw site_zip_code=99743 site_time_zone_utc_offset=-9 -County "AK, Dillingham Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200700.epw site_zip_code=99576 site_time_zone_utc_offset=-9 -County "AK, Fairbanks North Star Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200900.epw site_zip_code=99709 site_time_zone_utc_offset=-9 -County "AK, Haines Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201000.epw site_zip_code=99827 site_time_zone_utc_offset=-9 -County "AK, Hoonah-Angoon Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201050.epw site_zip_code=99829 site_time_zone_utc_offset=-9 -County "AK, Juneau City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201100.epw site_zip_code=99802 site_time_zone_utc_offset=-9 -County "AK, Kenai Peninsula Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201220.epw site_zip_code=99611 site_time_zone_utc_offset=-9 -County "AK, Ketchikan Gateway Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201300.epw site_zip_code=99901 site_time_zone_utc_offset=-9 -County "AK, Kodiak Island Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201500.epw site_zip_code=99615 site_time_zone_utc_offset=-9 -County "AK, Kusilvak Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202700.epw site_zip_code=99604 site_time_zone_utc_offset=-9 -County "AK, Lake and Peninsula Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201640.epw site_zip_code=99653 site_time_zone_utc_offset=-9 -County "AK, Matanuska-Susitna Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201700.epw site_zip_code=99645 site_time_zone_utc_offset=-9 -County "AK, Nome Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201800.epw site_zip_code=99762 site_time_zone_utc_offset=-9 -County "AK, North Slope Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201850.epw site_zip_code=99723 site_time_zone_utc_offset=-9 -County "AK, Northwest Arctic Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201880.epw site_zip_code=99752 site_time_zone_utc_offset=-9 -County "AK, Petersburg Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201950.epw site_zip_code=99833 site_time_zone_utc_offset=-9 -County "AK, Prince of Wales-Hyder Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201980.epw site_zip_code=99926 site_time_zone_utc_offset=-9 -County "AK, Sitka City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202200.epw site_zip_code=99835 site_time_zone_utc_offset=-9 -County "AK, Skagway Municipality" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202300.epw site_zip_code=99840 site_time_zone_utc_offset=-9 -County "AK, Southeast Fairbanks Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202400.epw site_zip_code=99731 site_time_zone_utc_offset=-9 -County "AK, Valdez-Cordova Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202610.epw site_zip_code=99686 site_time_zone_utc_offset=-9 -County "AK, Wrangell City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202750.epw site_zip_code=99903 site_time_zone_utc_offset=-9 -County "AK, Yakutat City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202820.epw site_zip_code=99689 site_time_zone_utc_offset=-9 -County "AK, Yukon-Koyukuk Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202900.epw site_zip_code=99740 site_time_zone_utc_offset=-9 -County "AL, Autauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100010.epw site_zip_code=36067 site_time_zone_utc_offset=-6 -County "AL, Baldwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100030.epw site_zip_code=36535 site_time_zone_utc_offset=-6 -County "AL, Barbour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100050.epw site_zip_code=36027 site_time_zone_utc_offset=-6 -County "AL, Bibb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100070.epw site_zip_code=35042 site_time_zone_utc_offset=-6 -County "AL, Blount County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100090.epw site_zip_code=35121 site_time_zone_utc_offset=-6 -County "AL, Bullock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100110.epw site_zip_code=36089 site_time_zone_utc_offset=-6 -County "AL, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100130.epw site_zip_code=36037 site_time_zone_utc_offset=-6 -County "AL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100150.epw site_zip_code=36201 site_time_zone_utc_offset=-6 -County "AL, Chambers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100170.epw site_zip_code=36863 site_time_zone_utc_offset=-6 -County "AL, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100190.epw site_zip_code=35960 site_time_zone_utc_offset=-6 -County "AL, Chilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100210.epw site_zip_code=35045 site_time_zone_utc_offset=-6 -County "AL, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100230.epw site_zip_code=36904 site_time_zone_utc_offset=-6 -County "AL, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100250.epw site_zip_code=36545 site_time_zone_utc_offset=-6 -County "AL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100270.epw site_zip_code=36251 site_time_zone_utc_offset=-6 -County "AL, Cleburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100290.epw site_zip_code=36264 site_time_zone_utc_offset=-6 -County "AL, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100310.epw site_zip_code=36330 site_time_zone_utc_offset=-6 -County "AL, Colbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100330.epw site_zip_code=35674 site_time_zone_utc_offset=-6 -County "AL, Conecuh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100350.epw site_zip_code=36401 site_time_zone_utc_offset=-6 -County "AL, Coosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100370.epw site_zip_code=35151 site_time_zone_utc_offset=-6 -County "AL, Covington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100390.epw site_zip_code=36420 site_time_zone_utc_offset=-6 -County "AL, Crenshaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100410.epw site_zip_code=36049 site_time_zone_utc_offset=-6 -County "AL, Cullman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100430.epw site_zip_code=35055 site_time_zone_utc_offset=-6 -County "AL, Dale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100450.epw site_zip_code=36360 site_time_zone_utc_offset=-6 -County "AL, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100470.epw site_zip_code=36701 site_time_zone_utc_offset=-6 -County "AL, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100490.epw site_zip_code=35967 site_time_zone_utc_offset=-6 -County "AL, Elmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100510.epw site_zip_code=36092 site_time_zone_utc_offset=-6 -County "AL, Escambia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100530.epw site_zip_code=36426 site_time_zone_utc_offset=-6 -County "AL, Etowah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100550.epw site_zip_code=35901 site_time_zone_utc_offset=-6 -County "AL, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100570.epw site_zip_code=35555 site_time_zone_utc_offset=-6 -County "AL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100590.epw site_zip_code=35653 site_time_zone_utc_offset=-6 -County "AL, Geneva County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100610.epw site_zip_code=36375 site_time_zone_utc_offset=-6 -County "AL, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100630.epw site_zip_code=35462 site_time_zone_utc_offset=-6 -County "AL, Hale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100650.epw site_zip_code=36744 site_time_zone_utc_offset=-6 -County "AL, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100670.epw site_zip_code=36310 site_time_zone_utc_offset=-6 -County "AL, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100690.epw site_zip_code=36301 site_time_zone_utc_offset=-6 -County "AL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100710.epw site_zip_code=35768 site_time_zone_utc_offset=-6 -County "AL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100730.epw site_zip_code=35215 site_time_zone_utc_offset=-6 -County "AL, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100750.epw site_zip_code=35586 site_time_zone_utc_offset=-6 -County "AL, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100770.epw site_zip_code=35630 site_time_zone_utc_offset=-6 -County "AL, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100790.epw site_zip_code=35650 site_time_zone_utc_offset=-6 -County "AL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100810.epw site_zip_code=36830 site_time_zone_utc_offset=-6 -County "AL, Limestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100830.epw site_zip_code=35611 site_time_zone_utc_offset=-6 -County "AL, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100850.epw site_zip_code=36040 site_time_zone_utc_offset=-6 -County "AL, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100870.epw site_zip_code=36083 site_time_zone_utc_offset=-6 -County "AL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100890.epw site_zip_code=35758 site_time_zone_utc_offset=-6 -County "AL, Marengo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100910.epw site_zip_code=36732 site_time_zone_utc_offset=-6 -County "AL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100930.epw site_zip_code=35570 site_time_zone_utc_offset=-6 -County "AL, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100950.epw site_zip_code=35976 site_time_zone_utc_offset=-6 -County "AL, Mobile County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100970.epw site_zip_code=36695 site_time_zone_utc_offset=-6 -County "AL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100990.epw site_zip_code=36460 site_time_zone_utc_offset=-6 -County "AL, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101010.epw site_zip_code=36117 site_time_zone_utc_offset=-6 -County "AL, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101030.epw site_zip_code=35601 site_time_zone_utc_offset=-6 -County "AL, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101050.epw site_zip_code=36756 site_time_zone_utc_offset=-6 -County "AL, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101070.epw site_zip_code=35466 site_time_zone_utc_offset=-6 -County "AL, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101090.epw site_zip_code=36081 site_time_zone_utc_offset=-6 -County "AL, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101110.epw site_zip_code=36274 site_time_zone_utc_offset=-6 -County "AL, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101130.epw site_zip_code=36869 site_time_zone_utc_offset=-6 -County "AL, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101170.epw site_zip_code=35242 site_time_zone_utc_offset=-6 -County "AL, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101150.epw site_zip_code=35120 site_time_zone_utc_offset=-6 -County "AL, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101190.epw site_zip_code=36925 site_time_zone_utc_offset=-6 -County "AL, Talladega County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101210.epw site_zip_code=35160 site_time_zone_utc_offset=-6 -County "AL, Tallapoosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101230.epw site_zip_code=35010 site_time_zone_utc_offset=-6 -County "AL, Tuscaloosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101250.epw site_zip_code=35401 site_time_zone_utc_offset=-6 -County "AL, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101270.epw site_zip_code=35504 site_time_zone_utc_offset=-6 -County "AL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101290.epw site_zip_code=36558 site_time_zone_utc_offset=-6 -County "AL, Wilcox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101310.epw site_zip_code=36726 site_time_zone_utc_offset=-6 -County "AL, Winston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101330.epw site_zip_code=35565 site_time_zone_utc_offset=-6 -County "AR, Arkansas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500010.epw site_zip_code=72160 site_time_zone_utc_offset=-6 -County "AR, Ashley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500030.epw site_zip_code=71635 site_time_zone_utc_offset=-6 -County "AR, Baxter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500050.epw site_zip_code=72653 site_time_zone_utc_offset=-6 -County "AR, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500070.epw site_zip_code=72712 site_time_zone_utc_offset=-6 -County "AR, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500090.epw site_zip_code=72601 site_time_zone_utc_offset=-6 -County "AR, Bradley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500110.epw site_zip_code=71671 site_time_zone_utc_offset=-6 -County "AR, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500130.epw site_zip_code=71744 site_time_zone_utc_offset=-6 -County "AR, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500150.epw site_zip_code=72616 site_time_zone_utc_offset=-6 -County "AR, Chicot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500170.epw site_zip_code=71653 site_time_zone_utc_offset=-6 -County "AR, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500190.epw site_zip_code=71923 site_time_zone_utc_offset=-6 -County "AR, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500210.epw site_zip_code=72454 site_time_zone_utc_offset=-6 -County "AR, Cleburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500230.epw site_zip_code=72543 site_time_zone_utc_offset=-6 -County "AR, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500250.epw site_zip_code=71665 site_time_zone_utc_offset=-6 -County "AR, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500270.epw site_zip_code=71753 site_time_zone_utc_offset=-6 -County "AR, Conway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500290.epw site_zip_code=72110 site_time_zone_utc_offset=-6 -County "AR, Craighead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500310.epw site_zip_code=72401 site_time_zone_utc_offset=-6 -County "AR, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500330.epw site_zip_code=72956 site_time_zone_utc_offset=-6 -County "AR, Crittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500350.epw site_zip_code=72301 site_time_zone_utc_offset=-6 -County "AR, Cross County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500370.epw site_zip_code=72396 site_time_zone_utc_offset=-6 -County "AR, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500390.epw site_zip_code=71742 site_time_zone_utc_offset=-6 -County "AR, Desha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500410.epw site_zip_code=71639 site_time_zone_utc_offset=-6 -County "AR, Drew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500430.epw site_zip_code=71655 site_time_zone_utc_offset=-6 -County "AR, Faulkner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500450.epw site_zip_code=72034 site_time_zone_utc_offset=-6 -County "AR, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500470.epw site_zip_code=72949 site_time_zone_utc_offset=-6 -County "AR, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500490.epw site_zip_code=72554 site_time_zone_utc_offset=-6 -County "AR, Garland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500510.epw site_zip_code=71913 site_time_zone_utc_offset=-6 -County "AR, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500530.epw site_zip_code=72150 site_time_zone_utc_offset=-6 -County "AR, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500550.epw site_zip_code=72450 site_time_zone_utc_offset=-6 -County "AR, Hempstead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500570.epw site_zip_code=71801 site_time_zone_utc_offset=-6 -County "AR, Hot Spring County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500590.epw site_zip_code=72104 site_time_zone_utc_offset=-6 -County "AR, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500610.epw site_zip_code=71852 site_time_zone_utc_offset=-6 -County "AR, Independence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500630.epw site_zip_code=72501 site_time_zone_utc_offset=-6 -County "AR, Izard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500650.epw site_zip_code=72556 site_time_zone_utc_offset=-6 -County "AR, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500670.epw site_zip_code=72112 site_time_zone_utc_offset=-6 -County "AR, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500690.epw site_zip_code=71603 site_time_zone_utc_offset=-6 -County "AR, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500710.epw site_zip_code=72830 site_time_zone_utc_offset=-6 -County "AR, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500730.epw site_zip_code=71860 site_time_zone_utc_offset=-6 -County "AR, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500750.epw site_zip_code=72476 site_time_zone_utc_offset=-6 -County "AR, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500770.epw site_zip_code=72360 site_time_zone_utc_offset=-6 -County "AR, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500790.epw site_zip_code=71667 site_time_zone_utc_offset=-6 -County "AR, Little River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500810.epw site_zip_code=71822 site_time_zone_utc_offset=-6 -County "AR, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500830.epw site_zip_code=72927 site_time_zone_utc_offset=-6 -County "AR, Lonoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500850.epw site_zip_code=72023 site_time_zone_utc_offset=-6 -County "AR, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500870.epw site_zip_code=72740 site_time_zone_utc_offset=-6 -County "AR, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500890.epw site_zip_code=72687 site_time_zone_utc_offset=-6 -County "AR, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500910.epw site_zip_code=71854 site_time_zone_utc_offset=-6 -County "AR, Mississippi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500930.epw site_zip_code=72315 site_time_zone_utc_offset=-6 -County "AR, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500950.epw site_zip_code=72021 site_time_zone_utc_offset=-6 -County "AR, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500970.epw site_zip_code=71957 site_time_zone_utc_offset=-6 -County "AR, Nevada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500990.epw site_zip_code=71857 site_time_zone_utc_offset=-6 -County "AR, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501010.epw site_zip_code=72641 site_time_zone_utc_offset=-6 -County "AR, Ouachita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501030.epw site_zip_code=71701 site_time_zone_utc_offset=-6 -County "AR, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501050.epw site_zip_code=72126 site_time_zone_utc_offset=-6 -County "AR, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501070.epw site_zip_code=72390 site_time_zone_utc_offset=-6 -County "AR, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501090.epw site_zip_code=71943 site_time_zone_utc_offset=-6 -County "AR, Poinsett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501110.epw site_zip_code=72472 site_time_zone_utc_offset=-6 -County "AR, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501130.epw site_zip_code=71953 site_time_zone_utc_offset=-6 -County "AR, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501150.epw site_zip_code=72802 site_time_zone_utc_offset=-6 -County "AR, Prairie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501170.epw site_zip_code=72040 site_time_zone_utc_offset=-6 -County "AR, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501190.epw site_zip_code=72076 site_time_zone_utc_offset=-6 -County "AR, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501210.epw site_zip_code=72455 site_time_zone_utc_offset=-6 -County "AR, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501250.epw site_zip_code=72019 site_time_zone_utc_offset=-6 -County "AR, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501270.epw site_zip_code=72958 site_time_zone_utc_offset=-6 -County "AR, Searcy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501290.epw site_zip_code=72650 site_time_zone_utc_offset=-6 -County "AR, Sebastian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501310.epw site_zip_code=72903 site_time_zone_utc_offset=-6 -County "AR, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501330.epw site_zip_code=71832 site_time_zone_utc_offset=-6 -County "AR, Sharp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501350.epw site_zip_code=72529 site_time_zone_utc_offset=-6 -County "AR, St. Francis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501230.epw site_zip_code=72335 site_time_zone_utc_offset=-6 -County "AR, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501370.epw site_zip_code=72560 site_time_zone_utc_offset=-6 -County "AR, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501390.epw site_zip_code=71730 site_time_zone_utc_offset=-6 -County "AR, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501410.epw site_zip_code=72031 site_time_zone_utc_offset=-6 -County "AR, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501430.epw site_zip_code=72701 site_time_zone_utc_offset=-6 -County "AR, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501450.epw site_zip_code=72143 site_time_zone_utc_offset=-6 -County "AR, Woodruff County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501470.epw site_zip_code=72006 site_time_zone_utc_offset=-6 -County "AR, Yell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501490.epw site_zip_code=72834 site_time_zone_utc_offset=-6 -County "AZ, Apache County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400010.epw site_zip_code=85936 site_time_zone_utc_offset=-7 -County "AZ, Cochise County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400030.epw site_zip_code=85635 site_time_zone_utc_offset=-7 -County "AZ, Coconino County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400050.epw site_zip_code=86001 site_time_zone_utc_offset=-7 -County "AZ, Gila County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400070.epw site_zip_code=85541 site_time_zone_utc_offset=-7 -County "AZ, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400090.epw site_zip_code=85546 site_time_zone_utc_offset=-7 -County "AZ, Greenlee County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400110.epw site_zip_code=85534 site_time_zone_utc_offset=-7 -County "AZ, La Paz County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400120.epw site_zip_code=85344 site_time_zone_utc_offset=-7 -County "AZ, Maricopa County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400130.epw site_zip_code=85281 site_time_zone_utc_offset=-7 -County "AZ, Mohave County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400150.epw site_zip_code=86442 site_time_zone_utc_offset=-7 -County "AZ, Navajo County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400170.epw site_zip_code=85901 site_time_zone_utc_offset=-7 -County "AZ, Pima County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400190.epw site_zip_code=85705 site_time_zone_utc_offset=-7 -County "AZ, Pinal County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400210.epw site_zip_code=85122 site_time_zone_utc_offset=-7 -County "AZ, Santa Cruz County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400230.epw site_zip_code=85621 site_time_zone_utc_offset=-7 -County "AZ, Yavapai County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400250.epw site_zip_code=86314 site_time_zone_utc_offset=-7 -County "AZ, Yuma County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400270.epw site_zip_code=85364 site_time_zone_utc_offset=-7 -County "CA, Alameda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600010.epw site_zip_code=94501 site_time_zone_utc_offset=-8 -County "CA, Alpine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600030.epw site_zip_code=96120 site_time_zone_utc_offset=-8 -County "CA, Amador County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600050.epw site_zip_code=95642 site_time_zone_utc_offset=-8 -County "CA, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600070.epw site_zip_code=95928 site_time_zone_utc_offset=-8 -County "CA, Calaveras County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600090.epw site_zip_code=95252 site_time_zone_utc_offset=-8 -County "CA, Colusa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600110.epw site_zip_code=95932 site_time_zone_utc_offset=-8 -County "CA, Contra Costa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600130.epw site_zip_code=94565 site_time_zone_utc_offset=-8 -County "CA, Del Norte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600150.epw site_zip_code=95531 site_time_zone_utc_offset=-8 -County "CA, El Dorado County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600170.epw site_zip_code=95762 site_time_zone_utc_offset=-8 -County "CA, Fresno County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600190.epw site_zip_code=93722 site_time_zone_utc_offset=-8 -County "CA, Glenn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600210.epw site_zip_code=95963 site_time_zone_utc_offset=-8 -County "CA, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600230.epw site_zip_code=95501 site_time_zone_utc_offset=-8 -County "CA, Imperial County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600250.epw site_zip_code=92243 site_time_zone_utc_offset=-8 -County "CA, Inyo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600270.epw site_zip_code=93514 site_time_zone_utc_offset=-8 -County "CA, Kern County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600290.epw site_zip_code=93306 site_time_zone_utc_offset=-8 -County "CA, Kings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600310.epw site_zip_code=93230 site_time_zone_utc_offset=-8 -County "CA, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600330.epw site_zip_code=95422 site_time_zone_utc_offset=-8 -County "CA, Lassen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600350.epw site_zip_code=96130 site_time_zone_utc_offset=-8 -County "CA, Los Angeles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600370.epw site_zip_code=90250 site_time_zone_utc_offset=-8 -County "CA, Madera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600390.epw site_zip_code=93637 site_time_zone_utc_offset=-8 -County "CA, Marin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600410.epw site_zip_code=94901 site_time_zone_utc_offset=-8 -County "CA, Mariposa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600430.epw site_zip_code=95338 site_time_zone_utc_offset=-8 -County "CA, Mendocino County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600450.epw site_zip_code=95482 site_time_zone_utc_offset=-8 -County "CA, Merced County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600470.epw site_zip_code=93635 site_time_zone_utc_offset=-8 -County "CA, Modoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600490.epw site_zip_code=96101 site_time_zone_utc_offset=-8 -County "CA, Mono County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600510.epw site_zip_code=93546 site_time_zone_utc_offset=-8 -County "CA, Monterey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600530.epw site_zip_code=93906 site_time_zone_utc_offset=-8 -County "CA, Napa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600550.epw site_zip_code=94558 site_time_zone_utc_offset=-8 -County "CA, Nevada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600570.epw site_zip_code=95945 site_time_zone_utc_offset=-8 -County "CA, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600590.epw site_zip_code=92683 site_time_zone_utc_offset=-8 -County "CA, Placer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600610.epw site_zip_code=95747 site_time_zone_utc_offset=-8 -County "CA, Plumas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600630.epw site_zip_code=96122 site_time_zone_utc_offset=-8 -County "CA, Riverside County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600650.epw site_zip_code=92503 site_time_zone_utc_offset=-8 -County "CA, Sacramento County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600670.epw site_zip_code=95630 site_time_zone_utc_offset=-8 -County "CA, San Benito County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600690.epw site_zip_code=95023 site_time_zone_utc_offset=-8 -County "CA, San Bernardino County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600710.epw site_zip_code=92336 site_time_zone_utc_offset=-8 -County "CA, San Diego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600730.epw site_zip_code=92101 site_time_zone_utc_offset=-8 -County "CA, San Francisco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600750.epw site_zip_code=94109 site_time_zone_utc_offset=-8 -County "CA, San Joaquin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600770.epw site_zip_code=95206 site_time_zone_utc_offset=-8 -County "CA, San Luis Obispo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600790.epw site_zip_code=93446 site_time_zone_utc_offset=-8 -County "CA, San Mateo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600810.epw site_zip_code=94080 site_time_zone_utc_offset=-8 -County "CA, Santa Barbara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600830.epw site_zip_code=93436 site_time_zone_utc_offset=-8 -County "CA, Santa Clara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600850.epw site_zip_code=95035 site_time_zone_utc_offset=-8 -County "CA, Santa Cruz County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600870.epw site_zip_code=95076 site_time_zone_utc_offset=-8 -County "CA, Shasta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600890.epw site_zip_code=96003 site_time_zone_utc_offset=-8 -County "CA, Sierra County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600910.epw site_zip_code=95960 site_time_zone_utc_offset=-8 -County "CA, Siskiyou County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600930.epw site_zip_code=96097 site_time_zone_utc_offset=-8 -County "CA, Solano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600950.epw site_zip_code=94533 site_time_zone_utc_offset=-8 -County "CA, Sonoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600970.epw site_zip_code=95403 site_time_zone_utc_offset=-8 -County "CA, Stanislaus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600990.epw site_zip_code=95355 site_time_zone_utc_offset=-8 -County "CA, Sutter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601010.epw site_zip_code=95991 site_time_zone_utc_offset=-8 -County "CA, Tehama County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601030.epw site_zip_code=96080 site_time_zone_utc_offset=-8 -County "CA, Trinity County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601050.epw site_zip_code=96091 site_time_zone_utc_offset=-8 -County "CA, Tulare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601070.epw site_zip_code=93274 site_time_zone_utc_offset=-8 -County "CA, Tuolumne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601090.epw site_zip_code=95370 site_time_zone_utc_offset=-8 -County "CA, Ventura County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601110.epw site_zip_code=93065 site_time_zone_utc_offset=-8 -County "CA, Yolo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601130.epw site_zip_code=95616 site_time_zone_utc_offset=-8 -County "CA, Yuba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601150.epw site_zip_code=95901 site_time_zone_utc_offset=-8 -County "CO, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800010.epw site_zip_code=80229 site_time_zone_utc_offset=-7 -County "CO, Alamosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800030.epw site_zip_code=81101 site_time_zone_utc_offset=-7 -County "CO, Arapahoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800050.epw site_zip_code=80013 site_time_zone_utc_offset=-7 -County "CO, Archuleta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800070.epw site_zip_code=81147 site_time_zone_utc_offset=-7 -County "CO, Baca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800090.epw site_zip_code=81073 site_time_zone_utc_offset=-7 -County "CO, Bent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800110.epw site_zip_code=81054 site_time_zone_utc_offset=-7 -County "CO, Boulder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800130.epw site_zip_code=80501 site_time_zone_utc_offset=-7 -County "CO, Broomfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800140.epw site_zip_code=80020 site_time_zone_utc_offset=-7 -County "CO, Chaffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800150.epw site_zip_code=81201 site_time_zone_utc_offset=-7 -County "CO, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800170.epw site_zip_code=80810 site_time_zone_utc_offset=-7 -County "CO, Clear Creek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800190.epw site_zip_code=80439 site_time_zone_utc_offset=-7 -County "CO, Conejos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800210.epw site_zip_code=81120 site_time_zone_utc_offset=-7 -County "CO, Costilla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800230.epw site_zip_code=81133 site_time_zone_utc_offset=-7 -County "CO, Crowley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800250.epw site_zip_code=81063 site_time_zone_utc_offset=-7 -County "CO, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800270.epw site_zip_code=81252 site_time_zone_utc_offset=-7 -County "CO, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800290.epw site_zip_code=81416 site_time_zone_utc_offset=-7 -County "CO, Denver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800310.epw site_zip_code=80211 site_time_zone_utc_offset=-7 -County "CO, Dolores County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800330.epw site_zip_code=81324 site_time_zone_utc_offset=-7 -County "CO, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800350.epw site_zip_code=80134 site_time_zone_utc_offset=-7 -County "CO, Eagle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800370.epw site_zip_code=81620 site_time_zone_utc_offset=-7 -County "CO, El Paso County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800410.epw site_zip_code=80918 site_time_zone_utc_offset=-7 -County "CO, Elbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800390.epw site_zip_code=80107 site_time_zone_utc_offset=-7 -County "CO, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800430.epw site_zip_code=81212 site_time_zone_utc_offset=-7 -County "CO, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800450.epw site_zip_code=81601 site_time_zone_utc_offset=-7 -County "CO, Gilpin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800470.epw site_zip_code=80422 site_time_zone_utc_offset=-7 -County "CO, Grand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800490.epw site_zip_code=80459 site_time_zone_utc_offset=-7 -County "CO, Gunnison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800510.epw site_zip_code=81230 site_time_zone_utc_offset=-7 -County "CO, Hinsdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800530.epw site_zip_code=81235 site_time_zone_utc_offset=-7 -County "CO, Huerfano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800550.epw site_zip_code=81089 site_time_zone_utc_offset=-7 -County "CO, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800570.epw site_zip_code=80480 site_time_zone_utc_offset=-7 -County "CO, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800590.epw site_zip_code=80127 site_time_zone_utc_offset=-7 -County "CO, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800610.epw site_zip_code=81036 site_time_zone_utc_offset=-7 -County "CO, Kit Carson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800630.epw site_zip_code=80807 site_time_zone_utc_offset=-7 -County "CO, La Plata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800670.epw site_zip_code=81301 site_time_zone_utc_offset=-7 -County "CO, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800650.epw site_zip_code=80461 site_time_zone_utc_offset=-7 -County "CO, Larimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800690.epw site_zip_code=80525 site_time_zone_utc_offset=-7 -County "CO, Las Animas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800710.epw site_zip_code=81082 site_time_zone_utc_offset=-7 -County "CO, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800730.epw site_zip_code=80828 site_time_zone_utc_offset=-7 -County "CO, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800750.epw site_zip_code=80751 site_time_zone_utc_offset=-7 -County "CO, Mesa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800770.epw site_zip_code=81504 site_time_zone_utc_offset=-7 -County "CO, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800790.epw site_zip_code=81130 site_time_zone_utc_offset=-7 -County "CO, Moffat County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800810.epw site_zip_code=81625 site_time_zone_utc_offset=-7 -County "CO, Montezuma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800830.epw site_zip_code=81321 site_time_zone_utc_offset=-7 -County "CO, Montrose County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800850.epw site_zip_code=81401 site_time_zone_utc_offset=-7 -County "CO, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800870.epw site_zip_code=80701 site_time_zone_utc_offset=-7 -County "CO, Otero County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800890.epw site_zip_code=81050 site_time_zone_utc_offset=-7 -County "CO, Ouray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800910.epw site_zip_code=81432 site_time_zone_utc_offset=-7 -County "CO, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800930.epw site_zip_code=80421 site_time_zone_utc_offset=-7 -County "CO, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800950.epw site_zip_code=80734 site_time_zone_utc_offset=-7 -County "CO, Pitkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800970.epw site_zip_code=81612 site_time_zone_utc_offset=-7 -County "CO, Prowers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800990.epw site_zip_code=81052 site_time_zone_utc_offset=-7 -County "CO, Pueblo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801010.epw site_zip_code=81001 site_time_zone_utc_offset=-7 -County "CO, Rio Blanco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801030.epw site_zip_code=81648 site_time_zone_utc_offset=-7 -County "CO, Rio Grande County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801050.epw site_zip_code=81144 site_time_zone_utc_offset=-7 -County "CO, Routt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801070.epw site_zip_code=80487 site_time_zone_utc_offset=-7 -County "CO, Saguache County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801090.epw site_zip_code=81125 site_time_zone_utc_offset=-7 -County "CO, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801110.epw site_zip_code=81433 site_time_zone_utc_offset=-7 -County "CO, San Miguel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801130.epw site_zip_code=81435 site_time_zone_utc_offset=-7 -County "CO, Sedgwick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801150.epw site_zip_code=80737 site_time_zone_utc_offset=-7 -County "CO, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801170.epw site_zip_code=80424 site_time_zone_utc_offset=-7 -County "CO, Teller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801190.epw site_zip_code=80863 site_time_zone_utc_offset=-7 -County "CO, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801210.epw site_zip_code=80720 site_time_zone_utc_offset=-7 -County "CO, Weld County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801230.epw site_zip_code=80634 site_time_zone_utc_offset=-7 -County "CO, Yuma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801250.epw site_zip_code=80759 site_time_zone_utc_offset=-7 -County "CT, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900010.epw site_zip_code=06902 site_time_zone_utc_offset=-5 -County "CT, Hartford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900030.epw site_zip_code=06010 site_time_zone_utc_offset=-5 -County "CT, Litchfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900050.epw site_zip_code=06790 site_time_zone_utc_offset=-5 -County "CT, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900070.epw site_zip_code=06457 site_time_zone_utc_offset=-5 -County "CT, New Haven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900090.epw site_zip_code=06516 site_time_zone_utc_offset=-5 -County "CT, New London County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900110.epw site_zip_code=06360 site_time_zone_utc_offset=-5 -County "CT, Tolland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900130.epw site_zip_code=06066 site_time_zone_utc_offset=-5 -County "CT, Windham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900150.epw site_zip_code=06226 site_time_zone_utc_offset=-5 -County "DC, District of Columbia" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1100010.epw site_zip_code=20002 site_time_zone_utc_offset=-5 -County "DE, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000010.epw site_zip_code=19904 site_time_zone_utc_offset=-5 -County "DE, New Castle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000030.epw site_zip_code=19720 site_time_zone_utc_offset=-5 -County "DE, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000050.epw site_zip_code=19966 site_time_zone_utc_offset=-5 -County "FL, Alachua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200010.epw site_zip_code=32608 site_time_zone_utc_offset=-5 -County "FL, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200030.epw site_zip_code=32063 site_time_zone_utc_offset=-5 -County "FL, Bay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200050.epw site_zip_code=32404 site_time_zone_utc_offset=-6 -County "FL, Bradford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200070.epw site_zip_code=32091 site_time_zone_utc_offset=-5 -County "FL, Brevard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200090.epw site_zip_code=32940 site_time_zone_utc_offset=-5 -County "FL, Broward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200110.epw site_zip_code=33027 site_time_zone_utc_offset=-5 -County "FL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200130.epw site_zip_code=32424 site_time_zone_utc_offset=-6 -County "FL, Charlotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200150.epw site_zip_code=33950 site_time_zone_utc_offset=-5 -County "FL, Citrus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200170.epw site_zip_code=34446 site_time_zone_utc_offset=-5 -County "FL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200190.epw site_zip_code=32068 site_time_zone_utc_offset=-5 -County "FL, Collier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200210.epw site_zip_code=34112 site_time_zone_utc_offset=-5 -County "FL, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200230.epw site_zip_code=32025 site_time_zone_utc_offset=-5 -County "FL, DeSoto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200270.epw site_zip_code=34266 site_time_zone_utc_offset=-5 -County "FL, Dixie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200290.epw site_zip_code=32680 site_time_zone_utc_offset=-5 -County "FL, Duval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200310.epw site_zip_code=32256 site_time_zone_utc_offset=-5 -County "FL, Escambia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200330.epw site_zip_code=32507 site_time_zone_utc_offset=-6 -County "FL, Flagler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200350.epw site_zip_code=32137 site_time_zone_utc_offset=-5 -County "FL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200370.epw site_zip_code=32328 site_time_zone_utc_offset=-5 -County "FL, Gadsden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200390.epw site_zip_code=32351 site_time_zone_utc_offset=-5 -County "FL, Gilchrist County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200410.epw site_zip_code=32693 site_time_zone_utc_offset=-5 -County "FL, Glades County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200430.epw site_zip_code=33471 site_time_zone_utc_offset=-5 -County "FL, Gulf County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200450.epw site_zip_code=32456 site_time_zone_utc_offset=-6 -County "FL, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200470.epw site_zip_code=32052 site_time_zone_utc_offset=-5 -County "FL, Hardee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200490.epw site_zip_code=33873 site_time_zone_utc_offset=-5 -County "FL, Hendry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200510.epw site_zip_code=33440 site_time_zone_utc_offset=-5 -County "FL, Hernando County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200530.epw site_zip_code=34609 site_time_zone_utc_offset=-5 -County "FL, Highlands County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200550.epw site_zip_code=33870 site_time_zone_utc_offset=-5 -County "FL, Hillsborough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200570.epw site_zip_code=33647 site_time_zone_utc_offset=-5 -County "FL, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200590.epw site_zip_code=32425 site_time_zone_utc_offset=-6 -County "FL, Indian River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200610.epw site_zip_code=32958 site_time_zone_utc_offset=-5 -County "FL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200630.epw site_zip_code=32446 site_time_zone_utc_offset=-6 -County "FL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200650.epw site_zip_code=32344 site_time_zone_utc_offset=-5 -County "FL, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200670.epw site_zip_code=32066 site_time_zone_utc_offset=-5 -County "FL, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200690.epw site_zip_code=34711 site_time_zone_utc_offset=-5 -County "FL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200710.epw site_zip_code=34135 site_time_zone_utc_offset=-5 -County "FL, Leon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200730.epw site_zip_code=32303 site_time_zone_utc_offset=-5 -County "FL, Levy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200750.epw site_zip_code=32696 site_time_zone_utc_offset=-5 -County "FL, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200770.epw site_zip_code=32321 site_time_zone_utc_offset=-5 -County "FL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200790.epw site_zip_code=32340 site_time_zone_utc_offset=-5 -County "FL, Manatee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200810.epw site_zip_code=34221 site_time_zone_utc_offset=-5 -County "FL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200830.epw site_zip_code=34491 site_time_zone_utc_offset=-5 -County "FL, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200850.epw site_zip_code=34997 site_time_zone_utc_offset=-5 -County "FL, Miami-Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200860.epw site_zip_code=33160 site_time_zone_utc_offset=-5 -County "FL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200870.epw site_zip_code=33040 site_time_zone_utc_offset=-5 -County "FL, Nassau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200890.epw site_zip_code=32034 site_time_zone_utc_offset=-5 -County "FL, Okaloosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200910.epw site_zip_code=32541 site_time_zone_utc_offset=-6 -County "FL, Okeechobee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200930.epw site_zip_code=34974 site_time_zone_utc_offset=-5 -County "FL, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200950.epw site_zip_code=34787 site_time_zone_utc_offset=-5 -County "FL, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200970.epw site_zip_code=34746 site_time_zone_utc_offset=-5 -County "FL, Palm Beach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200990.epw site_zip_code=33411 site_time_zone_utc_offset=-5 -County "FL, Pasco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201010.epw site_zip_code=34668 site_time_zone_utc_offset=-5 -County "FL, Pinellas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201030.epw site_zip_code=34698 site_time_zone_utc_offset=-5 -County "FL, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201050.epw site_zip_code=33810 site_time_zone_utc_offset=-5 -County "FL, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201070.epw site_zip_code=32177 site_time_zone_utc_offset=-5 -County "FL, Santa Rosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201130.epw site_zip_code=32566 site_time_zone_utc_offset=-6 -County "FL, Sarasota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201150.epw site_zip_code=34293 site_time_zone_utc_offset=-5 -County "FL, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201170.epw site_zip_code=32771 site_time_zone_utc_offset=-5 -County "FL, St. Johns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201090.epw site_zip_code=32259 site_time_zone_utc_offset=-5 -County "FL, St. Lucie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201110.epw site_zip_code=34953 site_time_zone_utc_offset=-5 -County "FL, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201190.epw site_zip_code=32162 site_time_zone_utc_offset=-5 -County "FL, Suwannee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201210.epw site_zip_code=32060 site_time_zone_utc_offset=-5 -County "FL, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201230.epw site_zip_code=32348 site_time_zone_utc_offset=-5 -County "FL, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201250.epw site_zip_code=32054 site_time_zone_utc_offset=-5 -County "FL, Volusia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201270.epw site_zip_code=32174 site_time_zone_utc_offset=-5 -County "FL, Wakulla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201290.epw site_zip_code=32327 site_time_zone_utc_offset=-5 -County "FL, Walton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201310.epw site_zip_code=32459 site_time_zone_utc_offset=-6 -County "FL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201330.epw site_zip_code=32428 site_time_zone_utc_offset=-6 -County "GA, Appling County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300010.epw site_zip_code=31513 site_time_zone_utc_offset=-5 -County "GA, Atkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300030.epw site_zip_code=31642 site_time_zone_utc_offset=-5 -County "GA, Bacon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300050.epw site_zip_code=31510 site_time_zone_utc_offset=-5 -County "GA, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300070.epw site_zip_code=39870 site_time_zone_utc_offset=-5 -County "GA, Baldwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300090.epw site_zip_code=31061 site_time_zone_utc_offset=-5 -County "GA, Banks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300110.epw site_zip_code=30547 site_time_zone_utc_offset=-5 -County "GA, Barrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300130.epw site_zip_code=30680 site_time_zone_utc_offset=-5 -County "GA, Bartow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300150.epw site_zip_code=30120 site_time_zone_utc_offset=-5 -County "GA, Ben Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300170.epw site_zip_code=31750 site_time_zone_utc_offset=-5 -County "GA, Berrien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300190.epw site_zip_code=31639 site_time_zone_utc_offset=-5 -County "GA, Bibb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300210.epw site_zip_code=31204 site_time_zone_utc_offset=-5 -County "GA, Bleckley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300230.epw site_zip_code=31014 site_time_zone_utc_offset=-5 -County "GA, Brantley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300250.epw site_zip_code=31553 site_time_zone_utc_offset=-5 -County "GA, Brooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300270.epw site_zip_code=31643 site_time_zone_utc_offset=-5 -County "GA, Bryan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300290.epw site_zip_code=31324 site_time_zone_utc_offset=-5 -County "GA, Bulloch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300310.epw site_zip_code=30458 site_time_zone_utc_offset=-5 -County "GA, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300330.epw site_zip_code=30830 site_time_zone_utc_offset=-5 -County "GA, Butts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300350.epw site_zip_code=30233 site_time_zone_utc_offset=-5 -County "GA, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300370.epw site_zip_code=39846 site_time_zone_utc_offset=-5 -County "GA, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300390.epw site_zip_code=31558 site_time_zone_utc_offset=-5 -County "GA, Candler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300430.epw site_zip_code=30439 site_time_zone_utc_offset=-5 -County "GA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300450.epw site_zip_code=30117 site_time_zone_utc_offset=-5 -County "GA, Catoosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300470.epw site_zip_code=30736 site_time_zone_utc_offset=-5 -County "GA, Charlton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300490.epw site_zip_code=31537 site_time_zone_utc_offset=-5 -County "GA, Chatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300510.epw site_zip_code=31419 site_time_zone_utc_offset=-5 -County "GA, Chattahoochee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300530.epw site_zip_code=31905 site_time_zone_utc_offset=-5 -County "GA, Chattooga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300550.epw site_zip_code=30747 site_time_zone_utc_offset=-5 -County "GA, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300570.epw site_zip_code=30188 site_time_zone_utc_offset=-5 -County "GA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300590.epw site_zip_code=30606 site_time_zone_utc_offset=-5 -County "GA, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300610.epw site_zip_code=39851 site_time_zone_utc_offset=-5 -County "GA, Clayton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300630.epw site_zip_code=30236 site_time_zone_utc_offset=-5 -County "GA, Clinch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300650.epw site_zip_code=31634 site_time_zone_utc_offset=-5 -County "GA, Cobb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300670.epw site_zip_code=30080 site_time_zone_utc_offset=-5 -County "GA, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300690.epw site_zip_code=31533 site_time_zone_utc_offset=-5 -County "GA, Colquitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300710.epw site_zip_code=31768 site_time_zone_utc_offset=-5 -County "GA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300730.epw site_zip_code=30809 site_time_zone_utc_offset=-5 -County "GA, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300750.epw site_zip_code=31620 site_time_zone_utc_offset=-5 -County "GA, Coweta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300770.epw site_zip_code=30263 site_time_zone_utc_offset=-5 -County "GA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300790.epw site_zip_code=31078 site_time_zone_utc_offset=-5 -County "GA, Crisp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300810.epw site_zip_code=31015 site_time_zone_utc_offset=-5 -County "GA, Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300830.epw site_zip_code=30752 site_time_zone_utc_offset=-5 -County "GA, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300850.epw site_zip_code=30534 site_time_zone_utc_offset=-5 -County "GA, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300890.epw site_zip_code=30058 site_time_zone_utc_offset=-5 -County "GA, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300870.epw site_zip_code=39819 site_time_zone_utc_offset=-5 -County "GA, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300910.epw site_zip_code=31023 site_time_zone_utc_offset=-5 -County "GA, Dooly County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300930.epw site_zip_code=31092 site_time_zone_utc_offset=-5 -County "GA, Dougherty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300950.epw site_zip_code=31705 site_time_zone_utc_offset=-5 -County "GA, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300970.epw site_zip_code=30135 site_time_zone_utc_offset=-5 -County "GA, Early County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300990.epw site_zip_code=39823 site_time_zone_utc_offset=-5 -County "GA, Echols County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301010.epw site_zip_code=31636 site_time_zone_utc_offset=-5 -County "GA, Effingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301030.epw site_zip_code=31326 site_time_zone_utc_offset=-5 -County "GA, Elbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301050.epw site_zip_code=30635 site_time_zone_utc_offset=-5 -County "GA, Emanuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301070.epw site_zip_code=30401 site_time_zone_utc_offset=-5 -County "GA, Evans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301090.epw site_zip_code=30417 site_time_zone_utc_offset=-5 -County "GA, Fannin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301110.epw site_zip_code=30513 site_time_zone_utc_offset=-5 -County "GA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301130.epw site_zip_code=30269 site_time_zone_utc_offset=-5 -County "GA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301150.epw site_zip_code=30165 site_time_zone_utc_offset=-5 -County "GA, Forsyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301170.epw site_zip_code=30040 site_time_zone_utc_offset=-5 -County "GA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301190.epw site_zip_code=30553 site_time_zone_utc_offset=-5 -County "GA, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301210.epw site_zip_code=30318 site_time_zone_utc_offset=-5 -County "GA, Gilmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301230.epw site_zip_code=30540 site_time_zone_utc_offset=-5 -County "GA, Glascock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301250.epw site_zip_code=30810 site_time_zone_utc_offset=-5 -County "GA, Glynn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301270.epw site_zip_code=31525 site_time_zone_utc_offset=-5 -County "GA, Gordon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301290.epw site_zip_code=30701 site_time_zone_utc_offset=-5 -County "GA, Grady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301310.epw site_zip_code=39828 site_time_zone_utc_offset=-5 -County "GA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301330.epw site_zip_code=30642 site_time_zone_utc_offset=-5 -County "GA, Gwinnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301350.epw site_zip_code=30044 site_time_zone_utc_offset=-5 -County "GA, Habersham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301370.epw site_zip_code=30531 site_time_zone_utc_offset=-5 -County "GA, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301390.epw site_zip_code=30542 site_time_zone_utc_offset=-5 -County "GA, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301410.epw site_zip_code=31087 site_time_zone_utc_offset=-5 -County "GA, Haralson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301430.epw site_zip_code=30110 site_time_zone_utc_offset=-5 -County "GA, Harris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301450.epw site_zip_code=31804 site_time_zone_utc_offset=-5 -County "GA, Hart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301470.epw site_zip_code=30643 site_time_zone_utc_offset=-5 -County "GA, Heard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301490.epw site_zip_code=30217 site_time_zone_utc_offset=-5 -County "GA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301510.epw site_zip_code=30253 site_time_zone_utc_offset=-5 -County "GA, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301530.epw site_zip_code=31088 site_time_zone_utc_offset=-5 -County "GA, Irwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301550.epw site_zip_code=31774 site_time_zone_utc_offset=-5 -County "GA, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301570.epw site_zip_code=30549 site_time_zone_utc_offset=-5 -County "GA, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301590.epw site_zip_code=31064 site_time_zone_utc_offset=-5 -County "GA, Jeff Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301610.epw site_zip_code=31539 site_time_zone_utc_offset=-5 -County "GA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301630.epw site_zip_code=30434 site_time_zone_utc_offset=-5 -County "GA, Jenkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301650.epw site_zip_code=30442 site_time_zone_utc_offset=-5 -County "GA, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301670.epw site_zip_code=31096 site_time_zone_utc_offset=-5 -County "GA, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301690.epw site_zip_code=31032 site_time_zone_utc_offset=-5 -County "GA, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301710.epw site_zip_code=30204 site_time_zone_utc_offset=-5 -County "GA, Lanier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301730.epw site_zip_code=31635 site_time_zone_utc_offset=-5 -County "GA, Laurens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301750.epw site_zip_code=31021 site_time_zone_utc_offset=-5 -County "GA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301770.epw site_zip_code=31763 site_time_zone_utc_offset=-5 -County "GA, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301790.epw site_zip_code=31313 site_time_zone_utc_offset=-5 -County "GA, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301810.epw site_zip_code=30817 site_time_zone_utc_offset=-5 -County "GA, Long County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301830.epw site_zip_code=31316 site_time_zone_utc_offset=-5 -County "GA, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301850.epw site_zip_code=31601 site_time_zone_utc_offset=-5 -County "GA, Lumpkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301870.epw site_zip_code=30533 site_time_zone_utc_offset=-5 -County "GA, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301930.epw site_zip_code=31063 site_time_zone_utc_offset=-5 -County "GA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301950.epw site_zip_code=30633 site_time_zone_utc_offset=-5 -County "GA, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301970.epw site_zip_code=31803 site_time_zone_utc_offset=-5 -County "GA, McDuffie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301890.epw site_zip_code=30824 site_time_zone_utc_offset=-5 -County "GA, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301910.epw site_zip_code=31331 site_time_zone_utc_offset=-5 -County "GA, Meriwether County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301990.epw site_zip_code=31816 site_time_zone_utc_offset=-5 -County "GA, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302010.epw site_zip_code=39837 site_time_zone_utc_offset=-5 -County "GA, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302050.epw site_zip_code=31730 site_time_zone_utc_offset=-5 -County "GA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302070.epw site_zip_code=31029 site_time_zone_utc_offset=-5 -County "GA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302090.epw site_zip_code=30445 site_time_zone_utc_offset=-5 -County "GA, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302110.epw site_zip_code=30650 site_time_zone_utc_offset=-5 -County "GA, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302130.epw site_zip_code=30705 site_time_zone_utc_offset=-5 -County "GA, Muscogee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302150.epw site_zip_code=31907 site_time_zone_utc_offset=-5 -County "GA, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302170.epw site_zip_code=30016 site_time_zone_utc_offset=-5 -County "GA, Oconee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302190.epw site_zip_code=30677 site_time_zone_utc_offset=-5 -County "GA, Oglethorpe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302210.epw site_zip_code=30683 site_time_zone_utc_offset=-5 -County "GA, Paulding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302230.epw site_zip_code=30132 site_time_zone_utc_offset=-5 -County "GA, Peach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302250.epw site_zip_code=31030 site_time_zone_utc_offset=-5 -County "GA, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302270.epw site_zip_code=30143 site_time_zone_utc_offset=-5 -County "GA, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302290.epw site_zip_code=31516 site_time_zone_utc_offset=-5 -County "GA, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302310.epw site_zip_code=30292 site_time_zone_utc_offset=-5 -County "GA, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302330.epw site_zip_code=30125 site_time_zone_utc_offset=-5 -County "GA, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302350.epw site_zip_code=31036 site_time_zone_utc_offset=-5 -County "GA, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302370.epw site_zip_code=31024 site_time_zone_utc_offset=-5 -County "GA, Quitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302390.epw site_zip_code=39854 site_time_zone_utc_offset=-5 -County "GA, Rabun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302410.epw site_zip_code=30525 site_time_zone_utc_offset=-5 -County "GA, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302430.epw site_zip_code=39840 site_time_zone_utc_offset=-5 -County "GA, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302450.epw site_zip_code=30909 site_time_zone_utc_offset=-5 -County "GA, Rockdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302470.epw site_zip_code=30094 site_time_zone_utc_offset=-5 -County "GA, Schley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302490.epw site_zip_code=31806 site_time_zone_utc_offset=-5 -County "GA, Screven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302510.epw site_zip_code=30467 site_time_zone_utc_offset=-5 -County "GA, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302530.epw site_zip_code=39845 site_time_zone_utc_offset=-5 -County "GA, Spalding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302550.epw site_zip_code=30223 site_time_zone_utc_offset=-5 -County "GA, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302570.epw site_zip_code=30577 site_time_zone_utc_offset=-5 -County "GA, Stewart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302590.epw site_zip_code=31825 site_time_zone_utc_offset=-5 -County "GA, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302610.epw site_zip_code=31709 site_time_zone_utc_offset=-5 -County "GA, Talbot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302630.epw site_zip_code=31827 site_time_zone_utc_offset=-5 -County "GA, Taliaferro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302650.epw site_zip_code=30631 site_time_zone_utc_offset=-5 -County "GA, Tattnall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302670.epw site_zip_code=30427 site_time_zone_utc_offset=-5 -County "GA, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302690.epw site_zip_code=31006 site_time_zone_utc_offset=-5 -County "GA, Telfair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302710.epw site_zip_code=31055 site_time_zone_utc_offset=-5 -County "GA, Terrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302730.epw site_zip_code=39842 site_time_zone_utc_offset=-5 -County "GA, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302750.epw site_zip_code=31792 site_time_zone_utc_offset=-5 -County "GA, Tift County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302770.epw site_zip_code=31794 site_time_zone_utc_offset=-5 -County "GA, Toombs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302790.epw site_zip_code=30474 site_time_zone_utc_offset=-5 -County "GA, Towns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302810.epw site_zip_code=30546 site_time_zone_utc_offset=-5 -County "GA, Treutlen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302830.epw site_zip_code=30457 site_time_zone_utc_offset=-5 -County "GA, Troup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302850.epw site_zip_code=30241 site_time_zone_utc_offset=-5 -County "GA, Turner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302870.epw site_zip_code=31714 site_time_zone_utc_offset=-5 -County "GA, Twiggs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302890.epw site_zip_code=31044 site_time_zone_utc_offset=-5 -County "GA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302910.epw site_zip_code=30512 site_time_zone_utc_offset=-5 -County "GA, Upson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302930.epw site_zip_code=30286 site_time_zone_utc_offset=-5 -County "GA, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302950.epw site_zip_code=30741 site_time_zone_utc_offset=-5 -County "GA, Walton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302970.epw site_zip_code=30052 site_time_zone_utc_offset=-5 -County "GA, Ware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302990.epw site_zip_code=31503 site_time_zone_utc_offset=-5 -County "GA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303010.epw site_zip_code=30828 site_time_zone_utc_offset=-5 -County "GA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303030.epw site_zip_code=31082 site_time_zone_utc_offset=-5 -County "GA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303050.epw site_zip_code=31545 site_time_zone_utc_offset=-5 -County "GA, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303070.epw site_zip_code=31824 site_time_zone_utc_offset=-5 -County "GA, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303090.epw site_zip_code=30428 site_time_zone_utc_offset=-5 -County "GA, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303110.epw site_zip_code=30528 site_time_zone_utc_offset=-5 -County "GA, Whitfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303130.epw site_zip_code=30721 site_time_zone_utc_offset=-5 -County "GA, Wilcox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303150.epw site_zip_code=31001 site_time_zone_utc_offset=-5 -County "GA, Wilkes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303170.epw site_zip_code=30673 site_time_zone_utc_offset=-5 -County "GA, Wilkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303190.epw site_zip_code=31031 site_time_zone_utc_offset=-5 -County "GA, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303210.epw site_zip_code=31791 site_time_zone_utc_offset=-5 -County "HI, Hawaii County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500010.epw site_zip_code=96721 site_time_zone_utc_offset=-10 -County "HI, Honolulu County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500030.epw site_zip_code=96813 site_time_zone_utc_offset=-10 -County "HI, Kalawao County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500050.epw site_zip_code=96742 site_time_zone_utc_offset=-10 -County "HI, Kauai County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500070.epw site_zip_code=96746 site_time_zone_utc_offset=-10 -County "HI, Maui County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500090.epw site_zip_code=96793 site_time_zone_utc_offset=-10 -County "IA, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900010.epw site_zip_code=50849 site_time_zone_utc_offset=-6 -County "IA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900030.epw site_zip_code=50841 site_time_zone_utc_offset=-6 -County "IA, Allamakee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900050.epw site_zip_code=52172 site_time_zone_utc_offset=-6 -County "IA, Appanoose County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900070.epw site_zip_code=52544 site_time_zone_utc_offset=-6 -County "IA, Audubon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900090.epw site_zip_code=50025 site_time_zone_utc_offset=-6 -County "IA, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900110.epw site_zip_code=52349 site_time_zone_utc_offset=-6 -County "IA, Black Hawk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900130.epw site_zip_code=50613 site_time_zone_utc_offset=-6 -County "IA, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900150.epw site_zip_code=50036 site_time_zone_utc_offset=-6 -County "IA, Bremer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900170.epw site_zip_code=50677 site_time_zone_utc_offset=-6 -County "IA, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900190.epw site_zip_code=50644 site_time_zone_utc_offset=-6 -County "IA, Buena Vista County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900210.epw site_zip_code=50588 site_time_zone_utc_offset=-6 -County "IA, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900230.epw site_zip_code=50665 site_time_zone_utc_offset=-6 -County "IA, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900250.epw site_zip_code=50563 site_time_zone_utc_offset=-6 -County "IA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900270.epw site_zip_code=51401 site_time_zone_utc_offset=-6 -County "IA, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900290.epw site_zip_code=50022 site_time_zone_utc_offset=-6 -County "IA, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900310.epw site_zip_code=52772 site_time_zone_utc_offset=-6 -County "IA, Cerro Gordo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900330.epw site_zip_code=50401 site_time_zone_utc_offset=-6 -County "IA, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900350.epw site_zip_code=51012 site_time_zone_utc_offset=-6 -County "IA, Chickasaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900370.epw site_zip_code=50659 site_time_zone_utc_offset=-6 -County "IA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900390.epw site_zip_code=50213 site_time_zone_utc_offset=-6 -County "IA, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900410.epw site_zip_code=51301 site_time_zone_utc_offset=-6 -County "IA, Clayton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900430.epw site_zip_code=52052 site_time_zone_utc_offset=-6 -County "IA, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900450.epw site_zip_code=52732 site_time_zone_utc_offset=-6 -County "IA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900470.epw site_zip_code=51442 site_time_zone_utc_offset=-6 -County "IA, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900490.epw site_zip_code=50263 site_time_zone_utc_offset=-6 -County "IA, Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900510.epw site_zip_code=52537 site_time_zone_utc_offset=-6 -County "IA, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900530.epw site_zip_code=50144 site_time_zone_utc_offset=-6 -County "IA, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900550.epw site_zip_code=52057 site_time_zone_utc_offset=-6 -County "IA, Des Moines County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900570.epw site_zip_code=52601 site_time_zone_utc_offset=-6 -County "IA, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900590.epw site_zip_code=51360 site_time_zone_utc_offset=-6 -County "IA, Dubuque County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900610.epw site_zip_code=52001 site_time_zone_utc_offset=-6 -County "IA, Emmet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900630.epw site_zip_code=51334 site_time_zone_utc_offset=-6 -County "IA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900650.epw site_zip_code=50662 site_time_zone_utc_offset=-6 -County "IA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900670.epw site_zip_code=50616 site_time_zone_utc_offset=-6 -County "IA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900690.epw site_zip_code=50441 site_time_zone_utc_offset=-6 -County "IA, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900710.epw site_zip_code=51652 site_time_zone_utc_offset=-6 -County "IA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900730.epw site_zip_code=50129 site_time_zone_utc_offset=-6 -County "IA, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900750.epw site_zip_code=50638 site_time_zone_utc_offset=-6 -County "IA, Guthrie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900770.epw site_zip_code=50216 site_time_zone_utc_offset=-6 -County "IA, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900790.epw site_zip_code=50595 site_time_zone_utc_offset=-6 -County "IA, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900810.epw site_zip_code=50438 site_time_zone_utc_offset=-6 -County "IA, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900830.epw site_zip_code=50126 site_time_zone_utc_offset=-6 -County "IA, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900850.epw site_zip_code=51555 site_time_zone_utc_offset=-6 -County "IA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900870.epw site_zip_code=52641 site_time_zone_utc_offset=-6 -County "IA, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900890.epw site_zip_code=52136 site_time_zone_utc_offset=-6 -County "IA, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900910.epw site_zip_code=50548 site_time_zone_utc_offset=-6 -County "IA, Ida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900930.epw site_zip_code=51445 site_time_zone_utc_offset=-6 -County "IA, Iowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900950.epw site_zip_code=52361 site_time_zone_utc_offset=-6 -County "IA, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900970.epw site_zip_code=52060 site_time_zone_utc_offset=-6 -County "IA, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900990.epw site_zip_code=50208 site_time_zone_utc_offset=-6 -County "IA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901010.epw site_zip_code=52556 site_time_zone_utc_offset=-6 -County "IA, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901030.epw site_zip_code=52240 site_time_zone_utc_offset=-6 -County "IA, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901050.epw site_zip_code=52205 site_time_zone_utc_offset=-6 -County "IA, Keokuk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901070.epw site_zip_code=52591 site_time_zone_utc_offset=-6 -County "IA, Kossuth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901090.epw site_zip_code=50511 site_time_zone_utc_offset=-6 -County "IA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901110.epw site_zip_code=52627 site_time_zone_utc_offset=-6 -County "IA, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901130.epw site_zip_code=52404 site_time_zone_utc_offset=-6 -County "IA, Louisa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901150.epw site_zip_code=52653 site_time_zone_utc_offset=-6 -County "IA, Lucas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901170.epw site_zip_code=50049 site_time_zone_utc_offset=-6 -County "IA, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901190.epw site_zip_code=51246 site_time_zone_utc_offset=-6 -County "IA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901210.epw site_zip_code=50273 site_time_zone_utc_offset=-6 -County "IA, Mahaska County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901230.epw site_zip_code=52577 site_time_zone_utc_offset=-6 -County "IA, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901250.epw site_zip_code=50219 site_time_zone_utc_offset=-6 -County "IA, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901270.epw site_zip_code=50158 site_time_zone_utc_offset=-6 -County "IA, Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901290.epw site_zip_code=51534 site_time_zone_utc_offset=-6 -County "IA, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901310.epw site_zip_code=50461 site_time_zone_utc_offset=-6 -County "IA, Monona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901330.epw site_zip_code=51040 site_time_zone_utc_offset=-6 -County "IA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901350.epw site_zip_code=52531 site_time_zone_utc_offset=-6 -County "IA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901370.epw site_zip_code=51566 site_time_zone_utc_offset=-6 -County "IA, Muscatine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901390.epw site_zip_code=52761 site_time_zone_utc_offset=-6 -County "IA, O'Brien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901410.epw site_zip_code=51201 site_time_zone_utc_offset=-6 -County "IA, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901430.epw site_zip_code=51249 site_time_zone_utc_offset=-6 -County "IA, Page County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901450.epw site_zip_code=51632 site_time_zone_utc_offset=-6 -County "IA, Palo Alto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901470.epw site_zip_code=50536 site_time_zone_utc_offset=-6 -County "IA, Plymouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901490.epw site_zip_code=51031 site_time_zone_utc_offset=-6 -County "IA, Pocahontas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901510.epw site_zip_code=50574 site_time_zone_utc_offset=-6 -County "IA, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901530.epw site_zip_code=50023 site_time_zone_utc_offset=-6 -County "IA, Pottawattamie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901550.epw site_zip_code=51503 site_time_zone_utc_offset=-6 -County "IA, Poweshiek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901570.epw site_zip_code=50112 site_time_zone_utc_offset=-6 -County "IA, Ringgold County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901590.epw site_zip_code=50854 site_time_zone_utc_offset=-6 -County "IA, Sac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901610.epw site_zip_code=50583 site_time_zone_utc_offset=-6 -County "IA, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901630.epw site_zip_code=52722 site_time_zone_utc_offset=-6 -County "IA, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901650.epw site_zip_code=51537 site_time_zone_utc_offset=-6 -County "IA, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901670.epw site_zip_code=51250 site_time_zone_utc_offset=-6 -County "IA, Story County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901690.epw site_zip_code=50010 site_time_zone_utc_offset=-6 -County "IA, Tama County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901710.epw site_zip_code=52339 site_time_zone_utc_offset=-6 -County "IA, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901730.epw site_zip_code=50833 site_time_zone_utc_offset=-6 -County "IA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901750.epw site_zip_code=50801 site_time_zone_utc_offset=-6 -County "IA, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901770.epw site_zip_code=52565 site_time_zone_utc_offset=-6 -County "IA, Wapello County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901790.epw site_zip_code=52501 site_time_zone_utc_offset=-6 -County "IA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901810.epw site_zip_code=50125 site_time_zone_utc_offset=-6 -County "IA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901830.epw site_zip_code=52353 site_time_zone_utc_offset=-6 -County "IA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901850.epw site_zip_code=50060 site_time_zone_utc_offset=-6 -County "IA, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901870.epw site_zip_code=50501 site_time_zone_utc_offset=-6 -County "IA, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901890.epw site_zip_code=50436 site_time_zone_utc_offset=-6 -County "IA, Winneshiek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901910.epw site_zip_code=52101 site_time_zone_utc_offset=-6 -County "IA, Woodbury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901930.epw site_zip_code=51106 site_time_zone_utc_offset=-6 -County "IA, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901950.epw site_zip_code=50459 site_time_zone_utc_offset=-6 -County "IA, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901970.epw site_zip_code=50533 site_time_zone_utc_offset=-6 -County "ID, Ada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600010.epw site_zip_code=83646 site_time_zone_utc_offset=-7 -County "ID, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600030.epw site_zip_code=83612 site_time_zone_utc_offset=-7 -County "ID, Bannock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600050.epw site_zip_code=83201 site_time_zone_utc_offset=-7 -County "ID, Bear Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600070.epw site_zip_code=83254 site_time_zone_utc_offset=-7 -County "ID, Benewah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600090.epw site_zip_code=83861 site_time_zone_utc_offset=-8 -County "ID, Bingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600110.epw site_zip_code=83221 site_time_zone_utc_offset=-7 -County "ID, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600130.epw site_zip_code=83333 site_time_zone_utc_offset=-7 -County "ID, Boise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600150.epw site_zip_code=83716 site_time_zone_utc_offset=-7 -County "ID, Bonner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600170.epw site_zip_code=83864 site_time_zone_utc_offset=-8 -County "ID, Bonneville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600190.epw site_zip_code=83401 site_time_zone_utc_offset=-7 -County "ID, Boundary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600210.epw site_zip_code=83805 site_time_zone_utc_offset=-8 -County "ID, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600230.epw site_zip_code=83213 site_time_zone_utc_offset=-7 -County "ID, Camas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600250.epw site_zip_code=83327 site_time_zone_utc_offset=-7 -County "ID, Canyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600270.epw site_zip_code=83686 site_time_zone_utc_offset=-7 -County "ID, Caribou County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600290.epw site_zip_code=83276 site_time_zone_utc_offset=-7 -County "ID, Cassia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600310.epw site_zip_code=83318 site_time_zone_utc_offset=-7 -County "ID, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600330.epw site_zip_code=83423 site_time_zone_utc_offset=-7 -County "ID, Clearwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600350.epw site_zip_code=83544 site_time_zone_utc_offset=-8 -County "ID, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600370.epw site_zip_code=83226 site_time_zone_utc_offset=-7 -County "ID, Elmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600390.epw site_zip_code=83647 site_time_zone_utc_offset=-7 -County "ID, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600410.epw site_zip_code=83263 site_time_zone_utc_offset=-7 -County "ID, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600430.epw site_zip_code=83445 site_time_zone_utc_offset=-7 -County "ID, Gem County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600450.epw site_zip_code=83617 site_time_zone_utc_offset=-7 -County "ID, Gooding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600470.epw site_zip_code=83330 site_time_zone_utc_offset=-7 -County "ID, Idaho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600490.epw site_zip_code=83530 site_time_zone_utc_offset=-8 -County "ID, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600510.epw site_zip_code=83442 site_time_zone_utc_offset=-7 -County "ID, Jerome County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600530.epw site_zip_code=83338 site_time_zone_utc_offset=-7 -County "ID, Kootenai County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600550.epw site_zip_code=83854 site_time_zone_utc_offset=-8 -County "ID, Latah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600570.epw site_zip_code=83843 site_time_zone_utc_offset=-8 -County "ID, Lemhi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600590.epw site_zip_code=83467 site_time_zone_utc_offset=-7 -County "ID, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600610.epw site_zip_code=83536 site_time_zone_utc_offset=-8 -County "ID, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600630.epw site_zip_code=83352 site_time_zone_utc_offset=-7 -County "ID, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600650.epw site_zip_code=83440 site_time_zone_utc_offset=-7 -County "ID, Minidoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600670.epw site_zip_code=83350 site_time_zone_utc_offset=-7 -County "ID, Nez Perce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600690.epw site_zip_code=83501 site_time_zone_utc_offset=-8 -County "ID, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600710.epw site_zip_code=83252 site_time_zone_utc_offset=-7 -County "ID, Owyhee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600730.epw site_zip_code=83628 site_time_zone_utc_offset=-7 -County "ID, Payette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600750.epw site_zip_code=83661 site_time_zone_utc_offset=-7 -County "ID, Power County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600770.epw site_zip_code=83211 site_time_zone_utc_offset=-7 -County "ID, Shoshone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600790.epw site_zip_code=83837 site_time_zone_utc_offset=-8 -County "ID, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600810.epw site_zip_code=83455 site_time_zone_utc_offset=-7 -County "ID, Twin Falls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600830.epw site_zip_code=83301 site_time_zone_utc_offset=-7 -County "ID, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600850.epw site_zip_code=83638 site_time_zone_utc_offset=-7 -County "ID, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600870.epw site_zip_code=83672 site_time_zone_utc_offset=-7 -County "IL, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700010.epw site_zip_code=62301 site_time_zone_utc_offset=-6 -County "IL, Alexander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700030.epw site_zip_code=62914 site_time_zone_utc_offset=-6 -County "IL, Bond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700050.epw site_zip_code=62246 site_time_zone_utc_offset=-6 -County "IL, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700070.epw site_zip_code=61008 site_time_zone_utc_offset=-6 -County "IL, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700090.epw site_zip_code=62353 site_time_zone_utc_offset=-6 -County "IL, Bureau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700110.epw site_zip_code=61356 site_time_zone_utc_offset=-6 -County "IL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700130.epw site_zip_code=62047 site_time_zone_utc_offset=-6 -County "IL, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700150.epw site_zip_code=61074 site_time_zone_utc_offset=-6 -County "IL, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700170.epw site_zip_code=62618 site_time_zone_utc_offset=-6 -County "IL, Champaign County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700190.epw site_zip_code=61820 site_time_zone_utc_offset=-6 -County "IL, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700210.epw site_zip_code=62568 site_time_zone_utc_offset=-6 -County "IL, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700230.epw site_zip_code=62441 site_time_zone_utc_offset=-6 -County "IL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700250.epw site_zip_code=62839 site_time_zone_utc_offset=-6 -County "IL, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700270.epw site_zip_code=62231 site_time_zone_utc_offset=-6 -County "IL, Coles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700290.epw site_zip_code=61938 site_time_zone_utc_offset=-6 -County "IL, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700310.epw site_zip_code=60657 site_time_zone_utc_offset=-6 -County "IL, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700330.epw site_zip_code=62454 site_time_zone_utc_offset=-6 -County "IL, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700350.epw site_zip_code=62428 site_time_zone_utc_offset=-6 -County "IL, De Witt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700390.epw site_zip_code=61727 site_time_zone_utc_offset=-6 -County "IL, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700370.epw site_zip_code=60115 site_time_zone_utc_offset=-6 -County "IL, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700410.epw site_zip_code=61953 site_time_zone_utc_offset=-6 -County "IL, DuPage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700430.epw site_zip_code=60148 site_time_zone_utc_offset=-6 -County "IL, Edgar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700450.epw site_zip_code=61944 site_time_zone_utc_offset=-6 -County "IL, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700470.epw site_zip_code=62806 site_time_zone_utc_offset=-6 -County "IL, Effingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700490.epw site_zip_code=62401 site_time_zone_utc_offset=-6 -County "IL, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700510.epw site_zip_code=62471 site_time_zone_utc_offset=-6 -County "IL, Ford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700530.epw site_zip_code=60957 site_time_zone_utc_offset=-6 -County "IL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700550.epw site_zip_code=62896 site_time_zone_utc_offset=-6 -County "IL, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700570.epw site_zip_code=61520 site_time_zone_utc_offset=-6 -County "IL, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700590.epw site_zip_code=62984 site_time_zone_utc_offset=-6 -County "IL, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700610.epw site_zip_code=62016 site_time_zone_utc_offset=-6 -County "IL, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700630.epw site_zip_code=60450 site_time_zone_utc_offset=-6 -County "IL, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700650.epw site_zip_code=62859 site_time_zone_utc_offset=-6 -County "IL, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700670.epw site_zip_code=62321 site_time_zone_utc_offset=-6 -County "IL, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700690.epw site_zip_code=62931 site_time_zone_utc_offset=-6 -County "IL, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700710.epw site_zip_code=61469 site_time_zone_utc_offset=-6 -County "IL, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700730.epw site_zip_code=61443 site_time_zone_utc_offset=-6 -County "IL, Iroquois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700750.epw site_zip_code=60970 site_time_zone_utc_offset=-6 -County "IL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700770.epw site_zip_code=62901 site_time_zone_utc_offset=-6 -County "IL, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700790.epw site_zip_code=62448 site_time_zone_utc_offset=-6 -County "IL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700810.epw site_zip_code=62864 site_time_zone_utc_offset=-6 -County "IL, Jersey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700830.epw site_zip_code=62052 site_time_zone_utc_offset=-6 -County "IL, Jo Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700850.epw site_zip_code=61036 site_time_zone_utc_offset=-6 -County "IL, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700870.epw site_zip_code=62995 site_time_zone_utc_offset=-6 -County "IL, Kane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700890.epw site_zip_code=60506 site_time_zone_utc_offset=-6 -County "IL, Kankakee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700910.epw site_zip_code=60901 site_time_zone_utc_offset=-6 -County "IL, Kendall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700930.epw site_zip_code=60543 site_time_zone_utc_offset=-6 -County "IL, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700950.epw site_zip_code=61401 site_time_zone_utc_offset=-6 -County "IL, LaSalle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700990.epw site_zip_code=61350 site_time_zone_utc_offset=-6 -County "IL, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700970.epw site_zip_code=60085 site_time_zone_utc_offset=-6 -County "IL, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701010.epw site_zip_code=62439 site_time_zone_utc_offset=-6 -County "IL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701030.epw site_zip_code=61021 site_time_zone_utc_offset=-6 -County "IL, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701050.epw site_zip_code=61764 site_time_zone_utc_offset=-6 -County "IL, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701070.epw site_zip_code=62656 site_time_zone_utc_offset=-6 -County "IL, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701150.epw site_zip_code=62521 site_time_zone_utc_offset=-6 -County "IL, Macoupin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701170.epw site_zip_code=62626 site_time_zone_utc_offset=-6 -County "IL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701190.epw site_zip_code=62040 site_time_zone_utc_offset=-6 -County "IL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701210.epw site_zip_code=62801 site_time_zone_utc_offset=-6 -County "IL, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701230.epw site_zip_code=61540 site_time_zone_utc_offset=-6 -County "IL, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701250.epw site_zip_code=62644 site_time_zone_utc_offset=-6 -County "IL, Massac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701270.epw site_zip_code=62960 site_time_zone_utc_offset=-6 -County "IL, McDonough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701090.epw site_zip_code=61455 site_time_zone_utc_offset=-6 -County "IL, McHenry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701110.epw site_zip_code=60014 site_time_zone_utc_offset=-6 -County "IL, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701130.epw site_zip_code=61761 site_time_zone_utc_offset=-6 -County "IL, Menard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701290.epw site_zip_code=62675 site_time_zone_utc_offset=-6 -County "IL, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701310.epw site_zip_code=61231 site_time_zone_utc_offset=-6 -County "IL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701330.epw site_zip_code=62298 site_time_zone_utc_offset=-6 -County "IL, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701350.epw site_zip_code=62056 site_time_zone_utc_offset=-6 -County "IL, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701370.epw site_zip_code=62650 site_time_zone_utc_offset=-6 -County "IL, Moultrie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701390.epw site_zip_code=61951 site_time_zone_utc_offset=-6 -County "IL, Ogle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701410.epw site_zip_code=61068 site_time_zone_utc_offset=-6 -County "IL, Peoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701430.epw site_zip_code=61604 site_time_zone_utc_offset=-6 -County "IL, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701450.epw site_zip_code=62832 site_time_zone_utc_offset=-6 -County "IL, Piatt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701470.epw site_zip_code=61856 site_time_zone_utc_offset=-6 -County "IL, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701490.epw site_zip_code=62363 site_time_zone_utc_offset=-6 -County "IL, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701510.epw site_zip_code=62938 site_time_zone_utc_offset=-6 -County "IL, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701530.epw site_zip_code=62964 site_time_zone_utc_offset=-6 -County "IL, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701550.epw site_zip_code=61326 site_time_zone_utc_offset=-6 -County "IL, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701570.epw site_zip_code=62286 site_time_zone_utc_offset=-6 -County "IL, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701590.epw site_zip_code=62450 site_time_zone_utc_offset=-6 -County "IL, Rock Island County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701610.epw site_zip_code=61265 site_time_zone_utc_offset=-6 -County "IL, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701650.epw site_zip_code=62946 site_time_zone_utc_offset=-6 -County "IL, Sangamon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701670.epw site_zip_code=62704 site_time_zone_utc_offset=-6 -County "IL, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701690.epw site_zip_code=62681 site_time_zone_utc_offset=-6 -County "IL, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701710.epw site_zip_code=62694 site_time_zone_utc_offset=-6 -County "IL, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701730.epw site_zip_code=62565 site_time_zone_utc_offset=-6 -County "IL, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701630.epw site_zip_code=62269 site_time_zone_utc_offset=-6 -County "IL, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701750.epw site_zip_code=61491 site_time_zone_utc_offset=-6 -County "IL, Stephenson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701770.epw site_zip_code=61032 site_time_zone_utc_offset=-6 -County "IL, Tazewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701790.epw site_zip_code=61554 site_time_zone_utc_offset=-6 -County "IL, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701810.epw site_zip_code=62906 site_time_zone_utc_offset=-6 -County "IL, Vermilion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701830.epw site_zip_code=61832 site_time_zone_utc_offset=-6 -County "IL, Wabash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701850.epw site_zip_code=62863 site_time_zone_utc_offset=-6 -County "IL, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701870.epw site_zip_code=61462 site_time_zone_utc_offset=-6 -County "IL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701890.epw site_zip_code=62263 site_time_zone_utc_offset=-6 -County "IL, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701910.epw site_zip_code=62837 site_time_zone_utc_offset=-6 -County "IL, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701930.epw site_zip_code=62821 site_time_zone_utc_offset=-6 -County "IL, Whiteside County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701950.epw site_zip_code=61081 site_time_zone_utc_offset=-6 -County "IL, Will County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701970.epw site_zip_code=60435 site_time_zone_utc_offset=-6 -County "IL, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701990.epw site_zip_code=62959 site_time_zone_utc_offset=-6 -County "IL, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1702010.epw site_zip_code=61107 site_time_zone_utc_offset=-6 -County "IL, Woodford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1702030.epw site_zip_code=61548 site_time_zone_utc_offset=-6 -County "IN, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800010.epw site_zip_code=46733 site_time_zone_utc_offset=-5 -County "IN, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800030.epw site_zip_code=46835 site_time_zone_utc_offset=-5 -County "IN, Bartholomew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800050.epw site_zip_code=47201 site_time_zone_utc_offset=-5 -County "IN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800070.epw site_zip_code=47944 site_time_zone_utc_offset=-5 -County "IN, Blackford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800090.epw site_zip_code=47348 site_time_zone_utc_offset=-5 -County "IN, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800110.epw site_zip_code=46077 site_time_zone_utc_offset=-5 -County "IN, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800130.epw site_zip_code=47448 site_time_zone_utc_offset=-5 -County "IN, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800150.epw site_zip_code=46923 site_time_zone_utc_offset=-5 -County "IN, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800170.epw site_zip_code=46947 site_time_zone_utc_offset=-5 -County "IN, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800190.epw site_zip_code=47130 site_time_zone_utc_offset=-5 -County "IN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800210.epw site_zip_code=47834 site_time_zone_utc_offset=-5 -County "IN, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800230.epw site_zip_code=46041 site_time_zone_utc_offset=-5 -County "IN, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800250.epw site_zip_code=47118 site_time_zone_utc_offset=-5 -County "IN, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800270.epw site_zip_code=47501 site_time_zone_utc_offset=-5 -County "IN, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800330.epw site_zip_code=46706 site_time_zone_utc_offset=-5 -County "IN, Dearborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800290.epw site_zip_code=47025 site_time_zone_utc_offset=-5 -County "IN, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800310.epw site_zip_code=47240 site_time_zone_utc_offset=-5 -County "IN, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800350.epw site_zip_code=47304 site_time_zone_utc_offset=-5 -County "IN, Dubois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800370.epw site_zip_code=47546 site_time_zone_utc_offset=-5 -County "IN, Elkhart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800390.epw site_zip_code=46514 site_time_zone_utc_offset=-5 -County "IN, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800410.epw site_zip_code=47331 site_time_zone_utc_offset=-5 -County "IN, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800430.epw site_zip_code=47150 site_time_zone_utc_offset=-5 -County "IN, Fountain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800450.epw site_zip_code=47918 site_time_zone_utc_offset=-5 -County "IN, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800470.epw site_zip_code=47012 site_time_zone_utc_offset=-5 -County "IN, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800490.epw site_zip_code=46975 site_time_zone_utc_offset=-5 -County "IN, Gibson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800510.epw site_zip_code=47670 site_time_zone_utc_offset=-6 -County "IN, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800530.epw site_zip_code=46953 site_time_zone_utc_offset=-5 -County "IN, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800550.epw site_zip_code=47441 site_time_zone_utc_offset=-5 -County "IN, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800570.epw site_zip_code=46032 site_time_zone_utc_offset=-5 -County "IN, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800590.epw site_zip_code=46140 site_time_zone_utc_offset=-5 -County "IN, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800610.epw site_zip_code=47112 site_time_zone_utc_offset=-5 -County "IN, Hendricks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800630.epw site_zip_code=46112 site_time_zone_utc_offset=-5 -County "IN, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800650.epw site_zip_code=47362 site_time_zone_utc_offset=-5 -County "IN, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800670.epw site_zip_code=46901 site_time_zone_utc_offset=-5 -County "IN, Huntington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800690.epw site_zip_code=46750 site_time_zone_utc_offset=-5 -County "IN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800710.epw site_zip_code=47274 site_time_zone_utc_offset=-5 -County "IN, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800730.epw site_zip_code=47978 site_time_zone_utc_offset=-6 -County "IN, Jay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800750.epw site_zip_code=47371 site_time_zone_utc_offset=-5 -County "IN, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800770.epw site_zip_code=47250 site_time_zone_utc_offset=-5 -County "IN, Jennings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800790.epw site_zip_code=47265 site_time_zone_utc_offset=-5 -County "IN, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800810.epw site_zip_code=46143 site_time_zone_utc_offset=-5 -County "IN, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800830.epw site_zip_code=47591 site_time_zone_utc_offset=-5 -County "IN, Kosciusko County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800850.epw site_zip_code=46580 site_time_zone_utc_offset=-5 -County "IN, LaGrange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800870.epw site_zip_code=46761 site_time_zone_utc_offset=-5 -County "IN, LaPorte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800910.epw site_zip_code=46360 site_time_zone_utc_offset=-6 -County "IN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800890.epw site_zip_code=46307 site_time_zone_utc_offset=-6 -County "IN, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800930.epw site_zip_code=47421 site_time_zone_utc_offset=-5 -County "IN, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800950.epw site_zip_code=46016 site_time_zone_utc_offset=-5 -County "IN, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800970.epw site_zip_code=46227 site_time_zone_utc_offset=-5 -County "IN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800990.epw site_zip_code=46563 site_time_zone_utc_offset=-5 -County "IN, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801010.epw site_zip_code=47581 site_time_zone_utc_offset=-5 -County "IN, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801030.epw site_zip_code=46970 site_time_zone_utc_offset=-5 -County "IN, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801050.epw site_zip_code=47401 site_time_zone_utc_offset=-5 -County "IN, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801070.epw site_zip_code=47933 site_time_zone_utc_offset=-5 -County "IN, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801090.epw site_zip_code=46151 site_time_zone_utc_offset=-5 -County "IN, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801110.epw site_zip_code=46349 site_time_zone_utc_offset=-6 -County "IN, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801130.epw site_zip_code=46755 site_time_zone_utc_offset=-5 -County "IN, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801150.epw site_zip_code=47040 site_time_zone_utc_offset=-5 -County "IN, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801170.epw site_zip_code=47454 site_time_zone_utc_offset=-5 -County "IN, Owen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801190.epw site_zip_code=47460 site_time_zone_utc_offset=-5 -County "IN, Parke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801210.epw site_zip_code=47872 site_time_zone_utc_offset=-5 -County "IN, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801230.epw site_zip_code=47586 site_time_zone_utc_offset=-6 -County "IN, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801250.epw site_zip_code=47567 site_time_zone_utc_offset=-5 -County "IN, Porter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801270.epw site_zip_code=46383 site_time_zone_utc_offset=-6 -County "IN, Posey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801290.epw site_zip_code=47620 site_time_zone_utc_offset=-6 -County "IN, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801310.epw site_zip_code=46996 site_time_zone_utc_offset=-5 -County "IN, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801330.epw site_zip_code=46135 site_time_zone_utc_offset=-5 -County "IN, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801350.epw site_zip_code=47394 site_time_zone_utc_offset=-5 -County "IN, Ripley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801370.epw site_zip_code=47006 site_time_zone_utc_offset=-5 -County "IN, Rush County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801390.epw site_zip_code=46173 site_time_zone_utc_offset=-5 -County "IN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801430.epw site_zip_code=47170 site_time_zone_utc_offset=-5 -County "IN, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801450.epw site_zip_code=46176 site_time_zone_utc_offset=-5 -County "IN, Spencer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801470.epw site_zip_code=47635 site_time_zone_utc_offset=-6 -County "IN, St. Joseph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801410.epw site_zip_code=46544 site_time_zone_utc_offset=-5 -County "IN, Starke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801490.epw site_zip_code=46534 site_time_zone_utc_offset=-6 -County "IN, Steuben County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801510.epw site_zip_code=46703 site_time_zone_utc_offset=-5 -County "IN, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801530.epw site_zip_code=47882 site_time_zone_utc_offset=-5 -County "IN, Switzerland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801550.epw site_zip_code=47043 site_time_zone_utc_offset=-5 -County "IN, Tippecanoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801570.epw site_zip_code=47906 site_time_zone_utc_offset=-5 -County "IN, Tipton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801590.epw site_zip_code=46072 site_time_zone_utc_offset=-5 -County "IN, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801610.epw site_zip_code=47353 site_time_zone_utc_offset=-5 -County "IN, Vanderburgh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801630.epw site_zip_code=47714 site_time_zone_utc_offset=-6 -County "IN, Vermillion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801650.epw site_zip_code=47842 site_time_zone_utc_offset=-5 -County "IN, Vigo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801670.epw site_zip_code=47802 site_time_zone_utc_offset=-5 -County "IN, Wabash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801690.epw site_zip_code=46992 site_time_zone_utc_offset=-5 -County "IN, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801710.epw site_zip_code=47993 site_time_zone_utc_offset=-5 -County "IN, Warrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801730.epw site_zip_code=47630 site_time_zone_utc_offset=-6 -County "IN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801750.epw site_zip_code=47167 site_time_zone_utc_offset=-5 -County "IN, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801770.epw site_zip_code=47374 site_time_zone_utc_offset=-5 -County "IN, Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801790.epw site_zip_code=46714 site_time_zone_utc_offset=-5 -County "IN, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801810.epw site_zip_code=47960 site_time_zone_utc_offset=-5 -County "IN, Whitley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801830.epw site_zip_code=46725 site_time_zone_utc_offset=-5 -County "KS, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000010.epw site_zip_code=66749 site_time_zone_utc_offset=-6 -County "KS, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000030.epw site_zip_code=66032 site_time_zone_utc_offset=-6 -County "KS, Atchison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000050.epw site_zip_code=66002 site_time_zone_utc_offset=-6 -County "KS, Barber County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000070.epw site_zip_code=67104 site_time_zone_utc_offset=-6 -County "KS, Barton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000090.epw site_zip_code=67530 site_time_zone_utc_offset=-6 -County "KS, Bourbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000110.epw site_zip_code=66701 site_time_zone_utc_offset=-6 -County "KS, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000130.epw site_zip_code=66434 site_time_zone_utc_offset=-6 -County "KS, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000150.epw site_zip_code=67042 site_time_zone_utc_offset=-6 -County "KS, Chase County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000170.epw site_zip_code=66845 site_time_zone_utc_offset=-6 -County "KS, Chautauqua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000190.epw site_zip_code=67361 site_time_zone_utc_offset=-6 -County "KS, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000210.epw site_zip_code=66713 site_time_zone_utc_offset=-6 -County "KS, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000230.epw site_zip_code=67756 site_time_zone_utc_offset=-6 -County "KS, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000250.epw site_zip_code=67865 site_time_zone_utc_offset=-6 -County "KS, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000270.epw site_zip_code=67432 site_time_zone_utc_offset=-6 -County "KS, Cloud County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000290.epw site_zip_code=66901 site_time_zone_utc_offset=-6 -County "KS, Coffey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000310.epw site_zip_code=66839 site_time_zone_utc_offset=-6 -County "KS, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000330.epw site_zip_code=67029 site_time_zone_utc_offset=-6 -County "KS, Cowley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000350.epw site_zip_code=67005 site_time_zone_utc_offset=-6 -County "KS, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000370.epw site_zip_code=66762 site_time_zone_utc_offset=-6 -County "KS, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000390.epw site_zip_code=67749 site_time_zone_utc_offset=-6 -County "KS, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000410.epw site_zip_code=67410 site_time_zone_utc_offset=-6 -County "KS, Doniphan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000430.epw site_zip_code=66090 site_time_zone_utc_offset=-6 -County "KS, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000450.epw site_zip_code=66049 site_time_zone_utc_offset=-6 -County "KS, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000470.epw site_zip_code=67547 site_time_zone_utc_offset=-6 -County "KS, Elk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000490.epw site_zip_code=67349 site_time_zone_utc_offset=-6 -County "KS, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000510.epw site_zip_code=67601 site_time_zone_utc_offset=-6 -County "KS, Ellsworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000530.epw site_zip_code=67439 site_time_zone_utc_offset=-6 -County "KS, Finney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000550.epw site_zip_code=67846 site_time_zone_utc_offset=-6 -County "KS, Ford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000570.epw site_zip_code=67801 site_time_zone_utc_offset=-6 -County "KS, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000590.epw site_zip_code=66067 site_time_zone_utc_offset=-6 -County "KS, Geary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000610.epw site_zip_code=66441 site_time_zone_utc_offset=-6 -County "KS, Gove County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000630.epw site_zip_code=67752 site_time_zone_utc_offset=-6 -County "KS, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000650.epw site_zip_code=67642 site_time_zone_utc_offset=-6 -County "KS, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000670.epw site_zip_code=67880 site_time_zone_utc_offset=-6 -County "KS, Gray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000690.epw site_zip_code=67867 site_time_zone_utc_offset=-6 -County "KS, Greeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000710.epw site_zip_code=67879 site_time_zone_utc_offset=-7 -County "KS, Greenwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000730.epw site_zip_code=67045 site_time_zone_utc_offset=-6 -County "KS, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000750.epw site_zip_code=67878 site_time_zone_utc_offset=-7 -County "KS, Harper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000770.epw site_zip_code=67003 site_time_zone_utc_offset=-6 -County "KS, Harvey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000790.epw site_zip_code=67114 site_time_zone_utc_offset=-6 -County "KS, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000810.epw site_zip_code=67877 site_time_zone_utc_offset=-6 -County "KS, Hodgeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000830.epw site_zip_code=67854 site_time_zone_utc_offset=-6 -County "KS, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000850.epw site_zip_code=66436 site_time_zone_utc_offset=-6 -County "KS, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000870.epw site_zip_code=66512 site_time_zone_utc_offset=-6 -County "KS, Jewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000890.epw site_zip_code=66956 site_time_zone_utc_offset=-6 -County "KS, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000910.epw site_zip_code=66062 site_time_zone_utc_offset=-6 -County "KS, Kearny County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000930.epw site_zip_code=67860 site_time_zone_utc_offset=-6 -County "KS, Kingman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000950.epw site_zip_code=67068 site_time_zone_utc_offset=-6 -County "KS, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000970.epw site_zip_code=67054 site_time_zone_utc_offset=-6 -County "KS, Labette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000990.epw site_zip_code=67357 site_time_zone_utc_offset=-6 -County "KS, Lane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001010.epw site_zip_code=67839 site_time_zone_utc_offset=-6 -County "KS, Leavenworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001030.epw site_zip_code=66048 site_time_zone_utc_offset=-6 -County "KS, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001050.epw site_zip_code=67455 site_time_zone_utc_offset=-6 -County "KS, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001070.epw site_zip_code=66040 site_time_zone_utc_offset=-6 -County "KS, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001090.epw site_zip_code=67748 site_time_zone_utc_offset=-6 -County "KS, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001110.epw site_zip_code=66801 site_time_zone_utc_offset=-6 -County "KS, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001150.epw site_zip_code=67063 site_time_zone_utc_offset=-6 -County "KS, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001170.epw site_zip_code=66508 site_time_zone_utc_offset=-6 -County "KS, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001130.epw site_zip_code=67460 site_time_zone_utc_offset=-6 -County "KS, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001190.epw site_zip_code=67864 site_time_zone_utc_offset=-6 -County "KS, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001210.epw site_zip_code=66071 site_time_zone_utc_offset=-6 -County "KS, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001230.epw site_zip_code=67420 site_time_zone_utc_offset=-6 -County "KS, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001250.epw site_zip_code=67301 site_time_zone_utc_offset=-6 -County "KS, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001270.epw site_zip_code=66846 site_time_zone_utc_offset=-6 -County "KS, Morton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001290.epw site_zip_code=67950 site_time_zone_utc_offset=-6 -County "KS, Nemaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001310.epw site_zip_code=66538 site_time_zone_utc_offset=-6 -County "KS, Neosho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001330.epw site_zip_code=66720 site_time_zone_utc_offset=-6 -County "KS, Ness County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001350.epw site_zip_code=67560 site_time_zone_utc_offset=-6 -County "KS, Norton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001370.epw site_zip_code=67654 site_time_zone_utc_offset=-6 -County "KS, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001390.epw site_zip_code=66523 site_time_zone_utc_offset=-6 -County "KS, Osborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001410.epw site_zip_code=67473 site_time_zone_utc_offset=-6 -County "KS, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001430.epw site_zip_code=67467 site_time_zone_utc_offset=-6 -County "KS, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001450.epw site_zip_code=67550 site_time_zone_utc_offset=-6 -County "KS, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001470.epw site_zip_code=67661 site_time_zone_utc_offset=-6 -County "KS, Pottawatomie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001490.epw site_zip_code=66547 site_time_zone_utc_offset=-6 -County "KS, Pratt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001510.epw site_zip_code=67124 site_time_zone_utc_offset=-6 -County "KS, Rawlins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001530.epw site_zip_code=67730 site_time_zone_utc_offset=-6 -County "KS, Reno County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001550.epw site_zip_code=67501 site_time_zone_utc_offset=-6 -County "KS, Republic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001570.epw site_zip_code=66935 site_time_zone_utc_offset=-6 -County "KS, Rice County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001590.epw site_zip_code=67554 site_time_zone_utc_offset=-6 -County "KS, Riley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001610.epw site_zip_code=66502 site_time_zone_utc_offset=-6 -County "KS, Rooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001630.epw site_zip_code=67663 site_time_zone_utc_offset=-6 -County "KS, Rush County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001650.epw site_zip_code=67548 site_time_zone_utc_offset=-6 -County "KS, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001670.epw site_zip_code=67665 site_time_zone_utc_offset=-6 -County "KS, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001690.epw site_zip_code=67401 site_time_zone_utc_offset=-6 -County "KS, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001710.epw site_zip_code=67871 site_time_zone_utc_offset=-6 -County "KS, Sedgwick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001730.epw site_zip_code=67212 site_time_zone_utc_offset=-6 -County "KS, Seward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001750.epw site_zip_code=67901 site_time_zone_utc_offset=-6 -County "KS, Shawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001770.epw site_zip_code=66614 site_time_zone_utc_offset=-6 -County "KS, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001790.epw site_zip_code=67740 site_time_zone_utc_offset=-6 -County "KS, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001810.epw site_zip_code=67735 site_time_zone_utc_offset=-7 -County "KS, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001830.epw site_zip_code=66967 site_time_zone_utc_offset=-6 -County "KS, Stafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001850.epw site_zip_code=67576 site_time_zone_utc_offset=-6 -County "KS, Stanton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001870.epw site_zip_code=67855 site_time_zone_utc_offset=-6 -County "KS, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001890.epw site_zip_code=67951 site_time_zone_utc_offset=-6 -County "KS, Sumner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001910.epw site_zip_code=67152 site_time_zone_utc_offset=-6 -County "KS, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001930.epw site_zip_code=67701 site_time_zone_utc_offset=-6 -County "KS, Trego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001950.epw site_zip_code=67672 site_time_zone_utc_offset=-6 -County "KS, Wabaunsee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001970.epw site_zip_code=66401 site_time_zone_utc_offset=-6 -County "KS, Wallace County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001990.epw site_zip_code=67758 site_time_zone_utc_offset=-7 -County "KS, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002010.epw site_zip_code=66968 site_time_zone_utc_offset=-6 -County "KS, Wichita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002030.epw site_zip_code=67861 site_time_zone_utc_offset=-6 -County "KS, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002050.epw site_zip_code=66736 site_time_zone_utc_offset=-6 -County "KS, Woodson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002070.epw site_zip_code=66783 site_time_zone_utc_offset=-6 -County "KS, Wyandotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002090.epw site_zip_code=66102 site_time_zone_utc_offset=-6 -County "KY, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100010.epw site_zip_code=42728 site_time_zone_utc_offset=-6 -County "KY, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100030.epw site_zip_code=42164 site_time_zone_utc_offset=-6 -County "KY, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100050.epw site_zip_code=40342 site_time_zone_utc_offset=-5 -County "KY, Ballard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100070.epw site_zip_code=42053 site_time_zone_utc_offset=-6 -County "KY, Barren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100090.epw site_zip_code=42141 site_time_zone_utc_offset=-6 -County "KY, Bath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100110.epw site_zip_code=40360 site_time_zone_utc_offset=-5 -County "KY, Bell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100130.epw site_zip_code=40965 site_time_zone_utc_offset=-5 -County "KY, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100150.epw site_zip_code=41042 site_time_zone_utc_offset=-5 -County "KY, Bourbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100170.epw site_zip_code=40361 site_time_zone_utc_offset=-5 -County "KY, Boyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100190.epw site_zip_code=41102 site_time_zone_utc_offset=-5 -County "KY, Boyle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100210.epw site_zip_code=40422 site_time_zone_utc_offset=-5 -County "KY, Bracken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100230.epw site_zip_code=41004 site_time_zone_utc_offset=-5 -County "KY, Breathitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100250.epw site_zip_code=41339 site_time_zone_utc_offset=-5 -County "KY, Breckinridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100270.epw site_zip_code=40143 site_time_zone_utc_offset=-6 -County "KY, Bullitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100290.epw site_zip_code=40165 site_time_zone_utc_offset=-5 -County "KY, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100310.epw site_zip_code=42261 site_time_zone_utc_offset=-6 -County "KY, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100330.epw site_zip_code=42445 site_time_zone_utc_offset=-6 -County "KY, Calloway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100350.epw site_zip_code=42071 site_time_zone_utc_offset=-6 -County "KY, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100370.epw site_zip_code=41071 site_time_zone_utc_offset=-5 -County "KY, Carlisle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100390.epw site_zip_code=42023 site_time_zone_utc_offset=-6 -County "KY, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100410.epw site_zip_code=41008 site_time_zone_utc_offset=-5 -County "KY, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100430.epw site_zip_code=41143 site_time_zone_utc_offset=-5 -County "KY, Casey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100450.epw site_zip_code=42539 site_time_zone_utc_offset=-5 -County "KY, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100470.epw site_zip_code=42240 site_time_zone_utc_offset=-6 -County "KY, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100490.epw site_zip_code=40391 site_time_zone_utc_offset=-5 -County "KY, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100510.epw site_zip_code=40962 site_time_zone_utc_offset=-5 -County "KY, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100530.epw site_zip_code=42602 site_time_zone_utc_offset=-6 -County "KY, Crittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100550.epw site_zip_code=42064 site_time_zone_utc_offset=-6 -County "KY, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100570.epw site_zip_code=42717 site_time_zone_utc_offset=-6 -County "KY, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100590.epw site_zip_code=42301 site_time_zone_utc_offset=-6 -County "KY, Edmonson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100610.epw site_zip_code=42210 site_time_zone_utc_offset=-6 -County "KY, Elliott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100630.epw site_zip_code=41171 site_time_zone_utc_offset=-5 -County "KY, Estill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100650.epw site_zip_code=40336 site_time_zone_utc_offset=-5 -County "KY, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100670.epw site_zip_code=40509 site_time_zone_utc_offset=-5 -County "KY, Fleming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100690.epw site_zip_code=41041 site_time_zone_utc_offset=-5 -County "KY, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100710.epw site_zip_code=41653 site_time_zone_utc_offset=-5 -County "KY, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100730.epw site_zip_code=40601 site_time_zone_utc_offset=-5 -County "KY, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100750.epw site_zip_code=42041 site_time_zone_utc_offset=-6 -County "KY, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100770.epw site_zip_code=41095 site_time_zone_utc_offset=-5 -County "KY, Garrard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100790.epw site_zip_code=40444 site_time_zone_utc_offset=-5 -County "KY, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100810.epw site_zip_code=41035 site_time_zone_utc_offset=-5 -County "KY, Graves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100830.epw site_zip_code=42066 site_time_zone_utc_offset=-6 -County "KY, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100850.epw site_zip_code=42754 site_time_zone_utc_offset=-6 -County "KY, Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100870.epw site_zip_code=42743 site_time_zone_utc_offset=-6 -County "KY, Greenup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100890.epw site_zip_code=41144 site_time_zone_utc_offset=-5 -County "KY, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100910.epw site_zip_code=42348 site_time_zone_utc_offset=-6 -County "KY, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100930.epw site_zip_code=42701 site_time_zone_utc_offset=-5 -County "KY, Harlan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100950.epw site_zip_code=40831 site_time_zone_utc_offset=-5 -County "KY, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100970.epw site_zip_code=41031 site_time_zone_utc_offset=-5 -County "KY, Hart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100990.epw site_zip_code=42765 site_time_zone_utc_offset=-6 -County "KY, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101010.epw site_zip_code=42420 site_time_zone_utc_offset=-6 -County "KY, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101030.epw site_zip_code=40019 site_time_zone_utc_offset=-5 -County "KY, Hickman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101050.epw site_zip_code=42031 site_time_zone_utc_offset=-6 -County "KY, Hopkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101070.epw site_zip_code=42431 site_time_zone_utc_offset=-6 -County "KY, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101090.epw site_zip_code=40447 site_time_zone_utc_offset=-5 -County "KY, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101110.epw site_zip_code=40214 site_time_zone_utc_offset=-5 -County "KY, Jessamine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101130.epw site_zip_code=40356 site_time_zone_utc_offset=-5 -County "KY, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101150.epw site_zip_code=41240 site_time_zone_utc_offset=-5 -County "KY, Kenton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101170.epw site_zip_code=41017 site_time_zone_utc_offset=-5 -County "KY, Knott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101190.epw site_zip_code=41822 site_time_zone_utc_offset=-5 -County "KY, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101210.epw site_zip_code=40906 site_time_zone_utc_offset=-5 -County "KY, Larue County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101230.epw site_zip_code=42748 site_time_zone_utc_offset=-5 -County "KY, Laurel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101250.epw site_zip_code=40741 site_time_zone_utc_offset=-5 -County "KY, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101270.epw site_zip_code=41230 site_time_zone_utc_offset=-5 -County "KY, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101290.epw site_zip_code=41311 site_time_zone_utc_offset=-5 -County "KY, Leslie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101310.epw site_zip_code=41749 site_time_zone_utc_offset=-5 -County "KY, Letcher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101330.epw site_zip_code=41858 site_time_zone_utc_offset=-5 -County "KY, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101350.epw site_zip_code=41179 site_time_zone_utc_offset=-5 -County "KY, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101370.epw site_zip_code=40484 site_time_zone_utc_offset=-5 -County "KY, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101390.epw site_zip_code=42045 site_time_zone_utc_offset=-6 -County "KY, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101410.epw site_zip_code=42276 site_time_zone_utc_offset=-6 -County "KY, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101430.epw site_zip_code=42038 site_time_zone_utc_offset=-6 -County "KY, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101510.epw site_zip_code=40475 site_time_zone_utc_offset=-5 -County "KY, Magoffin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101530.epw site_zip_code=41465 site_time_zone_utc_offset=-5 -County "KY, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101550.epw site_zip_code=40033 site_time_zone_utc_offset=-5 -County "KY, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101570.epw site_zip_code=42025 site_time_zone_utc_offset=-6 -County "KY, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101590.epw site_zip_code=41224 site_time_zone_utc_offset=-5 -County "KY, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101610.epw site_zip_code=41056 site_time_zone_utc_offset=-5 -County "KY, McCracken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101450.epw site_zip_code=42001 site_time_zone_utc_offset=-6 -County "KY, McCreary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101470.epw site_zip_code=42653 site_time_zone_utc_offset=-5 -County "KY, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101490.epw site_zip_code=42327 site_time_zone_utc_offset=-6 -County "KY, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101630.epw site_zip_code=40108 site_time_zone_utc_offset=-5 -County "KY, Menifee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101650.epw site_zip_code=40322 site_time_zone_utc_offset=-5 -County "KY, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101670.epw site_zip_code=40330 site_time_zone_utc_offset=-5 -County "KY, Metcalfe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101690.epw site_zip_code=42129 site_time_zone_utc_offset=-6 -County "KY, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101710.epw site_zip_code=42167 site_time_zone_utc_offset=-6 -County "KY, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101730.epw site_zip_code=40353 site_time_zone_utc_offset=-5 -County "KY, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101750.epw site_zip_code=41472 site_time_zone_utc_offset=-5 -County "KY, Muhlenberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101770.epw site_zip_code=42345 site_time_zone_utc_offset=-6 -County "KY, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101790.epw site_zip_code=40004 site_time_zone_utc_offset=-5 -County "KY, Nicholas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101810.epw site_zip_code=40311 site_time_zone_utc_offset=-5 -County "KY, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101830.epw site_zip_code=42320 site_time_zone_utc_offset=-6 -County "KY, Oldham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101850.epw site_zip_code=40014 site_time_zone_utc_offset=-5 -County "KY, Owen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101870.epw site_zip_code=40359 site_time_zone_utc_offset=-5 -County "KY, Owsley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101890.epw site_zip_code=41314 site_time_zone_utc_offset=-5 -County "KY, Pendleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101910.epw site_zip_code=41040 site_time_zone_utc_offset=-5 -County "KY, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101930.epw site_zip_code=41701 site_time_zone_utc_offset=-5 -County "KY, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101950.epw site_zip_code=41501 site_time_zone_utc_offset=-5 -County "KY, Powell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101970.epw site_zip_code=40380 site_time_zone_utc_offset=-5 -County "KY, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101990.epw site_zip_code=42503 site_time_zone_utc_offset=-5 -County "KY, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102010.epw site_zip_code=41064 site_time_zone_utc_offset=-5 -County "KY, Rockcastle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102030.epw site_zip_code=40456 site_time_zone_utc_offset=-5 -County "KY, Rowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102050.epw site_zip_code=40351 site_time_zone_utc_offset=-5 -County "KY, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102070.epw site_zip_code=42642 site_time_zone_utc_offset=-6 -County "KY, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102090.epw site_zip_code=40324 site_time_zone_utc_offset=-5 -County "KY, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102110.epw site_zip_code=40065 site_time_zone_utc_offset=-5 -County "KY, Simpson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102130.epw site_zip_code=42134 site_time_zone_utc_offset=-6 -County "KY, Spencer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102150.epw site_zip_code=40071 site_time_zone_utc_offset=-5 -County "KY, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102170.epw site_zip_code=42718 site_time_zone_utc_offset=-5 -County "KY, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102190.epw site_zip_code=42220 site_time_zone_utc_offset=-6 -County "KY, Trigg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102210.epw site_zip_code=42211 site_time_zone_utc_offset=-6 -County "KY, Trimble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102230.epw site_zip_code=40006 site_time_zone_utc_offset=-5 -County "KY, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102250.epw site_zip_code=42437 site_time_zone_utc_offset=-6 -County "KY, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102270.epw site_zip_code=42101 site_time_zone_utc_offset=-6 -County "KY, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102290.epw site_zip_code=40069 site_time_zone_utc_offset=-5 -County "KY, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102310.epw site_zip_code=42633 site_time_zone_utc_offset=-5 -County "KY, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102330.epw site_zip_code=42450 site_time_zone_utc_offset=-6 -County "KY, Whitley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102350.epw site_zip_code=40769 site_time_zone_utc_offset=-5 -County "KY, Wolfe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102370.epw site_zip_code=41301 site_time_zone_utc_offset=-5 -County "KY, Woodford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102390.epw site_zip_code=40383 site_time_zone_utc_offset=-5 -County "LA, Acadia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200010.epw site_zip_code=70526 site_time_zone_utc_offset=-6 -County "LA, Allen Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200030.epw site_zip_code=71463 site_time_zone_utc_offset=-6 -County "LA, Ascension Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200050.epw site_zip_code=70737 site_time_zone_utc_offset=-6 -County "LA, Assumption Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200070.epw site_zip_code=70339 site_time_zone_utc_offset=-6 -County "LA, Avoyelles Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200090.epw site_zip_code=71351 site_time_zone_utc_offset=-6 -County "LA, Beauregard Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200110.epw site_zip_code=70634 site_time_zone_utc_offset=-6 -County "LA, Bienville Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200130.epw site_zip_code=71001 site_time_zone_utc_offset=-6 -County "LA, Bossier Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200150.epw site_zip_code=71111 site_time_zone_utc_offset=-6 -County "LA, Caddo Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200170.epw site_zip_code=71106 site_time_zone_utc_offset=-6 -County "LA, Calcasieu Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200190.epw site_zip_code=70605 site_time_zone_utc_offset=-6 -County "LA, Caldwell Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200210.epw site_zip_code=71418 site_time_zone_utc_offset=-6 -County "LA, Cameron Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200230.epw site_zip_code=70607 site_time_zone_utc_offset=-6 -County "LA, Catahoula Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200250.epw site_zip_code=71343 site_time_zone_utc_offset=-6 -County "LA, Claiborne Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200270.epw site_zip_code=71040 site_time_zone_utc_offset=-6 -County "LA, Concordia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200290.epw site_zip_code=71334 site_time_zone_utc_offset=-6 -County "LA, De Soto Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200310.epw site_zip_code=71052 site_time_zone_utc_offset=-6 -County "LA, East Baton Rouge Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200330.epw site_zip_code=70816 site_time_zone_utc_offset=-6 -County "LA, East Carroll Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200350.epw site_zip_code=71254 site_time_zone_utc_offset=-6 -County "LA, East Feliciana Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200370.epw site_zip_code=70722 site_time_zone_utc_offset=-6 -County "LA, Evangeline Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200390.epw site_zip_code=70586 site_time_zone_utc_offset=-6 -County "LA, Franklin Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200410.epw site_zip_code=71295 site_time_zone_utc_offset=-6 -County "LA, Grant Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200430.epw site_zip_code=71467 site_time_zone_utc_offset=-6 -County "LA, Iberia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200450.epw site_zip_code=70560 site_time_zone_utc_offset=-6 -County "LA, Iberville Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200470.epw site_zip_code=70764 site_time_zone_utc_offset=-6 -County "LA, Jackson Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200490.epw site_zip_code=71251 site_time_zone_utc_offset=-6 -County "LA, Jefferson Davis Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200530.epw site_zip_code=70546 site_time_zone_utc_offset=-6 -County "LA, Jefferson Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200510.epw site_zip_code=70072 site_time_zone_utc_offset=-6 -County "LA, La Salle Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200590.epw site_zip_code=71342 site_time_zone_utc_offset=-6 -County "LA, Lafayette Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200550.epw site_zip_code=70506 site_time_zone_utc_offset=-6 -County "LA, Lafourche Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200570.epw site_zip_code=70301 site_time_zone_utc_offset=-6 -County "LA, Lincoln Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200610.epw site_zip_code=71270 site_time_zone_utc_offset=-6 -County "LA, Livingston Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200630.epw site_zip_code=70726 site_time_zone_utc_offset=-6 -County "LA, Madison Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200650.epw site_zip_code=71282 site_time_zone_utc_offset=-6 -County "LA, Morehouse Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200670.epw site_zip_code=71220 site_time_zone_utc_offset=-6 -County "LA, Natchitoches Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200690.epw site_zip_code=71457 site_time_zone_utc_offset=-6 -County "LA, Orleans Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200710.epw site_zip_code=70119 site_time_zone_utc_offset=-6 -County "LA, Ouachita Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200730.epw site_zip_code=71203 site_time_zone_utc_offset=-6 -County "LA, Plaquemines Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200750.epw site_zip_code=70037 site_time_zone_utc_offset=-6 -County "LA, Pointe Coupee Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200770.epw site_zip_code=70760 site_time_zone_utc_offset=-6 -County "LA, Rapides Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200790.epw site_zip_code=71360 site_time_zone_utc_offset=-6 -County "LA, Red River Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200810.epw site_zip_code=71019 site_time_zone_utc_offset=-6 -County "LA, Richland Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200830.epw site_zip_code=71269 site_time_zone_utc_offset=-6 -County "LA, Sabine Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200850.epw site_zip_code=71449 site_time_zone_utc_offset=-6 -County "LA, St. Bernard Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200870.epw site_zip_code=70043 site_time_zone_utc_offset=-6 -County "LA, St. Charles Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200890.epw site_zip_code=70070 site_time_zone_utc_offset=-6 -County "LA, St. Helena Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200910.epw site_zip_code=70441 site_time_zone_utc_offset=-6 -County "LA, St. James Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200930.epw site_zip_code=70090 site_time_zone_utc_offset=-6 -County "LA, St. John the Baptist Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200950.epw site_zip_code=70068 site_time_zone_utc_offset=-6 -County "LA, St. Landry Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200970.epw site_zip_code=70570 site_time_zone_utc_offset=-6 -County "LA, St. Martin Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200990.epw site_zip_code=70517 site_time_zone_utc_offset=-6 -County "LA, St. Mary Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201010.epw site_zip_code=70380 site_time_zone_utc_offset=-6 -County "LA, St. Tammany Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201030.epw site_zip_code=70433 site_time_zone_utc_offset=-6 -County "LA, Tangipahoa Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201050.epw site_zip_code=70454 site_time_zone_utc_offset=-6 -County "LA, Tensas Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201070.epw site_zip_code=71366 site_time_zone_utc_offset=-6 -County "LA, Terrebonne Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201090.epw site_zip_code=70360 site_time_zone_utc_offset=-6 -County "LA, Union Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201110.epw site_zip_code=71241 site_time_zone_utc_offset=-6 -County "LA, Vermilion Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201130.epw site_zip_code=70510 site_time_zone_utc_offset=-6 -County "LA, Vernon Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201150.epw site_zip_code=71446 site_time_zone_utc_offset=-6 -County "LA, Washington Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201170.epw site_zip_code=70427 site_time_zone_utc_offset=-6 -County "LA, Webster Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201190.epw site_zip_code=71055 site_time_zone_utc_offset=-6 -County "LA, West Baton Rouge Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201210.epw site_zip_code=70767 site_time_zone_utc_offset=-6 -County "LA, West Carroll Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201230.epw site_zip_code=71263 site_time_zone_utc_offset=-6 -County "LA, West Feliciana Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201250.epw site_zip_code=70775 site_time_zone_utc_offset=-6 -County "LA, Winn Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201270.epw site_zip_code=71483 site_time_zone_utc_offset=-6 -County "MA, Barnstable County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500010.epw site_zip_code=02536 site_time_zone_utc_offset=-5 -County "MA, Berkshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500030.epw site_zip_code=01201 site_time_zone_utc_offset=-5 -County "MA, Bristol County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500050.epw site_zip_code=02780 site_time_zone_utc_offset=-5 -County "MA, Dukes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500070.epw site_zip_code=02568 site_time_zone_utc_offset=-5 -County "MA, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500090.epw site_zip_code=01960 site_time_zone_utc_offset=-5 -County "MA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500110.epw site_zip_code=01301 site_time_zone_utc_offset=-5 -County "MA, Hampden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500130.epw site_zip_code=01085 site_time_zone_utc_offset=-5 -County "MA, Hampshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500150.epw site_zip_code=01002 site_time_zone_utc_offset=-5 -County "MA, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500170.epw site_zip_code=02148 site_time_zone_utc_offset=-5 -County "MA, Nantucket County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500190.epw site_zip_code=02554 site_time_zone_utc_offset=-5 -County "MA, Norfolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500210.epw site_zip_code=02169 site_time_zone_utc_offset=-5 -County "MA, Plymouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500230.epw site_zip_code=02360 site_time_zone_utc_offset=-5 -County "MA, Suffolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500250.epw site_zip_code=02151 site_time_zone_utc_offset=-5 -County "MA, Worcester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500270.epw site_zip_code=01453 site_time_zone_utc_offset=-5 -County "MD, Allegany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400010.epw site_zip_code=21502 site_time_zone_utc_offset=-5 -County "MD, Anne Arundel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400030.epw site_zip_code=21122 site_time_zone_utc_offset=-5 -County "MD, Baltimore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400050.epw site_zip_code=21117 site_time_zone_utc_offset=-5 -County "MD, Baltimore city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2405100.epw site_zip_code=21215 site_time_zone_utc_offset=-5 -County "MD, Calvert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400090.epw site_zip_code=20657 site_time_zone_utc_offset=-5 -County "MD, Caroline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400110.epw site_zip_code=21629 site_time_zone_utc_offset=-5 -County "MD, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400130.epw site_zip_code=21157 site_time_zone_utc_offset=-5 -County "MD, Cecil County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400150.epw site_zip_code=21921 site_time_zone_utc_offset=-5 -County "MD, Charles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400170.epw site_zip_code=20603 site_time_zone_utc_offset=-5 -County "MD, Dorchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400190.epw site_zip_code=21613 site_time_zone_utc_offset=-5 -County "MD, Frederick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400210.epw site_zip_code=21702 site_time_zone_utc_offset=-5 -County "MD, Garrett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400230.epw site_zip_code=21550 site_time_zone_utc_offset=-5 -County "MD, Harford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400250.epw site_zip_code=21014 site_time_zone_utc_offset=-5 -County "MD, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400270.epw site_zip_code=21044 site_time_zone_utc_offset=-5 -County "MD, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400290.epw site_zip_code=21620 site_time_zone_utc_offset=-5 -County "MD, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400310.epw site_zip_code=20906 site_time_zone_utc_offset=-5 -County "MD, Prince George's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400330.epw site_zip_code=20774 site_time_zone_utc_offset=-5 -County "MD, Queen Anne's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400350.epw site_zip_code=21666 site_time_zone_utc_offset=-5 -County "MD, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400390.epw site_zip_code=21853 site_time_zone_utc_offset=-5 -County "MD, St. Mary's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400370.epw site_zip_code=20653 site_time_zone_utc_offset=-5 -County "MD, Talbot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400410.epw site_zip_code=21601 site_time_zone_utc_offset=-5 -County "MD, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400430.epw site_zip_code=21740 site_time_zone_utc_offset=-5 -County "MD, Wicomico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400450.epw site_zip_code=21804 site_time_zone_utc_offset=-5 -County "MD, Worcester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400470.epw site_zip_code=21842 site_time_zone_utc_offset=-5 -County "ME, Androscoggin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300010.epw site_zip_code=04240 site_time_zone_utc_offset=-5 -County "ME, Aroostook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300030.epw site_zip_code=04769 site_time_zone_utc_offset=-5 -County "ME, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300050.epw site_zip_code=04103 site_time_zone_utc_offset=-5 -County "ME, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300070.epw site_zip_code=04938 site_time_zone_utc_offset=-5 -County "ME, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300090.epw site_zip_code=04605 site_time_zone_utc_offset=-5 -County "ME, Kennebec County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300110.epw site_zip_code=04901 site_time_zone_utc_offset=-5 -County "ME, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300130.epw site_zip_code=04841 site_time_zone_utc_offset=-5 -County "ME, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300150.epw site_zip_code=04572 site_time_zone_utc_offset=-5 -County "ME, Oxford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300170.epw site_zip_code=04276 site_time_zone_utc_offset=-5 -County "ME, Penobscot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300190.epw site_zip_code=04401 site_time_zone_utc_offset=-5 -County "ME, Piscataquis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300210.epw site_zip_code=04426 site_time_zone_utc_offset=-5 -County "ME, Sagadahoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300230.epw site_zip_code=04530 site_time_zone_utc_offset=-5 -County "ME, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300250.epw site_zip_code=04976 site_time_zone_utc_offset=-5 -County "ME, Waldo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300270.epw site_zip_code=04915 site_time_zone_utc_offset=-5 -County "ME, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300290.epw site_zip_code=04654 site_time_zone_utc_offset=-5 -County "ME, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300310.epw site_zip_code=04005 site_time_zone_utc_offset=-5 -County "MI, Alcona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600010.epw site_zip_code=48740 site_time_zone_utc_offset=-5 -County "MI, Alger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600030.epw site_zip_code=49862 site_time_zone_utc_offset=-5 -County "MI, Allegan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600050.epw site_zip_code=49010 site_time_zone_utc_offset=-5 -County "MI, Alpena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600070.epw site_zip_code=49707 site_time_zone_utc_offset=-5 -County "MI, Antrim County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600090.epw site_zip_code=49615 site_time_zone_utc_offset=-5 -County "MI, Arenac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600110.epw site_zip_code=48658 site_time_zone_utc_offset=-5 -County "MI, Baraga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600130.epw site_zip_code=49946 site_time_zone_utc_offset=-5 -County "MI, Barry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600150.epw site_zip_code=49058 site_time_zone_utc_offset=-5 -County "MI, Bay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600170.epw site_zip_code=48706 site_time_zone_utc_offset=-5 -County "MI, Benzie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600190.epw site_zip_code=49635 site_time_zone_utc_offset=-5 -County "MI, Berrien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600210.epw site_zip_code=49022 site_time_zone_utc_offset=-5 -County "MI, Branch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600230.epw site_zip_code=49036 site_time_zone_utc_offset=-5 -County "MI, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600250.epw site_zip_code=49015 site_time_zone_utc_offset=-5 -County "MI, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600270.epw site_zip_code=49047 site_time_zone_utc_offset=-5 -County "MI, Charlevoix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600290.epw site_zip_code=49720 site_time_zone_utc_offset=-5 -County "MI, Cheboygan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600310.epw site_zip_code=49721 site_time_zone_utc_offset=-5 -County "MI, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600330.epw site_zip_code=49783 site_time_zone_utc_offset=-5 -County "MI, Clare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600350.epw site_zip_code=48625 site_time_zone_utc_offset=-5 -County "MI, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600370.epw site_zip_code=48820 site_time_zone_utc_offset=-5 -County "MI, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600390.epw site_zip_code=49738 site_time_zone_utc_offset=-5 -County "MI, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600410.epw site_zip_code=49829 site_time_zone_utc_offset=-5 -County "MI, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600430.epw site_zip_code=49801 site_time_zone_utc_offset=-6 -County "MI, Eaton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600450.epw site_zip_code=48917 site_time_zone_utc_offset=-5 -County "MI, Emmet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600470.epw site_zip_code=49770 site_time_zone_utc_offset=-5 -County "MI, Genesee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600490.epw site_zip_code=48439 site_time_zone_utc_offset=-5 -County "MI, Gladwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600510.epw site_zip_code=48624 site_time_zone_utc_offset=-5 -County "MI, Gogebic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600530.epw site_zip_code=49938 site_time_zone_utc_offset=-6 -County "MI, Grand Traverse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600550.epw site_zip_code=49686 site_time_zone_utc_offset=-5 -County "MI, Gratiot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600570.epw site_zip_code=48801 site_time_zone_utc_offset=-5 -County "MI, Hillsdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600590.epw site_zip_code=49242 site_time_zone_utc_offset=-5 -County "MI, Houghton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600610.epw site_zip_code=49931 site_time_zone_utc_offset=-5 -County "MI, Huron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600630.epw site_zip_code=48413 site_time_zone_utc_offset=-5 -County "MI, Ingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600650.epw site_zip_code=48823 site_time_zone_utc_offset=-5 -County "MI, Ionia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600670.epw site_zip_code=48846 site_time_zone_utc_offset=-5 -County "MI, Iosco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600690.epw site_zip_code=48750 site_time_zone_utc_offset=-5 -County "MI, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600710.epw site_zip_code=49935 site_time_zone_utc_offset=-6 -County "MI, Isabella County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600730.epw site_zip_code=48858 site_time_zone_utc_offset=-5 -County "MI, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600750.epw site_zip_code=49201 site_time_zone_utc_offset=-5 -County "MI, Kalamazoo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600770.epw site_zip_code=49009 site_time_zone_utc_offset=-5 -County "MI, Kalkaska County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600790.epw site_zip_code=49646 site_time_zone_utc_offset=-5 -County "MI, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600810.epw site_zip_code=49503 site_time_zone_utc_offset=-5 -County "MI, Keweenaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600830.epw site_zip_code=49950 site_time_zone_utc_offset=-5 -County "MI, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600850.epw site_zip_code=49304 site_time_zone_utc_offset=-5 -County "MI, Lapeer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600870.epw site_zip_code=48446 site_time_zone_utc_offset=-5 -County "MI, Leelanau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600890.epw site_zip_code=49684 site_time_zone_utc_offset=-5 -County "MI, Lenawee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600910.epw site_zip_code=49221 site_time_zone_utc_offset=-5 -County "MI, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600930.epw site_zip_code=48843 site_time_zone_utc_offset=-5 -County "MI, Luce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600950.epw site_zip_code=49868 site_time_zone_utc_offset=-5 -County "MI, Mackinac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600970.epw site_zip_code=49781 site_time_zone_utc_offset=-5 -County "MI, Macomb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600990.epw site_zip_code=48038 site_time_zone_utc_offset=-5 -County "MI, Manistee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601010.epw site_zip_code=49660 site_time_zone_utc_offset=-5 -County "MI, Marquette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601030.epw site_zip_code=49855 site_time_zone_utc_offset=-5 -County "MI, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601050.epw site_zip_code=49431 site_time_zone_utc_offset=-5 -County "MI, Mecosta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601070.epw site_zip_code=49307 site_time_zone_utc_offset=-5 -County "MI, Menominee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601090.epw site_zip_code=49858 site_time_zone_utc_offset=-6 -County "MI, Midland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601110.epw site_zip_code=48642 site_time_zone_utc_offset=-5 -County "MI, Missaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601130.epw site_zip_code=49651 site_time_zone_utc_offset=-5 -County "MI, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601150.epw site_zip_code=48162 site_time_zone_utc_offset=-5 -County "MI, Montcalm County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601170.epw site_zip_code=48838 site_time_zone_utc_offset=-5 -County "MI, Montmorency County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601190.epw site_zip_code=49709 site_time_zone_utc_offset=-5 -County "MI, Muskegon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601210.epw site_zip_code=49442 site_time_zone_utc_offset=-5 -County "MI, Newaygo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601230.epw site_zip_code=49337 site_time_zone_utc_offset=-5 -County "MI, Oakland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601250.epw site_zip_code=48307 site_time_zone_utc_offset=-5 -County "MI, Oceana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601270.epw site_zip_code=49420 site_time_zone_utc_offset=-5 -County "MI, Ogemaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601290.epw site_zip_code=48661 site_time_zone_utc_offset=-5 -County "MI, Ontonagon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601310.epw site_zip_code=49953 site_time_zone_utc_offset=-5 -County "MI, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601330.epw site_zip_code=49631 site_time_zone_utc_offset=-5 -County "MI, Oscoda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601350.epw site_zip_code=48647 site_time_zone_utc_offset=-5 -County "MI, Otsego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601370.epw site_zip_code=49735 site_time_zone_utc_offset=-5 -County "MI, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601390.epw site_zip_code=49424 site_time_zone_utc_offset=-5 -County "MI, Presque Isle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601410.epw site_zip_code=49779 site_time_zone_utc_offset=-5 -County "MI, Roscommon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601430.epw site_zip_code=48629 site_time_zone_utc_offset=-5 -County "MI, Saginaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601450.epw site_zip_code=48601 site_time_zone_utc_offset=-5 -County "MI, Sanilac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601510.epw site_zip_code=48450 site_time_zone_utc_offset=-5 -County "MI, Schoolcraft County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601530.epw site_zip_code=49854 site_time_zone_utc_offset=-5 -County "MI, Shiawassee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601550.epw site_zip_code=48867 site_time_zone_utc_offset=-5 -County "MI, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601470.epw site_zip_code=48060 site_time_zone_utc_offset=-5 -County "MI, St. Joseph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601490.epw site_zip_code=49091 site_time_zone_utc_offset=-5 -County "MI, Tuscola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601570.epw site_zip_code=48723 site_time_zone_utc_offset=-5 -County "MI, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601590.epw site_zip_code=49090 site_time_zone_utc_offset=-5 -County "MI, Washtenaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601610.epw site_zip_code=48197 site_time_zone_utc_offset=-5 -County "MI, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601630.epw site_zip_code=48180 site_time_zone_utc_offset=-5 -County "MI, Wexford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601650.epw site_zip_code=49601 site_time_zone_utc_offset=-5 -County "MN, Aitkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700010.epw site_zip_code=56431 site_time_zone_utc_offset=-6 -County "MN, Anoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700030.epw site_zip_code=55303 site_time_zone_utc_offset=-6 -County "MN, Becker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700050.epw site_zip_code=56501 site_time_zone_utc_offset=-6 -County "MN, Beltrami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700070.epw site_zip_code=56601 site_time_zone_utc_offset=-6 -County "MN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700090.epw site_zip_code=56379 site_time_zone_utc_offset=-6 -County "MN, Big Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700110.epw site_zip_code=56278 site_time_zone_utc_offset=-6 -County "MN, Blue Earth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700130.epw site_zip_code=56001 site_time_zone_utc_offset=-6 -County "MN, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700150.epw site_zip_code=56073 site_time_zone_utc_offset=-6 -County "MN, Carlton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700170.epw site_zip_code=55720 site_time_zone_utc_offset=-6 -County "MN, Carver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700190.epw site_zip_code=55318 site_time_zone_utc_offset=-6 -County "MN, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700210.epw site_zip_code=56474 site_time_zone_utc_offset=-6 -County "MN, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700230.epw site_zip_code=56265 site_time_zone_utc_offset=-6 -County "MN, Chisago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700250.epw site_zip_code=55056 site_time_zone_utc_offset=-6 -County "MN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700270.epw site_zip_code=56560 site_time_zone_utc_offset=-6 -County "MN, Clearwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700290.epw site_zip_code=56621 site_time_zone_utc_offset=-6 -County "MN, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700310.epw site_zip_code=55604 site_time_zone_utc_offset=-6 -County "MN, Cottonwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700330.epw site_zip_code=56101 site_time_zone_utc_offset=-6 -County "MN, Crow Wing County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700350.epw site_zip_code=56401 site_time_zone_utc_offset=-6 -County "MN, Dakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700370.epw site_zip_code=55124 site_time_zone_utc_offset=-6 -County "MN, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700390.epw site_zip_code=55944 site_time_zone_utc_offset=-6 -County "MN, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700410.epw site_zip_code=56308 site_time_zone_utc_offset=-6 -County "MN, Faribault County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700430.epw site_zip_code=56013 site_time_zone_utc_offset=-6 -County "MN, Fillmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700450.epw site_zip_code=55975 site_time_zone_utc_offset=-6 -County "MN, Freeborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700470.epw site_zip_code=56007 site_time_zone_utc_offset=-6 -County "MN, Goodhue County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700490.epw site_zip_code=55066 site_time_zone_utc_offset=-6 -County "MN, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700510.epw site_zip_code=56531 site_time_zone_utc_offset=-6 -County "MN, Hennepin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700530.epw site_zip_code=55408 site_time_zone_utc_offset=-6 -County "MN, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700550.epw site_zip_code=55947 site_time_zone_utc_offset=-6 -County "MN, Hubbard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700570.epw site_zip_code=56470 site_time_zone_utc_offset=-6 -County "MN, Isanti County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700590.epw site_zip_code=55008 site_time_zone_utc_offset=-6 -County "MN, Itasca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700610.epw site_zip_code=55744 site_time_zone_utc_offset=-6 -County "MN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700630.epw site_zip_code=56143 site_time_zone_utc_offset=-6 -County "MN, Kanabec County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700650.epw site_zip_code=55051 site_time_zone_utc_offset=-6 -County "MN, Kandiyohi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700670.epw site_zip_code=56201 site_time_zone_utc_offset=-6 -County "MN, Kittson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700690.epw site_zip_code=56728 site_time_zone_utc_offset=-6 -County "MN, Koochiching County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700710.epw site_zip_code=56649 site_time_zone_utc_offset=-6 -County "MN, Lac qui Parle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700730.epw site_zip_code=56256 site_time_zone_utc_offset=-6 -County "MN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700750.epw site_zip_code=55616 site_time_zone_utc_offset=-6 -County "MN, Lake of the Woods County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700770.epw site_zip_code=56623 site_time_zone_utc_offset=-6 -County "MN, Le Sueur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700790.epw site_zip_code=56058 site_time_zone_utc_offset=-6 -County "MN, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700810.epw site_zip_code=56178 site_time_zone_utc_offset=-6 -County "MN, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700830.epw site_zip_code=56258 site_time_zone_utc_offset=-6 -County "MN, Mahnomen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700870.epw site_zip_code=56557 site_time_zone_utc_offset=-6 -County "MN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700890.epw site_zip_code=56762 site_time_zone_utc_offset=-6 -County "MN, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700910.epw site_zip_code=56031 site_time_zone_utc_offset=-6 -County "MN, McLeod County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700850.epw site_zip_code=55350 site_time_zone_utc_offset=-6 -County "MN, Meeker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700930.epw site_zip_code=55355 site_time_zone_utc_offset=-6 -County "MN, Mille Lacs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700950.epw site_zip_code=56353 site_time_zone_utc_offset=-6 -County "MN, Morrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700970.epw site_zip_code=56345 site_time_zone_utc_offset=-6 -County "MN, Mower County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700990.epw site_zip_code=55912 site_time_zone_utc_offset=-6 -County "MN, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701010.epw site_zip_code=56172 site_time_zone_utc_offset=-6 -County "MN, Nicollet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701030.epw site_zip_code=56003 site_time_zone_utc_offset=-6 -County "MN, Nobles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701050.epw site_zip_code=56187 site_time_zone_utc_offset=-6 -County "MN, Norman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701070.epw site_zip_code=56510 site_time_zone_utc_offset=-6 -County "MN, Olmsted County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701090.epw site_zip_code=55901 site_time_zone_utc_offset=-6 -County "MN, Otter Tail County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701110.epw site_zip_code=56537 site_time_zone_utc_offset=-6 -County "MN, Pennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701130.epw site_zip_code=56701 site_time_zone_utc_offset=-6 -County "MN, Pine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701150.epw site_zip_code=55063 site_time_zone_utc_offset=-6 -County "MN, Pipestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701170.epw site_zip_code=56164 site_time_zone_utc_offset=-6 -County "MN, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701190.epw site_zip_code=56721 site_time_zone_utc_offset=-6 -County "MN, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701210.epw site_zip_code=56334 site_time_zone_utc_offset=-6 -County "MN, Ramsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701230.epw site_zip_code=55106 site_time_zone_utc_offset=-6 -County "MN, Red Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701250.epw site_zip_code=56750 site_time_zone_utc_offset=-6 -County "MN, Redwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701270.epw site_zip_code=56283 site_time_zone_utc_offset=-6 -County "MN, Renville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701290.epw site_zip_code=56277 site_time_zone_utc_offset=-6 -County "MN, Rice County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701310.epw site_zip_code=55021 site_time_zone_utc_offset=-6 -County "MN, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701330.epw site_zip_code=56156 site_time_zone_utc_offset=-6 -County "MN, Roseau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701350.epw site_zip_code=56751 site_time_zone_utc_offset=-6 -County "MN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701390.epw site_zip_code=55379 site_time_zone_utc_offset=-6 -County "MN, Sherburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701410.epw site_zip_code=55330 site_time_zone_utc_offset=-6 -County "MN, Sibley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701430.epw site_zip_code=55334 site_time_zone_utc_offset=-6 -County "MN, St. Louis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701370.epw site_zip_code=55811 site_time_zone_utc_offset=-6 -County "MN, Stearns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701450.epw site_zip_code=56301 site_time_zone_utc_offset=-6 -County "MN, Steele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701470.epw site_zip_code=55060 site_time_zone_utc_offset=-6 -County "MN, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701490.epw site_zip_code=56267 site_time_zone_utc_offset=-6 -County "MN, Swift County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701510.epw site_zip_code=56215 site_time_zone_utc_offset=-6 -County "MN, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701530.epw site_zip_code=56347 site_time_zone_utc_offset=-6 -County "MN, Traverse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701550.epw site_zip_code=56296 site_time_zone_utc_offset=-6 -County "MN, Wabasha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701570.epw site_zip_code=55041 site_time_zone_utc_offset=-6 -County "MN, Wadena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701590.epw site_zip_code=56482 site_time_zone_utc_offset=-6 -County "MN, Waseca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701610.epw site_zip_code=56093 site_time_zone_utc_offset=-6 -County "MN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701630.epw site_zip_code=55125 site_time_zone_utc_offset=-6 -County "MN, Watonwan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701650.epw site_zip_code=56081 site_time_zone_utc_offset=-6 -County "MN, Wilkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701670.epw site_zip_code=56520 site_time_zone_utc_offset=-6 -County "MN, Winona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701690.epw site_zip_code=55987 site_time_zone_utc_offset=-6 -County "MN, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701710.epw site_zip_code=55313 site_time_zone_utc_offset=-6 -County "MN, Yellow Medicine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701730.epw site_zip_code=56220 site_time_zone_utc_offset=-6 -County "MO, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900010.epw site_zip_code=63501 site_time_zone_utc_offset=-6 -County "MO, Andrew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900030.epw site_zip_code=64485 site_time_zone_utc_offset=-6 -County "MO, Atchison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900050.epw site_zip_code=64491 site_time_zone_utc_offset=-6 -County "MO, Audrain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900070.epw site_zip_code=65265 site_time_zone_utc_offset=-6 -County "MO, Barry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900090.epw site_zip_code=65625 site_time_zone_utc_offset=-6 -County "MO, Barton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900110.epw site_zip_code=64759 site_time_zone_utc_offset=-6 -County "MO, Bates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900130.epw site_zip_code=64730 site_time_zone_utc_offset=-6 -County "MO, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900150.epw site_zip_code=65355 site_time_zone_utc_offset=-6 -County "MO, Bollinger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900170.epw site_zip_code=63764 site_time_zone_utc_offset=-6 -County "MO, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900190.epw site_zip_code=65203 site_time_zone_utc_offset=-6 -County "MO, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900210.epw site_zip_code=64506 site_time_zone_utc_offset=-6 -County "MO, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900230.epw site_zip_code=63901 site_time_zone_utc_offset=-6 -County "MO, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900250.epw site_zip_code=64644 site_time_zone_utc_offset=-6 -County "MO, Callaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900270.epw site_zip_code=65251 site_time_zone_utc_offset=-6 -County "MO, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900290.epw site_zip_code=65020 site_time_zone_utc_offset=-6 -County "MO, Cape Girardeau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900310.epw site_zip_code=63701 site_time_zone_utc_offset=-6 -County "MO, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900330.epw site_zip_code=64633 site_time_zone_utc_offset=-6 -County "MO, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900350.epw site_zip_code=63965 site_time_zone_utc_offset=-6 -County "MO, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900370.epw site_zip_code=64012 site_time_zone_utc_offset=-6 -County "MO, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900390.epw site_zip_code=64744 site_time_zone_utc_offset=-6 -County "MO, Chariton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900410.epw site_zip_code=65281 site_time_zone_utc_offset=-6 -County "MO, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900430.epw site_zip_code=65714 site_time_zone_utc_offset=-6 -County "MO, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900450.epw site_zip_code=63445 site_time_zone_utc_offset=-6 -County "MO, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900470.epw site_zip_code=64118 site_time_zone_utc_offset=-6 -County "MO, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900490.epw site_zip_code=64429 site_time_zone_utc_offset=-6 -County "MO, Cole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900510.epw site_zip_code=65109 site_time_zone_utc_offset=-6 -County "MO, Cooper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900530.epw site_zip_code=65233 site_time_zone_utc_offset=-6 -County "MO, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900550.epw site_zip_code=65453 site_time_zone_utc_offset=-6 -County "MO, Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900570.epw site_zip_code=65661 site_time_zone_utc_offset=-6 -County "MO, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900590.epw site_zip_code=65622 site_time_zone_utc_offset=-6 -County "MO, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900610.epw site_zip_code=64640 site_time_zone_utc_offset=-6 -County "MO, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900630.epw site_zip_code=64429 site_time_zone_utc_offset=-6 -County "MO, Dent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900650.epw site_zip_code=65560 site_time_zone_utc_offset=-6 -County "MO, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900670.epw site_zip_code=65608 site_time_zone_utc_offset=-6 -County "MO, Dunklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900690.epw site_zip_code=63857 site_time_zone_utc_offset=-6 -County "MO, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900710.epw site_zip_code=63090 site_time_zone_utc_offset=-6 -County "MO, Gasconade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900730.epw site_zip_code=65066 site_time_zone_utc_offset=-6 -County "MO, Gentry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900750.epw site_zip_code=64402 site_time_zone_utc_offset=-6 -County "MO, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900770.epw site_zip_code=65807 site_time_zone_utc_offset=-6 -County "MO, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900790.epw site_zip_code=64683 site_time_zone_utc_offset=-6 -County "MO, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900810.epw site_zip_code=64424 site_time_zone_utc_offset=-6 -County "MO, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900830.epw site_zip_code=64735 site_time_zone_utc_offset=-6 -County "MO, Hickory County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900850.epw site_zip_code=65779 site_time_zone_utc_offset=-6 -County "MO, Holt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900870.epw site_zip_code=64470 site_time_zone_utc_offset=-6 -County "MO, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900890.epw site_zip_code=65248 site_time_zone_utc_offset=-6 -County "MO, Howell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900910.epw site_zip_code=65775 site_time_zone_utc_offset=-6 -County "MO, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900930.epw site_zip_code=63650 site_time_zone_utc_offset=-6 -County "MO, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900950.epw site_zip_code=64055 site_time_zone_utc_offset=-6 -County "MO, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900970.epw site_zip_code=64801 site_time_zone_utc_offset=-6 -County "MO, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900990.epw site_zip_code=63010 site_time_zone_utc_offset=-6 -County "MO, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901010.epw site_zip_code=64093 site_time_zone_utc_offset=-6 -County "MO, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901030.epw site_zip_code=63537 site_time_zone_utc_offset=-6 -County "MO, Laclede County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901050.epw site_zip_code=65536 site_time_zone_utc_offset=-6 -County "MO, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901070.epw site_zip_code=64076 site_time_zone_utc_offset=-6 -County "MO, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901090.epw site_zip_code=65605 site_time_zone_utc_offset=-6 -County "MO, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901110.epw site_zip_code=63435 site_time_zone_utc_offset=-6 -County "MO, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901130.epw site_zip_code=63379 site_time_zone_utc_offset=-6 -County "MO, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901150.epw site_zip_code=64628 site_time_zone_utc_offset=-6 -County "MO, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901170.epw site_zip_code=64601 site_time_zone_utc_offset=-6 -County "MO, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901210.epw site_zip_code=63552 site_time_zone_utc_offset=-6 -County "MO, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901230.epw site_zip_code=63645 site_time_zone_utc_offset=-6 -County "MO, Maries County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901250.epw site_zip_code=65582 site_time_zone_utc_offset=-6 -County "MO, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901270.epw site_zip_code=63401 site_time_zone_utc_offset=-6 -County "MO, McDonald County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901190.epw site_zip_code=64831 site_time_zone_utc_offset=-6 -County "MO, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901290.epw site_zip_code=64673 site_time_zone_utc_offset=-6 -County "MO, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901310.epw site_zip_code=65026 site_time_zone_utc_offset=-6 -County "MO, Mississippi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901330.epw site_zip_code=63845 site_time_zone_utc_offset=-6 -County "MO, Moniteau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901350.epw site_zip_code=65018 site_time_zone_utc_offset=-6 -County "MO, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901370.epw site_zip_code=65275 site_time_zone_utc_offset=-6 -County "MO, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901390.epw site_zip_code=63361 site_time_zone_utc_offset=-6 -County "MO, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901410.epw site_zip_code=65037 site_time_zone_utc_offset=-6 -County "MO, New Madrid County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901430.epw site_zip_code=63873 site_time_zone_utc_offset=-6 -County "MO, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901450.epw site_zip_code=64850 site_time_zone_utc_offset=-6 -County "MO, Nodaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901470.epw site_zip_code=64468 site_time_zone_utc_offset=-6 -County "MO, Oregon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901490.epw site_zip_code=65606 site_time_zone_utc_offset=-6 -County "MO, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901510.epw site_zip_code=65051 site_time_zone_utc_offset=-6 -County "MO, Ozark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901530.epw site_zip_code=65655 site_time_zone_utc_offset=-6 -County "MO, Pemiscot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901550.epw site_zip_code=63830 site_time_zone_utc_offset=-6 -County "MO, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901570.epw site_zip_code=63775 site_time_zone_utc_offset=-6 -County "MO, Pettis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901590.epw site_zip_code=65301 site_time_zone_utc_offset=-6 -County "MO, Phelps County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901610.epw site_zip_code=65401 site_time_zone_utc_offset=-6 -County "MO, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901630.epw site_zip_code=63334 site_time_zone_utc_offset=-6 -County "MO, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901650.epw site_zip_code=64151 site_time_zone_utc_offset=-6 -County "MO, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901670.epw site_zip_code=65613 site_time_zone_utc_offset=-6 -County "MO, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901690.epw site_zip_code=65473 site_time_zone_utc_offset=-6 -County "MO, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901710.epw site_zip_code=63565 site_time_zone_utc_offset=-6 -County "MO, Ralls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901730.epw site_zip_code=63459 site_time_zone_utc_offset=-6 -County "MO, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901750.epw site_zip_code=65270 site_time_zone_utc_offset=-6 -County "MO, Ray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901770.epw site_zip_code=64085 site_time_zone_utc_offset=-6 -County "MO, Reynolds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901790.epw site_zip_code=63638 site_time_zone_utc_offset=-6 -County "MO, Ripley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901810.epw site_zip_code=63935 site_time_zone_utc_offset=-6 -County "MO, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901950.epw site_zip_code=65340 site_time_zone_utc_offset=-6 -County "MO, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901970.epw site_zip_code=63548 site_time_zone_utc_offset=-6 -County "MO, Scotland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901990.epw site_zip_code=63555 site_time_zone_utc_offset=-6 -County "MO, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902010.epw site_zip_code=63801 site_time_zone_utc_offset=-6 -County "MO, Shannon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902030.epw site_zip_code=65588 site_time_zone_utc_offset=-6 -County "MO, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902050.epw site_zip_code=63468 site_time_zone_utc_offset=-6 -County "MO, St. Charles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901830.epw site_zip_code=63376 site_time_zone_utc_offset=-6 -County "MO, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901850.epw site_zip_code=64776 site_time_zone_utc_offset=-6 -County "MO, St. Francois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901870.epw site_zip_code=63640 site_time_zone_utc_offset=-6 -County "MO, St. Louis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901890.epw site_zip_code=63021 site_time_zone_utc_offset=-6 -County "MO, St. Louis city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2905100.epw site_zip_code=63116 site_time_zone_utc_offset=-6 -County "MO, Ste. Genevieve County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901860.epw site_zip_code=63670 site_time_zone_utc_offset=-6 -County "MO, Stoddard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902070.epw site_zip_code=63841 site_time_zone_utc_offset=-6 -County "MO, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902090.epw site_zip_code=65737 site_time_zone_utc_offset=-6 -County "MO, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902110.epw site_zip_code=63556 site_time_zone_utc_offset=-6 -County "MO, Taney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902130.epw site_zip_code=65616 site_time_zone_utc_offset=-6 -County "MO, Texas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902150.epw site_zip_code=65483 site_time_zone_utc_offset=-6 -County "MO, Vernon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902170.epw site_zip_code=64772 site_time_zone_utc_offset=-6 -County "MO, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902190.epw site_zip_code=63383 site_time_zone_utc_offset=-6 -County "MO, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902210.epw site_zip_code=63664 site_time_zone_utc_offset=-6 -County "MO, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902230.epw site_zip_code=63957 site_time_zone_utc_offset=-6 -County "MO, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902250.epw site_zip_code=65706 site_time_zone_utc_offset=-6 -County "MO, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902270.epw site_zip_code=64456 site_time_zone_utc_offset=-6 -County "MO, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902290.epw site_zip_code=65711 site_time_zone_utc_offset=-6 -County "MS, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800010.epw site_zip_code=39120 site_time_zone_utc_offset=-6 -County "MS, Alcorn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800030.epw site_zip_code=38834 site_time_zone_utc_offset=-6 -County "MS, Amite County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800050.epw site_zip_code=39645 site_time_zone_utc_offset=-6 -County "MS, Attala County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800070.epw site_zip_code=39090 site_time_zone_utc_offset=-6 -County "MS, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800090.epw site_zip_code=38603 site_time_zone_utc_offset=-6 -County "MS, Bolivar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800110.epw site_zip_code=38732 site_time_zone_utc_offset=-6 -County "MS, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800130.epw site_zip_code=38916 site_time_zone_utc_offset=-6 -County "MS, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800150.epw site_zip_code=38917 site_time_zone_utc_offset=-6 -County "MS, Chickasaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800170.epw site_zip_code=38851 site_time_zone_utc_offset=-6 -County "MS, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800190.epw site_zip_code=39735 site_time_zone_utc_offset=-6 -County "MS, Claiborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800210.epw site_zip_code=39150 site_time_zone_utc_offset=-6 -County "MS, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800230.epw site_zip_code=39355 site_time_zone_utc_offset=-6 -County "MS, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800250.epw site_zip_code=39773 site_time_zone_utc_offset=-6 -County "MS, Coahoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800270.epw site_zip_code=38614 site_time_zone_utc_offset=-6 -County "MS, Copiah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800290.epw site_zip_code=39059 site_time_zone_utc_offset=-6 -County "MS, Covington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800310.epw site_zip_code=39428 site_time_zone_utc_offset=-6 -County "MS, DeSoto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800330.epw site_zip_code=38654 site_time_zone_utc_offset=-6 -County "MS, Forrest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800350.epw site_zip_code=39401 site_time_zone_utc_offset=-6 -County "MS, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800370.epw site_zip_code=39653 site_time_zone_utc_offset=-6 -County "MS, George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800390.epw site_zip_code=39452 site_time_zone_utc_offset=-6 -County "MS, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800410.epw site_zip_code=39451 site_time_zone_utc_offset=-6 -County "MS, Grenada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800430.epw site_zip_code=38901 site_time_zone_utc_offset=-6 -County "MS, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800450.epw site_zip_code=39520 site_time_zone_utc_offset=-6 -County "MS, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800470.epw site_zip_code=39503 site_time_zone_utc_offset=-6 -County "MS, Hinds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800490.epw site_zip_code=39209 site_time_zone_utc_offset=-6 -County "MS, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800510.epw site_zip_code=39095 site_time_zone_utc_offset=-6 -County "MS, Humphreys County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800530.epw site_zip_code=39038 site_time_zone_utc_offset=-6 -County "MS, Issaquena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800550.epw site_zip_code=39159 site_time_zone_utc_offset=-6 -County "MS, Itawamba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800570.epw site_zip_code=38843 site_time_zone_utc_offset=-6 -County "MS, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800590.epw site_zip_code=39564 site_time_zone_utc_offset=-6 -County "MS, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800610.epw site_zip_code=39422 site_time_zone_utc_offset=-6 -County "MS, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800630.epw site_zip_code=39069 site_time_zone_utc_offset=-6 -County "MS, Jefferson Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800650.epw site_zip_code=39474 site_time_zone_utc_offset=-6 -County "MS, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800670.epw site_zip_code=39443 site_time_zone_utc_offset=-6 -County "MS, Kemper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800690.epw site_zip_code=39328 site_time_zone_utc_offset=-6 -County "MS, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800710.epw site_zip_code=38655 site_time_zone_utc_offset=-6 -County "MS, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800730.epw site_zip_code=39402 site_time_zone_utc_offset=-6 -County "MS, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800750.epw site_zip_code=39301 site_time_zone_utc_offset=-6 -County "MS, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800770.epw site_zip_code=39654 site_time_zone_utc_offset=-6 -County "MS, Leake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800790.epw site_zip_code=39051 site_time_zone_utc_offset=-6 -County "MS, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800810.epw site_zip_code=38801 site_time_zone_utc_offset=-6 -County "MS, Leflore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800830.epw site_zip_code=38930 site_time_zone_utc_offset=-6 -County "MS, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800850.epw site_zip_code=39601 site_time_zone_utc_offset=-6 -County "MS, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800870.epw site_zip_code=39702 site_time_zone_utc_offset=-6 -County "MS, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800890.epw site_zip_code=39110 site_time_zone_utc_offset=-6 -County "MS, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800910.epw site_zip_code=39429 site_time_zone_utc_offset=-6 -County "MS, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800930.epw site_zip_code=38611 site_time_zone_utc_offset=-6 -County "MS, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800950.epw site_zip_code=38821 site_time_zone_utc_offset=-6 -County "MS, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800970.epw site_zip_code=38967 site_time_zone_utc_offset=-6 -County "MS, Neshoba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800990.epw site_zip_code=39350 site_time_zone_utc_offset=-6 -County "MS, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801010.epw site_zip_code=39345 site_time_zone_utc_offset=-6 -County "MS, Noxubee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801030.epw site_zip_code=39341 site_time_zone_utc_offset=-6 -County "MS, Oktibbeha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801050.epw site_zip_code=39759 site_time_zone_utc_offset=-6 -County "MS, Panola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801070.epw site_zip_code=38606 site_time_zone_utc_offset=-6 -County "MS, Pearl River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801090.epw site_zip_code=39466 site_time_zone_utc_offset=-6 -County "MS, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801110.epw site_zip_code=39476 site_time_zone_utc_offset=-6 -County "MS, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801130.epw site_zip_code=39648 site_time_zone_utc_offset=-6 -County "MS, Pontotoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801150.epw site_zip_code=38863 site_time_zone_utc_offset=-6 -County "MS, Prentiss County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801170.epw site_zip_code=38829 site_time_zone_utc_offset=-6 -County "MS, Quitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801190.epw site_zip_code=38646 site_time_zone_utc_offset=-6 -County "MS, Rankin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801210.epw site_zip_code=39047 site_time_zone_utc_offset=-6 -County "MS, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801230.epw site_zip_code=39074 site_time_zone_utc_offset=-6 -County "MS, Sharkey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801250.epw site_zip_code=39159 site_time_zone_utc_offset=-6 -County "MS, Simpson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801270.epw site_zip_code=39111 site_time_zone_utc_offset=-6 -County "MS, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801290.epw site_zip_code=39168 site_time_zone_utc_offset=-6 -County "MS, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801310.epw site_zip_code=39577 site_time_zone_utc_offset=-6 -County "MS, Sunflower County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801330.epw site_zip_code=38751 site_time_zone_utc_offset=-6 -County "MS, Tallahatchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801350.epw site_zip_code=38921 site_time_zone_utc_offset=-6 -County "MS, Tate County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801370.epw site_zip_code=38668 site_time_zone_utc_offset=-6 -County "MS, Tippah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801390.epw site_zip_code=38663 site_time_zone_utc_offset=-6 -County "MS, Tishomingo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801410.epw site_zip_code=38852 site_time_zone_utc_offset=-6 -County "MS, Tunica County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801430.epw site_zip_code=38676 site_time_zone_utc_offset=-6 -County "MS, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801450.epw site_zip_code=38652 site_time_zone_utc_offset=-6 -County "MS, Walthall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801470.epw site_zip_code=39667 site_time_zone_utc_offset=-6 -County "MS, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801490.epw site_zip_code=39180 site_time_zone_utc_offset=-6 -County "MS, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801510.epw site_zip_code=38701 site_time_zone_utc_offset=-6 -County "MS, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801530.epw site_zip_code=39367 site_time_zone_utc_offset=-6 -County "MS, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801550.epw site_zip_code=39744 site_time_zone_utc_offset=-6 -County "MS, Wilkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801570.epw site_zip_code=39669 site_time_zone_utc_offset=-6 -County "MS, Winston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801590.epw site_zip_code=39339 site_time_zone_utc_offset=-6 -County "MS, Yalobusha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801610.epw site_zip_code=38965 site_time_zone_utc_offset=-6 -County "MS, Yazoo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801630.epw site_zip_code=39194 site_time_zone_utc_offset=-6 -County "MT, Beaverhead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000010.epw site_zip_code=59725 site_time_zone_utc_offset=-7 -County "MT, Big Horn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000030.epw site_zip_code=59034 site_time_zone_utc_offset=-7 -County "MT, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000050.epw site_zip_code=59526 site_time_zone_utc_offset=-7 -County "MT, Broadwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000070.epw site_zip_code=59644 site_time_zone_utc_offset=-7 -County "MT, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000090.epw site_zip_code=59068 site_time_zone_utc_offset=-7 -County "MT, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000110.epw site_zip_code=59324 site_time_zone_utc_offset=-7 -County "MT, Cascade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000130.epw site_zip_code=59405 site_time_zone_utc_offset=-7 -County "MT, Chouteau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000150.epw site_zip_code=59442 site_time_zone_utc_offset=-7 -County "MT, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000170.epw site_zip_code=59301 site_time_zone_utc_offset=-7 -County "MT, Daniels County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000190.epw site_zip_code=59263 site_time_zone_utc_offset=-7 -County "MT, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000210.epw site_zip_code=59330 site_time_zone_utc_offset=-7 -County "MT, Deer Lodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000230.epw site_zip_code=59711 site_time_zone_utc_offset=-7 -County "MT, Fallon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000250.epw site_zip_code=59313 site_time_zone_utc_offset=-7 -County "MT, Fergus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000270.epw site_zip_code=59457 site_time_zone_utc_offset=-7 -County "MT, Flathead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000290.epw site_zip_code=59901 site_time_zone_utc_offset=-7 -County "MT, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000310.epw site_zip_code=59718 site_time_zone_utc_offset=-7 -County "MT, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000330.epw site_zip_code=59337 site_time_zone_utc_offset=-7 -County "MT, Glacier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000350.epw site_zip_code=59427 site_time_zone_utc_offset=-7 -County "MT, Golden Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000370.epw site_zip_code=59074 site_time_zone_utc_offset=-7 -County "MT, Granite County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000390.epw site_zip_code=59858 site_time_zone_utc_offset=-7 -County "MT, Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000410.epw site_zip_code=59501 site_time_zone_utc_offset=-7 -County "MT, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000430.epw site_zip_code=59634 site_time_zone_utc_offset=-7 -County "MT, Judith Basin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000450.epw site_zip_code=59479 site_time_zone_utc_offset=-7 -County "MT, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000470.epw site_zip_code=59860 site_time_zone_utc_offset=-7 -County "MT, Lewis and Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000490.epw site_zip_code=59601 site_time_zone_utc_offset=-7 -County "MT, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000510.epw site_zip_code=59522 site_time_zone_utc_offset=-7 -County "MT, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000530.epw site_zip_code=59923 site_time_zone_utc_offset=-7 -County "MT, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000570.epw site_zip_code=59729 site_time_zone_utc_offset=-7 -County "MT, McCone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000550.epw site_zip_code=59215 site_time_zone_utc_offset=-7 -County "MT, Meagher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000590.epw site_zip_code=59645 site_time_zone_utc_offset=-7 -County "MT, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000610.epw site_zip_code=59872 site_time_zone_utc_offset=-7 -County "MT, Missoula County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000630.epw site_zip_code=59801 site_time_zone_utc_offset=-7 -County "MT, Musselshell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000650.epw site_zip_code=59072 site_time_zone_utc_offset=-7 -County "MT, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000670.epw site_zip_code=59047 site_time_zone_utc_offset=-7 -County "MT, Petroleum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000690.epw site_zip_code=59087 site_time_zone_utc_offset=-7 -County "MT, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000710.epw site_zip_code=59538 site_time_zone_utc_offset=-7 -County "MT, Pondera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000730.epw site_zip_code=59425 site_time_zone_utc_offset=-7 -County "MT, Powder River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000750.epw site_zip_code=59317 site_time_zone_utc_offset=-7 -County "MT, Powell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000770.epw site_zip_code=59722 site_time_zone_utc_offset=-7 -County "MT, Prairie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000790.epw site_zip_code=59349 site_time_zone_utc_offset=-7 -County "MT, Ravalli County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000810.epw site_zip_code=59840 site_time_zone_utc_offset=-7 -County "MT, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000830.epw site_zip_code=59270 site_time_zone_utc_offset=-7 -County "MT, Roosevelt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000850.epw site_zip_code=59201 site_time_zone_utc_offset=-7 -County "MT, Rosebud County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000870.epw site_zip_code=59327 site_time_zone_utc_offset=-7 -County "MT, Sanders County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000890.epw site_zip_code=59859 site_time_zone_utc_offset=-7 -County "MT, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000910.epw site_zip_code=59254 site_time_zone_utc_offset=-7 -County "MT, Silver Bow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000930.epw site_zip_code=59701 site_time_zone_utc_offset=-7 -County "MT, Stillwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000950.epw site_zip_code=59019 site_time_zone_utc_offset=-7 -County "MT, Sweet Grass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000970.epw site_zip_code=59011 site_time_zone_utc_offset=-7 -County "MT, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000990.epw site_zip_code=59422 site_time_zone_utc_offset=-7 -County "MT, Toole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001010.epw site_zip_code=59474 site_time_zone_utc_offset=-7 -County "MT, Treasure County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001030.epw site_zip_code=59038 site_time_zone_utc_offset=-7 -County "MT, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001050.epw site_zip_code=59230 site_time_zone_utc_offset=-7 -County "MT, Wheatland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001070.epw site_zip_code=59036 site_time_zone_utc_offset=-7 -County "MT, Wibaux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001090.epw site_zip_code=59353 site_time_zone_utc_offset=-7 -County "MT, Yellowstone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001110.epw site_zip_code=59102 site_time_zone_utc_offset=-7 -County "NC, Alamance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700010.epw site_zip_code=27215 site_time_zone_utc_offset=-5 -County "NC, Alexander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700030.epw site_zip_code=28681 site_time_zone_utc_offset=-5 -County "NC, Alleghany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700050.epw site_zip_code=28675 site_time_zone_utc_offset=-5 -County "NC, Anson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700070.epw site_zip_code=28170 site_time_zone_utc_offset=-5 -County "NC, Ashe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700090.epw site_zip_code=28694 site_time_zone_utc_offset=-5 -County "NC, Avery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700110.epw site_zip_code=28657 site_time_zone_utc_offset=-5 -County "NC, Beaufort County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700130.epw site_zip_code=27889 site_time_zone_utc_offset=-5 -County "NC, Bertie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700150.epw site_zip_code=27983 site_time_zone_utc_offset=-5 -County "NC, Bladen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700170.epw site_zip_code=28337 site_time_zone_utc_offset=-5 -County "NC, Brunswick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700190.epw site_zip_code=28451 site_time_zone_utc_offset=-5 -County "NC, Buncombe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700210.epw site_zip_code=28806 site_time_zone_utc_offset=-5 -County "NC, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700230.epw site_zip_code=28655 site_time_zone_utc_offset=-5 -County "NC, Cabarrus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700250.epw site_zip_code=28027 site_time_zone_utc_offset=-5 -County "NC, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700270.epw site_zip_code=28645 site_time_zone_utc_offset=-5 -County "NC, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700290.epw site_zip_code=27921 site_time_zone_utc_offset=-5 -County "NC, Carteret County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700310.epw site_zip_code=28570 site_time_zone_utc_offset=-5 -County "NC, Caswell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700330.epw site_zip_code=27379 site_time_zone_utc_offset=-5 -County "NC, Catawba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700350.epw site_zip_code=28601 site_time_zone_utc_offset=-5 -County "NC, Chatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700370.epw site_zip_code=27312 site_time_zone_utc_offset=-5 -County "NC, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700390.epw site_zip_code=28906 site_time_zone_utc_offset=-5 -County "NC, Chowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700410.epw site_zip_code=27932 site_time_zone_utc_offset=-5 -County "NC, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700430.epw site_zip_code=28904 site_time_zone_utc_offset=-5 -County "NC, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700450.epw site_zip_code=28150 site_time_zone_utc_offset=-5 -County "NC, Columbus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700470.epw site_zip_code=28472 site_time_zone_utc_offset=-5 -County "NC, Craven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700490.epw site_zip_code=28562 site_time_zone_utc_offset=-5 -County "NC, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700510.epw site_zip_code=28314 site_time_zone_utc_offset=-5 -County "NC, Currituck County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700530.epw site_zip_code=27958 site_time_zone_utc_offset=-5 -County "NC, Dare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700550.epw site_zip_code=27949 site_time_zone_utc_offset=-5 -County "NC, Davidson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700570.epw site_zip_code=27360 site_time_zone_utc_offset=-5 -County "NC, Davie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700590.epw site_zip_code=27028 site_time_zone_utc_offset=-5 -County "NC, Duplin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700610.epw site_zip_code=28466 site_time_zone_utc_offset=-5 -County "NC, Durham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700630.epw site_zip_code=27703 site_time_zone_utc_offset=-5 -County "NC, Edgecombe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700650.epw site_zip_code=27801 site_time_zone_utc_offset=-5 -County "NC, Forsyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700670.epw site_zip_code=27284 site_time_zone_utc_offset=-5 -County "NC, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700690.epw site_zip_code=27549 site_time_zone_utc_offset=-5 -County "NC, Gaston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700710.epw site_zip_code=28054 site_time_zone_utc_offset=-5 -County "NC, Gates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700730.epw site_zip_code=27937 site_time_zone_utc_offset=-5 -County "NC, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700750.epw site_zip_code=28771 site_time_zone_utc_offset=-5 -County "NC, Granville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700770.epw site_zip_code=27565 site_time_zone_utc_offset=-5 -County "NC, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700790.epw site_zip_code=28580 site_time_zone_utc_offset=-5 -County "NC, Guilford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700810.epw site_zip_code=27406 site_time_zone_utc_offset=-5 -County "NC, Halifax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700830.epw site_zip_code=27870 site_time_zone_utc_offset=-5 -County "NC, Harnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700850.epw site_zip_code=27546 site_time_zone_utc_offset=-5 -County "NC, Haywood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700870.epw site_zip_code=28786 site_time_zone_utc_offset=-5 -County "NC, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700890.epw site_zip_code=28792 site_time_zone_utc_offset=-5 -County "NC, Hertford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700910.epw site_zip_code=27910 site_time_zone_utc_offset=-5 -County "NC, Hoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700930.epw site_zip_code=28376 site_time_zone_utc_offset=-5 -County "NC, Hyde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700950.epw site_zip_code=27824 site_time_zone_utc_offset=-5 -County "NC, Iredell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700970.epw site_zip_code=28117 site_time_zone_utc_offset=-5 -County "NC, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700990.epw site_zip_code=28779 site_time_zone_utc_offset=-5 -County "NC, Johnston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701010.epw site_zip_code=27520 site_time_zone_utc_offset=-5 -County "NC, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701030.epw site_zip_code=28585 site_time_zone_utc_offset=-5 -County "NC, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701050.epw site_zip_code=27330 site_time_zone_utc_offset=-5 -County "NC, Lenoir County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701070.epw site_zip_code=28501 site_time_zone_utc_offset=-5 -County "NC, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701090.epw site_zip_code=28092 site_time_zone_utc_offset=-5 -County "NC, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701130.epw site_zip_code=28734 site_time_zone_utc_offset=-5 -County "NC, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701150.epw site_zip_code=28753 site_time_zone_utc_offset=-5 -County "NC, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701170.epw site_zip_code=27892 site_time_zone_utc_offset=-5 -County "NC, McDowell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701110.epw site_zip_code=28752 site_time_zone_utc_offset=-5 -County "NC, Mecklenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701190.epw site_zip_code=28269 site_time_zone_utc_offset=-5 -County "NC, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701210.epw site_zip_code=28777 site_time_zone_utc_offset=-5 -County "NC, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701230.epw site_zip_code=27371 site_time_zone_utc_offset=-5 -County "NC, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701250.epw site_zip_code=28374 site_time_zone_utc_offset=-5 -County "NC, Nash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701270.epw site_zip_code=27804 site_time_zone_utc_offset=-5 -County "NC, New Hanover County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701290.epw site_zip_code=28412 site_time_zone_utc_offset=-5 -County "NC, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701310.epw site_zip_code=27831 site_time_zone_utc_offset=-5 -County "NC, Onslow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701330.epw site_zip_code=28540 site_time_zone_utc_offset=-5 -County "NC, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701350.epw site_zip_code=27514 site_time_zone_utc_offset=-5 -County "NC, Pamlico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701370.epw site_zip_code=28571 site_time_zone_utc_offset=-5 -County "NC, Pasquotank County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701390.epw site_zip_code=27909 site_time_zone_utc_offset=-5 -County "NC, Pender County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701410.epw site_zip_code=28443 site_time_zone_utc_offset=-5 -County "NC, Perquimans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701430.epw site_zip_code=27944 site_time_zone_utc_offset=-5 -County "NC, Person County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701450.epw site_zip_code=27574 site_time_zone_utc_offset=-5 -County "NC, Pitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701470.epw site_zip_code=27858 site_time_zone_utc_offset=-5 -County "NC, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701490.epw site_zip_code=28782 site_time_zone_utc_offset=-5 -County "NC, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701510.epw site_zip_code=27205 site_time_zone_utc_offset=-5 -County "NC, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701530.epw site_zip_code=28379 site_time_zone_utc_offset=-5 -County "NC, Robeson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701550.epw site_zip_code=28358 site_time_zone_utc_offset=-5 -County "NC, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701570.epw site_zip_code=27320 site_time_zone_utc_offset=-5 -County "NC, Rowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701590.epw site_zip_code=28146 site_time_zone_utc_offset=-5 -County "NC, Rutherford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701610.epw site_zip_code=28043 site_time_zone_utc_offset=-5 -County "NC, Sampson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701630.epw site_zip_code=28328 site_time_zone_utc_offset=-5 -County "NC, Scotland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701650.epw site_zip_code=28352 site_time_zone_utc_offset=-5 -County "NC, Stanly County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701670.epw site_zip_code=28001 site_time_zone_utc_offset=-5 -County "NC, Stokes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701690.epw site_zip_code=27021 site_time_zone_utc_offset=-5 -County "NC, Surry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701710.epw site_zip_code=27030 site_time_zone_utc_offset=-5 -County "NC, Swain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701730.epw site_zip_code=28713 site_time_zone_utc_offset=-5 -County "NC, Transylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701750.epw site_zip_code=28712 site_time_zone_utc_offset=-5 -County "NC, Tyrrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701770.epw site_zip_code=27925 site_time_zone_utc_offset=-5 -County "NC, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701790.epw site_zip_code=28173 site_time_zone_utc_offset=-5 -County "NC, Vance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701810.epw site_zip_code=27537 site_time_zone_utc_offset=-5 -County "NC, Wake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701830.epw site_zip_code=27610 site_time_zone_utc_offset=-5 -County "NC, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701850.epw site_zip_code=27589 site_time_zone_utc_offset=-5 -County "NC, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701870.epw site_zip_code=27962 site_time_zone_utc_offset=-5 -County "NC, Watauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701890.epw site_zip_code=28607 site_time_zone_utc_offset=-5 -County "NC, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701910.epw site_zip_code=27530 site_time_zone_utc_offset=-5 -County "NC, Wilkes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701930.epw site_zip_code=28659 site_time_zone_utc_offset=-5 -County "NC, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701950.epw site_zip_code=27893 site_time_zone_utc_offset=-5 -County "NC, Yadkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701970.epw site_zip_code=27055 site_time_zone_utc_offset=-5 -County "NC, Yancey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701990.epw site_zip_code=28714 site_time_zone_utc_offset=-5 -County "ND, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800010.epw site_zip_code=58639 site_time_zone_utc_offset=-7 -County "ND, Barnes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800030.epw site_zip_code=58072 site_time_zone_utc_offset=-6 -County "ND, Benson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800050.epw site_zip_code=58348 site_time_zone_utc_offset=-6 -County "ND, Billings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800070.epw site_zip_code=58622 site_time_zone_utc_offset=-7 -County "ND, Bottineau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800090.epw site_zip_code=58318 site_time_zone_utc_offset=-6 -County "ND, Bowman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800110.epw site_zip_code=58623 site_time_zone_utc_offset=-7 -County "ND, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800130.epw site_zip_code=58773 site_time_zone_utc_offset=-6 -County "ND, Burleigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800150.epw site_zip_code=58503 site_time_zone_utc_offset=-6 -County "ND, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800170.epw site_zip_code=58103 site_time_zone_utc_offset=-6 -County "ND, Cavalier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800190.epw site_zip_code=58249 site_time_zone_utc_offset=-6 -County "ND, Dickey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800210.epw site_zip_code=58474 site_time_zone_utc_offset=-6 -County "ND, Divide County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800230.epw site_zip_code=58730 site_time_zone_utc_offset=-6 -County "ND, Dunn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800250.epw site_zip_code=58640 site_time_zone_utc_offset=-7 -County "ND, Eddy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800270.epw site_zip_code=58356 site_time_zone_utc_offset=-6 -County "ND, Emmons County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800290.epw site_zip_code=58552 site_time_zone_utc_offset=-6 -County "ND, Foster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800310.epw site_zip_code=58421 site_time_zone_utc_offset=-6 -County "ND, Golden Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800330.epw site_zip_code=58621 site_time_zone_utc_offset=-7 -County "ND, Grand Forks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800350.epw site_zip_code=58201 site_time_zone_utc_offset=-6 -County "ND, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800370.epw site_zip_code=58533 site_time_zone_utc_offset=-7 -County "ND, Griggs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800390.epw site_zip_code=58425 site_time_zone_utc_offset=-6 -County "ND, Hettinger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800410.epw site_zip_code=58646 site_time_zone_utc_offset=-7 -County "ND, Kidder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800430.epw site_zip_code=58482 site_time_zone_utc_offset=-6 -County "ND, LaMoure County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800450.epw site_zip_code=58458 site_time_zone_utc_offset=-6 -County "ND, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800470.epw site_zip_code=58561 site_time_zone_utc_offset=-6 -County "ND, McHenry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800490.epw site_zip_code=58790 site_time_zone_utc_offset=-6 -County "ND, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800510.epw site_zip_code=58495 site_time_zone_utc_offset=-6 -County "ND, McKenzie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800530.epw site_zip_code=58854 site_time_zone_utc_offset=-7 -County "ND, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800550.epw site_zip_code=58540 site_time_zone_utc_offset=-6 -County "ND, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800570.epw site_zip_code=58545 site_time_zone_utc_offset=-6 -County "ND, Morton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800590.epw site_zip_code=58554 site_time_zone_utc_offset=-6 -County "ND, Mountrail County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800610.epw site_zip_code=58763 site_time_zone_utc_offset=-6 -County "ND, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800630.epw site_zip_code=58344 site_time_zone_utc_offset=-6 -County "ND, Oliver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800650.epw site_zip_code=58530 site_time_zone_utc_offset=-6 -County "ND, Pembina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800670.epw site_zip_code=58220 site_time_zone_utc_offset=-6 -County "ND, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800690.epw site_zip_code=58368 site_time_zone_utc_offset=-6 -County "ND, Ramsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800710.epw site_zip_code=58301 site_time_zone_utc_offset=-6 -County "ND, Ransom County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800730.epw site_zip_code=58054 site_time_zone_utc_offset=-6 -County "ND, Renville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800750.epw site_zip_code=58761 site_time_zone_utc_offset=-6 -County "ND, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800770.epw site_zip_code=58075 site_time_zone_utc_offset=-6 -County "ND, Rolette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800790.epw site_zip_code=58367 site_time_zone_utc_offset=-6 -County "ND, Sargent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800810.epw site_zip_code=58060 site_time_zone_utc_offset=-6 -County "ND, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800830.epw site_zip_code=58463 site_time_zone_utc_offset=-6 -County "ND, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800850.epw site_zip_code=58538 site_time_zone_utc_offset=-6 -County "ND, Slope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800870.epw site_zip_code=58620 site_time_zone_utc_offset=-7 -County "ND, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800890.epw site_zip_code=58601 site_time_zone_utc_offset=-7 -County "ND, Steele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800910.epw site_zip_code=58230 site_time_zone_utc_offset=-6 -County "ND, Stutsman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800930.epw site_zip_code=58401 site_time_zone_utc_offset=-6 -County "ND, Towner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800950.epw site_zip_code=58324 site_time_zone_utc_offset=-6 -County "ND, Traill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800970.epw site_zip_code=58257 site_time_zone_utc_offset=-6 -County "ND, Walsh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800990.epw site_zip_code=58237 site_time_zone_utc_offset=-6 -County "ND, Ward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801010.epw site_zip_code=58701 site_time_zone_utc_offset=-6 -County "ND, Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801030.epw site_zip_code=58341 site_time_zone_utc_offset=-6 -County "ND, Williams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801050.epw site_zip_code=58801 site_time_zone_utc_offset=-6 -County "NE, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100010.epw site_zip_code=68901 site_time_zone_utc_offset=-6 -County "NE, Antelope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100030.epw site_zip_code=68756 site_time_zone_utc_offset=-6 -County "NE, Arthur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100050.epw site_zip_code=69121 site_time_zone_utc_offset=-7 -County "NE, Banner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100070.epw site_zip_code=69345 site_time_zone_utc_offset=-7 -County "NE, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100090.epw site_zip_code=68833 site_time_zone_utc_offset=-6 -County "NE, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100110.epw site_zip_code=68620 site_time_zone_utc_offset=-6 -County "NE, Box Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100130.epw site_zip_code=69301 site_time_zone_utc_offset=-7 -County "NE, Boyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100150.epw site_zip_code=68777 site_time_zone_utc_offset=-6 -County "NE, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100170.epw site_zip_code=69210 site_time_zone_utc_offset=-6 -County "NE, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100190.epw site_zip_code=68845 site_time_zone_utc_offset=-6 -County "NE, Burt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100210.epw site_zip_code=68061 site_time_zone_utc_offset=-6 -County "NE, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100230.epw site_zip_code=68632 site_time_zone_utc_offset=-6 -County "NE, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100250.epw site_zip_code=68048 site_time_zone_utc_offset=-6 -County "NE, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100270.epw site_zip_code=68739 site_time_zone_utc_offset=-6 -County "NE, Chase County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100290.epw site_zip_code=69033 site_time_zone_utc_offset=-7 -County "NE, Cherry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100310.epw site_zip_code=69201 site_time_zone_utc_offset=-6 -County "NE, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100330.epw site_zip_code=69162 site_time_zone_utc_offset=-7 -County "NE, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100350.epw site_zip_code=68979 site_time_zone_utc_offset=-6 -County "NE, Colfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100370.epw site_zip_code=68661 site_time_zone_utc_offset=-6 -County "NE, Cuming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100390.epw site_zip_code=68788 site_time_zone_utc_offset=-6 -County "NE, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100410.epw site_zip_code=68822 site_time_zone_utc_offset=-6 -County "NE, Dakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100430.epw site_zip_code=68776 site_time_zone_utc_offset=-6 -County "NE, Dawes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100450.epw site_zip_code=69337 site_time_zone_utc_offset=-7 -County "NE, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100470.epw site_zip_code=68850 site_time_zone_utc_offset=-6 -County "NE, Deuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100490.epw site_zip_code=69129 site_time_zone_utc_offset=-7 -County "NE, Dixon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100510.epw site_zip_code=68770 site_time_zone_utc_offset=-6 -County "NE, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100530.epw site_zip_code=68025 site_time_zone_utc_offset=-6 -County "NE, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100550.epw site_zip_code=68022 site_time_zone_utc_offset=-6 -County "NE, Dundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100570.epw site_zip_code=69021 site_time_zone_utc_offset=-7 -County "NE, Fillmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100590.epw site_zip_code=68361 site_time_zone_utc_offset=-6 -County "NE, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100610.epw site_zip_code=68939 site_time_zone_utc_offset=-6 -County "NE, Frontier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100630.epw site_zip_code=69025 site_time_zone_utc_offset=-6 -County "NE, Furnas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100650.epw site_zip_code=69022 site_time_zone_utc_offset=-6 -County "NE, Gage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100670.epw site_zip_code=68310 site_time_zone_utc_offset=-6 -County "NE, Garden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100690.epw site_zip_code=69154 site_time_zone_utc_offset=-7 -County "NE, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100710.epw site_zip_code=68823 site_time_zone_utc_offset=-6 -County "NE, Gosper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100730.epw site_zip_code=68937 site_time_zone_utc_offset=-6 -County "NE, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100750.epw site_zip_code=69350 site_time_zone_utc_offset=-7 -County "NE, Greeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100770.epw site_zip_code=68665 site_time_zone_utc_offset=-6 -County "NE, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100790.epw site_zip_code=68801 site_time_zone_utc_offset=-6 -County "NE, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100810.epw site_zip_code=68818 site_time_zone_utc_offset=-6 -County "NE, Harlan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100830.epw site_zip_code=68920 site_time_zone_utc_offset=-6 -County "NE, Hayes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100850.epw site_zip_code=69032 site_time_zone_utc_offset=-6 -County "NE, Hitchcock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100870.epw site_zip_code=69024 site_time_zone_utc_offset=-6 -County "NE, Holt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100890.epw site_zip_code=68763 site_time_zone_utc_offset=-6 -County "NE, Hooker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100910.epw site_zip_code=69152 site_time_zone_utc_offset=-7 -County "NE, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100930.epw site_zip_code=68873 site_time_zone_utc_offset=-6 -County "NE, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100950.epw site_zip_code=68352 site_time_zone_utc_offset=-6 -County "NE, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100970.epw site_zip_code=68450 site_time_zone_utc_offset=-6 -County "NE, Kearney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100990.epw site_zip_code=68959 site_time_zone_utc_offset=-6 -County "NE, Keith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101010.epw site_zip_code=69153 site_time_zone_utc_offset=-7 -County "NE, Keya Paha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101030.epw site_zip_code=68778 site_time_zone_utc_offset=-6 -County "NE, Kimball County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101050.epw site_zip_code=69145 site_time_zone_utc_offset=-7 -County "NE, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101070.epw site_zip_code=68718 site_time_zone_utc_offset=-6 -County "NE, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101090.epw site_zip_code=68516 site_time_zone_utc_offset=-6 -County "NE, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101110.epw site_zip_code=69101 site_time_zone_utc_offset=-6 -County "NE, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101130.epw site_zip_code=69163 site_time_zone_utc_offset=-6 -County "NE, Loup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101150.epw site_zip_code=68823 site_time_zone_utc_offset=-6 -County "NE, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101190.epw site_zip_code=68701 site_time_zone_utc_offset=-6 -County "NE, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101170.epw site_zip_code=69167 site_time_zone_utc_offset=-6 -County "NE, Merrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101210.epw site_zip_code=68826 site_time_zone_utc_offset=-6 -County "NE, Morrill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101230.epw site_zip_code=69336 site_time_zone_utc_offset=-7 -County "NE, Nance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101250.epw site_zip_code=68638 site_time_zone_utc_offset=-6 -County "NE, Nemaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101270.epw site_zip_code=68305 site_time_zone_utc_offset=-6 -County "NE, Nuckolls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101290.epw site_zip_code=68978 site_time_zone_utc_offset=-6 -County "NE, Otoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101310.epw site_zip_code=68410 site_time_zone_utc_offset=-6 -County "NE, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101330.epw site_zip_code=68420 site_time_zone_utc_offset=-6 -County "NE, Perkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101350.epw site_zip_code=69140 site_time_zone_utc_offset=-7 -County "NE, Phelps County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101370.epw site_zip_code=68949 site_time_zone_utc_offset=-6 -County "NE, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101390.epw site_zip_code=68767 site_time_zone_utc_offset=-6 -County "NE, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101410.epw site_zip_code=68601 site_time_zone_utc_offset=-6 -County "NE, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101430.epw site_zip_code=68666 site_time_zone_utc_offset=-6 -County "NE, Red Willow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101450.epw site_zip_code=69001 site_time_zone_utc_offset=-6 -County "NE, Richardson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101470.epw site_zip_code=68355 site_time_zone_utc_offset=-6 -County "NE, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101490.epw site_zip_code=68714 site_time_zone_utc_offset=-6 -County "NE, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101510.epw site_zip_code=68333 site_time_zone_utc_offset=-6 -County "NE, Sarpy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101530.epw site_zip_code=68046 site_time_zone_utc_offset=-6 -County "NE, Saunders County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101550.epw site_zip_code=68066 site_time_zone_utc_offset=-6 -County "NE, Scotts Bluff County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101570.epw site_zip_code=69361 site_time_zone_utc_offset=-7 -County "NE, Seward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101590.epw site_zip_code=68434 site_time_zone_utc_offset=-6 -County "NE, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101610.epw site_zip_code=69343 site_time_zone_utc_offset=-7 -County "NE, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101630.epw site_zip_code=68853 site_time_zone_utc_offset=-6 -County "NE, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101650.epw site_zip_code=69346 site_time_zone_utc_offset=-7 -County "NE, Stanton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101670.epw site_zip_code=68779 site_time_zone_utc_offset=-6 -County "NE, Thayer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101690.epw site_zip_code=68370 site_time_zone_utc_offset=-6 -County "NE, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101710.epw site_zip_code=69166 site_time_zone_utc_offset=-6 -County "NE, Thurston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101730.epw site_zip_code=68071 site_time_zone_utc_offset=-6 -County "NE, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101750.epw site_zip_code=68862 site_time_zone_utc_offset=-6 -County "NE, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101770.epw site_zip_code=68008 site_time_zone_utc_offset=-6 -County "NE, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101790.epw site_zip_code=68787 site_time_zone_utc_offset=-6 -County "NE, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101810.epw site_zip_code=68970 site_time_zone_utc_offset=-6 -County "NE, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101830.epw site_zip_code=68637 site_time_zone_utc_offset=-6 -County "NE, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101850.epw site_zip_code=68467 site_time_zone_utc_offset=-6 -County "NH, Belknap County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300010.epw site_zip_code=03246 site_time_zone_utc_offset=-5 -County "NH, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300030.epw site_zip_code=03894 site_time_zone_utc_offset=-5 -County "NH, Cheshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300050.epw site_zip_code=03431 site_time_zone_utc_offset=-5 -County "NH, Coos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300070.epw site_zip_code=03570 site_time_zone_utc_offset=-5 -County "NH, Grafton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300090.epw site_zip_code=03766 site_time_zone_utc_offset=-5 -County "NH, Hillsborough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300110.epw site_zip_code=03103 site_time_zone_utc_offset=-5 -County "NH, Merrimack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300130.epw site_zip_code=03301 site_time_zone_utc_offset=-5 -County "NH, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300150.epw site_zip_code=03038 site_time_zone_utc_offset=-5 -County "NH, Strafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300170.epw site_zip_code=03820 site_time_zone_utc_offset=-5 -County "NH, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300190.epw site_zip_code=03743 site_time_zone_utc_offset=-5 -County "NJ, Atlantic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400010.epw site_zip_code=08401 site_time_zone_utc_offset=-5 -County "NJ, Bergen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400030.epw site_zip_code=07410 site_time_zone_utc_offset=-5 -County "NJ, Burlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400050.epw site_zip_code=08054 site_time_zone_utc_offset=-5 -County "NJ, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400070.epw site_zip_code=08021 site_time_zone_utc_offset=-5 -County "NJ, Cape May County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400090.epw site_zip_code=08260 site_time_zone_utc_offset=-5 -County "NJ, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400110.epw site_zip_code=08332 site_time_zone_utc_offset=-5 -County "NJ, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400130.epw site_zip_code=07111 site_time_zone_utc_offset=-5 -County "NJ, Gloucester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400150.epw site_zip_code=08096 site_time_zone_utc_offset=-5 -County "NJ, Hudson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400170.epw site_zip_code=07302 site_time_zone_utc_offset=-5 -County "NJ, Hunterdon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400190.epw site_zip_code=08822 site_time_zone_utc_offset=-5 -County "NJ, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400210.epw site_zip_code=08618 site_time_zone_utc_offset=-5 -County "NJ, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400230.epw site_zip_code=08831 site_time_zone_utc_offset=-5 -County "NJ, Monmouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400250.epw site_zip_code=07728 site_time_zone_utc_offset=-5 -County "NJ, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400270.epw site_zip_code=07960 site_time_zone_utc_offset=-5 -County "NJ, Ocean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400290.epw site_zip_code=08701 site_time_zone_utc_offset=-5 -County "NJ, Passaic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400310.epw site_zip_code=07055 site_time_zone_utc_offset=-5 -County "NJ, Salem County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400330.epw site_zip_code=08069 site_time_zone_utc_offset=-5 -County "NJ, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400350.epw site_zip_code=08873 site_time_zone_utc_offset=-5 -County "NJ, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400370.epw site_zip_code=07860 site_time_zone_utc_offset=-5 -County "NJ, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400390.epw site_zip_code=07083 site_time_zone_utc_offset=-5 -County "NJ, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400410.epw site_zip_code=08865 site_time_zone_utc_offset=-5 -County "NM, Bernalillo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500010.epw site_zip_code=87111 site_time_zone_utc_offset=-7 -County "NM, Catron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500030.epw site_zip_code=87829 site_time_zone_utc_offset=-7 -County "NM, Chaves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500050.epw site_zip_code=88203 site_time_zone_utc_offset=-7 -County "NM, Cibola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500060.epw site_zip_code=87020 site_time_zone_utc_offset=-7 -County "NM, Colfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500070.epw site_zip_code=87740 site_time_zone_utc_offset=-7 -County "NM, Curry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500090.epw site_zip_code=88101 site_time_zone_utc_offset=-7 -County "NM, De Baca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500110.epw site_zip_code=88119 site_time_zone_utc_offset=-7 -County "NM, Dona Ana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500130.epw site_zip_code=88001 site_time_zone_utc_offset=-7 -County "NM, Eddy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500150.epw site_zip_code=88220 site_time_zone_utc_offset=-7 -County "NM, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500170.epw site_zip_code=88061 site_time_zone_utc_offset=-7 -County "NM, Guadalupe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500190.epw site_zip_code=88435 site_time_zone_utc_offset=-7 -County "NM, Harding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500210.epw site_zip_code=87743 site_time_zone_utc_offset=-7 -County "NM, Hidalgo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500230.epw site_zip_code=88045 site_time_zone_utc_offset=-7 -County "NM, Lea County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500250.epw site_zip_code=88240 site_time_zone_utc_offset=-7 -County "NM, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500270.epw site_zip_code=88355 site_time_zone_utc_offset=-7 -County "NM, Los Alamos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500280.epw site_zip_code=87544 site_time_zone_utc_offset=-7 -County "NM, Luna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500290.epw site_zip_code=88030 site_time_zone_utc_offset=-7 -County "NM, McKinley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500310.epw site_zip_code=87301 site_time_zone_utc_offset=-7 -County "NM, Mora County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500330.epw site_zip_code=87722 site_time_zone_utc_offset=-7 -County "NM, Otero County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500350.epw site_zip_code=88310 site_time_zone_utc_offset=-7 -County "NM, Quay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500370.epw site_zip_code=88401 site_time_zone_utc_offset=-7 -County "NM, Rio Arriba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500390.epw site_zip_code=87532 site_time_zone_utc_offset=-7 -County "NM, Roosevelt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500410.epw site_zip_code=88130 site_time_zone_utc_offset=-7 -County "NM, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500450.epw site_zip_code=87401 site_time_zone_utc_offset=-7 -County "NM, San Miguel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500470.epw site_zip_code=87701 site_time_zone_utc_offset=-7 -County "NM, Sandoval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500430.epw site_zip_code=87124 site_time_zone_utc_offset=-7 -County "NM, Santa Fe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500490.epw site_zip_code=87507 site_time_zone_utc_offset=-7 -County "NM, Sierra County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500510.epw site_zip_code=87901 site_time_zone_utc_offset=-7 -County "NM, Socorro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500530.epw site_zip_code=87801 site_time_zone_utc_offset=-7 -County "NM, Taos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500550.epw site_zip_code=87571 site_time_zone_utc_offset=-7 -County "NM, Torrance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500570.epw site_zip_code=87035 site_time_zone_utc_offset=-7 -County "NM, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500590.epw site_zip_code=88415 site_time_zone_utc_offset=-7 -County "NM, Valencia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500610.epw site_zip_code=87031 site_time_zone_utc_offset=-7 -County "NV, Carson City" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3205100.epw site_zip_code=89701 site_time_zone_utc_offset=-8 -County "NV, Churchill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200010.epw site_zip_code=89406 site_time_zone_utc_offset=-8 -County "NV, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200030.epw site_zip_code=89052 site_time_zone_utc_offset=-8 -County "NV, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200050.epw site_zip_code=89460 site_time_zone_utc_offset=-8 -County "NV, Elko County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200070.epw site_zip_code=89801 site_time_zone_utc_offset=-8 -County "NV, Esmeralda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200090.epw site_zip_code=89010 site_time_zone_utc_offset=-8 -County "NV, Eureka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200110.epw site_zip_code=89316 site_time_zone_utc_offset=-8 -County "NV, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200130.epw site_zip_code=89445 site_time_zone_utc_offset=-8 -County "NV, Lander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200150.epw site_zip_code=89820 site_time_zone_utc_offset=-8 -County "NV, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200170.epw site_zip_code=89017 site_time_zone_utc_offset=-8 -County "NV, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200190.epw site_zip_code=89408 site_time_zone_utc_offset=-8 -County "NV, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200210.epw site_zip_code=89415 site_time_zone_utc_offset=-8 -County "NV, Nye County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200230.epw site_zip_code=89048 site_time_zone_utc_offset=-8 -County "NV, Pershing County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200270.epw site_zip_code=89419 site_time_zone_utc_offset=-8 -County "NV, Storey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200290.epw site_zip_code=89521 site_time_zone_utc_offset=-8 -County "NV, Washoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200310.epw site_zip_code=89502 site_time_zone_utc_offset=-8 -County "NV, White Pine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200330.epw site_zip_code=89301 site_time_zone_utc_offset=-8 -County "NY, Albany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600010.epw site_zip_code=12203 site_time_zone_utc_offset=-5 -County "NY, Allegany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600030.epw site_zip_code=14895 site_time_zone_utc_offset=-5 -County "NY, Bronx County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600050.epw site_zip_code=10467 site_time_zone_utc_offset=-5 -County "NY, Broome County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600070.epw site_zip_code=13760 site_time_zone_utc_offset=-5 -County "NY, Cattaraugus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600090.epw site_zip_code=14760 site_time_zone_utc_offset=-5 -County "NY, Cayuga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600110.epw site_zip_code=13021 site_time_zone_utc_offset=-5 -County "NY, Chautauqua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600130.epw site_zip_code=14701 site_time_zone_utc_offset=-5 -County "NY, Chemung County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600150.epw site_zip_code=14845 site_time_zone_utc_offset=-5 -County "NY, Chenango County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600170.epw site_zip_code=13815 site_time_zone_utc_offset=-5 -County "NY, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600190.epw site_zip_code=12901 site_time_zone_utc_offset=-5 -County "NY, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600210.epw site_zip_code=12534 site_time_zone_utc_offset=-5 -County "NY, Cortland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600230.epw site_zip_code=13045 site_time_zone_utc_offset=-5 -County "NY, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600250.epw site_zip_code=13856 site_time_zone_utc_offset=-5 -County "NY, Dutchess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600270.epw site_zip_code=12601 site_time_zone_utc_offset=-5 -County "NY, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600290.epw site_zip_code=14221 site_time_zone_utc_offset=-5 -County "NY, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600310.epw site_zip_code=12946 site_time_zone_utc_offset=-5 -County "NY, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600330.epw site_zip_code=12953 site_time_zone_utc_offset=-5 -County "NY, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600350.epw site_zip_code=12078 site_time_zone_utc_offset=-5 -County "NY, Genesee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600370.epw site_zip_code=14020 site_time_zone_utc_offset=-5 -County "NY, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600390.epw site_zip_code=12414 site_time_zone_utc_offset=-5 -County "NY, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600410.epw site_zip_code=12842 site_time_zone_utc_offset=-5 -County "NY, Herkimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600430.epw site_zip_code=13357 site_time_zone_utc_offset=-5 -County "NY, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600450.epw site_zip_code=13601 site_time_zone_utc_offset=-5 -County "NY, Kings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600470.epw site_zip_code=11226 site_time_zone_utc_offset=-5 -County "NY, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600490.epw site_zip_code=13367 site_time_zone_utc_offset=-5 -County "NY, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600510.epw site_zip_code=14454 site_time_zone_utc_offset=-5 -County "NY, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600530.epw site_zip_code=13032 site_time_zone_utc_offset=-5 -County "NY, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600550.epw site_zip_code=14580 site_time_zone_utc_offset=-5 -County "NY, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600570.epw site_zip_code=12010 site_time_zone_utc_offset=-5 -County "NY, Nassau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600590.epw site_zip_code=11758 site_time_zone_utc_offset=-5 -County "NY, New York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600610.epw site_zip_code=10025 site_time_zone_utc_offset=-5 -County "NY, Niagara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600630.epw site_zip_code=14094 site_time_zone_utc_offset=-5 -County "NY, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600650.epw site_zip_code=13440 site_time_zone_utc_offset=-5 -County "NY, Onondaga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600670.epw site_zip_code=13027 site_time_zone_utc_offset=-5 -County "NY, Ontario County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600690.epw site_zip_code=14424 site_time_zone_utc_offset=-5 -County "NY, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600710.epw site_zip_code=12550 site_time_zone_utc_offset=-5 -County "NY, Orleans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600730.epw site_zip_code=14411 site_time_zone_utc_offset=-5 -County "NY, Oswego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600750.epw site_zip_code=13126 site_time_zone_utc_offset=-5 -County "NY, Otsego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600770.epw site_zip_code=13820 site_time_zone_utc_offset=-5 -County "NY, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600790.epw site_zip_code=10512 site_time_zone_utc_offset=-5 -County "NY, Queens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600810.epw site_zip_code=11375 site_time_zone_utc_offset=-5 -County "NY, Rensselaer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600830.epw site_zip_code=12180 site_time_zone_utc_offset=-5 -County "NY, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600850.epw site_zip_code=10314 site_time_zone_utc_offset=-5 -County "NY, Rockland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600870.epw site_zip_code=10977 site_time_zone_utc_offset=-5 -County "NY, Saratoga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600910.epw site_zip_code=12866 site_time_zone_utc_offset=-5 -County "NY, Schenectady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600930.epw site_zip_code=12306 site_time_zone_utc_offset=-5 -County "NY, Schoharie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600950.epw site_zip_code=12043 site_time_zone_utc_offset=-5 -County "NY, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600970.epw site_zip_code=14891 site_time_zone_utc_offset=-5 -County "NY, Seneca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600990.epw site_zip_code=13148 site_time_zone_utc_offset=-5 -County "NY, St. Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600890.epw site_zip_code=13676 site_time_zone_utc_offset=-5 -County "NY, Steuben County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601010.epw site_zip_code=14830 site_time_zone_utc_offset=-5 -County "NY, Suffolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601030.epw site_zip_code=11746 site_time_zone_utc_offset=-5 -County "NY, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601050.epw site_zip_code=12701 site_time_zone_utc_offset=-5 -County "NY, Tioga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601070.epw site_zip_code=13827 site_time_zone_utc_offset=-5 -County "NY, Tompkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601090.epw site_zip_code=14850 site_time_zone_utc_offset=-5 -County "NY, Ulster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601110.epw site_zip_code=12401 site_time_zone_utc_offset=-5 -County "NY, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601130.epw site_zip_code=12804 site_time_zone_utc_offset=-5 -County "NY, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601150.epw site_zip_code=12839 site_time_zone_utc_offset=-5 -County "NY, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601170.epw site_zip_code=14513 site_time_zone_utc_offset=-5 -County "NY, Westchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601190.epw site_zip_code=10701 site_time_zone_utc_offset=-5 -County "NY, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601210.epw site_zip_code=14569 site_time_zone_utc_offset=-5 -County "NY, Yates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601230.epw site_zip_code=14527 site_time_zone_utc_offset=-5 -County "OH, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900010.epw site_zip_code=45693 site_time_zone_utc_offset=-5 -County "OH, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900030.epw site_zip_code=45805 site_time_zone_utc_offset=-5 -County "OH, Ashland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900050.epw site_zip_code=44805 site_time_zone_utc_offset=-5 -County "OH, Ashtabula County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900070.epw site_zip_code=44004 site_time_zone_utc_offset=-5 -County "OH, Athens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900090.epw site_zip_code=45701 site_time_zone_utc_offset=-5 -County "OH, Auglaize County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900110.epw site_zip_code=45895 site_time_zone_utc_offset=-5 -County "OH, Belmont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900130.epw site_zip_code=43950 site_time_zone_utc_offset=-5 -County "OH, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900150.epw site_zip_code=45121 site_time_zone_utc_offset=-5 -County "OH, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900170.epw site_zip_code=45011 site_time_zone_utc_offset=-5 -County "OH, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900190.epw site_zip_code=44615 site_time_zone_utc_offset=-5 -County "OH, Champaign County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900210.epw site_zip_code=43078 site_time_zone_utc_offset=-5 -County "OH, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900230.epw site_zip_code=45503 site_time_zone_utc_offset=-5 -County "OH, Clermont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900250.epw site_zip_code=45103 site_time_zone_utc_offset=-5 -County "OH, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900270.epw site_zip_code=45177 site_time_zone_utc_offset=-5 -County "OH, Columbiana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900290.epw site_zip_code=43920 site_time_zone_utc_offset=-5 -County "OH, Coshocton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900310.epw site_zip_code=43812 site_time_zone_utc_offset=-5 -County "OH, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900330.epw site_zip_code=44820 site_time_zone_utc_offset=-5 -County "OH, Cuyahoga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900350.epw site_zip_code=44107 site_time_zone_utc_offset=-5 -County "OH, Darke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900370.epw site_zip_code=45331 site_time_zone_utc_offset=-5 -County "OH, Defiance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900390.epw site_zip_code=43512 site_time_zone_utc_offset=-5 -County "OH, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900410.epw site_zip_code=43015 site_time_zone_utc_offset=-5 -County "OH, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900430.epw site_zip_code=44870 site_time_zone_utc_offset=-5 -County "OH, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900450.epw site_zip_code=43130 site_time_zone_utc_offset=-5 -County "OH, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900470.epw site_zip_code=43160 site_time_zone_utc_offset=-5 -County "OH, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900490.epw site_zip_code=43081 site_time_zone_utc_offset=-5 -County "OH, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900510.epw site_zip_code=43567 site_time_zone_utc_offset=-5 -County "OH, Gallia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900530.epw site_zip_code=45631 site_time_zone_utc_offset=-5 -County "OH, Geauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900550.epw site_zip_code=44024 site_time_zone_utc_offset=-5 -County "OH, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900570.epw site_zip_code=45324 site_time_zone_utc_offset=-5 -County "OH, Guernsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900590.epw site_zip_code=43725 site_time_zone_utc_offset=-5 -County "OH, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900610.epw site_zip_code=45238 site_time_zone_utc_offset=-5 -County "OH, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900630.epw site_zip_code=45840 site_time_zone_utc_offset=-5 -County "OH, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900650.epw site_zip_code=43326 site_time_zone_utc_offset=-5 -County "OH, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900670.epw site_zip_code=43907 site_time_zone_utc_offset=-5 -County "OH, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900690.epw site_zip_code=43545 site_time_zone_utc_offset=-5 -County "OH, Highland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900710.epw site_zip_code=45133 site_time_zone_utc_offset=-5 -County "OH, Hocking County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900730.epw site_zip_code=43138 site_time_zone_utc_offset=-5 -County "OH, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900750.epw site_zip_code=44654 site_time_zone_utc_offset=-5 -County "OH, Huron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900770.epw site_zip_code=44857 site_time_zone_utc_offset=-5 -County "OH, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900790.epw site_zip_code=45640 site_time_zone_utc_offset=-5 -County "OH, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900810.epw site_zip_code=43952 site_time_zone_utc_offset=-5 -County "OH, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900830.epw site_zip_code=43050 site_time_zone_utc_offset=-5 -County "OH, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900850.epw site_zip_code=44060 site_time_zone_utc_offset=-5 -County "OH, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900870.epw site_zip_code=45638 site_time_zone_utc_offset=-5 -County "OH, Licking County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900890.epw site_zip_code=43055 site_time_zone_utc_offset=-5 -County "OH, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900910.epw site_zip_code=43311 site_time_zone_utc_offset=-5 -County "OH, Lorain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900930.epw site_zip_code=44035 site_time_zone_utc_offset=-5 -County "OH, Lucas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900950.epw site_zip_code=43615 site_time_zone_utc_offset=-5 -County "OH, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900970.epw site_zip_code=43140 site_time_zone_utc_offset=-5 -County "OH, Mahoning County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900990.epw site_zip_code=44512 site_time_zone_utc_offset=-5 -County "OH, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901010.epw site_zip_code=43302 site_time_zone_utc_offset=-5 -County "OH, Medina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901030.epw site_zip_code=44256 site_time_zone_utc_offset=-5 -County "OH, Meigs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901050.epw site_zip_code=45769 site_time_zone_utc_offset=-5 -County "OH, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901070.epw site_zip_code=45822 site_time_zone_utc_offset=-5 -County "OH, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901090.epw site_zip_code=45373 site_time_zone_utc_offset=-5 -County "OH, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901110.epw site_zip_code=43793 site_time_zone_utc_offset=-5 -County "OH, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901130.epw site_zip_code=45424 site_time_zone_utc_offset=-5 -County "OH, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901150.epw site_zip_code=43756 site_time_zone_utc_offset=-5 -County "OH, Morrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901170.epw site_zip_code=43338 site_time_zone_utc_offset=-5 -County "OH, Muskingum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901190.epw site_zip_code=43701 site_time_zone_utc_offset=-5 -County "OH, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901210.epw site_zip_code=43724 site_time_zone_utc_offset=-5 -County "OH, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901230.epw site_zip_code=43452 site_time_zone_utc_offset=-5 -County "OH, Paulding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901250.epw site_zip_code=45879 site_time_zone_utc_offset=-5 -County "OH, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901270.epw site_zip_code=43764 site_time_zone_utc_offset=-5 -County "OH, Pickaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901290.epw site_zip_code=43113 site_time_zone_utc_offset=-5 -County "OH, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901310.epw site_zip_code=45690 site_time_zone_utc_offset=-5 -County "OH, Portage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901330.epw site_zip_code=44240 site_time_zone_utc_offset=-5 -County "OH, Preble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901350.epw site_zip_code=45320 site_time_zone_utc_offset=-5 -County "OH, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901370.epw site_zip_code=45875 site_time_zone_utc_offset=-5 -County "OH, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901390.epw site_zip_code=44903 site_time_zone_utc_offset=-5 -County "OH, Ross County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901410.epw site_zip_code=45601 site_time_zone_utc_offset=-5 -County "OH, Sandusky County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901430.epw site_zip_code=43420 site_time_zone_utc_offset=-5 -County "OH, Scioto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901450.epw site_zip_code=45662 site_time_zone_utc_offset=-5 -County "OH, Seneca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901470.epw site_zip_code=44883 site_time_zone_utc_offset=-5 -County "OH, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901490.epw site_zip_code=45365 site_time_zone_utc_offset=-5 -County "OH, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901510.epw site_zip_code=44646 site_time_zone_utc_offset=-5 -County "OH, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901530.epw site_zip_code=44224 site_time_zone_utc_offset=-5 -County "OH, Trumbull County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901550.epw site_zip_code=44483 site_time_zone_utc_offset=-5 -County "OH, Tuscarawas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901570.epw site_zip_code=44663 site_time_zone_utc_offset=-5 -County "OH, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901590.epw site_zip_code=43040 site_time_zone_utc_offset=-5 -County "OH, Van Wert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901610.epw site_zip_code=45891 site_time_zone_utc_offset=-5 -County "OH, Vinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901630.epw site_zip_code=45651 site_time_zone_utc_offset=-5 -County "OH, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901650.epw site_zip_code=45040 site_time_zone_utc_offset=-5 -County "OH, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901670.epw site_zip_code=45750 site_time_zone_utc_offset=-5 -County "OH, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901690.epw site_zip_code=44691 site_time_zone_utc_offset=-5 -County "OH, Williams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901710.epw site_zip_code=43506 site_time_zone_utc_offset=-5 -County "OH, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901730.epw site_zip_code=43551 site_time_zone_utc_offset=-5 -County "OH, Wyandot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901750.epw site_zip_code=43351 site_time_zone_utc_offset=-5 -County "OK, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000010.epw site_zip_code=74960 site_time_zone_utc_offset=-6 -County "OK, Alfalfa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000030.epw site_zip_code=73728 site_time_zone_utc_offset=-6 -County "OK, Atoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000050.epw site_zip_code=74525 site_time_zone_utc_offset=-6 -County "OK, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000070.epw site_zip_code=73932 site_time_zone_utc_offset=-6 -County "OK, Beckham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000090.epw site_zip_code=73644 site_time_zone_utc_offset=-6 -County "OK, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000110.epw site_zip_code=73772 site_time_zone_utc_offset=-6 -County "OK, Bryan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000130.epw site_zip_code=74701 site_time_zone_utc_offset=-6 -County "OK, Caddo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000150.epw site_zip_code=73005 site_time_zone_utc_offset=-6 -County "OK, Canadian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000170.epw site_zip_code=73099 site_time_zone_utc_offset=-6 -County "OK, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000190.epw site_zip_code=73401 site_time_zone_utc_offset=-6 -County "OK, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000210.epw site_zip_code=74464 site_time_zone_utc_offset=-6 -County "OK, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000230.epw site_zip_code=74743 site_time_zone_utc_offset=-6 -County "OK, Cimarron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000250.epw site_zip_code=73933 site_time_zone_utc_offset=-6 -County "OK, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000270.epw site_zip_code=73160 site_time_zone_utc_offset=-6 -County "OK, Coal County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000290.epw site_zip_code=74538 site_time_zone_utc_offset=-6 -County "OK, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000310.epw site_zip_code=73505 site_time_zone_utc_offset=-6 -County "OK, Cotton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000330.epw site_zip_code=73572 site_time_zone_utc_offset=-6 -County "OK, Craig County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000350.epw site_zip_code=74301 site_time_zone_utc_offset=-6 -County "OK, Creek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000370.epw site_zip_code=74066 site_time_zone_utc_offset=-6 -County "OK, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000390.epw site_zip_code=73096 site_time_zone_utc_offset=-6 -County "OK, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000410.epw site_zip_code=74344 site_time_zone_utc_offset=-6 -County "OK, Dewey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000430.epw site_zip_code=73859 site_time_zone_utc_offset=-6 -County "OK, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000450.epw site_zip_code=73858 site_time_zone_utc_offset=-6 -County "OK, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000470.epw site_zip_code=73703 site_time_zone_utc_offset=-6 -County "OK, Garvin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000490.epw site_zip_code=73075 site_time_zone_utc_offset=-6 -County "OK, Grady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000510.epw site_zip_code=73018 site_time_zone_utc_offset=-6 -County "OK, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000530.epw site_zip_code=73759 site_time_zone_utc_offset=-6 -County "OK, Greer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000550.epw site_zip_code=73554 site_time_zone_utc_offset=-6 -County "OK, Harmon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000570.epw site_zip_code=73550 site_time_zone_utc_offset=-6 -County "OK, Harper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000590.epw site_zip_code=73848 site_time_zone_utc_offset=-6 -County "OK, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000610.epw site_zip_code=74462 site_time_zone_utc_offset=-6 -County "OK, Hughes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000630.epw site_zip_code=74848 site_time_zone_utc_offset=-6 -County "OK, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000650.epw site_zip_code=73521 site_time_zone_utc_offset=-6 -County "OK, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000670.epw site_zip_code=73573 site_time_zone_utc_offset=-6 -County "OK, Johnston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000690.epw site_zip_code=73460 site_time_zone_utc_offset=-6 -County "OK, Kay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000710.epw site_zip_code=74601 site_time_zone_utc_offset=-6 -County "OK, Kingfisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000730.epw site_zip_code=73750 site_time_zone_utc_offset=-6 -County "OK, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000750.epw site_zip_code=73651 site_time_zone_utc_offset=-6 -County "OK, Latimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000770.epw site_zip_code=74578 site_time_zone_utc_offset=-6 -County "OK, Le Flore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000790.epw site_zip_code=74953 site_time_zone_utc_offset=-6 -County "OK, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000810.epw site_zip_code=74834 site_time_zone_utc_offset=-6 -County "OK, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000830.epw site_zip_code=73044 site_time_zone_utc_offset=-6 -County "OK, Love County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000850.epw site_zip_code=73448 site_time_zone_utc_offset=-6 -County "OK, Major County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000930.epw site_zip_code=73737 site_time_zone_utc_offset=-6 -County "OK, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000950.epw site_zip_code=73439 site_time_zone_utc_offset=-6 -County "OK, Mayes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000970.epw site_zip_code=74361 site_time_zone_utc_offset=-6 -County "OK, McClain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000870.epw site_zip_code=73080 site_time_zone_utc_offset=-6 -County "OK, McCurtain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000890.epw site_zip_code=74728 site_time_zone_utc_offset=-6 -County "OK, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000910.epw site_zip_code=74432 site_time_zone_utc_offset=-6 -County "OK, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000990.epw site_zip_code=73086 site_time_zone_utc_offset=-6 -County "OK, Muskogee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001010.epw site_zip_code=74403 site_time_zone_utc_offset=-6 -County "OK, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001030.epw site_zip_code=73077 site_time_zone_utc_offset=-6 -County "OK, Nowata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001050.epw site_zip_code=74048 site_time_zone_utc_offset=-6 -County "OK, Okfuskee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001070.epw site_zip_code=74859 site_time_zone_utc_offset=-6 -County "OK, Oklahoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001090.epw site_zip_code=73013 site_time_zone_utc_offset=-6 -County "OK, Okmulgee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001110.epw site_zip_code=74447 site_time_zone_utc_offset=-6 -County "OK, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001130.epw site_zip_code=74070 site_time_zone_utc_offset=-6 -County "OK, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001150.epw site_zip_code=74354 site_time_zone_utc_offset=-6 -County "OK, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001170.epw site_zip_code=74020 site_time_zone_utc_offset=-6 -County "OK, Payne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001190.epw site_zip_code=74074 site_time_zone_utc_offset=-6 -County "OK, Pittsburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001210.epw site_zip_code=74501 site_time_zone_utc_offset=-6 -County "OK, Pontotoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001230.epw site_zip_code=74820 site_time_zone_utc_offset=-6 -County "OK, Pottawatomie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001250.epw site_zip_code=74801 site_time_zone_utc_offset=-6 -County "OK, Pushmataha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001270.epw site_zip_code=74523 site_time_zone_utc_offset=-6 -County "OK, Roger Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001290.epw site_zip_code=73628 site_time_zone_utc_offset=-6 -County "OK, Rogers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001310.epw site_zip_code=74017 site_time_zone_utc_offset=-6 -County "OK, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001330.epw site_zip_code=74868 site_time_zone_utc_offset=-6 -County "OK, Sequoyah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001350.epw site_zip_code=74955 site_time_zone_utc_offset=-6 -County "OK, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001370.epw site_zip_code=73533 site_time_zone_utc_offset=-6 -County "OK, Texas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001390.epw site_zip_code=73942 site_time_zone_utc_offset=-6 -County "OK, Tillman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001410.epw site_zip_code=73542 site_time_zone_utc_offset=-6 -County "OK, Tulsa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001430.epw site_zip_code=74012 site_time_zone_utc_offset=-6 -County "OK, Wagoner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001450.epw site_zip_code=74014 site_time_zone_utc_offset=-6 -County "OK, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001470.epw site_zip_code=74006 site_time_zone_utc_offset=-6 -County "OK, Washita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001490.epw site_zip_code=73632 site_time_zone_utc_offset=-6 -County "OK, Woods County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001510.epw site_zip_code=73717 site_time_zone_utc_offset=-6 -County "OK, Woodward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001530.epw site_zip_code=73801 site_time_zone_utc_offset=-6 -County "OR, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100010.epw site_zip_code=97814 site_time_zone_utc_offset=-8 -County "OR, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100030.epw site_zip_code=97330 site_time_zone_utc_offset=-8 -County "OR, Clackamas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100050.epw site_zip_code=97045 site_time_zone_utc_offset=-8 -County "OR, Clatsop County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100070.epw site_zip_code=97103 site_time_zone_utc_offset=-8 -County "OR, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100090.epw site_zip_code=97051 site_time_zone_utc_offset=-8 -County "OR, Coos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100110.epw site_zip_code=97420 site_time_zone_utc_offset=-8 -County "OR, Crook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100130.epw site_zip_code=97754 site_time_zone_utc_offset=-8 -County "OR, Curry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100150.epw site_zip_code=97415 site_time_zone_utc_offset=-8 -County "OR, Deschutes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100170.epw site_zip_code=97702 site_time_zone_utc_offset=-8 -County "OR, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100190.epw site_zip_code=97471 site_time_zone_utc_offset=-8 -County "OR, Gilliam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100210.epw site_zip_code=97823 site_time_zone_utc_offset=-8 -County "OR, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100230.epw site_zip_code=97845 site_time_zone_utc_offset=-8 -County "OR, Harney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100250.epw site_zip_code=97720 site_time_zone_utc_offset=-8 -County "OR, Hood River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100270.epw site_zip_code=97031 site_time_zone_utc_offset=-8 -County "OR, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100290.epw site_zip_code=97504 site_time_zone_utc_offset=-8 -County "OR, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100310.epw site_zip_code=97741 site_time_zone_utc_offset=-8 -County "OR, Josephine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100330.epw site_zip_code=97526 site_time_zone_utc_offset=-8 -County "OR, Klamath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100350.epw site_zip_code=97603 site_time_zone_utc_offset=-8 -County "OR, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100370.epw site_zip_code=97630 site_time_zone_utc_offset=-8 -County "OR, Lane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100390.epw site_zip_code=97402 site_time_zone_utc_offset=-8 -County "OR, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100410.epw site_zip_code=97367 site_time_zone_utc_offset=-8 -County "OR, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100430.epw site_zip_code=97322 site_time_zone_utc_offset=-8 -County "OR, Malheur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100450.epw site_zip_code=97914 site_time_zone_utc_offset=-7 -County "OR, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100470.epw site_zip_code=97301 site_time_zone_utc_offset=-8 -County "OR, Morrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100490.epw site_zip_code=97818 site_time_zone_utc_offset=-8 -County "OR, Multnomah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100510.epw site_zip_code=97206 site_time_zone_utc_offset=-8 -County "OR, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100530.epw site_zip_code=97304 site_time_zone_utc_offset=-8 -County "OR, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100550.epw site_zip_code=97065 site_time_zone_utc_offset=-8 -County "OR, Tillamook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100570.epw site_zip_code=97141 site_time_zone_utc_offset=-8 -County "OR, Umatilla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100590.epw site_zip_code=97838 site_time_zone_utc_offset=-8 -County "OR, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100610.epw site_zip_code=97850 site_time_zone_utc_offset=-8 -County "OR, Wallowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100630.epw site_zip_code=97828 site_time_zone_utc_offset=-8 -County "OR, Wasco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100650.epw site_zip_code=97058 site_time_zone_utc_offset=-8 -County "OR, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100670.epw site_zip_code=97229 site_time_zone_utc_offset=-8 -County "OR, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100690.epw site_zip_code=97830 site_time_zone_utc_offset=-8 -County "OR, Yamhill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100710.epw site_zip_code=97128 site_time_zone_utc_offset=-8 -County "PA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200010.epw site_zip_code=17325 site_time_zone_utc_offset=-5 -County "PA, Allegheny County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200030.epw site_zip_code=15237 site_time_zone_utc_offset=-5 -County "PA, Armstrong County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200050.epw site_zip_code=16201 site_time_zone_utc_offset=-5 -County "PA, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200070.epw site_zip_code=15001 site_time_zone_utc_offset=-5 -County "PA, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200090.epw site_zip_code=15522 site_time_zone_utc_offset=-5 -County "PA, Berks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200110.epw site_zip_code=19606 site_time_zone_utc_offset=-5 -County "PA, Blair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200130.epw site_zip_code=16601 site_time_zone_utc_offset=-5 -County "PA, Bradford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200150.epw site_zip_code=18840 site_time_zone_utc_offset=-5 -County "PA, Bucks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200170.epw site_zip_code=19020 site_time_zone_utc_offset=-5 -County "PA, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200190.epw site_zip_code=16001 site_time_zone_utc_offset=-5 -County "PA, Cambria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200210.epw site_zip_code=15905 site_time_zone_utc_offset=-5 -County "PA, Cameron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200230.epw site_zip_code=15834 site_time_zone_utc_offset=-5 -County "PA, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200250.epw site_zip_code=18235 site_time_zone_utc_offset=-5 -County "PA, Centre County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200270.epw site_zip_code=16801 site_time_zone_utc_offset=-5 -County "PA, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200290.epw site_zip_code=19380 site_time_zone_utc_offset=-5 -County "PA, Clarion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200310.epw site_zip_code=16214 site_time_zone_utc_offset=-5 -County "PA, Clearfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200330.epw site_zip_code=15801 site_time_zone_utc_offset=-5 -County "PA, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200350.epw site_zip_code=17745 site_time_zone_utc_offset=-5 -County "PA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200370.epw site_zip_code=17815 site_time_zone_utc_offset=-5 -County "PA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200390.epw site_zip_code=16335 site_time_zone_utc_offset=-5 -County "PA, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200410.epw site_zip_code=17055 site_time_zone_utc_offset=-5 -County "PA, Dauphin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200430.epw site_zip_code=17112 site_time_zone_utc_offset=-5 -County "PA, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200450.epw site_zip_code=19063 site_time_zone_utc_offset=-5 -County "PA, Elk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200470.epw site_zip_code=15857 site_time_zone_utc_offset=-5 -County "PA, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200490.epw site_zip_code=16509 site_time_zone_utc_offset=-5 -County "PA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200510.epw site_zip_code=15401 site_time_zone_utc_offset=-5 -County "PA, Forest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200530.epw site_zip_code=16353 site_time_zone_utc_offset=-5 -County "PA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200550.epw site_zip_code=17268 site_time_zone_utc_offset=-5 -County "PA, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200570.epw site_zip_code=17233 site_time_zone_utc_offset=-5 -County "PA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200590.epw site_zip_code=15370 site_time_zone_utc_offset=-5 -County "PA, Huntingdon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200610.epw site_zip_code=16652 site_time_zone_utc_offset=-5 -County "PA, Indiana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200630.epw site_zip_code=15701 site_time_zone_utc_offset=-5 -County "PA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200650.epw site_zip_code=15767 site_time_zone_utc_offset=-5 -County "PA, Juniata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200670.epw site_zip_code=17059 site_time_zone_utc_offset=-5 -County "PA, Lackawanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200690.epw site_zip_code=18505 site_time_zone_utc_offset=-5 -County "PA, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200710.epw site_zip_code=17603 site_time_zone_utc_offset=-5 -County "PA, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200730.epw site_zip_code=16101 site_time_zone_utc_offset=-5 -County "PA, Lebanon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200750.epw site_zip_code=17042 site_time_zone_utc_offset=-5 -County "PA, Lehigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200770.epw site_zip_code=18103 site_time_zone_utc_offset=-5 -County "PA, Luzerne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200790.epw site_zip_code=18702 site_time_zone_utc_offset=-5 -County "PA, Lycoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200810.epw site_zip_code=17701 site_time_zone_utc_offset=-5 -County "PA, McKean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200830.epw site_zip_code=16701 site_time_zone_utc_offset=-5 -County "PA, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200850.epw site_zip_code=16148 site_time_zone_utc_offset=-5 -County "PA, Mifflin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200870.epw site_zip_code=17044 site_time_zone_utc_offset=-5 -County "PA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200890.epw site_zip_code=18301 site_time_zone_utc_offset=-5 -County "PA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200910.epw site_zip_code=19446 site_time_zone_utc_offset=-5 -County "PA, Montour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200930.epw site_zip_code=17821 site_time_zone_utc_offset=-5 -County "PA, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200950.epw site_zip_code=18042 site_time_zone_utc_offset=-5 -County "PA, Northumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200970.epw site_zip_code=17801 site_time_zone_utc_offset=-5 -County "PA, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200990.epw site_zip_code=17020 site_time_zone_utc_offset=-5 -County "PA, Philadelphia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201010.epw site_zip_code=19143 site_time_zone_utc_offset=-5 -County "PA, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201030.epw site_zip_code=18337 site_time_zone_utc_offset=-5 -County "PA, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201050.epw site_zip_code=16915 site_time_zone_utc_offset=-5 -County "PA, Schuylkill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201070.epw site_zip_code=17901 site_time_zone_utc_offset=-5 -County "PA, Snyder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201090.epw site_zip_code=17870 site_time_zone_utc_offset=-5 -County "PA, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201110.epw site_zip_code=15501 site_time_zone_utc_offset=-5 -County "PA, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201130.epw site_zip_code=18614 site_time_zone_utc_offset=-5 -County "PA, Susquehanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201150.epw site_zip_code=18801 site_time_zone_utc_offset=-5 -County "PA, Tioga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201170.epw site_zip_code=16901 site_time_zone_utc_offset=-5 -County "PA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201190.epw site_zip_code=17837 site_time_zone_utc_offset=-5 -County "PA, Venango County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201210.epw site_zip_code=16301 site_time_zone_utc_offset=-5 -County "PA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201230.epw site_zip_code=16365 site_time_zone_utc_offset=-5 -County "PA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201250.epw site_zip_code=15301 site_time_zone_utc_offset=-5 -County "PA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201270.epw site_zip_code=18431 site_time_zone_utc_offset=-5 -County "PA, Westmoreland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201290.epw site_zip_code=15601 site_time_zone_utc_offset=-5 -County "PA, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201310.epw site_zip_code=18657 site_time_zone_utc_offset=-5 -County "PA, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201330.epw site_zip_code=17331 site_time_zone_utc_offset=-5 -County "RI, Bristol County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400010.epw site_zip_code=02809 site_time_zone_utc_offset=-5 -County "RI, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400030.epw site_zip_code=02893 site_time_zone_utc_offset=-5 -County "RI, Newport County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400050.epw site_zip_code=02840 site_time_zone_utc_offset=-5 -County "RI, Providence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400070.epw site_zip_code=02860 site_time_zone_utc_offset=-5 -County "RI, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400090.epw site_zip_code=02891 site_time_zone_utc_offset=-5 -County "SC, Abbeville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500010.epw site_zip_code=29620 site_time_zone_utc_offset=-5 -County "SC, Aiken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500030.epw site_zip_code=29803 site_time_zone_utc_offset=-5 -County "SC, Allendale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500050.epw site_zip_code=29810 site_time_zone_utc_offset=-5 -County "SC, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500070.epw site_zip_code=29621 site_time_zone_utc_offset=-5 -County "SC, Bamberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500090.epw site_zip_code=29003 site_time_zone_utc_offset=-5 -County "SC, Barnwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500110.epw site_zip_code=29812 site_time_zone_utc_offset=-5 -County "SC, Beaufort County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500130.epw site_zip_code=29910 site_time_zone_utc_offset=-5 -County "SC, Berkeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500150.epw site_zip_code=29445 site_time_zone_utc_offset=-5 -County "SC, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500170.epw site_zip_code=29135 site_time_zone_utc_offset=-5 -County "SC, Charleston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500190.epw site_zip_code=29464 site_time_zone_utc_offset=-5 -County "SC, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500210.epw site_zip_code=29340 site_time_zone_utc_offset=-5 -County "SC, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500230.epw site_zip_code=29706 site_time_zone_utc_offset=-5 -County "SC, Chesterfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500250.epw site_zip_code=29520 site_time_zone_utc_offset=-5 -County "SC, Clarendon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500270.epw site_zip_code=29102 site_time_zone_utc_offset=-5 -County "SC, Colleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500290.epw site_zip_code=29488 site_time_zone_utc_offset=-5 -County "SC, Darlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500310.epw site_zip_code=29550 site_time_zone_utc_offset=-5 -County "SC, Dillon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500330.epw site_zip_code=29536 site_time_zone_utc_offset=-5 -County "SC, Dorchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500350.epw site_zip_code=29485 site_time_zone_utc_offset=-5 -County "SC, Edgefield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500370.epw site_zip_code=29860 site_time_zone_utc_offset=-5 -County "SC, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500390.epw site_zip_code=29180 site_time_zone_utc_offset=-5 -County "SC, Florence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500410.epw site_zip_code=29501 site_time_zone_utc_offset=-5 -County "SC, Georgetown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500430.epw site_zip_code=29440 site_time_zone_utc_offset=-5 -County "SC, Greenville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500450.epw site_zip_code=29681 site_time_zone_utc_offset=-5 -County "SC, Greenwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500470.epw site_zip_code=29649 site_time_zone_utc_offset=-5 -County "SC, Hampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500490.epw site_zip_code=29918 site_time_zone_utc_offset=-5 -County "SC, Horry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500510.epw site_zip_code=29579 site_time_zone_utc_offset=-5 -County "SC, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500530.epw site_zip_code=29936 site_time_zone_utc_offset=-5 -County "SC, Kershaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500550.epw site_zip_code=29020 site_time_zone_utc_offset=-5 -County "SC, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500570.epw site_zip_code=29720 site_time_zone_utc_offset=-5 -County "SC, Laurens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500590.epw site_zip_code=29360 site_time_zone_utc_offset=-5 -County "SC, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500610.epw site_zip_code=29010 site_time_zone_utc_offset=-5 -County "SC, Lexington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500630.epw site_zip_code=29072 site_time_zone_utc_offset=-5 -County "SC, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500670.epw site_zip_code=29571 site_time_zone_utc_offset=-5 -County "SC, Marlboro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500690.epw site_zip_code=29512 site_time_zone_utc_offset=-5 -County "SC, McCormick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500650.epw site_zip_code=29835 site_time_zone_utc_offset=-5 -County "SC, Newberry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500710.epw site_zip_code=29108 site_time_zone_utc_offset=-5 -County "SC, Oconee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500730.epw site_zip_code=29678 site_time_zone_utc_offset=-5 -County "SC, Orangeburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500750.epw site_zip_code=29115 site_time_zone_utc_offset=-5 -County "SC, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500770.epw site_zip_code=29640 site_time_zone_utc_offset=-5 -County "SC, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500790.epw site_zip_code=29223 site_time_zone_utc_offset=-5 -County "SC, Saluda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500810.epw site_zip_code=29138 site_time_zone_utc_offset=-5 -County "SC, Spartanburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500830.epw site_zip_code=29301 site_time_zone_utc_offset=-5 -County "SC, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500850.epw site_zip_code=29150 site_time_zone_utc_offset=-5 -County "SC, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500870.epw site_zip_code=29379 site_time_zone_utc_offset=-5 -County "SC, Williamsburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500890.epw site_zip_code=29556 site_time_zone_utc_offset=-5 -County "SC, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500910.epw site_zip_code=29732 site_time_zone_utc_offset=-5 -County "SD, Aurora County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600030.epw site_zip_code=57368 site_time_zone_utc_offset=-6 -County "SD, Beadle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600050.epw site_zip_code=57350 site_time_zone_utc_offset=-6 -County "SD, Bennett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600070.epw site_zip_code=57551 site_time_zone_utc_offset=-7 -County "SD, Bon Homme County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600090.epw site_zip_code=57066 site_time_zone_utc_offset=-6 -County "SD, Brookings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600110.epw site_zip_code=57006 site_time_zone_utc_offset=-6 -County "SD, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600130.epw site_zip_code=57401 site_time_zone_utc_offset=-6 -County "SD, Brule County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600150.epw site_zip_code=57325 site_time_zone_utc_offset=-6 -County "SD, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600170.epw site_zip_code=57341 site_time_zone_utc_offset=-6 -County "SD, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600190.epw site_zip_code=57717 site_time_zone_utc_offset=-7 -County "SD, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600210.epw site_zip_code=57632 site_time_zone_utc_offset=-6 -County "SD, Charles Mix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600230.epw site_zip_code=57380 site_time_zone_utc_offset=-6 -County "SD, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600250.epw site_zip_code=57225 site_time_zone_utc_offset=-6 -County "SD, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600270.epw site_zip_code=57069 site_time_zone_utc_offset=-6 -County "SD, Codington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600290.epw site_zip_code=57201 site_time_zone_utc_offset=-6 -County "SD, Corson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600310.epw site_zip_code=57642 site_time_zone_utc_offset=-7 -County "SD, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600330.epw site_zip_code=57730 site_time_zone_utc_offset=-7 -County "SD, Davison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600350.epw site_zip_code=57301 site_time_zone_utc_offset=-6 -County "SD, Day County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600370.epw site_zip_code=57274 site_time_zone_utc_offset=-6 -County "SD, Deuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600390.epw site_zip_code=57226 site_time_zone_utc_offset=-6 -County "SD, Dewey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600410.epw site_zip_code=57625 site_time_zone_utc_offset=-7 -County "SD, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600430.epw site_zip_code=57328 site_time_zone_utc_offset=-6 -County "SD, Edmunds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600450.epw site_zip_code=57451 site_time_zone_utc_offset=-6 -County "SD, Fall River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600470.epw site_zip_code=57747 site_time_zone_utc_offset=-7 -County "SD, Faulk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600490.epw site_zip_code=57438 site_time_zone_utc_offset=-6 -County "SD, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600510.epw site_zip_code=57252 site_time_zone_utc_offset=-6 -County "SD, Gregory County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600530.epw site_zip_code=57533 site_time_zone_utc_offset=-6 -County "SD, Haakon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600550.epw site_zip_code=57552 site_time_zone_utc_offset=-7 -County "SD, Hamlin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600570.epw site_zip_code=57223 site_time_zone_utc_offset=-6 -County "SD, Hand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600590.epw site_zip_code=57362 site_time_zone_utc_offset=-6 -County "SD, Hanson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600610.epw site_zip_code=57311 site_time_zone_utc_offset=-6 -County "SD, Harding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600630.epw site_zip_code=57720 site_time_zone_utc_offset=-7 -County "SD, Hughes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600650.epw site_zip_code=57501 site_time_zone_utc_offset=-6 -County "SD, Hutchinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600670.epw site_zip_code=57366 site_time_zone_utc_offset=-6 -County "SD, Hyde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600690.epw site_zip_code=57345 site_time_zone_utc_offset=-6 -County "SD, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600710.epw site_zip_code=57543 site_time_zone_utc_offset=-7 -County "SD, Jerauld County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600730.epw site_zip_code=57382 site_time_zone_utc_offset=-6 -County "SD, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600750.epw site_zip_code=57559 site_time_zone_utc_offset=-6 -County "SD, Kingsbury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600770.epw site_zip_code=57231 site_time_zone_utc_offset=-6 -County "SD, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600790.epw site_zip_code=57042 site_time_zone_utc_offset=-6 -County "SD, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600810.epw site_zip_code=57783 site_time_zone_utc_offset=-7 -County "SD, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600830.epw site_zip_code=57108 site_time_zone_utc_offset=-6 -County "SD, Lyman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600850.epw site_zip_code=57569 site_time_zone_utc_offset=-6 -County "SD, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600910.epw site_zip_code=57430 site_time_zone_utc_offset=-6 -County "SD, McCook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600870.epw site_zip_code=57058 site_time_zone_utc_offset=-6 -County "SD, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600890.epw site_zip_code=57437 site_time_zone_utc_offset=-6 -County "SD, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600930.epw site_zip_code=57785 site_time_zone_utc_offset=-7 -County "SD, Mellette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600950.epw site_zip_code=57579 site_time_zone_utc_offset=-6 -County "SD, Miner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600970.epw site_zip_code=57349 site_time_zone_utc_offset=-6 -County "SD, Minnehaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600990.epw site_zip_code=57106 site_time_zone_utc_offset=-6 -County "SD, Moody County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601010.epw site_zip_code=57028 site_time_zone_utc_offset=-6 -County "SD, Oglala Lakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601020.epw site_zip_code=57770 site_time_zone_utc_offset=-7 -County "SD, Pennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601030.epw site_zip_code=57701 site_time_zone_utc_offset=-7 -County "SD, Perkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601050.epw site_zip_code=57638 site_time_zone_utc_offset=-7 -County "SD, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601070.epw site_zip_code=57442 site_time_zone_utc_offset=-6 -County "SD, Roberts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601090.epw site_zip_code=57262 site_time_zone_utc_offset=-6 -County "SD, Sanborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601110.epw site_zip_code=57385 site_time_zone_utc_offset=-6 -County "SD, Spink County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601150.epw site_zip_code=57469 site_time_zone_utc_offset=-6 -County "SD, Stanley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601170.epw site_zip_code=57532 site_time_zone_utc_offset=-7 -County "SD, Sully County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601190.epw site_zip_code=57564 site_time_zone_utc_offset=-6 -County "SD, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601210.epw site_zip_code=57555 site_time_zone_utc_offset=-6 -County "SD, Tripp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601230.epw site_zip_code=57580 site_time_zone_utc_offset=-6 -County "SD, Turner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601250.epw site_zip_code=57053 site_time_zone_utc_offset=-6 -County "SD, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601270.epw site_zip_code=57049 site_time_zone_utc_offset=-6 -County "SD, Walworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601290.epw site_zip_code=57601 site_time_zone_utc_offset=-6 -County "SD, Yankton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601350.epw site_zip_code=57078 site_time_zone_utc_offset=-6 -County "SD, Ziebach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601370.epw site_zip_code=57623 site_time_zone_utc_offset=-7 -County "TN, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700010.epw site_zip_code=37830 site_time_zone_utc_offset=-5 -County "TN, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700030.epw site_zip_code=37160 site_time_zone_utc_offset=-6 -County "TN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700050.epw site_zip_code=38320 site_time_zone_utc_offset=-6 -County "TN, Bledsoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700070.epw site_zip_code=37367 site_time_zone_utc_offset=-6 -County "TN, Blount County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700090.epw site_zip_code=37803 site_time_zone_utc_offset=-5 -County "TN, Bradley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700110.epw site_zip_code=37312 site_time_zone_utc_offset=-5 -County "TN, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700130.epw site_zip_code=37766 site_time_zone_utc_offset=-5 -County "TN, Cannon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700150.epw site_zip_code=37190 site_time_zone_utc_offset=-6 -County "TN, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700170.epw site_zip_code=38344 site_time_zone_utc_offset=-6 -County "TN, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700190.epw site_zip_code=37643 site_time_zone_utc_offset=-5 -County "TN, Cheatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700210.epw site_zip_code=37015 site_time_zone_utc_offset=-6 -County "TN, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700230.epw site_zip_code=38340 site_time_zone_utc_offset=-6 -County "TN, Claiborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700250.epw site_zip_code=37879 site_time_zone_utc_offset=-5 -County "TN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700270.epw site_zip_code=38551 site_time_zone_utc_offset=-6 -County "TN, Cocke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700290.epw site_zip_code=37821 site_time_zone_utc_offset=-5 -County "TN, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700310.epw site_zip_code=37355 site_time_zone_utc_offset=-6 -County "TN, Crockett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700330.epw site_zip_code=38006 site_time_zone_utc_offset=-6 -County "TN, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700350.epw site_zip_code=38555 site_time_zone_utc_offset=-6 -County "TN, Davidson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700370.epw site_zip_code=37013 site_time_zone_utc_offset=-6 -County "TN, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700410.epw site_zip_code=37166 site_time_zone_utc_offset=-6 -County "TN, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700390.epw site_zip_code=38363 site_time_zone_utc_offset=-6 -County "TN, Dickson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700430.epw site_zip_code=37055 site_time_zone_utc_offset=-6 -County "TN, Dyer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700450.epw site_zip_code=38024 site_time_zone_utc_offset=-6 -County "TN, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700470.epw site_zip_code=38060 site_time_zone_utc_offset=-6 -County "TN, Fentress County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700490.epw site_zip_code=38556 site_time_zone_utc_offset=-6 -County "TN, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700510.epw site_zip_code=37398 site_time_zone_utc_offset=-6 -County "TN, Gibson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700530.epw site_zip_code=38343 site_time_zone_utc_offset=-6 -County "TN, Giles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700550.epw site_zip_code=38478 site_time_zone_utc_offset=-6 -County "TN, Grainger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700570.epw site_zip_code=37861 site_time_zone_utc_offset=-5 -County "TN, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700590.epw site_zip_code=37743 site_time_zone_utc_offset=-5 -County "TN, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700610.epw site_zip_code=37387 site_time_zone_utc_offset=-6 -County "TN, Hamblen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700630.epw site_zip_code=37814 site_time_zone_utc_offset=-5 -County "TN, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700650.epw site_zip_code=37421 site_time_zone_utc_offset=-5 -County "TN, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700670.epw site_zip_code=37869 site_time_zone_utc_offset=-5 -County "TN, Hardeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700690.epw site_zip_code=38008 site_time_zone_utc_offset=-6 -County "TN, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700710.epw site_zip_code=38372 site_time_zone_utc_offset=-6 -County "TN, Hawkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700730.epw site_zip_code=37857 site_time_zone_utc_offset=-5 -County "TN, Haywood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700750.epw site_zip_code=38012 site_time_zone_utc_offset=-6 -County "TN, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700770.epw site_zip_code=38351 site_time_zone_utc_offset=-6 -County "TN, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700790.epw site_zip_code=38242 site_time_zone_utc_offset=-6 -County "TN, Hickman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700810.epw site_zip_code=37033 site_time_zone_utc_offset=-6 -County "TN, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700830.epw site_zip_code=37061 site_time_zone_utc_offset=-6 -County "TN, Humphreys County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700850.epw site_zip_code=37185 site_time_zone_utc_offset=-6 -County "TN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700870.epw site_zip_code=38562 site_time_zone_utc_offset=-6 -County "TN, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700890.epw site_zip_code=37725 site_time_zone_utc_offset=-5 -County "TN, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700910.epw site_zip_code=37683 site_time_zone_utc_offset=-5 -County "TN, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700930.epw site_zip_code=37920 site_time_zone_utc_offset=-5 -County "TN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700950.epw site_zip_code=38079 site_time_zone_utc_offset=-6 -County "TN, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700970.epw site_zip_code=38063 site_time_zone_utc_offset=-6 -County "TN, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700990.epw site_zip_code=38464 site_time_zone_utc_offset=-6 -County "TN, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701010.epw site_zip_code=38462 site_time_zone_utc_offset=-6 -County "TN, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701030.epw site_zip_code=37334 site_time_zone_utc_offset=-6 -County "TN, Loudon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701050.epw site_zip_code=37774 site_time_zone_utc_offset=-5 -County "TN, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701110.epw site_zip_code=37083 site_time_zone_utc_offset=-6 -County "TN, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701130.epw site_zip_code=38305 site_time_zone_utc_offset=-6 -County "TN, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701150.epw site_zip_code=37397 site_time_zone_utc_offset=-6 -County "TN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701170.epw site_zip_code=37091 site_time_zone_utc_offset=-6 -County "TN, Maury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701190.epw site_zip_code=38401 site_time_zone_utc_offset=-6 -County "TN, McMinn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701070.epw site_zip_code=37303 site_time_zone_utc_offset=-5 -County "TN, McNairy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701090.epw site_zip_code=38375 site_time_zone_utc_offset=-6 -County "TN, Meigs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701210.epw site_zip_code=37322 site_time_zone_utc_offset=-5 -County "TN, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701230.epw site_zip_code=37354 site_time_zone_utc_offset=-5 -County "TN, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701250.epw site_zip_code=37042 site_time_zone_utc_offset=-6 -County "TN, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701270.epw site_zip_code=37352 site_time_zone_utc_offset=-6 -County "TN, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701290.epw site_zip_code=37887 site_time_zone_utc_offset=-5 -County "TN, Obion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701310.epw site_zip_code=38261 site_time_zone_utc_offset=-6 -County "TN, Overton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701330.epw site_zip_code=38570 site_time_zone_utc_offset=-6 -County "TN, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701350.epw site_zip_code=37096 site_time_zone_utc_offset=-6 -County "TN, Pickett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701370.epw site_zip_code=38549 site_time_zone_utc_offset=-6 -County "TN, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701390.epw site_zip_code=37307 site_time_zone_utc_offset=-5 -County "TN, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701410.epw site_zip_code=38501 site_time_zone_utc_offset=-6 -County "TN, Rhea County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701430.epw site_zip_code=37321 site_time_zone_utc_offset=-5 -County "TN, Roane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701450.epw site_zip_code=37748 site_time_zone_utc_offset=-5 -County "TN, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701470.epw site_zip_code=37172 site_time_zone_utc_offset=-6 -County "TN, Rutherford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701490.epw site_zip_code=37128 site_time_zone_utc_offset=-6 -County "TN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701510.epw site_zip_code=37841 site_time_zone_utc_offset=-5 -County "TN, Sequatchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701530.epw site_zip_code=37327 site_time_zone_utc_offset=-6 -County "TN, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701550.epw site_zip_code=37876 site_time_zone_utc_offset=-5 -County "TN, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701570.epw site_zip_code=38111 site_time_zone_utc_offset=-6 -County "TN, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701590.epw site_zip_code=37030 site_time_zone_utc_offset=-6 -County "TN, Stewart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701610.epw site_zip_code=37058 site_time_zone_utc_offset=-6 -County "TN, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701630.epw site_zip_code=37660 site_time_zone_utc_offset=-5 -County "TN, Sumner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701650.epw site_zip_code=37075 site_time_zone_utc_offset=-6 -County "TN, Tipton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701670.epw site_zip_code=38019 site_time_zone_utc_offset=-6 -County "TN, Trousdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701690.epw site_zip_code=37074 site_time_zone_utc_offset=-6 -County "TN, Unicoi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701710.epw site_zip_code=37650 site_time_zone_utc_offset=-5 -County "TN, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701730.epw site_zip_code=37807 site_time_zone_utc_offset=-5 -County "TN, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701750.epw site_zip_code=38585 site_time_zone_utc_offset=-6 -County "TN, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701770.epw site_zip_code=37110 site_time_zone_utc_offset=-6 -County "TN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701790.epw site_zip_code=37604 site_time_zone_utc_offset=-5 -County "TN, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701810.epw site_zip_code=38485 site_time_zone_utc_offset=-6 -County "TN, Weakley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701830.epw site_zip_code=38237 site_time_zone_utc_offset=-6 -County "TN, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701850.epw site_zip_code=38583 site_time_zone_utc_offset=-6 -County "TN, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701870.epw site_zip_code=37064 site_time_zone_utc_offset=-6 -County "TN, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701890.epw site_zip_code=37122 site_time_zone_utc_offset=-6 -County "TX, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800010.epw site_zip_code=75803 site_time_zone_utc_offset=-6 -County "TX, Andrews County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800030.epw site_zip_code=79714 site_time_zone_utc_offset=-6 -County "TX, Angelina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800050.epw site_zip_code=75904 site_time_zone_utc_offset=-6 -County "TX, Aransas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800070.epw site_zip_code=78382 site_time_zone_utc_offset=-6 -County "TX, Archer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800090.epw site_zip_code=76310 site_time_zone_utc_offset=-6 -County "TX, Armstrong County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800110.epw site_zip_code=79019 site_time_zone_utc_offset=-6 -County "TX, Atascosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800130.epw site_zip_code=78064 site_time_zone_utc_offset=-6 -County "TX, Austin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800150.epw site_zip_code=77474 site_time_zone_utc_offset=-6 -County "TX, Bailey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800170.epw site_zip_code=79347 site_time_zone_utc_offset=-6 -County "TX, Bandera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800190.epw site_zip_code=78003 site_time_zone_utc_offset=-6 -County "TX, Bastrop County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800210.epw site_zip_code=78602 site_time_zone_utc_offset=-6 -County "TX, Baylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800230.epw site_zip_code=76380 site_time_zone_utc_offset=-6 -County "TX, Bee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800250.epw site_zip_code=78102 site_time_zone_utc_offset=-6 -County "TX, Bell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800270.epw site_zip_code=76502 site_time_zone_utc_offset=-6 -County "TX, Bexar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800290.epw site_zip_code=78245 site_time_zone_utc_offset=-6 -County "TX, Blanco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800310.epw site_zip_code=78606 site_time_zone_utc_offset=-6 -County "TX, Borden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800330.epw site_zip_code=79351 site_time_zone_utc_offset=-6 -County "TX, Bosque County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800350.epw site_zip_code=76634 site_time_zone_utc_offset=-6 -County "TX, Bowie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800370.epw site_zip_code=75501 site_time_zone_utc_offset=-6 -County "TX, Brazoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800390.epw site_zip_code=77584 site_time_zone_utc_offset=-6 -County "TX, Brazos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800410.epw site_zip_code=77845 site_time_zone_utc_offset=-6 -County "TX, Brewster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800430.epw site_zip_code=79830 site_time_zone_utc_offset=-6 -County "TX, Briscoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800450.epw site_zip_code=79257 site_time_zone_utc_offset=-6 -County "TX, Brooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800470.epw site_zip_code=78355 site_time_zone_utc_offset=-6 -County "TX, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800490.epw site_zip_code=76801 site_time_zone_utc_offset=-6 -County "TX, Burleson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800510.epw site_zip_code=77836 site_time_zone_utc_offset=-6 -County "TX, Burnet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800530.epw site_zip_code=78654 site_time_zone_utc_offset=-6 -County "TX, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800550.epw site_zip_code=78644 site_time_zone_utc_offset=-6 -County "TX, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800570.epw site_zip_code=77979 site_time_zone_utc_offset=-6 -County "TX, Callahan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800590.epw site_zip_code=79510 site_time_zone_utc_offset=-6 -County "TX, Cameron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800610.epw site_zip_code=78521 site_time_zone_utc_offset=-6 -County "TX, Camp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800630.epw site_zip_code=75686 site_time_zone_utc_offset=-6 -County "TX, Carson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800650.epw site_zip_code=79068 site_time_zone_utc_offset=-6 -County "TX, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800670.epw site_zip_code=75551 site_time_zone_utc_offset=-6 -County "TX, Castro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800690.epw site_zip_code=79027 site_time_zone_utc_offset=-6 -County "TX, Chambers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800710.epw site_zip_code=77523 site_time_zone_utc_offset=-6 -County "TX, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800730.epw site_zip_code=75766 site_time_zone_utc_offset=-6 -County "TX, Childress County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800750.epw site_zip_code=79201 site_time_zone_utc_offset=-6 -County "TX, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800770.epw site_zip_code=76365 site_time_zone_utc_offset=-6 -County "TX, Cochran County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800790.epw site_zip_code=79346 site_time_zone_utc_offset=-6 -County "TX, Coke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800810.epw site_zip_code=76945 site_time_zone_utc_offset=-6 -County "TX, Coleman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800830.epw site_zip_code=76834 site_time_zone_utc_offset=-6 -County "TX, Collin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800850.epw site_zip_code=75035 site_time_zone_utc_offset=-6 -County "TX, Collingsworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800870.epw site_zip_code=79095 site_time_zone_utc_offset=-6 -County "TX, Colorado County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800890.epw site_zip_code=78934 site_time_zone_utc_offset=-6 -County "TX, Comal County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800910.epw site_zip_code=78130 site_time_zone_utc_offset=-6 -County "TX, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800930.epw site_zip_code=76442 site_time_zone_utc_offset=-6 -County "TX, Concho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800950.epw site_zip_code=76837 site_time_zone_utc_offset=-6 -County "TX, Cooke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800970.epw site_zip_code=76240 site_time_zone_utc_offset=-6 -County "TX, Coryell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800990.epw site_zip_code=76522 site_time_zone_utc_offset=-6 -County "TX, Cottle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801010.epw site_zip_code=79248 site_time_zone_utc_offset=-6 -County "TX, Crane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801030.epw site_zip_code=79731 site_time_zone_utc_offset=-6 -County "TX, Crockett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801050.epw site_zip_code=76943 site_time_zone_utc_offset=-6 -County "TX, Crosby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801070.epw site_zip_code=79322 site_time_zone_utc_offset=-6 -County "TX, Culberson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801090.epw site_zip_code=79847 site_time_zone_utc_offset=-6 -County "TX, Dallam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801110.epw site_zip_code=79022 site_time_zone_utc_offset=-6 -County "TX, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801130.epw site_zip_code=75243 site_time_zone_utc_offset=-6 -County "TX, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801150.epw site_zip_code=79331 site_time_zone_utc_offset=-6 -County "TX, DeWitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801230.epw site_zip_code=77954 site_time_zone_utc_offset=-6 -County "TX, Deaf Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801170.epw site_zip_code=79045 site_time_zone_utc_offset=-6 -County "TX, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801190.epw site_zip_code=75432 site_time_zone_utc_offset=-6 -County "TX, Denton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801210.epw site_zip_code=75056 site_time_zone_utc_offset=-6 -County "TX, Dickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801250.epw site_zip_code=79370 site_time_zone_utc_offset=-6 -County "TX, Dimmit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801270.epw site_zip_code=78834 site_time_zone_utc_offset=-6 -County "TX, Donley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801290.epw site_zip_code=79226 site_time_zone_utc_offset=-6 -County "TX, Duval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801310.epw site_zip_code=78384 site_time_zone_utc_offset=-6 -County "TX, Eastland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801330.epw site_zip_code=76437 site_time_zone_utc_offset=-6 -County "TX, Ector County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801350.epw site_zip_code=79762 site_time_zone_utc_offset=-6 -County "TX, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801370.epw site_zip_code=78880 site_time_zone_utc_offset=-6 -County "TX, El Paso County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801410.epw site_zip_code=79936 site_time_zone_utc_offset=-7 -County "TX, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801390.epw site_zip_code=75165 site_time_zone_utc_offset=-6 -County "TX, Erath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801430.epw site_zip_code=76401 site_time_zone_utc_offset=-6 -County "TX, Falls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801450.epw site_zip_code=76661 site_time_zone_utc_offset=-6 -County "TX, Fannin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801470.epw site_zip_code=75418 site_time_zone_utc_offset=-6 -County "TX, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801490.epw site_zip_code=78945 site_time_zone_utc_offset=-6 -County "TX, Fisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801510.epw site_zip_code=79546 site_time_zone_utc_offset=-6 -County "TX, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801530.epw site_zip_code=79235 site_time_zone_utc_offset=-6 -County "TX, Foard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801550.epw site_zip_code=79227 site_time_zone_utc_offset=-6 -County "TX, Fort Bend County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801570.epw site_zip_code=77494 site_time_zone_utc_offset=-6 -County "TX, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801590.epw site_zip_code=75457 site_time_zone_utc_offset=-6 -County "TX, Freestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801610.epw site_zip_code=75860 site_time_zone_utc_offset=-6 -County "TX, Frio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801630.epw site_zip_code=78061 site_time_zone_utc_offset=-6 -County "TX, Gaines County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801650.epw site_zip_code=79360 site_time_zone_utc_offset=-6 -County "TX, Galveston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801670.epw site_zip_code=77573 site_time_zone_utc_offset=-6 -County "TX, Garza County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801690.epw site_zip_code=79356 site_time_zone_utc_offset=-6 -County "TX, Gillespie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801710.epw site_zip_code=78624 site_time_zone_utc_offset=-6 -County "TX, Glasscock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801730.epw site_zip_code=79739 site_time_zone_utc_offset=-6 -County "TX, Goliad County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801750.epw site_zip_code=77963 site_time_zone_utc_offset=-6 -County "TX, Gonzales County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801770.epw site_zip_code=78629 site_time_zone_utc_offset=-6 -County "TX, Gray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801790.epw site_zip_code=79065 site_time_zone_utc_offset=-6 -County "TX, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801810.epw site_zip_code=75092 site_time_zone_utc_offset=-6 -County "TX, Gregg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801830.epw site_zip_code=75605 site_time_zone_utc_offset=-6 -County "TX, Grimes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801850.epw site_zip_code=77868 site_time_zone_utc_offset=-6 -County "TX, Guadalupe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801870.epw site_zip_code=78155 site_time_zone_utc_offset=-6 -County "TX, Hale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801890.epw site_zip_code=79072 site_time_zone_utc_offset=-6 -County "TX, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801910.epw site_zip_code=79245 site_time_zone_utc_offset=-6 -County "TX, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801930.epw site_zip_code=76531 site_time_zone_utc_offset=-6 -County "TX, Hansford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801950.epw site_zip_code=79081 site_time_zone_utc_offset=-6 -County "TX, Hardeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801970.epw site_zip_code=79252 site_time_zone_utc_offset=-6 -County "TX, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801990.epw site_zip_code=77657 site_time_zone_utc_offset=-6 -County "TX, Harris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802010.epw site_zip_code=77449 site_time_zone_utc_offset=-6 -County "TX, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802030.epw site_zip_code=75672 site_time_zone_utc_offset=-6 -County "TX, Hartley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802050.epw site_zip_code=79022 site_time_zone_utc_offset=-6 -County "TX, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802070.epw site_zip_code=79521 site_time_zone_utc_offset=-6 -County "TX, Hays County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802090.epw site_zip_code=78666 site_time_zone_utc_offset=-6 -County "TX, Hemphill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802110.epw site_zip_code=79014 site_time_zone_utc_offset=-6 -County "TX, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802130.epw site_zip_code=75156 site_time_zone_utc_offset=-6 -County "TX, Hidalgo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802150.epw site_zip_code=78572 site_time_zone_utc_offset=-6 -County "TX, Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802170.epw site_zip_code=76692 site_time_zone_utc_offset=-6 -County "TX, Hockley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802190.epw site_zip_code=79336 site_time_zone_utc_offset=-6 -County "TX, Hood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802210.epw site_zip_code=76048 site_time_zone_utc_offset=-6 -County "TX, Hopkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802230.epw site_zip_code=75482 site_time_zone_utc_offset=-6 -County "TX, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802250.epw site_zip_code=75835 site_time_zone_utc_offset=-6 -County "TX, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802270.epw site_zip_code=79720 site_time_zone_utc_offset=-6 -County "TX, Hudspeth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802290.epw site_zip_code=79839 site_time_zone_utc_offset=-7 -County "TX, Hunt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802310.epw site_zip_code=75401 site_time_zone_utc_offset=-6 -County "TX, Hutchinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802330.epw site_zip_code=79007 site_time_zone_utc_offset=-6 -County "TX, Irion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802350.epw site_zip_code=76941 site_time_zone_utc_offset=-6 -County "TX, Jack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802370.epw site_zip_code=76458 site_time_zone_utc_offset=-6 -County "TX, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802390.epw site_zip_code=77957 site_time_zone_utc_offset=-6 -County "TX, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802410.epw site_zip_code=75951 site_time_zone_utc_offset=-6 -County "TX, Jeff Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802430.epw site_zip_code=79734 site_time_zone_utc_offset=-6 -County "TX, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802450.epw site_zip_code=77642 site_time_zone_utc_offset=-6 -County "TX, Jim Hogg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802470.epw site_zip_code=78361 site_time_zone_utc_offset=-6 -County "TX, Jim Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802490.epw site_zip_code=78332 site_time_zone_utc_offset=-6 -County "TX, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802510.epw site_zip_code=76028 site_time_zone_utc_offset=-6 -County "TX, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802530.epw site_zip_code=79501 site_time_zone_utc_offset=-6 -County "TX, Karnes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802550.epw site_zip_code=78119 site_time_zone_utc_offset=-6 -County "TX, Kaufman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802570.epw site_zip_code=75126 site_time_zone_utc_offset=-6 -County "TX, Kendall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802590.epw site_zip_code=78006 site_time_zone_utc_offset=-6 -County "TX, Kenedy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802610.epw site_zip_code=78385 site_time_zone_utc_offset=-6 -County "TX, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802630.epw site_zip_code=79549 site_time_zone_utc_offset=-6 -County "TX, Kerr County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802650.epw site_zip_code=78028 site_time_zone_utc_offset=-6 -County "TX, Kimble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802670.epw site_zip_code=76849 site_time_zone_utc_offset=-6 -County "TX, King County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802690.epw site_zip_code=79248 site_time_zone_utc_offset=-6 -County "TX, Kinney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802710.epw site_zip_code=78832 site_time_zone_utc_offset=-6 -County "TX, Kleberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802730.epw site_zip_code=78363 site_time_zone_utc_offset=-6 -County "TX, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802750.epw site_zip_code=76371 site_time_zone_utc_offset=-6 -County "TX, La Salle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802830.epw site_zip_code=78014 site_time_zone_utc_offset=-6 -County "TX, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802770.epw site_zip_code=75460 site_time_zone_utc_offset=-6 -County "TX, Lamb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802790.epw site_zip_code=79339 site_time_zone_utc_offset=-6 -County "TX, Lampasas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802810.epw site_zip_code=76550 site_time_zone_utc_offset=-6 -County "TX, Lavaca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802850.epw site_zip_code=77964 site_time_zone_utc_offset=-6 -County "TX, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802870.epw site_zip_code=78942 site_time_zone_utc_offset=-6 -County "TX, Leon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802890.epw site_zip_code=75831 site_time_zone_utc_offset=-6 -County "TX, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802910.epw site_zip_code=77327 site_time_zone_utc_offset=-6 -County "TX, Limestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802930.epw site_zip_code=76667 site_time_zone_utc_offset=-6 -County "TX, Lipscomb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802950.epw site_zip_code=79005 site_time_zone_utc_offset=-6 -County "TX, Live Oak County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802970.epw site_zip_code=78022 site_time_zone_utc_offset=-6 -County "TX, Llano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802990.epw site_zip_code=78657 site_time_zone_utc_offset=-6 -County "TX, Loving County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803010.epw site_zip_code=79754 site_time_zone_utc_offset=-6 -County "TX, Lubbock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803030.epw site_zip_code=79424 site_time_zone_utc_offset=-6 -County "TX, Lynn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803050.epw site_zip_code=79373 site_time_zone_utc_offset=-6 -County "TX, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803130.epw site_zip_code=77864 site_time_zone_utc_offset=-6 -County "TX, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803150.epw site_zip_code=75657 site_time_zone_utc_offset=-6 -County "TX, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803170.epw site_zip_code=79782 site_time_zone_utc_offset=-6 -County "TX, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803190.epw site_zip_code=76856 site_time_zone_utc_offset=-6 -County "TX, Matagorda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803210.epw site_zip_code=77414 site_time_zone_utc_offset=-6 -County "TX, Maverick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803230.epw site_zip_code=78852 site_time_zone_utc_offset=-6 -County "TX, McCulloch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803070.epw site_zip_code=76825 site_time_zone_utc_offset=-6 -County "TX, McLennan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803090.epw site_zip_code=76706 site_time_zone_utc_offset=-6 -County "TX, McMullen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803110.epw site_zip_code=78072 site_time_zone_utc_offset=-6 -County "TX, Medina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803250.epw site_zip_code=78861 site_time_zone_utc_offset=-6 -County "TX, Menard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803270.epw site_zip_code=76859 site_time_zone_utc_offset=-6 -County "TX, Midland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803290.epw site_zip_code=79705 site_time_zone_utc_offset=-6 -County "TX, Milam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803310.epw site_zip_code=76567 site_time_zone_utc_offset=-6 -County "TX, Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803330.epw site_zip_code=76844 site_time_zone_utc_offset=-6 -County "TX, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803350.epw site_zip_code=79512 site_time_zone_utc_offset=-6 -County "TX, Montague County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803370.epw site_zip_code=76230 site_time_zone_utc_offset=-6 -County "TX, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803390.epw site_zip_code=77386 site_time_zone_utc_offset=-6 -County "TX, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803410.epw site_zip_code=79029 site_time_zone_utc_offset=-6 -County "TX, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803430.epw site_zip_code=75638 site_time_zone_utc_offset=-6 -County "TX, Motley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803450.epw site_zip_code=79234 site_time_zone_utc_offset=-6 -County "TX, Nacogdoches County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803470.epw site_zip_code=75964 site_time_zone_utc_offset=-6 -County "TX, Navarro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803490.epw site_zip_code=75110 site_time_zone_utc_offset=-6 -County "TX, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803510.epw site_zip_code=75966 site_time_zone_utc_offset=-6 -County "TX, Nolan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803530.epw site_zip_code=79556 site_time_zone_utc_offset=-6 -County "TX, Nueces County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803550.epw site_zip_code=78414 site_time_zone_utc_offset=-6 -County "TX, Ochiltree County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803570.epw site_zip_code=79070 site_time_zone_utc_offset=-6 -County "TX, Oldham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803590.epw site_zip_code=79092 site_time_zone_utc_offset=-6 -County "TX, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803610.epw site_zip_code=77630 site_time_zone_utc_offset=-6 -County "TX, Palo Pinto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803630.epw site_zip_code=76067 site_time_zone_utc_offset=-6 -County "TX, Panola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803650.epw site_zip_code=75633 site_time_zone_utc_offset=-6 -County "TX, Parker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803670.epw site_zip_code=76087 site_time_zone_utc_offset=-6 -County "TX, Parmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803690.epw site_zip_code=79035 site_time_zone_utc_offset=-6 -County "TX, Pecos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803710.epw site_zip_code=79735 site_time_zone_utc_offset=-6 -County "TX, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803730.epw site_zip_code=77351 site_time_zone_utc_offset=-6 -County "TX, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803750.epw site_zip_code=79107 site_time_zone_utc_offset=-6 -County "TX, Presidio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803770.epw site_zip_code=79845 site_time_zone_utc_offset=-6 -County "TX, Rains County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803790.epw site_zip_code=75440 site_time_zone_utc_offset=-6 -County "TX, Randall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803810.epw site_zip_code=79109 site_time_zone_utc_offset=-6 -County "TX, Reagan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803830.epw site_zip_code=76932 site_time_zone_utc_offset=-6 -County "TX, Real County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803850.epw site_zip_code=78873 site_time_zone_utc_offset=-6 -County "TX, Red River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803870.epw site_zip_code=75426 site_time_zone_utc_offset=-6 -County "TX, Reeves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803890.epw site_zip_code=79772 site_time_zone_utc_offset=-6 -County "TX, Refugio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803910.epw site_zip_code=78377 site_time_zone_utc_offset=-6 -County "TX, Roberts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803930.epw site_zip_code=79059 site_time_zone_utc_offset=-6 -County "TX, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803950.epw site_zip_code=77859 site_time_zone_utc_offset=-6 -County "TX, Rockwall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803970.epw site_zip_code=75087 site_time_zone_utc_offset=-6 -County "TX, Runnels County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803990.epw site_zip_code=76821 site_time_zone_utc_offset=-6 -County "TX, Rusk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804010.epw site_zip_code=75652 site_time_zone_utc_offset=-6 -County "TX, Sabine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804030.epw site_zip_code=75948 site_time_zone_utc_offset=-6 -County "TX, San Augustine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804050.epw site_zip_code=75972 site_time_zone_utc_offset=-6 -County "TX, San Jacinto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804070.epw site_zip_code=77331 site_time_zone_utc_offset=-6 -County "TX, San Patricio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804090.epw site_zip_code=78374 site_time_zone_utc_offset=-6 -County "TX, San Saba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804110.epw site_zip_code=76877 site_time_zone_utc_offset=-6 -County "TX, Schleicher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804130.epw site_zip_code=76936 site_time_zone_utc_offset=-6 -County "TX, Scurry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804150.epw site_zip_code=79549 site_time_zone_utc_offset=-6 -County "TX, Shackelford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804170.epw site_zip_code=76430 site_time_zone_utc_offset=-6 -County "TX, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804190.epw site_zip_code=75935 site_time_zone_utc_offset=-6 -County "TX, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804210.epw site_zip_code=79084 site_time_zone_utc_offset=-6 -County "TX, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804230.epw site_zip_code=75703 site_time_zone_utc_offset=-6 -County "TX, Somervell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804250.epw site_zip_code=76043 site_time_zone_utc_offset=-6 -County "TX, Starr County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804270.epw site_zip_code=78582 site_time_zone_utc_offset=-6 -County "TX, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804290.epw site_zip_code=76424 site_time_zone_utc_offset=-6 -County "TX, Sterling County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804310.epw site_zip_code=76951 site_time_zone_utc_offset=-6 -County "TX, Stonewall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804330.epw site_zip_code=79502 site_time_zone_utc_offset=-6 -County "TX, Sutton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804350.epw site_zip_code=76950 site_time_zone_utc_offset=-6 -County "TX, Swisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804370.epw site_zip_code=79088 site_time_zone_utc_offset=-6 -County "TX, Tarrant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804390.epw site_zip_code=76244 site_time_zone_utc_offset=-6 -County "TX, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804410.epw site_zip_code=79605 site_time_zone_utc_offset=-6 -County "TX, Terrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804430.epw site_zip_code=78851 site_time_zone_utc_offset=-6 -County "TX, Terry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804450.epw site_zip_code=79316 site_time_zone_utc_offset=-6 -County "TX, Throckmorton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804470.epw site_zip_code=76483 site_time_zone_utc_offset=-6 -County "TX, Titus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804490.epw site_zip_code=75455 site_time_zone_utc_offset=-6 -County "TX, Tom Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804510.epw site_zip_code=76904 site_time_zone_utc_offset=-6 -County "TX, Travis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804530.epw site_zip_code=78660 site_time_zone_utc_offset=-6 -County "TX, Trinity County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804550.epw site_zip_code=75862 site_time_zone_utc_offset=-6 -County "TX, Tyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804570.epw site_zip_code=75979 site_time_zone_utc_offset=-6 -County "TX, Upshur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804590.epw site_zip_code=75644 site_time_zone_utc_offset=-6 -County "TX, Upton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804610.epw site_zip_code=79778 site_time_zone_utc_offset=-6 -County "TX, Uvalde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804630.epw site_zip_code=78801 site_time_zone_utc_offset=-6 -County "TX, Val Verde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804650.epw site_zip_code=78840 site_time_zone_utc_offset=-6 -County "TX, Van Zandt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804670.epw site_zip_code=75103 site_time_zone_utc_offset=-6 -County "TX, Victoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804690.epw site_zip_code=77901 site_time_zone_utc_offset=-6 -County "TX, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804710.epw site_zip_code=77340 site_time_zone_utc_offset=-6 -County "TX, Waller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804730.epw site_zip_code=77423 site_time_zone_utc_offset=-6 -County "TX, Ward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804750.epw site_zip_code=79756 site_time_zone_utc_offset=-6 -County "TX, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804770.epw site_zip_code=77833 site_time_zone_utc_offset=-6 -County "TX, Webb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804790.epw site_zip_code=78045 site_time_zone_utc_offset=-6 -County "TX, Wharton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804810.epw site_zip_code=77437 site_time_zone_utc_offset=-6 -County "TX, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804830.epw site_zip_code=79079 site_time_zone_utc_offset=-6 -County "TX, Wichita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804850.epw site_zip_code=76311 site_time_zone_utc_offset=-6 -County "TX, Wilbarger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804870.epw site_zip_code=76384 site_time_zone_utc_offset=-6 -County "TX, Willacy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804890.epw site_zip_code=78580 site_time_zone_utc_offset=-6 -County "TX, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804910.epw site_zip_code=78641 site_time_zone_utc_offset=-6 -County "TX, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804930.epw site_zip_code=78114 site_time_zone_utc_offset=-6 -County "TX, Winkler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804950.epw site_zip_code=79745 site_time_zone_utc_offset=-6 -County "TX, Wise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804970.epw site_zip_code=76234 site_time_zone_utc_offset=-6 -County "TX, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804990.epw site_zip_code=75773 site_time_zone_utc_offset=-6 -County "TX, Yoakum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805010.epw site_zip_code=79323 site_time_zone_utc_offset=-6 -County "TX, Young County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805030.epw site_zip_code=76450 site_time_zone_utc_offset=-6 -County "TX, Zapata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805050.epw site_zip_code=78076 site_time_zone_utc_offset=-6 -County "TX, Zavala County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805070.epw site_zip_code=78839 site_time_zone_utc_offset=-6 -County "UT, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900010.epw site_zip_code=84713 site_time_zone_utc_offset=-7 -County "UT, Box Elder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900030.epw site_zip_code=84302 site_time_zone_utc_offset=-7 -County "UT, Cache County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900050.epw site_zip_code=84321 site_time_zone_utc_offset=-7 -County "UT, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900070.epw site_zip_code=84501 site_time_zone_utc_offset=-7 -County "UT, Daggett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900090.epw site_zip_code=84046 site_time_zone_utc_offset=-7 -County "UT, Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900110.epw site_zip_code=84015 site_time_zone_utc_offset=-7 -County "UT, Duchesne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900130.epw site_zip_code=84066 site_time_zone_utc_offset=-7 -County "UT, Emery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900150.epw site_zip_code=84528 site_time_zone_utc_offset=-7 -County "UT, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900170.epw site_zip_code=84726 site_time_zone_utc_offset=-7 -County "UT, Grand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900190.epw site_zip_code=84532 site_time_zone_utc_offset=-7 -County "UT, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900210.epw site_zip_code=84721 site_time_zone_utc_offset=-7 -County "UT, Juab County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900230.epw site_zip_code=84648 site_time_zone_utc_offset=-7 -County "UT, Kane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900250.epw site_zip_code=84741 site_time_zone_utc_offset=-7 -County "UT, Millard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900270.epw site_zip_code=84624 site_time_zone_utc_offset=-7 -County "UT, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900290.epw site_zip_code=84050 site_time_zone_utc_offset=-7 -County "UT, Piute County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900310.epw site_zip_code=84750 site_time_zone_utc_offset=-7 -County "UT, Rich County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900330.epw site_zip_code=84028 site_time_zone_utc_offset=-7 -County "UT, Salt Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900350.epw site_zip_code=84096 site_time_zone_utc_offset=-7 -County "UT, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900370.epw site_zip_code=84511 site_time_zone_utc_offset=-7 -County "UT, Sanpete County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900390.epw site_zip_code=84627 site_time_zone_utc_offset=-7 -County "UT, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900410.epw site_zip_code=84701 site_time_zone_utc_offset=-7 -County "UT, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900430.epw site_zip_code=84098 site_time_zone_utc_offset=-7 -County "UT, Tooele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900450.epw site_zip_code=84074 site_time_zone_utc_offset=-7 -County "UT, Uintah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900470.epw site_zip_code=84078 site_time_zone_utc_offset=-7 -County "UT, Utah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900490.epw site_zip_code=84043 site_time_zone_utc_offset=-7 -County "UT, Wasatch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900510.epw site_zip_code=84032 site_time_zone_utc_offset=-7 -County "UT, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900530.epw site_zip_code=84770 site_time_zone_utc_offset=-7 -County "UT, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900550.epw site_zip_code=84775 site_time_zone_utc_offset=-7 -County "UT, Weber County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900570.epw site_zip_code=84404 site_time_zone_utc_offset=-7 -County "VA, Accomack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100010.epw site_zip_code=23336 site_time_zone_utc_offset=-5 -County "VA, Albemarle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100030.epw site_zip_code=22901 site_time_zone_utc_offset=-5 -County "VA, Alexandria city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105100.epw site_zip_code=22304 site_time_zone_utc_offset=-5 -County "VA, Alleghany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100050.epw site_zip_code=24426 site_time_zone_utc_offset=-5 -County "VA, Amelia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100070.epw site_zip_code=23002 site_time_zone_utc_offset=-5 -County "VA, Amherst County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100090.epw site_zip_code=24572 site_time_zone_utc_offset=-5 -County "VA, Appomattox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100110.epw site_zip_code=24522 site_time_zone_utc_offset=-5 -County "VA, Arlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100130.epw site_zip_code=22204 site_time_zone_utc_offset=-5 -County "VA, Augusta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100150.epw site_zip_code=24401 site_time_zone_utc_offset=-5 -County "VA, Bath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100170.epw site_zip_code=24460 site_time_zone_utc_offset=-5 -County "VA, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100190.epw site_zip_code=24551 site_time_zone_utc_offset=-5 -County "VA, Bland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100210.epw site_zip_code=24315 site_time_zone_utc_offset=-5 -County "VA, Botetourt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100230.epw site_zip_code=24175 site_time_zone_utc_offset=-5 -County "VA, Bristol city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105200.epw site_zip_code=24201 site_time_zone_utc_offset=-5 -County "VA, Brunswick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100250.epw site_zip_code=23868 site_time_zone_utc_offset=-5 -County "VA, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100270.epw site_zip_code=24614 site_time_zone_utc_offset=-5 -County "VA, Buckingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100290.epw site_zip_code=23936 site_time_zone_utc_offset=-5 -County "VA, Buena Vista city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105300.epw site_zip_code=24416 site_time_zone_utc_offset=-5 -County "VA, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100310.epw site_zip_code=24502 site_time_zone_utc_offset=-5 -County "VA, Caroline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100330.epw site_zip_code=22546 site_time_zone_utc_offset=-5 -County "VA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100350.epw site_zip_code=24343 site_time_zone_utc_offset=-5 -County "VA, Charles City County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100360.epw site_zip_code=23030 site_time_zone_utc_offset=-5 -County "VA, Charlotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100370.epw site_zip_code=23923 site_time_zone_utc_offset=-5 -County "VA, Charlottesville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105400.epw site_zip_code=22903 site_time_zone_utc_offset=-5 -County "VA, Chesapeake city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105500.epw site_zip_code=23320 site_time_zone_utc_offset=-5 -County "VA, Chesterfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100410.epw site_zip_code=23112 site_time_zone_utc_offset=-5 -County "VA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100430.epw site_zip_code=22611 site_time_zone_utc_offset=-5 -County "VA, Colonial Heights city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105700.epw site_zip_code=23834 site_time_zone_utc_offset=-5 -County "VA, Covington city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105800.epw site_zip_code=24426 site_time_zone_utc_offset=-5 -County "VA, Craig County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100450.epw site_zip_code=24127 site_time_zone_utc_offset=-5 -County "VA, Culpeper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100470.epw site_zip_code=22701 site_time_zone_utc_offset=-5 -County "VA, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100490.epw site_zip_code=23040 site_time_zone_utc_offset=-5 -County "VA, Danville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105900.epw site_zip_code=24541 site_time_zone_utc_offset=-5 -County "VA, Dickenson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100510.epw site_zip_code=24228 site_time_zone_utc_offset=-5 -County "VA, Dinwiddie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100530.epw site_zip_code=23803 site_time_zone_utc_offset=-5 -County "VA, Emporia city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105950.epw site_zip_code=23847 site_time_zone_utc_offset=-5 -County "VA, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100570.epw site_zip_code=22560 site_time_zone_utc_offset=-5 -County "VA, Fairfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100590.epw site_zip_code=20171 site_time_zone_utc_offset=-5 -County "VA, Fairfax city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106000.epw site_zip_code=22030 site_time_zone_utc_offset=-5 -County "VA, Falls Church city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106100.epw site_zip_code=22046 site_time_zone_utc_offset=-5 -County "VA, Fauquier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100610.epw site_zip_code=20187 site_time_zone_utc_offset=-5 -County "VA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100630.epw site_zip_code=24091 site_time_zone_utc_offset=-5 -County "VA, Fluvanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100650.epw site_zip_code=22963 site_time_zone_utc_offset=-5 -County "VA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100670.epw site_zip_code=24151 site_time_zone_utc_offset=-5 -County "VA, Franklin city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106200.epw site_zip_code=23851 site_time_zone_utc_offset=-5 -County "VA, Frederick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100690.epw site_zip_code=22602 site_time_zone_utc_offset=-5 -County "VA, Fredericksburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106300.epw site_zip_code=22401 site_time_zone_utc_offset=-5 -County "VA, Galax city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106400.epw site_zip_code=24333 site_time_zone_utc_offset=-5 -County "VA, Giles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100710.epw site_zip_code=24134 site_time_zone_utc_offset=-5 -County "VA, Gloucester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100730.epw site_zip_code=23061 site_time_zone_utc_offset=-5 -County "VA, Goochland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100750.epw site_zip_code=23103 site_time_zone_utc_offset=-5 -County "VA, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100770.epw site_zip_code=24333 site_time_zone_utc_offset=-5 -County "VA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100790.epw site_zip_code=22968 site_time_zone_utc_offset=-5 -County "VA, Greensville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100810.epw site_zip_code=23847 site_time_zone_utc_offset=-5 -County "VA, Halifax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100830.epw site_zip_code=24592 site_time_zone_utc_offset=-5 -County "VA, Hampton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106500.epw site_zip_code=23666 site_time_zone_utc_offset=-5 -County "VA, Hanover County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100850.epw site_zip_code=23111 site_time_zone_utc_offset=-5 -County "VA, Harrisonburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106600.epw site_zip_code=22801 site_time_zone_utc_offset=-5 -County "VA, Henrico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100870.epw site_zip_code=23228 site_time_zone_utc_offset=-5 -County "VA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100890.epw site_zip_code=24112 site_time_zone_utc_offset=-5 -County "VA, Highland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100910.epw site_zip_code=24465 site_time_zone_utc_offset=-5 -County "VA, Hopewell city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106700.epw site_zip_code=23860 site_time_zone_utc_offset=-5 -County "VA, Isle of Wight County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100930.epw site_zip_code=23430 site_time_zone_utc_offset=-5 -County "VA, James City County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100950.epw site_zip_code=23188 site_time_zone_utc_offset=-5 -County "VA, King George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100990.epw site_zip_code=22485 site_time_zone_utc_offset=-5 -County "VA, King William County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101010.epw site_zip_code=23009 site_time_zone_utc_offset=-5 -County "VA, King and Queen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100970.epw site_zip_code=23156 site_time_zone_utc_offset=-5 -County "VA, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101030.epw site_zip_code=22503 site_time_zone_utc_offset=-5 -County "VA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101050.epw site_zip_code=24263 site_time_zone_utc_offset=-5 -County "VA, Lexington city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106780.epw site_zip_code=24450 site_time_zone_utc_offset=-5 -County "VA, Loudoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101070.epw site_zip_code=20189 site_time_zone_utc_offset=-5 -County "VA, Louisa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101090.epw site_zip_code=23093 site_time_zone_utc_offset=-5 -County "VA, Lunenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101110.epw site_zip_code=23974 site_time_zone_utc_offset=-5 -County "VA, Lynchburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106800.epw site_zip_code=24502 site_time_zone_utc_offset=-5 -County "VA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101130.epw site_zip_code=22727 site_time_zone_utc_offset=-5 -County "VA, Manassas Park city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106850.epw site_zip_code=20111 site_time_zone_utc_offset=-5 -County "VA, Manassas city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106830.epw site_zip_code=20110 site_time_zone_utc_offset=-5 -County "VA, Martinsville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106900.epw site_zip_code=24112 site_time_zone_utc_offset=-5 -County "VA, Mathews County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101150.epw site_zip_code=23109 site_time_zone_utc_offset=-5 -County "VA, Mecklenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101170.epw site_zip_code=23970 site_time_zone_utc_offset=-5 -County "VA, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101190.epw site_zip_code=23043 site_time_zone_utc_offset=-5 -County "VA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101210.epw site_zip_code=24060 site_time_zone_utc_offset=-5 -County "VA, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101250.epw site_zip_code=22967 site_time_zone_utc_offset=-5 -County "VA, New Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101270.epw site_zip_code=23141 site_time_zone_utc_offset=-5 -County "VA, Newport News city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107000.epw site_zip_code=23608 site_time_zone_utc_offset=-5 -County "VA, Norfolk city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107100.epw site_zip_code=23503 site_time_zone_utc_offset=-5 -County "VA, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101310.epw site_zip_code=23310 site_time_zone_utc_offset=-5 -County "VA, Northumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101330.epw site_zip_code=22473 site_time_zone_utc_offset=-5 -County "VA, Norton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107200.epw site_zip_code=24273 site_time_zone_utc_offset=-5 -County "VA, Nottoway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101350.epw site_zip_code=23824 site_time_zone_utc_offset=-5 -County "VA, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101370.epw site_zip_code=22508 site_time_zone_utc_offset=-5 -County "VA, Page County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101390.epw site_zip_code=22835 site_time_zone_utc_offset=-5 -County "VA, Patrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101410.epw site_zip_code=24171 site_time_zone_utc_offset=-5 -County "VA, Petersburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107300.epw site_zip_code=23803 site_time_zone_utc_offset=-5 -County "VA, Pittsylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101430.epw site_zip_code=24540 site_time_zone_utc_offset=-5 -County "VA, Poquoson city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107350.epw site_zip_code=23662 site_time_zone_utc_offset=-5 -County "VA, Portsmouth city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107400.epw site_zip_code=23703 site_time_zone_utc_offset=-5 -County "VA, Powhatan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101450.epw site_zip_code=23139 site_time_zone_utc_offset=-5 -County "VA, Prince Edward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101470.epw site_zip_code=23901 site_time_zone_utc_offset=-5 -County "VA, Prince George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101490.epw site_zip_code=23875 site_time_zone_utc_offset=-5 -County "VA, Prince William County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101530.epw site_zip_code=22191 site_time_zone_utc_offset=-5 -County "VA, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101550.epw site_zip_code=24301 site_time_zone_utc_offset=-5 -County "VA, Radford city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107500.epw site_zip_code=24141 site_time_zone_utc_offset=-5 -County "VA, Rappahannock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101570.epw site_zip_code=20106 site_time_zone_utc_offset=-5 -County "VA, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101590.epw site_zip_code=22572 site_time_zone_utc_offset=-5 -County "VA, Richmond city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107600.epw site_zip_code=23220 site_time_zone_utc_offset=-5 -County "VA, Roanoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101610.epw site_zip_code=24018 site_time_zone_utc_offset=-5 -County "VA, Roanoke city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107700.epw site_zip_code=24017 site_time_zone_utc_offset=-5 -County "VA, Rockbridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101630.epw site_zip_code=24450 site_time_zone_utc_offset=-5 -County "VA, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101650.epw site_zip_code=22801 site_time_zone_utc_offset=-5 -County "VA, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101670.epw site_zip_code=24266 site_time_zone_utc_offset=-5 -County "VA, Salem city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107750.epw site_zip_code=24153 site_time_zone_utc_offset=-5 -County "VA, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101690.epw site_zip_code=24251 site_time_zone_utc_offset=-5 -County "VA, Shenandoah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101710.epw site_zip_code=22657 site_time_zone_utc_offset=-5 -County "VA, Smyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101730.epw site_zip_code=24354 site_time_zone_utc_offset=-5 -County "VA, Southampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101750.epw site_zip_code=23851 site_time_zone_utc_offset=-5 -County "VA, Spotsylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101770.epw site_zip_code=22407 site_time_zone_utc_offset=-5 -County "VA, Stafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101790.epw site_zip_code=22554 site_time_zone_utc_offset=-5 -County "VA, Staunton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107900.epw site_zip_code=24401 site_time_zone_utc_offset=-5 -County "VA, Suffolk city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108000.epw site_zip_code=23434 site_time_zone_utc_offset=-5 -County "VA, Surry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101810.epw site_zip_code=23883 site_time_zone_utc_offset=-5 -County "VA, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101830.epw site_zip_code=23890 site_time_zone_utc_offset=-5 -County "VA, Tazewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101850.epw site_zip_code=24605 site_time_zone_utc_offset=-5 -County "VA, Virginia Beach city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108100.epw site_zip_code=23462 site_time_zone_utc_offset=-5 -County "VA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101870.epw site_zip_code=22630 site_time_zone_utc_offset=-5 -County "VA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101910.epw site_zip_code=24210 site_time_zone_utc_offset=-5 -County "VA, Waynesboro city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108200.epw site_zip_code=22980 site_time_zone_utc_offset=-5 -County "VA, Westmoreland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101930.epw site_zip_code=22443 site_time_zone_utc_offset=-5 -County "VA, Williamsburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108300.epw site_zip_code=23185 site_time_zone_utc_offset=-5 -County "VA, Winchester city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108400.epw site_zip_code=22601 site_time_zone_utc_offset=-5 -County "VA, Wise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101950.epw site_zip_code=24219 site_time_zone_utc_offset=-5 -County "VA, Wythe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101970.epw site_zip_code=24382 site_time_zone_utc_offset=-5 -County "VA, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101990.epw site_zip_code=23692 site_time_zone_utc_offset=-5 -County "VT, Addison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000010.epw site_zip_code=05753 site_time_zone_utc_offset=-5 -County "VT, Bennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000030.epw site_zip_code=05201 site_time_zone_utc_offset=-5 -County "VT, Caledonia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000050.epw site_zip_code=05819 site_time_zone_utc_offset=-5 -County "VT, Chittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000070.epw site_zip_code=05401 site_time_zone_utc_offset=-5 -County "VT, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000090.epw site_zip_code=05906 site_time_zone_utc_offset=-5 -County "VT, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000110.epw site_zip_code=05478 site_time_zone_utc_offset=-5 -County "VT, Grand Isle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000130.epw site_zip_code=05440 site_time_zone_utc_offset=-5 -County "VT, Lamoille County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000150.epw site_zip_code=05672 site_time_zone_utc_offset=-5 -County "VT, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000170.epw site_zip_code=05060 site_time_zone_utc_offset=-5 -County "VT, Orleans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000190.epw site_zip_code=05855 site_time_zone_utc_offset=-5 -County "VT, Rutland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000210.epw site_zip_code=05701 site_time_zone_utc_offset=-5 -County "VT, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000230.epw site_zip_code=05641 site_time_zone_utc_offset=-5 -County "VT, Windham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000250.epw site_zip_code=05301 site_time_zone_utc_offset=-5 -County "VT, Windsor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000270.epw site_zip_code=05156 site_time_zone_utc_offset=-5 -County "WA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300010.epw site_zip_code=99344 site_time_zone_utc_offset=-8 -County "WA, Asotin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300030.epw site_zip_code=99403 site_time_zone_utc_offset=-8 -County "WA, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300050.epw site_zip_code=99336 site_time_zone_utc_offset=-8 -County "WA, Chelan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300070.epw site_zip_code=98801 site_time_zone_utc_offset=-8 -County "WA, Clallam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300090.epw site_zip_code=98382 site_time_zone_utc_offset=-8 -County "WA, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300110.epw site_zip_code=98682 site_time_zone_utc_offset=-8 -County "WA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300130.epw site_zip_code=99328 site_time_zone_utc_offset=-8 -County "WA, Cowlitz County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300150.epw site_zip_code=98632 site_time_zone_utc_offset=-8 -County "WA, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300170.epw site_zip_code=98802 site_time_zone_utc_offset=-8 -County "WA, Ferry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300190.epw site_zip_code=99166 site_time_zone_utc_offset=-8 -County "WA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300210.epw site_zip_code=99301 site_time_zone_utc_offset=-8 -County "WA, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300230.epw site_zip_code=99347 site_time_zone_utc_offset=-8 -County "WA, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300250.epw site_zip_code=98837 site_time_zone_utc_offset=-8 -County "WA, Grays Harbor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300270.epw site_zip_code=98520 site_time_zone_utc_offset=-8 -County "WA, Island County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300290.epw site_zip_code=98277 site_time_zone_utc_offset=-8 -County "WA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300310.epw site_zip_code=98368 site_time_zone_utc_offset=-8 -County "WA, King County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300330.epw site_zip_code=98052 site_time_zone_utc_offset=-8 -County "WA, Kitsap County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300350.epw site_zip_code=98312 site_time_zone_utc_offset=-8 -County "WA, Kittitas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300370.epw site_zip_code=98926 site_time_zone_utc_offset=-8 -County "WA, Klickitat County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300390.epw site_zip_code=98672 site_time_zone_utc_offset=-8 -County "WA, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300410.epw site_zip_code=98531 site_time_zone_utc_offset=-8 -County "WA, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300430.epw site_zip_code=99122 site_time_zone_utc_offset=-8 -County "WA, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300450.epw site_zip_code=98584 site_time_zone_utc_offset=-8 -County "WA, Okanogan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300470.epw site_zip_code=98841 site_time_zone_utc_offset=-8 -County "WA, Pacific County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300490.epw site_zip_code=98640 site_time_zone_utc_offset=-8 -County "WA, Pend Oreille County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300510.epw site_zip_code=99156 site_time_zone_utc_offset=-8 -County "WA, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300530.epw site_zip_code=98391 site_time_zone_utc_offset=-8 -County "WA, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300550.epw site_zip_code=98250 site_time_zone_utc_offset=-8 -County "WA, Skagit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300570.epw site_zip_code=98273 site_time_zone_utc_offset=-8 -County "WA, Skamania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300590.epw site_zip_code=98648 site_time_zone_utc_offset=-8 -County "WA, Snohomish County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300610.epw site_zip_code=98012 site_time_zone_utc_offset=-8 -County "WA, Spokane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300630.epw site_zip_code=99208 site_time_zone_utc_offset=-8 -County "WA, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300650.epw site_zip_code=99114 site_time_zone_utc_offset=-8 -County "WA, Thurston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300670.epw site_zip_code=98501 site_time_zone_utc_offset=-8 -County "WA, Wahkiakum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300690.epw site_zip_code=98612 site_time_zone_utc_offset=-8 -County "WA, Walla Walla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300710.epw site_zip_code=99362 site_time_zone_utc_offset=-8 -County "WA, Whatcom County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300730.epw site_zip_code=98225 site_time_zone_utc_offset=-8 -County "WA, Whitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300750.epw site_zip_code=99163 site_time_zone_utc_offset=-8 -County "WA, Yakima County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300770.epw site_zip_code=98902 site_time_zone_utc_offset=-8 -County "WI, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500010.epw site_zip_code=53934 site_time_zone_utc_offset=-6 -County "WI, Ashland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500030.epw site_zip_code=54806 site_time_zone_utc_offset=-6 -County "WI, Barron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500050.epw site_zip_code=54868 site_time_zone_utc_offset=-6 -County "WI, Bayfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500070.epw site_zip_code=54891 site_time_zone_utc_offset=-6 -County "WI, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500090.epw site_zip_code=54115 site_time_zone_utc_offset=-6 -County "WI, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500110.epw site_zip_code=54755 site_time_zone_utc_offset=-6 -County "WI, Burnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500130.epw site_zip_code=54830 site_time_zone_utc_offset=-6 -County "WI, Calumet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500150.epw site_zip_code=54915 site_time_zone_utc_offset=-6 -County "WI, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500170.epw site_zip_code=54729 site_time_zone_utc_offset=-6 -County "WI, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500190.epw site_zip_code=54456 site_time_zone_utc_offset=-6 -County "WI, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500210.epw site_zip_code=53901 site_time_zone_utc_offset=-6 -County "WI, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500230.epw site_zip_code=53821 site_time_zone_utc_offset=-6 -County "WI, Dane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500250.epw site_zip_code=53711 site_time_zone_utc_offset=-6 -County "WI, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500270.epw site_zip_code=53916 site_time_zone_utc_offset=-6 -County "WI, Door County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500290.epw site_zip_code=54235 site_time_zone_utc_offset=-6 -County "WI, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500310.epw site_zip_code=54880 site_time_zone_utc_offset=-6 -County "WI, Dunn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500330.epw site_zip_code=54751 site_time_zone_utc_offset=-6 -County "WI, Eau Claire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500350.epw site_zip_code=54703 site_time_zone_utc_offset=-6 -County "WI, Florence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500370.epw site_zip_code=54121 site_time_zone_utc_offset=-6 -County "WI, Fond du Lac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500390.epw site_zip_code=54935 site_time_zone_utc_offset=-6 -County "WI, Forest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500410.epw site_zip_code=54520 site_time_zone_utc_offset=-6 -County "WI, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500430.epw site_zip_code=53818 site_time_zone_utc_offset=-6 -County "WI, Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500450.epw site_zip_code=53566 site_time_zone_utc_offset=-6 -County "WI, Green Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500470.epw site_zip_code=54923 site_time_zone_utc_offset=-6 -County "WI, Iowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500490.epw site_zip_code=53533 site_time_zone_utc_offset=-6 -County "WI, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500510.epw site_zip_code=54547 site_time_zone_utc_offset=-6 -County "WI, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500530.epw site_zip_code=54615 site_time_zone_utc_offset=-6 -County "WI, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500550.epw site_zip_code=53538 site_time_zone_utc_offset=-6 -County "WI, Juneau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500570.epw site_zip_code=53948 site_time_zone_utc_offset=-6 -County "WI, Kenosha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500590.epw site_zip_code=53142 site_time_zone_utc_offset=-6 -County "WI, Kewaunee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500610.epw site_zip_code=54216 site_time_zone_utc_offset=-6 -County "WI, La Crosse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500630.epw site_zip_code=54601 site_time_zone_utc_offset=-6 -County "WI, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500650.epw site_zip_code=53530 site_time_zone_utc_offset=-6 -County "WI, Langlade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500670.epw site_zip_code=54409 site_time_zone_utc_offset=-6 -County "WI, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500690.epw site_zip_code=54452 site_time_zone_utc_offset=-6 -County "WI, Manitowoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500710.epw site_zip_code=54220 site_time_zone_utc_offset=-6 -County "WI, Marathon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500730.epw site_zip_code=54401 site_time_zone_utc_offset=-6 -County "WI, Marinette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500750.epw site_zip_code=54143 site_time_zone_utc_offset=-6 -County "WI, Marquette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500770.epw site_zip_code=53949 site_time_zone_utc_offset=-6 -County "WI, Menominee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500780.epw site_zip_code=54135 site_time_zone_utc_offset=-6 -County "WI, Milwaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500790.epw site_zip_code=53209 site_time_zone_utc_offset=-6 -County "WI, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500810.epw site_zip_code=54656 site_time_zone_utc_offset=-6 -County "WI, Oconto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500830.epw site_zip_code=54153 site_time_zone_utc_offset=-6 -County "WI, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500850.epw site_zip_code=54501 site_time_zone_utc_offset=-6 -County "WI, Outagamie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500870.epw site_zip_code=54911 site_time_zone_utc_offset=-6 -County "WI, Ozaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500890.epw site_zip_code=53092 site_time_zone_utc_offset=-6 -County "WI, Pepin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500910.epw site_zip_code=54736 site_time_zone_utc_offset=-6 -County "WI, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500930.epw site_zip_code=54022 site_time_zone_utc_offset=-6 -County "WI, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500950.epw site_zip_code=54001 site_time_zone_utc_offset=-6 -County "WI, Portage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500970.epw site_zip_code=54481 site_time_zone_utc_offset=-6 -County "WI, Price County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500990.epw site_zip_code=54555 site_time_zone_utc_offset=-6 -County "WI, Racine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501010.epw site_zip_code=53402 site_time_zone_utc_offset=-6 -County "WI, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501030.epw site_zip_code=53581 site_time_zone_utc_offset=-6 -County "WI, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501050.epw site_zip_code=53511 site_time_zone_utc_offset=-6 -County "WI, Rusk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501070.epw site_zip_code=54848 site_time_zone_utc_offset=-6 -County "WI, Sauk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501110.epw site_zip_code=53913 site_time_zone_utc_offset=-6 -County "WI, Sawyer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501130.epw site_zip_code=54843 site_time_zone_utc_offset=-6 -County "WI, Shawano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501150.epw site_zip_code=54166 site_time_zone_utc_offset=-6 -County "WI, Sheboygan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501170.epw site_zip_code=53081 site_time_zone_utc_offset=-6 -County "WI, St. Croix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501090.epw site_zip_code=54016 site_time_zone_utc_offset=-6 -County "WI, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501190.epw site_zip_code=54451 site_time_zone_utc_offset=-6 -County "WI, Trempealeau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501210.epw site_zip_code=54612 site_time_zone_utc_offset=-6 -County "WI, Vernon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501230.epw site_zip_code=54665 site_time_zone_utc_offset=-6 -County "WI, Vilas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501250.epw site_zip_code=54521 site_time_zone_utc_offset=-6 -County "WI, Walworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501270.epw site_zip_code=53147 site_time_zone_utc_offset=-6 -County "WI, Washburn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501290.epw site_zip_code=54801 site_time_zone_utc_offset=-6 -County "WI, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501310.epw site_zip_code=53022 site_time_zone_utc_offset=-6 -County "WI, Waukesha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501330.epw site_zip_code=53051 site_time_zone_utc_offset=-6 -County "WI, Waupaca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501350.epw site_zip_code=54981 site_time_zone_utc_offset=-6 -County "WI, Waushara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501370.epw site_zip_code=54982 site_time_zone_utc_offset=-6 -County "WI, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501390.epw site_zip_code=54956 site_time_zone_utc_offset=-6 -County "WI, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501410.epw site_zip_code=54449 site_time_zone_utc_offset=-6 -County "WV, Barbour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400010.epw site_zip_code=26416 site_time_zone_utc_offset=-5 -County "WV, Berkeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400030.epw site_zip_code=25404 site_time_zone_utc_offset=-5 -County "WV, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400050.epw site_zip_code=25130 site_time_zone_utc_offset=-5 -County "WV, Braxton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400070.epw site_zip_code=26601 site_time_zone_utc_offset=-5 -County "WV, Brooke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400090.epw site_zip_code=26070 site_time_zone_utc_offset=-5 -County "WV, Cabell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400110.epw site_zip_code=25701 site_time_zone_utc_offset=-5 -County "WV, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400130.epw site_zip_code=26147 site_time_zone_utc_offset=-5 -County "WV, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400150.epw site_zip_code=25043 site_time_zone_utc_offset=-5 -County "WV, Doddridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400170.epw site_zip_code=26456 site_time_zone_utc_offset=-5 -County "WV, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400190.epw site_zip_code=25901 site_time_zone_utc_offset=-5 -County "WV, Gilmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400210.epw site_zip_code=26351 site_time_zone_utc_offset=-5 -County "WV, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400230.epw site_zip_code=26847 site_time_zone_utc_offset=-5 -County "WV, Greenbrier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400250.epw site_zip_code=24901 site_time_zone_utc_offset=-5 -County "WV, Hampshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400270.epw site_zip_code=26757 site_time_zone_utc_offset=-5 -County "WV, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400290.epw site_zip_code=26062 site_time_zone_utc_offset=-5 -County "WV, Hardy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400310.epw site_zip_code=26836 site_time_zone_utc_offset=-5 -County "WV, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400330.epw site_zip_code=26301 site_time_zone_utc_offset=-5 -County "WV, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400350.epw site_zip_code=25271 site_time_zone_utc_offset=-5 -County "WV, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400370.epw site_zip_code=25414 site_time_zone_utc_offset=-5 -County "WV, Kanawha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400390.epw site_zip_code=25177 site_time_zone_utc_offset=-5 -County "WV, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400410.epw site_zip_code=26452 site_time_zone_utc_offset=-5 -County "WV, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400430.epw site_zip_code=25506 site_time_zone_utc_offset=-5 -County "WV, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400450.epw site_zip_code=25601 site_time_zone_utc_offset=-5 -County "WV, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400490.epw site_zip_code=26554 site_time_zone_utc_offset=-5 -County "WV, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400510.epw site_zip_code=26041 site_time_zone_utc_offset=-5 -County "WV, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400530.epw site_zip_code=25550 site_time_zone_utc_offset=-5 -County "WV, McDowell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400470.epw site_zip_code=24801 site_time_zone_utc_offset=-5 -County "WV, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400550.epw site_zip_code=24701 site_time_zone_utc_offset=-5 -County "WV, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400570.epw site_zip_code=26726 site_time_zone_utc_offset=-5 -County "WV, Mingo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400590.epw site_zip_code=25661 site_time_zone_utc_offset=-5 -County "WV, Monongalia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400610.epw site_zip_code=26505 site_time_zone_utc_offset=-5 -County "WV, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400630.epw site_zip_code=24963 site_time_zone_utc_offset=-5 -County "WV, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400650.epw site_zip_code=25411 site_time_zone_utc_offset=-5 -County "WV, Nicholas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400670.epw site_zip_code=26651 site_time_zone_utc_offset=-5 -County "WV, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400690.epw site_zip_code=26003 site_time_zone_utc_offset=-5 -County "WV, Pendleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400710.epw site_zip_code=26807 site_time_zone_utc_offset=-5 -County "WV, Pleasants County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400730.epw site_zip_code=26170 site_time_zone_utc_offset=-5 -County "WV, Pocahontas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400750.epw site_zip_code=24954 site_time_zone_utc_offset=-5 -County "WV, Preston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400770.epw site_zip_code=26537 site_time_zone_utc_offset=-5 -County "WV, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400790.epw site_zip_code=25526 site_time_zone_utc_offset=-5 -County "WV, Raleigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400810.epw site_zip_code=25801 site_time_zone_utc_offset=-5 -County "WV, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400830.epw site_zip_code=26241 site_time_zone_utc_offset=-5 -County "WV, Ritchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400850.epw site_zip_code=26362 site_time_zone_utc_offset=-5 -County "WV, Roane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400870.epw site_zip_code=25276 site_time_zone_utc_offset=-5 -County "WV, Summers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400890.epw site_zip_code=25951 site_time_zone_utc_offset=-5 -County "WV, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400910.epw site_zip_code=26354 site_time_zone_utc_offset=-5 -County "WV, Tucker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400930.epw site_zip_code=26287 site_time_zone_utc_offset=-5 -County "WV, Tyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400950.epw site_zip_code=26175 site_time_zone_utc_offset=-5 -County "WV, Upshur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400970.epw site_zip_code=26201 site_time_zone_utc_offset=-5 -County "WV, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400990.epw site_zip_code=25704 site_time_zone_utc_offset=-5 -County "WV, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401010.epw site_zip_code=26288 site_time_zone_utc_offset=-5 -County "WV, Wetzel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401030.epw site_zip_code=26155 site_time_zone_utc_offset=-5 -County "WV, Wirt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401050.epw site_zip_code=26143 site_time_zone_utc_offset=-5 -County "WV, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401070.epw site_zip_code=26101 site_time_zone_utc_offset=-5 -County "WV, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401090.epw site_zip_code=25882 site_time_zone_utc_offset=-5 -County "WY, Albany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600010.epw site_zip_code=82070 site_time_zone_utc_offset=-7 -County "WY, Big Horn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600030.epw site_zip_code=82431 site_time_zone_utc_offset=-7 -County "WY, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600050.epw site_zip_code=82718 site_time_zone_utc_offset=-7 -County "WY, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600070.epw site_zip_code=82301 site_time_zone_utc_offset=-7 -County "WY, Converse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600090.epw site_zip_code=82633 site_time_zone_utc_offset=-7 -County "WY, Crook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600110.epw site_zip_code=82729 site_time_zone_utc_offset=-7 -County "WY, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600130.epw site_zip_code=82501 site_time_zone_utc_offset=-7 -County "WY, Goshen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600150.epw site_zip_code=82240 site_time_zone_utc_offset=-7 -County "WY, Hot Springs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600170.epw site_zip_code=82443 site_time_zone_utc_offset=-7 -County "WY, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600190.epw site_zip_code=82834 site_time_zone_utc_offset=-7 -County "WY, Laramie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600210.epw site_zip_code=82001 site_time_zone_utc_offset=-7 -County "WY, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600230.epw site_zip_code=83127 site_time_zone_utc_offset=-7 -County "WY, Natrona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600250.epw site_zip_code=82601 site_time_zone_utc_offset=-7 -County "WY, Niobrara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600270.epw site_zip_code=82225 site_time_zone_utc_offset=-7 -County "WY, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600290.epw site_zip_code=82414 site_time_zone_utc_offset=-7 -County "WY, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600310.epw site_zip_code=82201 site_time_zone_utc_offset=-7 -County "WY, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600330.epw site_zip_code=82801 site_time_zone_utc_offset=-7 -County "WY, Sublette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600350.epw site_zip_code=82941 site_time_zone_utc_offset=-7 -County "WY, Sweetwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600370.epw site_zip_code=82901 site_time_zone_utc_offset=-7 -County "WY, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600390.epw site_zip_code=83001 site_time_zone_utc_offset=-7 -County "WY, Uinta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600410.epw site_zip_code=82930 site_time_zone_utc_offset=-7 -County "WY, Washakie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600430.epw site_zip_code=82401 site_time_zone_utc_offset=-7 -County "WY, Weston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600450.epw site_zip_code=82701 site_time_zone_utc_offset=-7 -County Metro Status Metropolitan -County Metro Status Non-Metropolitan -County and PUMA "G0100010, G01002100" -County and PUMA "G0100030, G01002600" -County and PUMA "G0100050, G01002400" -County and PUMA "G0100070, G01001700" -County and PUMA "G0100090, G01000800" -County and PUMA "G0100110, G01002400" -County and PUMA "G0100130, G01002300" -County and PUMA "G0100150, G01001100" -County and PUMA "G0100170, G01001800" -County and PUMA "G0100190, G01001000" -County and PUMA "G0100210, G01001800" -County and PUMA "G0100230, G01002200" -County and PUMA "G0100250, G01002200" -County and PUMA "G0100270, G01001000" -County and PUMA "G0100290, G01001000" -County and PUMA "G0100310, G01002300" -County and PUMA "G0100330, G01000100" -County and PUMA "G0100350, G01002200" -County and PUMA "G0100370, G01001800" -County and PUMA "G0100390, G01002300" -County and PUMA "G0100410, G01002300" -County and PUMA "G0100430, G01000700" -County and PUMA "G0100450, G01002500" -County and PUMA "G0100470, G01001700" -County and PUMA "G0100490, G01000400" -County and PUMA "G0100510, G01002100" -County and PUMA "G0100530, G01002200" -County and PUMA "G0100550, G01000900" -County and PUMA "G0100570, G01001400" -County and PUMA "G0100590, G01000100" -County and PUMA "G0100610, G01002500" -County and PUMA "G0100630, G01001700" -County and PUMA "G0100650, G01001700" -County and PUMA "G0100670, G01002500" -County and PUMA "G0100690, G01002500" -County and PUMA "G0100710, G01000400" -County and PUMA "G0100730, G01001301" -County and PUMA "G0100730, G01001302" -County and PUMA "G0100730, G01001303" -County and PUMA "G0100730, G01001304" -County and PUMA "G0100730, G01001305" -County and PUMA "G0100750, G01001400" -County and PUMA "G0100770, G01000100" -County and PUMA "G0100790, G01000600" -County and PUMA "G0100810, G01001900" -County and PUMA "G0100830, G01000200" -County and PUMA "G0100850, G01002100" -County and PUMA "G0100870, G01002400" -County and PUMA "G0100890, G01000200" -County and PUMA "G0100890, G01000301" -County and PUMA "G0100890, G01000302" -County and PUMA "G0100890, G01000500" -County and PUMA "G0100910, G01001700" -County and PUMA "G0100930, G01000100" -County and PUMA "G0100930, G01001400" -County and PUMA "G0100950, G01000500" -County and PUMA "G0100970, G01002701" -County and PUMA "G0100970, G01002702" -County and PUMA "G0100970, G01002703" -County and PUMA "G0100990, G01002200" -County and PUMA "G0101010, G01002000" -County and PUMA "G0101010, G01002100" -County and PUMA "G0101030, G01000600" -County and PUMA "G0101050, G01001700" -County and PUMA "G0101070, G01001500" -County and PUMA "G0101090, G01002400" -County and PUMA "G0101110, G01001000" -County and PUMA "G0101130, G01002400" -County and PUMA "G0101150, G01000800" -County and PUMA "G0101170, G01001200" -County and PUMA "G0101190, G01001700" -County and PUMA "G0101210, G01001000" -County and PUMA "G0101230, G01001800" -County and PUMA "G0101250, G01001500" -County and PUMA "G0101250, G01001600" -County and PUMA "G0101270, G01001400" -County and PUMA "G0101290, G01002200" -County and PUMA "G0101310, G01002200" -County and PUMA "G0101330, G01000700" -County and PUMA "G0200130, G02000400" -County and PUMA "G0200160, G02000400" -County and PUMA "G0200200, G02000101" -County and PUMA "G0200200, G02000102" -County and PUMA "G0200500, G02000400" -County and PUMA "G0200600, G02000400" -County and PUMA "G0200680, G02000300" -County and PUMA "G0200700, G02000400" -County and PUMA "G0200900, G02000300" -County and PUMA "G0201000, G02000300" -County and PUMA "G0201050, G02000400" -County and PUMA "G0201100, G02000300" -County and PUMA "G0201220, G02000200" -County and PUMA "G0201300, G02000300" -County and PUMA "G0201500, G02000400" -County and PUMA "G0201580, G02000400" -County and PUMA "G0201640, G02000400" -County and PUMA "G0201700, G02000200" -County and PUMA "G0201800, G02000400" -County and PUMA "G0201850, G02000400" -County and PUMA "G0201880, G02000400" -County and PUMA "G0201950, G02000400" -County and PUMA "G0201980, G02000400" -County and PUMA "G0202200, G02000400" -County and PUMA "G0202300, G02000300" -County and PUMA "G0202400, G02000300" -County and PUMA "G0202610, G02000300" -County and PUMA "G0202750, G02000400" -County and PUMA "G0202820, G02000400" -County and PUMA "G0202900, G02000400" -County and PUMA "G0400010, G04000300" -County and PUMA "G0400030, G04000900" -County and PUMA "G0400050, G04000400" -County and PUMA "G0400070, G04000800" -County and PUMA "G0400090, G04000800" -County and PUMA "G0400110, G04000800" -County and PUMA "G0400120, G04000600" -County and PUMA "G0400130, G04000100" -County and PUMA "G0400130, G04000101" -County and PUMA "G0400130, G04000102" -County and PUMA "G0400130, G04000103" -County and PUMA "G0400130, G04000104" -County and PUMA "G0400130, G04000105" -County and PUMA "G0400130, G04000106" -County and PUMA "G0400130, G04000107" -County and PUMA "G0400130, G04000108" -County and PUMA "G0400130, G04000109" -County and PUMA "G0400130, G04000110" -County and PUMA "G0400130, G04000111" -County and PUMA "G0400130, G04000112" -County and PUMA "G0400130, G04000113" -County and PUMA "G0400130, G04000114" -County and PUMA "G0400130, G04000115" -County and PUMA "G0400130, G04000116" -County and PUMA "G0400130, G04000117" -County and PUMA "G0400130, G04000118" -County and PUMA "G0400130, G04000119" -County and PUMA "G0400130, G04000120" -County and PUMA "G0400130, G04000121" -County and PUMA "G0400130, G04000122" -County and PUMA "G0400130, G04000123" -County and PUMA "G0400130, G04000124" -County and PUMA "G0400130, G04000125" -County and PUMA "G0400130, G04000126" -County and PUMA "G0400130, G04000127" -County and PUMA "G0400130, G04000128" -County and PUMA "G0400130, G04000129" -County and PUMA "G0400130, G04000130" -County and PUMA "G0400130, G04000131" -County and PUMA "G0400130, G04000132" -County and PUMA "G0400130, G04000133" -County and PUMA "G0400130, G04000134" -County and PUMA "G0400150, G04000600" -County and PUMA "G0400170, G04000300" -County and PUMA "G0400190, G04000201" -County and PUMA "G0400190, G04000202" -County and PUMA "G0400190, G04000203" -County and PUMA "G0400190, G04000204" -County and PUMA "G0400190, G04000205" -County and PUMA "G0400190, G04000206" -County and PUMA "G0400190, G04000207" -County and PUMA "G0400190, G04000208" -County and PUMA "G0400190, G04000209" -County and PUMA "G0400210, G04000800" -County and PUMA "G0400210, G04000803" -County and PUMA "G0400210, G04000805" -County and PUMA "G0400210, G04000807" -County and PUMA "G0400230, G04000900" -County and PUMA "G0400250, G04000500" -County and PUMA "G0400270, G04000700" -County and PUMA "G0500010, G05001700" -County and PUMA "G0500010, G05001800" -County and PUMA "G0500030, G05001800" -County and PUMA "G0500050, G05000300" -County and PUMA "G0500070, G05000100" -County and PUMA "G0500090, G05000300" -County and PUMA "G0500110, G05001800" -County and PUMA "G0500130, G05001900" -County and PUMA "G0500150, G05000300" -County and PUMA "G0500170, G05001800" -County and PUMA "G0500190, G05001600" -County and PUMA "G0500210, G05000500" -County and PUMA "G0500230, G05000400" -County and PUMA "G0500250, G05001800" -County and PUMA "G0500270, G05001900" -County and PUMA "G0500290, G05001300" -County and PUMA "G0500310, G05000500" -County and PUMA "G0500310, G05000600" -County and PUMA "G0500330, G05001400" -County and PUMA "G0500350, G05000600" -County and PUMA "G0500370, G05000700" -County and PUMA "G0500390, G05001900" -County and PUMA "G0500410, G05001800" -County and PUMA "G0500430, G05001800" -County and PUMA "G0500450, G05001100" -County and PUMA "G0500470, G05001500" -County and PUMA "G0500490, G05000400" -County and PUMA "G0500510, G05001600" -County and PUMA "G0500530, G05001700" -County and PUMA "G0500550, G05000500" -County and PUMA "G0500570, G05002000" -County and PUMA "G0500590, G05001600" -County and PUMA "G0500610, G05001500" -County and PUMA "G0500630, G05000400" -County and PUMA "G0500650, G05000400" -County and PUMA "G0500670, G05000800" -County and PUMA "G0500690, G05001700" -County and PUMA "G0500710, G05001300" -County and PUMA "G0500730, G05002000" -County and PUMA "G0500750, G05000500" -County and PUMA "G0500770, G05000700" -County and PUMA "G0500790, G05001800" -County and PUMA "G0500810, G05002000" -County and PUMA "G0500830, G05001500" -County and PUMA "G0500850, G05001100" -County and PUMA "G0500870, G05000300" -County and PUMA "G0500890, G05000300" -County and PUMA "G0500910, G05002000" -County and PUMA "G0500930, G05000600" -County and PUMA "G0500950, G05000700" -County and PUMA "G0500970, G05001600" -County and PUMA "G0500990, G05002000" -County and PUMA "G0501010, G05000300" -County and PUMA "G0501030, G05001900" -County and PUMA "G0501050, G05001300" -County and PUMA "G0501070, G05000700" -County and PUMA "G0501090, G05002000" -County and PUMA "G0501110, G05000700" -County and PUMA "G0501130, G05001500" -County and PUMA "G0501150, G05001300" -County and PUMA "G0501170, G05000800" -County and PUMA "G0501190, G05000900" -County and PUMA "G0501190, G05001000" -County and PUMA "G0501210, G05000500" -County and PUMA "G0501230, G05000700" -County and PUMA "G0501250, G05001200" -County and PUMA "G0501270, G05001500" -County and PUMA "G0501290, G05000300" -County and PUMA "G0501310, G05001400" -County and PUMA "G0501330, G05001500" -County and PUMA "G0501350, G05000400" -County and PUMA "G0501370, G05000400" -County and PUMA "G0501390, G05001900" -County and PUMA "G0501410, G05000400" -County and PUMA "G0501430, G05000200" -County and PUMA "G0501450, G05000800" -County and PUMA "G0501470, G05000800" -County and PUMA "G0501490, G05001300" -County and PUMA "G0600010, G06000101" -County and PUMA "G0600010, G06000102" -County and PUMA "G0600010, G06000103" -County and PUMA "G0600010, G06000104" -County and PUMA "G0600010, G06000105" -County and PUMA "G0600010, G06000106" -County and PUMA "G0600010, G06000107" -County and PUMA "G0600010, G06000108" -County and PUMA "G0600010, G06000109" -County and PUMA "G0600010, G06000110" -County and PUMA "G0600030, G06000300" -County and PUMA "G0600050, G06000300" -County and PUMA "G0600070, G06000701" -County and PUMA "G0600070, G06000702" -County and PUMA "G0600090, G06000300" -County and PUMA "G0600110, G06001100" -County and PUMA "G0600130, G06001301" -County and PUMA "G0600130, G06001302" -County and PUMA "G0600130, G06001303" -County and PUMA "G0600130, G06001304" -County and PUMA "G0600130, G06001305" -County and PUMA "G0600130, G06001306" -County and PUMA "G0600130, G06001307" -County and PUMA "G0600130, G06001308" -County and PUMA "G0600130, G06001309" -County and PUMA "G0600150, G06001500" -County and PUMA "G0600170, G06001700" -County and PUMA "G0600190, G06001901" -County and PUMA "G0600190, G06001902" -County and PUMA "G0600190, G06001903" -County and PUMA "G0600190, G06001904" -County and PUMA "G0600190, G06001905" -County and PUMA "G0600190, G06001906" -County and PUMA "G0600190, G06001907" -County and PUMA "G0600210, G06001100" -County and PUMA "G0600230, G06002300" -County and PUMA "G0600250, G06002500" -County and PUMA "G0600270, G06000300" -County and PUMA "G0600290, G06002901" -County and PUMA "G0600290, G06002902" -County and PUMA "G0600290, G06002903" -County and PUMA "G0600290, G06002904" -County and PUMA "G0600290, G06002905" -County and PUMA "G0600310, G06003100" -County and PUMA "G0600330, G06003300" -County and PUMA "G0600350, G06001500" -County and PUMA "G0600370, G06003701" -County and PUMA "G0600370, G06003702" -County and PUMA "G0600370, G06003703" -County and PUMA "G0600370, G06003704" -County and PUMA "G0600370, G06003705" -County and PUMA "G0600370, G06003706" -County and PUMA "G0600370, G06003707" -County and PUMA "G0600370, G06003708" -County and PUMA "G0600370, G06003709" -County and PUMA "G0600370, G06003710" -County and PUMA "G0600370, G06003711" -County and PUMA "G0600370, G06003712" -County and PUMA "G0600370, G06003713" -County and PUMA "G0600370, G06003714" -County and PUMA "G0600370, G06003715" -County and PUMA "G0600370, G06003716" -County and PUMA "G0600370, G06003717" -County and PUMA "G0600370, G06003718" -County and PUMA "G0600370, G06003719" -County and PUMA "G0600370, G06003720" -County and PUMA "G0600370, G06003721" -County and PUMA "G0600370, G06003722" -County and PUMA "G0600370, G06003723" -County and PUMA "G0600370, G06003724" -County and PUMA "G0600370, G06003725" -County and PUMA "G0600370, G06003726" -County and PUMA "G0600370, G06003727" -County and PUMA "G0600370, G06003728" -County and PUMA "G0600370, G06003729" -County and PUMA "G0600370, G06003730" -County and PUMA "G0600370, G06003731" -County and PUMA "G0600370, G06003732" -County and PUMA "G0600370, G06003733" -County and PUMA "G0600370, G06003734" -County and PUMA "G0600370, G06003735" -County and PUMA "G0600370, G06003736" -County and PUMA "G0600370, G06003737" -County and PUMA "G0600370, G06003738" -County and PUMA "G0600370, G06003739" -County and PUMA "G0600370, G06003740" -County and PUMA "G0600370, G06003741" -County and PUMA "G0600370, G06003742" -County and PUMA "G0600370, G06003743" -County and PUMA "G0600370, G06003744" -County and PUMA "G0600370, G06003745" -County and PUMA "G0600370, G06003746" -County and PUMA "G0600370, G06003747" -County and PUMA "G0600370, G06003748" -County and PUMA "G0600370, G06003749" -County and PUMA "G0600370, G06003750" -County and PUMA "G0600370, G06003751" -County and PUMA "G0600370, G06003752" -County and PUMA "G0600370, G06003753" -County and PUMA "G0600370, G06003754" -County and PUMA "G0600370, G06003755" -County and PUMA "G0600370, G06003756" -County and PUMA "G0600370, G06003757" -County and PUMA "G0600370, G06003758" -County and PUMA "G0600370, G06003759" -County and PUMA "G0600370, G06003760" -County and PUMA "G0600370, G06003761" -County and PUMA "G0600370, G06003762" -County and PUMA "G0600370, G06003763" -County and PUMA "G0600370, G06003764" -County and PUMA "G0600370, G06003765" -County and PUMA "G0600370, G06003766" -County and PUMA "G0600370, G06003767" -County and PUMA "G0600370, G06003768" -County and PUMA "G0600370, G06003769" -County and PUMA "G0600390, G06003900" -County and PUMA "G0600410, G06004101" -County and PUMA "G0600410, G06004102" -County and PUMA "G0600430, G06000300" -County and PUMA "G0600450, G06003300" -County and PUMA "G0600470, G06004701" -County and PUMA "G0600470, G06004702" -County and PUMA "G0600490, G06001500" -County and PUMA "G0600510, G06000300" -County and PUMA "G0600530, G06005301" -County and PUMA "G0600530, G06005302" -County and PUMA "G0600530, G06005303" -County and PUMA "G0600550, G06005500" -County and PUMA "G0600570, G06005700" -County and PUMA "G0600590, G06005901" -County and PUMA "G0600590, G06005902" -County and PUMA "G0600590, G06005903" -County and PUMA "G0600590, G06005904" -County and PUMA "G0600590, G06005905" -County and PUMA "G0600590, G06005906" -County and PUMA "G0600590, G06005907" -County and PUMA "G0600590, G06005908" -County and PUMA "G0600590, G06005909" -County and PUMA "G0600590, G06005910" -County and PUMA "G0600590, G06005911" -County and PUMA "G0600590, G06005912" -County and PUMA "G0600590, G06005913" -County and PUMA "G0600590, G06005914" -County and PUMA "G0600590, G06005915" -County and PUMA "G0600590, G06005916" -County and PUMA "G0600590, G06005917" -County and PUMA "G0600590, G06005918" -County and PUMA "G0600610, G06006101" -County and PUMA "G0600610, G06006102" -County and PUMA "G0600610, G06006103" -County and PUMA "G0600630, G06001500" -County and PUMA "G0600650, G06006501" -County and PUMA "G0600650, G06006502" -County and PUMA "G0600650, G06006503" -County and PUMA "G0600650, G06006504" -County and PUMA "G0600650, G06006505" -County and PUMA "G0600650, G06006506" -County and PUMA "G0600650, G06006507" -County and PUMA "G0600650, G06006508" -County and PUMA "G0600650, G06006509" -County and PUMA "G0600650, G06006510" -County and PUMA "G0600650, G06006511" -County and PUMA "G0600650, G06006512" -County and PUMA "G0600650, G06006513" -County and PUMA "G0600650, G06006514" -County and PUMA "G0600650, G06006515" -County and PUMA "G0600670, G06006701" -County and PUMA "G0600670, G06006702" -County and PUMA "G0600670, G06006703" -County and PUMA "G0600670, G06006704" -County and PUMA "G0600670, G06006705" -County and PUMA "G0600670, G06006706" -County and PUMA "G0600670, G06006707" -County and PUMA "G0600670, G06006708" -County and PUMA "G0600670, G06006709" -County and PUMA "G0600670, G06006710" -County and PUMA "G0600670, G06006711" -County and PUMA "G0600670, G06006712" -County and PUMA "G0600690, G06005303" -County and PUMA "G0600710, G06007101" -County and PUMA "G0600710, G06007102" -County and PUMA "G0600710, G06007103" -County and PUMA "G0600710, G06007104" -County and PUMA "G0600710, G06007105" -County and PUMA "G0600710, G06007106" -County and PUMA "G0600710, G06007107" -County and PUMA "G0600710, G06007108" -County and PUMA "G0600710, G06007109" -County and PUMA "G0600710, G06007110" -County and PUMA "G0600710, G06007111" -County and PUMA "G0600710, G06007112" -County and PUMA "G0600710, G06007113" -County and PUMA "G0600710, G06007114" -County and PUMA "G0600710, G06007115" -County and PUMA "G0600730, G06007301" -County and PUMA "G0600730, G06007302" -County and PUMA "G0600730, G06007303" -County and PUMA "G0600730, G06007304" -County and PUMA "G0600730, G06007305" -County and PUMA "G0600730, G06007306" -County and PUMA "G0600730, G06007307" -County and PUMA "G0600730, G06007308" -County and PUMA "G0600730, G06007309" -County and PUMA "G0600730, G06007310" -County and PUMA "G0600730, G06007311" -County and PUMA "G0600730, G06007312" -County and PUMA "G0600730, G06007313" -County and PUMA "G0600730, G06007314" -County and PUMA "G0600730, G06007315" -County and PUMA "G0600730, G06007316" -County and PUMA "G0600730, G06007317" -County and PUMA "G0600730, G06007318" -County and PUMA "G0600730, G06007319" -County and PUMA "G0600730, G06007320" -County and PUMA "G0600730, G06007321" -County and PUMA "G0600730, G06007322" -County and PUMA "G0600750, G06007501" -County and PUMA "G0600750, G06007502" -County and PUMA "G0600750, G06007503" -County and PUMA "G0600750, G06007504" -County and PUMA "G0600750, G06007505" -County and PUMA "G0600750, G06007506" -County and PUMA "G0600750, G06007507" -County and PUMA "G0600770, G06007701" -County and PUMA "G0600770, G06007702" -County and PUMA "G0600770, G06007703" -County and PUMA "G0600770, G06007704" -County and PUMA "G0600790, G06007901" -County and PUMA "G0600790, G06007902" -County and PUMA "G0600810, G06008101" -County and PUMA "G0600810, G06008102" -County and PUMA "G0600810, G06008103" -County and PUMA "G0600810, G06008104" -County and PUMA "G0600810, G06008105" -County and PUMA "G0600810, G06008106" -County and PUMA "G0600830, G06008301" -County and PUMA "G0600830, G06008302" -County and PUMA "G0600830, G06008303" -County and PUMA "G0600850, G06008501" -County and PUMA "G0600850, G06008502" -County and PUMA "G0600850, G06008503" -County and PUMA "G0600850, G06008504" -County and PUMA "G0600850, G06008505" -County and PUMA "G0600850, G06008506" -County and PUMA "G0600850, G06008507" -County and PUMA "G0600850, G06008508" -County and PUMA "G0600850, G06008509" -County and PUMA "G0600850, G06008510" -County and PUMA "G0600850, G06008511" -County and PUMA "G0600850, G06008512" -County and PUMA "G0600850, G06008513" -County and PUMA "G0600850, G06008514" -County and PUMA "G0600870, G06008701" -County and PUMA "G0600870, G06008702" -County and PUMA "G0600890, G06008900" -County and PUMA "G0600910, G06005700" -County and PUMA "G0600930, G06001500" -County and PUMA "G0600950, G06009501" -County and PUMA "G0600950, G06009502" -County and PUMA "G0600950, G06009503" -County and PUMA "G0600970, G06009701" -County and PUMA "G0600970, G06009702" -County and PUMA "G0600970, G06009703" -County and PUMA "G0600990, G06009901" -County and PUMA "G0600990, G06009902" -County and PUMA "G0600990, G06009903" -County and PUMA "G0600990, G06009904" -County and PUMA "G0601010, G06010100" -County and PUMA "G0601030, G06001100" -County and PUMA "G0601050, G06001100" -County and PUMA "G0601070, G06010701" -County and PUMA "G0601070, G06010702" -County and PUMA "G0601070, G06010703" -County and PUMA "G0601090, G06000300" -County and PUMA "G0601110, G06011101" -County and PUMA "G0601110, G06011102" -County and PUMA "G0601110, G06011103" -County and PUMA "G0601110, G06011104" -County and PUMA "G0601110, G06011105" -County and PUMA "G0601110, G06011106" -County and PUMA "G0601130, G06011300" -County and PUMA "G0601150, G06010100" -County and PUMA "G0800010, G08000804" -County and PUMA "G0800010, G08000805" -County and PUMA "G0800010, G08000806" -County and PUMA "G0800010, G08000807" -County and PUMA "G0800010, G08000809" -County and PUMA "G0800010, G08000810" -County and PUMA "G0800010, G08000817" -County and PUMA "G0800010, G08000824" -County and PUMA "G0800030, G08000800" -County and PUMA "G0800050, G08000808" -County and PUMA "G0800050, G08000809" -County and PUMA "G0800050, G08000810" -County and PUMA "G0800050, G08000811" -County and PUMA "G0800050, G08000815" -County and PUMA "G0800050, G08000820" -County and PUMA "G0800050, G08000824" -County and PUMA "G0800070, G08000900" -County and PUMA "G0800090, G08000800" -County and PUMA "G0800110, G08000100" -County and PUMA "G0800130, G08000801" -County and PUMA "G0800130, G08000802" -County and PUMA "G0800130, G08000803" -County and PUMA "G0800130, G08000804" -County and PUMA "G0800140, G08000804" -County and PUMA "G0800140, G08000805" -County and PUMA "G0800150, G08000600" -County and PUMA "G0800170, G08000100" -County and PUMA "G0800190, G08000801" -County and PUMA "G0800210, G08000800" -County and PUMA "G0800230, G08000800" -County and PUMA "G0800250, G08000100" -County and PUMA "G0800270, G08000600" -County and PUMA "G0800290, G08001002" -County and PUMA "G0800310, G08000812" -County and PUMA "G0800310, G08000813" -County and PUMA "G0800310, G08000814" -County and PUMA "G0800310, G08000815" -County and PUMA "G0800310, G08000816" -County and PUMA "G0800330, G08000900" -County and PUMA "G0800350, G08000821" -County and PUMA "G0800350, G08000822" -County and PUMA "G0800350, G08000823" -County and PUMA "G0800370, G08000400" -County and PUMA "G0800390, G08000100" -County and PUMA "G0800390, G08000823" -County and PUMA "G0800410, G08004101" -County and PUMA "G0800410, G08004102" -County and PUMA "G0800410, G08004103" -County and PUMA "G0800410, G08004104" -County and PUMA "G0800410, G08004105" -County and PUMA "G0800410, G08004106" -County and PUMA "G0800430, G08000600" -County and PUMA "G0800450, G08000200" -County and PUMA "G0800470, G08000801" -County and PUMA "G0800490, G08000400" -County and PUMA "G0800510, G08000900" -County and PUMA "G0800530, G08000900" -County and PUMA "G0800550, G08000600" -County and PUMA "G0800570, G08000400" -County and PUMA "G0800590, G08000801" -County and PUMA "G0800590, G08000804" -County and PUMA "G0800590, G08000805" -County and PUMA "G0800590, G08000817" -County and PUMA "G0800590, G08000818" -County and PUMA "G0800590, G08000819" -County and PUMA "G0800590, G08000820" -County and PUMA "G0800590, G08000821" -County and PUMA "G0800610, G08000100" -County and PUMA "G0800630, G08000100" -County and PUMA "G0800650, G08000600" -County and PUMA "G0800670, G08000900" -County and PUMA "G0800690, G08000102" -County and PUMA "G0800690, G08000103" -County and PUMA "G0800710, G08000800" -County and PUMA "G0800730, G08000100" -County and PUMA "G0800750, G08000100" -County and PUMA "G0800770, G08001001" -County and PUMA "G0800770, G08001002" -County and PUMA "G0800790, G08000800" -County and PUMA "G0800810, G08000200" -County and PUMA "G0800830, G08000900" -County and PUMA "G0800850, G08001002" -County and PUMA "G0800870, G08000100" -County and PUMA "G0800890, G08000800" -County and PUMA "G0800910, G08001002" -County and PUMA "G0800930, G08000600" -County and PUMA "G0800950, G08000100" -County and PUMA "G0800970, G08000400" -County and PUMA "G0800990, G08000800" -County and PUMA "G0801010, G08000600" -County and PUMA "G0801010, G08000700" -County and PUMA "G0801010, G08000800" -County and PUMA "G0801030, G08000200" -County and PUMA "G0801050, G08000800" -County and PUMA "G0801070, G08000200" -County and PUMA "G0801090, G08000800" -County and PUMA "G0801110, G08000900" -County and PUMA "G0801130, G08001002" -County and PUMA "G0801150, G08000100" -County and PUMA "G0801170, G08000400" -County and PUMA "G0801190, G08004101" -County and PUMA "G0801210, G08000100" -County and PUMA "G0801230, G08000100" -County and PUMA "G0801230, G08000300" -County and PUMA "G0801230, G08000802" -County and PUMA "G0801230, G08000824" -County and PUMA "G0801250, G08000100" -County and PUMA "G0900010, G09000100" -County and PUMA "G0900010, G09000101" -County and PUMA "G0900010, G09000102" -County and PUMA "G0900010, G09000103" -County and PUMA "G0900010, G09000104" -County and PUMA "G0900010, G09000105" -County and PUMA "G0900030, G09000300" -County and PUMA "G0900030, G09000301" -County and PUMA "G0900030, G09000302" -County and PUMA "G0900030, G09000303" -County and PUMA "G0900030, G09000304" -County and PUMA "G0900030, G09000305" -County and PUMA "G0900030, G09000306" -County and PUMA "G0900050, G09000500" -County and PUMA "G0900070, G09000700" -County and PUMA "G0900090, G09000900" -County and PUMA "G0900090, G09000901" -County and PUMA "G0900090, G09000902" -County and PUMA "G0900090, G09000903" -County and PUMA "G0900090, G09000904" -County and PUMA "G0900090, G09000905" -County and PUMA "G0900090, G09000906" -County and PUMA "G0900110, G09001100" -County and PUMA "G0900110, G09001101" -County and PUMA "G0900130, G09001300" -County and PUMA "G0900150, G09001500" -County and PUMA "G1000010, G10000200" -County and PUMA "G1000030, G10000101" -County and PUMA "G1000030, G10000102" -County and PUMA "G1000030, G10000103" -County and PUMA "G1000030, G10000104" -County and PUMA "G1000050, G10000300" -County and PUMA "G1100010, G11000101" -County and PUMA "G1100010, G11000102" -County and PUMA "G1100010, G11000103" -County and PUMA "G1100010, G11000104" -County and PUMA "G1100010, G11000105" -County and PUMA "G1200010, G12000101" -County and PUMA "G1200010, G12000102" -County and PUMA "G1200030, G12008900" -County and PUMA "G1200050, G12000500" -County and PUMA "G1200070, G12002300" -County and PUMA "G1200090, G12000901" -County and PUMA "G1200090, G12000902" -County and PUMA "G1200090, G12000903" -County and PUMA "G1200090, G12000904" -County and PUMA "G1200110, G12001101" -County and PUMA "G1200110, G12001102" -County and PUMA "G1200110, G12001103" -County and PUMA "G1200110, G12001104" -County and PUMA "G1200110, G12001105" -County and PUMA "G1200110, G12001106" -County and PUMA "G1200110, G12001107" -County and PUMA "G1200110, G12001108" -County and PUMA "G1200110, G12001109" -County and PUMA "G1200110, G12001110" -County and PUMA "G1200110, G12001111" -County and PUMA "G1200110, G12001112" -County and PUMA "G1200110, G12001113" -County and PUMA "G1200110, G12001114" -County and PUMA "G1200130, G12006300" -County and PUMA "G1200150, G12001500" -County and PUMA "G1200170, G12001701" -County and PUMA "G1200190, G12001900" -County and PUMA "G1200210, G12002101" -County and PUMA "G1200210, G12002102" -County and PUMA "G1200210, G12002103" -County and PUMA "G1200230, G12002300" -County and PUMA "G1200270, G12002700" -County and PUMA "G1200290, G12002300" -County and PUMA "G1200310, G12003101" -County and PUMA "G1200310, G12003102" -County and PUMA "G1200310, G12003103" -County and PUMA "G1200310, G12003104" -County and PUMA "G1200310, G12003105" -County and PUMA "G1200310, G12003106" -County and PUMA "G1200310, G12003107" -County and PUMA "G1200330, G12003301" -County and PUMA "G1200330, G12003302" -County and PUMA "G1200350, G12003500" -County and PUMA "G1200370, G12006300" -County and PUMA "G1200390, G12006300" -County and PUMA "G1200410, G12002300" -County and PUMA "G1200430, G12009300" -County and PUMA "G1200450, G12006300" -County and PUMA "G1200470, G12012100" -County and PUMA "G1200490, G12002700" -County and PUMA "G1200510, G12009300" -County and PUMA "G1200530, G12005301" -County and PUMA "G1200550, G12002700" -County and PUMA "G1200550, G12009300" -County and PUMA "G1200570, G12005701" -County and PUMA "G1200570, G12005702" -County and PUMA "G1200570, G12005703" -County and PUMA "G1200570, G12005704" -County and PUMA "G1200570, G12005705" -County and PUMA "G1200570, G12005706" -County and PUMA "G1200570, G12005707" -County and PUMA "G1200570, G12005708" -County and PUMA "G1200590, G12000500" -County and PUMA "G1200610, G12006100" -County and PUMA "G1200630, G12006300" -County and PUMA "G1200650, G12006300" -County and PUMA "G1200670, G12012100" -County and PUMA "G1200690, G12006901" -County and PUMA "G1200690, G12006902" -County and PUMA "G1200690, G12006903" -County and PUMA "G1200710, G12007101" -County and PUMA "G1200710, G12007102" -County and PUMA "G1200710, G12007103" -County and PUMA "G1200710, G12007104" -County and PUMA "G1200710, G12007105" -County and PUMA "G1200730, G12007300" -County and PUMA "G1200730, G12007301" -County and PUMA "G1200750, G12002300" -County and PUMA "G1200770, G12006300" -County and PUMA "G1200790, G12012100" -County and PUMA "G1200810, G12008101" -County and PUMA "G1200810, G12008102" -County and PUMA "G1200810, G12008103" -County and PUMA "G1200830, G12008301" -County and PUMA "G1200830, G12008302" -County and PUMA "G1200830, G12008303" -County and PUMA "G1200850, G12008500" -County and PUMA "G1200860, G12008601" -County and PUMA "G1200860, G12008602" -County and PUMA "G1200860, G12008603" -County and PUMA "G1200860, G12008604" -County and PUMA "G1200860, G12008605" -County and PUMA "G1200860, G12008606" -County and PUMA "G1200860, G12008607" -County and PUMA "G1200860, G12008608" -County and PUMA "G1200860, G12008609" -County and PUMA "G1200860, G12008610" -County and PUMA "G1200860, G12008611" -County and PUMA "G1200860, G12008612" -County and PUMA "G1200860, G12008613" -County and PUMA "G1200860, G12008614" -County and PUMA "G1200860, G12008615" -County and PUMA "G1200860, G12008616" -County and PUMA "G1200860, G12008617" -County and PUMA "G1200860, G12008618" -County and PUMA "G1200860, G12008619" -County and PUMA "G1200860, G12008620" -County and PUMA "G1200860, G12008621" -County and PUMA "G1200860, G12008622" -County and PUMA "G1200860, G12008623" -County and PUMA "G1200860, G12008624" -County and PUMA "G1200860, G12008700" -County and PUMA "G1200870, G12008700" -County and PUMA "G1200890, G12008900" -County and PUMA "G1200910, G12009100" -County and PUMA "G1200930, G12009300" -County and PUMA "G1200950, G12009501" -County and PUMA "G1200950, G12009502" -County and PUMA "G1200950, G12009503" -County and PUMA "G1200950, G12009504" -County and PUMA "G1200950, G12009505" -County and PUMA "G1200950, G12009506" -County and PUMA "G1200950, G12009507" -County and PUMA "G1200950, G12009508" -County and PUMA "G1200950, G12009509" -County and PUMA "G1200950, G12009510" -County and PUMA "G1200970, G12009701" -County and PUMA "G1200970, G12009702" -County and PUMA "G1200990, G12009901" -County and PUMA "G1200990, G12009902" -County and PUMA "G1200990, G12009903" -County and PUMA "G1200990, G12009904" -County and PUMA "G1200990, G12009905" -County and PUMA "G1200990, G12009906" -County and PUMA "G1200990, G12009907" -County and PUMA "G1200990, G12009908" -County and PUMA "G1200990, G12009909" -County and PUMA "G1200990, G12009910" -County and PUMA "G1200990, G12009911" -County and PUMA "G1201010, G12010101" -County and PUMA "G1201010, G12010102" -County and PUMA "G1201010, G12010103" -County and PUMA "G1201010, G12010104" -County and PUMA "G1201030, G12010301" -County and PUMA "G1201030, G12010302" -County and PUMA "G1201030, G12010303" -County and PUMA "G1201030, G12010304" -County and PUMA "G1201030, G12010305" -County and PUMA "G1201030, G12010306" -County and PUMA "G1201030, G12010307" -County and PUMA "G1201030, G12010308" -County and PUMA "G1201050, G12010501" -County and PUMA "G1201050, G12010502" -County and PUMA "G1201050, G12010503" -County and PUMA "G1201050, G12010504" -County and PUMA "G1201070, G12010700" -County and PUMA "G1201090, G12010700" -County and PUMA "G1201090, G12010900" -County and PUMA "G1201110, G12011101" -County and PUMA "G1201110, G12011102" -County and PUMA "G1201130, G12011300" -County and PUMA "G1201150, G12011501" -County and PUMA "G1201150, G12011502" -County and PUMA "G1201150, G12011503" -County and PUMA "G1201170, G12011701" -County and PUMA "G1201170, G12011702" -County and PUMA "G1201170, G12011703" -County and PUMA "G1201170, G12011704" -County and PUMA "G1201190, G12006902" -County and PUMA "G1201190, G12006903" -County and PUMA "G1201210, G12012100" -County and PUMA "G1201230, G12012100" -County and PUMA "G1201250, G12002300" -County and PUMA "G1201270, G12003500" -County and PUMA "G1201270, G12012701" -County and PUMA "G1201270, G12012702" -County and PUMA "G1201270, G12012703" -County and PUMA "G1201270, G12012704" -County and PUMA "G1201290, G12006300" -County and PUMA "G1201310, G12000500" -County and PUMA "G1201330, G12000500" -County and PUMA "G1300010, G13001200" -County and PUMA "G1300030, G13000500" -County and PUMA "G1300050, G13000500" -County and PUMA "G1300070, G13001100" -County and PUMA "G1300090, G13001600" -County and PUMA "G1300110, G13003500" -County and PUMA "G1300130, G13003800" -County and PUMA "G1300150, G13002900" -County and PUMA "G1300170, G13000700" -County and PUMA "G1300190, G13000700" -County and PUMA "G1300210, G13001400" -County and PUMA "G1300230, G13001300" -County and PUMA "G1300250, G13000500" -County and PUMA "G1300270, G13000700" -County and PUMA "G1300290, G13000200" -County and PUMA "G1300310, G13000300" -County and PUMA "G1300330, G13004200" -County and PUMA "G1300350, G13001900" -County and PUMA "G1300370, G13001100" -County and PUMA "G1300390, G13000100" -County and PUMA "G1300430, G13001300" -County and PUMA "G1300450, G13002300" -County and PUMA "G1300470, G13002600" -County and PUMA "G1300490, G13000500" -County and PUMA "G1300510, G13000401" -County and PUMA "G1300510, G13000402" -County and PUMA "G1300530, G13001700" -County and PUMA "G1300550, G13002600" -County and PUMA "G1300570, G13003101" -County and PUMA "G1300570, G13003102" -County and PUMA "G1300590, G13003600" -County and PUMA "G1300610, G13001800" -County and PUMA "G1300630, G13005001" -County and PUMA "G1300630, G13005002" -County and PUMA "G1300650, G13000500" -County and PUMA "G1300670, G13003001" -County and PUMA "G1300670, G13003002" -County and PUMA "G1300670, G13003003" -County and PUMA "G1300670, G13003004" -County and PUMA "G1300670, G13003005" -County and PUMA "G1300690, G13000500" -County and PUMA "G1300710, G13000800" -County and PUMA "G1300730, G13004100" -County and PUMA "G1300750, G13000700" -County and PUMA "G1300770, G13002100" -County and PUMA "G1300790, G13001600" -County and PUMA "G1300810, G13001800" -County and PUMA "G1300830, G13002600" -County and PUMA "G1300850, G13003200" -County and PUMA "G1300870, G13001100" -County and PUMA "G1300890, G13001007" -County and PUMA "G1300890, G13001008" -County and PUMA "G1300890, G13002001" -County and PUMA "G1300890, G13002002" -County and PUMA "G1300890, G13002003" -County and PUMA "G1300890, G13002004" -County and PUMA "G1300910, G13001300" -County and PUMA "G1300930, G13001800" -County and PUMA "G1300950, G13000900" -County and PUMA "G1300970, G13004400" -County and PUMA "G1300990, G13001100" -County and PUMA "G1301010, G13000500" -County and PUMA "G1301030, G13000300" -County and PUMA "G1301050, G13003700" -County and PUMA "G1301070, G13001300" -County and PUMA "G1301090, G13001200" -County and PUMA "G1301110, G13002800" -County and PUMA "G1301130, G13002400" -County and PUMA "G1301150, G13002500" -County and PUMA "G1301170, G13003300" -County and PUMA "G1301190, G13003500" -County and PUMA "G1301210, G13001001" -County and PUMA "G1301210, G13001002" -County and PUMA "G1301210, G13001003" -County and PUMA "G1301210, G13001004" -County and PUMA "G1301210, G13001005" -County and PUMA "G1301210, G13001006" -County and PUMA "G1301210, G13001007" -County and PUMA "G1301210, G13004600" -County and PUMA "G1301230, G13002800" -County and PUMA "G1301250, G13004200" -County and PUMA "G1301270, G13000100" -County and PUMA "G1301290, G13002800" -County and PUMA "G1301310, G13001100" -County and PUMA "G1301330, G13003700" -County and PUMA "G1301350, G13004001" -County and PUMA "G1301350, G13004002" -County and PUMA "G1301350, G13004003" -County and PUMA "G1301350, G13004004" -County and PUMA "G1301350, G13004005" -County and PUMA "G1301350, G13004006" -County and PUMA "G1301370, G13003500" -County and PUMA "G1301390, G13003400" -County and PUMA "G1301410, G13004200" -County and PUMA "G1301430, G13002500" -County and PUMA "G1301450, G13001800" -County and PUMA "G1301470, G13003500" -County and PUMA "G1301490, G13002200" -County and PUMA "G1301510, G13006001" -County and PUMA "G1301510, G13006002" -County and PUMA "G1301530, G13001500" -County and PUMA "G1301550, G13000700" -County and PUMA "G1301570, G13003800" -County and PUMA "G1301590, G13003900" -County and PUMA "G1301610, G13001200" -County and PUMA "G1301630, G13004200" -County and PUMA "G1301650, G13004200" -County and PUMA "G1301670, G13001300" -County and PUMA "G1301690, G13001600" -County and PUMA "G1301710, G13001900" -County and PUMA "G1301730, G13000500" -County and PUMA "G1301750, G13001300" -County and PUMA "G1301770, G13000900" -County and PUMA "G1301790, G13000200" -County and PUMA "G1301810, G13004200" -County and PUMA "G1301830, G13000200" -County and PUMA "G1301850, G13000600" -County and PUMA "G1301870, G13003200" -County and PUMA "G1301890, G13004200" -County and PUMA "G1301910, G13000100" -County and PUMA "G1301930, G13001800" -County and PUMA "G1301950, G13003700" -County and PUMA "G1301970, G13001800" -County and PUMA "G1301990, G13002200" -County and PUMA "G1302010, G13001100" -County and PUMA "G1302050, G13001100" -County and PUMA "G1302070, G13001600" -County and PUMA "G1302090, G13001200" -County and PUMA "G1302110, G13003900" -County and PUMA "G1302130, G13002800" -County and PUMA "G1302150, G13001700" -County and PUMA "G1302170, G13004300" -County and PUMA "G1302190, G13003700" -County and PUMA "G1302210, G13003700" -County and PUMA "G1302230, G13004500" -County and PUMA "G1302250, G13001600" -County and PUMA "G1302270, G13002800" -County and PUMA "G1302290, G13000500" -County and PUMA "G1302310, G13001900" -County and PUMA "G1302330, G13002500" -County and PUMA "G1302350, G13001500" -County and PUMA "G1302370, G13001600" -County and PUMA "G1302390, G13001800" -County and PUMA "G1302410, G13003200" -County and PUMA "G1302430, G13001800" -County and PUMA "G1302450, G13004000" -County and PUMA "G1302470, G13004300" -County and PUMA "G1302490, G13001800" -County and PUMA "G1302510, G13000300" -County and PUMA "G1302530, G13001100" -County and PUMA "G1302550, G13001900" -County and PUMA "G1302570, G13003500" -County and PUMA "G1302590, G13001800" -County and PUMA "G1302610, G13001800" -County and PUMA "G1302630, G13001800" -County and PUMA "G1302650, G13004200" -County and PUMA "G1302670, G13001200" -County and PUMA "G1302690, G13001800" -County and PUMA "G1302710, G13001200" -County and PUMA "G1302730, G13001100" -County and PUMA "G1302750, G13000800" -County and PUMA "G1302770, G13000700" -County and PUMA "G1302790, G13001200" -County and PUMA "G1302810, G13003200" -County and PUMA "G1302830, G13001300" -County and PUMA "G1302850, G13002200" -County and PUMA "G1302870, G13000700" -County and PUMA "G1302890, G13001600" -County and PUMA "G1302910, G13003200" -County and PUMA "G1302930, G13001900" -County and PUMA "G1302950, G13002600" -County and PUMA "G1302970, G13003900" -County and PUMA "G1302990, G13000500" -County and PUMA "G1303010, G13004200" -County and PUMA "G1303030, G13004200" -County and PUMA "G1303050, G13001200" -County and PUMA "G1303070, G13001800" -County and PUMA "G1303090, G13001200" -County and PUMA "G1303110, G13003200" -County and PUMA "G1303130, G13002700" -County and PUMA "G1303150, G13001300" -County and PUMA "G1303170, G13004200" -County and PUMA "G1303190, G13001600" -County and PUMA "G1303210, G13000800" -County and PUMA "G1500010, G15000200" -County and PUMA "G1500030, G15000301" -County and PUMA "G1500030, G15000302" -County and PUMA "G1500030, G15000303" -County and PUMA "G1500030, G15000304" -County and PUMA "G1500030, G15000305" -County and PUMA "G1500030, G15000306" -County and PUMA "G1500030, G15000307" -County and PUMA "G1500030, G15000308" -County and PUMA "G1500050, G15000100" -County and PUMA "G1500070, G15000100" -County and PUMA "G1500090, G15000100" -County and PUMA "G1600010, G16000400" -County and PUMA "G1600010, G16000600" -County and PUMA "G1600010, G16000701" -County and PUMA "G1600010, G16000702" -County and PUMA "G1600010, G16000800" -County and PUMA "G1600030, G16000300" -County and PUMA "G1600050, G16001300" -County and PUMA "G1600070, G16001300" -County and PUMA "G1600090, G16000100" -County and PUMA "G1600110, G16001100" -County and PUMA "G1600110, G16001300" -County and PUMA "G1600130, G16001000" -County and PUMA "G1600150, G16000300" -County and PUMA "G1600170, G16000100" -County and PUMA "G1600190, G16001200" -County and PUMA "G1600210, G16000100" -County and PUMA "G1600230, G16000300" -County and PUMA "G1600250, G16001000" -County and PUMA "G1600270, G16000400" -County and PUMA "G1600270, G16000500" -County and PUMA "G1600270, G16000600" -County and PUMA "G1600290, G16001300" -County and PUMA "G1600310, G16000900" -County and PUMA "G1600330, G16000300" -County and PUMA "G1600350, G16000300" -County and PUMA "G1600370, G16000300" -County and PUMA "G1600390, G16001000" -County and PUMA "G1600410, G16001300" -County and PUMA "G1600430, G16001100" -County and PUMA "G1600450, G16000400" -County and PUMA "G1600470, G16001000" -County and PUMA "G1600490, G16000300" -County and PUMA "G1600510, G16001100" -County and PUMA "G1600530, G16001000" -County and PUMA "G1600550, G16000100" -County and PUMA "G1600550, G16000200" -County and PUMA "G1600570, G16000100" -County and PUMA "G1600590, G16000300" -County and PUMA "G1600610, G16000300" -County and PUMA "G1600630, G16001000" -County and PUMA "G1600650, G16001100" -County and PUMA "G1600670, G16001000" -County and PUMA "G1600690, G16000300" -County and PUMA "G1600710, G16001300" -County and PUMA "G1600730, G16000500" -County and PUMA "G1600750, G16000400" -County and PUMA "G1600770, G16001300" -County and PUMA "G1600790, G16000100" -County and PUMA "G1600810, G16001100" -County and PUMA "G1600830, G16000900" -County and PUMA "G1600850, G16000300" -County and PUMA "G1600870, G16000400" -County and PUMA "G1700010, G17000300" -County and PUMA "G1700030, G17000800" -County and PUMA "G1700050, G17000501" -County and PUMA "G1700070, G17002901" -County and PUMA "G1700090, G17000300" -County and PUMA "G1700110, G17002501" -County and PUMA "G1700130, G17000401" -County and PUMA "G1700150, G17000104" -County and PUMA "G1700170, G17000401" -County and PUMA "G1700190, G17002100" -County and PUMA "G1700210, G17001602" -County and PUMA "G1700230, G17000700" -County and PUMA "G1700250, G17000700" -County and PUMA "G1700270, G17000501" -County and PUMA "G1700290, G17000600" -County and PUMA "G1700310, G17003401" -County and PUMA "G1700310, G17003407" -County and PUMA "G1700310, G17003408" -County and PUMA "G1700310, G17003409" -County and PUMA "G1700310, G17003410" -County and PUMA "G1700310, G17003411" -County and PUMA "G1700310, G17003412" -County and PUMA "G1700310, G17003413" -County and PUMA "G1700310, G17003414" -County and PUMA "G1700310, G17003415" -County and PUMA "G1700310, G17003416" -County and PUMA "G1700310, G17003417" -County and PUMA "G1700310, G17003418" -County and PUMA "G1700310, G17003419" -County and PUMA "G1700310, G17003420" -County and PUMA "G1700310, G17003421" -County and PUMA "G1700310, G17003422" -County and PUMA "G1700310, G17003501" -County and PUMA "G1700310, G17003502" -County and PUMA "G1700310, G17003503" -County and PUMA "G1700310, G17003504" -County and PUMA "G1700310, G17003520" -County and PUMA "G1700310, G17003521" -County and PUMA "G1700310, G17003522" -County and PUMA "G1700310, G17003523" -County and PUMA "G1700310, G17003524" -County and PUMA "G1700310, G17003525" -County and PUMA "G1700310, G17003526" -County and PUMA "G1700310, G17003527" -County and PUMA "G1700310, G17003528" -County and PUMA "G1700310, G17003529" -County and PUMA "G1700310, G17003530" -County and PUMA "G1700310, G17003531" -County and PUMA "G1700310, G17003532" -County and PUMA "G1700330, G17000700" -County and PUMA "G1700350, G17000600" -County and PUMA "G1700370, G17002601" -County and PUMA "G1700390, G17001602" -County and PUMA "G1700410, G17000600" -County and PUMA "G1700430, G17003202" -County and PUMA "G1700430, G17003203" -County and PUMA "G1700430, G17003204" -County and PUMA "G1700430, G17003205" -County and PUMA "G1700430, G17003207" -County and PUMA "G1700430, G17003208" -County and PUMA "G1700430, G17003209" -County and PUMA "G1700450, G17000600" -County and PUMA "G1700470, G17000800" -County and PUMA "G1700490, G17000501" -County and PUMA "G1700510, G17000501" -County and PUMA "G1700530, G17002200" -County and PUMA "G1700550, G17000900" -County and PUMA "G1700570, G17000202" -County and PUMA "G1700590, G17000800" -County and PUMA "G1700610, G17000401" -County and PUMA "G1700630, G17003700" -County and PUMA "G1700650, G17000800" -County and PUMA "G1700670, G17000202" -County and PUMA "G1700690, G17000800" -County and PUMA "G1700710, G17000202" -County and PUMA "G1700730, G17000202" -County and PUMA "G1700750, G17002200" -County and PUMA "G1700770, G17000900" -County and PUMA "G1700790, G17000700" -County and PUMA "G1700810, G17001001" -County and PUMA "G1700830, G17000401" -County and PUMA "G1700850, G17000104" -County and PUMA "G1700870, G17000800" -County and PUMA "G1700890, G17003005" -County and PUMA "G1700890, G17003007" -County and PUMA "G1700890, G17003008" -County and PUMA "G1700890, G17003009" -County and PUMA "G1700910, G17002300" -County and PUMA "G1700930, G17003700" -County and PUMA "G1700950, G17002501" -County and PUMA "G1700970, G17003306" -County and PUMA "G1700970, G17003307" -County and PUMA "G1700970, G17003308" -County and PUMA "G1700970, G17003309" -County and PUMA "G1700970, G17003310" -County and PUMA "G1700990, G17002400" -County and PUMA "G1701010, G17000700" -County and PUMA "G1701030, G17000104" -County and PUMA "G1701050, G17002200" -County and PUMA "G1701070, G17001602" -County and PUMA "G1701090, G17000202" -County and PUMA "G1701110, G17003601" -County and PUMA "G1701110, G17003602" -County and PUMA "G1701130, G17002000" -County and PUMA "G1701150, G17001500" -County and PUMA "G1701170, G17000401" -County and PUMA "G1701190, G17001204" -County and PUMA "G1701190, G17001205" -County and PUMA "G1701210, G17001001" -County and PUMA "G1701230, G17002501" -County and PUMA "G1701250, G17000300" -County and PUMA "G1701270, G17000800" -County and PUMA "G1701290, G17001602" -County and PUMA "G1701310, G17000202" -County and PUMA "G1701330, G17001001" -County and PUMA "G1701350, G17000501" -County and PUMA "G1701370, G17000401" -County and PUMA "G1701390, G17001602" -County and PUMA "G1701410, G17002700" -County and PUMA "G1701430, G17001701" -County and PUMA "G1701450, G17000900" -County and PUMA "G1701470, G17001602" -County and PUMA "G1701490, G17000300" -County and PUMA "G1701510, G17000800" -County and PUMA "G1701530, G17000800" -County and PUMA "G1701550, G17002501" -County and PUMA "G1701570, G17001001" -County and PUMA "G1701590, G17000700" -County and PUMA "G1701610, G17000105" -County and PUMA "G1701630, G17001104" -County and PUMA "G1701630, G17001105" -County and PUMA "G1701650, G17000800" -County and PUMA "G1701670, G17001300" -County and PUMA "G1701690, G17000300" -County and PUMA "G1701710, G17000401" -County and PUMA "G1701730, G17001602" -County and PUMA "G1701750, G17002501" -County and PUMA "G1701770, G17002700" -County and PUMA "G1701790, G17001900" -County and PUMA "G1701810, G17000800" -County and PUMA "G1701830, G17002200" -County and PUMA "G1701850, G17000800" -County and PUMA "G1701870, G17000202" -County and PUMA "G1701890, G17001001" -County and PUMA "G1701910, G17000700" -County and PUMA "G1701930, G17000800" -County and PUMA "G1701950, G17000104" -County and PUMA "G1701970, G17003102" -County and PUMA "G1701970, G17003105" -County and PUMA "G1701970, G17003106" -County and PUMA "G1701970, G17003107" -County and PUMA "G1701970, G17003108" -County and PUMA "G1701990, G17000900" -County and PUMA "G1702010, G17002801" -County and PUMA "G1702010, G17002901" -County and PUMA "G1702030, G17002501" -County and PUMA "G1800010, G18000900" -County and PUMA "G1800030, G18001001" -County and PUMA "G1800030, G18001002" -County and PUMA "G1800030, G18001003" -County and PUMA "G1800050, G18002900" -County and PUMA "G1800070, G18001100" -County and PUMA "G1800090, G18001500" -County and PUMA "G1800110, G18001801" -County and PUMA "G1800130, G18002100" -County and PUMA "G1800150, G18001100" -County and PUMA "G1800170, G18001300" -County and PUMA "G1800190, G18003600" -County and PUMA "G1800210, G18001600" -County and PUMA "G1800230, G18001100" -County and PUMA "G1800250, G18003400" -County and PUMA "G1800270, G18002700" -County and PUMA "G1800290, G18003100" -County and PUMA "G1800310, G18003000" -County and PUMA "G1800330, G18000600" -County and PUMA "G1800350, G18002000" -County and PUMA "G1800370, G18003400" -County and PUMA "G1800390, G18000500" -County and PUMA "G1800410, G18002600" -County and PUMA "G1800430, G18003500" -County and PUMA "G1800450, G18001600" -County and PUMA "G1800470, G18003100" -County and PUMA "G1800490, G18000700" -County and PUMA "G1800510, G18003200" -County and PUMA "G1800530, G18001400" -County and PUMA "G1800550, G18002700" -County and PUMA "G1800570, G18001801" -County and PUMA "G1800570, G18001802" -County and PUMA "G1800570, G18001803" -County and PUMA "G1800590, G18002500" -County and PUMA "G1800610, G18003500" -County and PUMA "G1800630, G18002200" -County and PUMA "G1800650, G18001500" -County and PUMA "G1800670, G18001300" -County and PUMA "G1800690, G18000900" -County and PUMA "G1800710, G18002900" -County and PUMA "G1800730, G18000700" -County and PUMA "G1800750, G18001500" -County and PUMA "G1800770, G18003000" -County and PUMA "G1800790, G18003000" -County and PUMA "G1800810, G18002400" -County and PUMA "G1800830, G18003400" -County and PUMA "G1800850, G18000800" -County and PUMA "G1800870, G18000600" -County and PUMA "G1800890, G18000101" -County and PUMA "G1800890, G18000102" -County and PUMA "G1800890, G18000103" -County and PUMA "G1800890, G18000104" -County and PUMA "G1800910, G18000300" -County and PUMA "G1800930, G18002700" -County and PUMA "G1800950, G18001900" -County and PUMA "G1800970, G18002301" -County and PUMA "G1800970, G18002302" -County and PUMA "G1800970, G18002303" -County and PUMA "G1800970, G18002304" -County and PUMA "G1800970, G18002305" -County and PUMA "G1800970, G18002306" -County and PUMA "G1800970, G18002307" -County and PUMA "G1800990, G18000800" -County and PUMA "G1801010, G18002700" -County and PUMA "G1801030, G18001400" -County and PUMA "G1801050, G18002800" -County and PUMA "G1801070, G18001100" -County and PUMA "G1801090, G18002100" -County and PUMA "G1801110, G18000700" -County and PUMA "G1801130, G18000600" -County and PUMA "G1801150, G18003100" -County and PUMA "G1801170, G18002700" -County and PUMA "G1801190, G18002700" -County and PUMA "G1801210, G18001600" -County and PUMA "G1801230, G18003400" -County and PUMA "G1801250, G18003400" -County and PUMA "G1801270, G18000200" -County and PUMA "G1801290, G18003200" -County and PUMA "G1801310, G18000700" -County and PUMA "G1801330, G18002100" -County and PUMA "G1801350, G18001500" -County and PUMA "G1801370, G18003100" -County and PUMA "G1801390, G18002600" -County and PUMA "G1801410, G18000401" -County and PUMA "G1801410, G18000402" -County and PUMA "G1801430, G18003000" -County and PUMA "G1801450, G18002500" -County and PUMA "G1801470, G18003400" -County and PUMA "G1801490, G18000700" -County and PUMA "G1801510, G18000600" -County and PUMA "G1801530, G18001600" -County and PUMA "G1801550, G18003100" -County and PUMA "G1801570, G18001200" -County and PUMA "G1801590, G18001300" -County and PUMA "G1801610, G18002600" -County and PUMA "G1801630, G18003300" -County and PUMA "G1801650, G18001600" -County and PUMA "G1801670, G18001700" -County and PUMA "G1801690, G18001400" -County and PUMA "G1801710, G18001600" -County and PUMA "G1801730, G18003200" -County and PUMA "G1801750, G18003500" -County and PUMA "G1801770, G18002600" -County and PUMA "G1801790, G18000900" -County and PUMA "G1801810, G18001100" -County and PUMA "G1801830, G18000900" -County and PUMA "G1900010, G19001800" -County and PUMA "G1900030, G19001800" -County and PUMA "G1900050, G19000400" -County and PUMA "G1900070, G19001800" -County and PUMA "G1900090, G19001800" -County and PUMA "G1900110, G19001200" -County and PUMA "G1900130, G19000500" -County and PUMA "G1900150, G19001300" -County and PUMA "G1900170, G19000400" -County and PUMA "G1900190, G19000700" -County and PUMA "G1900210, G19001900" -County and PUMA "G1900230, G19000600" -County and PUMA "G1900250, G19001900" -County and PUMA "G1900270, G19001900" -County and PUMA "G1900290, G19002100" -County and PUMA "G1900310, G19000800" -County and PUMA "G1900330, G19000200" -County and PUMA "G1900350, G19001900" -County and PUMA "G1900370, G19000400" -County and PUMA "G1900390, G19001800" -County and PUMA "G1900410, G19000100" -County and PUMA "G1900430, G19000400" -County and PUMA "G1900450, G19000800" -County and PUMA "G1900470, G19001900" -County and PUMA "G1900490, G19001400" -County and PUMA "G1900490, G19001500" -County and PUMA "G1900510, G19002200" -County and PUMA "G1900530, G19001800" -County and PUMA "G1900550, G19000700" -County and PUMA "G1900570, G19002300" -County and PUMA "G1900590, G19000100" -County and PUMA "G1900610, G19000700" -County and PUMA "G1900630, G19000100" -County and PUMA "G1900650, G19000400" -County and PUMA "G1900670, G19000200" -County and PUMA "G1900690, G19000600" -County and PUMA "G1900710, G19002100" -County and PUMA "G1900730, G19001900" -County and PUMA "G1900750, G19000600" -County and PUMA "G1900770, G19001800" -County and PUMA "G1900790, G19000600" -County and PUMA "G1900810, G19000200" -County and PUMA "G1900830, G19000600" -County and PUMA "G1900850, G19002100" -County and PUMA "G1900870, G19002300" -County and PUMA "G1900890, G19000400" -County and PUMA "G1900910, G19000600" -County and PUMA "G1900930, G19001900" -County and PUMA "G1900950, G19001200" -County and PUMA "G1900970, G19000700" -County and PUMA "G1900990, G19001400" -County and PUMA "G1901010, G19002200" -County and PUMA "G1901030, G19001100" -County and PUMA "G1901050, G19000800" -County and PUMA "G1901070, G19002200" -County and PUMA "G1901090, G19000200" -County and PUMA "G1901110, G19002300" -County and PUMA "G1901130, G19001000" -County and PUMA "G1901150, G19002300" -County and PUMA "G1901170, G19001800" -County and PUMA "G1901190, G19000100" -County and PUMA "G1901210, G19001400" -County and PUMA "G1901230, G19002200" -County and PUMA "G1901250, G19001400" -County and PUMA "G1901270, G19001200" -County and PUMA "G1901290, G19002100" -County and PUMA "G1901310, G19000200" -County and PUMA "G1901330, G19001900" -County and PUMA "G1901350, G19001800" -County and PUMA "G1901370, G19002100" -County and PUMA "G1901390, G19000800" -County and PUMA "G1901410, G19000100" -County and PUMA "G1901430, G19000100" -County and PUMA "G1901450, G19002100" -County and PUMA "G1901470, G19000100" -County and PUMA "G1901490, G19002000" -County and PUMA "G1901510, G19001900" -County and PUMA "G1901530, G19001500" -County and PUMA "G1901530, G19001600" -County and PUMA "G1901530, G19001700" -County and PUMA "G1901550, G19002100" -County and PUMA "G1901570, G19001200" -County and PUMA "G1901590, G19001800" -County and PUMA "G1901610, G19001900" -County and PUMA "G1901630, G19000900" -County and PUMA "G1901650, G19002100" -County and PUMA "G1901670, G19000100" -County and PUMA "G1901690, G19001300" -County and PUMA "G1901710, G19001200" -County and PUMA "G1901730, G19001800" -County and PUMA "G1901750, G19001800" -County and PUMA "G1901770, G19002200" -County and PUMA "G1901790, G19002200" -County and PUMA "G1901810, G19001400" -County and PUMA "G1901830, G19002200" -County and PUMA "G1901850, G19001800" -County and PUMA "G1901870, G19000600" -County and PUMA "G1901890, G19000200" -County and PUMA "G1901910, G19000400" -County and PUMA "G1901930, G19002000" -County and PUMA "G1901950, G19000200" -County and PUMA "G1901970, G19000600" -County and PUMA "G2000010, G20001400" -County and PUMA "G2000030, G20001400" -County and PUMA "G2000050, G20000400" -County and PUMA "G2000070, G20001100" -County and PUMA "G2000090, G20001100" -County and PUMA "G2000110, G20001400" -County and PUMA "G2000130, G20000802" -County and PUMA "G2000150, G20001302" -County and PUMA "G2000150, G20001304" -County and PUMA "G2000170, G20000900" -County and PUMA "G2000190, G20000900" -County and PUMA "G2000210, G20001500" -County and PUMA "G2000230, G20000100" -County and PUMA "G2000250, G20001200" -County and PUMA "G2000270, G20000200" -County and PUMA "G2000290, G20000200" -County and PUMA "G2000310, G20000900" -County and PUMA "G2000330, G20001100" -County and PUMA "G2000350, G20000900" -County and PUMA "G2000350, G20001100" -County and PUMA "G2000370, G20001500" -County and PUMA "G2000390, G20000100" -County and PUMA "G2000410, G20000200" -County and PUMA "G2000430, G20000400" -County and PUMA "G2000450, G20000700" -County and PUMA "G2000470, G20001100" -County and PUMA "G2000490, G20000900" -County and PUMA "G2000510, G20000100" -County and PUMA "G2000530, G20000200" -County and PUMA "G2000550, G20001200" -County and PUMA "G2000570, G20001200" -County and PUMA "G2000590, G20001400" -County and PUMA "G2000610, G20000300" -County and PUMA "G2000630, G20000100" -County and PUMA "G2000650, G20000100" -County and PUMA "G2000670, G20001200" -County and PUMA "G2000690, G20001200" -County and PUMA "G2000710, G20000100" -County and PUMA "G2000730, G20000900" -County and PUMA "G2000750, G20001200" -County and PUMA "G2000770, G20001100" -County and PUMA "G2000790, G20001301" -County and PUMA "G2000810, G20001200" -County and PUMA "G2000830, G20001200" -County and PUMA "G2000850, G20000802" -County and PUMA "G2000870, G20000400" -County and PUMA "G2000890, G20000200" -County and PUMA "G2000910, G20000601" -County and PUMA "G2000910, G20000602" -County and PUMA "G2000910, G20000603" -County and PUMA "G2000910, G20000604" -County and PUMA "G2000930, G20001200" -County and PUMA "G2000950, G20001100" -County and PUMA "G2000970, G20001100" -County and PUMA "G2000990, G20001500" -County and PUMA "G2001010, G20000100" -County and PUMA "G2001030, G20000400" -County and PUMA "G2001050, G20000200" -County and PUMA "G2001070, G20001400" -County and PUMA "G2001090, G20000100" -County and PUMA "G2001110, G20000900" -County and PUMA "G2001130, G20001000" -County and PUMA "G2001150, G20000900" -County and PUMA "G2001170, G20000200" -County and PUMA "G2001190, G20001200" -County and PUMA "G2001210, G20001400" -County and PUMA "G2001230, G20000200" -County and PUMA "G2001250, G20001500" -County and PUMA "G2001270, G20000900" -County and PUMA "G2001290, G20001200" -County and PUMA "G2001310, G20000200" -County and PUMA "G2001330, G20001500" -County and PUMA "G2001350, G20000100" -County and PUMA "G2001370, G20000100" -County and PUMA "G2001390, G20000802" -County and PUMA "G2001410, G20000100" -County and PUMA "G2001430, G20000200" -County and PUMA "G2001450, G20001100" -County and PUMA "G2001470, G20000100" -County and PUMA "G2001490, G20000300" -County and PUMA "G2001510, G20001100" -County and PUMA "G2001530, G20000100" -County and PUMA "G2001550, G20001000" -County and PUMA "G2001570, G20000200" -County and PUMA "G2001590, G20001000" -County and PUMA "G2001610, G20000300" -County and PUMA "G2001630, G20000100" -County and PUMA "G2001650, G20001100" -County and PUMA "G2001670, G20000100" -County and PUMA "G2001690, G20000200" -County and PUMA "G2001710, G20000100" -County and PUMA "G2001730, G20001301" -County and PUMA "G2001730, G20001302" -County and PUMA "G2001730, G20001303" -County and PUMA "G2001730, G20001304" -County and PUMA "G2001750, G20001200" -County and PUMA "G2001770, G20000801" -County and PUMA "G2001770, G20000802" -County and PUMA "G2001790, G20000100" -County and PUMA "G2001810, G20000100" -County and PUMA "G2001830, G20000100" -County and PUMA "G2001850, G20001100" -County and PUMA "G2001870, G20001200" -County and PUMA "G2001890, G20001200" -County and PUMA "G2001910, G20001100" -County and PUMA "G2001930, G20000100" -County and PUMA "G2001950, G20000100" -County and PUMA "G2001970, G20000802" -County and PUMA "G2001990, G20000100" -County and PUMA "G2002010, G20000200" -County and PUMA "G2002030, G20000100" -County and PUMA "G2002050, G20000900" -County and PUMA "G2002070, G20000900" -County and PUMA "G2002090, G20000500" -County and PUMA "G2100010, G21000600" -County and PUMA "G2100030, G21000400" -County and PUMA "G2100050, G21002000" -County and PUMA "G2100070, G21000100" -County and PUMA "G2100090, G21000400" -County and PUMA "G2100110, G21002700" -County and PUMA "G2100130, G21000900" -County and PUMA "G2100150, G21002500" -County and PUMA "G2100170, G21002300" -County and PUMA "G2100190, G21002800" -County and PUMA "G2100210, G21002100" -County and PUMA "G2100230, G21002700" -County and PUMA "G2100250, G21001000" -County and PUMA "G2100270, G21001300" -County and PUMA "G2100290, G21001600" -County and PUMA "G2100310, G21000400" -County and PUMA "G2100330, G21000200" -County and PUMA "G2100350, G21000100" -County and PUMA "G2100370, G21002600" -County and PUMA "G2100390, G21000100" -County and PUMA "G2100410, G21002600" -County and PUMA "G2100430, G21002800" -County and PUMA "G2100450, G21000600" -County and PUMA "G2100470, G21000300" -County and PUMA "G2100490, G21002300" -County and PUMA "G2100510, G21000800" -County and PUMA "G2100530, G21000600" -County and PUMA "G2100550, G21000200" -County and PUMA "G2100570, G21000600" -County and PUMA "G2100590, G21001500" -County and PUMA "G2100610, G21000400" -County and PUMA "G2100630, G21002800" -County and PUMA "G2100650, G21002200" -County and PUMA "G2100670, G21001901" -County and PUMA "G2100670, G21001902" -County and PUMA "G2100690, G21002700" -County and PUMA "G2100710, G21001100" -County and PUMA "G2100730, G21002000" -County and PUMA "G2100750, G21000100" -County and PUMA "G2100770, G21002600" -County and PUMA "G2100790, G21002100" -County and PUMA "G2100810, G21002600" -County and PUMA "G2100830, G21000100" -County and PUMA "G2100850, G21001300" -County and PUMA "G2100870, G21000600" -County and PUMA "G2100890, G21002800" -County and PUMA "G2100910, G21001500" -County and PUMA "G2100930, G21001200" -County and PUMA "G2100930, G21001300" -County and PUMA "G2100950, G21000900" -County and PUMA "G2100970, G21002300" -County and PUMA "G2100990, G21000400" -County and PUMA "G2101010, G21001400" -County and PUMA "G2101030, G21001800" -County and PUMA "G2101050, G21000100" -County and PUMA "G2101070, G21000200" -County and PUMA "G2101090, G21000800" -County and PUMA "G2101110, G21001701" -County and PUMA "G2101110, G21001702" -County and PUMA "G2101110, G21001703" -County and PUMA "G2101110, G21001704" -County and PUMA "G2101110, G21001705" -County and PUMA "G2101110, G21001706" -County and PUMA "G2101130, G21002100" -County and PUMA "G2101150, G21001100" -County and PUMA "G2101170, G21002400" -County and PUMA "G2101190, G21001000" -County and PUMA "G2101210, G21000900" -County and PUMA "G2101230, G21001200" -County and PUMA "G2101250, G21000800" -County and PUMA "G2101270, G21002800" -County and PUMA "G2101290, G21001000" -County and PUMA "G2101310, G21001000" -County and PUMA "G2101330, G21001000" -County and PUMA "G2101350, G21002700" -County and PUMA "G2101370, G21002100" -County and PUMA "G2101390, G21000200" -County and PUMA "G2101410, G21000400" -County and PUMA "G2101430, G21000300" -County and PUMA "G2101450, G21000100" -County and PUMA "G2101470, G21000700" -County and PUMA "G2101490, G21001400" -County and PUMA "G2101510, G21002200" -County and PUMA "G2101530, G21001100" -County and PUMA "G2101550, G21001200" -County and PUMA "G2101570, G21000100" -County and PUMA "G2101590, G21001100" -County and PUMA "G2101610, G21002700" -County and PUMA "G2101630, G21001300" -County and PUMA "G2101650, G21002700" -County and PUMA "G2101670, G21002000" -County and PUMA "G2101690, G21000400" -County and PUMA "G2101710, G21000400" -County and PUMA "G2101730, G21002700" -County and PUMA "G2101750, G21002700" -County and PUMA "G2101770, G21000200" -County and PUMA "G2101790, G21001200" -County and PUMA "G2101810, G21002300" -County and PUMA "G2101830, G21001400" -County and PUMA "G2101850, G21001800" -County and PUMA "G2101870, G21002600" -County and PUMA "G2101890, G21001000" -County and PUMA "G2101910, G21002600" -County and PUMA "G2101930, G21001000" -County and PUMA "G2101950, G21001100" -County and PUMA "G2101970, G21002200" -County and PUMA "G2101990, G21000700" -County and PUMA "G2102010, G21002700" -County and PUMA "G2102030, G21000800" -County and PUMA "G2102050, G21002700" -County and PUMA "G2102070, G21000600" -County and PUMA "G2102090, G21002300" -County and PUMA "G2102110, G21001600" -County and PUMA "G2102110, G21001800" -County and PUMA "G2102130, G21000400" -County and PUMA "G2102150, G21001600" -County and PUMA "G2102170, G21000600" -County and PUMA "G2102190, G21000300" -County and PUMA "G2102210, G21000300" -County and PUMA "G2102230, G21001800" -County and PUMA "G2102250, G21001400" -County and PUMA "G2102270, G21000500" -County and PUMA "G2102290, G21001200" -County and PUMA "G2102310, G21000700" -County and PUMA "G2102330, G21001400" -County and PUMA "G2102350, G21000900" -County and PUMA "G2102370, G21001000" -County and PUMA "G2102390, G21002000" -County and PUMA "G2200010, G22001100" -County and PUMA "G2200030, G22000800" -County and PUMA "G2200050, G22001600" -County and PUMA "G2200070, G22002000" -County and PUMA "G2200090, G22000600" -County and PUMA "G2200110, G22000800" -County and PUMA "G2200130, G22000300" -County and PUMA "G2200150, G22000200" -County and PUMA "G2200170, G22000100" -County and PUMA "G2200170, G22000101" -County and PUMA "G2200190, G22000800" -County and PUMA "G2200190, G22000900" -County and PUMA "G2200210, G22000500" -County and PUMA "G2200230, G22000900" -County and PUMA "G2200250, G22000600" -County and PUMA "G2200270, G22000300" -County and PUMA "G2200290, G22000600" -County and PUMA "G2200310, G22000300" -County and PUMA "G2200330, G22001500" -County and PUMA "G2200330, G22001501" -County and PUMA "G2200330, G22001502" -County and PUMA "G2200350, G22000500" -County and PUMA "G2200370, G22001400" -County and PUMA "G2200390, G22001000" -County and PUMA "G2200410, G22000500" -County and PUMA "G2200430, G22000600" -County and PUMA "G2200450, G22001300" -County and PUMA "G2200470, G22001400" -County and PUMA "G2200490, G22000500" -County and PUMA "G2200510, G22002300" -County and PUMA "G2200510, G22002301" -County and PUMA "G2200510, G22002302" -County and PUMA "G2200510, G22002500" -County and PUMA "G2200530, G22000900" -County and PUMA "G2200550, G22001200" -County and PUMA "G2200550, G22001201" -County and PUMA "G2200570, G22002000" -County and PUMA "G2200590, G22000600" -County and PUMA "G2200610, G22000300" -County and PUMA "G2200630, G22001700" -County and PUMA "G2200650, G22000500" -County and PUMA "G2200670, G22000500" -County and PUMA "G2200690, G22000300" -County and PUMA "G2200710, G22002400" -County and PUMA "G2200710, G22002401" -County and PUMA "G2200710, G22002402" -County and PUMA "G2200730, G22000400" -County and PUMA "G2200750, G22002500" -County and PUMA "G2200770, G22001400" -County and PUMA "G2200790, G22000700" -County and PUMA "G2200810, G22000300" -County and PUMA "G2200830, G22000500" -County and PUMA "G2200850, G22000300" -County and PUMA "G2200870, G22002500" -County and PUMA "G2200890, G22001900" -County and PUMA "G2200910, G22001700" -County and PUMA "G2200930, G22001900" -County and PUMA "G2200950, G22001900" -County and PUMA "G2200970, G22001000" -County and PUMA "G2200990, G22001300" -County and PUMA "G2201010, G22001300" -County and PUMA "G2201030, G22002200" -County and PUMA "G2201030, G22002201" -County and PUMA "G2201050, G22001800" -County and PUMA "G2201070, G22000500" -County and PUMA "G2201090, G22002100" -County and PUMA "G2201110, G22000500" -County and PUMA "G2201130, G22001100" -County and PUMA "G2201150, G22000700" -County and PUMA "G2201170, G22001800" -County and PUMA "G2201190, G22000200" -County and PUMA "G2201210, G22001400" -County and PUMA "G2201230, G22000500" -County and PUMA "G2201250, G22001400" -County and PUMA "G2201270, G22000600" -County and PUMA "G2300010, G23000600" -County and PUMA "G2300030, G23000100" -County and PUMA "G2300050, G23000700" -County and PUMA "G2300050, G23000800" -County and PUMA "G2300050, G23000900" -County and PUMA "G2300050, G23001000" -County and PUMA "G2300070, G23000200" -County and PUMA "G2300090, G23000500" -County and PUMA "G2300110, G23000400" -County and PUMA "G2300130, G23000500" -County and PUMA "G2300150, G23000500" -County and PUMA "G2300170, G23000200" -County and PUMA "G2300190, G23000300" -County and PUMA "G2300210, G23000200" -County and PUMA "G2300230, G23000700" -County and PUMA "G2300250, G23000200" -County and PUMA "G2300270, G23000500" -County and PUMA "G2300290, G23000100" -County and PUMA "G2300310, G23000800" -County and PUMA "G2300310, G23000900" -County and PUMA "G2400010, G24000100" -County and PUMA "G2400030, G24001201" -County and PUMA "G2400030, G24001202" -County and PUMA "G2400030, G24001203" -County and PUMA "G2400030, G24001204" -County and PUMA "G2400050, G24000501" -County and PUMA "G2400050, G24000502" -County and PUMA "G2400050, G24000503" -County and PUMA "G2400050, G24000504" -County and PUMA "G2400050, G24000505" -County and PUMA "G2400050, G24000506" -County and PUMA "G2400050, G24000507" -County and PUMA "G2400090, G24001500" -County and PUMA "G2400110, G24001300" -County and PUMA "G2400130, G24000400" -County and PUMA "G2400150, G24000700" -County and PUMA "G2400170, G24001600" -County and PUMA "G2400190, G24001300" -County and PUMA "G2400210, G24000301" -County and PUMA "G2400210, G24000302" -County and PUMA "G2400230, G24000100" -County and PUMA "G2400250, G24000601" -County and PUMA "G2400250, G24000602" -County and PUMA "G2400270, G24000901" -County and PUMA "G2400270, G24000902" -County and PUMA "G2400290, G24001300" -County and PUMA "G2400310, G24001001" -County and PUMA "G2400310, G24001002" -County and PUMA "G2400310, G24001003" -County and PUMA "G2400310, G24001004" -County and PUMA "G2400310, G24001005" -County and PUMA "G2400310, G24001006" -County and PUMA "G2400310, G24001007" -County and PUMA "G2400330, G24001101" -County and PUMA "G2400330, G24001102" -County and PUMA "G2400330, G24001103" -County and PUMA "G2400330, G24001104" -County and PUMA "G2400330, G24001105" -County and PUMA "G2400330, G24001106" -County and PUMA "G2400330, G24001107" -County and PUMA "G2400350, G24001300" -County and PUMA "G2400370, G24001500" -County and PUMA "G2400390, G24001400" -County and PUMA "G2400410, G24001300" -County and PUMA "G2400430, G24000200" -County and PUMA "G2400450, G24001400" -County and PUMA "G2400470, G24001400" -County and PUMA "G2405100, G24000801" -County and PUMA "G2405100, G24000802" -County and PUMA "G2405100, G24000803" -County and PUMA "G2405100, G24000804" -County and PUMA "G2405100, G24000805" -County and PUMA "G2500010, G25004700" -County and PUMA "G2500010, G25004800" -County and PUMA "G2500030, G25000100" -County and PUMA "G2500050, G25004200" -County and PUMA "G2500050, G25004301" -County and PUMA "G2500050, G25004302" -County and PUMA "G2500050, G25004303" -County and PUMA "G2500050, G25004500" -County and PUMA "G2500050, G25004901" -County and PUMA "G2500070, G25004800" -County and PUMA "G2500090, G25000701" -County and PUMA "G2500090, G25000702" -County and PUMA "G2500090, G25000703" -County and PUMA "G2500090, G25000704" -County and PUMA "G2500090, G25001000" -County and PUMA "G2500090, G25001300" -County and PUMA "G2500090, G25002800" -County and PUMA "G2500110, G25000200" -County and PUMA "G2500130, G25001600" -County and PUMA "G2500130, G25001900" -County and PUMA "G2500130, G25001901" -County and PUMA "G2500130, G25001902" -County and PUMA "G2500150, G25000200" -County and PUMA "G2500150, G25001600" -County and PUMA "G2500170, G25000400" -County and PUMA "G2500170, G25000501" -County and PUMA "G2500170, G25000502" -County and PUMA "G2500170, G25000503" -County and PUMA "G2500170, G25000504" -County and PUMA "G2500170, G25000505" -County and PUMA "G2500170, G25000506" -County and PUMA "G2500170, G25000507" -County and PUMA "G2500170, G25000508" -County and PUMA "G2500170, G25001000" -County and PUMA "G2500170, G25001300" -County and PUMA "G2500170, G25001400" -County and PUMA "G2500170, G25002400" -County and PUMA "G2500170, G25002800" -County and PUMA "G2500170, G25003400" -County and PUMA "G2500170, G25003500" -County and PUMA "G2500190, G25004800" -County and PUMA "G2500210, G25002400" -County and PUMA "G2500210, G25003400" -County and PUMA "G2500210, G25003500" -County and PUMA "G2500210, G25003601" -County and PUMA "G2500210, G25003602" -County and PUMA "G2500210, G25003603" -County and PUMA "G2500210, G25003900" -County and PUMA "G2500210, G25004000" -County and PUMA "G2500210, G25004200" -County and PUMA "G2500230, G25003900" -County and PUMA "G2500230, G25004000" -County and PUMA "G2500230, G25004301" -County and PUMA "G2500230, G25004901" -County and PUMA "G2500230, G25004902" -County and PUMA "G2500230, G25004903" -County and PUMA "G2500250, G25003301" -County and PUMA "G2500250, G25003302" -County and PUMA "G2500250, G25003303" -County and PUMA "G2500250, G25003304" -County and PUMA "G2500250, G25003305" -County and PUMA "G2500250, G25003306" -County and PUMA "G2500270, G25000300" -County and PUMA "G2500270, G25000301" -County and PUMA "G2500270, G25000302" -County and PUMA "G2500270, G25000303" -County and PUMA "G2500270, G25000304" -County and PUMA "G2500270, G25000400" -County and PUMA "G2500270, G25001400" -County and PUMA "G2500270, G25002400" -County and PUMA "G2600010, G26000300" -County and PUMA "G2600030, G26000200" -County and PUMA "G2600050, G26000900" -County and PUMA "G2600070, G26000300" -County and PUMA "G2600090, G26000400" -County and PUMA "G2600110, G26001300" -County and PUMA "G2600130, G26000100" -County and PUMA "G2600150, G26002000" -County and PUMA "G2600170, G26001400" -County and PUMA "G2600190, G26000500" -County and PUMA "G2600210, G26002400" -County and PUMA "G2600230, G26002200" -County and PUMA "G2600250, G26002000" -County and PUMA "G2600270, G26002300" -County and PUMA "G2600290, G26000400" -County and PUMA "G2600310, G26000300" -County and PUMA "G2600330, G26000200" -County and PUMA "G2600350, G26001200" -County and PUMA "G2600370, G26001900" -County and PUMA "G2600390, G26000300" -County and PUMA "G2600410, G26000200" -County and PUMA "G2600430, G26000100" -County and PUMA "G2600450, G26001900" -County and PUMA "G2600470, G26000400" -County and PUMA "G2600490, G26001701" -County and PUMA "G2600490, G26001702" -County and PUMA "G2600490, G26001703" -County and PUMA "G2600490, G26001704" -County and PUMA "G2600510, G26001300" -County and PUMA "G2600530, G26000100" -County and PUMA "G2600550, G26000500" -County and PUMA "G2600570, G26001200" -County and PUMA "G2600590, G26002500" -County and PUMA "G2600610, G26000100" -County and PUMA "G2600630, G26001600" -County and PUMA "G2600650, G26001801" -County and PUMA "G2600650, G26001802" -County and PUMA "G2600670, G26001100" -County and PUMA "G2600690, G26001300" -County and PUMA "G2600710, G26000100" -County and PUMA "G2600730, G26001200" -County and PUMA "G2600750, G26002600" -County and PUMA "G2600770, G26002101" -County and PUMA "G2600770, G26002102" -County and PUMA "G2600790, G26000400" -County and PUMA "G2600810, G26001001" -County and PUMA "G2600810, G26001002" -County and PUMA "G2600810, G26001003" -County and PUMA "G2600810, G26001004" -County and PUMA "G2600830, G26000100" -County and PUMA "G2600850, G26000600" -County and PUMA "G2600870, G26001701" -County and PUMA "G2600890, G26000500" -County and PUMA "G2600910, G26002500" -County and PUMA "G2600930, G26002800" -County and PUMA "G2600950, G26000200" -County and PUMA "G2600970, G26000200" -County and PUMA "G2600990, G26003001" -County and PUMA "G2600990, G26003002" -County and PUMA "G2600990, G26003003" -County and PUMA "G2600990, G26003004" -County and PUMA "G2600990, G26003005" -County and PUMA "G2600990, G26003006" -County and PUMA "G2601010, G26000500" -County and PUMA "G2601030, G26000100" -County and PUMA "G2601050, G26000600" -County and PUMA "G2601070, G26001100" -County and PUMA "G2601090, G26000200" -County and PUMA "G2601110, G26001400" -County and PUMA "G2601130, G26000400" -County and PUMA "G2601150, G26003300" -County and PUMA "G2601170, G26001100" -County and PUMA "G2601190, G26000300" -County and PUMA "G2601210, G26000700" -County and PUMA "G2601230, G26000600" -County and PUMA "G2601250, G26002901" -County and PUMA "G2601250, G26002902" -County and PUMA "G2601250, G26002903" -County and PUMA "G2601250, G26002904" -County and PUMA "G2601250, G26002905" -County and PUMA "G2601250, G26002906" -County and PUMA "G2601250, G26002907" -County and PUMA "G2601250, G26002908" -County and PUMA "G2601270, G26000600" -County and PUMA "G2601290, G26001300" -County and PUMA "G2601310, G26000100" -County and PUMA "G2601330, G26001100" -County and PUMA "G2601350, G26000300" -County and PUMA "G2601370, G26000300" -County and PUMA "G2601390, G26000801" -County and PUMA "G2601390, G26000802" -County and PUMA "G2601410, G26000300" -County and PUMA "G2601430, G26001300" -County and PUMA "G2601450, G26001500" -County and PUMA "G2601470, G26003100" -County and PUMA "G2601490, G26002200" -County and PUMA "G2601510, G26001600" -County and PUMA "G2601530, G26000200" -County and PUMA "G2601550, G26001704" -County and PUMA "G2601570, G26001600" -County and PUMA "G2601590, G26002300" -County and PUMA "G2601610, G26002701" -County and PUMA "G2601610, G26002702" -County and PUMA "G2601610, G26002703" -County and PUMA "G2601630, G26003201" -County and PUMA "G2601630, G26003202" -County and PUMA "G2601630, G26003203" -County and PUMA "G2601630, G26003204" -County and PUMA "G2601630, G26003205" -County and PUMA "G2601630, G26003206" -County and PUMA "G2601630, G26003207" -County and PUMA "G2601630, G26003208" -County and PUMA "G2601630, G26003209" -County and PUMA "G2601630, G26003210" -County and PUMA "G2601630, G26003211" -County and PUMA "G2601630, G26003212" -County and PUMA "G2601630, G26003213" -County and PUMA "G2601650, G26000400" -County and PUMA "G2700010, G27000300" -County and PUMA "G2700030, G27001101" -County and PUMA "G2700030, G27001102" -County and PUMA "G2700030, G27001103" -County and PUMA "G2700050, G27000200" -County and PUMA "G2700070, G27000200" -County and PUMA "G2700090, G27001000" -County and PUMA "G2700110, G27000800" -County and PUMA "G2700130, G27002200" -County and PUMA "G2700150, G27002000" -County and PUMA "G2700170, G27000300" -County and PUMA "G2700170, G27000400" -County and PUMA "G2700190, G27001700" -County and PUMA "G2700210, G27000300" -County and PUMA "G2700230, G27002000" -County and PUMA "G2700250, G27000600" -County and PUMA "G2700270, G27000100" -County and PUMA "G2700290, G27000200" -County and PUMA "G2700310, G27000400" -County and PUMA "G2700330, G27002100" -County and PUMA "G2700350, G27000700" -County and PUMA "G2700370, G27001501" -County and PUMA "G2700370, G27001502" -County and PUMA "G2700370, G27001503" -County and PUMA "G2700390, G27002400" -County and PUMA "G2700410, G27000800" -County and PUMA "G2700430, G27002100" -County and PUMA "G2700450, G27002600" -County and PUMA "G2700470, G27002400" -County and PUMA "G2700490, G27002300" -County and PUMA "G2700510, G27000800" -County and PUMA "G2700530, G27001401" -County and PUMA "G2700530, G27001402" -County and PUMA "G2700530, G27001403" -County and PUMA "G2700530, G27001404" -County and PUMA "G2700530, G27001405" -County and PUMA "G2700530, G27001406" -County and PUMA "G2700530, G27001407" -County and PUMA "G2700530, G27001408" -County and PUMA "G2700530, G27001409" -County and PUMA "G2700530, G27001410" -County and PUMA "G2700550, G27002600" -County and PUMA "G2700570, G27000200" -County and PUMA "G2700590, G27000600" -County and PUMA "G2700610, G27000300" -County and PUMA "G2700630, G27002100" -County and PUMA "G2700650, G27000600" -County and PUMA "G2700670, G27001900" -County and PUMA "G2700690, G27000100" -County and PUMA "G2700710, G27000400" -County and PUMA "G2700730, G27002000" -County and PUMA "G2700750, G27000400" -County and PUMA "G2700770, G27000200" -County and PUMA "G2700790, G27002300" -County and PUMA "G2700810, G27002000" -County and PUMA "G2700830, G27002000" -County and PUMA "G2700850, G27001900" -County and PUMA "G2700870, G27000200" -County and PUMA "G2700890, G27000100" -County and PUMA "G2700910, G27002100" -County and PUMA "G2700930, G27001900" -County and PUMA "G2700950, G27000600" -County and PUMA "G2700970, G27000700" -County and PUMA "G2700990, G27002400" -County and PUMA "G2701010, G27002100" -County and PUMA "G2701030, G27002200" -County and PUMA "G2701050, G27002100" -County and PUMA "G2701070, G27000100" -County and PUMA "G2701090, G27002500" -County and PUMA "G2701110, G27000800" -County and PUMA "G2701130, G27000100" -County and PUMA "G2701150, G27000600" -County and PUMA "G2701170, G27002100" -County and PUMA "G2701190, G27000100" -County and PUMA "G2701210, G27000800" -County and PUMA "G2701230, G27001301" -County and PUMA "G2701230, G27001302" -County and PUMA "G2701230, G27001303" -County and PUMA "G2701230, G27001304" -County and PUMA "G2701250, G27000100" -County and PUMA "G2701270, G27002000" -County and PUMA "G2701290, G27001900" -County and PUMA "G2701310, G27002300" -County and PUMA "G2701330, G27002100" -County and PUMA "G2701350, G27000100" -County and PUMA "G2701370, G27000400" -County and PUMA "G2701370, G27000500" -County and PUMA "G2701390, G27001600" -County and PUMA "G2701390, G27001700" -County and PUMA "G2701410, G27001000" -County and PUMA "G2701430, G27001900" -County and PUMA "G2701450, G27000900" -County and PUMA "G2701470, G27002400" -County and PUMA "G2701490, G27000800" -County and PUMA "G2701510, G27000800" -County and PUMA "G2701530, G27000700" -County and PUMA "G2701550, G27000800" -County and PUMA "G2701570, G27002600" -County and PUMA "G2701590, G27000700" -County and PUMA "G2701610, G27002200" -County and PUMA "G2701630, G27001201" -County and PUMA "G2701630, G27001202" -County and PUMA "G2701650, G27002100" -County and PUMA "G2701670, G27000800" -County and PUMA "G2701690, G27002600" -County and PUMA "G2701710, G27001800" -County and PUMA "G2701730, G27002000" -County and PUMA "G2800010, G28001600" -County and PUMA "G2800030, G28000200" -County and PUMA "G2800050, G28001600" -County and PUMA "G2800070, G28000700" -County and PUMA "G2800090, G28000200" -County and PUMA "G2800110, G28000800" -County and PUMA "G2800130, G28000400" -County and PUMA "G2800150, G28000700" -County and PUMA "G2800170, G28000400" -County and PUMA "G2800190, G28000600" -County and PUMA "G2800210, G28001600" -County and PUMA "G2800230, G28001500" -County and PUMA "G2800250, G28000600" -County and PUMA "G2800270, G28000300" -County and PUMA "G2800290, G28001200" -County and PUMA "G2800310, G28001700" -County and PUMA "G2800330, G28000100" -County and PUMA "G2800350, G28001800" -County and PUMA "G2800370, G28001600" -County and PUMA "G2800390, G28001900" -County and PUMA "G2800410, G28001700" -County and PUMA "G2800430, G28000700" -County and PUMA "G2800450, G28001900" -County and PUMA "G2800470, G28002000" -County and PUMA "G2800490, G28001000" -County and PUMA "G2800490, G28001100" -County and PUMA "G2800490, G28001200" -County and PUMA "G2800510, G28000700" -County and PUMA "G2800530, G28000800" -County and PUMA "G2800550, G28000800" -County and PUMA "G2800570, G28000400" -County and PUMA "G2800590, G28002100" -County and PUMA "G2800610, G28001400" -County and PUMA "G2800630, G28001600" -County and PUMA "G2800650, G28001700" -County and PUMA "G2800670, G28001700" -County and PUMA "G2800690, G28001400" -County and PUMA "G2800710, G28000400" -County and PUMA "G2800730, G28001800" -County and PUMA "G2800750, G28001500" -County and PUMA "G2800770, G28001600" -County and PUMA "G2800790, G28001400" -County and PUMA "G2800810, G28000500" -County and PUMA "G2800830, G28000700" -County and PUMA "G2800850, G28001600" -County and PUMA "G2800870, G28000600" -County and PUMA "G2800890, G28000900" -County and PUMA "G2800890, G28001000" -County and PUMA "G2800910, G28001800" -County and PUMA "G2800930, G28000200" -County and PUMA "G2800950, G28000400" -County and PUMA "G2800970, G28000700" -County and PUMA "G2800990, G28001400" -County and PUMA "G2801010, G28001500" -County and PUMA "G2801030, G28000600" -County and PUMA "G2801050, G28000600" -County and PUMA "G2801070, G28000300" -County and PUMA "G2801090, G28001900" -County and PUMA "G2801110, G28001800" -County and PUMA "G2801130, G28001600" -County and PUMA "G2801150, G28000500" -County and PUMA "G2801170, G28000200" -County and PUMA "G2801190, G28000300" -County and PUMA "G2801210, G28001300" -County and PUMA "G2801230, G28001400" -County and PUMA "G2801250, G28000800" -County and PUMA "G2801270, G28001300" -County and PUMA "G2801290, G28001400" -County and PUMA "G2801310, G28001900" -County and PUMA "G2801330, G28000800" -County and PUMA "G2801350, G28000300" -County and PUMA "G2801370, G28000300" -County and PUMA "G2801390, G28000200" -County and PUMA "G2801410, G28000200" -County and PUMA "G2801430, G28000300" -County and PUMA "G2801450, G28000500" -County and PUMA "G2801470, G28001600" -County and PUMA "G2801490, G28001200" -County and PUMA "G2801510, G28000800" -County and PUMA "G2801530, G28001700" -County and PUMA "G2801550, G28000600" -County and PUMA "G2801570, G28001600" -County and PUMA "G2801590, G28000600" -County and PUMA "G2801610, G28000700" -County and PUMA "G2801630, G28000900" -County and PUMA "G2900010, G29000300" -County and PUMA "G2900030, G29000200" -County and PUMA "G2900050, G29000100" -County and PUMA "G2900070, G29000400" -County and PUMA "G2900090, G29002700" -County and PUMA "G2900110, G29001200" -County and PUMA "G2900130, G29001100" -County and PUMA "G2900150, G29001300" -County and PUMA "G2900170, G29002200" -County and PUMA "G2900190, G29000600" -County and PUMA "G2900210, G29000200" -County and PUMA "G2900230, G29002400" -County and PUMA "G2900250, G29000800" -County and PUMA "G2900270, G29000500" -County and PUMA "G2900290, G29001400" -County and PUMA "G2900310, G29002200" -County and PUMA "G2900330, G29000700" -County and PUMA "G2900350, G29002400" -County and PUMA "G2900370, G29001100" -County and PUMA "G2900390, G29001200" -County and PUMA "G2900410, G29000700" -County and PUMA "G2900430, G29002601" -County and PUMA "G2900450, G29000300" -County and PUMA "G2900470, G29000901" -County and PUMA "G2900470, G29000902" -County and PUMA "G2900470, G29000903" -County and PUMA "G2900490, G29000800" -County and PUMA "G2900510, G29000500" -County and PUMA "G2900530, G29000700" -County and PUMA "G2900550, G29001500" -County and PUMA "G2900570, G29001200" -County and PUMA "G2900590, G29001300" -County and PUMA "G2900610, G29000100" -County and PUMA "G2900630, G29000200" -County and PUMA "G2900650, G29001500" -County and PUMA "G2900670, G29002500" -County and PUMA "G2900690, G29002300" -County and PUMA "G2900710, G29001600" -County and PUMA "G2900730, G29001500" -County and PUMA "G2900750, G29000100" -County and PUMA "G2900770, G29002601" -County and PUMA "G2900770, G29002602" -County and PUMA "G2900770, G29002603" -County and PUMA "G2900790, G29000100" -County and PUMA "G2900810, G29000100" -County and PUMA "G2900830, G29001200" -County and PUMA "G2900850, G29001300" -County and PUMA "G2900870, G29000100" -County and PUMA "G2900890, G29000700" -County and PUMA "G2900910, G29002500" -County and PUMA "G2900930, G29002400" -County and PUMA "G2900950, G29001001" -County and PUMA "G2900950, G29001002" -County and PUMA "G2900950, G29001003" -County and PUMA "G2900950, G29001004" -County and PUMA "G2900950, G29001005" -County and PUMA "G2900970, G29002800" -County and PUMA "G2900990, G29002001" -County and PUMA "G2900990, G29002002" -County and PUMA "G2901010, G29000800" -County and PUMA "G2901030, G29000300" -County and PUMA "G2901050, G29001300" -County and PUMA "G2901070, G29000800" -County and PUMA "G2901090, G29001200" -County and PUMA "G2901110, G29000300" -County and PUMA "G2901130, G29000400" -County and PUMA "G2901150, G29000100" -County and PUMA "G2901170, G29000100" -County and PUMA "G2901190, G29002700" -County and PUMA "G2901210, G29000300" -County and PUMA "G2901230, G29002400" -County and PUMA "G2901250, G29001500" -County and PUMA "G2901270, G29000300" -County and PUMA "G2901290, G29000100" -County and PUMA "G2901310, G29001400" -County and PUMA "G2901330, G29002300" -County and PUMA "G2901350, G29000500" -County and PUMA "G2901370, G29000300" -County and PUMA "G2901390, G29000400" -County and PUMA "G2901410, G29001400" -County and PUMA "G2901430, G29002300" -County and PUMA "G2901450, G29002800" -County and PUMA "G2901470, G29000100" -County and PUMA "G2901490, G29002500" -County and PUMA "G2901510, G29000500" -County and PUMA "G2901530, G29002500" -County and PUMA "G2901550, G29002300" -County and PUMA "G2901570, G29002100" -County and PUMA "G2901590, G29000700" -County and PUMA "G2901610, G29001500" -County and PUMA "G2901630, G29000400" -County and PUMA "G2901650, G29000903" -County and PUMA "G2901670, G29001300" -County and PUMA "G2901690, G29001400" -County and PUMA "G2901710, G29000100" -County and PUMA "G2901730, G29000300" -County and PUMA "G2901750, G29000700" -County and PUMA "G2901770, G29000800" -County and PUMA "G2901790, G29002400" -County and PUMA "G2901810, G29002400" -County and PUMA "G2901830, G29001701" -County and PUMA "G2901830, G29001702" -County and PUMA "G2901830, G29001703" -County and PUMA "G2901850, G29001200" -County and PUMA "G2901860, G29002100" -County and PUMA "G2901870, G29002100" -County and PUMA "G2901890, G29001801" -County and PUMA "G2901890, G29001802" -County and PUMA "G2901890, G29001803" -County and PUMA "G2901890, G29001804" -County and PUMA "G2901890, G29001805" -County and PUMA "G2901890, G29001806" -County and PUMA "G2901890, G29001807" -County and PUMA "G2901890, G29001808" -County and PUMA "G2901950, G29000700" -County and PUMA "G2901970, G29000300" -County and PUMA "G2901990, G29000300" -County and PUMA "G2902010, G29002200" -County and PUMA "G2902030, G29002500" -County and PUMA "G2902050, G29000300" -County and PUMA "G2902070, G29002300" -County and PUMA "G2902090, G29002700" -County and PUMA "G2902110, G29000100" -County and PUMA "G2902130, G29002700" -County and PUMA "G2902150, G29002500" -County and PUMA "G2902170, G29001200" -County and PUMA "G2902190, G29000400" -County and PUMA "G2902210, G29002100" -County and PUMA "G2902230, G29002400" -County and PUMA "G2902250, G29002601" -County and PUMA "G2902270, G29000100" -County and PUMA "G2902290, G29002500" -County and PUMA "G2905100, G29001901" -County and PUMA "G2905100, G29001902" -County and PUMA "G3000010, G30000300" -County and PUMA "G3000030, G30000600" -County and PUMA "G3000050, G30000400" -County and PUMA "G3000070, G30000300" -County and PUMA "G3000090, G30000500" -County and PUMA "G3000110, G30000600" -County and PUMA "G3000130, G30000400" -County and PUMA "G3000150, G30000400" -County and PUMA "G3000170, G30000600" -County and PUMA "G3000190, G30000600" -County and PUMA "G3000210, G30000600" -County and PUMA "G3000230, G30000300" -County and PUMA "G3000250, G30000600" -County and PUMA "G3000270, G30000400" -County and PUMA "G3000290, G30000100" -County and PUMA "G3000310, G30000500" -County and PUMA "G3000330, G30000600" -County and PUMA "G3000350, G30000100" -County and PUMA "G3000370, G30000600" -County and PUMA "G3000390, G30000300" -County and PUMA "G3000410, G30000400" -County and PUMA "G3000430, G30000300" -County and PUMA "G3000450, G30000400" -County and PUMA "G3000470, G30000200" -County and PUMA "G3000490, G30000300" -County and PUMA "G3000510, G30000400" -County and PUMA "G3000530, G30000100" -County and PUMA "G3000550, G30000600" -County and PUMA "G3000570, G30000300" -County and PUMA "G3000590, G30000400" -County and PUMA "G3000610, G30000200" -County and PUMA "G3000630, G30000200" -County and PUMA "G3000650, G30000600" -County and PUMA "G3000670, G30000500" -County and PUMA "G3000690, G30000400" -County and PUMA "G3000710, G30000600" -County and PUMA "G3000730, G30000400" -County and PUMA "G3000750, G30000600" -County and PUMA "G3000770, G30000300" -County and PUMA "G3000790, G30000600" -County and PUMA "G3000810, G30000200" -County and PUMA "G3000830, G30000600" -County and PUMA "G3000850, G30000600" -County and PUMA "G3000870, G30000600" -County and PUMA "G3000890, G30000200" -County and PUMA "G3000910, G30000600" -County and PUMA "G3000930, G30000300" -County and PUMA "G3000950, G30000500" -County and PUMA "G3000970, G30000500" -County and PUMA "G3000990, G30000400" -County and PUMA "G3001010, G30000400" -County and PUMA "G3001030, G30000600" -County and PUMA "G3001050, G30000600" -County and PUMA "G3001070, G30000400" -County and PUMA "G3001090, G30000600" -County and PUMA "G3001110, G30000600" -County and PUMA "G3001110, G30000700" -County and PUMA "G3100010, G31000500" -County and PUMA "G3100030, G31000200" -County and PUMA "G3100050, G31000400" -County and PUMA "G3100070, G31000100" -County and PUMA "G3100090, G31000300" -County and PUMA "G3100110, G31000200" -County and PUMA "G3100130, G31000100" -County and PUMA "G3100150, G31000100" -County and PUMA "G3100170, G31000100" -County and PUMA "G3100190, G31000500" -County and PUMA "G3100210, G31000200" -County and PUMA "G3100230, G31000600" -County and PUMA "G3100250, G31000701" -County and PUMA "G3100270, G31000200" -County and PUMA "G3100290, G31000400" -County and PUMA "G3100310, G31000100" -County and PUMA "G3100330, G31000100" -County and PUMA "G3100350, G31000500" -County and PUMA "G3100370, G31000200" -County and PUMA "G3100390, G31000200" -County and PUMA "G3100410, G31000300" -County and PUMA "G3100430, G31000200" -County and PUMA "G3100450, G31000100" -County and PUMA "G3100470, G31000400" -County and PUMA "G3100490, G31000100" -County and PUMA "G3100510, G31000200" -County and PUMA "G3100530, G31000701" -County and PUMA "G3100550, G31000901" -County and PUMA "G3100550, G31000902" -County and PUMA "G3100550, G31000903" -County and PUMA "G3100550, G31000904" -County and PUMA "G3100570, G31000400" -County and PUMA "G3100590, G31000600" -County and PUMA "G3100610, G31000500" -County and PUMA "G3100630, G31000400" -County and PUMA "G3100650, G31000400" -County and PUMA "G3100670, G31000600" -County and PUMA "G3100690, G31000100" -County and PUMA "G3100710, G31000300" -County and PUMA "G3100730, G31000400" -County and PUMA "G3100750, G31000400" -County and PUMA "G3100770, G31000300" -County and PUMA "G3100790, G31000300" -County and PUMA "G3100810, G31000300" -County and PUMA "G3100830, G31000500" -County and PUMA "G3100850, G31000400" -County and PUMA "G3100870, G31000400" -County and PUMA "G3100890, G31000100" -County and PUMA "G3100910, G31000400" -County and PUMA "G3100930, G31000300" -County and PUMA "G3100950, G31000600" -County and PUMA "G3100970, G31000600" -County and PUMA "G3100990, G31000500" -County and PUMA "G3101010, G31000400" -County and PUMA "G3101030, G31000100" -County and PUMA "G3101050, G31000100" -County and PUMA "G3101070, G31000200" -County and PUMA "G3101090, G31000801" -County and PUMA "G3101090, G31000802" -County and PUMA "G3101110, G31000400" -County and PUMA "G3101130, G31000400" -County and PUMA "G3101150, G31000300" -County and PUMA "G3101170, G31000400" -County and PUMA "G3101190, G31000200" -County and PUMA "G3101210, G31000300" -County and PUMA "G3101230, G31000100" -County and PUMA "G3101250, G31000200" -County and PUMA "G3101270, G31000600" -County and PUMA "G3101290, G31000500" -County and PUMA "G3101310, G31000600" -County and PUMA "G3101330, G31000600" -County and PUMA "G3101350, G31000400" -County and PUMA "G3101370, G31000500" -County and PUMA "G3101390, G31000200" -County and PUMA "G3101410, G31000200" -County and PUMA "G3101430, G31000600" -County and PUMA "G3101450, G31000400" -County and PUMA "G3101470, G31000600" -County and PUMA "G3101490, G31000100" -County and PUMA "G3101510, G31000600" -County and PUMA "G3101530, G31000702" -County and PUMA "G3101550, G31000701" -County and PUMA "G3101570, G31000100" -County and PUMA "G3101590, G31000600" -County and PUMA "G3101610, G31000100" -County and PUMA "G3101630, G31000300" -County and PUMA "G3101650, G31000100" -County and PUMA "G3101670, G31000200" -County and PUMA "G3101690, G31000600" -County and PUMA "G3101710, G31000400" -County and PUMA "G3101730, G31000200" -County and PUMA "G3101750, G31000300" -County and PUMA "G3101770, G31000701" -County and PUMA "G3101790, G31000200" -County and PUMA "G3101810, G31000500" -County and PUMA "G3101830, G31000300" -County and PUMA "G3101850, G31000600" -County and PUMA "G3200010, G32000300" -County and PUMA "G3200030, G32000401" -County and PUMA "G3200030, G32000402" -County and PUMA "G3200030, G32000403" -County and PUMA "G3200030, G32000404" -County and PUMA "G3200030, G32000405" -County and PUMA "G3200030, G32000406" -County and PUMA "G3200030, G32000407" -County and PUMA "G3200030, G32000408" -County and PUMA "G3200030, G32000409" -County and PUMA "G3200030, G32000410" -County and PUMA "G3200030, G32000411" -County and PUMA "G3200030, G32000412" -County and PUMA "G3200030, G32000413" -County and PUMA "G3200050, G32000200" -County and PUMA "G3200070, G32000300" -County and PUMA "G3200090, G32000300" -County and PUMA "G3200110, G32000300" -County and PUMA "G3200130, G32000300" -County and PUMA "G3200150, G32000300" -County and PUMA "G3200170, G32000300" -County and PUMA "G3200190, G32000200" -County and PUMA "G3200210, G32000300" -County and PUMA "G3200230, G32000300" -County and PUMA "G3200270, G32000300" -County and PUMA "G3200290, G32000200" -County and PUMA "G3200310, G32000101" -County and PUMA "G3200310, G32000102" -County and PUMA "G3200310, G32000103" -County and PUMA "G3200330, G32000300" -County and PUMA "G3205100, G32000200" -County and PUMA "G3300010, G33000200" -County and PUMA "G3300030, G33000200" -County and PUMA "G3300030, G33000300" -County and PUMA "G3300050, G33000500" -County and PUMA "G3300070, G33000100" -County and PUMA "G3300090, G33000100" -County and PUMA "G3300110, G33000600" -County and PUMA "G3300110, G33000700" -County and PUMA "G3300110, G33000800" -County and PUMA "G3300110, G33000900" -County and PUMA "G3300130, G33000200" -County and PUMA "G3300130, G33000400" -County and PUMA "G3300130, G33000700" -County and PUMA "G3300150, G33000300" -County and PUMA "G3300150, G33000700" -County and PUMA "G3300150, G33001000" -County and PUMA "G3300170, G33000300" -County and PUMA "G3300190, G33000500" -County and PUMA "G3400010, G34000101" -County and PUMA "G3400010, G34000102" -County and PUMA "G3400010, G34002600" -County and PUMA "G3400030, G34000301" -County and PUMA "G3400030, G34000302" -County and PUMA "G3400030, G34000303" -County and PUMA "G3400030, G34000304" -County and PUMA "G3400030, G34000305" -County and PUMA "G3400030, G34000306" -County and PUMA "G3400030, G34000307" -County and PUMA "G3400030, G34000308" -County and PUMA "G3400050, G34002001" -County and PUMA "G3400050, G34002002" -County and PUMA "G3400050, G34002003" -County and PUMA "G3400070, G34002101" -County and PUMA "G3400070, G34002102" -County and PUMA "G3400070, G34002103" -County and PUMA "G3400070, G34002104" -County and PUMA "G3400090, G34002600" -County and PUMA "G3400110, G34002400" -County and PUMA "G3400110, G34002500" -County and PUMA "G3400130, G34001301" -County and PUMA "G3400130, G34001302" -County and PUMA "G3400130, G34001401" -County and PUMA "G3400130, G34001402" -County and PUMA "G3400130, G34001403" -County and PUMA "G3400130, G34001404" -County and PUMA "G3400150, G34002201" -County and PUMA "G3400150, G34002202" -County and PUMA "G3400170, G34000601" -County and PUMA "G3400170, G34000602" -County and PUMA "G3400170, G34000701" -County and PUMA "G3400170, G34000702" -County and PUMA "G3400170, G34000703" -County and PUMA "G3400190, G34000800" -County and PUMA "G3400210, G34002301" -County and PUMA "G3400210, G34002302" -County and PUMA "G3400210, G34002303" -County and PUMA "G3400230, G34000901" -County and PUMA "G3400230, G34000902" -County and PUMA "G3400230, G34000903" -County and PUMA "G3400230, G34000904" -County and PUMA "G3400230, G34000905" -County and PUMA "G3400230, G34000906" -County and PUMA "G3400230, G34000907" -County and PUMA "G3400250, G34001101" -County and PUMA "G3400250, G34001102" -County and PUMA "G3400250, G34001103" -County and PUMA "G3400250, G34001104" -County and PUMA "G3400250, G34001105" -County and PUMA "G3400250, G34001106" -County and PUMA "G3400270, G34001501" -County and PUMA "G3400270, G34001502" -County and PUMA "G3400270, G34001503" -County and PUMA "G3400270, G34001504" -County and PUMA "G3400290, G34001201" -County and PUMA "G3400290, G34001202" -County and PUMA "G3400290, G34001203" -County and PUMA "G3400290, G34001204" -County and PUMA "G3400290, G34001205" -County and PUMA "G3400310, G34000400" -County and PUMA "G3400310, G34000501" -County and PUMA "G3400310, G34000502" -County and PUMA "G3400310, G34000503" -County and PUMA "G3400330, G34002500" -County and PUMA "G3400350, G34001001" -County and PUMA "G3400350, G34001002" -County and PUMA "G3400350, G34001003" -County and PUMA "G3400370, G34001600" -County and PUMA "G3400390, G34001800" -County and PUMA "G3400390, G34001901" -County and PUMA "G3400390, G34001902" -County and PUMA "G3400390, G34001903" -County and PUMA "G3400390, G34001904" -County and PUMA "G3400410, G34001700" -County and PUMA "G3500010, G35000700" -County and PUMA "G3500010, G35000801" -County and PUMA "G3500010, G35000802" -County and PUMA "G3500010, G35000803" -County and PUMA "G3500010, G35000804" -County and PUMA "G3500010, G35000805" -County and PUMA "G3500010, G35000806" -County and PUMA "G3500030, G35000900" -County and PUMA "G3500050, G35001100" -County and PUMA "G3500060, G35000100" -County and PUMA "G3500070, G35000400" -County and PUMA "G3500090, G35000400" -County and PUMA "G3500110, G35000400" -County and PUMA "G3500130, G35001001" -County and PUMA "G3500130, G35001002" -County and PUMA "G3500150, G35001200" -County and PUMA "G3500170, G35000900" -County and PUMA "G3500190, G35000400" -County and PUMA "G3500210, G35000400" -County and PUMA "G3500230, G35000900" -County and PUMA "G3500250, G35001200" -County and PUMA "G3500270, G35001100" -County and PUMA "G3500280, G35000300" -County and PUMA "G3500290, G35000900" -County and PUMA "G3500310, G35000100" -County and PUMA "G3500330, G35000300" -County and PUMA "G3500350, G35001100" -County and PUMA "G3500370, G35000400" -County and PUMA "G3500390, G35000300" -County and PUMA "G3500410, G35000400" -County and PUMA "G3500430, G35000600" -County and PUMA "G3500450, G35000100" -County and PUMA "G3500450, G35000200" -County and PUMA "G3500470, G35000300" -County and PUMA "G3500490, G35000500" -County and PUMA "G3500510, G35000900" -County and PUMA "G3500530, G35000900" -County and PUMA "G3500550, G35000300" -County and PUMA "G3500570, G35000900" -County and PUMA "G3500590, G35000400" -County and PUMA "G3500610, G35000700" -County and PUMA "G3600010, G36002001" -County and PUMA "G3600010, G36002002" -County and PUMA "G3600030, G36002500" -County and PUMA "G3600050, G36003701" -County and PUMA "G3600050, G36003702" -County and PUMA "G3600050, G36003703" -County and PUMA "G3600050, G36003704" -County and PUMA "G3600050, G36003705" -County and PUMA "G3600050, G36003706" -County and PUMA "G3600050, G36003707" -County and PUMA "G3600050, G36003708" -County and PUMA "G3600050, G36003709" -County and PUMA "G3600050, G36003710" -County and PUMA "G3600070, G36002201" -County and PUMA "G3600070, G36002202" -County and PUMA "G3600070, G36002203" -County and PUMA "G3600090, G36002500" -County and PUMA "G3600110, G36000704" -County and PUMA "G3600130, G36002600" -County and PUMA "G3600150, G36002401" -County and PUMA "G3600150, G36002402" -County and PUMA "G3600170, G36002203" -County and PUMA "G3600190, G36000200" -County and PUMA "G3600210, G36002100" -County and PUMA "G3600230, G36001500" -County and PUMA "G3600250, G36002203" -County and PUMA "G3600270, G36002801" -County and PUMA "G3600270, G36002802" -County and PUMA "G3600290, G36001201" -County and PUMA "G3600290, G36001202" -County and PUMA "G3600290, G36001203" -County and PUMA "G3600290, G36001204" -County and PUMA "G3600290, G36001205" -County and PUMA "G3600290, G36001206" -County and PUMA "G3600290, G36001207" -County and PUMA "G3600310, G36000200" -County and PUMA "G3600330, G36000200" -County and PUMA "G3600350, G36001600" -County and PUMA "G3600370, G36001000" -County and PUMA "G3600390, G36002100" -County and PUMA "G3600410, G36000200" -County and PUMA "G3600430, G36000401" -County and PUMA "G3600430, G36000403" -County and PUMA "G3600450, G36000500" -County and PUMA "G3600470, G36004001" -County and PUMA "G3600470, G36004002" -County and PUMA "G3600470, G36004003" -County and PUMA "G3600470, G36004004" -County and PUMA "G3600470, G36004005" -County and PUMA "G3600470, G36004006" -County and PUMA "G3600470, G36004007" -County and PUMA "G3600470, G36004008" -County and PUMA "G3600470, G36004009" -County and PUMA "G3600470, G36004010" -County and PUMA "G3600470, G36004011" -County and PUMA "G3600470, G36004012" -County and PUMA "G3600470, G36004013" -County and PUMA "G3600470, G36004014" -County and PUMA "G3600470, G36004015" -County and PUMA "G3600470, G36004016" -County and PUMA "G3600470, G36004017" -County and PUMA "G3600470, G36004018" -County and PUMA "G3600490, G36000500" -County and PUMA "G3600510, G36001300" -County and PUMA "G3600530, G36001500" -County and PUMA "G3600550, G36000901" -County and PUMA "G3600550, G36000902" -County and PUMA "G3600550, G36000903" -County and PUMA "G3600550, G36000904" -County and PUMA "G3600550, G36000905" -County and PUMA "G3600550, G36000906" -County and PUMA "G3600570, G36001600" -County and PUMA "G3600590, G36003201" -County and PUMA "G3600590, G36003202" -County and PUMA "G3600590, G36003203" -County and PUMA "G3600590, G36003204" -County and PUMA "G3600590, G36003205" -County and PUMA "G3600590, G36003206" -County and PUMA "G3600590, G36003207" -County and PUMA "G3600590, G36003208" -County and PUMA "G3600590, G36003209" -County and PUMA "G3600590, G36003210" -County and PUMA "G3600590, G36003211" -County and PUMA "G3600590, G36003212" -County and PUMA "G3600610, G36003801" -County and PUMA "G3600610, G36003802" -County and PUMA "G3600610, G36003803" -County and PUMA "G3600610, G36003804" -County and PUMA "G3600610, G36003805" -County and PUMA "G3600610, G36003806" -County and PUMA "G3600610, G36003807" -County and PUMA "G3600610, G36003808" -County and PUMA "G3600610, G36003809" -County and PUMA "G3600610, G36003810" -County and PUMA "G3600630, G36001101" -County and PUMA "G3600630, G36001102" -County and PUMA "G3600650, G36000401" -County and PUMA "G3600650, G36000402" -County and PUMA "G3600650, G36000403" -County and PUMA "G3600670, G36000701" -County and PUMA "G3600670, G36000702" -County and PUMA "G3600670, G36000703" -County and PUMA "G3600670, G36000704" -County and PUMA "G3600690, G36001400" -County and PUMA "G3600710, G36002901" -County and PUMA "G3600710, G36002902" -County and PUMA "G3600710, G36002903" -County and PUMA "G3600730, G36001000" -County and PUMA "G3600750, G36000600" -County and PUMA "G3600770, G36000403" -County and PUMA "G3600790, G36003101" -County and PUMA "G3600810, G36004101" -County and PUMA "G3600810, G36004102" -County and PUMA "G3600810, G36004103" -County and PUMA "G3600810, G36004104" -County and PUMA "G3600810, G36004105" -County and PUMA "G3600810, G36004106" -County and PUMA "G3600810, G36004107" -County and PUMA "G3600810, G36004108" -County and PUMA "G3600810, G36004109" -County and PUMA "G3600810, G36004110" -County and PUMA "G3600810, G36004111" -County and PUMA "G3600810, G36004112" -County and PUMA "G3600810, G36004113" -County and PUMA "G3600810, G36004114" -County and PUMA "G3600830, G36001900" -County and PUMA "G3600850, G36003901" -County and PUMA "G3600850, G36003902" -County and PUMA "G3600850, G36003903" -County and PUMA "G3600870, G36003001" -County and PUMA "G3600870, G36003002" -County and PUMA "G3600870, G36003003" -County and PUMA "G3600890, G36000100" -County and PUMA "G3600910, G36001801" -County and PUMA "G3600910, G36001802" -County and PUMA "G3600930, G36001700" -County and PUMA "G3600950, G36000403" -County and PUMA "G3600970, G36002402" -County and PUMA "G3600990, G36000800" -County and PUMA "G3601010, G36002401" -County and PUMA "G3601010, G36002402" -County and PUMA "G3601030, G36003301" -County and PUMA "G3601030, G36003302" -County and PUMA "G3601030, G36003303" -County and PUMA "G3601030, G36003304" -County and PUMA "G3601030, G36003305" -County and PUMA "G3601030, G36003306" -County and PUMA "G3601030, G36003307" -County and PUMA "G3601030, G36003308" -County and PUMA "G3601030, G36003309" -County and PUMA "G3601030, G36003310" -County and PUMA "G3601030, G36003311" -County and PUMA "G3601030, G36003312" -County and PUMA "G3601030, G36003313" -County and PUMA "G3601050, G36002701" -County and PUMA "G3601070, G36002202" -County and PUMA "G3601090, G36002300" -County and PUMA "G3601110, G36002701" -County and PUMA "G3601110, G36002702" -County and PUMA "G3601130, G36000300" -County and PUMA "G3601150, G36000300" -County and PUMA "G3601170, G36000800" -County and PUMA "G3601190, G36003101" -County and PUMA "G3601190, G36003102" -County and PUMA "G3601190, G36003103" -County and PUMA "G3601190, G36003104" -County and PUMA "G3601190, G36003105" -County and PUMA "G3601190, G36003106" -County and PUMA "G3601190, G36003107" -County and PUMA "G3601210, G36001300" -County and PUMA "G3601230, G36001400" -County and PUMA "G3700010, G37001600" -County and PUMA "G3700030, G37002000" -County and PUMA "G3700050, G37000200" -County and PUMA "G3700070, G37005300" -County and PUMA "G3700090, G37000100" -County and PUMA "G3700110, G37000100" -County and PUMA "G3700130, G37004400" -County and PUMA "G3700150, G37000800" -County and PUMA "G3700170, G37004900" -County and PUMA "G3700190, G37004800" -County and PUMA "G3700210, G37002201" -County and PUMA "G3700210, G37002202" -County and PUMA "G3700230, G37002100" -County and PUMA "G3700250, G37003200" -County and PUMA "G3700250, G37003300" -County and PUMA "G3700270, G37002000" -County and PUMA "G3700290, G37000700" -County and PUMA "G3700310, G37004400" -County and PUMA "G3700330, G37000400" -County and PUMA "G3700350, G37002800" -County and PUMA "G3700370, G37001500" -County and PUMA "G3700390, G37002400" -County and PUMA "G3700410, G37000700" -County and PUMA "G3700430, G37002400" -County and PUMA "G3700450, G37002600" -County and PUMA "G3700450, G37002700" -County and PUMA "G3700470, G37004900" -County and PUMA "G3700490, G37004300" -County and PUMA "G3700510, G37005001" -County and PUMA "G3700510, G37005002" -County and PUMA "G3700510, G37005003" -County and PUMA "G3700530, G37000700" -County and PUMA "G3700550, G37000800" -County and PUMA "G3700570, G37003500" -County and PUMA "G3700590, G37001900" -County and PUMA "G3700610, G37003900" -County and PUMA "G3700630, G37001301" -County and PUMA "G3700630, G37001302" -County and PUMA "G3700650, G37000900" -County and PUMA "G3700670, G37001801" -County and PUMA "G3700670, G37001802" -County and PUMA "G3700670, G37001803" -County and PUMA "G3700690, G37000500" -County and PUMA "G3700710, G37003001" -County and PUMA "G3700710, G37003002" -County and PUMA "G3700730, G37000700" -County and PUMA "G3700750, G37002300" -County and PUMA "G3700770, G37000400" -County and PUMA "G3700790, G37001000" -County and PUMA "G3700810, G37001701" -County and PUMA "G3700810, G37001702" -County and PUMA "G3700810, G37001703" -County and PUMA "G3700810, G37001704" -County and PUMA "G3700830, G37000600" -County and PUMA "G3700850, G37003800" -County and PUMA "G3700870, G37002300" -County and PUMA "G3700890, G37002500" -County and PUMA "G3700910, G37000600" -County and PUMA "G3700930, G37005200" -County and PUMA "G3700950, G37000800" -County and PUMA "G3700970, G37001900" -County and PUMA "G3700970, G37002900" -County and PUMA "G3700990, G37002300" -County and PUMA "G3700990, G37002400" -County and PUMA "G3701010, G37001100" -County and PUMA "G3701030, G37004100" -County and PUMA "G3701050, G37001500" -County and PUMA "G3701070, G37004100" -County and PUMA "G3701090, G37002700" -County and PUMA "G3701110, G37002100" -County and PUMA "G3701130, G37002400" -County and PUMA "G3701150, G37002300" -County and PUMA "G3701170, G37000800" -County and PUMA "G3701190, G37003101" -County and PUMA "G3701190, G37003102" -County and PUMA "G3701190, G37003103" -County and PUMA "G3701190, G37003104" -County and PUMA "G3701190, G37003105" -County and PUMA "G3701190, G37003106" -County and PUMA "G3701190, G37003107" -County and PUMA "G3701190, G37003108" -County and PUMA "G3701210, G37000100" -County and PUMA "G3701230, G37003700" -County and PUMA "G3701250, G37003700" -County and PUMA "G3701270, G37000900" -County and PUMA "G3701290, G37004600" -County and PUMA "G3701290, G37004700" -County and PUMA "G3701310, G37000600" -County and PUMA "G3701330, G37004100" -County and PUMA "G3701330, G37004500" -County and PUMA "G3701350, G37001400" -County and PUMA "G3701370, G37004400" -County and PUMA "G3701390, G37000700" -County and PUMA "G3701410, G37004600" -County and PUMA "G3701430, G37000700" -County and PUMA "G3701450, G37000400" -County and PUMA "G3701470, G37004200" -County and PUMA "G3701490, G37002600" -County and PUMA "G3701510, G37003600" -County and PUMA "G3701530, G37005200" -County and PUMA "G3701550, G37004900" -County and PUMA "G3701550, G37005100" -County and PUMA "G3701570, G37000300" -County and PUMA "G3701590, G37003400" -County and PUMA "G3701610, G37002600" -County and PUMA "G3701630, G37003900" -County and PUMA "G3701650, G37005200" -County and PUMA "G3701670, G37003300" -County and PUMA "G3701690, G37000300" -County and PUMA "G3701710, G37000200" -County and PUMA "G3701730, G37002300" -County and PUMA "G3701750, G37002500" -County and PUMA "G3701770, G37000800" -County and PUMA "G3701790, G37005300" -County and PUMA "G3701790, G37005400" -County and PUMA "G3701810, G37000500" -County and PUMA "G3701830, G37001201" -County and PUMA "G3701830, G37001202" -County and PUMA "G3701830, G37001203" -County and PUMA "G3701830, G37001204" -County and PUMA "G3701830, G37001205" -County and PUMA "G3701830, G37001206" -County and PUMA "G3701830, G37001207" -County and PUMA "G3701830, G37001208" -County and PUMA "G3701850, G37000500" -County and PUMA "G3701850, G37000600" -County and PUMA "G3701870, G37000800" -County and PUMA "G3701890, G37000100" -County and PUMA "G3701910, G37004000" -County and PUMA "G3701930, G37000200" -County and PUMA "G3701950, G37001000" -County and PUMA "G3701970, G37001900" -County and PUMA "G3701990, G37000100" -County and PUMA "G3800010, G38000100" -County and PUMA "G3800030, G38000200" -County and PUMA "G3800050, G38000200" -County and PUMA "G3800070, G38000100" -County and PUMA "G3800090, G38000200" -County and PUMA "G3800110, G38000100" -County and PUMA "G3800130, G38000100" -County and PUMA "G3800150, G38000300" -County and PUMA "G3800170, G38000500" -County and PUMA "G3800190, G38000400" -County and PUMA "G3800210, G38000200" -County and PUMA "G3800230, G38000100" -County and PUMA "G3800250, G38000100" -County and PUMA "G3800270, G38000200" -County and PUMA "G3800290, G38000300" -County and PUMA "G3800310, G38000200" -County and PUMA "G3800330, G38000100" -County and PUMA "G3800350, G38000400" -County and PUMA "G3800370, G38000100" -County and PUMA "G3800390, G38000400" -County and PUMA "G3800410, G38000100" -County and PUMA "G3800430, G38000300" -County and PUMA "G3800450, G38000200" -County and PUMA "G3800470, G38000300" -County and PUMA "G3800490, G38000100" -County and PUMA "G3800510, G38000300" -County and PUMA "G3800530, G38000100" -County and PUMA "G3800550, G38000100" -County and PUMA "G3800570, G38000100" -County and PUMA "G3800590, G38000300" -County and PUMA "G3800610, G38000100" -County and PUMA "G3800630, G38000200" -County and PUMA "G3800650, G38000100" -County and PUMA "G3800670, G38000400" -County and PUMA "G3800690, G38000200" -County and PUMA "G3800710, G38000200" -County and PUMA "G3800730, G38000200" -County and PUMA "G3800750, G38000100" -County and PUMA "G3800770, G38000200" -County and PUMA "G3800790, G38000200" -County and PUMA "G3800810, G38000200" -County and PUMA "G3800830, G38000200" -County and PUMA "G3800850, G38000100" -County and PUMA "G3800870, G38000100" -County and PUMA "G3800890, G38000100" -County and PUMA "G3800910, G38000400" -County and PUMA "G3800930, G38000200" -County and PUMA "G3800950, G38000400" -County and PUMA "G3800970, G38000400" -County and PUMA "G3800990, G38000400" -County and PUMA "G3801010, G38000100" -County and PUMA "G3801030, G38000200" -County and PUMA "G3801050, G38000100" -County and PUMA "G3900010, G39005200" -County and PUMA "G3900030, G39002500" -County and PUMA "G3900050, G39002100" -County and PUMA "G3900070, G39001300" -County and PUMA "G3900090, G39005000" -County and PUMA "G3900110, G39002600" -County and PUMA "G3900130, G39003500" -County and PUMA "G3900150, G39005700" -County and PUMA "G3900170, G39005401" -County and PUMA "G3900170, G39005402" -County and PUMA "G3900170, G39005403" -County and PUMA "G3900190, G39003300" -County and PUMA "G3900210, G39002700" -County and PUMA "G3900230, G39004300" -County and PUMA "G3900250, G39005600" -County and PUMA "G3900250, G39005700" -County and PUMA "G3900270, G39005200" -County and PUMA "G3900290, G39003400" -County and PUMA "G3900310, G39002900" -County and PUMA "G3900330, G39002300" -County and PUMA "G3900350, G39000901" -County and PUMA "G3900350, G39000902" -County and PUMA "G3900350, G39000903" -County and PUMA "G3900350, G39000904" -County and PUMA "G3900350, G39000905" -County and PUMA "G3900350, G39000906" -County and PUMA "G3900350, G39000907" -County and PUMA "G3900350, G39000908" -County and PUMA "G3900350, G39000909" -County and PUMA "G3900350, G39000910" -County and PUMA "G3900370, G39004500" -County and PUMA "G3900390, G39000100" -County and PUMA "G3900410, G39004000" -County and PUMA "G3900430, G39000700" -County and PUMA "G3900450, G39003900" -County and PUMA "G3900470, G39004800" -County and PUMA "G3900490, G39004101" -County and PUMA "G3900490, G39004102" -County and PUMA "G3900490, G39004103" -County and PUMA "G3900490, G39004104" -County and PUMA "G3900490, G39004105" -County and PUMA "G3900490, G39004106" -County and PUMA "G3900490, G39004107" -County and PUMA "G3900490, G39004108" -County and PUMA "G3900490, G39004109" -County and PUMA "G3900490, G39004110" -County and PUMA "G3900490, G39004111" -County and PUMA "G3900510, G39000200" -County and PUMA "G3900530, G39005000" -County and PUMA "G3900550, G39001200" -County and PUMA "G3900570, G39004700" -County and PUMA "G3900590, G39002900" -County and PUMA "G3900610, G39005501" -County and PUMA "G3900610, G39005502" -County and PUMA "G3900610, G39005503" -County and PUMA "G3900610, G39005504" -County and PUMA "G3900610, G39005505" -County and PUMA "G3900610, G39005506" -County and PUMA "G3900610, G39005507" -County and PUMA "G3900630, G39002400" -County and PUMA "G3900650, G39002700" -County and PUMA "G3900670, G39003000" -County and PUMA "G3900690, G39000100" -County and PUMA "G3900710, G39005200" -County and PUMA "G3900730, G39004900" -County and PUMA "G3900750, G39002900" -County and PUMA "G3900770, G39002100" -County and PUMA "G3900790, G39004900" -County and PUMA "G3900810, G39003500" -County and PUMA "G3900830, G39002800" -County and PUMA "G3900850, G39001000" -County and PUMA "G3900850, G39001100" -County and PUMA "G3900850, G39001200" -County and PUMA "G3900870, G39005100" -County and PUMA "G3900890, G39003800" -County and PUMA "G3900910, G39002700" -County and PUMA "G3900930, G39000801" -County and PUMA "G3900930, G39000802" -County and PUMA "G3900950, G39000200" -County and PUMA "G3900950, G39000300" -County and PUMA "G3900950, G39000400" -County and PUMA "G3900950, G39000500" -County and PUMA "G3900950, G39000600" -County and PUMA "G3900970, G39004200" -County and PUMA "G3900990, G39001400" -County and PUMA "G3900990, G39001500" -County and PUMA "G3901010, G39002800" -County and PUMA "G3901030, G39001900" -County and PUMA "G3901050, G39005000" -County and PUMA "G3901070, G39002600" -County and PUMA "G3901090, G39004400" -County and PUMA "G3901110, G39003600" -County and PUMA "G3901130, G39004601" -County and PUMA "G3901130, G39004602" -County and PUMA "G3901130, G39004603" -County and PUMA "G3901130, G39004604" -County and PUMA "G3901150, G39003600" -County and PUMA "G3901170, G39002800" -County and PUMA "G3901190, G39003700" -County and PUMA "G3901210, G39003600" -County and PUMA "G3901230, G39000600" -County and PUMA "G3901250, G39000100" -County and PUMA "G3901270, G39003700" -County and PUMA "G3901290, G39004200" -County and PUMA "G3901310, G39004900" -County and PUMA "G3901330, G39001700" -County and PUMA "G3901350, G39004500" -County and PUMA "G3901370, G39002400" -County and PUMA "G3901390, G39002200" -County and PUMA "G3901410, G39004800" -County and PUMA "G3901430, G39000700" -County and PUMA "G3901450, G39005100" -County and PUMA "G3901470, G39002300" -County and PUMA "G3901490, G39004500" -County and PUMA "G3901510, G39003100" -County and PUMA "G3901510, G39003200" -County and PUMA "G3901510, G39003300" -County and PUMA "G3901530, G39001801" -County and PUMA "G3901530, G39001802" -County and PUMA "G3901530, G39001803" -County and PUMA "G3901530, G39001804" -County and PUMA "G3901530, G39001805" -County and PUMA "G3901550, G39001400" -County and PUMA "G3901550, G39001600" -County and PUMA "G3901570, G39003000" -County and PUMA "G3901590, G39004200" -County and PUMA "G3901610, G39002600" -County and PUMA "G3901630, G39004900" -County and PUMA "G3901650, G39005301" -County and PUMA "G3901650, G39005302" -County and PUMA "G3901670, G39003600" -County and PUMA "G3901690, G39002000" -County and PUMA "G3901710, G39000100" -County and PUMA "G3901730, G39000200" -County and PUMA "G3901730, G39000300" -County and PUMA "G3901730, G39000600" -County and PUMA "G3901750, G39002300" -County and PUMA "G4000010, G40000200" -County and PUMA "G4000030, G40000500" -County and PUMA "G4000050, G40000702" -County and PUMA "G4000070, G40000500" -County and PUMA "G4000090, G40000400" -County and PUMA "G4000110, G40000500" -County and PUMA "G4000130, G40000702" -County and PUMA "G4000150, G40000602" -County and PUMA "G4000170, G40000800" -County and PUMA "G4000190, G40000701" -County and PUMA "G4000210, G40000200" -County and PUMA "G4000230, G40000300" -County and PUMA "G4000250, G40000500" -County and PUMA "G4000270, G40000900" -County and PUMA "G4000290, G40000702" -County and PUMA "G4000310, G40000601" -County and PUMA "G4000310, G40000602" -County and PUMA "G4000330, G40000602" -County and PUMA "G4000350, G40000100" -County and PUMA "G4000370, G40001204" -County and PUMA "G4000370, G40001501" -County and PUMA "G4000370, G40001601" -County and PUMA "G4000390, G40000400" -County and PUMA "G4000410, G40000100" -County and PUMA "G4000430, G40000500" -County and PUMA "G4000450, G40000500" -County and PUMA "G4000470, G40001400" -County and PUMA "G4000490, G40000701" -County and PUMA "G4000510, G40001101" -County and PUMA "G4000530, G40000500" -County and PUMA "G4000550, G40000400" -County and PUMA "G4000570, G40000400" -County and PUMA "G4000590, G40000500" -County and PUMA "G4000610, G40000300" -County and PUMA "G4000630, G40001501" -County and PUMA "G4000650, G40000400" -County and PUMA "G4000670, G40000602" -County and PUMA "G4000690, G40000702" -County and PUMA "G4000710, G40001400" -County and PUMA "G4000730, G40000500" -County and PUMA "G4000750, G40000400" -County and PUMA "G4000770, G40000300" -County and PUMA "G4000790, G40000300" -County and PUMA "G4000810, G40001102" -County and PUMA "G4000830, G40001102" -County and PUMA "G4000850, G40000701" -County and PUMA "G4000870, G40001101" -County and PUMA "G4000890, G40000300" -County and PUMA "G4000910, G40001302" -County and PUMA "G4000930, G40000500" -County and PUMA "G4000950, G40000702" -County and PUMA "G4000970, G40000100" -County and PUMA "G4000990, G40000701" -County and PUMA "G4001010, G40001302" -County and PUMA "G4001030, G40001400" -County and PUMA "G4001050, G40000100" -County and PUMA "G4001070, G40001501" -County and PUMA "G4001090, G40001001" -County and PUMA "G4001090, G40001002" -County and PUMA "G4001090, G40001003" -County and PUMA "G4001090, G40001004" -County and PUMA "G4001090, G40001005" -County and PUMA "G4001090, G40001006" -County and PUMA "G4001110, G40001302" -County and PUMA "G4001130, G40001204" -County and PUMA "G4001130, G40001601" -County and PUMA "G4001150, G40000100" -County and PUMA "G4001170, G40001601" -County and PUMA "G4001190, G40001501" -County and PUMA "G4001210, G40000300" -County and PUMA "G4001230, G40000701" -County and PUMA "G4001230, G40000702" -County and PUMA "G4001250, G40001101" -County and PUMA "G4001250, G40001102" -County and PUMA "G4001270, G40000300" -County and PUMA "G4001290, G40000400" -County and PUMA "G4001310, G40000100" -County and PUMA "G4001310, G40001301" -County and PUMA "G4001330, G40001501" -County and PUMA "G4001350, G40000200" -County and PUMA "G4001370, G40000602" -County and PUMA "G4001390, G40000500" -County and PUMA "G4001410, G40000602" -County and PUMA "G4001430, G40001201" -County and PUMA "G4001430, G40001202" -County and PUMA "G4001430, G40001203" -County and PUMA "G4001430, G40001204" -County and PUMA "G4001450, G40001301" -County and PUMA "G4001450, G40001302" -County and PUMA "G4001470, G40001601" -County and PUMA "G4001490, G40000400" -County and PUMA "G4001510, G40000500" -County and PUMA "G4001530, G40000500" -County and PUMA "G4100010, G41000100" -County and PUMA "G4100030, G41000600" -County and PUMA "G4100050, G41001317" -County and PUMA "G4100050, G41001318" -County and PUMA "G4100050, G41001319" -County and PUMA "G4100070, G41000500" -County and PUMA "G4100090, G41000500" -County and PUMA "G4100110, G41000800" -County and PUMA "G4100130, G41000200" -County and PUMA "G4100150, G41000800" -County and PUMA "G4100170, G41000400" -County and PUMA "G4100190, G41001000" -County and PUMA "G4100210, G41000200" -County and PUMA "G4100230, G41000200" -County and PUMA "G4100250, G41000300" -County and PUMA "G4100270, G41000200" -County and PUMA "G4100290, G41000901" -County and PUMA "G4100290, G41000902" -County and PUMA "G4100310, G41000200" -County and PUMA "G4100330, G41000800" -County and PUMA "G4100350, G41000300" -County and PUMA "G4100370, G41000300" -County and PUMA "G4100390, G41000703" -County and PUMA "G4100390, G41000704" -County and PUMA "G4100390, G41000705" -County and PUMA "G4100410, G41000500" -County and PUMA "G4100430, G41000600" -County and PUMA "G4100450, G41000300" -County and PUMA "G4100470, G41001103" -County and PUMA "G4100470, G41001104" -County and PUMA "G4100470, G41001105" -County and PUMA "G4100490, G41000200" -County and PUMA "G4100510, G41001301" -County and PUMA "G4100510, G41001302" -County and PUMA "G4100510, G41001303" -County and PUMA "G4100510, G41001305" -County and PUMA "G4100510, G41001314" -County and PUMA "G4100510, G41001316" -County and PUMA "G4100530, G41001200" -County and PUMA "G4100550, G41000200" -County and PUMA "G4100570, G41000500" -County and PUMA "G4100590, G41000100" -County and PUMA "G4100610, G41000100" -County and PUMA "G4100630, G41000100" -County and PUMA "G4100650, G41000200" -County and PUMA "G4100670, G41001320" -County and PUMA "G4100670, G41001321" -County and PUMA "G4100670, G41001322" -County and PUMA "G4100670, G41001323" -County and PUMA "G4100670, G41001324" -County and PUMA "G4100690, G41000200" -County and PUMA "G4100710, G41001200" -County and PUMA "G4200010, G42003701" -County and PUMA "G4200030, G42001701" -County and PUMA "G4200030, G42001702" -County and PUMA "G4200030, G42001801" -County and PUMA "G4200030, G42001802" -County and PUMA "G4200030, G42001803" -County and PUMA "G4200030, G42001804" -County and PUMA "G4200030, G42001805" -County and PUMA "G4200030, G42001806" -County and PUMA "G4200030, G42001807" -County and PUMA "G4200050, G42001900" -County and PUMA "G4200070, G42001501" -County and PUMA "G4200070, G42001502" -County and PUMA "G4200090, G42003800" -County and PUMA "G4200110, G42002701" -County and PUMA "G4200110, G42002702" -County and PUMA "G4200110, G42002703" -County and PUMA "G4200130, G42002200" -County and PUMA "G4200150, G42000400" -County and PUMA "G4200170, G42003001" -County and PUMA "G4200170, G42003002" -County and PUMA "G4200170, G42003003" -County and PUMA "G4200170, G42003004" -County and PUMA "G4200190, G42001600" -County and PUMA "G4200210, G42002100" -County and PUMA "G4200230, G42000300" -County and PUMA "G4200250, G42002801" -County and PUMA "G4200270, G42001200" -County and PUMA "G4200290, G42003401" -County and PUMA "G4200290, G42003402" -County and PUMA "G4200290, G42003403" -County and PUMA "G4200290, G42003404" -County and PUMA "G4200310, G42001300" -County and PUMA "G4200330, G42000300" -County and PUMA "G4200350, G42000900" -County and PUMA "G4200370, G42000803" -County and PUMA "G4200390, G42000200" -County and PUMA "G4200410, G42002301" -County and PUMA "G4200410, G42002302" -County and PUMA "G4200430, G42002401" -County and PUMA "G4200430, G42002402" -County and PUMA "G4200450, G42003301" -County and PUMA "G4200450, G42003302" -County and PUMA "G4200450, G42003303" -County and PUMA "G4200450, G42003304" -County and PUMA "G4200470, G42000300" -County and PUMA "G4200490, G42000101" -County and PUMA "G4200490, G42000102" -County and PUMA "G4200510, G42003900" -County and PUMA "G4200530, G42001300" -County and PUMA "G4200550, G42003701" -County and PUMA "G4200550, G42003702" -County and PUMA "G4200570, G42003800" -County and PUMA "G4200590, G42004002" -County and PUMA "G4200610, G42002200" -County and PUMA "G4200630, G42001900" -County and PUMA "G4200650, G42001300" -County and PUMA "G4200670, G42001100" -County and PUMA "G4200690, G42000701" -County and PUMA "G4200690, G42000702" -County and PUMA "G4200710, G42003501" -County and PUMA "G4200710, G42003502" -County and PUMA "G4200710, G42003503" -County and PUMA "G4200710, G42003504" -County and PUMA "G4200730, G42001501" -County and PUMA "G4200750, G42002500" -County and PUMA "G4200770, G42002801" -County and PUMA "G4200770, G42002802" -County and PUMA "G4200770, G42002803" -County and PUMA "G4200770, G42002901" -County and PUMA "G4200790, G42000801" -County and PUMA "G4200790, G42000802" -County and PUMA "G4200790, G42000803" -County and PUMA "G4200810, G42000900" -County and PUMA "G4200830, G42000300" -County and PUMA "G4200850, G42001400" -County and PUMA "G4200870, G42001100" -County and PUMA "G4200890, G42000600" -County and PUMA "G4200910, G42003101" -County and PUMA "G4200910, G42003102" -County and PUMA "G4200910, G42003103" -County and PUMA "G4200910, G42003104" -County and PUMA "G4200910, G42003105" -County and PUMA "G4200910, G42003106" -County and PUMA "G4200930, G42001000" -County and PUMA "G4200950, G42002901" -County and PUMA "G4200950, G42002902" -County and PUMA "G4200970, G42001000" -County and PUMA "G4200990, G42002301" -County and PUMA "G4201010, G42003201" -County and PUMA "G4201010, G42003202" -County and PUMA "G4201010, G42003203" -County and PUMA "G4201010, G42003204" -County and PUMA "G4201010, G42003205" -County and PUMA "G4201010, G42003206" -County and PUMA "G4201010, G42003207" -County and PUMA "G4201010, G42003208" -County and PUMA "G4201010, G42003209" -County and PUMA "G4201010, G42003210" -County and PUMA "G4201010, G42003211" -County and PUMA "G4201030, G42000500" -County and PUMA "G4201050, G42000300" -County and PUMA "G4201070, G42002600" -County and PUMA "G4201090, G42001100" -County and PUMA "G4201110, G42003800" -County and PUMA "G4201130, G42000400" -County and PUMA "G4201150, G42000500" -County and PUMA "G4201170, G42000400" -County and PUMA "G4201190, G42001100" -County and PUMA "G4201210, G42001300" -County and PUMA "G4201230, G42000200" -County and PUMA "G4201250, G42004001" -County and PUMA "G4201250, G42004002" -County and PUMA "G4201270, G42000500" -County and PUMA "G4201290, G42002001" -County and PUMA "G4201290, G42002002" -County and PUMA "G4201290, G42002003" -County and PUMA "G4201310, G42000702" -County and PUMA "G4201330, G42003601" -County and PUMA "G4201330, G42003602" -County and PUMA "G4201330, G42003603" -County and PUMA "G4400010, G44000300" -County and PUMA "G4400030, G44000201" -County and PUMA "G4400050, G44000300" -County and PUMA "G4400070, G44000101" -County and PUMA "G4400070, G44000102" -County and PUMA "G4400070, G44000103" -County and PUMA "G4400070, G44000104" -County and PUMA "G4400090, G44000400" -County and PUMA "G4500010, G45001600" -County and PUMA "G4500030, G45001500" -County and PUMA "G4500050, G45001300" -County and PUMA "G4500070, G45000200" -County and PUMA "G4500090, G45001300" -County and PUMA "G4500110, G45001300" -County and PUMA "G4500130, G45001400" -County and PUMA "G4500150, G45001201" -County and PUMA "G4500150, G45001202" -County and PUMA "G4500150, G45001203" -County and PUMA "G4500150, G45001204" -County and PUMA "G4500170, G45000605" -County and PUMA "G4500190, G45001201" -County and PUMA "G4500190, G45001202" -County and PUMA "G4500190, G45001203" -County and PUMA "G4500190, G45001204" -County and PUMA "G4500210, G45000400" -County and PUMA "G4500230, G45000400" -County and PUMA "G4500250, G45000700" -County and PUMA "G4500270, G45000800" -County and PUMA "G4500290, G45001300" -County and PUMA "G4500310, G45000900" -County and PUMA "G4500330, G45001000" -County and PUMA "G4500350, G45001201" -County and PUMA "G4500350, G45001204" -County and PUMA "G4500370, G45001500" -County and PUMA "G4500390, G45000603" -County and PUMA "G4500410, G45000900" -County and PUMA "G4500430, G45001000" -County and PUMA "G4500450, G45000102" -County and PUMA "G4500450, G45000103" -County and PUMA "G4500450, G45000104" -County and PUMA "G4500450, G45000105" -County and PUMA "G4500470, G45001600" -County and PUMA "G4500490, G45001300" -County and PUMA "G4500510, G45001101" -County and PUMA "G4500510, G45001102" -County and PUMA "G4500530, G45001400" -County and PUMA "G4500550, G45000605" -County and PUMA "G4500570, G45000700" -County and PUMA "G4500590, G45000105" -County and PUMA "G4500610, G45000800" -County and PUMA "G4500630, G45000601" -County and PUMA "G4500630, G45000602" -County and PUMA "G4500650, G45001600" -County and PUMA "G4500670, G45001000" -County and PUMA "G4500690, G45000700" -County and PUMA "G4500710, G45000400" -County and PUMA "G4500730, G45000101" -County and PUMA "G4500750, G45001300" -County and PUMA "G4500770, G45000101" -County and PUMA "G4500790, G45000603" -County and PUMA "G4500790, G45000604" -County and PUMA "G4500790, G45000605" -County and PUMA "G4500810, G45000601" -County and PUMA "G4500830, G45000301" -County and PUMA "G4500830, G45000302" -County and PUMA "G4500850, G45000800" -County and PUMA "G4500870, G45000400" -County and PUMA "G4500890, G45000800" -County and PUMA "G4500910, G45000501" -County and PUMA "G4500910, G45000502" -County and PUMA "G4600030, G46000400" -County and PUMA "G4600050, G46000400" -County and PUMA "G4600070, G46000200" -County and PUMA "G4600090, G46000400" -County and PUMA "G4600110, G46000400" -County and PUMA "G4600130, G46000300" -County and PUMA "G4600150, G46000400" -County and PUMA "G4600170, G46000200" -County and PUMA "G4600190, G46000100" -County and PUMA "G4600210, G46000300" -County and PUMA "G4600230, G46000200" -County and PUMA "G4600250, G46000300" -County and PUMA "G4600270, G46000500" -County and PUMA "G4600290, G46000300" -County and PUMA "G4600310, G46000200" -County and PUMA "G4600330, G46000100" -County and PUMA "G4600350, G46000400" -County and PUMA "G4600370, G46000300" -County and PUMA "G4600390, G46000300" -County and PUMA "G4600410, G46000200" -County and PUMA "G4600430, G46000400" -County and PUMA "G4600450, G46000300" -County and PUMA "G4600470, G46000200" -County and PUMA "G4600490, G46000300" -County and PUMA "G4600510, G46000300" -County and PUMA "G4600530, G46000200" -County and PUMA "G4600550, G46000200" -County and PUMA "G4600570, G46000300" -County and PUMA "G4600590, G46000400" -County and PUMA "G4600610, G46000400" -County and PUMA "G4600630, G46000100" -County and PUMA "G4600650, G46000200" -County and PUMA "G4600670, G46000400" -County and PUMA "G4600690, G46000200" -County and PUMA "G4600710, G46000200" -County and PUMA "G4600730, G46000400" -County and PUMA "G4600750, G46000200" -County and PUMA "G4600770, G46000400" -County and PUMA "G4600790, G46000400" -County and PUMA "G4600810, G46000100" -County and PUMA "G4600830, G46000500" -County and PUMA "G4600830, G46000600" -County and PUMA "G4600850, G46000200" -County and PUMA "G4600870, G46000500" -County and PUMA "G4600890, G46000300" -County and PUMA "G4600910, G46000300" -County and PUMA "G4600930, G46000100" -County and PUMA "G4600950, G46000200" -County and PUMA "G4600970, G46000400" -County and PUMA "G4600990, G46000500" -County and PUMA "G4600990, G46000600" -County and PUMA "G4601010, G46000400" -County and PUMA "G4601020, G46000200" -County and PUMA "G4601030, G46000100" -County and PUMA "G4601050, G46000100" -County and PUMA "G4601070, G46000300" -County and PUMA "G4601090, G46000300" -County and PUMA "G4601110, G46000400" -County and PUMA "G4601150, G46000300" -County and PUMA "G4601170, G46000200" -County and PUMA "G4601190, G46000200" -County and PUMA "G4601210, G46000200" -County and PUMA "G4601230, G46000200" -County and PUMA "G4601250, G46000500" -County and PUMA "G4601270, G46000500" -County and PUMA "G4601290, G46000300" -County and PUMA "G4601350, G46000500" -County and PUMA "G4601370, G46000200" -County and PUMA "G4700010, G47001601" -County and PUMA "G4700030, G47002700" -County and PUMA "G4700050, G47000200" -County and PUMA "G4700070, G47002100" -County and PUMA "G4700090, G47001700" -County and PUMA "G4700110, G47001900" -County and PUMA "G4700130, G47000900" -County and PUMA "G4700150, G47000600" -County and PUMA "G4700170, G47000200" -County and PUMA "G4700190, G47001200" -County and PUMA "G4700210, G47000400" -County and PUMA "G4700230, G47003000" -County and PUMA "G4700250, G47000900" -County and PUMA "G4700270, G47000700" -County and PUMA "G4700290, G47001400" -County and PUMA "G4700310, G47002200" -County and PUMA "G4700330, G47000100" -County and PUMA "G4700350, G47000800" -County and PUMA "G4700370, G47002501" -County and PUMA "G4700370, G47002502" -County and PUMA "G4700370, G47002503" -County and PUMA "G4700370, G47002504" -County and PUMA "G4700370, G47002505" -County and PUMA "G4700390, G47002900" -County and PUMA "G4700410, G47000600" -County and PUMA "G4700430, G47000400" -County and PUMA "G4700450, G47000100" -County and PUMA "G4700470, G47003100" -County and PUMA "G4700490, G47000800" -County and PUMA "G4700510, G47002200" -County and PUMA "G4700530, G47000100" -County and PUMA "G4700550, G47002800" -County and PUMA "G4700570, G47001400" -County and PUMA "G4700590, G47001200" -County and PUMA "G4700610, G47002100" -County and PUMA "G4700630, G47001400" -County and PUMA "G4700650, G47002001" -County and PUMA "G4700650, G47002002" -County and PUMA "G4700650, G47002003" -County and PUMA "G4700670, G47000900" -County and PUMA "G4700690, G47002900" -County and PUMA "G4700710, G47002900" -County and PUMA "G4700730, G47001000" -County and PUMA "G4700750, G47002900" -County and PUMA "G4700770, G47002900" -County and PUMA "G4700790, G47000200" -County and PUMA "G4700810, G47000400" -County and PUMA "G4700830, G47000200" -County and PUMA "G4700850, G47000200" -County and PUMA "G4700870, G47000700" -County and PUMA "G4700890, G47001500" -County and PUMA "G4700910, G47001200" -County and PUMA "G4700930, G47001601" -County and PUMA "G4700930, G47001602" -County and PUMA "G4700930, G47001603" -County and PUMA "G4700930, G47001604" -County and PUMA "G4700950, G47000100" -County and PUMA "G4700970, G47003100" -County and PUMA "G4700990, G47002800" -County and PUMA "G4701010, G47002800" -County and PUMA "G4701030, G47002200" -County and PUMA "G4701050, G47001800" -County and PUMA "G4701070, G47001900" -County and PUMA "G4701090, G47002900" -County and PUMA "G4701110, G47000600" -County and PUMA "G4701130, G47003000" -County and PUMA "G4701150, G47002100" -County and PUMA "G4701170, G47002700" -County and PUMA "G4701190, G47002700" -County and PUMA "G4701210, G47002100" -County and PUMA "G4701230, G47001800" -County and PUMA "G4701250, G47000300" -County and PUMA "G4701270, G47002200" -County and PUMA "G4701290, G47000900" -County and PUMA "G4701310, G47000100" -County and PUMA "G4701330, G47000700" -County and PUMA "G4701350, G47002800" -County and PUMA "G4701370, G47000700" -County and PUMA "G4701390, G47001900" -County and PUMA "G4701410, G47000700" -County and PUMA "G4701430, G47002100" -County and PUMA "G4701450, G47001800" -County and PUMA "G4701470, G47000400" -County and PUMA "G4701490, G47002401" -County and PUMA "G4701490, G47002402" -County and PUMA "G4701510, G47000900" -County and PUMA "G4701530, G47002100" -County and PUMA "G4701550, G47001500" -County and PUMA "G4701570, G47003201" -County and PUMA "G4701570, G47003202" -County and PUMA "G4701570, G47003203" -County and PUMA "G4701570, G47003204" -County and PUMA "G4701570, G47003205" -County and PUMA "G4701570, G47003206" -County and PUMA "G4701570, G47003207" -County and PUMA "G4701570, G47003208" -County and PUMA "G4701590, G47000600" -County and PUMA "G4701610, G47000300" -County and PUMA "G4701630, G47001000" -County and PUMA "G4701630, G47001100" -County and PUMA "G4701650, G47000500" -County and PUMA "G4701670, G47003100" -County and PUMA "G4701690, G47000600" -County and PUMA "G4701710, G47001200" -County and PUMA "G4701730, G47001601" -County and PUMA "G4701750, G47000800" -County and PUMA "G4701770, G47000600" -County and PUMA "G4701790, G47001300" -County and PUMA "G4701810, G47002800" -County and PUMA "G4701830, G47000200" -County and PUMA "G4701850, G47000800" -County and PUMA "G4701870, G47002600" -County and PUMA "G4701890, G47002300" -County and PUMA "G4800010, G48001800" -County and PUMA "G4800030, G48003200" -County and PUMA "G4800050, G48004000" -County and PUMA "G4800070, G48006500" -County and PUMA "G4800090, G48000600" -County and PUMA "G4800110, G48000100" -County and PUMA "G4800130, G48006100" -County and PUMA "G4800150, G48005000" -County and PUMA "G4800170, G48000400" -County and PUMA "G4800190, G48006100" -County and PUMA "G4800210, G48005100" -County and PUMA "G4800230, G48000600" -County and PUMA "G4800250, G48006500" -County and PUMA "G4800270, G48003501" -County and PUMA "G4800270, G48003502" -County and PUMA "G4800290, G48005901" -County and PUMA "G4800290, G48005902" -County and PUMA "G4800290, G48005903" -County and PUMA "G4800290, G48005904" -County and PUMA "G4800290, G48005905" -County and PUMA "G4800290, G48005906" -County and PUMA "G4800290, G48005907" -County and PUMA "G4800290, G48005908" -County and PUMA "G4800290, G48005909" -County and PUMA "G4800290, G48005910" -County and PUMA "G4800290, G48005911" -County and PUMA "G4800290, G48005912" -County and PUMA "G4800290, G48005913" -County and PUMA "G4800290, G48005914" -County and PUMA "G4800290, G48005915" -County and PUMA "G4800290, G48005916" -County and PUMA "G4800310, G48006000" -County and PUMA "G4800330, G48002800" -County and PUMA "G4800350, G48003700" -County and PUMA "G4800370, G48001100" -County and PUMA "G4800390, G48004801" -County and PUMA "G4800390, G48004802" -County and PUMA "G4800390, G48004803" -County and PUMA "G4800410, G48003602" -County and PUMA "G4800430, G48003200" -County and PUMA "G4800450, G48000100" -County and PUMA "G4800470, G48006900" -County and PUMA "G4800490, G48002600" -County and PUMA "G4800510, G48003601" -County and PUMA "G4800530, G48003400" -County and PUMA "G4800550, G48005100" -County and PUMA "G4800570, G48005600" -County and PUMA "G4800590, G48002600" -County and PUMA "G4800610, G48006701" -County and PUMA "G4800610, G48006702" -County and PUMA "G4800610, G48006703" -County and PUMA "G4800630, G48001300" -County and PUMA "G4800650, G48000100" -County and PUMA "G4800670, G48001100" -County and PUMA "G4800690, G48000100" -County and PUMA "G4800710, G48004400" -County and PUMA "G4800730, G48001700" -County and PUMA "G4800750, G48000100" -County and PUMA "G4800770, G48000600" -County and PUMA "G4800790, G48000400" -County and PUMA "G4800810, G48002800" -County and PUMA "G4800830, G48002600" -County and PUMA "G4800850, G48001901" -County and PUMA "G4800850, G48001902" -County and PUMA "G4800850, G48001903" -County and PUMA "G4800850, G48001904" -County and PUMA "G4800850, G48001905" -County and PUMA "G4800850, G48001906" -County and PUMA "G4800850, G48001907" -County and PUMA "G4800870, G48000100" -County and PUMA "G4800890, G48005000" -County and PUMA "G4800910, G48005800" -County and PUMA "G4800930, G48002600" -County and PUMA "G4800950, G48002800" -County and PUMA "G4800970, G48000800" -County and PUMA "G4800990, G48003400" -County and PUMA "G4801010, G48000600" -County and PUMA "G4801030, G48003200" -County and PUMA "G4801050, G48002800" -County and PUMA "G4801070, G48000400" -County and PUMA "G4801090, G48003200" -County and PUMA "G4801110, G48000100" -County and PUMA "G4801130, G48002301" -County and PUMA "G4801130, G48002302" -County and PUMA "G4801130, G48002303" -County and PUMA "G4801130, G48002304" -County and PUMA "G4801130, G48002305" -County and PUMA "G4801130, G48002306" -County and PUMA "G4801130, G48002307" -County and PUMA "G4801130, G48002308" -County and PUMA "G4801130, G48002309" -County and PUMA "G4801130, G48002310" -County and PUMA "G4801130, G48002311" -County and PUMA "G4801130, G48002312" -County and PUMA "G4801130, G48002313" -County and PUMA "G4801130, G48002314" -County and PUMA "G4801130, G48002315" -County and PUMA "G4801130, G48002316" -County and PUMA "G4801130, G48002317" -County and PUMA "G4801130, G48002318" -County and PUMA "G4801130, G48002319" -County and PUMA "G4801130, G48002320" -County and PUMA "G4801130, G48002321" -County and PUMA "G4801130, G48002322" -County and PUMA "G4801150, G48002800" -County and PUMA "G4801170, G48000100" -County and PUMA "G4801190, G48001000" -County and PUMA "G4801210, G48002001" -County and PUMA "G4801210, G48002002" -County and PUMA "G4801210, G48002003" -County and PUMA "G4801210, G48002004" -County and PUMA "G4801210, G48002005" -County and PUMA "G4801210, G48002006" -County and PUMA "G4801230, G48005500" -County and PUMA "G4801250, G48000400" -County and PUMA "G4801270, G48006200" -County and PUMA "G4801290, G48000100" -County and PUMA "G4801310, G48006400" -County and PUMA "G4801330, G48002600" -County and PUMA "G4801350, G48003100" -County and PUMA "G4801370, G48006200" -County and PUMA "G4801390, G48002101" -County and PUMA "G4801410, G48003301" -County and PUMA "G4801410, G48003302" -County and PUMA "G4801410, G48003303" -County and PUMA "G4801410, G48003304" -County and PUMA "G4801410, G48003305" -County and PUMA "G4801410, G48003306" -County and PUMA "G4801430, G48002200" -County and PUMA "G4801450, G48003700" -County and PUMA "G4801470, G48000800" -County and PUMA "G4801490, G48005100" -County and PUMA "G4801510, G48002600" -County and PUMA "G4801530, G48000400" -County and PUMA "G4801550, G48000600" -County and PUMA "G4801570, G48004901" -County and PUMA "G4801570, G48004902" -County and PUMA "G4801570, G48004903" -County and PUMA "G4801570, G48004904" -County and PUMA "G4801570, G48004905" -County and PUMA "G4801590, G48001000" -County and PUMA "G4801610, G48003700" -County and PUMA "G4801630, G48006100" -County and PUMA "G4801650, G48003200" -County and PUMA "G4801670, G48004701" -County and PUMA "G4801670, G48004702" -County and PUMA "G4801690, G48000400" -County and PUMA "G4801710, G48006000" -County and PUMA "G4801730, G48002800" -County and PUMA "G4801750, G48005500" -County and PUMA "G4801770, G48005500" -County and PUMA "G4801790, G48000100" -County and PUMA "G4801810, G48000800" -County and PUMA "G4801830, G48001600" -County and PUMA "G4801850, G48003601" -County and PUMA "G4801870, G48005700" -County and PUMA "G4801890, G48000400" -County and PUMA "G4801910, G48000100" -County and PUMA "G4801930, G48003400" -County and PUMA "G4801950, G48000100" -County and PUMA "G4801970, G48000600" -County and PUMA "G4801990, G48004200" -County and PUMA "G4802010, G48004601" -County and PUMA "G4802010, G48004602" -County and PUMA "G4802010, G48004603" -County and PUMA "G4802010, G48004604" -County and PUMA "G4802010, G48004605" -County and PUMA "G4802010, G48004606" -County and PUMA "G4802010, G48004607" -County and PUMA "G4802010, G48004608" -County and PUMA "G4802010, G48004609" -County and PUMA "G4802010, G48004610" -County and PUMA "G4802010, G48004611" -County and PUMA "G4802010, G48004612" -County and PUMA "G4802010, G48004613" -County and PUMA "G4802010, G48004614" -County and PUMA "G4802010, G48004615" -County and PUMA "G4802010, G48004616" -County and PUMA "G4802010, G48004617" -County and PUMA "G4802010, G48004618" -County and PUMA "G4802010, G48004619" -County and PUMA "G4802010, G48004620" -County and PUMA "G4802010, G48004621" -County and PUMA "G4802010, G48004622" -County and PUMA "G4802010, G48004623" -County and PUMA "G4802010, G48004624" -County and PUMA "G4802010, G48004625" -County and PUMA "G4802010, G48004626" -County and PUMA "G4802010, G48004627" -County and PUMA "G4802010, G48004628" -County and PUMA "G4802010, G48004629" -County and PUMA "G4802010, G48004630" -County and PUMA "G4802010, G48004631" -County and PUMA "G4802010, G48004632" -County and PUMA "G4802010, G48004633" -County and PUMA "G4802010, G48004634" -County and PUMA "G4802010, G48004635" -County and PUMA "G4802010, G48004636" -County and PUMA "G4802010, G48004637" -County and PUMA "G4802010, G48004638" -County and PUMA "G4802030, G48001200" -County and PUMA "G4802050, G48000100" -County and PUMA "G4802070, G48002600" -County and PUMA "G4802090, G48005400" -County and PUMA "G4802110, G48000100" -County and PUMA "G4802130, G48001800" -County and PUMA "G4802150, G48006801" -County and PUMA "G4802150, G48006802" -County and PUMA "G4802150, G48006803" -County and PUMA "G4802150, G48006804" -County and PUMA "G4802150, G48006805" -County and PUMA "G4802150, G48006806" -County and PUMA "G4802150, G48006807" -County and PUMA "G4802170, G48003700" -County and PUMA "G4802190, G48000400" -County and PUMA "G4802210, G48002200" -County and PUMA "G4802230, G48001000" -County and PUMA "G4802250, G48003900" -County and PUMA "G4802270, G48002800" -County and PUMA "G4802290, G48003200" -County and PUMA "G4802310, G48000900" -County and PUMA "G4802330, G48000100" -County and PUMA "G4802350, G48002800" -County and PUMA "G4802370, G48000600" -County and PUMA "G4802390, G48005500" -County and PUMA "G4802410, G48004100" -County and PUMA "G4802430, G48003200" -County and PUMA "G4802450, G48004301" -County and PUMA "G4802450, G48004302" -County and PUMA "G4802470, G48006400" -County and PUMA "G4802490, G48006900" -County and PUMA "G4802510, G48002102" -County and PUMA "G4802530, G48002600" -County and PUMA "G4802550, G48005500" -County and PUMA "G4802570, G48001400" -County and PUMA "G4802590, G48006000" -County and PUMA "G4802610, G48006900" -County and PUMA "G4802630, G48002600" -County and PUMA "G4802650, G48006000" -County and PUMA "G4802670, G48002800" -County and PUMA "G4802690, G48000400" -County and PUMA "G4802710, G48006200" -County and PUMA "G4802730, G48006900" -County and PUMA "G4802750, G48002600" -County and PUMA "G4802770, G48001000" -County and PUMA "G4802790, G48000400" -County and PUMA "G4802810, G48003400" -County and PUMA "G4802830, G48006200" -County and PUMA "G4802850, G48005500" -County and PUMA "G4802870, G48005100" -County and PUMA "G4802890, G48003601" -County and PUMA "G4802910, G48004400" -County and PUMA "G4802930, G48003700" -County and PUMA "G4802950, G48000100" -County and PUMA "G4802970, G48006400" -County and PUMA "G4802990, G48003400" -County and PUMA "G4803010, G48003200" -County and PUMA "G4803030, G48000501" -County and PUMA "G4803030, G48000502" -County and PUMA "G4803050, G48000400" -County and PUMA "G4803070, G48002800" -County and PUMA "G4803090, G48003801" -County and PUMA "G4803090, G48003802" -County and PUMA "G4803110, G48006400" -County and PUMA "G4803130, G48003601" -County and PUMA "G4803150, G48001200" -County and PUMA "G4803170, G48002800" -County and PUMA "G4803190, G48002800" -County and PUMA "G4803210, G48005000" -County and PUMA "G4803230, G48006200" -County and PUMA "G4803250, G48006100" -County and PUMA "G4803270, G48002800" -County and PUMA "G4803290, G48003000" -County and PUMA "G4803310, G48003601" -County and PUMA "G4803330, G48003400" -County and PUMA "G4803350, G48002600" -County and PUMA "G4803370, G48000600" -County and PUMA "G4803390, G48004501" -County and PUMA "G4803390, G48004502" -County and PUMA "G4803390, G48004503" -County and PUMA "G4803390, G48004504" -County and PUMA "G4803410, G48000100" -County and PUMA "G4803430, G48001000" -County and PUMA "G4803450, G48000400" -County and PUMA "G4803470, G48004000" -County and PUMA "G4803490, G48003700" -County and PUMA "G4803510, G48004100" -County and PUMA "G4803530, G48002600" -County and PUMA "G4803550, G48006601" -County and PUMA "G4803550, G48006602" -County and PUMA "G4803550, G48006603" -County and PUMA "G4803570, G48000100" -County and PUMA "G4803590, G48000100" -County and PUMA "G4803610, G48004200" -County and PUMA "G4803630, G48002200" -County and PUMA "G4803650, G48001700" -County and PUMA "G4803670, G48002400" -County and PUMA "G4803690, G48000100" -County and PUMA "G4803710, G48003200" -County and PUMA "G4803730, G48003900" -County and PUMA "G4803750, G48000200" -County and PUMA "G4803770, G48003200" -County and PUMA "G4803790, G48001300" -County and PUMA "G4803810, G48000300" -County and PUMA "G4803830, G48002800" -County and PUMA "G4803850, G48006200" -County and PUMA "G4803870, G48001000" -County and PUMA "G4803890, G48003200" -County and PUMA "G4803910, G48006500" -County and PUMA "G4803930, G48000100" -County and PUMA "G4803950, G48003601" -County and PUMA "G4803970, G48000900" -County and PUMA "G4803990, G48002600" -County and PUMA "G4804010, G48001700" -County and PUMA "G4804030, G48004100" -County and PUMA "G4804050, G48004100" -County and PUMA "G4804070, G48003900" -County and PUMA "G4804090, G48006500" -County and PUMA "G4804110, G48003400" -County and PUMA "G4804130, G48002800" -County and PUMA "G4804150, G48002600" -County and PUMA "G4804170, G48002600" -County and PUMA "G4804190, G48004100" -County and PUMA "G4804210, G48000100" -County and PUMA "G4804230, G48001501" -County and PUMA "G4804230, G48001502" -County and PUMA "G4804250, G48002200" -County and PUMA "G4804270, G48006400" -County and PUMA "G4804290, G48002600" -County and PUMA "G4804310, G48002800" -County and PUMA "G4804330, G48002600" -County and PUMA "G4804350, G48002800" -County and PUMA "G4804370, G48000100" -County and PUMA "G4804390, G48002501" -County and PUMA "G4804390, G48002502" -County and PUMA "G4804390, G48002503" -County and PUMA "G4804390, G48002504" -County and PUMA "G4804390, G48002505" -County and PUMA "G4804390, G48002506" -County and PUMA "G4804390, G48002507" -County and PUMA "G4804390, G48002508" -County and PUMA "G4804390, G48002509" -County and PUMA "G4804390, G48002510" -County and PUMA "G4804390, G48002511" -County and PUMA "G4804390, G48002512" -County and PUMA "G4804390, G48002513" -County and PUMA "G4804390, G48002514" -County and PUMA "G4804390, G48002515" -County and PUMA "G4804390, G48002516" -County and PUMA "G4804410, G48002700" -County and PUMA "G4804430, G48003200" -County and PUMA "G4804450, G48000400" -County and PUMA "G4804470, G48002600" -County and PUMA "G4804490, G48001000" -County and PUMA "G4804510, G48002900" -County and PUMA "G4804530, G48005301" -County and PUMA "G4804530, G48005302" -County and PUMA "G4804530, G48005303" -County and PUMA "G4804530, G48005304" -County and PUMA "G4804530, G48005305" -County and PUMA "G4804530, G48005306" -County and PUMA "G4804530, G48005307" -County and PUMA "G4804530, G48005308" -County and PUMA "G4804530, G48005309" -County and PUMA "G4804550, G48003900" -County and PUMA "G4804570, G48004100" -County and PUMA "G4804590, G48001200" -County and PUMA "G4804610, G48002800" -County and PUMA "G4804630, G48006200" -County and PUMA "G4804650, G48006200" -County and PUMA "G4804670, G48001300" -County and PUMA "G4804690, G48005600" -County and PUMA "G4804710, G48003900" -County and PUMA "G4804730, G48005000" -County and PUMA "G4804750, G48003200" -County and PUMA "G4804770, G48003601" -County and PUMA "G4804790, G48006301" -County and PUMA "G4804790, G48006302" -County and PUMA "G4804810, G48005000" -County and PUMA "G4804830, G48000100" -County and PUMA "G4804850, G48000700" -County and PUMA "G4804870, G48000600" -County and PUMA "G4804890, G48006900" -County and PUMA "G4804910, G48005201" -County and PUMA "G4804910, G48005202" -County and PUMA "G4804910, G48005203" -County and PUMA "G4804910, G48005204" -County and PUMA "G4804930, G48005500" -County and PUMA "G4804950, G48003200" -County and PUMA "G4804970, G48000600" -County and PUMA "G4804990, G48001300" -County and PUMA "G4805010, G48000400" -County and PUMA "G4805030, G48000600" -County and PUMA "G4805050, G48006400" -County and PUMA "G4805070, G48006200" -County and PUMA "G4900010, G49021001" -County and PUMA "G4900030, G49003001" -County and PUMA "G4900050, G49005001" -County and PUMA "G4900070, G49013001" -County and PUMA "G4900090, G49013001" -County and PUMA "G4900110, G49011001" -County and PUMA "G4900110, G49011002" -County and PUMA "G4900130, G49013001" -County and PUMA "G4900150, G49013001" -County and PUMA "G4900170, G49021001" -County and PUMA "G4900190, G49013001" -County and PUMA "G4900210, G49021001" -County and PUMA "G4900230, G49021001" -County and PUMA "G4900250, G49021001" -County and PUMA "G4900270, G49021001" -County and PUMA "G4900290, G49005001" -County and PUMA "G4900310, G49021001" -County and PUMA "G4900330, G49005001" -County and PUMA "G4900350, G49035001" -County and PUMA "G4900350, G49035002" -County and PUMA "G4900350, G49035003" -County and PUMA "G4900350, G49035004" -County and PUMA "G4900350, G49035005" -County and PUMA "G4900350, G49035006" -County and PUMA "G4900350, G49035007" -County and PUMA "G4900350, G49035008" -County and PUMA "G4900350, G49035009" -County and PUMA "G4900370, G49013001" -County and PUMA "G4900390, G49021001" -County and PUMA "G4900410, G49021001" -County and PUMA "G4900430, G49005001" -County and PUMA "G4900450, G49003001" -County and PUMA "G4900470, G49013001" -County and PUMA "G4900490, G49049001" -County and PUMA "G4900490, G49049002" -County and PUMA "G4900490, G49049003" -County and PUMA "G4900490, G49049004" -County and PUMA "G4900510, G49013001" -County and PUMA "G4900530, G49053001" -County and PUMA "G4900550, G49021001" -County and PUMA "G4900570, G49057001" -County and PUMA "G4900570, G49057002" -County and PUMA "G5000010, G50000400" -County and PUMA "G5000030, G50000400" -County and PUMA "G5000050, G50000200" -County and PUMA "G5000070, G50000100" -County and PUMA "G5000090, G50000200" -County and PUMA "G5000110, G50000100" -County and PUMA "G5000130, G50000100" -County and PUMA "G5000150, G50000200" -County and PUMA "G5000170, G50000300" -County and PUMA "G5000190, G50000200" -County and PUMA "G5000210, G50000400" -County and PUMA "G5000230, G50000200" -County and PUMA "G5000250, G50000300" -County and PUMA "G5000270, G50000300" -County and PUMA "G5100010, G51051125" -County and PUMA "G5100030, G51051089" -County and PUMA "G5100030, G51051090" -County and PUMA "G5100050, G51051045" -County and PUMA "G5100070, G51051105" -County and PUMA "G5100090, G51051095" -County and PUMA "G5100110, G51051095" -County and PUMA "G5100130, G51001301" -County and PUMA "G5100130, G51001302" -County and PUMA "G5100150, G51051080" -County and PUMA "G5100170, G51051080" -County and PUMA "G5100190, G51051095" -County and PUMA "G5100210, G51051020" -County and PUMA "G5100230, G51051045" -County and PUMA "G5100250, G51051105" -County and PUMA "G5100270, G51051010" -County and PUMA "G5100290, G51051105" -County and PUMA "G5100310, G51051096" -County and PUMA "G5100330, G51051120" -County and PUMA "G5100350, G51051020" -County and PUMA "G5100360, G51051215" -County and PUMA "G5100370, G51051105" -County and PUMA "G5100410, G51004101" -County and PUMA "G5100410, G51004102" -County and PUMA "G5100410, G51004103" -County and PUMA "G5100430, G51051084" -County and PUMA "G5100450, G51051045" -County and PUMA "G5100470, G51051087" -County and PUMA "G5100490, G51051105" -County and PUMA "G5100510, G51051010" -County and PUMA "G5100530, G51051135" -County and PUMA "G5100570, G51051125" -County and PUMA "G5100590, G51059301" -County and PUMA "G5100590, G51059302" -County and PUMA "G5100590, G51059303" -County and PUMA "G5100590, G51059304" -County and PUMA "G5100590, G51059305" -County and PUMA "G5100590, G51059306" -County and PUMA "G5100590, G51059307" -County and PUMA "G5100590, G51059308" -County and PUMA "G5100590, G51059309" -County and PUMA "G5100610, G51051087" -County and PUMA "G5100630, G51051040" -County and PUMA "G5100650, G51051089" -County and PUMA "G5100670, G51051045" -County and PUMA "G5100690, G51051084" -County and PUMA "G5100710, G51051040" -County and PUMA "G5100730, G51051125" -County and PUMA "G5100750, G51051215" -County and PUMA "G5100770, G51051020" -County and PUMA "G5100790, G51051090" -County and PUMA "G5100810, G51051135" -County and PUMA "G5100830, G51051105" -County and PUMA "G5100850, G51051215" -County and PUMA "G5100870, G51051224" -County and PUMA "G5100870, G51051225" -County and PUMA "G5100890, G51051097" -County and PUMA "G5100910, G51051080" -County and PUMA "G5100930, G51051145" -County and PUMA "G5100950, G51051206" -County and PUMA "G5100970, G51051125" -County and PUMA "G5100990, G51051120" -County and PUMA "G5101010, G51051215" -County and PUMA "G5101030, G51051125" -County and PUMA "G5101050, G51051010" -County and PUMA "G5101070, G51010701" -County and PUMA "G5101070, G51010702" -County and PUMA "G5101070, G51010703" -County and PUMA "G5101090, G51051089" -County and PUMA "G5101110, G51051105" -County and PUMA "G5101130, G51051087" -County and PUMA "G5101150, G51051125" -County and PUMA "G5101170, G51051105" -County and PUMA "G5101190, G51051125" -County and PUMA "G5101210, G51051040" -County and PUMA "G5101250, G51051089" -County and PUMA "G5101270, G51051215" -County and PUMA "G5101310, G51051125" -County and PUMA "G5101330, G51051125" -County and PUMA "G5101350, G51051105" -County and PUMA "G5101370, G51051087" -County and PUMA "G5101390, G51051085" -County and PUMA "G5101410, G51051097" -County and PUMA "G5101430, G51051097" -County and PUMA "G5101450, G51051215" -County and PUMA "G5101470, G51051105" -County and PUMA "G5101490, G51051135" -County and PUMA "G5101530, G51051244" -County and PUMA "G5101530, G51051245" -County and PUMA "G5101530, G51051246" -County and PUMA "G5101550, G51051040" -County and PUMA "G5101570, G51051087" -County and PUMA "G5101590, G51051125" -County and PUMA "G5101610, G51051044" -County and PUMA "G5101610, G51051045" -County and PUMA "G5101630, G51051080" -County and PUMA "G5101650, G51051110" -County and PUMA "G5101670, G51051010" -County and PUMA "G5101690, G51051010" -County and PUMA "G5101710, G51051085" -County and PUMA "G5101730, G51051020" -County and PUMA "G5101750, G51051145" -County and PUMA "G5101770, G51051120" -County and PUMA "G5101790, G51051115" -County and PUMA "G5101810, G51051135" -County and PUMA "G5101830, G51051135" -County and PUMA "G5101850, G51051010" -County and PUMA "G5101870, G51051085" -County and PUMA "G5101910, G51051020" -County and PUMA "G5101930, G51051125" -County and PUMA "G5101950, G51051010" -County and PUMA "G5101970, G51051020" -County and PUMA "G5101990, G51051206" -County and PUMA "G5105100, G51051255" -County and PUMA "G5105200, G51051020" -County and PUMA "G5105300, G51051080" -County and PUMA "G5105400, G51051090" -County and PUMA "G5105500, G51055001" -County and PUMA "G5105500, G51055002" -County and PUMA "G5105700, G51051135" -County and PUMA "G5105800, G51051045" -County and PUMA "G5105900, G51051097" -County and PUMA "G5105950, G51051135" -County and PUMA "G5106000, G51059303" -County and PUMA "G5106100, G51059308" -County and PUMA "G5106200, G51051145" -County and PUMA "G5106300, G51051115" -County and PUMA "G5106400, G51051020" -County and PUMA "G5106500, G51051186" -County and PUMA "G5106600, G51051110" -County and PUMA "G5106700, G51051135" -County and PUMA "G5106780, G51051080" -County and PUMA "G5106800, G51051096" -County and PUMA "G5106830, G51051245" -County and PUMA "G5106850, G51051245" -County and PUMA "G5106900, G51051097" -County and PUMA "G5107000, G51051175" -County and PUMA "G5107100, G51051154" -County and PUMA "G5107100, G51051155" -County and PUMA "G5107200, G51051010" -County and PUMA "G5107300, G51051135" -County and PUMA "G5107350, G51051206" -County and PUMA "G5107400, G51051155" -County and PUMA "G5107500, G51051040" -County and PUMA "G5107600, G51051235" -County and PUMA "G5107700, G51051044" -County and PUMA "G5107750, G51051044" -County and PUMA "G5107900, G51051080" -County and PUMA "G5108000, G51051145" -County and PUMA "G5108100, G51051164" -County and PUMA "G5108100, G51051165" -County and PUMA "G5108100, G51051167" -County and PUMA "G5108200, G51051080" -County and PUMA "G5108300, G51051206" -County and PUMA "G5108400, G51051084" -County and PUMA "G5300010, G53010600" -County and PUMA "G5300030, G53010600" -County and PUMA "G5300050, G53010701" -County and PUMA "G5300050, G53010702" -County and PUMA "G5300050, G53010703" -County and PUMA "G5300070, G53010300" -County and PUMA "G5300090, G53011900" -County and PUMA "G5300110, G53011101" -County and PUMA "G5300110, G53011102" -County and PUMA "G5300110, G53011103" -County and PUMA "G5300110, G53011104" -County and PUMA "G5300130, G53010600" -County and PUMA "G5300150, G53011200" -County and PUMA "G5300170, G53010300" -County and PUMA "G5300190, G53010400" -County and PUMA "G5300210, G53010701" -County and PUMA "G5300210, G53010703" -County and PUMA "G5300230, G53010600" -County and PUMA "G5300250, G53010800" -County and PUMA "G5300270, G53011300" -County and PUMA "G5300290, G53010200" -County and PUMA "G5300310, G53011900" -County and PUMA "G5300330, G53011601" -County and PUMA "G5300330, G53011602" -County and PUMA "G5300330, G53011603" -County and PUMA "G5300330, G53011604" -County and PUMA "G5300330, G53011605" -County and PUMA "G5300330, G53011606" -County and PUMA "G5300330, G53011607" -County and PUMA "G5300330, G53011608" -County and PUMA "G5300330, G53011609" -County and PUMA "G5300330, G53011610" -County and PUMA "G5300330, G53011611" -County and PUMA "G5300330, G53011612" -County and PUMA "G5300330, G53011613" -County and PUMA "G5300330, G53011614" -County and PUMA "G5300330, G53011615" -County and PUMA "G5300330, G53011616" -County and PUMA "G5300350, G53011801" -County and PUMA "G5300350, G53011802" -County and PUMA "G5300370, G53010800" -County and PUMA "G5300390, G53011000" -County and PUMA "G5300410, G53011000" -County and PUMA "G5300430, G53010600" -County and PUMA "G5300450, G53011300" -County and PUMA "G5300470, G53010400" -County and PUMA "G5300490, G53011200" -County and PUMA "G5300510, G53010400" -County and PUMA "G5300530, G53011501" -County and PUMA "G5300530, G53011502" -County and PUMA "G5300530, G53011503" -County and PUMA "G5300530, G53011504" -County and PUMA "G5300530, G53011505" -County and PUMA "G5300530, G53011506" -County and PUMA "G5300530, G53011507" -County and PUMA "G5300550, G53010200" -County and PUMA "G5300570, G53010200" -County and PUMA "G5300590, G53011000" -County and PUMA "G5300610, G53011701" -County and PUMA "G5300610, G53011702" -County and PUMA "G5300610, G53011703" -County and PUMA "G5300610, G53011704" -County and PUMA "G5300610, G53011705" -County and PUMA "G5300610, G53011706" -County and PUMA "G5300630, G53010501" -County and PUMA "G5300630, G53010502" -County and PUMA "G5300630, G53010503" -County and PUMA "G5300630, G53010504" -County and PUMA "G5300650, G53010400" -County and PUMA "G5300670, G53011401" -County and PUMA "G5300670, G53011402" -County and PUMA "G5300690, G53011200" -County and PUMA "G5300710, G53010703" -County and PUMA "G5300730, G53010100" -County and PUMA "G5300750, G53010600" -County and PUMA "G5300770, G53010901" -County and PUMA "G5300770, G53010902" -County and PUMA "G5400010, G54000500" -County and PUMA "G5400030, G54000400" -County and PUMA "G5400050, G54000900" -County and PUMA "G5400070, G54000600" -County and PUMA "G5400090, G54000100" -County and PUMA "G5400110, G54000800" -County and PUMA "G5400130, G54000600" -County and PUMA "G5400150, G54001000" -County and PUMA "G5400170, G54000200" -County and PUMA "G5400190, G54001200" -County and PUMA "G5400210, G54000600" -County and PUMA "G5400230, G54000500" -County and PUMA "G5400250, G54001100" -County and PUMA "G5400270, G54000400" -County and PUMA "G5400290, G54000100" -County and PUMA "G5400310, G54000500" -County and PUMA "G5400330, G54000200" -County and PUMA "G5400350, G54000600" -County and PUMA "G5400370, G54000400" -County and PUMA "G5400390, G54001000" -County and PUMA "G5400410, G54000500" -County and PUMA "G5400430, G54000900" -County and PUMA "G5400450, G54001300" -County and PUMA "G5400470, G54001300" -County and PUMA "G5400490, G54000200" -County and PUMA "G5400510, G54000100" -County and PUMA "G5400530, G54000800" -County and PUMA "G5400550, G54001200" -County and PUMA "G5400570, G54000400" -County and PUMA "G5400590, G54001300" -County and PUMA "G5400610, G54000300" -County and PUMA "G5400630, G54001100" -County and PUMA "G5400650, G54000400" -County and PUMA "G5400670, G54001100" -County and PUMA "G5400690, G54000100" -County and PUMA "G5400710, G54000500" -County and PUMA "G5400730, G54000700" -County and PUMA "G5400750, G54001100" -County and PUMA "G5400770, G54000300" -County and PUMA "G5400790, G54000900" -County and PUMA "G5400810, G54001200" -County and PUMA "G5400830, G54000500" -County and PUMA "G5400850, G54000600" -County and PUMA "G5400870, G54000600" -County and PUMA "G5400890, G54001100" -County and PUMA "G5400910, G54000200" -County and PUMA "G5400930, G54000500" -County and PUMA "G5400950, G54000600" -County and PUMA "G5400970, G54000500" -County and PUMA "G5400990, G54000800" -County and PUMA "G5401010, G54001100" -County and PUMA "G5401030, G54000600" -County and PUMA "G5401050, G54000700" -County and PUMA "G5401070, G54000700" -County and PUMA "G5401090, G54001300" -County and PUMA "G5500010, G55001601" -County and PUMA "G5500030, G55000100" -County and PUMA "G5500050, G55055101" -County and PUMA "G5500070, G55000100" -County and PUMA "G5500090, G55000200" -County and PUMA "G5500090, G55000300" -County and PUMA "G5500110, G55000700" -County and PUMA "G5500130, G55000100" -County and PUMA "G5500150, G55001401" -County and PUMA "G5500170, G55055101" -County and PUMA "G5500170, G55055103" -County and PUMA "G5500190, G55055101" -County and PUMA "G5500210, G55001000" -County and PUMA "G5500230, G55000700" -County and PUMA "G5500250, G55000101" -County and PUMA "G5500250, G55000102" -County and PUMA "G5500250, G55000103" -County and PUMA "G5500270, G55001001" -County and PUMA "G5500290, G55001300" -County and PUMA "G5500310, G55000100" -County and PUMA "G5500330, G55055102" -County and PUMA "G5500350, G55055103" -County and PUMA "G5500370, G55001300" -County and PUMA "G5500390, G55001401" -County and PUMA "G5500410, G55000600" -County and PUMA "G5500430, G55000800" -County and PUMA "G5500450, G55000800" -County and PUMA "G5500470, G55001400" -County and PUMA "G5500490, G55000800" -County and PUMA "G5500510, G55000100" -County and PUMA "G5500530, G55000700" -County and PUMA "G5500550, G55001001" -County and PUMA "G5500570, G55001601" -County and PUMA "G5500590, G55010000" -County and PUMA "G5500610, G55001301" -County and PUMA "G5500630, G55000900" -County and PUMA "G5500650, G55000800" -County and PUMA "G5500670, G55000600" -County and PUMA "G5500690, G55000600" -County and PUMA "G5500710, G55001301" -County and PUMA "G5500730, G55001600" -County and PUMA "G5500750, G55001300" -County and PUMA "G5500770, G55001400" -County and PUMA "G5500780, G55001400" -County and PUMA "G5500790, G55040101" -County and PUMA "G5500790, G55040301" -County and PUMA "G5500790, G55040701" -County and PUMA "G5500790, G55041001" -County and PUMA "G5500790, G55041002" -County and PUMA "G5500790, G55041003" -County and PUMA "G5500790, G55041004" -County and PUMA "G5500790, G55041005" -County and PUMA "G5500810, G55000700" -County and PUMA "G5500830, G55001300" -County and PUMA "G5500850, G55000600" -County and PUMA "G5500870, G55001500" -County and PUMA "G5500890, G55020000" -County and PUMA "G5500910, G55000700" -County and PUMA "G5500930, G55000700" -County and PUMA "G5500950, G55055101" -County and PUMA "G5500970, G55001601" -County and PUMA "G5500990, G55000100" -County and PUMA "G5501010, G55030000" -County and PUMA "G5501030, G55000800" -County and PUMA "G5501050, G55002400" -County and PUMA "G5501070, G55000100" -County and PUMA "G5501090, G55055102" -County and PUMA "G5501110, G55001000" -County and PUMA "G5501130, G55000100" -County and PUMA "G5501150, G55001400" -County and PUMA "G5501170, G55002500" -County and PUMA "G5501190, G55000100" -County and PUMA "G5501210, G55000700" -County and PUMA "G5501230, G55000700" -County and PUMA "G5501250, G55000600" -County and PUMA "G5501270, G55050000" -County and PUMA "G5501290, G55000100" -County and PUMA "G5501310, G55020000" -County and PUMA "G5501330, G55070101" -County and PUMA "G5501330, G55070201" -County and PUMA "G5501330, G55070301" -County and PUMA "G5501350, G55001400" -County and PUMA "G5501370, G55001400" -County and PUMA "G5501390, G55001501" -County and PUMA "G5501410, G55001601" -County and PUMA "G5600010, G56000300" -County and PUMA "G5600030, G56000100" -County and PUMA "G5600050, G56000200" -County and PUMA "G5600070, G56000400" -County and PUMA "G5600090, G56000400" -County and PUMA "G5600110, G56000200" -County and PUMA "G5600130, G56000500" -County and PUMA "G5600150, G56000200" -County and PUMA "G5600170, G56000500" -County and PUMA "G5600190, G56000200" -County and PUMA "G5600210, G56000300" -County and PUMA "G5600230, G56000100" -County and PUMA "G5600250, G56000400" -County and PUMA "G5600270, G56000200" -County and PUMA "G5600290, G56000100" -County and PUMA "G5600310, G56000200" -County and PUMA "G5600330, G56000100" -County and PUMA "G5600350, G56000500" -County and PUMA "G5600370, G56000500" -County and PUMA "G5600390, G56000100" -County and PUMA "G5600410, G56000500" -County and PUMA "G5600430, G56000200" -County and PUMA "G5600450, G56000200" -County and PUMA "G7200010, G72000401" -County and PUMA "G7200030, G72000101" -County and PUMA "G7200050, G72000102" -County and PUMA "G7200070, G72000602" -County and PUMA "G7200090, G72000602" -County and PUMA "G7200110, G72000101" -County and PUMA "G7200130, G72000301" -County and PUMA "G7200150, G72000701" -County and PUMA "G7200170, G72000301" -County and PUMA "G7200190, G72000601" -County and PUMA "G7200210, G72000801" -County and PUMA "G7200210, G72000802" -County and PUMA "G7200230, G72000201" -County and PUMA "G7200250, G72001001" -County and PUMA "G7200270, G72000302" -County and PUMA "G7200290, G72000902" -County and PUMA "G7200310, G72000901" -County and PUMA "G7200310, G72000902" -County and PUMA "G7200330, G72000803" -County and PUMA "G7200350, G72000602" -County and PUMA "G7200370, G72001101" -County and PUMA "G7200390, G72000501" -County and PUMA "G7200410, G72000602" -County and PUMA "G7200430, G72000403" -County and PUMA "G7200450, G72000601" -County and PUMA "G7200470, G72000601" -County and PUMA "G7200490, G72001101" -County and PUMA "G7200510, G72000502" -County and PUMA "G7200530, G72001101" -County and PUMA "G7200540, G72000301" -County and PUMA "G7200550, G72000401" -County and PUMA "G7200570, G72000701" -County and PUMA "G7200590, G72000401" -County and PUMA "G7200610, G72000803" -County and PUMA "G7200630, G72001002" -County and PUMA "G7200650, G72000302" -County and PUMA "G7200670, G72000202" -County and PUMA "G7200690, G72001102" -County and PUMA "G7200710, G72000102" -County and PUMA "G7200730, G72000402" -County and PUMA "G7200750, G72000403" -County and PUMA "G7200770, G72001002" -County and PUMA "G7200790, G72000201" -County and PUMA "G7200810, G72000302" -County and PUMA "G7200830, G72000202" -County and PUMA "G7200850, G72001002" -County and PUMA "G7200870, G72000902" -County and PUMA "G7200890, G72001101" -County and PUMA "G7200910, G72000501" -County and PUMA "G7200930, G72000202" -County and PUMA "G7200950, G72000701" -County and PUMA "G7200970, G72000202" -County and PUMA "G7200990, G72000101" -County and PUMA "G7201010, G72000501" -County and PUMA "G7201030, G72001102" -County and PUMA "G7201050, G72000601" -County and PUMA "G7201070, G72000601" -County and PUMA "G7201090, G72000701" -County and PUMA "G7201110, G72000401" -County and PUMA "G7201130, G72000402" -County and PUMA "G7201150, G72000102" -County and PUMA "G7201170, G72000101" -County and PUMA "G7201190, G72001101" -County and PUMA "G7201210, G72000201" -County and PUMA "G7201230, G72000701" -County and PUMA "G7201250, G72000201" -County and PUMA "G7201270, G72000804" -County and PUMA "G7201270, G72000805" -County and PUMA "G7201270, G72000806" -County and PUMA "G7201290, G72001002" -County and PUMA "G7201310, G72000101" -County and PUMA "G7201330, G72000403" -County and PUMA "G7201350, G72000503" -County and PUMA "G7201370, G72000502" -County and PUMA "G7201390, G72000902" -County and PUMA "G7201410, G72000302" -County and PUMA "G7201430, G72000503" -County and PUMA "G7201450, G72000501" -County and PUMA "G7201470, G72001101" -County and PUMA "G7201490, G72000403" -County and PUMA "G7201510, G72001102" -County and PUMA "G7201530, G72000401" -Custom State AK -Custom State Others -Dehumidifier "65 pints/day, 50% RH" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=1.8 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 -Dehumidifier "65 pints/day, 50% RH, 2.0 EF" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=2 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 -Dehumidifier "65 pints/day, 60% RH" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=1.8 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.6 dehumidifier_fraction_dehumidification_load_served=1 -Dehumidifier None ResStockArguments dehumidifier_type=none dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=0 dehumidifier_capacity=40 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 -Dishwasher 144 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=144 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=13 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 199 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=199 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=18 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 220 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=220 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=19 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 255 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=255 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=21 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 270 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=270 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=22 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 290 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=290 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=23 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 318 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=318 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=25 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher None ResStockArguments dishwasher_present=false dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=0 dishwasher_label_electric_rate=0 dishwasher_label_gas_rate=0 dishwasher_label_annual_gas_cost=0 dishwasher_label_usage=0 dishwasher_place_setting_capacity=0 -Dishwasher Void -Dishwasher Usage Level 100% Usage ResStockArguments dishwasher_usage_multiplier=1.0 -Dishwasher Usage Level 120% Usage ResStockArguments dishwasher_usage_multiplier=1.2 -Dishwasher Usage Level 80% Usage ResStockArguments dishwasher_usage_multiplier=0.8 -Door Area 20 ft^2 ResStockArguments door_area=20 -Door Area 30 ft^2 ResStockArguments door_area=30 -Door Area 40 ft^2 ResStockArguments door_area=40 -Doors Fiberglass ResStockArguments door_rvalue=5 -Doors Steel ResStockArguments door_rvalue=5 -Doors Wood ResStockArguments door_rvalue=2.1 -Duct Leakage and Insulation "0% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0 ducts_return_leakage_to_outside_value=0 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "10% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "10% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "10% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "10% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "14% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "14% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "14% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "14% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "15% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "15% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "15% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "15% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "20% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "20% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "20% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "20% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "22.5% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "22.5% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "22.5% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "22.5% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "24% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "24% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "24% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "24% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "30% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "30% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "30% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "30% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "34% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "34% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "34% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "34% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "53% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "53% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "53% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "53% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "6% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "6% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "6% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "6% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "7.5% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "7.5% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "7.5% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "7.5% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "85% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "85% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "85% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "85% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation None ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0 ducts_return_leakage_to_outside_value=0 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Location Attic ResStockArguments ducts_supply_location=attic ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=attic ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location Crawlspace ResStockArguments ducts_supply_location=crawlspace ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=crawlspace ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location Garage ResStockArguments ducts_supply_location=garage ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=garage ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location Heated Basement ResStockArguments ducts_supply_location=basement - conditioned ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=basement - conditioned ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location Living Space ResStockArguments ducts_supply_location=conditioned space ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=conditioned space ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location None ResStockArguments ducts_supply_location=conditioned space ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=conditioned space ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=0 -Duct Location Unheated Basement ResStockArguments ducts_supply_location=basement - unconditioned ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=basement - unconditioned ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Eaves 1 ft ResStockArguments geometry_eaves_depth=1 -Eaves 2 ft ResStockArguments geometry_eaves_depth=2 -Eaves 3 ft ResStockArguments geometry_eaves_depth=3 -Eaves None ResStockArguments geometry_eaves_depth=0 -Electric Vehicle "EV, 4000 miles, 0.3 kWh/mi" ResStockArguments misc_plug_loads_vehicle_present=true misc_plug_loads_vehicle_annual_kwh=1481 misc_plug_loads_vehicle_usage_multiplier=1.0 misc_plug_loads_vehicle_2_usage_multiplier=1.0 -Electric Vehicle "EV, 5000 miles, 0.3 kWh/mi" ResStockArguments misc_plug_loads_vehicle_present=true misc_plug_loads_vehicle_annual_kwh=1852 misc_plug_loads_vehicle_usage_multiplier=1.0 misc_plug_loads_vehicle_2_usage_multiplier=1.0 -Electric Vehicle None ResStockArguments misc_plug_loads_vehicle_present=false misc_plug_loads_vehicle_annual_kwh=0 misc_plug_loads_vehicle_usage_multiplier=0 misc_plug_loads_vehicle_2_usage_multiplier=0 -Energystar Climate Zone 2023 North-Central -Energystar Climate Zone 2023 Northern -Energystar Climate Zone 2023 South-Central -Energystar Climate Zone 2023 Southern -Energystar Climate Zone 2023 Void -Federal Poverty Level 0-100% -Federal Poverty Level 100-150% -Federal Poverty Level 150-200% -Federal Poverty Level 200-300% -Federal Poverty Level 300-400% -Federal Poverty Level 400%+ -Federal Poverty Level Not Available -Generation And Emissions Assessment Region AZNMc -Generation And Emissions Assessment Region CAMXc -Generation And Emissions Assessment Region ERCTc -Generation And Emissions Assessment Region FRCCc -Generation And Emissions Assessment Region MROEc -Generation And Emissions Assessment Region MROWc -Generation And Emissions Assessment Region NEWEc -Generation And Emissions Assessment Region NWPPc -Generation And Emissions Assessment Region NYSTc -Generation And Emissions Assessment Region None -Generation And Emissions Assessment Region RFCEc -Generation And Emissions Assessment Region RFCMc -Generation And Emissions Assessment Region RFCWc -Generation And Emissions Assessment Region RMPAc -Generation And Emissions Assessment Region SPNOc -Generation And Emissions Assessment Region SPSOc -Generation And Emissions Assessment Region SRMVc -Generation And Emissions Assessment Region SRMWc -Generation And Emissions Assessment Region SRSOc -Generation And Emissions Assessment Region SRTVc -Generation And Emissions Assessment Region SRVCc -Geometry Attic Type Finished Attic or Cathedral Ceilings ResStockArguments geometry_attic_type=ConditionedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 -Geometry Attic Type None ResStockArguments geometry_attic_type=FlatRoof geometry_roof_type=gable geometry_roof_pitch=6:12 -Geometry Attic Type Unvented Attic ResStockArguments geometry_attic_type=UnventedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 -Geometry Attic Type Vented Attic ResStockArguments geometry_attic_type=VentedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 -Geometry Building Horizontal Location MF Left ResStockArguments geometry_unit_horizontal_location=Left -Geometry Building Horizontal Location MF Middle ResStockArguments geometry_unit_horizontal_location=Middle -Geometry Building Horizontal Location MF None -Geometry Building Horizontal Location MF Not Applicable ResStockArguments geometry_unit_horizontal_location=None -Geometry Building Horizontal Location MF Right ResStockArguments geometry_unit_horizontal_location=Right -Geometry Building Horizontal Location SFA Left ResStockArguments geometry_unit_horizontal_location=Left -Geometry Building Horizontal Location SFA Middle ResStockArguments geometry_unit_horizontal_location=Middle -Geometry Building Horizontal Location SFA None -Geometry Building Horizontal Location SFA Right ResStockArguments geometry_unit_horizontal_location=Right -Geometry Building Level MF Bottom ResStockArguments geometry_unit_level=Bottom -Geometry Building Level MF Middle ResStockArguments geometry_unit_level=Middle -Geometry Building Level MF None -Geometry Building Level MF Top ResStockArguments geometry_unit_level=Top -Geometry Building Number Units MF 10 ResStockArguments geometry_building_num_units=10 -Geometry Building Number Units MF 102 ResStockArguments geometry_building_num_units=102 -Geometry Building Number Units MF 11 ResStockArguments geometry_building_num_units=11 -Geometry Building Number Units MF 116 ResStockArguments geometry_building_num_units=116 -Geometry Building Number Units MF 12 ResStockArguments geometry_building_num_units=12 -Geometry Building Number Units MF 13 ResStockArguments geometry_building_num_units=13 -Geometry Building Number Units MF 14 ResStockArguments geometry_building_num_units=14 -Geometry Building Number Units MF 15 ResStockArguments geometry_building_num_units=15 -Geometry Building Number Units MF 16 ResStockArguments geometry_building_num_units=16 -Geometry Building Number Units MF 17 ResStockArguments geometry_building_num_units=17 -Geometry Building Number Units MF 18 ResStockArguments geometry_building_num_units=18 -Geometry Building Number Units MF 183 ResStockArguments geometry_building_num_units=183 -Geometry Building Number Units MF 19 ResStockArguments geometry_building_num_units=19 -Geometry Building Number Units MF 2 ResStockArguments geometry_building_num_units=2 -Geometry Building Number Units MF 20 ResStockArguments geometry_building_num_units=20 -Geometry Building Number Units MF 21 ResStockArguments geometry_building_num_units=21 -Geometry Building Number Units MF 24 ResStockArguments geometry_building_num_units=24 -Geometry Building Number Units MF 3 ResStockArguments geometry_building_num_units=3 -Geometry Building Number Units MF 30 ResStockArguments geometry_building_num_units=30 -Geometry Building Number Units MF 323 ResStockArguments geometry_building_num_units=323 -Geometry Building Number Units MF 326 ResStockArguments geometry_building_num_units=326 -Geometry Building Number Units MF 36 ResStockArguments geometry_building_num_units=36 -Geometry Building Number Units MF 4 ResStockArguments geometry_building_num_units=4 -Geometry Building Number Units MF 43 ResStockArguments geometry_building_num_units=43 -Geometry Building Number Units MF 5 ResStockArguments geometry_building_num_units=5 -Geometry Building Number Units MF 6 ResStockArguments geometry_building_num_units=6 -Geometry Building Number Units MF 67 ResStockArguments geometry_building_num_units=67 -Geometry Building Number Units MF 7 ResStockArguments geometry_building_num_units=7 -Geometry Building Number Units MF 8 ResStockArguments geometry_building_num_units=8 -Geometry Building Number Units MF 9 ResStockArguments geometry_building_num_units=9 -Geometry Building Number Units MF None -Geometry Building Number Units SFA 10 ResStockArguments geometry_building_num_units=10 -Geometry Building Number Units SFA 12 ResStockArguments geometry_building_num_units=12 -Geometry Building Number Units SFA 144 ResStockArguments geometry_building_num_units=144 -Geometry Building Number Units SFA 15 ResStockArguments geometry_building_num_units=15 -Geometry Building Number Units SFA 16 ResStockArguments geometry_building_num_units=16 -Geometry Building Number Units SFA 2 ResStockArguments geometry_building_num_units=2 -Geometry Building Number Units SFA 20 ResStockArguments geometry_building_num_units=20 -Geometry Building Number Units SFA 24 ResStockArguments geometry_building_num_units=24 -Geometry Building Number Units SFA 3 ResStockArguments geometry_building_num_units=3 -Geometry Building Number Units SFA 30 ResStockArguments geometry_building_num_units=30 -Geometry Building Number Units SFA 36 ResStockArguments geometry_building_num_units=36 -Geometry Building Number Units SFA 4 ResStockArguments geometry_building_num_units=4 -Geometry Building Number Units SFA 5 ResStockArguments geometry_building_num_units=5 -Geometry Building Number Units SFA 50 ResStockArguments geometry_building_num_units=50 -Geometry Building Number Units SFA 6 ResStockArguments geometry_building_num_units=6 -Geometry Building Number Units SFA 60 ResStockArguments geometry_building_num_units=60 -Geometry Building Number Units SFA 7 ResStockArguments geometry_building_num_units=7 -Geometry Building Number Units SFA 8 ResStockArguments geometry_building_num_units=8 -Geometry Building Number Units SFA 9 ResStockArguments geometry_building_num_units=9 -Geometry Building Number Units SFA 90 ResStockArguments geometry_building_num_units=90 -Geometry Building Number Units SFA None -Geometry Building Type ACS 10 to 19 Unit -Geometry Building Type ACS 2 Unit -Geometry Building Type ACS 20 to 49 Unit -Geometry Building Type ACS 3 or 4 Unit -Geometry Building Type ACS 5 to 9 Unit -Geometry Building Type ACS 50 or more Unit -Geometry Building Type ACS Mobile Home -Geometry Building Type ACS Single-Family Attached -Geometry Building Type ACS Single-Family Detached -Geometry Building Type Height "Multifamily with 5+ units, 1-3 stories" -Geometry Building Type Height "Multifamily with 5+ units, 4-7 stories" -Geometry Building Type Height "Multifamily with 5+ units, 8+ stories" -Geometry Building Type Height Mobile Home -Geometry Building Type Height Multifamily with 2-4 Units -Geometry Building Type Height Single-Family Attached -Geometry Building Type Height Single-Family Detached -Geometry Building Type RECS Mobile Home ResStockArguments geometry_unit_type=single-family detached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=1.8 -Geometry Building Type RECS Multi-Family with 2 - 4 Units ResStockArguments geometry_unit_type=apartment unit geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 -Geometry Building Type RECS Multi-Family with 5+ Units ResStockArguments geometry_unit_type=apartment unit geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 -Geometry Building Type RECS Single-Family Attached ResStockArguments geometry_unit_type=single-family attached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 -Geometry Building Type RECS Single-Family Detached ResStockArguments geometry_unit_type=single-family detached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=1.8 -Geometry Floor Area 0-499 ResStockArguments geometry_unit_cfa_bin=0-499 geometry_unit_cfa=auto geometry_garage_protrusion=0.75 -Geometry Floor Area 1000-1499 ResStockArguments geometry_unit_cfa_bin=1000-1499 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 1500-1999 ResStockArguments geometry_unit_cfa_bin=1500-1999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 2000-2499 ResStockArguments geometry_unit_cfa_bin=2000-2499 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 2500-2999 ResStockArguments geometry_unit_cfa_bin=2500-2999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 3000-3999 ResStockArguments geometry_unit_cfa_bin=3000-3999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 4000+ ResStockArguments geometry_unit_cfa_bin=4000+ geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 500-749 ResStockArguments geometry_unit_cfa_bin=500-749 geometry_unit_cfa=auto geometry_garage_protrusion=0.75 -Geometry Floor Area 750-999 ResStockArguments geometry_unit_cfa_bin=750-999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area Bin 0-1499 -Geometry Floor Area Bin 1500-2499 -Geometry Floor Area Bin 2500-3999 -Geometry Floor Area Bin 4000+ -Geometry Foundation Type Ambient ResStockArguments geometry_foundation_type=Ambient geometry_foundation_height=4 geometry_foundation_height_above_grade=4 geometry_rim_joist_height=0 -Geometry Foundation Type Conditioned Crawlspace ResStockArguments geometry_foundation_type=ConditionedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Foundation Type Heated Basement ResStockArguments geometry_foundation_type=ConditionedBasement geometry_foundation_height=8 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Foundation Type Slab ResStockArguments geometry_foundation_type=SlabOnGrade geometry_foundation_height=0 geometry_foundation_height_above_grade=0 geometry_rim_joist_height=0 -Geometry Foundation Type Unheated Basement ResStockArguments geometry_foundation_type=UnconditionedBasement geometry_foundation_height=8 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Foundation Type Unvented Crawlspace ResStockArguments geometry_foundation_type=UnventedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Foundation Type Vented Crawlspace ResStockArguments geometry_foundation_type=VentedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Garage 1 Car ResStockArguments geometry_garage_width=12 geometry_garage_depth=24 geometry_garage_position=Right -Geometry Garage 2 Car ResStockArguments geometry_garage_width=24 geometry_garage_depth=24 geometry_garage_position=Right -Geometry Garage 3 Car ResStockArguments geometry_garage_width=36 geometry_garage_depth=24 geometry_garage_position=Right -Geometry Garage None ResStockArguments geometry_garage_width=0 geometry_garage_depth=24 geometry_garage_position=Right -Geometry Heated Basement No -Geometry Heated Basement Yes -Geometry Number Units ACS bins 10 to 19 Units -Geometry Number Units ACS bins 20 to 49 Units -Geometry Number Units ACS bins 5 to 9 Units -Geometry Number Units ACS bins 50 or more -Geometry Number Units ACS bins <5 -Geometry Space Combination "Mobile Home, Ambient, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Slab, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Slab, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage" -Geometry Space Combination Void -Geometry Stories 1 ResStockArguments geometry_num_floors_above_grade=1 -Geometry Stories 10 ResStockArguments geometry_num_floors_above_grade=10 -Geometry Stories 11 ResStockArguments geometry_num_floors_above_grade=11 -Geometry Stories 12 ResStockArguments geometry_num_floors_above_grade=12 -Geometry Stories 13 ResStockArguments geometry_num_floors_above_grade=13 -Geometry Stories 14 ResStockArguments geometry_num_floors_above_grade=14 -Geometry Stories 15 ResStockArguments geometry_num_floors_above_grade=15 -Geometry Stories 2 ResStockArguments geometry_num_floors_above_grade=2 -Geometry Stories 20 ResStockArguments geometry_num_floors_above_grade=20 -Geometry Stories 21 ResStockArguments geometry_num_floors_above_grade=21 -Geometry Stories 3 ResStockArguments geometry_num_floors_above_grade=3 -Geometry Stories 35 ResStockArguments geometry_num_floors_above_grade=35 -Geometry Stories 4 ResStockArguments geometry_num_floors_above_grade=4 -Geometry Stories 5 ResStockArguments geometry_num_floors_above_grade=5 -Geometry Stories 6 ResStockArguments geometry_num_floors_above_grade=6 -Geometry Stories 7 ResStockArguments geometry_num_floors_above_grade=7 -Geometry Stories 8 ResStockArguments geometry_num_floors_above_grade=8 -Geometry Stories 9 ResStockArguments geometry_num_floors_above_grade=9 -Geometry Stories Low Rise 1 -Geometry Stories Low Rise 2 -Geometry Stories Low Rise 3 -Geometry Stories Low Rise 4+ -Geometry Story Bin 8+ -Geometry Story Bin <8 -Geometry Wall Exterior Finish "Aluminum, Light" ResStockArguments wall_siding_type=aluminum siding wall_color=light exterior_finish_r=0.6 -Geometry Wall Exterior Finish "Brick, Light" ResStockArguments wall_siding_type=brick veneer wall_color=light exterior_finish_r=0.7 -Geometry Wall Exterior Finish "Brick, Medium/Dark" ResStockArguments wall_siding_type=brick veneer wall_color=medium dark exterior_finish_r=0.7 -Geometry Wall Exterior Finish "Fiber-Cement, Light" ResStockArguments wall_siding_type=fiber cement siding wall_color=light exterior_finish_r=0.2 -Geometry Wall Exterior Finish "Shingle, Asbestos, Medium" ResStockArguments wall_siding_type=asbestos siding wall_color=medium exterior_finish_r=0.6 -Geometry Wall Exterior Finish "Shingle, Composition, Medium" ResStockArguments wall_siding_type=composite shingle siding wall_color=medium exterior_finish_r=0.6 -Geometry Wall Exterior Finish "Stucco, Light" ResStockArguments wall_siding_type=stucco wall_color=light exterior_finish_r=0.2 -Geometry Wall Exterior Finish "Stucco, Medium/Dark" ResStockArguments wall_siding_type=stucco wall_color=medium dark exterior_finish_r=0.2 -Geometry Wall Exterior Finish "Vinyl, Light" ResStockArguments wall_siding_type=vinyl siding wall_color=light exterior_finish_r=0.6 -Geometry Wall Exterior Finish "Wood, Medium/Dark" ResStockArguments wall_siding_type=wood siding wall_color=medium dark exterior_finish_r=1.4 -Geometry Wall Exterior Finish None ResStockArguments wall_siding_type=none wall_color=medium exterior_finish_r=0 -Geometry Wall Type Brick -Geometry Wall Type Concrete -Geometry Wall Type Steel Frame -Geometry Wall Type Void -Geometry Wall Type Wood Frame -Ground Thermal Conductivity 0.5 ResStockArguments site_ground_conductivity=0.5 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 0.8 ResStockArguments site_ground_conductivity=0.8 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 1.1 ResStockArguments site_ground_conductivity=1.1 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 1.4 ResStockArguments site_ground_conductivity=1.4 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 1.7 ResStockArguments site_ground_conductivity=1.7 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 2 ResStockArguments site_ground_conductivity=2.0 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 2.3 ResStockArguments site_ground_conductivity=2.3 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 2.6 ResStockArguments site_ground_conductivity=2.6 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -HVAC Cooling Autosizing Factor 40% Oversized ResStockArguments cooling_system_cooling_autosizing_factor=1.4 heat_pump_cooling_autosizing_factor=auto -HVAC Cooling Autosizing Factor None -HVAC Cooling Efficiency "AC, SEER 10" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=10 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 13" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 14" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=14 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 15" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=15 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 18" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=18 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 24.5" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=24.5 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 8" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=8 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "Room AC, EER 10.7" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=10.7 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "Room AC, EER 12.0" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=12 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "Room AC, EER 8.5" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=8.5 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "Room AC, EER 9.8" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=9.8 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency Ducted Heat Pump ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency Evaporative Cooler ResStockArguments cooling_system_type=evaporative cooler cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency Non-Ducted Heat Pump ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency None ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency Shared Cooling -HVAC Cooling Partial Space Conditioning 100% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=1 -HVAC Cooling Partial Space Conditioning 20% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.2 -HVAC Cooling Partial Space Conditioning 40% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.4 -HVAC Cooling Partial Space Conditioning 60% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.6 -HVAC Cooling Partial Space Conditioning 80% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.8 -HVAC Cooling Partial Space Conditioning <10% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.1 -HVAC Cooling Partial Space Conditioning None ResStockArguments cooling_system_fraction_cool_load_served=0 -HVAC Cooling Partial Space Conditioning Void -HVAC Cooling Type Central AC -HVAC Cooling Type Ducted Heat Pump -HVAC Cooling Type Evaporative or Swamp Cooler -HVAC Cooling Type Non-Ducted Heat Pump -HVAC Cooling Type None -HVAC Cooling Type Room AC -HVAC Detailed Performance Data Default ResStockArguments hvac_perf_data_capacity_type=auto hvac_perf_data_heating_outdoor_temperatures=auto hvac_perf_data_heating_min_speed_capacities=auto hvac_perf_data_heating_max_speed_capacities=auto hvac_perf_data_heating_min_speed_cops=auto hvac_perf_data_heating_max_speed_cops=auto hvac_perf_data_cooling_outdoor_temperatures=auto hvac_perf_data_cooling_min_speed_capacities=auto hvac_perf_data_cooling_max_speed_capacities=auto hvac_perf_data_cooling_min_speed_cops=auto hvac_perf_data_cooling_max_speed_cops=auto -HVAC Has Ducts No -HVAC Has Ducts Void -HVAC Has Ducts Yes -HVAC Has Shared System Cooling Only -HVAC Has Shared System Heating Only -HVAC Has Shared System Heating and Cooling -HVAC Has Shared System None -HVAC Has Shared System Void -HVAC Has Zonal Electric Heating No -HVAC Has Zonal Electric Heating Yes -HVAC Heating Autosizing Factor 40% Oversized ResStockArguments heating_system_heating_autosizing_factor=1.4 heating_system_2_heating_autosizing_factor=auto heat_pump_heating_autosizing_factor=auto heat_pump_backup_heating_autosizing_factor=auto -HVAC Heating Autosizing Factor None -HVAC Heating Efficiency "ASHP, SEER 10, 6.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=6.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 10.3, 7.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 11.5, 7.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=11.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 13, 7.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=13 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 13, 8.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=13 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 14, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 14.3, 8.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 15, 8.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 15, 9.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 16, 9.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 17, 8.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 18, 9.3 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 22, 10 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=10 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=22 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 14, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Electric Baseboard, 100% Efficiency" ResStockArguments heating_system_type=ElectricResistance heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Electric Boiler, 100% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Electric Furnace, 100% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Electric Wall Furnace, 100% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 72% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.72 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.76 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.8 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 82% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.82 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 85% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.85 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.9 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 95% AFUE, OAT Reset" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.95 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 96% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.96 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 60% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.6 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 68% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.68 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 72% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.72 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 76% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.76 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 80% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.8 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 85% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.85 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 90% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.9 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 92.5% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.925 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 96% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.96 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Wall/Floor Furnace, 60% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=0.6 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Wall/Floor Furnace, 68% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=0.68 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "GSHP, EER 16.6, COP 3.6" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=3.6 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=16.6 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=vertical geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "GSHP, EER 20.2, COP 4.2" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=4.2 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=20.2 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=vertical geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 14.5, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 14.5, 8.2 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 17, 9.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 17, 9.5 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 18.0, 9.6 HSPF, 60% Conditioned" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.6 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=0.6 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=0.6 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 18.0, 9.6 HSPF, 60% Conditioned, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.6 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=0.6 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=0.6 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 25, 12.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=12.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=25.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 25, 12.7 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=12.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=25.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 29.3, 14 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=14 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=29.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 29.3, 14 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=14 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=29.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 33, 13.3 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=13.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=33.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 33, 13.3 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=13.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=33.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency None ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=6.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency Shared Heating -HVAC Heating Efficiency Void -HVAC Heating Type Ducted Heat Pump -HVAC Heating Type Ducted Heating -HVAC Heating Type Non-Ducted Heat Pump -HVAC Heating Type Non-Ducted Heating -HVAC Heating Type None -HVAC Heating Type And Fuel Electricity ASHP -HVAC Heating Type And Fuel Electricity Baseboard -HVAC Heating Type And Fuel Electricity Electric Boiler -HVAC Heating Type And Fuel Electricity Electric Furnace -HVAC Heating Type And Fuel Electricity Electric Wall Furnace -HVAC Heating Type And Fuel Electricity MSHP -HVAC Heating Type And Fuel Electricity Other -HVAC Heating Type And Fuel Electricity Shared Heating -HVAC Heating Type And Fuel Fuel Oil Fuel Boiler -HVAC Heating Type And Fuel Fuel Oil Fuel Furnace -HVAC Heating Type And Fuel Fuel Oil Fuel Wall/Floor Furnace -HVAC Heating Type And Fuel Fuel Oil Shared Heating -HVAC Heating Type And Fuel Natural Gas Fuel Boiler -HVAC Heating Type And Fuel Natural Gas Fuel Furnace -HVAC Heating Type And Fuel Natural Gas Fuel Wall/Floor Furnace -HVAC Heating Type And Fuel Natural Gas Shared Heating -HVAC Heating Type And Fuel None -HVAC Heating Type And Fuel Other Fuel Fuel Boiler -HVAC Heating Type And Fuel Other Fuel Fuel Furnace -HVAC Heating Type And Fuel Other Fuel Fuel Wall/Floor Furnace -HVAC Heating Type And Fuel Other Fuel Shared Heating -HVAC Heating Type And Fuel Propane Fuel Boiler -HVAC Heating Type And Fuel Propane Fuel Furnace -HVAC Heating Type And Fuel Propane Fuel Wall/Floor Furnace -HVAC Heating Type And Fuel Propane Shared Heating -HVAC Heating Type And Fuel Void -HVAC Secondary Heating Efficiency "Electric Baseboard, 100% Efficiency" ResStockArguments heating_system_2_type=ElectricResistance heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Electric Portable Heater, 100% Efficiency" ResStockArguments heating_system_2_type=SpaceHeater heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Boiler, 60% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.76 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.8 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.90 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Boiler, 92.5% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.925 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Fireplace, 60% AFUE" ResStockArguments heating_system_2_type=Fireplace heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Furnace, 60% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Furnace, 76% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.76 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Furnace, 80% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.8 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Furnace, 92.5% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.925 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency None ResStockArguments heating_system_2_type=none heating_system_2_heating_efficiency=0 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency Shared Heating ResStockArguments heating_system_2_type=none heating_system_2_heating_efficiency=0 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Fuel Electricity ResStockArguments heating_system_2_fuel=electricity -HVAC Secondary Heating Fuel Fuel Oil ResStockArguments heating_system_2_fuel=fuel oil -HVAC Secondary Heating Fuel Natural Gas ResStockArguments heating_system_2_fuel=natural gas -HVAC Secondary Heating Fuel None ResStockArguments heating_system_2_fuel=electricity -HVAC Secondary Heating Fuel Other Fuel ResStockArguments heating_system_2_fuel=wood -HVAC Secondary Heating Fuel Propane ResStockArguments heating_system_2_fuel=propane -HVAC Secondary Heating Fuel Wood ResStockArguments heating_system_2_fuel=wood -HVAC Secondary Heating Partial Space Conditioning 0% ResStockArguments heating_system_2_fraction_heat_load_served=0 -HVAC Secondary Heating Partial Space Conditioning 10% ResStockArguments heating_system_2_fraction_heat_load_served=0.1 -HVAC Secondary Heating Partial Space Conditioning 20% ResStockArguments heating_system_2_fraction_heat_load_served=0.2 -HVAC Secondary Heating Partial Space Conditioning 30% ResStockArguments heating_system_2_fraction_heat_load_served=0.3 -HVAC Secondary Heating Partial Space Conditioning 40% ResStockArguments heating_system_2_fraction_heat_load_served=0.4 -HVAC Secondary Heating Partial Space Conditioning 49% ResStockArguments heating_system_2_fraction_heat_load_served=0.49 -HVAC Secondary Heating Partial Space Conditioning None ResStockArguments heating_system_2_fraction_heat_load_served=0 -HVAC Secondary Heating Type Ducted Heating -HVAC Secondary Heating Type Non-Ducted Heating -HVAC Secondary Heating Type None -HVAC Shared Efficiencies "Boiler Baseboards Heating Only, Electricity" ResStockArguments heating_system_type=Shared Boiler w/ Baseboard heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Shared Efficiencies "Boiler Baseboards Heating Only, Fuel" ResStockArguments heating_system_type=Shared Boiler w/ Baseboard heating_system_heating_efficiency=0.78 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Shared Efficiencies "Fan Coil Heating and Cooling, Electricity" ResStockArguments heating_system_type=Shared Boiler w/ Ductless Fan Coil heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Shared Efficiencies "Fan Coil Heating and Cooling, Fuel" ResStockArguments heating_system_type=Shared Boiler w/ Ductless Fan Coil heating_system_heating_efficiency=0.78 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Shared Efficiencies Fan Coil Cooling Only ResStockArguments cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false -HVAC Shared Efficiencies None -HVAC System Is Faulted No -HVAC System Is Faulted Yes -HVAC System Is Scaled No -HVAC System Is Scaled Yes -HVAC System Single Speed AC Airflow 154.8 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=154.8 -HVAC System Single Speed AC Airflow 204.4 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=204.4 -HVAC System Single Speed AC Airflow 254.0 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=254.0 -HVAC System Single Speed AC Airflow 303.5 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=303.5 -HVAC System Single Speed AC Airflow 353.1 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=353.1 -HVAC System Single Speed AC Airflow 402.7 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=402.7 -HVAC System Single Speed AC Airflow 452.3 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=452.3 -HVAC System Single Speed AC Airflow 501.9 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=501.9 -HVAC System Single Speed AC Airflow 551.5 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=551.5 -HVAC System Single Speed AC Airflow 601.0 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=601.0 -HVAC System Single Speed AC Airflow 650.6 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=650.6 -HVAC System Single Speed AC Airflow 700.2 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=700.2 -HVAC System Single Speed AC Airflow None -HVAC System Single Speed AC Charge 0.570 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.570 -HVAC System Single Speed AC Charge 0.709 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.709 -HVAC System Single Speed AC Charge 0.848 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.848 -HVAC System Single Speed AC Charge 0.988 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.988 -HVAC System Single Speed AC Charge 1.127 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.127 -HVAC System Single Speed AC Charge 1.266 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.266 -HVAC System Single Speed AC Charge 1.405 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.405 -HVAC System Single Speed AC Charge None -HVAC System Single Speed ASHP Airflow 154.8 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=154.8 -HVAC System Single Speed ASHP Airflow 204.4 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=204.4 -HVAC System Single Speed ASHP Airflow 254.0 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=254.0 -HVAC System Single Speed ASHP Airflow 303.5 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=303.5 -HVAC System Single Speed ASHP Airflow 353.1 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=353.1 -HVAC System Single Speed ASHP Airflow 402.7 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=402.7 -HVAC System Single Speed ASHP Airflow 452.3 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=452.3 -HVAC System Single Speed ASHP Airflow 501.9 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=501.9 -HVAC System Single Speed ASHP Airflow 551.5 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=551.5 -HVAC System Single Speed ASHP Airflow 601.0 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=601.0 -HVAC System Single Speed ASHP Airflow 650.6 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=650.6 -HVAC System Single Speed ASHP Airflow 700.2 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=700.2 -HVAC System Single Speed ASHP Airflow None -HVAC System Single Speed ASHP Charge 0.570 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.570 -HVAC System Single Speed ASHP Charge 0.709 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.709 -HVAC System Single Speed ASHP Charge 0.848 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.848 -HVAC System Single Speed ASHP Charge 0.988 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.988 -HVAC System Single Speed ASHP Charge 1.127 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.127 -HVAC System Single Speed ASHP Charge 1.266 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.266 -HVAC System Single Speed ASHP Charge 1.405 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.405 -HVAC System Single Speed ASHP Charge None -Has PV No -Has PV Yes -Heat Pump Backup Use Existing System ResStockArguments heat_pump_backup_use_existing_system=true -Heating Fuel Electricity ResStockArguments heating_system_fuel=electricity -Heating Fuel Fuel Oil ResStockArguments heating_system_fuel=fuel oil -Heating Fuel Natural Gas ResStockArguments heating_system_fuel=natural gas -Heating Fuel None ResStockArguments heating_system_fuel=natural gas -Heating Fuel Other Fuel ResStockArguments heating_system_fuel=wood -Heating Fuel Propane ResStockArguments heating_system_fuel=propane -Heating Fuel Wood ResStockArguments heating_system_fuel=wood -Heating Setpoint 55F ResStockArguments hvac_control_heating_weekday_setpoint_temp=55 hvac_control_heating_weekend_setpoint_temp=55 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 60F ResStockArguments hvac_control_heating_weekday_setpoint_temp=60 hvac_control_heating_weekend_setpoint_temp=60 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 62F ResStockArguments hvac_control_heating_weekday_setpoint_temp=62 hvac_control_heating_weekend_setpoint_temp=62 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 63F ResStockArguments hvac_control_heating_weekday_setpoint_temp=63 hvac_control_heating_weekend_setpoint_temp=63 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 64F ResStockArguments hvac_control_heating_weekday_setpoint_temp=64 hvac_control_heating_weekend_setpoint_temp=64 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 65F ResStockArguments hvac_control_heating_weekday_setpoint_temp=65 hvac_control_heating_weekend_setpoint_temp=65 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 66F ResStockArguments hvac_control_heating_weekday_setpoint_temp=66 hvac_control_heating_weekend_setpoint_temp=66 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 67F ResStockArguments hvac_control_heating_weekday_setpoint_temp=67 hvac_control_heating_weekend_setpoint_temp=67 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 68F ResStockArguments hvac_control_heating_weekday_setpoint_temp=68 hvac_control_heating_weekend_setpoint_temp=68 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 69F ResStockArguments hvac_control_heating_weekday_setpoint_temp=69 hvac_control_heating_weekend_setpoint_temp=69 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 70F ResStockArguments hvac_control_heating_weekday_setpoint_temp=70 hvac_control_heating_weekend_setpoint_temp=70 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 71F ResStockArguments hvac_control_heating_weekday_setpoint_temp=71 hvac_control_heating_weekend_setpoint_temp=71 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 71F w/ Building America season ResStockArguments hvac_control_heating_weekday_setpoint_temp=71 hvac_control_heating_weekend_setpoint_temp=71 use_auto_heating_season=true hvac_control_heating_season_period=auto -Heating Setpoint 72F ResStockArguments hvac_control_heating_weekday_setpoint_temp=72 hvac_control_heating_weekend_setpoint_temp=72 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 73F ResStockArguments hvac_control_heating_weekday_setpoint_temp=73 hvac_control_heating_weekend_setpoint_temp=73 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 74F ResStockArguments hvac_control_heating_weekday_setpoint_temp=74 hvac_control_heating_weekend_setpoint_temp=74 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 75F ResStockArguments hvac_control_heating_weekday_setpoint_temp=75 hvac_control_heating_weekend_setpoint_temp=75 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 76F ResStockArguments hvac_control_heating_weekday_setpoint_temp=76 hvac_control_heating_weekend_setpoint_temp=76 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 78F ResStockArguments hvac_control_heating_weekday_setpoint_temp=78 hvac_control_heating_weekend_setpoint_temp=78 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 80F ResStockArguments hvac_control_heating_weekday_setpoint_temp=80 hvac_control_heating_weekend_setpoint_temp=80 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint Has Offset No -Heating Setpoint Has Offset Yes -Heating Setpoint Offset Magnitude 0F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=0 hvac_control_heating_weekend_setpoint_offset_magnitude=0 -Heating Setpoint Offset Magnitude 12F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=12 hvac_control_heating_weekend_setpoint_offset_magnitude=12 -Heating Setpoint Offset Magnitude 3F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=3 hvac_control_heating_weekend_setpoint_offset_magnitude=3 -Heating Setpoint Offset Magnitude 6F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=6 hvac_control_heating_weekend_setpoint_offset_magnitude=6 -Heating Setpoint Offset Period Day ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day and Night ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1" -Heating Setpoint Offset Period Day and Night +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1" -Heating Setpoint Offset Period Day and Night +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Heating Setpoint Offset Period Day and Night +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Heating Setpoint Offset Period Day and Night +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0" -Heating Setpoint Offset Period Day and Night +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0" -Heating Setpoint Offset Period Day and Night -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1" -Heating Setpoint Offset Period Day and Night -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1" -Heating Setpoint Offset Period Day and Night -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1" -Heating Setpoint Offset Period Day and Night -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1" -Heating Setpoint Offset Period Day and Night -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" -Heating Setpoint Offset Period Night ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" -Heating Setpoint Offset Period Night +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" -Heating Setpoint Offset Period Night +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Night +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Night +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Night +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Night -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" -Heating Setpoint Offset Period Night -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" -Heating Setpoint Offset Period Night -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" -Heating Setpoint Offset Period Night -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" -Heating Setpoint Offset Period Night -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" -Heating Setpoint Offset Period None ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Holiday Lighting No Exterior Use ResStockArguments holiday_lighting_present=false holiday_lighting_daily_kwh=0 holiday_lighting_period=auto -Holiday Lighting None ResStockArguments holiday_lighting_present=false holiday_lighting_daily_kwh=0 holiday_lighting_period=auto -Hot Water Distribution "R-2, Demand" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=presence sensor demand control hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Distribution "R-2, Timer" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=timer hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Distribution "R-5, Timer" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=timer hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=5 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Distribution R-2 ResStockArguments hot_water_distribution_system_type=Standard hot_water_distribution_standard_piping_length=auto hot_water_distribution_recirc_control_type=no control hot_water_distribution_recirc_piping_length=0 hot_water_distribution_recirc_branch_piping_length=0 hot_water_distribution_recirc_pump_power=0 hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Distribution Uninsulated ResStockArguments hot_water_distribution_system_type=Standard hot_water_distribution_standard_piping_length=auto hot_water_distribution_recirc_control_type=no control hot_water_distribution_recirc_piping_length=0 hot_water_distribution_recirc_branch_piping_length=0 hot_water_distribution_recirc_pump_power=0 hot_water_distribution_pipe_r=0 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Fixtures "100% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=1.31 -Hot Water Fixtures "200% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=2.62 -Hot Water Fixtures "50% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=0.65 -Hot Water Fixtures 100% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.31 -Hot Water Fixtures 110% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.44 -Hot Water Fixtures 120% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.57 -Hot Water Fixtures 130% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.70 -Hot Water Fixtures 140% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.83 -Hot Water Fixtures 150% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.96 -Hot Water Fixtures 160% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=2.09 -Hot Water Fixtures 170% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=2.22 -Hot Water Fixtures 180% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=2.35 -Hot Water Fixtures 190% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=2.49 -Hot Water Fixtures 200% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=2.62 -Hot Water Fixtures 40% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.52 -Hot Water Fixtures 50% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.65 -Hot Water Fixtures 60% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.78 -Hot Water Fixtures 70% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.92 -Hot Water Fixtures 80% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.05 -Hot Water Fixtures 90% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.18 -Household Has Tribal Persons No -Household Has Tribal Persons Not Available -Household Has Tribal Persons Yes -ISO RTO Region CAISO -ISO RTO Region ERCOT -ISO RTO Region MISO -ISO RTO Region NEISO -ISO RTO Region NYISO -ISO RTO Region None -ISO RTO Region PJM -ISO RTO Region SPP -Income 10000-14999 -Income 100000-119999 -Income 120000-139999 -Income 140000-159999 -Income 15000-19999 -Income 160000-179999 -Income 180000-199999 -Income 20000-24999 -Income 200000+ -Income 25000-29999 -Income 30000-34999 -Income 35000-39999 -Income 40000-44999 -Income 45000-49999 -Income 50000-59999 -Income 60000-69999 -Income 70000-79999 -Income 80000-99999 -Income <10000 -Income Not Available -Income RECS2015 100000-119999 -Income RECS2015 120000-139999 -Income RECS2015 140000+ -Income RECS2015 20000-39999 -Income RECS2015 40000-59999 -Income RECS2015 60000-79999 -Income RECS2015 80000-99999 -Income RECS2015 <20000 -Income RECS2015 Not Available -Income RECS2020 100000-149999 -Income RECS2020 150000+ -Income RECS2020 20000-39999 -Income RECS2020 40000-59999 -Income RECS2020 60000-99999 -Income RECS2020 <20000 -Income RECS2020 Not Available -Infiltration "7 ACH50, 0.5 Shelter Coefficient" ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 0.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 0.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 0.75 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.75 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 1 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=1 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 1.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=1.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 10 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=10 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 11.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=11.25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 15 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=15 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 18.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=18.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 2 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=2 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 2.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=2.25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 20 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=20 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 3 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=3 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 3.75 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=3.75 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 30 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=30 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 4 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=4 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 4.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=4.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 40 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=40 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 5.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=5.25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 50 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=50 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 6 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=6 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 7 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 7.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 8 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=8 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration Reduction 15% ResStockArguments air_leakage_percent_reduction=15 -Infiltration Reduction 20% ResStockArguments air_leakage_percent_reduction=20 -Infiltration Reduction 25% ResStockArguments air_leakage_percent_reduction=25 -Insulation Ceiling None ResStockArguments ceiling_assembly_r=0 ceiling_insulation_r=0 -Insulation Ceiling R-13 ResStockArguments ceiling_assembly_r=14.6 ceiling_insulation_r=13 -Insulation Ceiling R-19 ResStockArguments ceiling_assembly_r=20.6 ceiling_insulation_r=19 -Insulation Ceiling R-30 ResStockArguments ceiling_assembly_r=31.6 ceiling_insulation_r=30 -Insulation Ceiling R-38 ResStockArguments ceiling_assembly_r=39.6 ceiling_insulation_r=38 -Insulation Ceiling R-49 ResStockArguments ceiling_assembly_r=50.6 ceiling_insulation_r=49 -Insulation Ceiling R-60 ResStockArguments ceiling_assembly_r=61.6 ceiling_insulation_r=60 -Insulation Ceiling R-7 ResStockArguments ceiling_assembly_r=8.7 ceiling_insulation_r=7 -Insulation Ceiling Uninsulated ResStockArguments ceiling_assembly_r=2.1 ceiling_insulation_r=0 -Insulation Floor Ceiling R-13 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=17.8 floor_over_garage_assembly_r=17.8 -Insulation Floor Ceiling R-19 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=22.6 floor_over_garage_assembly_r=22.6 -Insulation Floor Ceiling R-30 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=30.3 floor_over_garage_assembly_r=30.3 -Insulation Floor Ceiling R-38 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=35.1 floor_over_garage_assembly_r=35.1 -Insulation Floor None ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=0 floor_over_garage_assembly_r=5.3 -Insulation Floor Uninsulated ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=5.3 floor_over_garage_assembly_r=5.3 -Insulation Foundation Wall "Wall R-10, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=10 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto -Insulation Foundation Wall "Wall R-13, Interior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=13 foundation_wall_insulation_location=interior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto -Insulation Foundation Wall "Wall R-15, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=15 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto -Insulation Foundation Wall "Wall R-5, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=5 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto -Insulation Foundation Wall None ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=0 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=0 foundation_wall_assembly_r=auto -Insulation Foundation Wall Uninsulated ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=0 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=0 foundation_wall_assembly_r=auto -Insulation Rim Joist "R-10, Exterior" ResStockArguments rim_joist_continuous_exterior_r=10 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Rim Joist "R-13, Interior" ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=13 rim_joist_assembly_interior_r=10.4 rim_joist_assembly_r=auto -Insulation Rim Joist "R-15, Exterior" ResStockArguments rim_joist_continuous_exterior_r=15 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Rim Joist "R-5, Exterior" ResStockArguments rim_joist_continuous_exterior_r=5 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Rim Joist None ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Rim Joist Uninsulated ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Roof "Finished, R-13" ResStockArguments roof_assembly_r=14.3 -Insulation Roof "Finished, R-19" ResStockArguments roof_assembly_r=21.2 -Insulation Roof "Finished, R-30" ResStockArguments roof_assembly_r=29.7 -Insulation Roof "Finished, R-38" ResStockArguments roof_assembly_r=36.5 -Insulation Roof "Finished, R-49" ResStockArguments roof_assembly_r=47.0 -Insulation Roof "Finished, R-7" ResStockArguments roof_assembly_r=10.2 -Insulation Roof "Finished, Uninsulated" ResStockArguments roof_assembly_r=3.7 -Insulation Roof "Unfinished, Uninsulated" ResStockArguments roof_assembly_r=2.3 -Insulation Sheathing R-10 ResStockArguments wall_continuous_exterior_r=10 -Insulation Sheathing R-15 ResStockArguments wall_continuous_exterior_r=15 -Insulation Sheathing R-5 ResStockArguments wall_continuous_exterior_r=5 -Insulation Slab "2ft R10 Perimeter, Vertical" ResStockArguments slab_perimeter_insulation_r=10 slab_perimeter_depth=2 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "2ft R10 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=10 slab_under_width=2 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "2ft R5 Perimeter, Vertical" ResStockArguments slab_perimeter_insulation_r=5 slab_perimeter_depth=2 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "2ft R5 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=5 slab_under_width=2 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "4ft R5 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=5 slab_under_width=4 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "R10 Whole Slab, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=10 slab_under_width=999 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab None ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab Uninsulated ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Wall "Brick, 12-in, 3-wythe, R-11" ResStockArguments wall_type=StructuralBrick wall_assembly_r=13.3 -Insulation Wall "Brick, 12-in, 3-wythe, R-15" ResStockArguments wall_type=StructuralBrick wall_assembly_r=15.9 -Insulation Wall "Brick, 12-in, 3-wythe, R-19" ResStockArguments wall_type=StructuralBrick wall_assembly_r=18.3 -Insulation Wall "Brick, 12-in, 3-wythe, R-7" ResStockArguments wall_type=StructuralBrick wall_assembly_r=10.3 -Insulation Wall "Brick, 12-in, 3-wythe, Uninsulated" ResStockArguments wall_type=StructuralBrick wall_assembly_r=4.9 -Insulation Wall "CMU, 12-in Hollow" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=4.9 -Insulation Wall "CMU, 12-in Hollow, R-10" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=12.9 -Insulation Wall "CMU, 6-in Concrete Filled" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=3.7 -Insulation Wall "CMU, 6-in Concrete-Filled, R-10" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=11.4 -Insulation Wall "CMU, 6-in Hollow, R-11" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=12.4 -Insulation Wall "CMU, 6-in Hollow, R-15" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=15 -Insulation Wall "CMU, 6-in Hollow, R-19" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=17.4 -Insulation Wall "CMU, 6-in Hollow, R-7" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=9.4 -Insulation Wall "CMU, 6-in Hollow, Uninsulated" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=4 -Insulation Wall "Double Wood Stud, R-33" ResStockArguments wall_type=DoubleWoodStud wall_assembly_r=28.1 -Insulation Wall "Double Wood Stud, R-45, Grade 3" ResStockArguments wall_type=DoubleWoodStud wall_assembly_r=25.1 -Insulation Wall "Generic, 10-in Grid ICF" ResStockArguments wall_type=WoodStud wall_assembly_r=12.4 -Insulation Wall "Generic, T-Mass Wall w/Metal Ties" ResStockArguments wall_type=WoodStud wall_assembly_r=9 -Insulation Wall "ICF, 2-in EPS, 12-in Concrete, 2-in EPS" ResStockArguments wall_type=InsulatedConcreteForms wall_assembly_r=22.5 -Insulation Wall "ICF, 2-in EPS, 4-in Concrete, 2-in EPS" ResStockArguments wall_type=InsulatedConcreteForms wall_assembly_r=20.4 -Insulation Wall "SIP, 3.6 in EPS Core, OSB int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=15.5 -Insulation Wall "SIP, 9.4 in EPS Core, Gypsum int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=35.8 -Insulation Wall "SIP, 9.4 in EPS Core, OSB int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=36 -Insulation Wall "Steel Stud, R-13" ResStockArguments wall_type=SteelFrame wall_assembly_r=7.9 -Insulation Wall "Steel Stud, R-25, Grade 3" ResStockArguments wall_type=SteelFrame wall_assembly_r=10.4 -Insulation Wall "Steel Stud, Uninsulated" ResStockArguments wall_type=SteelFrame wall_assembly_r=3 -Insulation Wall "Wood Stud, R-11" ResStockArguments wall_type=WoodStud wall_assembly_r=10.3 -Insulation Wall "Wood Stud, R-11, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=15.3 -Insulation Wall "Wood Stud, R-13" ResStockArguments wall_type=WoodStud wall_assembly_r=11.3 -Insulation Wall "Wood Stud, R-13, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=16.3 -Insulation Wall "Wood Stud, R-15" ResStockArguments wall_type=WoodStud wall_assembly_r=12.1 -Insulation Wall "Wood Stud, R-15, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=17.1 -Insulation Wall "Wood Stud, R-19" ResStockArguments wall_type=WoodStud wall_assembly_r=15.4 -Insulation Wall "Wood Stud, R-19, Grade 2" ResStockArguments wall_type=WoodStud wall_assembly_r=14.5 -Insulation Wall "Wood Stud, R-19, Grade 2, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=19.5 -Insulation Wall "Wood Stud, R-19, Grade 3" ResStockArguments wall_type=WoodStud wall_assembly_r=13.4 -Insulation Wall "Wood Stud, R-19, Grade 3, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=18.4 -Insulation Wall "Wood Stud, R-19, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=20.4 -Insulation Wall "Wood Stud, R-23 Closed Cell Spray Foam, 2x4, 16 in o.c." ResStockArguments wall_type=WoodStud wall_assembly_r=14.7 -Insulation Wall "Wood Stud, R-23 Closed Cell Spray Foam, 2x4, 16 in o.c., R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=19.7 -Insulation Wall "Wood Stud, R-36" ResStockArguments wall_type=WoodStud wall_assembly_r=22.3 -Insulation Wall "Wood Stud, R-36, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=27.3 -Insulation Wall "Wood Stud, R-7" ResStockArguments wall_type=WoodStud wall_assembly_r=8.7 -Insulation Wall "Wood Stud, R-7, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=13.7 -Insulation Wall "Wood Stud, Uninsulated" ResStockArguments wall_type=WoodStud wall_assembly_r=3.4 -Insulation Wall "Wood Stud, Uninsulated, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=8.4 -Insulation Wall Void -Interior Shading "Summer = 0.5, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.5 window_interior_shading_winter=0.7 -Interior Shading "Summer = 0.5, Winter = 0.95" ResStockArguments window_interior_shading_summer=0.5 window_interior_shading_winter=0.95 -Interior Shading "Summer = 0.6, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.6 window_interior_shading_winter=0.7 -Interior Shading "Summer = 0.7, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.7 -Interior Shading "Summer = 0.7, Winter = 0.85" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.85 -Interior Shading "Summer = 0.7, Winter = 0.95" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.95 -Lighting 100% CFL ResStockArguments lighting_present=true lighting_interior_fraction_cfl=1 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=1 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=1 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 -Lighting 100% Incandescent ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 -Lighting 100% LED ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=1 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=1 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=1 -Lighting 20% LED ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0.2 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0.2 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0.2 -Lighting 60% CFL ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0.6 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0.6 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0.6 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 -Lighting None ResStockArguments lighting_present=false lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 -Lighting Interior Use 100% Usage ResStockArguments lighting_interior_usage_multiplier=1.0 -Lighting Interior Use 95% Usage ResStockArguments lighting_interior_usage_multiplier=0.95 -Lighting Interior Use None ResStockArguments lighting_interior_usage_multiplier=0.0 -Lighting Other Use 100% Usage ResStockArguments lighting_exterior_usage_multiplier=1.0 lighting_garage_usage_multiplier=1.0 -Lighting Other Use 95% Usage ResStockArguments lighting_exterior_usage_multiplier=0.95 lighting_garage_usage_multiplier=0.95 -Lighting Other Use None ResStockArguments lighting_exterior_usage_multiplier=0.0 lighting_garage_usage_multiplier=0.0 -Location Region CR02 -Location Region CR03 -Location Region CR04 -Location Region CR05 -Location Region CR06 -Location Region CR07 -Location Region CR08 -Location Region CR09 -Location Region CR10 -Location Region CR11 -Location Region CRAK -Location Region CRHI -Mechanical Ventilation "ERV, 72%" ResStockArguments mech_vent_fan_type=energy recovery ventilator mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0.48 mech_vent_sensible_recovery_efficiency=0.72 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Mechanical Ventilation "HRV, 60%" ResStockArguments mech_vent_fan_type=heat recovery ventilator mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0.6 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Mechanical Ventilation Exhaust ResStockArguments mech_vent_fan_type=exhaust only mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Mechanical Ventilation None ResStockArguments mech_vent_fan_type=none mech_vent_flow_rate=0 mech_vent_hours_in_operation=0 mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=0 mech_vent_num_units_served=0 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Mechanical Ventilation Supply ResStockArguments mech_vent_fan_type=supply only mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Metropolitan and Micropolitan Statistical Area "Aberdeen, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Aberdeen, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Abilene, TX MSA" -Metropolitan and Micropolitan Statistical Area "Ada, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Adrian, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Akron, OH MSA" -Metropolitan and Micropolitan Statistical Area "Alamogordo, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Albany, GA MSA" -Metropolitan and Micropolitan Statistical Area "Albany, OR MSA" -Metropolitan and Micropolitan Statistical Area "Albany-Schenectady-Troy, NY MSA" -Metropolitan and Micropolitan Statistical Area "Albemarle, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Albert Lea, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Albertville, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Albuquerque, NM MSA" -Metropolitan and Micropolitan Statistical Area "Alexandria, LA MSA" -Metropolitan and Micropolitan Statistical Area "Alexandria, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Alice, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Allentown-Bethlehem-Easton, PA-NJ MSA" -Metropolitan and Micropolitan Statistical Area "Alma, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Alpena, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Altoona, PA MSA" -Metropolitan and Micropolitan Statistical Area "Altus, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Amarillo, TX MSA" -Metropolitan and Micropolitan Statistical Area "Americus, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Ames, IA MSA" -Metropolitan and Micropolitan Statistical Area "Amsterdam, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Anchorage, AK MSA" -Metropolitan and Micropolitan Statistical Area "Andrews, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Angola, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Ann Arbor, MI MSA" -Metropolitan and Micropolitan Statistical Area "Anniston-Oxford-Jacksonville, AL MSA" -Metropolitan and Micropolitan Statistical Area "Appleton, WI MSA" -Metropolitan and Micropolitan Statistical Area "Arcadia, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Ardmore, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Arkadelphia, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Arkansas City-Winfield, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Asheville, NC MSA" -Metropolitan and Micropolitan Statistical Area "Ashland, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Ashtabula, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Astoria, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Atchison, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Athens, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Athens, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Athens, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Athens-Clarke County, GA MSA" -Metropolitan and Micropolitan Statistical Area "Atlanta-Sandy Springs-Roswell, GA MSA" -Metropolitan and Micropolitan Statistical Area "Atlantic City-Hammonton, NJ MSA" -Metropolitan and Micropolitan Statistical Area "Auburn, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Auburn, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Auburn-Opelika, AL MSA" -Metropolitan and Micropolitan Statistical Area "Augusta-Richmond County, GA-SC MSA" -Metropolitan and Micropolitan Statistical Area "Augusta-Waterville, ME MicroSA" -Metropolitan and Micropolitan Statistical Area "Austin, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Austin-Round Rock, TX MSA" -Metropolitan and Micropolitan Statistical Area "Bainbridge, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Bakersfield, CA MSA" -Metropolitan and Micropolitan Statistical Area "Baltimore-Columbia-Towson, MD MSA" -Metropolitan and Micropolitan Statistical Area "Bangor, ME MSA" -Metropolitan and Micropolitan Statistical Area "Baraboo, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Bardstown, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Barnstable Town, MA MSA" -Metropolitan and Micropolitan Statistical Area "Barre, VT MicroSA" -Metropolitan and Micropolitan Statistical Area "Bartlesville, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Bastrop, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Batavia, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Batesville, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Baton Rouge, LA MSA" -Metropolitan and Micropolitan Statistical Area "Battle Creek, MI MSA" -Metropolitan and Micropolitan Statistical Area "Bay City, MI MSA" -Metropolitan and Micropolitan Statistical Area "Bay City, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Beatrice, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Beaumont-Port Arthur, TX MSA" -Metropolitan and Micropolitan Statistical Area "Beaver Dam, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Beckley, WV MSA" -Metropolitan and Micropolitan Statistical Area "Bedford, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Beeville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Bellefontaine, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Bellingham, WA MSA" -Metropolitan and Micropolitan Statistical Area "Bemidji, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Bend-Redmond, OR MSA" -Metropolitan and Micropolitan Statistical Area "Bennettsville, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Bennington, VT MicroSA" -Metropolitan and Micropolitan Statistical Area "Berlin, NH-VT MicroSA" -Metropolitan and Micropolitan Statistical Area "Big Rapids, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Big Spring, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Big Stone Gap, VA MicroSA" -Metropolitan and Micropolitan Statistical Area "Billings, MT MSA" -Metropolitan and Micropolitan Statistical Area "Binghamton, NY MSA" -Metropolitan and Micropolitan Statistical Area "Birmingham-Hoover, AL MSA" -Metropolitan and Micropolitan Statistical Area "Bismarck, ND MSA" -Metropolitan and Micropolitan Statistical Area "Blackfoot, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Blacksburg-Christiansburg-Radford, VA MSA" -Metropolitan and Micropolitan Statistical Area "Bloomington, IL MSA" -Metropolitan and Micropolitan Statistical Area "Bloomington, IN MSA" -Metropolitan and Micropolitan Statistical Area "Bloomsburg-Berwick, PA MSA" -Metropolitan and Micropolitan Statistical Area "Bluefield, WV-VA MicroSA" -Metropolitan and Micropolitan Statistical Area "Blytheville, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Bogalusa, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Boise City, ID MSA" -Metropolitan and Micropolitan Statistical Area "Boone, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Boone, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Borger, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Boston-Cambridge-Newton, MA-NH MSA" -Metropolitan and Micropolitan Statistical Area "Boulder, CO MSA" -Metropolitan and Micropolitan Statistical Area "Bowling Green, KY MSA" -Metropolitan and Micropolitan Statistical Area "Bozeman, MT MicroSA" -Metropolitan and Micropolitan Statistical Area "Bradford, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Brainerd, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Branson, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Breckenridge, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Bremerton-Silverdale, WA MSA" -Metropolitan and Micropolitan Statistical Area "Brenham, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Brevard, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Bridgeport-Stamford-Norwalk, CT MSA" -Metropolitan and Micropolitan Statistical Area "Brookhaven, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Brookings, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Brookings, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Brownsville-Harlingen, TX MSA" -Metropolitan and Micropolitan Statistical Area "Brownwood, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Brunswick, GA MSA" -Metropolitan and Micropolitan Statistical Area "Bucyrus, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Buffalo-Cheektowaga-Niagara Falls, NY MSA" -Metropolitan and Micropolitan Statistical Area "Burley, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Burlington, IA-IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Burlington, NC MSA" -Metropolitan and Micropolitan Statistical Area "Burlington-South Burlington, VT MSA" -Metropolitan and Micropolitan Statistical Area "Butte-Silver Bow, MT MicroSA" -Metropolitan and Micropolitan Statistical Area "Cadillac, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Calhoun, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "California-Lexington Park, MD MSA" -Metropolitan and Micropolitan Statistical Area "Cambridge, MD MicroSA" -Metropolitan and Micropolitan Statistical Area "Cambridge, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Camden, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Campbellsville, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Canon City, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Canton, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Canton-Massillon, OH MSA" -Metropolitan and Micropolitan Statistical Area "Cape Coral-Fort Myers, FL MSA" -Metropolitan and Micropolitan Statistical Area "Cape Girardeau, MO-IL MSA" -Metropolitan and Micropolitan Statistical Area "Carbondale-Marion, IL MSA" -Metropolitan and Micropolitan Statistical Area "Carlsbad-Artesia, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Carson City, NV MSA" -Metropolitan and Micropolitan Statistical Area "Casper, WY MSA" -Metropolitan and Micropolitan Statistical Area "Cedar City, UT MicroSA" -Metropolitan and Micropolitan Statistical Area "Cedar Rapids, IA MSA" -Metropolitan and Micropolitan Statistical Area "Cedartown, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Celina, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Centralia, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Centralia, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Chambersburg-Waynesboro, PA MSA" -Metropolitan and Micropolitan Statistical Area "Champaign-Urbana, IL MSA" -Metropolitan and Micropolitan Statistical Area "Charleston, WV MSA" -Metropolitan and Micropolitan Statistical Area "Charleston-Mattoon, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Charleston-North Charleston, SC MSA" -Metropolitan and Micropolitan Statistical Area "Charlotte-Concord-Gastonia, NC-SC MSA" -Metropolitan and Micropolitan Statistical Area "Charlottesville, VA MSA" -Metropolitan and Micropolitan Statistical Area "Chattanooga, TN-GA MSA" -Metropolitan and Micropolitan Statistical Area "Cheyenne, WY MSA" -Metropolitan and Micropolitan Statistical Area "Chicago-Naperville-Elgin, IL-IN-WI MSA" -Metropolitan and Micropolitan Statistical Area "Chico, CA MSA" -Metropolitan and Micropolitan Statistical Area "Chillicothe, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Cincinnati, OH-KY-IN MSA" -Metropolitan and Micropolitan Statistical Area "Claremont-Lebanon, NH-VT MicroSA" -Metropolitan and Micropolitan Statistical Area "Clarksburg, WV MicroSA" -Metropolitan and Micropolitan Statistical Area "Clarksdale, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Clarksville, TN-KY MSA" -Metropolitan and Micropolitan Statistical Area "Clearlake, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Cleveland, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Cleveland, TN MSA" -Metropolitan and Micropolitan Statistical Area "Cleveland-Elyria, OH MSA" -Metropolitan and Micropolitan Statistical Area "Clewiston, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Clinton, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Clovis, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Coeur d'Alene, ID MSA" -Metropolitan and Micropolitan Statistical Area "Coffeyville, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Coldwater, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "College Station-Bryan, TX MSA" -Metropolitan and Micropolitan Statistical Area "Colorado Springs, CO MSA" -Metropolitan and Micropolitan Statistical Area "Columbia, MO MSA" -Metropolitan and Micropolitan Statistical Area "Columbia, SC MSA" -Metropolitan and Micropolitan Statistical Area "Columbus, GA-AL MSA" -Metropolitan and Micropolitan Statistical Area "Columbus, IN MSA" -Metropolitan and Micropolitan Statistical Area "Columbus, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Columbus, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Columbus, OH MSA" -Metropolitan and Micropolitan Statistical Area "Concord, NH MicroSA" -Metropolitan and Micropolitan Statistical Area "Connersville, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Cookeville, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Coos Bay, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Cordele, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Corinth, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Cornelia, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Corning, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Corpus Christi, TX MSA" -Metropolitan and Micropolitan Statistical Area "Corsicana, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Cortland, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Corvallis, OR MSA" -Metropolitan and Micropolitan Statistical Area "Coshocton, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Craig, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Crawfordsville, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Crescent City, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Crestview-Fort Walton Beach-Destin, FL MSA" -Metropolitan and Micropolitan Statistical Area "Crossville, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Cullman, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Cullowhee, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Cumberland, MD-WV MSA" -Metropolitan and Micropolitan Statistical Area "Dallas-Fort Worth-Arlington, TX MSA" -Metropolitan and Micropolitan Statistical Area "Dalton, GA MSA" -Metropolitan and Micropolitan Statistical Area "Danville, IL MSA" -Metropolitan and Micropolitan Statistical Area "Danville, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Danville, VA MicroSA" -Metropolitan and Micropolitan Statistical Area "Daphne-Fairhope-Foley, AL MSA" -Metropolitan and Micropolitan Statistical Area "Davenport-Moline-Rock Island, IA-IL MSA" -Metropolitan and Micropolitan Statistical Area "Dayton, OH MSA" -Metropolitan and Micropolitan Statistical Area "Dayton, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "DeRidder, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Decatur, AL MSA" -Metropolitan and Micropolitan Statistical Area "Decatur, IL MSA" -Metropolitan and Micropolitan Statistical Area "Decatur, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Defiance, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Del Rio, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Deltona-Daytona Beach-Ormond Beach, FL MSA" -Metropolitan and Micropolitan Statistical Area "Deming, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Denver-Aurora-Lakewood, CO MSA" -Metropolitan and Micropolitan Statistical Area "Des Moines-West Des Moines, IA MSA" -Metropolitan and Micropolitan Statistical Area "Detroit-Warren-Dearborn, MI MSA" -Metropolitan and Micropolitan Statistical Area "Dickinson, ND MicroSA" -Metropolitan and Micropolitan Statistical Area "Dixon, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Dodge City, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Dothan, AL MSA" -Metropolitan and Micropolitan Statistical Area "Douglas, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Dover, DE MSA" -Metropolitan and Micropolitan Statistical Area "DuBois, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Dublin, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Dubuque, IA MSA" -Metropolitan and Micropolitan Statistical Area "Duluth, MN-WI MSA" -Metropolitan and Micropolitan Statistical Area "Dumas, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Duncan, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Dunn, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Durango, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Durant, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Durham-Chapel Hill, NC MSA" -Metropolitan and Micropolitan Statistical Area "Dyersburg, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Eagle Pass, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "East Stroudsburg, PA MSA" -Metropolitan and Micropolitan Statistical Area "Easton, MD MicroSA" -Metropolitan and Micropolitan Statistical Area "Eau Claire, WI MSA" -Metropolitan and Micropolitan Statistical Area "Edwards, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Effingham, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "El Campo, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "El Centro, CA MSA" -Metropolitan and Micropolitan Statistical Area "El Dorado, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "El Paso, TX MSA" -Metropolitan and Micropolitan Statistical Area "Elizabeth City, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Elizabethtown-Fort Knox, KY MSA" -Metropolitan and Micropolitan Statistical Area "Elk City, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Elkhart-Goshen, IN MSA" -Metropolitan and Micropolitan Statistical Area "Elkins, WV MicroSA" -Metropolitan and Micropolitan Statistical Area "Elko, NV MicroSA" -Metropolitan and Micropolitan Statistical Area "Ellensburg, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Elmira, NY MSA" -Metropolitan and Micropolitan Statistical Area "Emporia, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Enid, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Enterprise, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Erie, PA MSA" -Metropolitan and Micropolitan Statistical Area "Escanaba, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Espanola, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Eugene, OR MSA" -Metropolitan and Micropolitan Statistical Area "Eureka-Arcata-Fortuna, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Evanston, WY MicroSA" -Metropolitan and Micropolitan Statistical Area "Evansville, IN-KY MSA" -Metropolitan and Micropolitan Statistical Area "Fairbanks, AK MSA" -Metropolitan and Micropolitan Statistical Area "Fairfield, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Fairmont, WV MicroSA" -Metropolitan and Micropolitan Statistical Area "Fallon, NV MicroSA" -Metropolitan and Micropolitan Statistical Area "Fargo, ND-MN MSA" -Metropolitan and Micropolitan Statistical Area "Faribault-Northfield, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Farmington, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Farmington, NM MSA" -Metropolitan and Micropolitan Statistical Area "Fayetteville, NC MSA" -Metropolitan and Micropolitan Statistical Area "Fayetteville-Springdale-Rogers, AR-MO MSA" -Metropolitan and Micropolitan Statistical Area "Fergus Falls, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Fernley, NV MicroSA" -Metropolitan and Micropolitan Statistical Area "Findlay, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Fitzgerald, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Flagstaff, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Flint, MI MSA" -Metropolitan and Micropolitan Statistical Area "Florence, SC MSA" -Metropolitan and Micropolitan Statistical Area "Florence-Muscle Shoals, AL MSA" -Metropolitan and Micropolitan Statistical Area "Fond du Lac, WI MSA" -Metropolitan and Micropolitan Statistical Area "Forest City, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Forrest City, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Fort Collins, CO MSA" -Metropolitan and Micropolitan Statistical Area "Fort Dodge, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Fort Leonard Wood, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Fort Madison-Keokuk, IA-IL-MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Fort Morgan, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Fort Polk South, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Fort Smith, AR-OK MSA" -Metropolitan and Micropolitan Statistical Area "Fort Wayne, IN MSA" -Metropolitan and Micropolitan Statistical Area "Frankfort, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Frankfort, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Fredericksburg, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Freeport, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Fremont, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Fremont, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Fresno, CA MSA" -Metropolitan and Micropolitan Statistical Area "Gadsden, AL MSA" -Metropolitan and Micropolitan Statistical Area "Gaffney, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Gainesville, FL MSA" -Metropolitan and Micropolitan Statistical Area "Gainesville, GA MSA" -Metropolitan and Micropolitan Statistical Area "Gainesville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Galesburg, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Gallup, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Garden City, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Gardnerville Ranchos, NV MicroSA" -Metropolitan and Micropolitan Statistical Area "Georgetown, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Gettysburg, PA MSA" -Metropolitan and Micropolitan Statistical Area "Gillette, WY MicroSA" -Metropolitan and Micropolitan Statistical Area "Glasgow, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Glens Falls, NY MSA" -Metropolitan and Micropolitan Statistical Area "Glenwood Springs, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Gloversville, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Goldsboro, NC MSA" -Metropolitan and Micropolitan Statistical Area "Grand Forks, ND-MN MSA" -Metropolitan and Micropolitan Statistical Area "Grand Island, NE MSA" -Metropolitan and Micropolitan Statistical Area "Grand Junction, CO MSA" -Metropolitan and Micropolitan Statistical Area "Grand Rapids-Wyoming, MI MSA" -Metropolitan and Micropolitan Statistical Area "Grants Pass, OR MSA" -Metropolitan and Micropolitan Statistical Area "Grants, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Great Bend, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Great Falls, MT MSA" -Metropolitan and Micropolitan Statistical Area "Greeley, CO MSA" -Metropolitan and Micropolitan Statistical Area "Green Bay, WI MSA" -Metropolitan and Micropolitan Statistical Area "Greeneville, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Greenfield Town, MA MicroSA" -Metropolitan and Micropolitan Statistical Area "Greensboro-High Point, NC MSA" -Metropolitan and Micropolitan Statistical Area "Greensburg, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Greenville, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Greenville, NC MSA" -Metropolitan and Micropolitan Statistical Area "Greenville, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Greenville-Anderson-Mauldin, SC MSA" -Metropolitan and Micropolitan Statistical Area "Greenwood, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Greenwood, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Grenada, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Gulfport-Biloxi-Pascagoula, MS MSA" -Metropolitan and Micropolitan Statistical Area "Guymon, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Hagerstown-Martinsburg, MD-WV MSA" -Metropolitan and Micropolitan Statistical Area "Hailey, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Hammond, LA MSA" -Metropolitan and Micropolitan Statistical Area "Hanford-Corcoran, CA MSA" -Metropolitan and Micropolitan Statistical Area "Hannibal, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Harrisburg-Carlisle, PA MSA" -Metropolitan and Micropolitan Statistical Area "Harrison, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Harrisonburg, VA MSA" -Metropolitan and Micropolitan Statistical Area "Hartford-West Hartford-East Hartford, CT MSA" -Metropolitan and Micropolitan Statistical Area "Hastings, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Hattiesburg, MS MSA" -Metropolitan and Micropolitan Statistical Area "Hays, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Heber, UT MicroSA" -Metropolitan and Micropolitan Statistical Area "Helena, MT MicroSA" -Metropolitan and Micropolitan Statistical Area "Helena-West Helena, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Henderson, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Hereford, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Hermiston-Pendleton, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Hickory-Lenoir-Morganton, NC MSA" -Metropolitan and Micropolitan Statistical Area "Hillsdale, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Hilo, HI MicroSA" -Metropolitan and Micropolitan Statistical Area "Hilton Head Island-Bluffton-Beaufort, SC MSA" -Metropolitan and Micropolitan Statistical Area "Hinesville, GA MSA" -Metropolitan and Micropolitan Statistical Area "Hobbs, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Holland, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Homosassa Springs, FL MSA" -Metropolitan and Micropolitan Statistical Area "Hood River, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Hot Springs, AR MSA" -Metropolitan and Micropolitan Statistical Area "Houghton, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Houma-Thibodaux, LA MSA" -Metropolitan and Micropolitan Statistical Area "Houston-The Woodlands-Sugar Land, TX MSA" -Metropolitan and Micropolitan Statistical Area "Hudson, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Huntingdon, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Huntington, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Huntington-Ashland, WV-KY-OH MSA" -Metropolitan and Micropolitan Statistical Area "Huntsville, AL MSA" -Metropolitan and Micropolitan Statistical Area "Huntsville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Huron, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Hutchinson, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Hutchinson, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Idaho Falls, ID MSA" -Metropolitan and Micropolitan Statistical Area "Indiana, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Indianapolis-Carmel-Anderson, IN MSA" -Metropolitan and Micropolitan Statistical Area "Indianola, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Ionia, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Iowa City, IA MSA" -Metropolitan and Micropolitan Statistical Area "Iron Mountain, MI-WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Ithaca, NY MSA" -Metropolitan and Micropolitan Statistical Area "Jackson, MI MSA" -Metropolitan and Micropolitan Statistical Area "Jackson, MS MSA" -Metropolitan and Micropolitan Statistical Area "Jackson, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Jackson, TN MSA" -Metropolitan and Micropolitan Statistical Area "Jackson, WY-ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Jacksonville, FL MSA" -Metropolitan and Micropolitan Statistical Area "Jacksonville, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Jacksonville, NC MSA" -Metropolitan and Micropolitan Statistical Area "Jacksonville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Jamestown, ND MicroSA" -Metropolitan and Micropolitan Statistical Area "Jamestown-Dunkirk-Fredonia, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Janesville-Beloit, WI MSA" -Metropolitan and Micropolitan Statistical Area "Jasper, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Jefferson City, MO MSA" -Metropolitan and Micropolitan Statistical Area "Jefferson, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Jesup, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Johnson City, TN MSA" -Metropolitan and Micropolitan Statistical Area "Johnstown, PA MSA" -Metropolitan and Micropolitan Statistical Area "Jonesboro, AR MSA" -Metropolitan and Micropolitan Statistical Area "Joplin, MO MSA" -Metropolitan and Micropolitan Statistical Area "Junction City, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Juneau, AK MicroSA" -Metropolitan and Micropolitan Statistical Area "Kahului-Wailuku-Lahaina, HI MSA" -Metropolitan and Micropolitan Statistical Area "Kalamazoo-Portage, MI MSA" -Metropolitan and Micropolitan Statistical Area "Kalispell, MT MicroSA" -Metropolitan and Micropolitan Statistical Area "Kankakee, IL MSA" -Metropolitan and Micropolitan Statistical Area "Kansas City, MO-KS MSA" -Metropolitan and Micropolitan Statistical Area "Kapaa, HI MicroSA" -Metropolitan and Micropolitan Statistical Area "Kearney, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Keene, NH MicroSA" -Metropolitan and Micropolitan Statistical Area "Kendallville, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Kennett, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Kennewick-Richland, WA MSA" -Metropolitan and Micropolitan Statistical Area "Kerrville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Ketchikan, AK MicroSA" -Metropolitan and Micropolitan Statistical Area "Key West, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Kill Devil Hills, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Killeen-Temple, TX MSA" -Metropolitan and Micropolitan Statistical Area "Kingsport-Bristol-Bristol, TN-VA MSA" -Metropolitan and Micropolitan Statistical Area "Kingston, NY MSA" -Metropolitan and Micropolitan Statistical Area "Kingsville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Kinston, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Kirksville, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Klamath Falls, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Knoxville, TN MSA" -Metropolitan and Micropolitan Statistical Area "Kokomo, IN MSA" -Metropolitan and Micropolitan Statistical Area "La Crosse-Onalaska, WI-MN MSA" -Metropolitan and Micropolitan Statistical Area "La Grande, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "LaGrange, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Laconia, NH MicroSA" -Metropolitan and Micropolitan Statistical Area "Lafayette, LA MSA" -Metropolitan and Micropolitan Statistical Area "Lafayette-West Lafayette, IN MSA" -Metropolitan and Micropolitan Statistical Area "Lake Charles, LA MSA" -Metropolitan and Micropolitan Statistical Area "Lake City, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Lake Havasu City-Kingman, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Lakeland-Winter Haven, FL MSA" -Metropolitan and Micropolitan Statistical Area "Lamesa, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Lancaster, PA MSA" -Metropolitan and Micropolitan Statistical Area "Lansing-East Lansing, MI MSA" -Metropolitan and Micropolitan Statistical Area "Laramie, WY MicroSA" -Metropolitan and Micropolitan Statistical Area "Laredo, TX MSA" -Metropolitan and Micropolitan Statistical Area "Las Cruces, NM MSA" -Metropolitan and Micropolitan Statistical Area "Las Vegas, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Las Vegas-Henderson-Paradise, NV MSA" -Metropolitan and Micropolitan Statistical Area "Laurel, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Laurinburg, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Lawrence, KS MSA" -Metropolitan and Micropolitan Statistical Area "Lawrenceburg, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Lawton, OK MSA" -Metropolitan and Micropolitan Statistical Area "Lebanon, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Lebanon, PA MSA" -Metropolitan and Micropolitan Statistical Area "Levelland, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Lewisburg, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Lewisburg, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Lewiston, ID-WA MSA" -Metropolitan and Micropolitan Statistical Area "Lewiston-Auburn, ME MSA" -Metropolitan and Micropolitan Statistical Area "Lewistown, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Lexington, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Lexington-Fayette, KY MSA" -Metropolitan and Micropolitan Statistical Area "Liberal, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Lima, OH MSA" -Metropolitan and Micropolitan Statistical Area "Lincoln, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Lincoln, NE MSA" -Metropolitan and Micropolitan Statistical Area "Little Rock-North Little Rock-Conway, AR MSA" -Metropolitan and Micropolitan Statistical Area "Lock Haven, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Logan, UT-ID MSA" -Metropolitan and Micropolitan Statistical Area "Logan, WV MicroSA" -Metropolitan and Micropolitan Statistical Area "Logansport, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "London, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Longview, TX MSA" -Metropolitan and Micropolitan Statistical Area "Longview, WA MSA" -Metropolitan and Micropolitan Statistical Area "Los Alamos, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Los Angeles-Long Beach-Anaheim, CA MSA" -Metropolitan and Micropolitan Statistical Area "Louisville/Jefferson County, KY-IN MSA" -Metropolitan and Micropolitan Statistical Area "Lubbock, TX MSA" -Metropolitan and Micropolitan Statistical Area "Ludington, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Lufkin, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Lumberton, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Lynchburg, VA MSA" -Metropolitan and Micropolitan Statistical Area "Macomb, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Macon, GA MSA" -Metropolitan and Micropolitan Statistical Area "Madera, CA MSA" -Metropolitan and Micropolitan Statistical Area "Madison, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Madison, WI MSA" -Metropolitan and Micropolitan Statistical Area "Madisonville, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Magnolia, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Malone, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Malvern, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Manchester-Nashua, NH MSA" -Metropolitan and Micropolitan Statistical Area "Manhattan, KS MSA" -Metropolitan and Micropolitan Statistical Area "Manitowoc, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Mankato-North Mankato, MN MSA" -Metropolitan and Micropolitan Statistical Area "Mansfield, OH MSA" -Metropolitan and Micropolitan Statistical Area "Marietta, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Marinette, WI-MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Marion, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Marion, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Marion, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Marquette, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Marshall, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Marshall, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Marshall, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Marshalltown, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Martin, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Martinsville, VA MicroSA" -Metropolitan and Micropolitan Statistical Area "Maryville, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Mason City, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Mayfield, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Maysville, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "McAlester, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "McAllen-Edinburg-Mission, TX MSA" -Metropolitan and Micropolitan Statistical Area "McComb, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "McMinnville, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "McPherson, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Meadville, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Medford, OR MSA" -Metropolitan and Micropolitan Statistical Area "Memphis, TN-MS-AR MSA" -Metropolitan and Micropolitan Statistical Area "Menomonie, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Merced, CA MSA" -Metropolitan and Micropolitan Statistical Area "Meridian, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Merrill, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Mexico, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Miami, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Miami-Fort Lauderdale-West Palm Beach, FL MSA" -Metropolitan and Micropolitan Statistical Area "Michigan City-La Porte, IN MSA" -Metropolitan and Micropolitan Statistical Area "Middlesborough, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Midland, MI MSA" -Metropolitan and Micropolitan Statistical Area "Midland, TX MSA" -Metropolitan and Micropolitan Statistical Area "Milledgeville, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Milwaukee-Waukesha-West Allis, WI MSA" -Metropolitan and Micropolitan Statistical Area "Mineral Wells, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Minneapolis-St. Paul-Bloomington, MN-WI MSA" -Metropolitan and Micropolitan Statistical Area "Minot, ND MicroSA" -Metropolitan and Micropolitan Statistical Area "Missoula, MT MSA" -Metropolitan and Micropolitan Statistical Area "Mitchell, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Moberly, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Mobile, AL MSA" -Metropolitan and Micropolitan Statistical Area "Modesto, CA MSA" -Metropolitan and Micropolitan Statistical Area "Monroe, LA MSA" -Metropolitan and Micropolitan Statistical Area "Monroe, MI MSA" -Metropolitan and Micropolitan Statistical Area "Montgomery, AL MSA" -Metropolitan and Micropolitan Statistical Area "Montrose, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Morehead City, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Morgan City, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Morgantown, WV MSA" -Metropolitan and Micropolitan Statistical Area "Morristown, TN MSA" -Metropolitan and Micropolitan Statistical Area "Moscow, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Moses Lake, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Moultrie, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Airy, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Pleasant, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Pleasant, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Sterling, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Vernon, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Vernon, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Vernon-Anacortes, WA MSA" -Metropolitan and Micropolitan Statistical Area "Mountain Home, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Mountain Home, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Muncie, IN MSA" -Metropolitan and Micropolitan Statistical Area "Murray, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Muscatine, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Muskegon, MI MSA" -Metropolitan and Micropolitan Statistical Area "Muskogee, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Myrtle Beach-Conway-North Myrtle Beach, SC-NC MSA" -Metropolitan and Micropolitan Statistical Area "Nacogdoches, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Napa, CA MSA" -Metropolitan and Micropolitan Statistical Area "Naples-Immokalee-Marco Island, FL MSA" -Metropolitan and Micropolitan Statistical Area "Nashville-Davidson--Murfreesboro--Franklin, TN MSA" -Metropolitan and Micropolitan Statistical Area "Natchez, MS-LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Natchitoches, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "New Bern, NC MSA" -Metropolitan and Micropolitan Statistical Area "New Castle, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "New Castle, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "New Haven-Milford, CT MSA" -Metropolitan and Micropolitan Statistical Area "New Orleans-Metairie, LA MSA" -Metropolitan and Micropolitan Statistical Area "New Philadelphia-Dover, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "New Ulm, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "New York-Newark-Jersey City, NY-NJ-PA MSA" -Metropolitan and Micropolitan Statistical Area "Newberry, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Newport, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Newport, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Newton, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Niles-Benton Harbor, MI MSA" -Metropolitan and Micropolitan Statistical Area "Nogales, AZ MicroSA" -Metropolitan and Micropolitan Statistical Area "Norfolk, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "North Platte, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "North Port-Sarasota-Bradenton, FL MSA" -Metropolitan and Micropolitan Statistical Area "North Vernon, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "North Wilkesboro, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Norwalk, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Norwich-New London, CT MSA" -Metropolitan and Micropolitan Statistical Area "Oak Harbor, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Ocala, FL MSA" -Metropolitan and Micropolitan Statistical Area "Ocean City, NJ MSA" -Metropolitan and Micropolitan Statistical Area "Odessa, TX MSA" -Metropolitan and Micropolitan Statistical Area "Ogden-Clearfield, UT MSA" -Metropolitan and Micropolitan Statistical Area "Ogdensburg-Massena, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Oil City, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Okeechobee, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Oklahoma City, OK MSA" -Metropolitan and Micropolitan Statistical Area "Olean, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Olympia-Tumwater, WA MSA" -Metropolitan and Micropolitan Statistical Area "Omaha-Council Bluffs, NE-IA MSA" -Metropolitan and Micropolitan Statistical Area "Oneonta, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Ontario, OR-ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Opelousas, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Orangeburg, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Orlando-Kissimmee-Sanford, FL MSA" -Metropolitan and Micropolitan Statistical Area "Oshkosh-Neenah, WI MSA" -Metropolitan and Micropolitan Statistical Area "Oskaloosa, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Othello, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Ottawa, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Ottawa-Peru, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Ottumwa, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Owatonna, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Owensboro, KY MSA" -Metropolitan and Micropolitan Statistical Area "Owosso, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Oxford, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Oxford, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Oxnard-Thousand Oaks-Ventura, CA MSA" -Metropolitan and Micropolitan Statistical Area "Ozark, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Paducah, KY-IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Pahrump, NV MicroSA" -Metropolitan and Micropolitan Statistical Area "Palatka, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Palestine, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Palm Bay-Melbourne-Titusville, FL MSA" -Metropolitan and Micropolitan Statistical Area "Pampa, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Panama City, FL MSA" -Metropolitan and Micropolitan Statistical Area "Paragould, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Paris, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Paris, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Parkersburg-Vienna, WV MSA" -Metropolitan and Micropolitan Statistical Area "Parsons, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Payson, AZ MicroSA" -Metropolitan and Micropolitan Statistical Area "Pecos, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Pensacola-Ferry Pass-Brent, FL MSA" -Metropolitan and Micropolitan Statistical Area "Peoria, IL MSA" -Metropolitan and Micropolitan Statistical Area "Peru, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Philadelphia-Camden-Wilmington, PA-NJ-DE-MD MSA" -Metropolitan and Micropolitan Statistical Area "Phoenix-Mesa-Scottsdale, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Picayune, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Pierre, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Pine Bluff, AR MSA" -Metropolitan and Micropolitan Statistical Area "Pinehurst-Southern Pines, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Pittsburg, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Pittsburgh, PA MSA" -Metropolitan and Micropolitan Statistical Area "Pittsfield, MA MSA" -Metropolitan and Micropolitan Statistical Area "Plainview, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Platteville, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Plattsburgh, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Plymouth, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Pocatello, ID MSA" -Metropolitan and Micropolitan Statistical Area "Point Pleasant, WV-OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Ponca City, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Pontiac, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Poplar Bluff, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Port Angeles, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Port Clinton, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Port Lavaca, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Port St. Lucie, FL MSA" -Metropolitan and Micropolitan Statistical Area "Portales, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Portland-South Portland, ME MSA" -Metropolitan and Micropolitan Statistical Area "Portland-Vancouver-Hillsboro, OR-WA MSA" -Metropolitan and Micropolitan Statistical Area "Portsmouth, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Pottsville, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Prescott, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Price, UT MicroSA" -Metropolitan and Micropolitan Statistical Area "Prineville, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Providence-Warwick, RI-MA MSA" -Metropolitan and Micropolitan Statistical Area "Provo-Orem, UT MSA" -Metropolitan and Micropolitan Statistical Area "Pueblo, CO MSA" -Metropolitan and Micropolitan Statistical Area "Pullman, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Punta Gorda, FL MSA" -Metropolitan and Micropolitan Statistical Area "Quincy, IL-MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Racine, WI MSA" -Metropolitan and Micropolitan Statistical Area "Raleigh, NC MSA" -Metropolitan and Micropolitan Statistical Area "Rapid City, SD MSA" -Metropolitan and Micropolitan Statistical Area "Raymondville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Reading, PA MSA" -Metropolitan and Micropolitan Statistical Area "Red Bluff, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Red Wing, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Redding, CA MSA" -Metropolitan and Micropolitan Statistical Area "Reno, NV MSA" -Metropolitan and Micropolitan Statistical Area "Rexburg, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Richmond, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Richmond, VA MSA" -Metropolitan and Micropolitan Statistical Area "Richmond-Berea, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Rio Grande City, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Riverside-San Bernardino-Ontario, CA MSA" -Metropolitan and Micropolitan Statistical Area "Riverton, WY MicroSA" -Metropolitan and Micropolitan Statistical Area "Roanoke Rapids, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Roanoke, VA MSA" -Metropolitan and Micropolitan Statistical Area "Rochelle, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Rochester, MN MSA" -Metropolitan and Micropolitan Statistical Area "Rochester, NY MSA" -Metropolitan and Micropolitan Statistical Area "Rock Springs, WY MicroSA" -Metropolitan and Micropolitan Statistical Area "Rockford, IL MSA" -Metropolitan and Micropolitan Statistical Area "Rockingham, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Rocky Mount, NC MSA" -Metropolitan and Micropolitan Statistical Area "Rolla, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Rome, GA MSA" -Metropolitan and Micropolitan Statistical Area "Roseburg, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Roswell, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Russellville, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Ruston, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Rutland, VT MicroSA" -Metropolitan and Micropolitan Statistical Area "Sacramento--Roseville--Arden-Arcade, CA MSA" -Metropolitan and Micropolitan Statistical Area "Safford, AZ MicroSA" -Metropolitan and Micropolitan Statistical Area "Saginaw, MI MSA" -Metropolitan and Micropolitan Statistical Area "Salem, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Salem, OR MSA" -Metropolitan and Micropolitan Statistical Area "Salina, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Salinas, CA MSA" -Metropolitan and Micropolitan Statistical Area "Salisbury, MD-DE MSA" -Metropolitan and Micropolitan Statistical Area "Salt Lake City, UT MSA" -Metropolitan and Micropolitan Statistical Area "San Angelo, TX MSA" -Metropolitan and Micropolitan Statistical Area "San Antonio-New Braunfels, TX MSA" -Metropolitan and Micropolitan Statistical Area "San Diego-Carlsbad, CA MSA" -Metropolitan and Micropolitan Statistical Area "San Francisco-Oakland-Hayward, CA MSA" -Metropolitan and Micropolitan Statistical Area "San Jose-Sunnyvale-Santa Clara, CA MSA" -Metropolitan and Micropolitan Statistical Area "San Luis Obispo-Paso Robles-Arroyo Grande, CA MSA" -Metropolitan and Micropolitan Statistical Area "Sandpoint, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Sandusky, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Sanford, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Santa Cruz-Watsonville, CA MSA" -Metropolitan and Micropolitan Statistical Area "Santa Fe, NM MSA" -Metropolitan and Micropolitan Statistical Area "Santa Maria-Santa Barbara, CA MSA" -Metropolitan and Micropolitan Statistical Area "Santa Rosa, CA MSA" -Metropolitan and Micropolitan Statistical Area "Sault Ste. Marie, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Savannah, GA MSA" -Metropolitan and Micropolitan Statistical Area "Sayre, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Scottsbluff, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Scottsboro, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Scranton--Wilkes-Barre--Hazleton, PA MSA" -Metropolitan and Micropolitan Statistical Area "Searcy, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Seattle-Tacoma-Bellevue, WA MSA" -Metropolitan and Micropolitan Statistical Area "Sebastian-Vero Beach, FL MSA" -Metropolitan and Micropolitan Statistical Area "Sebring, FL MSA" -Metropolitan and Micropolitan Statistical Area "Sedalia, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Selinsgrove, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Selma, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Seneca Falls, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Seneca, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Sevierville, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Seymour, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Shawano, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Shawnee, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Sheboygan, WI MSA" -Metropolitan and Micropolitan Statistical Area "Shelby, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Shelbyville, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Shelton, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Sheridan, WY MicroSA" -Metropolitan and Micropolitan Statistical Area "Sherman-Denison, TX MSA" -Metropolitan and Micropolitan Statistical Area "Show Low, AZ MicroSA" -Metropolitan and Micropolitan Statistical Area "Shreveport-Bossier City, LA MSA" -Metropolitan and Micropolitan Statistical Area "Sidney, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Sierra Vista-Douglas, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Sikeston, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Silver City, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Sioux City, IA-NE-SD MSA" -Metropolitan and Micropolitan Statistical Area "Sioux Falls, SD MSA" -Metropolitan and Micropolitan Statistical Area "Snyder, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Somerset, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Somerset, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Sonora, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "South Bend-Mishawaka, IN-MI MSA" -Metropolitan and Micropolitan Statistical Area "Spartanburg, SC MSA" -Metropolitan and Micropolitan Statistical Area "Spearfish, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Spencer, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Spirit Lake, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Spokane-Spokane Valley, WA MSA" -Metropolitan and Micropolitan Statistical Area "Springfield, IL MSA" -Metropolitan and Micropolitan Statistical Area "Springfield, MA MSA" -Metropolitan and Micropolitan Statistical Area "Springfield, MO MSA" -Metropolitan and Micropolitan Statistical Area "Springfield, OH MSA" -Metropolitan and Micropolitan Statistical Area "St. Cloud, MN MSA" -Metropolitan and Micropolitan Statistical Area "St. George, UT MSA" -Metropolitan and Micropolitan Statistical Area "St. Joseph, MO-KS MSA" -Metropolitan and Micropolitan Statistical Area "St. Louis, MO-IL MSA" -Metropolitan and Micropolitan Statistical Area "St. Marys, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Starkville, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "State College, PA MSA" -Metropolitan and Micropolitan Statistical Area "Statesboro, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Staunton-Waynesboro, VA MSA" -Metropolitan and Micropolitan Statistical Area "Steamboat Springs, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Stephenville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Sterling, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Sterling, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Stevens Point, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Stillwater, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Stockton-Lodi, CA MSA" -Metropolitan and Micropolitan Statistical Area "Storm Lake, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Sturgis, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Sulphur Springs, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Summerville, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Summit Park, UT MicroSA" -Metropolitan and Micropolitan Statistical Area "Sumter, SC MSA" -Metropolitan and Micropolitan Statistical Area "Sunbury, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Susanville, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Sweetwater, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Syracuse, NY MSA" -Metropolitan and Micropolitan Statistical Area "Tahlequah, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Talladega-Sylacauga, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Tallahassee, FL MSA" -Metropolitan and Micropolitan Statistical Area "Tampa-St. Petersburg-Clearwater, FL MSA" -Metropolitan and Micropolitan Statistical Area "Taos, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Taylorville, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Terre Haute, IN MSA" -Metropolitan and Micropolitan Statistical Area "Texarkana, TX-AR MSA" -Metropolitan and Micropolitan Statistical Area "The Dalles, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "The Villages, FL MSA" -Metropolitan and Micropolitan Statistical Area "Thomaston, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Thomasville, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Tiffin, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Tifton, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Toccoa, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Toledo, OH MSA" -Metropolitan and Micropolitan Statistical Area "Topeka, KS MSA" -Metropolitan and Micropolitan Statistical Area "Torrington, CT MicroSA" -Metropolitan and Micropolitan Statistical Area "Traverse City, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Trenton, NJ MSA" -Metropolitan and Micropolitan Statistical Area "Troy, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Truckee-Grass Valley, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Tucson, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Tullahoma-Manchester, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Tulsa, OK MSA" -Metropolitan and Micropolitan Statistical Area "Tupelo, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Tuscaloosa, AL MSA" -Metropolitan and Micropolitan Statistical Area "Twin Falls, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Tyler, TX MSA" -Metropolitan and Micropolitan Statistical Area "Ukiah, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Union City, TN-KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Urban Honolulu, HI MSA" -Metropolitan and Micropolitan Statistical Area "Urbana, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Utica-Rome, NY MSA" -Metropolitan and Micropolitan Statistical Area "Uvalde, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Valdosta, GA MSA" -Metropolitan and Micropolitan Statistical Area "Vallejo-Fairfield, CA MSA" -Metropolitan and Micropolitan Statistical Area "Valley, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Van Wert, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Vermillion, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Vernal, UT MicroSA" -Metropolitan and Micropolitan Statistical Area "Vernon, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Vicksburg, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Victoria, TX MSA" -Metropolitan and Micropolitan Statistical Area "Vidalia, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Vincennes, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Vineland-Bridgeton, NJ MSA" -Metropolitan and Micropolitan Statistical Area "Vineyard Haven, MA MicroSA" -Metropolitan and Micropolitan Statistical Area "Virginia Beach-Norfolk-Newport News, VA-NC MSA" -Metropolitan and Micropolitan Statistical Area "Visalia-Porterville, CA MSA" -Metropolitan and Micropolitan Statistical Area "Wabash, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Waco, TX MSA" -Metropolitan and Micropolitan Statistical Area "Wahpeton, ND-MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Walla Walla, WA MSA" -Metropolitan and Micropolitan Statistical Area "Wapakoneta, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Warner Robins, GA MSA" -Metropolitan and Micropolitan Statistical Area "Warren, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Warrensburg, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Warsaw, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Washington Court House, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Washington, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Washington, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Washington-Arlington-Alexandria, DC-VA-MD-WV MSA" -Metropolitan and Micropolitan Statistical Area "Waterloo-Cedar Falls, IA MSA" -Metropolitan and Micropolitan Statistical Area "Watertown, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Watertown-Fort Atkinson, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Watertown-Fort Drum, NY MSA" -Metropolitan and Micropolitan Statistical Area "Wauchula, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Wausau, WI MSA" -Metropolitan and Micropolitan Statistical Area "Waycross, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Weatherford, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Weirton-Steubenville, WV-OH MSA" -Metropolitan and Micropolitan Statistical Area "Wenatchee, WA MSA" -Metropolitan and Micropolitan Statistical Area "West Plains, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Wheeling, WV-OH MSA" -Metropolitan and Micropolitan Statistical Area "Whitewater-Elkhorn, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Wichita Falls, TX MSA" -Metropolitan and Micropolitan Statistical Area "Wichita, KS MSA" -Metropolitan and Micropolitan Statistical Area "Williamsport, PA MSA" -Metropolitan and Micropolitan Statistical Area "Williston, ND MicroSA" -Metropolitan and Micropolitan Statistical Area "Willmar, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Wilmington, NC MSA" -Metropolitan and Micropolitan Statistical Area "Wilmington, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Wilson, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Winchester, VA-WV MSA" -Metropolitan and Micropolitan Statistical Area "Winnemucca, NV MicroSA" -Metropolitan and Micropolitan Statistical Area "Winona, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Winston-Salem, NC MSA" -Metropolitan and Micropolitan Statistical Area "Wisconsin Rapids-Marshfield, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Woodward, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Wooster, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Worcester, MA-CT MSA" -Metropolitan and Micropolitan Statistical Area "Worthington, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Yakima, WA MSA" -Metropolitan and Micropolitan Statistical Area "Yankton, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "York-Hanover, PA MSA" -Metropolitan and Micropolitan Statistical Area "Youngstown-Warren-Boardman, OH-PA MSA" -Metropolitan and Micropolitan Statistical Area "Yuba City, CA MSA" -Metropolitan and Micropolitan Statistical Area "Yuma, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Zanesville, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Zapata, TX MicroSA" -Metropolitan and Micropolitan Statistical Area None -Misc Extra Refrigerator "EF 15.9, Fed Standard, bottom freezer-reference fridge" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=573 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator "EF 19.8, bottom freezer" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=458 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator "EF 6.9, Average Installed" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1102 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator "EF 6.9, National Average" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1102 extra_refrigerator_usage_multiplier=0.221 -Misc Extra Refrigerator EF 10.2 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=748 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 10.5 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=727 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 15.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=480 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 17.6 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=433 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 19.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=383 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 21.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=348 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 6.7 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1139 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator None ResStockArguments extra_refrigerator_present=false extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=0 extra_refrigerator_usage_multiplier=0 -Misc Extra Refrigerator Void -Misc Freezer "EF 12, Average Installed" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=935 freezer_usage_multiplier=1.0 -Misc Freezer "EF 12, National Average" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=935 freezer_usage_multiplier=0.342 -Misc Freezer "EF 16, 2001 Fed Standard-reference freezer" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=712 freezer_usage_multiplier=1.0 -Misc Freezer "EF 18, 2008 Energy Star" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=641 freezer_usage_multiplier=1.0 -Misc Freezer "EF 20, 2008 Energy Star Most Efficient" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=568 freezer_usage_multiplier=1.0 -Misc Freezer None ResStockArguments freezer_present=false freezer_location=auto freezer_rated_annual_kwh=0 freezer_usage_multiplier=0 -Misc Freezer Void -Misc Gas Fireplace Gas Fireplace ResStockArguments misc_fuel_loads_fireplace_present=true misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=auto misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=1.0 -Misc Gas Fireplace National Average ResStockArguments misc_fuel_loads_fireplace_present=true misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=auto misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=0.032 -Misc Gas Fireplace None ResStockArguments misc_fuel_loads_fireplace_present=false misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=0 misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=0 -Misc Gas Grill Gas Grill ResStockArguments misc_fuel_loads_grill_present=true misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=auto misc_fuel_loads_grill_usage_multiplier=1.0 -Misc Gas Grill National Average ResStockArguments misc_fuel_loads_grill_present=true misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=auto misc_fuel_loads_grill_usage_multiplier=0.029 -Misc Gas Grill None ResStockArguments misc_fuel_loads_grill_present=false misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=0 misc_fuel_loads_grill_usage_multiplier=0 -Misc Gas Lighting Gas Lighting ResStockArguments misc_fuel_loads_lighting_present=true misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=auto misc_fuel_loads_lighting_usage_multiplier=1.0 -Misc Gas Lighting National Average ResStockArguments misc_fuel_loads_lighting_present=true misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=auto misc_fuel_loads_lighting_usage_multiplier=0.012 -Misc Gas Lighting None ResStockArguments misc_fuel_loads_lighting_present=false misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=0 misc_fuel_loads_lighting_usage_multiplier=0 -Misc Hot Tub Spa Electricity ResStockArguments permanent_spa_present=true permanent_spa_pump_annual_kwh=auto permanent_spa_pump_usage_multiplier=1.0 permanent_spa_heater_type=electric resistance permanent_spa_heater_annual_kwh=auto permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=1.0 -Misc Hot Tub Spa Natural Gas ResStockArguments permanent_spa_present=true permanent_spa_pump_annual_kwh=auto permanent_spa_pump_usage_multiplier=1.0 permanent_spa_heater_type=gas fired permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=auto permanent_spa_heater_usage_multiplier=1.0 -Misc Hot Tub Spa None ResStockArguments permanent_spa_present=false permanent_spa_pump_annual_kwh=0 permanent_spa_pump_usage_multiplier=0 permanent_spa_heater_type=none permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=0 -Misc Hot Tub Spa Other Fuel ResStockArguments permanent_spa_present=false permanent_spa_pump_annual_kwh=0 permanent_spa_pump_usage_multiplier=0 permanent_spa_heater_type=none permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=0 -Misc Hot Tub Spa Void -Misc Pool Has Pool ResStockArguments pool_present=true -Misc Pool None ResStockArguments pool_present=false -Misc Pool Void -Misc Pool Heater "Electric, 78F" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.8 -Misc Pool Heater "Electric, Covered" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.3 -Misc Pool Heater "Electric, Covered, 78F" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.2 -Misc Pool Heater "Gas, 78F" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.8 -Misc Pool Heater "Gas, Covered" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.3 -Misc Pool Heater "Gas, Covered, 78F" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.2 -Misc Pool Heater Electricity ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=1.0 -Misc Pool Heater Natural Gas ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=1.0 -Misc Pool Heater None ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 -Misc Pool Heater Other Fuel ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 -Misc Pool Heater Solar ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 -Misc Pool Heater Unheated ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 -Misc Pool Pump 0.75 HP Pump ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=0.75 -Misc Pool Pump 1.0 HP Pump ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=1.0 -Misc Pool Pump National Average ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=0.075 -Misc Pool Pump None ResStockArguments pool_pump_annual_kwh=0 pool_pump_usage_multiplier=0 -Misc Well Pump High Efficiency ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=0.67 misc_plug_loads_well_pump_2_usage_multiplier=1.0 -Misc Well Pump National Average ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=0.127 misc_plug_loads_well_pump_2_usage_multiplier=1.0 -Misc Well Pump None ResStockArguments misc_plug_loads_well_pump_present=false misc_plug_loads_well_pump_annual_kwh=0 misc_plug_loads_well_pump_usage_multiplier=0 misc_plug_loads_well_pump_2_usage_multiplier=0 -Misc Well Pump Typical Efficiency ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=1.0 misc_plug_loads_well_pump_2_usage_multiplier=1.0 -Natural Ventilation "Cooling Season, 7 days/wk" ResStockArguments window_fraction_operable=0.67 -Natural Ventilation None ResStockArguments window_fraction_operable=0 -Neighbors "Left/Right at 15ft, Front/Back at 80ft" ResStockArguments neighbor_front_distance=80 neighbor_back_distance=80 neighbor_left_distance=15 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 12 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=12 neighbor_right_distance=12 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 2 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=2 neighbor_right_distance=2 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 27 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=27 neighbor_right_distance=27 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 4 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=4 neighbor_right_distance=4 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 7 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=7 neighbor_right_distance=7 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Back at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=15 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Front at 15ft ResStockArguments neighbor_front_distance=15 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Left at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=15 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Left/Right at 10ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=10 neighbor_right_distance=10 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Left/Right at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=15 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Left/Right at 20ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=20 neighbor_right_distance=20 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors None ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Right at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Occupants 0 ResStockArguments geometry_unit_num_occupants=0 general_water_use_usage_multiplier=auto -Occupants 1 ResStockArguments geometry_unit_num_occupants=1 general_water_use_usage_multiplier=auto -Occupants 10+ ResStockArguments geometry_unit_num_occupants=11 general_water_use_usage_multiplier=auto -Occupants 2 ResStockArguments geometry_unit_num_occupants=2 general_water_use_usage_multiplier=auto -Occupants 3 ResStockArguments geometry_unit_num_occupants=3 general_water_use_usage_multiplier=auto -Occupants 4 ResStockArguments geometry_unit_num_occupants=4 general_water_use_usage_multiplier=auto -Occupants 5 ResStockArguments geometry_unit_num_occupants=5 general_water_use_usage_multiplier=auto -Occupants 6 ResStockArguments geometry_unit_num_occupants=6 general_water_use_usage_multiplier=auto -Occupants 7 ResStockArguments geometry_unit_num_occupants=7 general_water_use_usage_multiplier=auto -Occupants 8 ResStockArguments geometry_unit_num_occupants=8 general_water_use_usage_multiplier=auto -Occupants 9 ResStockArguments geometry_unit_num_occupants=9 general_water_use_usage_multiplier=auto -Orientation ENE ResStockArguments geometry_unit_orientation=68 -Orientation ESE ResStockArguments geometry_unit_orientation=113 -Orientation East ResStockArguments geometry_unit_orientation=90 -Orientation NNE ResStockArguments geometry_unit_orientation=23 -Orientation NNW ResStockArguments geometry_unit_orientation=338 -Orientation North ResStockArguments geometry_unit_orientation=0 -Orientation Northeast ResStockArguments geometry_unit_orientation=45 -Orientation Northwest ResStockArguments geometry_unit_orientation=315 -Orientation SSE ResStockArguments geometry_unit_orientation=158 -Orientation SSW ResStockArguments geometry_unit_orientation=203 -Orientation South ResStockArguments geometry_unit_orientation=180 -Orientation Southeast ResStockArguments geometry_unit_orientation=135 -Orientation Southwest ResStockArguments geometry_unit_orientation=225 -Orientation WNW ResStockArguments geometry_unit_orientation=293 -Orientation WSW ResStockArguments geometry_unit_orientation=248 -Orientation West ResStockArguments geometry_unit_orientation=270 -Overhangs "2ft, All Windows" ResStockArguments overhangs_front_depth=2 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=2 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=2 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=2 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs "2ft, Back Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=2 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs "2ft, Front Windows" ResStockArguments overhangs_front_depth=2 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs "2ft, Left Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=2 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs "2ft, Right Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=2 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs None ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -PUMA "AK, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AK, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AK, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AK, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AK, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00115" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00116" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00117" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00118" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00119" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00120" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00121" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00122" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00123" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00124" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00125" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00126" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00127" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00128" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00129" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00130" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00131" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00132" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00133" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00134" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03709" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03710" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03711" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03712" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03713" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03714" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03715" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03716" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03717" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03718" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03719" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03720" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03721" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03722" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03723" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03724" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03725" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03726" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03727" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03728" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03729" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03730" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03731" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03732" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03733" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03734" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03735" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03736" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03737" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03738" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03739" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03740" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03741" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03742" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03743" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03744" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03745" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03746" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03747" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03748" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03749" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03750" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03751" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03752" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03753" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03754" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03755" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03756" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03757" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03758" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03759" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03760" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03761" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03762" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03763" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03764" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03765" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03766" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03767" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03768" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03769" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 04701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 04702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05911" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05912" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05913" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05914" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05915" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05916" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05917" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05918" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06511" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06512" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06513" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06514" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06515" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06709" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06710" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06711" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06712" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07115" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07311" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07312" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07313" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07314" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07315" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07316" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07317" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07318" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07319" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07320" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07321" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07322" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08511" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08512" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08513" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08514" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 10100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 10701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 10702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 10703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00808" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00809" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00810" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00811" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00812" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00813" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00814" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00815" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00816" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00817" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00818" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00819" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00820" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00821" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00822" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00823" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00824" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 04104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 04105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 04106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DC, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DC, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DC, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DC, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DC, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DE, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DE, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DE, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DE, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DE, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DE, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 02103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 06100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 06300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 06901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 06902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 06903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08606" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08607" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08608" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08609" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08610" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08611" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08612" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08613" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08614" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08615" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08616" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08617" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08618" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08619" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08620" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08621" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08622" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08623" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08624" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09911" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 12100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 12701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 12702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 12703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 12704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 05001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 05002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 06001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 06002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03009" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03407" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03408" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03409" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03410" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03411" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03412" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03413" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03414" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03415" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03416" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03417" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03418" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03419" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03420" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03421" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03422" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03520" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03521" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03522" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03523" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03524" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03525" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03526" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03527" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03528" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03529" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03530" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03531" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03532" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03210" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03211" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03212" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03213" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01405" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01406" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01407" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01408" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01409" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01410" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01808" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ND, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ND, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ND, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ND, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ND, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00405" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00406" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00407" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00408" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00409" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00410" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00411" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00412" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00413" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03210" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03211" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03212" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03311" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03312" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03313" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03709" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03710" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03808" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03809" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03810" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04009" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04010" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04011" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04012" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04013" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04014" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04015" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04016" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04017" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04018" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01314" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01316" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01317" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01318" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01319" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01320" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01321" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01322" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01323" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01324" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03210" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03211" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 04001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 04002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SD, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SD, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SD, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SD, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SD, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SD, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02311" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02312" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02313" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02314" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02315" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02316" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02317" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02318" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02319" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02320" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02321" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02322" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02511" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02512" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02513" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02514" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02515" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02516" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04606" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04607" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04608" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04609" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04610" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04611" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04612" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04613" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04614" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04615" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04616" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04617" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04618" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04619" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04620" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04621" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04622" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04623" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04624" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04625" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04626" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04627" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04628" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04629" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04630" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04631" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04632" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04633" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04634" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04635" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04636" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04637" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04638" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05911" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05912" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05913" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05914" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05915" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05916" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 05001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 11001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 11002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 13001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 21001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35009" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 49001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 49002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 49003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 49004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 53001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 57001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 57002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 10701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 10702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 10703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51010" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51020" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51040" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51044" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51045" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51080" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51084" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51085" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51087" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51089" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51090" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51095" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51096" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51097" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51115" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51120" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51125" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51135" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51145" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51154" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51155" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51164" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51165" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51167" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51175" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51186" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51215" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51224" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51225" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51235" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51244" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51245" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51246" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51255" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 55001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 55002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VT, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VT, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VT, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VT, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11606" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11607" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11608" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11609" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11610" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11611" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11612" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11613" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11614" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11615" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11616" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 10000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 20000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 30000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 40101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 40301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 40701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 41001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 41002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 41003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 41004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 41005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 50000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 55101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 55102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 55103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 70101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 70201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 70301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WY, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WY, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WY, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WY, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WY, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA Metro Status "In metro area, not/partially in principal city" -PUMA Metro Status "In metro area, principal city" -PUMA Metro Status Not/partially in metro area -PV Orientation East ResStockArguments pv_system_array_azimuth=90 pv_system_2_array_azimuth=0 -PV Orientation None ResStockArguments pv_system_array_azimuth=180 pv_system_2_array_azimuth=0 -PV Orientation North ResStockArguments pv_system_array_azimuth=0 pv_system_2_array_azimuth=0 -PV Orientation Northeast ResStockArguments pv_system_array_azimuth=45 pv_system_2_array_azimuth=0 -PV Orientation Northwest ResStockArguments pv_system_array_azimuth=315 pv_system_2_array_azimuth=0 -PV Orientation South ResStockArguments pv_system_array_azimuth=180 pv_system_2_array_azimuth=0 -PV Orientation Southeast ResStockArguments pv_system_array_azimuth=135 pv_system_2_array_azimuth=0 -PV Orientation Southwest ResStockArguments pv_system_array_azimuth=225 pv_system_2_array_azimuth=0 -PV Orientation West ResStockArguments pv_system_array_azimuth=270 pv_system_2_array_azimuth=0 -PV System Size 1.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=1000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 11.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=11000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 13.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=13000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 3.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=3000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 5.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=5000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 7.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=7000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 9.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=9000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size None ResStockArguments pv_system_present=false pv_system_module_type=auto pv_system_max_power_output=0 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -Plug Load Diversity 100% ResStockArguments misc_plug_loads_other_2_usage_multiplier=1.0 -Plug Load Diversity 150% ResStockArguments misc_plug_loads_other_2_usage_multiplier=1.5 -Plug Load Diversity 200% ResStockArguments misc_plug_loads_other_2_usage_multiplier=2.0 -Plug Load Diversity 25% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.25 -Plug Load Diversity 400% ResStockArguments misc_plug_loads_other_2_usage_multiplier=4.0 -Plug Load Diversity 50% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.5 -Plug Load Diversity 75% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.75 -Plug Loads 100% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.0 misc_plug_loads_television_present=false -Plug Loads 101% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.01 misc_plug_loads_television_present=false -Plug Loads 102% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.02 misc_plug_loads_television_present=false -Plug Loads 103% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.03 misc_plug_loads_television_present=false -Plug Loads 104% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.04 misc_plug_loads_television_present=false -Plug Loads 105% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.05 misc_plug_loads_television_present=false -Plug Loads 106% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.06 misc_plug_loads_television_present=false -Plug Loads 108% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.08 misc_plug_loads_television_present=false -Plug Loads 110% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.1 misc_plug_loads_television_present=false -Plug Loads 113% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.13 misc_plug_loads_television_present=false -Plug Loads 119% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.19 misc_plug_loads_television_present=false -Plug Loads 121% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.21 misc_plug_loads_television_present=false -Plug Loads 123% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.23 misc_plug_loads_television_present=false -Plug Loads 134% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.34 misc_plug_loads_television_present=false -Plug Loads 137% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.37 misc_plug_loads_television_present=false -Plug Loads 140% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.4 misc_plug_loads_television_present=false -Plug Loads 144% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.44 misc_plug_loads_television_present=false -Plug Loads 166% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.66 misc_plug_loads_television_present=false -Plug Loads 78% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.78 misc_plug_loads_television_present=false -Plug Loads 79% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.79 misc_plug_loads_television_present=false -Plug Loads 82% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.82 misc_plug_loads_television_present=false -Plug Loads 84% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.84 misc_plug_loads_television_present=false -Plug Loads 85% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.85 misc_plug_loads_television_present=false -Plug Loads 86% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.86 misc_plug_loads_television_present=false -Plug Loads 89% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.89 misc_plug_loads_television_present=false -Plug Loads 91% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.91 misc_plug_loads_television_present=false -Plug Loads 93% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.93 misc_plug_loads_television_present=false -Plug Loads 94% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.94 misc_plug_loads_television_present=false -Plug Loads 95% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.95 misc_plug_loads_television_present=false -Plug Loads 96% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.96 misc_plug_loads_television_present=false -Plug Loads 97% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.97 misc_plug_loads_television_present=false -Plug Loads 99% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.99 misc_plug_loads_television_present=false -Power Outage Summer ResStockArguments schedules_power_outage_periods=Jul 1 5 - Jul 31 14 schedules_power_outage_periods_window_natvent_availability=always available -REEDS Balancing Area 1 -REEDS Balancing Area 10 -REEDS Balancing Area 100 -REEDS Balancing Area 101 -REEDS Balancing Area 102 -REEDS Balancing Area 103 -REEDS Balancing Area 104 -REEDS Balancing Area 105 -REEDS Balancing Area 106 -REEDS Balancing Area 107 -REEDS Balancing Area 108 -REEDS Balancing Area 109 -REEDS Balancing Area 11 -REEDS Balancing Area 110 -REEDS Balancing Area 111 -REEDS Balancing Area 112 -REEDS Balancing Area 113 -REEDS Balancing Area 114 -REEDS Balancing Area 115 -REEDS Balancing Area 116 -REEDS Balancing Area 117 -REEDS Balancing Area 118 -REEDS Balancing Area 119 -REEDS Balancing Area 12 -REEDS Balancing Area 120 -REEDS Balancing Area 121 -REEDS Balancing Area 122 -REEDS Balancing Area 123 -REEDS Balancing Area 124 -REEDS Balancing Area 125 -REEDS Balancing Area 126 -REEDS Balancing Area 127 -REEDS Balancing Area 128 -REEDS Balancing Area 129 -REEDS Balancing Area 13 -REEDS Balancing Area 130 -REEDS Balancing Area 131 -REEDS Balancing Area 132 -REEDS Balancing Area 133 -REEDS Balancing Area 134 -REEDS Balancing Area 14 -REEDS Balancing Area 15 -REEDS Balancing Area 16 -REEDS Balancing Area 17 -REEDS Balancing Area 18 -REEDS Balancing Area 19 -REEDS Balancing Area 2 -REEDS Balancing Area 20 -REEDS Balancing Area 21 -REEDS Balancing Area 22 -REEDS Balancing Area 23 -REEDS Balancing Area 24 -REEDS Balancing Area 25 -REEDS Balancing Area 26 -REEDS Balancing Area 27 -REEDS Balancing Area 28 -REEDS Balancing Area 29 -REEDS Balancing Area 3 -REEDS Balancing Area 30 -REEDS Balancing Area 31 -REEDS Balancing Area 32 -REEDS Balancing Area 33 -REEDS Balancing Area 34 -REEDS Balancing Area 35 -REEDS Balancing Area 36 -REEDS Balancing Area 37 -REEDS Balancing Area 38 -REEDS Balancing Area 39 -REEDS Balancing Area 4 -REEDS Balancing Area 40 -REEDS Balancing Area 41 -REEDS Balancing Area 42 -REEDS Balancing Area 43 -REEDS Balancing Area 44 -REEDS Balancing Area 45 -REEDS Balancing Area 46 -REEDS Balancing Area 47 -REEDS Balancing Area 48 -REEDS Balancing Area 49 -REEDS Balancing Area 5 -REEDS Balancing Area 50 -REEDS Balancing Area 51 -REEDS Balancing Area 52 -REEDS Balancing Area 53 -REEDS Balancing Area 54 -REEDS Balancing Area 55 -REEDS Balancing Area 56 -REEDS Balancing Area 57 -REEDS Balancing Area 58 -REEDS Balancing Area 59 -REEDS Balancing Area 6 -REEDS Balancing Area 60 -REEDS Balancing Area 61 -REEDS Balancing Area 62 -REEDS Balancing Area 63 -REEDS Balancing Area 64 -REEDS Balancing Area 65 -REEDS Balancing Area 66 -REEDS Balancing Area 67 -REEDS Balancing Area 68 -REEDS Balancing Area 69 -REEDS Balancing Area 7 -REEDS Balancing Area 70 -REEDS Balancing Area 71 -REEDS Balancing Area 72 -REEDS Balancing Area 73 -REEDS Balancing Area 74 -REEDS Balancing Area 75 -REEDS Balancing Area 76 -REEDS Balancing Area 77 -REEDS Balancing Area 78 -REEDS Balancing Area 79 -REEDS Balancing Area 8 -REEDS Balancing Area 80 -REEDS Balancing Area 81 -REEDS Balancing Area 82 -REEDS Balancing Area 83 -REEDS Balancing Area 84 -REEDS Balancing Area 85 -REEDS Balancing Area 86 -REEDS Balancing Area 87 -REEDS Balancing Area 88 -REEDS Balancing Area 89 -REEDS Balancing Area 9 -REEDS Balancing Area 90 -REEDS Balancing Area 91 -REEDS Balancing Area 92 -REEDS Balancing Area 93 -REEDS Balancing Area 94 -REEDS Balancing Area 95 -REEDS Balancing Area 96 -REEDS Balancing Area 97 -REEDS Balancing Area 98 -REEDS Balancing Area 99 -REEDS Balancing Area None -Radiant Barrier No ResStockArguments radiant_barrier_attic_location=none radiant_barrier_grade=1 -Radiant Barrier None ResStockArguments radiant_barrier_attic_location=none radiant_barrier_grade=1 -Radiant Barrier Yes ResStockArguments radiant_barrier_attic_location=Attic roof only radiant_barrier_grade=1 -Range Spot Vent Hour Hour0 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=0 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour1 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=1 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour10 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=10 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour11 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=11 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour12 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=12 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour13 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=13 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour14 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=14 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour15 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=15 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour16 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=16 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour17 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=17 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour18 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=18 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour19 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=19 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour2 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=2 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour20 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=20 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour21 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=21 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour22 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=22 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour23 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=23 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour3 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=3 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour4 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=4 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour5 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=5 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour6 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=6 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour7 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=7 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour8 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=8 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour9 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=9 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Refrigerator EF 10.2 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=748 -Refrigerator EF 10.5 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=727 -Refrigerator EF 15.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=480 -Refrigerator EF 17.6 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=433 -Refrigerator EF 19.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=383 -Refrigerator EF 21.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=348 -Refrigerator EF 6.7 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=1139 -Refrigerator None ResStockArguments refrigerator_present=false refrigerator_location=auto refrigerator_rated_annual_kwh=0 -Refrigerator Void -Refrigerator Usage Level 100% Usage ResStockArguments refrigerator_usage_multiplier=1.0 -Refrigerator Usage Level 105% Usage ResStockArguments refrigerator_usage_multiplier=1.05 -Refrigerator Usage Level 95% Usage ResStockArguments refrigerator_usage_multiplier=0.95 -Roof Material "Asphalt Shingles, Dark" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=dark -Roof Material "Asphalt Shingles, Light" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=light -Roof Material "Asphalt Shingles, Medium" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=medium -Roof Material "Asphalt Shingles, White or cool colors" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=reflective -Roof Material "Composition Shingles, White or Cool Colors" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=reflective -Roof Material "Metal, Cool Colors" ResStockArguments roof_material_type=metal surfacing roof_color=reflective -Roof Material "Metal, Dark" ResStockArguments roof_material_type=metal surfacing roof_color=dark -Roof Material "Metal, Light" ResStockArguments roof_material_type=metal surfacing roof_color=light -Roof Material "Metal, Medium" ResStockArguments roof_material_type=metal surfacing roof_color=medium -Roof Material "Metal, White" ResStockArguments roof_material_type=metal surfacing roof_color=reflective -Roof Material "Tile, Clay or Ceramic" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium -Roof Material "Tile, Clay or Ceramic, White or Cool Colors" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective -Roof Material "Tile, Concrete" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium -Roof Material "Tile, Concrete, White or Cool Colors" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective -Roof Material "Tile, Dark" ResStockArguments roof_material_type=slate or tile shingles roof_color=dark -Roof Material "Tile, Light" ResStockArguments roof_material_type=slate or tile shingles roof_color=light -Roof Material "Tile, Medium" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium -Roof Material "Tile, White" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective -Roof Material Composition Shingles ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=medium -Roof Material Galvanized Steel ResStockArguments roof_material_type=metal surfacing roof_color=medium -Roof Material Slate ResStockArguments roof_material_type=slate or tile shingles roof_color=medium -Roof Material Wood Shingles ResStockArguments roof_material_type=wood shingles or shakes roof_color=medium -Solar Hot Water "40 sqft, South, 10 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=10 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, South, Latitude - 15 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=latitude-15 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, South, Roof Pitch" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, West, 70 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=70 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, West, Latitude + 15 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=latitude+15 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, West, Roof Pitch" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water None ResStockArguments solar_thermal_system_type=none solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -State AK ResStockArguments site_state_code=AK -State AL ResStockArguments site_state_code=AL -State AR ResStockArguments site_state_code=AR -State AZ ResStockArguments site_state_code=AZ -State CA ResStockArguments site_state_code=CA -State CO ResStockArguments site_state_code=CO -State CT ResStockArguments site_state_code=CT -State DC ResStockArguments site_state_code=DC -State DE ResStockArguments site_state_code=DE -State FL ResStockArguments site_state_code=FL -State GA ResStockArguments site_state_code=GA -State HI ResStockArguments site_state_code=HI -State IA ResStockArguments site_state_code=IA -State ID ResStockArguments site_state_code=ID -State IL ResStockArguments site_state_code=IL -State IN ResStockArguments site_state_code=IN -State KS ResStockArguments site_state_code=KS -State KY ResStockArguments site_state_code=KY -State LA ResStockArguments site_state_code=LA -State MA ResStockArguments site_state_code=MA -State MD ResStockArguments site_state_code=MD -State ME ResStockArguments site_state_code=ME -State MI ResStockArguments site_state_code=MI -State MN ResStockArguments site_state_code=MN -State MO ResStockArguments site_state_code=MO -State MS ResStockArguments site_state_code=MS -State MT ResStockArguments site_state_code=MT -State NC ResStockArguments site_state_code=NC -State ND ResStockArguments site_state_code=ND -State NE ResStockArguments site_state_code=NE -State NH ResStockArguments site_state_code=NH -State NJ ResStockArguments site_state_code=NJ -State NM ResStockArguments site_state_code=NM -State NV ResStockArguments site_state_code=NV -State NY ResStockArguments site_state_code=NY -State OH ResStockArguments site_state_code=OH -State OK ResStockArguments site_state_code=OK -State OR ResStockArguments site_state_code=OR -State PA ResStockArguments site_state_code=PA -State RI ResStockArguments site_state_code=RI -State SC ResStockArguments site_state_code=SC -State SD ResStockArguments site_state_code=SD -State TN ResStockArguments site_state_code=TN -State TX ResStockArguments site_state_code=TX -State UT ResStockArguments site_state_code=UT -State VA ResStockArguments site_state_code=VA -State VT ResStockArguments site_state_code=VT -State WA ResStockArguments site_state_code=WA -State WI ResStockArguments site_state_code=WI -State WV ResStockArguments site_state_code=WV -State WY ResStockArguments site_state_code=WY -State Metro Median Income 0-30% -State Metro Median Income 100-120% -State Metro Median Income 120-150% -State Metro Median Income 150%+ -State Metro Median Income 30-60% -State Metro Median Income 60-80% -State Metro Median Income 80-100% -State Metro Median Income Not Available -Storm Windows Clear ResStockArguments window_storm_type=clear -Storm Windows Low-E ResStockArguments window_storm_type=low-e -Tenure Not Available -Tenure Owner -Tenure Renter -Usage Level Average -Usage Level High -Usage Level Low -Usage Level Medium -Vacancy Status Occupied -Vacancy Status Vacant ResStockArguments schedules_vacancy_periods=Jan 1 - Dec 31 -Vintage 1940s ResStockArguments vintage=1940s year_built=auto -Vintage 1950s ResStockArguments vintage=1950s year_built=auto -Vintage 1960s ResStockArguments vintage=1960s year_built=auto -Vintage 1970s ResStockArguments vintage=1970s year_built=auto -Vintage 1980s ResStockArguments vintage=1980s year_built=auto -Vintage 1990s ResStockArguments vintage=1990s year_built=auto -Vintage 2000s ResStockArguments vintage=2000s year_built=auto -Vintage 2010s ResStockArguments vintage=2010s year_built=auto -Vintage <1940 ResStockArguments vintage=<1940 year_built=auto -Vintage <1950 ResStockArguments vintage=<1950 year_built=auto -Vintage ACS 1940-59 -Vintage ACS 1960-79 -Vintage ACS 1980-99 -Vintage ACS 2000-09 -Vintage ACS 2010s -Vintage ACS <1940 -Water Heater Efficiency "Electric Heat Pump, 50 gal, 120 V Shared" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=4.9 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Electric Heat Pump, 65 gal, 120 V Shared" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=65 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=4.9 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Electric Heat Pump, 80 gal, 120 V Shared" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=80 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=4.9 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Electric Heat Pump, 50 gal, 3.45 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Electric Heat Pump, 50 gal, 3.45 UEF, 140F" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=140 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Electric Heat Pump, 66 gal, 3.35 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=66 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.35 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Electric Heat Pump, 80 gal, 3.45 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=80 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Natural Gas Premium, Condensing" ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Natural Gas Tankless, Condensing" ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=natural gas water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.96 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Propane Premium, Condensing" ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Electric Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=electricity water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.95 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Electric Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=electricity water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.92 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Electric Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=electricity water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.99 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency FIXME Fuel Oil Indirect ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.62 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Fuel Oil Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.68 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Fuel Oil Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.62 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Natural Gas Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.67 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Natural Gas Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Natural Gas Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=natural gas water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Other Fuel ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=wood water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Propane Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.67 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Propane Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Propane Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=propane water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Fuel Electricity -Water Heater Fuel Fuel Oil -Water Heater Fuel Natural Gas -Water Heater Fuel Other Fuel -Water Heater Fuel Propane -Water Heater In Unit No -Water Heater In Unit Yes -Water Heater Location Attic ResStockArguments water_heater_location=attic -Water Heater Location Conditioned Mechanical Room ResStockArguments water_heater_location=other heated space -Water Heater Location Crawlspace ResStockArguments water_heater_location=crawlspace -Water Heater Location Garage ResStockArguments water_heater_location=garage -Water Heater Location Heated Basement ResStockArguments water_heater_location=basement - conditioned -Water Heater Location Living Space ResStockArguments water_heater_location=conditioned space -Water Heater Location Outside ResStockArguments water_heater_location=other exterior -Water Heater Location Unheated Basement ResStockArguments water_heater_location=basement - unconditioned -Window Areas F10 B30 L10 R10 ResStockArguments window_front_wwr=0.1 window_back_wwr=0.3 window_left_wwr=0.1 window_right_wwr=0.1 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F12 B12 L12 R12 ResStockArguments window_front_wwr=0.12 window_back_wwr=0.12 window_left_wwr=0.12 window_right_wwr=0.12 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F15 B15 L0 R0 ResStockArguments window_front_wwr=0.15 window_back_wwr=0.15 window_left_wwr=0 window_right_wwr=0 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F15 B15 L15 R15 ResStockArguments window_front_wwr=0.15 window_back_wwr=0.15 window_left_wwr=0.15 window_right_wwr=0.15 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F18 B18 L18 R18 ResStockArguments window_front_wwr=0.18 window_back_wwr=0.18 window_left_wwr=0.18 window_right_wwr=0.18 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F30 B30 L30 R30 ResStockArguments window_front_wwr=0.30 window_back_wwr=0.30 window_left_wwr=0.30 window_right_wwr=0.30 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F6 B6 L6 R6 ResStockArguments window_front_wwr=0.06 window_back_wwr=0.06 window_left_wwr=0.06 window_right_wwr=0.06 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F9 B9 L9 R9 ResStockArguments window_front_wwr=0.09 window_back_wwr=0.09 window_left_wwr=0.09 window_right_wwr=0.09 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas None ResStockArguments window_front_wwr=0.0 window_back_wwr=0.0 window_left_wwr=0.0 window_right_wwr=0.0 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Windows "Double, Clear, Metal, Air" ResStockArguments window_ufactor=0.76 window_shgc=0.67 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Metal, Air, Exterior Clear Storm" ResStockArguments window_ufactor=0.55 window_shgc=0.51 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.49 window_shgc=0.44 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Non-metal, Air" ResStockArguments window_ufactor=0.49 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Non-metal, Air, Exterior Clear Storm" ResStockArguments window_ufactor=0.34 window_shgc=0.49 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Non-metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.28 window_shgc=0.42 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Thermal-Break, Air" ResStockArguments window_ufactor=0.63 window_shgc=0.62 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Low-E, H-Gain" ResStockArguments window_ufactor=0.29 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Low-E, L-Gain" ResStockArguments window_ufactor=0.26 window_shgc=0.31 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Low-E, Non-metal, Air, L-Gain" ResStockArguments window_ufactor=0.37 window_shgc=0.3 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Low-E, Non-metal, Air, M-Gain" ResStockArguments window_ufactor=0.38 window_shgc=0.44 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Metal" ResStockArguments window_ufactor=1.16 window_shgc=0.76 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Metal, Exterior Clear Storm" ResStockArguments window_ufactor=0.67 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.57 window_shgc=0.47 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Non-metal" ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Non-metal, Exterior Clear Storm" ResStockArguments window_ufactor=0.47 window_shgc=0.54 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Non-metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.36 window_shgc=0.46 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Triple, Low-E, Insulated, Argon, H-Gain" ResStockArguments window_ufactor=0.18 window_shgc=0.40 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Triple, Low-E, Insulated, Argon, L-Gain" ResStockArguments window_ufactor=0.17 window_shgc=0.27 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Triple, Low-E, Non-metal, Air, L-Gain" ResStockArguments window_ufactor=0.29 window_shgc=0.26 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows No Windows ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows Void -Infiltration Reduction 30% ResStockArguments air_leakage_percent_reduction=30 -HVAC Secondary Heating Fuel Other Fuel ResStockArguments heating_system_2_fuel=wood -HVAC Heating Efficiency "ASHP, SEER 15.05, 8.82 HSPF, HERS, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "MSHP, SEER 14.5, 8.33 HSPF, HERS, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.33 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "ASHP, SEER 20, 11 HSPF, CCHP, Max Load, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=11 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=20 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.9 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-15 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_is_ducted=true heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "MSHP, SEER 20, 11 HSPF, CCHP, Max Load, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=11 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=20 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.9 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "ASHP, SEER 15.05, 8.82 HSPF, Separate Backup, HERS, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=separate heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=0.0 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_is_ducted=true heat_pump_backup_sizing_methodology=supplemental -HVAC Secondary Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.76 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.80 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.90 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Wall/Floor Furnace, 60% AFUE" ResStockArguments heating_system_2_type=WallFurnace heating_system_2_heating_efficiency=0.60 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Wall/Floor Furnace, 68% AFUE" ResStockArguments heating_system_2_type=WallFurnace heating_system_2_heating_efficiency=0.68 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Electric Boiler, 100% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Electric Wall Furnace, 100% AFUE" ResStockArguments heating_system_2_type=WallFurnace heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 60% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 60% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 60% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 60% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=wood heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 76% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 76% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 76% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 76% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=wood heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 80% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 80% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 80% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 80% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=wood heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 92.5% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 92.5% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 92.5% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 92.5% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=wood heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "MSHP, SEER 14.5, 8.33 HSPF, Separate Backup, HERS, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.33 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=separate heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=0.0 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +Parameter Name Option Name Measure Dir Measure Arg 1 Measure Arg 2 ... +AHS Region "CBSA Atlanta-Sandy Springs-Roswell, GA" +AHS Region "CBSA Boston-Cambridge-Newton, MA-NH" +AHS Region "CBSA Chicago-Naperville-Elgin, IL-IN-WI" +AHS Region "CBSA Dallas-Fort Worth-Arlington, TX" +AHS Region "CBSA Detroit-Warren-Dearborn, MI" +AHS Region "CBSA Houston-The Woodlands-Sugar Land, TX" +AHS Region "CBSA Los Angeles-Long Beach-Anaheim, CA" +AHS Region "CBSA Miami-Fort Lauderdale-West Palm Beach, FL" +AHS Region "CBSA New York-Newark-Jersey City, NY-NJ-PA" +AHS Region "CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD" +AHS Region "CBSA Phoenix-Mesa-Scottsdale, AZ" +AHS Region "CBSA Riverside-San Bernardino-Ontario, CA" +AHS Region "CBSA San Francisco-Oakland-Hayward, CA" +AHS Region "CBSA Seattle-Tacoma-Bellevue, WA" +AHS Region "CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV" +AHS Region Non-CBSA East North Central +AHS Region Non-CBSA East South Central +AHS Region Non-CBSA Middle Atlantic +AHS Region Non-CBSA Mountain +AHS Region Non-CBSA New England +AHS Region Non-CBSA Pacific +AHS Region Non-CBSA South Atlantic +AHS Region Non-CBSA West North Central +AHS Region Non-CBSA West South Central +AIANNH Area No +AIANNH Area Yes +ASHRAE IECC Climate Zone 2004 1A ResStockArguments site_iecc_zone=1A site_type=auto +ASHRAE IECC Climate Zone 2004 2A ResStockArguments site_iecc_zone=2A site_type=auto +ASHRAE IECC Climate Zone 2004 2B ResStockArguments site_iecc_zone=2B site_type=auto +ASHRAE IECC Climate Zone 2004 3A ResStockArguments site_iecc_zone=3A site_type=auto +ASHRAE IECC Climate Zone 2004 3B ResStockArguments site_iecc_zone=3B site_type=auto +ASHRAE IECC Climate Zone 2004 3C ResStockArguments site_iecc_zone=3C site_type=auto +ASHRAE IECC Climate Zone 2004 4A ResStockArguments site_iecc_zone=4A site_type=auto +ASHRAE IECC Climate Zone 2004 4B ResStockArguments site_iecc_zone=4B site_type=auto +ASHRAE IECC Climate Zone 2004 4C ResStockArguments site_iecc_zone=4C site_type=auto +ASHRAE IECC Climate Zone 2004 5A ResStockArguments site_iecc_zone=5A site_type=auto +ASHRAE IECC Climate Zone 2004 5B ResStockArguments site_iecc_zone=5B site_type=auto +ASHRAE IECC Climate Zone 2004 6A ResStockArguments site_iecc_zone=6A site_type=auto +ASHRAE IECC Climate Zone 2004 6B ResStockArguments site_iecc_zone=6B site_type=auto +ASHRAE IECC Climate Zone 2004 7A ResStockArguments site_iecc_zone=7 site_type=auto +ASHRAE IECC Climate Zone 2004 7AK ResStockArguments site_iecc_zone=7 site_type=auto +ASHRAE IECC Climate Zone 2004 7B ResStockArguments site_iecc_zone=7 site_type=auto +ASHRAE IECC Climate Zone 2004 8AK ResStockArguments site_iecc_zone=8 site_type=auto +ASHRAE IECC Climate Zone 2004 - 2A Split "2A - FL, GA, AL, MS" +ASHRAE IECC Climate Zone 2004 - 2A Split "2A - TX, LA" +ASHRAE IECC Climate Zone 2004 - 2A Split 1A +ASHRAE IECC Climate Zone 2004 - 2A Split 2B +ASHRAE IECC Climate Zone 2004 - 2A Split 3A +ASHRAE IECC Climate Zone 2004 - 2A Split 3B +ASHRAE IECC Climate Zone 2004 - 2A Split 3C +ASHRAE IECC Climate Zone 2004 - 2A Split 4A +ASHRAE IECC Climate Zone 2004 - 2A Split 4B +ASHRAE IECC Climate Zone 2004 - 2A Split 4C +ASHRAE IECC Climate Zone 2004 - 2A Split 5A +ASHRAE IECC Climate Zone 2004 - 2A Split 5B +ASHRAE IECC Climate Zone 2004 - 2A Split 6A +ASHRAE IECC Climate Zone 2004 - 2A Split 6B +ASHRAE IECC Climate Zone 2004 - 2A Split 7A +ASHRAE IECC Climate Zone 2004 - 2A Split 7AK +ASHRAE IECC Climate Zone 2004 - 2A Split 7B +ASHRAE IECC Climate Zone 2004 - 2A Split 8AK +Area Median Income 0-30% +Area Median Income 100-120% +Area Median Income 120-150% +Area Median Income 150%+ +Area Median Income 30-60% +Area Median Income 60-80% +Area Median Income 80-100% +Area Median Income Not Available +Bathroom Spot Vent Hour Hour0 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=0 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour1 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=1 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour10 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=10 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour11 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=11 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour12 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=12 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour13 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=13 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour14 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=14 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour15 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=15 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour16 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=16 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour17 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=17 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour18 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=18 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour19 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=19 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour2 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=2 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour20 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=20 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour21 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=21 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour22 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=22 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour23 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=23 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour3 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=3 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour4 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=4 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour5 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=5 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour6 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=6 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour7 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=7 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour8 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=8 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour9 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=9 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Battery "20 kWh, 80% Round Trip Efficiency" ResStockArguments battery_present=true battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=0.8 +Battery "20 kWh, Garage" ResStockArguments battery_present=true battery_location=garage battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto +Battery "20 kWh, Outside" ResStockArguments battery_present=true battery_location=outside battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto +Battery 10 kWh ResStockArguments battery_present=true battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto +Battery None ResStockArguments battery_present=false battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto +Bedrooms 1 ResStockArguments geometry_unit_num_bedrooms=1 geometry_unit_num_bathrooms=auto +Bedrooms 2 ResStockArguments geometry_unit_num_bedrooms=2 geometry_unit_num_bathrooms=auto +Bedrooms 3 ResStockArguments geometry_unit_num_bedrooms=3 geometry_unit_num_bathrooms=auto +Bedrooms 4 ResStockArguments geometry_unit_num_bedrooms=4 geometry_unit_num_bathrooms=auto +Bedrooms 5 ResStockArguments geometry_unit_num_bedrooms=5 geometry_unit_num_bathrooms=auto +Building America Climate Zone Cold +Building America Climate Zone Hot-Dry +Building America Climate Zone Hot-Humid +Building America Climate Zone Marine +Building America Climate Zone Mixed-Dry +Building America Climate Zone Mixed-Humid +Building America Climate Zone Subarctic +Building America Climate Zone Very Cold +CEC Climate Zone 1 +CEC Climate Zone 10 +CEC Climate Zone 11 +CEC Climate Zone 12 +CEC Climate Zone 13 +CEC Climate Zone 14 +CEC Climate Zone 15 +CEC Climate Zone 16 +CEC Climate Zone 2 +CEC Climate Zone 3 +CEC Climate Zone 4 +CEC Climate Zone 5 +CEC Climate Zone 6 +CEC Climate Zone 7 +CEC Climate Zone 8 +CEC Climate Zone 9 +CEC Climate Zone None +Ceiling Fan "Premium Efficiency, 0.5F Offset" ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=140.8 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0.5 +Ceiling Fan "Standard Efficiency, 0.5F Offset" ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=70.4 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0.5 +Ceiling Fan "Standard Efficiency, No usage" ResStockArguments ceiling_fan_present=false ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=0 ceiling_fan_quantity=0 ceiling_fan_cooling_setpoint_temp_offset=0 +Ceiling Fan None ResStockArguments ceiling_fan_present=false ceiling_fan_label_energy_use=0 ceiling_fan_efficiency=0 ceiling_fan_quantity=0 ceiling_fan_cooling_setpoint_temp_offset=0 +Ceiling Fan Premium Efficiency ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=140.8 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0 +Ceiling Fan Standard Efficiency ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=70.4 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0 +Census Division East North Central +Census Division East South Central +Census Division Middle Atlantic +Census Division Mountain +Census Division New England +Census Division Pacific +Census Division South Atlantic +Census Division West North Central +Census Division West South Central +Census Division RECS East North Central +Census Division RECS East South Central +Census Division RECS Middle Atlantic +Census Division RECS Mountain North +Census Division RECS Mountain South +Census Division RECS New England +Census Division RECS Pacific +Census Division RECS South Atlantic +Census Division RECS West North Central +Census Division RECS West South Central +Census Region Midwest +Census Region Northeast +Census Region South +Census Region West +City "AK, Anchorage" ResStockArguments site_city=auto +City "AL, Auburn" ResStockArguments site_city=auto +City "AL, Birmingham" ResStockArguments site_city=auto +City "AL, Decatur" ResStockArguments site_city=auto +City "AL, Dothan" ResStockArguments site_city=auto +City "AL, Florence" ResStockArguments site_city=auto +City "AL, Gadsden" ResStockArguments site_city=auto +City "AL, Hoover" ResStockArguments site_city=auto +City "AL, Huntsville" ResStockArguments site_city=auto +City "AL, Madison" ResStockArguments site_city=auto +City "AL, Mobile" ResStockArguments site_city=auto +City "AL, Montgomery" ResStockArguments site_city=auto +City "AL, Phenix City" ResStockArguments site_city=auto +City "AL, Tuscaloosa" ResStockArguments site_city=auto +City "AR, Bentonville" ResStockArguments site_city=auto +City "AR, Conway" ResStockArguments site_city=auto +City "AR, Fayetteville" ResStockArguments site_city=auto +City "AR, Fort Smith" ResStockArguments site_city=auto +City "AR, Hot Springs" ResStockArguments site_city=auto +City "AR, Jonesboro" ResStockArguments site_city=auto +City "AR, Little Rock" ResStockArguments site_city=auto +City "AR, North Little Rock" ResStockArguments site_city=auto +City "AR, Pine Bluff" ResStockArguments site_city=auto +City "AR, Rogers" ResStockArguments site_city=auto +City "AR, Springdale" ResStockArguments site_city=auto +City "AZ, Apache Junction" ResStockArguments site_city=auto +City "AZ, Avondale" ResStockArguments site_city=auto +City "AZ, Buckeye" ResStockArguments site_city=auto +City "AZ, Bullhead City" ResStockArguments site_city=auto +City "AZ, Casa Grande" ResStockArguments site_city=auto +City "AZ, Casas Adobes" ResStockArguments site_city=auto +City "AZ, Catalina Foothills" ResStockArguments site_city=auto +City "AZ, Chandler" ResStockArguments site_city=auto +City "AZ, Flagstaff" ResStockArguments site_city=auto +City "AZ, Fortuna Foothills" ResStockArguments site_city=auto +City "AZ, Gilbert" ResStockArguments site_city=auto +City "AZ, Glendale" ResStockArguments site_city=auto +City "AZ, Goodyear" ResStockArguments site_city=auto +City "AZ, Green Valley" ResStockArguments site_city=auto +City "AZ, Lake Havasu City" ResStockArguments site_city=auto +City "AZ, Marana" ResStockArguments site_city=auto +City "AZ, Maricopa" ResStockArguments site_city=auto +City "AZ, Mesa" ResStockArguments site_city=auto +City "AZ, Oro Valley" ResStockArguments site_city=auto +City "AZ, Peoria" ResStockArguments site_city=auto +City "AZ, Phoenix" ResStockArguments site_city=auto +City "AZ, Prescott Valley" ResStockArguments site_city=auto +City "AZ, Prescott" ResStockArguments site_city=auto +City "AZ, San Tan Valley" ResStockArguments site_city=auto +City "AZ, Scottsdale" ResStockArguments site_city=auto +City "AZ, Sierra Vista" ResStockArguments site_city=auto +City "AZ, Sun City West" ResStockArguments site_city=auto +City "AZ, Sun City" ResStockArguments site_city=auto +City "AZ, Surprise" ResStockArguments site_city=auto +City "AZ, Tempe" ResStockArguments site_city=auto +City "AZ, Tucson" ResStockArguments site_city=auto +City "AZ, Yuma" ResStockArguments site_city=auto +City "CA, Alameda" ResStockArguments site_city=auto +City "CA, Alhambra" ResStockArguments site_city=auto +City "CA, Aliso Viejo" ResStockArguments site_city=auto +City "CA, Altadena" ResStockArguments site_city=auto +City "CA, Anaheim" ResStockArguments site_city=auto +City "CA, Antioch" ResStockArguments site_city=auto +City "CA, Apple Valley" ResStockArguments site_city=auto +City "CA, Arcadia" ResStockArguments site_city=auto +City "CA, Arden-Arcade" ResStockArguments site_city=auto +City "CA, Bakersfield" ResStockArguments site_city=auto +City "CA, Baldwin Park" ResStockArguments site_city=auto +City "CA, Bellflower" ResStockArguments site_city=auto +City "CA, Berkeley" ResStockArguments site_city=auto +City "CA, Beverly Hills" ResStockArguments site_city=auto +City "CA, Brea" ResStockArguments site_city=auto +City "CA, Brentwood" ResStockArguments site_city=auto +City "CA, Buena Park" ResStockArguments site_city=auto +City "CA, Burbank" ResStockArguments site_city=auto +City "CA, Camarillo" ResStockArguments site_city=auto +City "CA, Campbell" ResStockArguments site_city=auto +City "CA, Carlsbad" ResStockArguments site_city=auto +City "CA, Carmichael" ResStockArguments site_city=auto +City "CA, Carson" ResStockArguments site_city=auto +City "CA, Castro Valley" ResStockArguments site_city=auto +City "CA, Cathedral City" ResStockArguments site_city=auto +City "CA, Cerritos" ResStockArguments site_city=auto +City "CA, Chico" ResStockArguments site_city=auto +City "CA, Chino Hills" ResStockArguments site_city=auto +City "CA, Chino" ResStockArguments site_city=auto +City "CA, Chula Vista" ResStockArguments site_city=auto +City "CA, Citrus Heights" ResStockArguments site_city=auto +City "CA, Clovis" ResStockArguments site_city=auto +City "CA, Colton" ResStockArguments site_city=auto +City "CA, Compton" ResStockArguments site_city=auto +City "CA, Concord" ResStockArguments site_city=auto +City "CA, Corona" ResStockArguments site_city=auto +City "CA, Costa Mesa" ResStockArguments site_city=auto +City "CA, Covina" ResStockArguments site_city=auto +City "CA, Culver City" ResStockArguments site_city=auto +City "CA, Cupertino" ResStockArguments site_city=auto +City "CA, Cypress" ResStockArguments site_city=auto +City "CA, Daly City" ResStockArguments site_city=auto +City "CA, Dana Point" ResStockArguments site_city=auto +City "CA, Danville" ResStockArguments site_city=auto +City "CA, Davis" ResStockArguments site_city=auto +City "CA, Diamond Bar" ResStockArguments site_city=auto +City "CA, Downey" ResStockArguments site_city=auto +City "CA, Dublin" ResStockArguments site_city=auto +City "CA, East Los Angeles" ResStockArguments site_city=auto +City "CA, El Cajon" ResStockArguments site_city=auto +City "CA, El Dorado Hills" ResStockArguments site_city=auto +City "CA, El Monte" ResStockArguments site_city=auto +City "CA, Elk Grove" ResStockArguments site_city=auto +City "CA, Encinitas" ResStockArguments site_city=auto +City "CA, Escondido" ResStockArguments site_city=auto +City "CA, Fairfield" ResStockArguments site_city=auto +City "CA, Florence-Graham" ResStockArguments site_city=auto +City "CA, Florin" ResStockArguments site_city=auto +City "CA, Folsom" ResStockArguments site_city=auto +City "CA, Fontana" ResStockArguments site_city=auto +City "CA, Fountain Valley" ResStockArguments site_city=auto +City "CA, Fremont" ResStockArguments site_city=auto +City "CA, Fresno" ResStockArguments site_city=auto +City "CA, Fullerton" ResStockArguments site_city=auto +City "CA, Garden Grove" ResStockArguments site_city=auto +City "CA, Gardena" ResStockArguments site_city=auto +City "CA, Gilroy" ResStockArguments site_city=auto +City "CA, Glendale" ResStockArguments site_city=auto +City "CA, Glendora" ResStockArguments site_city=auto +City "CA, Hacienda Heights" ResStockArguments site_city=auto +City "CA, Hanford" ResStockArguments site_city=auto +City "CA, Hawthorne" ResStockArguments site_city=auto +City "CA, Hayward" ResStockArguments site_city=auto +City "CA, Hemet" ResStockArguments site_city=auto +City "CA, Hesperia" ResStockArguments site_city=auto +City "CA, Highland" ResStockArguments site_city=auto +City "CA, Huntington Beach" ResStockArguments site_city=auto +City "CA, Huntington Park" ResStockArguments site_city=auto +City "CA, Indio" ResStockArguments site_city=auto +City "CA, Inglewood" ResStockArguments site_city=auto +City "CA, Irvine" ResStockArguments site_city=auto +City "CA, La Habra" ResStockArguments site_city=auto +City "CA, La Mesa" ResStockArguments site_city=auto +City "CA, La Quinta" ResStockArguments site_city=auto +City "CA, Laguna Niguel" ResStockArguments site_city=auto +City "CA, Lake Elsinore" ResStockArguments site_city=auto +City "CA, Lake Forest" ResStockArguments site_city=auto +City "CA, Lakewood" ResStockArguments site_city=auto +City "CA, Lancaster" ResStockArguments site_city=auto +City "CA, Lincoln" ResStockArguments site_city=auto +City "CA, Livermore" ResStockArguments site_city=auto +City "CA, Lodi" ResStockArguments site_city=auto +City "CA, Long Beach" ResStockArguments site_city=auto +City "CA, Los Angeles" ResStockArguments site_city=auto +City "CA, Lynwood" ResStockArguments site_city=auto +City "CA, Madera" ResStockArguments site_city=auto +City "CA, Manhattan Beach" ResStockArguments site_city=auto +City "CA, Manteca" ResStockArguments site_city=auto +City "CA, Martinez" ResStockArguments site_city=auto +City "CA, Menifee" ResStockArguments site_city=auto +City "CA, Merced" ResStockArguments site_city=auto +City "CA, Milpitas" ResStockArguments site_city=auto +City "CA, Mission Viejo" ResStockArguments site_city=auto +City "CA, Modesto" ResStockArguments site_city=auto +City "CA, Montebello" ResStockArguments site_city=auto +City "CA, Monterey Park" ResStockArguments site_city=auto +City "CA, Moreno Valley" ResStockArguments site_city=auto +City "CA, Mountain View" ResStockArguments site_city=auto +City "CA, Murrieta" ResStockArguments site_city=auto +City "CA, Napa" ResStockArguments site_city=auto +City "CA, National City" ResStockArguments site_city=auto +City "CA, Newport Beach" ResStockArguments site_city=auto +City "CA, North Highlands" ResStockArguments site_city=auto +City "CA, Norwalk" ResStockArguments site_city=auto +City "CA, Novato" ResStockArguments site_city=auto +City "CA, Oakland" ResStockArguments site_city=auto +City "CA, Oceanside" ResStockArguments site_city=auto +City "CA, Ontario" ResStockArguments site_city=auto +City "CA, Orange" ResStockArguments site_city=auto +City "CA, Oxnard" ResStockArguments site_city=auto +City "CA, Palm Desert" ResStockArguments site_city=auto +City "CA, Palm Springs" ResStockArguments site_city=auto +City "CA, Palmdale" ResStockArguments site_city=auto +City "CA, Palo Alto" ResStockArguments site_city=auto +City "CA, Pasadena" ResStockArguments site_city=auto +City "CA, Perris" ResStockArguments site_city=auto +City "CA, Petaluma" ResStockArguments site_city=auto +City "CA, Pico Rivera" ResStockArguments site_city=auto +City "CA, Pittsburg" ResStockArguments site_city=auto +City "CA, Placentia" ResStockArguments site_city=auto +City "CA, Pleasanton" ResStockArguments site_city=auto +City "CA, Pomona" ResStockArguments site_city=auto +City "CA, Porterville" ResStockArguments site_city=auto +City "CA, Poway" ResStockArguments site_city=auto +City "CA, Rancho Cordova" ResStockArguments site_city=auto +City "CA, Rancho Cucamonga" ResStockArguments site_city=auto +City "CA, Rancho Palos Verdes" ResStockArguments site_city=auto +City "CA, Rancho Santa Margarita" ResStockArguments site_city=auto +City "CA, Redding" ResStockArguments site_city=auto +City "CA, Redlands" ResStockArguments site_city=auto +City "CA, Redondo Beach" ResStockArguments site_city=auto +City "CA, Redwood City" ResStockArguments site_city=auto +City "CA, Rialto" ResStockArguments site_city=auto +City "CA, Richmond" ResStockArguments site_city=auto +City "CA, Riverside" ResStockArguments site_city=auto +City "CA, Rocklin" ResStockArguments site_city=auto +City "CA, Rohnert Park" ResStockArguments site_city=auto +City "CA, Rosemead" ResStockArguments site_city=auto +City "CA, Roseville" ResStockArguments site_city=auto +City "CA, Rowland Heights" ResStockArguments site_city=auto +City "CA, Sacramento" ResStockArguments site_city=auto +City "CA, Salinas" ResStockArguments site_city=auto +City "CA, San Bernardino" ResStockArguments site_city=auto +City "CA, San Bruno" ResStockArguments site_city=auto +City "CA, San Buenaventura Ventura" ResStockArguments site_city=auto +City "CA, San Clemente" ResStockArguments site_city=auto +City "CA, San Diego" ResStockArguments site_city=auto +City "CA, San Francisco" ResStockArguments site_city=auto +City "CA, San Jose" ResStockArguments site_city=auto +City "CA, San Leandro" ResStockArguments site_city=auto +City "CA, San Luis Obispo" ResStockArguments site_city=auto +City "CA, San Marcos" ResStockArguments site_city=auto +City "CA, San Mateo" ResStockArguments site_city=auto +City "CA, San Rafael" ResStockArguments site_city=auto +City "CA, San Ramon" ResStockArguments site_city=auto +City "CA, Santa Ana" ResStockArguments site_city=auto +City "CA, Santa Barbara" ResStockArguments site_city=auto +City "CA, Santa Clara" ResStockArguments site_city=auto +City "CA, Santa Clarita" ResStockArguments site_city=auto +City "CA, Santa Cruz" ResStockArguments site_city=auto +City "CA, Santa Maria" ResStockArguments site_city=auto +City "CA, Santa Monica" ResStockArguments site_city=auto +City "CA, Santa Rosa" ResStockArguments site_city=auto +City "CA, Santee" ResStockArguments site_city=auto +City "CA, Simi Valley" ResStockArguments site_city=auto +City "CA, South Gate" ResStockArguments site_city=auto +City "CA, South Lake Tahoe" ResStockArguments site_city=auto +City "CA, South San Francisco" ResStockArguments site_city=auto +City "CA, South Whittier" ResStockArguments site_city=auto +City "CA, Stockton" ResStockArguments site_city=auto +City "CA, Sunnyvale" ResStockArguments site_city=auto +City "CA, Temecula" ResStockArguments site_city=auto +City "CA, Thousand Oaks" ResStockArguments site_city=auto +City "CA, Torrance" ResStockArguments site_city=auto +City "CA, Tracy" ResStockArguments site_city=auto +City "CA, Tulare" ResStockArguments site_city=auto +City "CA, Turlock" ResStockArguments site_city=auto +City "CA, Tustin" ResStockArguments site_city=auto +City "CA, Union City" ResStockArguments site_city=auto +City "CA, Upland" ResStockArguments site_city=auto +City "CA, Vacaville" ResStockArguments site_city=auto +City "CA, Vallejo" ResStockArguments site_city=auto +City "CA, Victorville" ResStockArguments site_city=auto +City "CA, Visalia" ResStockArguments site_city=auto +City "CA, Vista" ResStockArguments site_city=auto +City "CA, Walnut Creek" ResStockArguments site_city=auto +City "CA, West Covina" ResStockArguments site_city=auto +City "CA, West Hollywood" ResStockArguments site_city=auto +City "CA, West Sacramento" ResStockArguments site_city=auto +City "CA, Westminster" ResStockArguments site_city=auto +City "CA, Whittier" ResStockArguments site_city=auto +City "CA, Woodland" ResStockArguments site_city=auto +City "CA, Yorba Linda" ResStockArguments site_city=auto +City "CA, Yuba City" ResStockArguments site_city=auto +City "CA, Yucaipa" ResStockArguments site_city=auto +City "CO, Arvada" ResStockArguments site_city=auto +City "CO, Aurora" ResStockArguments site_city=auto +City "CO, Boulder" ResStockArguments site_city=auto +City "CO, Broomfield" ResStockArguments site_city=auto +City "CO, Castle Rock" ResStockArguments site_city=auto +City "CO, Centennial" ResStockArguments site_city=auto +City "CO, Colorado Springs" ResStockArguments site_city=auto +City "CO, Commerce City" ResStockArguments site_city=auto +City "CO, Denver" ResStockArguments site_city=auto +City "CO, Englewood" ResStockArguments site_city=auto +City "CO, Fort Collins" ResStockArguments site_city=auto +City "CO, Grand Junction" ResStockArguments site_city=auto +City "CO, Greeley" ResStockArguments site_city=auto +City "CO, Highlands Ranch" ResStockArguments site_city=auto +City "CO, Lakewood" ResStockArguments site_city=auto +City "CO, Littleton" ResStockArguments site_city=auto +City "CO, Longmont" ResStockArguments site_city=auto +City "CO, Loveland" ResStockArguments site_city=auto +City "CO, Parker" ResStockArguments site_city=auto +City "CO, Pueblo" ResStockArguments site_city=auto +City "CO, Thornton" ResStockArguments site_city=auto +City "CO, Westminster" ResStockArguments site_city=auto +City "CT, Bridgeport" ResStockArguments site_city=auto +City "CT, Bristol" ResStockArguments site_city=auto +City "CT, Danbury" ResStockArguments site_city=auto +City "CT, East Hartford" ResStockArguments site_city=auto +City "CT, Hartford" ResStockArguments site_city=auto +City "CT, Meriden" ResStockArguments site_city=auto +City "CT, Middletown" ResStockArguments site_city=auto +City "CT, Milford City Balance" ResStockArguments site_city=auto +City "CT, New Britain" ResStockArguments site_city=auto +City "CT, New Haven" ResStockArguments site_city=auto +City "CT, Norwalk" ResStockArguments site_city=auto +City "CT, Norwich" ResStockArguments site_city=auto +City "CT, Shelton" ResStockArguments site_city=auto +City "CT, Stamford" ResStockArguments site_city=auto +City "CT, Stratford" ResStockArguments site_city=auto +City "CT, Torrington" ResStockArguments site_city=auto +City "CT, Waterbury" ResStockArguments site_city=auto +City "CT, West Hartford" ResStockArguments site_city=auto +City "CT, West Haven" ResStockArguments site_city=auto +City "DC, Washington" ResStockArguments site_city=auto +City "DE, Dover" ResStockArguments site_city=auto +City "DE, Wilmington" ResStockArguments site_city=auto +City "FL, Alafaya" ResStockArguments site_city=auto +City "FL, Altamonte Springs" ResStockArguments site_city=auto +City "FL, Apopka" ResStockArguments site_city=auto +City "FL, Aventura" ResStockArguments site_city=auto +City "FL, Boca Raton" ResStockArguments site_city=auto +City "FL, Bonita Springs" ResStockArguments site_city=auto +City "FL, Boynton Beach" ResStockArguments site_city=auto +City "FL, Bradenton" ResStockArguments site_city=auto +City "FL, Brandon" ResStockArguments site_city=auto +City "FL, Cape Coral" ResStockArguments site_city=auto +City "FL, Carrollwood" ResStockArguments site_city=auto +City "FL, Clearwater" ResStockArguments site_city=auto +City "FL, Coconut Creek" ResStockArguments site_city=auto +City "FL, Coral Gables" ResStockArguments site_city=auto +City "FL, Coral Springs" ResStockArguments site_city=auto +City "FL, Country Club" ResStockArguments site_city=auto +City "FL, Dania Beach" ResStockArguments site_city=auto +City "FL, Davie" ResStockArguments site_city=auto +City "FL, Daytona Beach" ResStockArguments site_city=auto +City "FL, Deerfield Beach" ResStockArguments site_city=auto +City "FL, Delray Beach" ResStockArguments site_city=auto +City "FL, Deltona" ResStockArguments site_city=auto +City "FL, Doral" ResStockArguments site_city=auto +City "FL, Dunedin" ResStockArguments site_city=auto +City "FL, East Lake" ResStockArguments site_city=auto +City "FL, Estero" ResStockArguments site_city=auto +City "FL, Fort Lauderdale" ResStockArguments site_city=auto +City "FL, Fort Myers" ResStockArguments site_city=auto +City "FL, Fort Pierce" ResStockArguments site_city=auto +City "FL, Fountainebleau" ResStockArguments site_city=auto +City "FL, Four Corners" ResStockArguments site_city=auto +City "FL, Gainesville" ResStockArguments site_city=auto +City "FL, Greenacres" ResStockArguments site_city=auto +City "FL, Hallandale Beach" ResStockArguments site_city=auto +City "FL, Hialeah" ResStockArguments site_city=auto +City "FL, Hollywood" ResStockArguments site_city=auto +City "FL, Homestead" ResStockArguments site_city=auto +City "FL, Jacksonville" ResStockArguments site_city=auto +City "FL, Jupiter" ResStockArguments site_city=auto +City "FL, Kendale Lakes" ResStockArguments site_city=auto +City "FL, Kendall" ResStockArguments site_city=auto +City "FL, Kissimmee" ResStockArguments site_city=auto +City "FL, Lake Worth" ResStockArguments site_city=auto +City "FL, Lakeland" ResStockArguments site_city=auto +City "FL, Largo" ResStockArguments site_city=auto +City "FL, Lauderhill" ResStockArguments site_city=auto +City "FL, Lehigh Acres" ResStockArguments site_city=auto +City "FL, Marco Island" ResStockArguments site_city=auto +City "FL, Margate" ResStockArguments site_city=auto +City "FL, Melbourne" ResStockArguments site_city=auto +City "FL, Merritt Island" ResStockArguments site_city=auto +City "FL, Miami Beach" ResStockArguments site_city=auto +City "FL, Miami Gardens" ResStockArguments site_city=auto +City "FL, Miami" ResStockArguments site_city=auto +City "FL, Miramar" ResStockArguments site_city=auto +City "FL, Naples" ResStockArguments site_city=auto +City "FL, New Smyrna Beach" ResStockArguments site_city=auto +City "FL, North Fort Myers" ResStockArguments site_city=auto +City "FL, North Miami Beach" ResStockArguments site_city=auto +City "FL, North Miami" ResStockArguments site_city=auto +City "FL, North Port" ResStockArguments site_city=auto +City "FL, Oakland Park" ResStockArguments site_city=auto +City "FL, Ocala" ResStockArguments site_city=auto +City "FL, Orlando" ResStockArguments site_city=auto +City "FL, Ormond Beach" ResStockArguments site_city=auto +City "FL, Palm Bay" ResStockArguments site_city=auto +City "FL, Palm Beach Gardens" ResStockArguments site_city=auto +City "FL, Palm Coast" ResStockArguments site_city=auto +City "FL, Palm Harbor" ResStockArguments site_city=auto +City "FL, Panama City Beach" ResStockArguments site_city=auto +City "FL, Panama City" ResStockArguments site_city=auto +City "FL, Pembroke Pines" ResStockArguments site_city=auto +City "FL, Pensacola" ResStockArguments site_city=auto +City "FL, Pine Hills" ResStockArguments site_city=auto +City "FL, Pinellas Park" ResStockArguments site_city=auto +City "FL, Plantation" ResStockArguments site_city=auto +City "FL, Poinciana" ResStockArguments site_city=auto +City "FL, Pompano Beach" ResStockArguments site_city=auto +City "FL, Port Charlotte" ResStockArguments site_city=auto +City "FL, Port Orange" ResStockArguments site_city=auto +City "FL, Port St Lucie" ResStockArguments site_city=auto +City "FL, Riverview" ResStockArguments site_city=auto +City "FL, Riviera Beach" ResStockArguments site_city=auto +City "FL, Sanford" ResStockArguments site_city=auto +City "FL, Sarasota" ResStockArguments site_city=auto +City "FL, Spring Hill" ResStockArguments site_city=auto +City "FL, St Cloud" ResStockArguments site_city=auto +City "FL, St Petersburg" ResStockArguments site_city=auto +City "FL, Sun City Center" ResStockArguments site_city=auto +City "FL, Sunny Isles Beach" ResStockArguments site_city=auto +City "FL, Sunrise" ResStockArguments site_city=auto +City "FL, Tallahassee" ResStockArguments site_city=auto +City "FL, Tamarac" ResStockArguments site_city=auto +City "FL, Tamiami" ResStockArguments site_city=auto +City "FL, Tampa" ResStockArguments site_city=auto +City "FL, The Hammocks" ResStockArguments site_city=auto +City "FL, The Villages" ResStockArguments site_city=auto +City "FL, Titusville" ResStockArguments site_city=auto +City "FL, Town N Country" ResStockArguments site_city=auto +City "FL, University" ResStockArguments site_city=auto +City "FL, Venice" ResStockArguments site_city=auto +City "FL, Wellington" ResStockArguments site_city=auto +City "FL, Wesley Chapel" ResStockArguments site_city=auto +City "FL, West Palm Beach" ResStockArguments site_city=auto +City "FL, Weston" ResStockArguments site_city=auto +City "FL, Winter Haven" ResStockArguments site_city=auto +City "GA, Albany" ResStockArguments site_city=auto +City "GA, Alpharetta" ResStockArguments site_city=auto +City "GA, Athens-Clarke County Unified Government Balance" ResStockArguments site_city=auto +City "GA, Atlanta" ResStockArguments site_city=auto +City "GA, Augusta-Richmond County Consolidated Government Balance" ResStockArguments site_city=auto +City "GA, Columbus" ResStockArguments site_city=auto +City "GA, Dunwoody" ResStockArguments site_city=auto +City "GA, East Point" ResStockArguments site_city=auto +City "GA, Hinesville" ResStockArguments site_city=auto +City "GA, Johns Creek" ResStockArguments site_city=auto +City "GA, Mableton" ResStockArguments site_city=auto +City "GA, Macon" ResStockArguments site_city=auto +City "GA, Marietta" ResStockArguments site_city=auto +City "GA, Newnan" ResStockArguments site_city=auto +City "GA, North Atlanta" ResStockArguments site_city=auto +City "GA, Rome" ResStockArguments site_city=auto +City "GA, Roswell" ResStockArguments site_city=auto +City "GA, Sandy Springs" ResStockArguments site_city=auto +City "GA, Savannah" ResStockArguments site_city=auto +City "GA, Smyrna" ResStockArguments site_city=auto +City "GA, Valdosta" ResStockArguments site_city=auto +City "GA, Warner Robins" ResStockArguments site_city=auto +City "HI, East Honolulu" ResStockArguments site_city=auto +City "HI, Hilo" ResStockArguments site_city=auto +City "HI, Kailua" ResStockArguments site_city=auto +City "HI, Urban Honolulu" ResStockArguments site_city=auto +City "IA, Ames" ResStockArguments site_city=auto +City "IA, Ankeny" ResStockArguments site_city=auto +City "IA, Cedar Falls" ResStockArguments site_city=auto +City "IA, Cedar Rapids" ResStockArguments site_city=auto +City "IA, Council Bluffs" ResStockArguments site_city=auto +City "IA, Davenport" ResStockArguments site_city=auto +City "IA, Des Moines" ResStockArguments site_city=auto +City "IA, Dubuque" ResStockArguments site_city=auto +City "IA, Iowa City" ResStockArguments site_city=auto +City "IA, Marion" ResStockArguments site_city=auto +City "IA, Sioux City" ResStockArguments site_city=auto +City "IA, Urbandale" ResStockArguments site_city=auto +City "IA, Waterloo" ResStockArguments site_city=auto +City "IA, West Des Moines" ResStockArguments site_city=auto +City "ID, Boise City" ResStockArguments site_city=auto +City "ID, Caldwell" ResStockArguments site_city=auto +City "ID, Coeur Dalene" ResStockArguments site_city=auto +City "ID, Idaho Falls" ResStockArguments site_city=auto +City "ID, Meridian" ResStockArguments site_city=auto +City "ID, Nampa" ResStockArguments site_city=auto +City "ID, Pocatello" ResStockArguments site_city=auto +City "ID, Twin Falls" ResStockArguments site_city=auto +City "IL, Arlington Heights" ResStockArguments site_city=auto +City "IL, Aurora" ResStockArguments site_city=auto +City "IL, Belleville" ResStockArguments site_city=auto +City "IL, Berwyn" ResStockArguments site_city=auto +City "IL, Bloomington" ResStockArguments site_city=auto +City "IL, Bolingbrook" ResStockArguments site_city=auto +City "IL, Buffalo Grove" ResStockArguments site_city=auto +City "IL, Calumet City" ResStockArguments site_city=auto +City "IL, Carol Stream" ResStockArguments site_city=auto +City "IL, Champaign" ResStockArguments site_city=auto +City "IL, Chicago" ResStockArguments site_city=auto +City "IL, Cicero" ResStockArguments site_city=auto +City "IL, Crystal Lake" ResStockArguments site_city=auto +City "IL, Decatur" ResStockArguments site_city=auto +City "IL, Dekalb" ResStockArguments site_city=auto +City "IL, Des Plaines" ResStockArguments site_city=auto +City "IL, Downers Grove" ResStockArguments site_city=auto +City "IL, Elgin" ResStockArguments site_city=auto +City "IL, Elmhurst" ResStockArguments site_city=auto +City "IL, Evanston" ResStockArguments site_city=auto +City "IL, Glenview" ResStockArguments site_city=auto +City "IL, Hoffman Estates" ResStockArguments site_city=auto +City "IL, Joliet" ResStockArguments site_city=auto +City "IL, Lombard" ResStockArguments site_city=auto +City "IL, Moline" ResStockArguments site_city=auto +City "IL, Mount Prospect" ResStockArguments site_city=auto +City "IL, Naperville" ResStockArguments site_city=auto +City "IL, Normal" ResStockArguments site_city=auto +City "IL, Oak Lawn" ResStockArguments site_city=auto +City "IL, Oak Park" ResStockArguments site_city=auto +City "IL, Orland Park" ResStockArguments site_city=auto +City "IL, Palatine" ResStockArguments site_city=auto +City "IL, Peoria" ResStockArguments site_city=auto +City "IL, Quincy" ResStockArguments site_city=auto +City "IL, Rock Island" ResStockArguments site_city=auto +City "IL, Rockford" ResStockArguments site_city=auto +City "IL, Schaumburg" ResStockArguments site_city=auto +City "IL, Skokie" ResStockArguments site_city=auto +City "IL, Springfield" ResStockArguments site_city=auto +City "IL, Tinley Park" ResStockArguments site_city=auto +City "IL, Urbana" ResStockArguments site_city=auto +City "IL, Waukegan" ResStockArguments site_city=auto +City "IL, Wheaton" ResStockArguments site_city=auto +City "IL, Wheeling" ResStockArguments site_city=auto +City "IN, Anderson" ResStockArguments site_city=auto +City "IN, Bloomington" ResStockArguments site_city=auto +City "IN, Carmel" ResStockArguments site_city=auto +City "IN, Columbus" ResStockArguments site_city=auto +City "IN, Elkhart" ResStockArguments site_city=auto +City "IN, Evansville" ResStockArguments site_city=auto +City "IN, Fishers" ResStockArguments site_city=auto +City "IN, Fort Wayne" ResStockArguments site_city=auto +City "IN, Gary" ResStockArguments site_city=auto +City "IN, Greenwood" ResStockArguments site_city=auto +City "IN, Hammond" ResStockArguments site_city=auto +City "IN, Indianapolis City Balance" ResStockArguments site_city=auto +City "IN, Jeffersonville" ResStockArguments site_city=auto +City "IN, Kokomo" ResStockArguments site_city=auto +City "IN, Lafayette" ResStockArguments site_city=auto +City "IN, Lawrence" ResStockArguments site_city=auto +City "IN, Mishawaka" ResStockArguments site_city=auto +City "IN, Muncie" ResStockArguments site_city=auto +City "IN, New Albany" ResStockArguments site_city=auto +City "IN, Noblesville" ResStockArguments site_city=auto +City "IN, Portage" ResStockArguments site_city=auto +City "IN, Richmond" ResStockArguments site_city=auto +City "IN, South Bend" ResStockArguments site_city=auto +City "IN, Terre Haute" ResStockArguments site_city=auto +City "KS, Hutchinson" ResStockArguments site_city=auto +City "KS, Kansas City" ResStockArguments site_city=auto +City "KS, Lawrence" ResStockArguments site_city=auto +City "KS, Lenexa" ResStockArguments site_city=auto +City "KS, Manhattan" ResStockArguments site_city=auto +City "KS, Olathe" ResStockArguments site_city=auto +City "KS, Overland Park" ResStockArguments site_city=auto +City "KS, Salina" ResStockArguments site_city=auto +City "KS, Shawnee" ResStockArguments site_city=auto +City "KS, Topeka" ResStockArguments site_city=auto +City "KS, Wichita" ResStockArguments site_city=auto +City "KY, Bowling Green" ResStockArguments site_city=auto +City "KY, Covington" ResStockArguments site_city=auto +City "KY, Lexington-Fayette" ResStockArguments site_city=auto +City "KY, Louisville Jefferson County Metro Government Balance" ResStockArguments site_city=auto +City "KY, Owensboro" ResStockArguments site_city=auto +City "LA, Alexandria" ResStockArguments site_city=auto +City "LA, Baton Rouge" ResStockArguments site_city=auto +City "LA, Bossier City" ResStockArguments site_city=auto +City "LA, Kenner" ResStockArguments site_city=auto +City "LA, Lafayette" ResStockArguments site_city=auto +City "LA, Lake Charles" ResStockArguments site_city=auto +City "LA, Metairie" ResStockArguments site_city=auto +City "LA, Monroe" ResStockArguments site_city=auto +City "LA, New Orleans" ResStockArguments site_city=auto +City "LA, Shreveport" ResStockArguments site_city=auto +City "MA, Arlington" ResStockArguments site_city=auto +City "MA, Attleboro" ResStockArguments site_city=auto +City "MA, Barnstable Town" ResStockArguments site_city=auto +City "MA, Beverly" ResStockArguments site_city=auto +City "MA, Boston" ResStockArguments site_city=auto +City "MA, Brockton" ResStockArguments site_city=auto +City "MA, Brookline" ResStockArguments site_city=auto +City "MA, Cambridge" ResStockArguments site_city=auto +City "MA, Chicopee" ResStockArguments site_city=auto +City "MA, Everett" ResStockArguments site_city=auto +City "MA, Fall River" ResStockArguments site_city=auto +City "MA, Fitchburg" ResStockArguments site_city=auto +City "MA, Framingham" ResStockArguments site_city=auto +City "MA, Haverhill" ResStockArguments site_city=auto +City "MA, Holyoke" ResStockArguments site_city=auto +City "MA, Lawrence" ResStockArguments site_city=auto +City "MA, Leominster" ResStockArguments site_city=auto +City "MA, Lowell" ResStockArguments site_city=auto +City "MA, Lynn" ResStockArguments site_city=auto +City "MA, Malden" ResStockArguments site_city=auto +City "MA, Marlborough" ResStockArguments site_city=auto +City "MA, Medford" ResStockArguments site_city=auto +City "MA, Methuen Town" ResStockArguments site_city=auto +City "MA, New Bedford" ResStockArguments site_city=auto +City "MA, Newton" ResStockArguments site_city=auto +City "MA, Peabody" ResStockArguments site_city=auto +City "MA, Pittsfield" ResStockArguments site_city=auto +City "MA, Quincy" ResStockArguments site_city=auto +City "MA, Revere" ResStockArguments site_city=auto +City "MA, Salem" ResStockArguments site_city=auto +City "MA, Somerville" ResStockArguments site_city=auto +City "MA, Springfield" ResStockArguments site_city=auto +City "MA, Taunton" ResStockArguments site_city=auto +City "MA, Waltham" ResStockArguments site_city=auto +City "MA, Watertown Town" ResStockArguments site_city=auto +City "MA, Westfield" ResStockArguments site_city=auto +City "MA, Weymouth Town" ResStockArguments site_city=auto +City "MA, Woburn" ResStockArguments site_city=auto +City "MA, Worcester" ResStockArguments site_city=auto +City "MD, Annapolis" ResStockArguments site_city=auto +City "MD, Aspen Hill" ResStockArguments site_city=auto +City "MD, Baltimore" ResStockArguments site_city=auto +City "MD, Bel Air South" ResStockArguments site_city=auto +City "MD, Bethesda" ResStockArguments site_city=auto +City "MD, Bowie" ResStockArguments site_city=auto +City "MD, Catonsville" ResStockArguments site_city=auto +City "MD, Columbia" ResStockArguments site_city=auto +City "MD, Dundalk" ResStockArguments site_city=auto +City "MD, Ellicott City" ResStockArguments site_city=auto +City "MD, Essex" ResStockArguments site_city=auto +City "MD, Frederick" ResStockArguments site_city=auto +City "MD, Gaithersburg" ResStockArguments site_city=auto +City "MD, Germantown" ResStockArguments site_city=auto +City "MD, Glen Burnie" ResStockArguments site_city=auto +City "MD, Hagerstown" ResStockArguments site_city=auto +City "MD, North Bethesda" ResStockArguments site_city=auto +City "MD, Ocean City" ResStockArguments site_city=auto +City "MD, Odenton" ResStockArguments site_city=auto +City "MD, Potomac" ResStockArguments site_city=auto +City "MD, Rockville" ResStockArguments site_city=auto +City "MD, Severn" ResStockArguments site_city=auto +City "MD, Silver Spring" ResStockArguments site_city=auto +City "MD, Towson" ResStockArguments site_city=auto +City "MD, Waldorf" ResStockArguments site_city=auto +City "MD, Wheaton" ResStockArguments site_city=auto +City "MD, Woodlawn" ResStockArguments site_city=auto +City "ME, Bangor" ResStockArguments site_city=auto +City "ME, Lewiston" ResStockArguments site_city=auto +City "ME, Portland" ResStockArguments site_city=auto +City "MI, Ann Arbor" ResStockArguments site_city=auto +City "MI, Battle Creek" ResStockArguments site_city=auto +City "MI, Bay City" ResStockArguments site_city=auto +City "MI, Dearborn Heights" ResStockArguments site_city=auto +City "MI, Dearborn" ResStockArguments site_city=auto +City "MI, Detroit" ResStockArguments site_city=auto +City "MI, Farmington Hills" ResStockArguments site_city=auto +City "MI, Flint" ResStockArguments site_city=auto +City "MI, Grand Rapids" ResStockArguments site_city=auto +City "MI, Jackson" ResStockArguments site_city=auto +City "MI, Kalamazoo" ResStockArguments site_city=auto +City "MI, Kentwood" ResStockArguments site_city=auto +City "MI, Lansing" ResStockArguments site_city=auto +City "MI, Lincoln Park" ResStockArguments site_city=auto +City "MI, Livonia" ResStockArguments site_city=auto +City "MI, Midland" ResStockArguments site_city=auto +City "MI, Muskegon" ResStockArguments site_city=auto +City "MI, Novi" ResStockArguments site_city=auto +City "MI, Pontiac" ResStockArguments site_city=auto +City "MI, Portage" ResStockArguments site_city=auto +City "MI, Rochester Hills" ResStockArguments site_city=auto +City "MI, Roseville" ResStockArguments site_city=auto +City "MI, Royal Oak" ResStockArguments site_city=auto +City "MI, Saginaw" ResStockArguments site_city=auto +City "MI, Southfield" ResStockArguments site_city=auto +City "MI, St Clair Shores" ResStockArguments site_city=auto +City "MI, Sterling Heights" ResStockArguments site_city=auto +City "MI, Taylor" ResStockArguments site_city=auto +City "MI, Troy" ResStockArguments site_city=auto +City "MI, Warren" ResStockArguments site_city=auto +City "MI, Westland" ResStockArguments site_city=auto +City "MI, Wyoming" ResStockArguments site_city=auto +City "MN, Apple Valley" ResStockArguments site_city=auto +City "MN, Blaine" ResStockArguments site_city=auto +City "MN, Bloomington" ResStockArguments site_city=auto +City "MN, Brooklyn Park" ResStockArguments site_city=auto +City "MN, Burnsville" ResStockArguments site_city=auto +City "MN, Coon Rapids" ResStockArguments site_city=auto +City "MN, Duluth" ResStockArguments site_city=auto +City "MN, Eagan" ResStockArguments site_city=auto +City "MN, Eden Prairie" ResStockArguments site_city=auto +City "MN, Edina" ResStockArguments site_city=auto +City "MN, Lakeville" ResStockArguments site_city=auto +City "MN, Mankato" ResStockArguments site_city=auto +City "MN, Maple Grove" ResStockArguments site_city=auto +City "MN, Maplewood" ResStockArguments site_city=auto +City "MN, Minneapolis" ResStockArguments site_city=auto +City "MN, Minnetonka" ResStockArguments site_city=auto +City "MN, Moorhead" ResStockArguments site_city=auto +City "MN, Plymouth" ResStockArguments site_city=auto +City "MN, Richfield" ResStockArguments site_city=auto +City "MN, Rochester" ResStockArguments site_city=auto +City "MN, Roseville" ResStockArguments site_city=auto +City "MN, St Cloud" ResStockArguments site_city=auto +City "MN, St Louis Park" ResStockArguments site_city=auto +City "MN, St Paul" ResStockArguments site_city=auto +City "MN, Woodbury" ResStockArguments site_city=auto +City "MO, Blue Springs" ResStockArguments site_city=auto +City "MO, Cape Girardeau" ResStockArguments site_city=auto +City "MO, Chesterfield" ResStockArguments site_city=auto +City "MO, Columbia" ResStockArguments site_city=auto +City "MO, Florissant" ResStockArguments site_city=auto +City "MO, Independence" ResStockArguments site_city=auto +City "MO, Jefferson City" ResStockArguments site_city=auto +City "MO, Joplin" ResStockArguments site_city=auto +City "MO, Kansas City" ResStockArguments site_city=auto +City "MO, Lees Summit" ResStockArguments site_city=auto +City "MO, Ofallon" ResStockArguments site_city=auto +City "MO, Springfield" ResStockArguments site_city=auto +City "MO, St Charles" ResStockArguments site_city=auto +City "MO, St Joseph" ResStockArguments site_city=auto +City "MO, St Louis" ResStockArguments site_city=auto +City "MO, St Peters" ResStockArguments site_city=auto +City "MO, University City" ResStockArguments site_city=auto +City "MS, Biloxi" ResStockArguments site_city=auto +City "MS, Gulfport" ResStockArguments site_city=auto +City "MS, Hattiesburg" ResStockArguments site_city=auto +City "MS, Jackson" ResStockArguments site_city=auto +City "MS, Meridian" ResStockArguments site_city=auto +City "MS, Southaven" ResStockArguments site_city=auto +City "MS, Tupelo" ResStockArguments site_city=auto +City "MT, Billings" ResStockArguments site_city=auto +City "MT, Bozeman" ResStockArguments site_city=auto +City "MT, Butte-Silver Bow Balance" ResStockArguments site_city=auto +City "MT, Great Falls" ResStockArguments site_city=auto +City "MT, Missoula" ResStockArguments site_city=auto +City "NC, Asheville" ResStockArguments site_city=auto +City "NC, Burlington" ResStockArguments site_city=auto +City "NC, Cary" ResStockArguments site_city=auto +City "NC, Chapel Hill" ResStockArguments site_city=auto +City "NC, Charlotte" ResStockArguments site_city=auto +City "NC, Concord" ResStockArguments site_city=auto +City "NC, Durham" ResStockArguments site_city=auto +City "NC, Fayetteville" ResStockArguments site_city=auto +City "NC, Gastonia" ResStockArguments site_city=auto +City "NC, Goldsboro" ResStockArguments site_city=auto +City "NC, Greensboro" ResStockArguments site_city=auto +City "NC, Greenville" ResStockArguments site_city=auto +City "NC, Hickory" ResStockArguments site_city=auto +City "NC, High Point" ResStockArguments site_city=auto +City "NC, Huntersville" ResStockArguments site_city=auto +City "NC, Jacksonville" ResStockArguments site_city=auto +City "NC, Kannapolis" ResStockArguments site_city=auto +City "NC, Raleigh" ResStockArguments site_city=auto +City "NC, Rocky Mount" ResStockArguments site_city=auto +City "NC, Wilmington" ResStockArguments site_city=auto +City "NC, Wilson" ResStockArguments site_city=auto +City "NC, Winston-Salem" ResStockArguments site_city=auto +City "ND, Bismarck" ResStockArguments site_city=auto +City "ND, Fargo" ResStockArguments site_city=auto +City "ND, Grand Forks" ResStockArguments site_city=auto +City "ND, Minot" ResStockArguments site_city=auto +City "NE, Bellevue" ResStockArguments site_city=auto +City "NE, Grand Island" ResStockArguments site_city=auto +City "NE, Lincoln" ResStockArguments site_city=auto +City "NE, Omaha" ResStockArguments site_city=auto +City "NH, Concord" ResStockArguments site_city=auto +City "NH, Manchester" ResStockArguments site_city=auto +City "NH, Nashua" ResStockArguments site_city=auto +City "NJ, Atlantic City" ResStockArguments site_city=auto +City "NJ, Bayonne" ResStockArguments site_city=auto +City "NJ, Camden" ResStockArguments site_city=auto +City "NJ, Clifton" ResStockArguments site_city=auto +City "NJ, East Orange" ResStockArguments site_city=auto +City "NJ, Elizabeth" ResStockArguments site_city=auto +City "NJ, Fort Lee" ResStockArguments site_city=auto +City "NJ, Hackensack" ResStockArguments site_city=auto +City "NJ, Hoboken" ResStockArguments site_city=auto +City "NJ, Jersey City" ResStockArguments site_city=auto +City "NJ, Linden" ResStockArguments site_city=auto +City "NJ, New Brunswick" ResStockArguments site_city=auto +City "NJ, Newark" ResStockArguments site_city=auto +City "NJ, Ocean City" ResStockArguments site_city=auto +City "NJ, Passaic" ResStockArguments site_city=auto +City "NJ, Paterson" ResStockArguments site_city=auto +City "NJ, Perth Amboy" ResStockArguments site_city=auto +City "NJ, Plainfield" ResStockArguments site_city=auto +City "NJ, Sayreville" ResStockArguments site_city=auto +City "NJ, Toms River" ResStockArguments site_city=auto +City "NJ, Trenton" ResStockArguments site_city=auto +City "NJ, Union City" ResStockArguments site_city=auto +City "NJ, Vineland" ResStockArguments site_city=auto +City "NJ, West New York" ResStockArguments site_city=auto +City "NM, Albuquerque" ResStockArguments site_city=auto +City "NM, Clovis" ResStockArguments site_city=auto +City "NM, Farmington" ResStockArguments site_city=auto +City "NM, Las Cruces" ResStockArguments site_city=auto +City "NM, Rio Rancho" ResStockArguments site_city=auto +City "NM, Roswell" ResStockArguments site_city=auto +City "NM, Santa Fe" ResStockArguments site_city=auto +City "NM, South Valley" ResStockArguments site_city=auto +City "NV, Carson City" ResStockArguments site_city=auto +City "NV, Enterprise" ResStockArguments site_city=auto +City "NV, Henderson" ResStockArguments site_city=auto +City "NV, Las Vegas" ResStockArguments site_city=auto +City "NV, North Las Vegas" ResStockArguments site_city=auto +City "NV, Pahrump" ResStockArguments site_city=auto +City "NV, Paradise" ResStockArguments site_city=auto +City "NV, Reno" ResStockArguments site_city=auto +City "NV, Sparks" ResStockArguments site_city=auto +City "NV, Spring Valley" ResStockArguments site_city=auto +City "NV, Sunrise Manor" ResStockArguments site_city=auto +City "NV, Whitney" ResStockArguments site_city=auto +City "NY, Albany" ResStockArguments site_city=auto +City "NY, Binghamton" ResStockArguments site_city=auto +City "NY, Brighton" ResStockArguments site_city=auto +City "NY, Buffalo" ResStockArguments site_city=auto +City "NY, Cheektowaga" ResStockArguments site_city=auto +City "NY, Coram" ResStockArguments site_city=auto +City "NY, Hempstead" ResStockArguments site_city=auto +City "NY, Irondequoit" ResStockArguments site_city=auto +City "NY, Levittown" ResStockArguments site_city=auto +City "NY, Long Beach" ResStockArguments site_city=auto +City "NY, Mount Vernon" ResStockArguments site_city=auto +City "NY, New Rochelle" ResStockArguments site_city=auto +City "NY, New York" ResStockArguments site_city=auto +City "NY, Niagara Falls" ResStockArguments site_city=auto +City "NY, Rochester" ResStockArguments site_city=auto +City "NY, Rome" ResStockArguments site_city=auto +City "NY, Schenectady" ResStockArguments site_city=auto +City "NY, Syracuse" ResStockArguments site_city=auto +City "NY, Tonawanda" ResStockArguments site_city=auto +City "NY, Troy" ResStockArguments site_city=auto +City "NY, Utica" ResStockArguments site_city=auto +City "NY, West Seneca" ResStockArguments site_city=auto +City "NY, White Plains" ResStockArguments site_city=auto +City "NY, Yonkers" ResStockArguments site_city=auto +City "OH, Akron" ResStockArguments site_city=auto +City "OH, Beavercreek" ResStockArguments site_city=auto +City "OH, Boardman" ResStockArguments site_city=auto +City "OH, Canton" ResStockArguments site_city=auto +City "OH, Cincinnati" ResStockArguments site_city=auto +City "OH, Cleveland Heights" ResStockArguments site_city=auto +City "OH, Cleveland" ResStockArguments site_city=auto +City "OH, Columbus" ResStockArguments site_city=auto +City "OH, Cuyahoga Falls" ResStockArguments site_city=auto +City "OH, Dayton" ResStockArguments site_city=auto +City "OH, Delaware" ResStockArguments site_city=auto +City "OH, Dublin" ResStockArguments site_city=auto +City "OH, Elyria" ResStockArguments site_city=auto +City "OH, Euclid" ResStockArguments site_city=auto +City "OH, Fairborn" ResStockArguments site_city=auto +City "OH, Fairfield" ResStockArguments site_city=auto +City "OH, Findlay" ResStockArguments site_city=auto +City "OH, Grove City" ResStockArguments site_city=auto +City "OH, Hamilton" ResStockArguments site_city=auto +City "OH, Huber Heights" ResStockArguments site_city=auto +City "OH, Kettering" ResStockArguments site_city=auto +City "OH, Lakewood" ResStockArguments site_city=auto +City "OH, Lancaster" ResStockArguments site_city=auto +City "OH, Lima" ResStockArguments site_city=auto +City "OH, Lorain" ResStockArguments site_city=auto +City "OH, Mansfield" ResStockArguments site_city=auto +City "OH, Marion" ResStockArguments site_city=auto +City "OH, Mentor" ResStockArguments site_city=auto +City "OH, Middletown" ResStockArguments site_city=auto +City "OH, Newark" ResStockArguments site_city=auto +City "OH, Parma" ResStockArguments site_city=auto +City "OH, Springfield" ResStockArguments site_city=auto +City "OH, Stow" ResStockArguments site_city=auto +City "OH, Strongsville" ResStockArguments site_city=auto +City "OH, Toledo" ResStockArguments site_city=auto +City "OH, Warren" ResStockArguments site_city=auto +City "OH, Youngstown" ResStockArguments site_city=auto +City "OK, Bartlesville" ResStockArguments site_city=auto +City "OK, Broken Arrow" ResStockArguments site_city=auto +City "OK, Edmond" ResStockArguments site_city=auto +City "OK, Enid" ResStockArguments site_city=auto +City "OK, Lawton" ResStockArguments site_city=auto +City "OK, Midwest City" ResStockArguments site_city=auto +City "OK, Moore" ResStockArguments site_city=auto +City "OK, Muskogee" ResStockArguments site_city=auto +City "OK, Norman" ResStockArguments site_city=auto +City "OK, Oklahoma City" ResStockArguments site_city=auto +City "OK, Stillwater" ResStockArguments site_city=auto +City "OK, Tulsa" ResStockArguments site_city=auto +City "OR, Albany" ResStockArguments site_city=auto +City "OR, Aloha" ResStockArguments site_city=auto +City "OR, Beaverton" ResStockArguments site_city=auto +City "OR, Bend" ResStockArguments site_city=auto +City "OR, Corvallis" ResStockArguments site_city=auto +City "OR, Eugene" ResStockArguments site_city=auto +City "OR, Grants Pass" ResStockArguments site_city=auto +City "OR, Gresham" ResStockArguments site_city=auto +City "OR, Hillsboro" ResStockArguments site_city=auto +City "OR, Lake Oswego" ResStockArguments site_city=auto +City "OR, Medford" ResStockArguments site_city=auto +City "OR, Portland" ResStockArguments site_city=auto +City "OR, Salem" ResStockArguments site_city=auto +City "OR, Springfield" ResStockArguments site_city=auto +City "OR, Tigard" ResStockArguments site_city=auto +City "PA, Allentown" ResStockArguments site_city=auto +City "PA, Altoona" ResStockArguments site_city=auto +City "PA, Bethlehem" ResStockArguments site_city=auto +City "PA, Erie" ResStockArguments site_city=auto +City "PA, Harrisburg" ResStockArguments site_city=auto +City "PA, Lancaster" ResStockArguments site_city=auto +City "PA, Levittown" ResStockArguments site_city=auto +City "PA, Philadelphia" ResStockArguments site_city=auto +City "PA, Pittsburgh" ResStockArguments site_city=auto +City "PA, Reading" ResStockArguments site_city=auto +City "PA, Scranton" ResStockArguments site_city=auto +City "PA, Wilkes-Barre" ResStockArguments site_city=auto +City "PA, York" ResStockArguments site_city=auto +City "RI, Cranston" ResStockArguments site_city=auto +City "RI, East Providence" ResStockArguments site_city=auto +City "RI, Pawtucket" ResStockArguments site_city=auto +City "RI, Providence" ResStockArguments site_city=auto +City "RI, Warwick" ResStockArguments site_city=auto +City "RI, Woonsocket" ResStockArguments site_city=auto +City "SC, Charleston" ResStockArguments site_city=auto +City "SC, Columbia" ResStockArguments site_city=auto +City "SC, Florence" ResStockArguments site_city=auto +City "SC, Goose Creek" ResStockArguments site_city=auto +City "SC, Greenville" ResStockArguments site_city=auto +City "SC, Hilton Head Island" ResStockArguments site_city=auto +City "SC, Mount Pleasant" ResStockArguments site_city=auto +City "SC, Myrtle Beach" ResStockArguments site_city=auto +City "SC, North Charleston" ResStockArguments site_city=auto +City "SC, North Myrtle Beach" ResStockArguments site_city=auto +City "SC, Rock Hill" ResStockArguments site_city=auto +City "SC, Spartanburg" ResStockArguments site_city=auto +City "SC, Summerville" ResStockArguments site_city=auto +City "SC, Sumter" ResStockArguments site_city=auto +City "SD, Rapid City" ResStockArguments site_city=auto +City "SD, Sioux Falls" ResStockArguments site_city=auto +City "TN, Bartlett" ResStockArguments site_city=auto +City "TN, Chattanooga" ResStockArguments site_city=auto +City "TN, Clarksville" ResStockArguments site_city=auto +City "TN, Cleveland" ResStockArguments site_city=auto +City "TN, Collierville" ResStockArguments site_city=auto +City "TN, Columbia" ResStockArguments site_city=auto +City "TN, Franklin" ResStockArguments site_city=auto +City "TN, Germantown" ResStockArguments site_city=auto +City "TN, Hendersonville" ResStockArguments site_city=auto +City "TN, Jackson" ResStockArguments site_city=auto +City "TN, Johnson City" ResStockArguments site_city=auto +City "TN, Kingsport" ResStockArguments site_city=auto +City "TN, Knoxville" ResStockArguments site_city=auto +City "TN, Memphis" ResStockArguments site_city=auto +City "TN, Murfreesboro" ResStockArguments site_city=auto +City "TN, Nashville-Davidson Metropolitan Government Balance" ResStockArguments site_city=auto +City "TN, Smyrna" ResStockArguments site_city=auto +City "TX, Abilene" ResStockArguments site_city=auto +City "TX, Allen" ResStockArguments site_city=auto +City "TX, Amarillo" ResStockArguments site_city=auto +City "TX, Arlington" ResStockArguments site_city=auto +City "TX, Atascocita" ResStockArguments site_city=auto +City "TX, Austin" ResStockArguments site_city=auto +City "TX, Baytown" ResStockArguments site_city=auto +City "TX, Beaumont" ResStockArguments site_city=auto +City "TX, Bedford" ResStockArguments site_city=auto +City "TX, Brownsville" ResStockArguments site_city=auto +City "TX, Bryan" ResStockArguments site_city=auto +City "TX, Burleson" ResStockArguments site_city=auto +City "TX, Carrollton" ResStockArguments site_city=auto +City "TX, Cedar Hill" ResStockArguments site_city=auto +City "TX, Cedar Park" ResStockArguments site_city=auto +City "TX, College Station" ResStockArguments site_city=auto +City "TX, Conroe" ResStockArguments site_city=auto +City "TX, Coppell" ResStockArguments site_city=auto +City "TX, Corpus Christi" ResStockArguments site_city=auto +City "TX, Dallas" ResStockArguments site_city=auto +City "TX, Denton" ResStockArguments site_city=auto +City "TX, Desoto" ResStockArguments site_city=auto +City "TX, Edinburg" ResStockArguments site_city=auto +City "TX, El Paso" ResStockArguments site_city=auto +City "TX, Euless" ResStockArguments site_city=auto +City "TX, Flower Mound" ResStockArguments site_city=auto +City "TX, Fort Worth" ResStockArguments site_city=auto +City "TX, Frisco" ResStockArguments site_city=auto +City "TX, Galveston" ResStockArguments site_city=auto +City "TX, Garland" ResStockArguments site_city=auto +City "TX, Georgetown" ResStockArguments site_city=auto +City "TX, Grand Prairie" ResStockArguments site_city=auto +City "TX, Grapevine" ResStockArguments site_city=auto +City "TX, Haltom City" ResStockArguments site_city=auto +City "TX, Harlingen" ResStockArguments site_city=auto +City "TX, Houston" ResStockArguments site_city=auto +City "TX, Hurst" ResStockArguments site_city=auto +City "TX, Irving" ResStockArguments site_city=auto +City "TX, Keller" ResStockArguments site_city=auto +City "TX, Killeen" ResStockArguments site_city=auto +City "TX, Laredo" ResStockArguments site_city=auto +City "TX, League City" ResStockArguments site_city=auto +City "TX, Lewisville" ResStockArguments site_city=auto +City "TX, Longview" ResStockArguments site_city=auto +City "TX, Lubbock" ResStockArguments site_city=auto +City "TX, Lufkin" ResStockArguments site_city=auto +City "TX, Mansfield" ResStockArguments site_city=auto +City "TX, Mcallen" ResStockArguments site_city=auto +City "TX, Mckinney" ResStockArguments site_city=auto +City "TX, Mesquite" ResStockArguments site_city=auto +City "TX, Midland" ResStockArguments site_city=auto +City "TX, Mission" ResStockArguments site_city=auto +City "TX, Missouri City" ResStockArguments site_city=auto +City "TX, New Braunfels" ResStockArguments site_city=auto +City "TX, North Richland Hills" ResStockArguments site_city=auto +City "TX, Odessa" ResStockArguments site_city=auto +City "TX, Pasadena" ResStockArguments site_city=auto +City "TX, Pearland" ResStockArguments site_city=auto +City "TX, Pflugerville" ResStockArguments site_city=auto +City "TX, Pharr" ResStockArguments site_city=auto +City "TX, Plano" ResStockArguments site_city=auto +City "TX, Port Arthur" ResStockArguments site_city=auto +City "TX, Richardson" ResStockArguments site_city=auto +City "TX, Round Rock" ResStockArguments site_city=auto +City "TX, Rowlett" ResStockArguments site_city=auto +City "TX, San Angelo" ResStockArguments site_city=auto +City "TX, San Antonio" ResStockArguments site_city=auto +City "TX, San Marcos" ResStockArguments site_city=auto +City "TX, Sherman" ResStockArguments site_city=auto +City "TX, Spring" ResStockArguments site_city=auto +City "TX, Sugar Land" ResStockArguments site_city=auto +City "TX, Temple" ResStockArguments site_city=auto +City "TX, Texarkana" ResStockArguments site_city=auto +City "TX, Texas City" ResStockArguments site_city=auto +City "TX, The Colony" ResStockArguments site_city=auto +City "TX, The Woodlands" ResStockArguments site_city=auto +City "TX, Tyler" ResStockArguments site_city=auto +City "TX, Victoria" ResStockArguments site_city=auto +City "TX, Waco" ResStockArguments site_city=auto +City "TX, Wichita Falls" ResStockArguments site_city=auto +City "TX, Wylie" ResStockArguments site_city=auto +City "UT, Layton" ResStockArguments site_city=auto +City "UT, Lehi" ResStockArguments site_city=auto +City "UT, Logan" ResStockArguments site_city=auto +City "UT, Millcreek" ResStockArguments site_city=auto +City "UT, Murray" ResStockArguments site_city=auto +City "UT, Ogden" ResStockArguments site_city=auto +City "UT, Orem" ResStockArguments site_city=auto +City "UT, Provo" ResStockArguments site_city=auto +City "UT, Salt Lake City" ResStockArguments site_city=auto +City "UT, Sandy" ResStockArguments site_city=auto +City "UT, South Jordan" ResStockArguments site_city=auto +City "UT, St George" ResStockArguments site_city=auto +City "UT, Taylorsville" ResStockArguments site_city=auto +City "UT, West Jordan" ResStockArguments site_city=auto +City "UT, West Valley City" ResStockArguments site_city=auto +City "VA, Alexandria" ResStockArguments site_city=auto +City "VA, Arlington" ResStockArguments site_city=auto +City "VA, Ashburn" ResStockArguments site_city=auto +City "VA, Blacksburg" ResStockArguments site_city=auto +City "VA, Centreville" ResStockArguments site_city=auto +City "VA, Charlottesville" ResStockArguments site_city=auto +City "VA, Chesapeake" ResStockArguments site_city=auto +City "VA, Dale City" ResStockArguments site_city=auto +City "VA, Danville" ResStockArguments site_city=auto +City "VA, Hampton" ResStockArguments site_city=auto +City "VA, Harrisonburg" ResStockArguments site_city=auto +City "VA, Lake Ridge" ResStockArguments site_city=auto +City "VA, Leesburg" ResStockArguments site_city=auto +City "VA, Lynchburg" ResStockArguments site_city=auto +City "VA, Mclean" ResStockArguments site_city=auto +City "VA, Mechanicsville" ResStockArguments site_city=auto +City "VA, Newport News" ResStockArguments site_city=auto +City "VA, Norfolk" ResStockArguments site_city=auto +City "VA, Petersburg" ResStockArguments site_city=auto +City "VA, Portsmouth" ResStockArguments site_city=auto +City "VA, Reston" ResStockArguments site_city=auto +City "VA, Richmond" ResStockArguments site_city=auto +City "VA, Roanoke" ResStockArguments site_city=auto +City "VA, Suffolk" ResStockArguments site_city=auto +City "VA, Tuckahoe" ResStockArguments site_city=auto +City "VA, Virginia Beach" ResStockArguments site_city=auto +City "VT, Burlington" ResStockArguments site_city=auto +City "WA, Auburn" ResStockArguments site_city=auto +City "WA, Bellevue" ResStockArguments site_city=auto +City "WA, Bellingham" ResStockArguments site_city=auto +City "WA, Bremerton" ResStockArguments site_city=auto +City "WA, Edmonds" ResStockArguments site_city=auto +City "WA, Everett" ResStockArguments site_city=auto +City "WA, Federal Way" ResStockArguments site_city=auto +City "WA, Kennewick" ResStockArguments site_city=auto +City "WA, Kent" ResStockArguments site_city=auto +City "WA, Kirkland" ResStockArguments site_city=auto +City "WA, Lacey" ResStockArguments site_city=auto +City "WA, Lakewood" ResStockArguments site_city=auto +City "WA, Longview" ResStockArguments site_city=auto +City "WA, Marysville" ResStockArguments site_city=auto +City "WA, Olympia" ResStockArguments site_city=auto +City "WA, Pasco" ResStockArguments site_city=auto +City "WA, Puyallup" ResStockArguments site_city=auto +City "WA, Redmond" ResStockArguments site_city=auto +City "WA, Renton" ResStockArguments site_city=auto +City "WA, Richland" ResStockArguments site_city=auto +City "WA, Sammamish" ResStockArguments site_city=auto +City "WA, Seattle" ResStockArguments site_city=auto +City "WA, Shoreline" ResStockArguments site_city=auto +City "WA, South Hill" ResStockArguments site_city=auto +City "WA, Spokane Valley" ResStockArguments site_city=auto +City "WA, Spokane" ResStockArguments site_city=auto +City "WA, Tacoma" ResStockArguments site_city=auto +City "WA, Vancouver" ResStockArguments site_city=auto +City "WA, Yakima" ResStockArguments site_city=auto +City "WI, Appleton" ResStockArguments site_city=auto +City "WI, Beloit" ResStockArguments site_city=auto +City "WI, Eau Claire" ResStockArguments site_city=auto +City "WI, Fond Du Lac" ResStockArguments site_city=auto +City "WI, Green Bay" ResStockArguments site_city=auto +City "WI, Greenfield" ResStockArguments site_city=auto +City "WI, Janesville" ResStockArguments site_city=auto +City "WI, Kenosha" ResStockArguments site_city=auto +City "WI, La Crosse" ResStockArguments site_city=auto +City "WI, Madison" ResStockArguments site_city=auto +City "WI, Manitowoc" ResStockArguments site_city=auto +City "WI, Menomonee Falls" ResStockArguments site_city=auto +City "WI, Milwaukee" ResStockArguments site_city=auto +City "WI, New Berlin" ResStockArguments site_city=auto +City "WI, Oshkosh" ResStockArguments site_city=auto +City "WI, Racine" ResStockArguments site_city=auto +City "WI, Sheboygan" ResStockArguments site_city=auto +City "WI, Waukesha" ResStockArguments site_city=auto +City "WI, Wausau" ResStockArguments site_city=auto +City "WI, Wauwatosa" ResStockArguments site_city=auto +City "WI, West Allis" ResStockArguments site_city=auto +City "WV, Charleston" ResStockArguments site_city=auto +City "WV, Huntington" ResStockArguments site_city=auto +City "WV, Parkersburg" ResStockArguments site_city=auto +City "WY, Casper" ResStockArguments site_city=auto +City "WY, Cheyenne" ResStockArguments site_city=auto +City In another census Place ResStockArguments site_city=auto +City Not in a census Place ResStockArguments site_city=auto +Clothes Dryer "Electric, Heat Pump, Ventless" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=4.5 clothes_dryer_vented_flow_rate=0 +Clothes Dryer "Electric, Premium" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.42 clothes_dryer_vented_flow_rate=auto +Clothes Dryer "Electric, Premium, EnergyStar" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.93 clothes_dryer_vented_flow_rate=auto +Clothes Dryer "Electric, Premium, Heat Pump, Ventless" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=5.2 clothes_dryer_vented_flow_rate=0 +Clothes Dryer "Gas, Premium" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.03 clothes_dryer_vented_flow_rate=auto +Clothes Dryer Electric ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.70 clothes_dryer_vented_flow_rate=auto +Clothes Dryer Gas ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.39 clothes_dryer_vented_flow_rate=auto +Clothes Dryer None ResStockArguments clothes_dryer_present=false clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.70 clothes_dryer_vented_flow_rate=auto +Clothes Dryer Propane ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=propane clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.39 clothes_dryer_vented_flow_rate=auto +Clothes Dryer Void +Clothes Dryer Usage Level 100% Usage ResStockArguments clothes_dryer_usage_multiplier=1.0 +Clothes Dryer Usage Level 120% Usage ResStockArguments clothes_dryer_usage_multiplier=1.2 +Clothes Dryer Usage Level 80% Usage ResStockArguments clothes_dryer_usage_multiplier=0.8 +Clothes Washer "EnergyStar, Cold Only" ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.07 clothes_washer_rated_annual_kwh=123 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=9 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.68 +Clothes Washer CEE Advanced Tier ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=3.1 clothes_washer_rated_annual_kwh=120 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=14 clothes_washer_label_usage=7.538462 clothes_washer_capacity=5.8 +Clothes Washer EnergyStar ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.07 clothes_washer_rated_annual_kwh=123 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=9 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.68 +Clothes Washer EnergyStar More Efficient ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.83 clothes_washer_rated_annual_kwh=90 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=8 clothes_washer_label_usage=7.538462 clothes_washer_capacity=4.5 +Clothes Washer EnergyStar Most Efficient ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.92 clothes_washer_rated_annual_kwh=75 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=7 clothes_washer_label_usage=7.538462 clothes_washer_capacity=4.5 +Clothes Washer None ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=0 clothes_washer_rated_annual_kwh=0 clothes_washer_label_electric_rate=0 clothes_washer_label_gas_rate=0 clothes_washer_label_annual_gas_cost=0 clothes_washer_label_usage=0 clothes_washer_capacity=0 +Clothes Washer Standard ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=0.95 clothes_washer_rated_annual_kwh=387 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=24 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.5 +Clothes Washer Void +Clothes Washer Presence None ResStockArguments clothes_washer_present=false +Clothes Washer Presence Void +Clothes Washer Presence Yes ResStockArguments clothes_washer_present=true +Clothes Washer Usage Level 100% Usage ResStockArguments clothes_washer_usage_multiplier=1.0 +Clothes Washer Usage Level 120% Usage ResStockArguments clothes_washer_usage_multiplier=1.2 +Clothes Washer Usage Level 80% Usage ResStockArguments clothes_washer_usage_multiplier=0.8 +Cooking Range Electric Induction ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=electricity cooking_range_oven_is_induction=true cooking_range_oven_is_convection=auto +Cooking Range Electric Resistance ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=electricity cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto +Cooking Range Gas ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=natural gas cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto +Cooking Range None ResStockArguments cooking_range_oven_present=false cooking_range_oven_location=auto cooking_range_oven_fuel_type=natural gas cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto +Cooking Range Propane ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=propane cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto +Cooking Range Void +Cooking Range Usage Level 100% Usage ResStockArguments cooking_range_oven_usage_multiplier=1.0 +Cooking Range Usage Level 120% Usage ResStockArguments cooking_range_oven_usage_multiplier=1.2 +Cooking Range Usage Level 80% Usage ResStockArguments cooking_range_oven_usage_multiplier=0.8 +Cooling Setpoint 60F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=60 hvac_control_cooling_weekend_setpoint_temp=60 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 62F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=62 hvac_control_cooling_weekend_setpoint_temp=62 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 64F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=64 hvac_control_cooling_weekend_setpoint_temp=64 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 65F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=65 hvac_control_cooling_weekend_setpoint_temp=65 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 66F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=66 hvac_control_cooling_weekend_setpoint_temp=66 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 67F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=67 hvac_control_cooling_weekend_setpoint_temp=67 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 68F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=68 hvac_control_cooling_weekend_setpoint_temp=68 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 69F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=69 hvac_control_cooling_weekend_setpoint_temp=69 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 70F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=70 hvac_control_cooling_weekend_setpoint_temp=70 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 72F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=72 hvac_control_cooling_weekend_setpoint_temp=72 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 73F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=73 hvac_control_cooling_weekend_setpoint_temp=73 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 74F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=74 hvac_control_cooling_weekend_setpoint_temp=74 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 75F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=75 hvac_control_cooling_weekend_setpoint_temp=75 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 76F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=76 hvac_control_cooling_weekend_setpoint_temp=76 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 76F w/ Building America season ResStockArguments hvac_control_cooling_weekday_setpoint_temp=76 hvac_control_cooling_weekend_setpoint_temp=76 use_auto_cooling_season=true hvac_control_cooling_season_period=auto +Cooling Setpoint 77F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=77 hvac_control_cooling_weekend_setpoint_temp=77 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 78F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=78 hvac_control_cooling_weekend_setpoint_temp=78 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 80F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=80 hvac_control_cooling_weekend_setpoint_temp=80 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint Void +Cooling Setpoint Has Offset No +Cooling Setpoint Has Offset Yes +Cooling Setpoint Offset Magnitude 0F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=0 hvac_control_cooling_weekend_setpoint_offset_magnitude=0 +Cooling Setpoint Offset Magnitude 2F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=2 hvac_control_cooling_weekend_setpoint_offset_magnitude=2 +Cooling Setpoint Offset Magnitude 5F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=5 hvac_control_cooling_weekend_setpoint_offset_magnitude=5 +Cooling Setpoint Offset Magnitude 9F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=9 hvac_control_cooling_weekend_setpoint_offset_magnitude=9 +Cooling Setpoint Offset Period Day Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup and Night Setback ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day Setup and Night Setback +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day Setup and Night Setback +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day Setup and Night Setback +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day Setup and Night Setback -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" +Cooling Setpoint Offset Period Day and Night Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1" +Cooling Setpoint Offset Period Day and Night Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1" +Cooling Setpoint Offset Period Day and Night Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day and Night Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day and Night Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day and Night Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day and Night Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1" +Cooling Setpoint Offset Period Day and Night Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1" +Cooling Setpoint Offset Period Day and Night Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1" +Cooling Setpoint Offset Period Day and Night Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1" +Cooling Setpoint Offset Period Day and Night Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1" +Cooling Setpoint Offset Period Night Setback ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" +Cooling Setpoint Offset Period Night Setback +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" +Cooling Setpoint Offset Period Night Setback +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setback +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setback +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setback +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setback -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" +Cooling Setpoint Offset Period Night Setback -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" +Cooling Setpoint Offset Period Night Setback -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" +Cooling Setpoint Offset Period Night Setback -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" +Cooling Setpoint Offset Period Night Setback -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" +Cooling Setpoint Offset Period Night Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1" +Cooling Setpoint Offset Period Night Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1" +Cooling Setpoint Offset Period Night Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1" +Cooling Setpoint Offset Period Night Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1" +Cooling Setpoint Offset Period Night Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1" +Cooling Setpoint Offset Period Night Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1" +Cooling Setpoint Offset Period Night Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1" +Cooling Setpoint Offset Period None ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Corridor Double Exterior ResStockArguments geometry_corridor_position=Double Exterior geometry_corridor_width=10 +Corridor Double-Loaded Interior ResStockArguments geometry_corridor_position=Double-Loaded Interior geometry_corridor_width=10 +Corridor None ResStockArguments geometry_corridor_position=None geometry_corridor_width=0 +Corridor Not Applicable ResStockArguments geometry_corridor_position=None geometry_corridor_width=0 +Corridor Single Exterior Front ResStockArguments geometry_corridor_position=Single Exterior (Front) geometry_corridor_width=10 +County "AK, Aleutians East Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200130.epw site_zip_code=99661 site_time_zone_utc_offset=-9 +County "AK, Aleutians West Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200160.epw site_zip_code=99685 site_time_zone_utc_offset=-9 +County "AK, Anchorage Municipality" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200200.epw site_zip_code=99501 site_time_zone_utc_offset=-9 +County "AK, Bethel Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200500.epw site_zip_code=99545 site_time_zone_utc_offset=-9 +County "AK, Bristol Bay Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200600.epw site_zip_code=99633 site_time_zone_utc_offset=-9 +County "AK, Denali Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200680.epw site_zip_code=99743 site_time_zone_utc_offset=-9 +County "AK, Dillingham Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200700.epw site_zip_code=99576 site_time_zone_utc_offset=-9 +County "AK, Fairbanks North Star Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200900.epw site_zip_code=99709 site_time_zone_utc_offset=-9 +County "AK, Haines Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201000.epw site_zip_code=99827 site_time_zone_utc_offset=-9 +County "AK, Hoonah-Angoon Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201050.epw site_zip_code=99829 site_time_zone_utc_offset=-9 +County "AK, Juneau City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201100.epw site_zip_code=99802 site_time_zone_utc_offset=-9 +County "AK, Kenai Peninsula Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201220.epw site_zip_code=99611 site_time_zone_utc_offset=-9 +County "AK, Ketchikan Gateway Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201300.epw site_zip_code=99901 site_time_zone_utc_offset=-9 +County "AK, Kodiak Island Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201500.epw site_zip_code=99615 site_time_zone_utc_offset=-9 +County "AK, Kusilvak Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202700.epw site_zip_code=99604 site_time_zone_utc_offset=-9 +County "AK, Lake and Peninsula Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201640.epw site_zip_code=99653 site_time_zone_utc_offset=-9 +County "AK, Matanuska-Susitna Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201700.epw site_zip_code=99645 site_time_zone_utc_offset=-9 +County "AK, Nome Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201800.epw site_zip_code=99762 site_time_zone_utc_offset=-9 +County "AK, North Slope Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201850.epw site_zip_code=99723 site_time_zone_utc_offset=-9 +County "AK, Northwest Arctic Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201880.epw site_zip_code=99752 site_time_zone_utc_offset=-9 +County "AK, Petersburg Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201950.epw site_zip_code=99833 site_time_zone_utc_offset=-9 +County "AK, Prince of Wales-Hyder Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201980.epw site_zip_code=99926 site_time_zone_utc_offset=-9 +County "AK, Sitka City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202200.epw site_zip_code=99835 site_time_zone_utc_offset=-9 +County "AK, Skagway Municipality" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202300.epw site_zip_code=99840 site_time_zone_utc_offset=-9 +County "AK, Southeast Fairbanks Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202400.epw site_zip_code=99731 site_time_zone_utc_offset=-9 +County "AK, Valdez-Cordova Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202610.epw site_zip_code=99686 site_time_zone_utc_offset=-9 +County "AK, Wrangell City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202750.epw site_zip_code=99903 site_time_zone_utc_offset=-9 +County "AK, Yakutat City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202820.epw site_zip_code=99689 site_time_zone_utc_offset=-9 +County "AK, Yukon-Koyukuk Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202900.epw site_zip_code=99740 site_time_zone_utc_offset=-9 +County "AL, Autauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100010.epw site_zip_code=36067 site_time_zone_utc_offset=-6 +County "AL, Baldwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100030.epw site_zip_code=36535 site_time_zone_utc_offset=-6 +County "AL, Barbour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100050.epw site_zip_code=36027 site_time_zone_utc_offset=-6 +County "AL, Bibb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100070.epw site_zip_code=35042 site_time_zone_utc_offset=-6 +County "AL, Blount County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100090.epw site_zip_code=35121 site_time_zone_utc_offset=-6 +County "AL, Bullock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100110.epw site_zip_code=36089 site_time_zone_utc_offset=-6 +County "AL, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100130.epw site_zip_code=36037 site_time_zone_utc_offset=-6 +County "AL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100150.epw site_zip_code=36201 site_time_zone_utc_offset=-6 +County "AL, Chambers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100170.epw site_zip_code=36863 site_time_zone_utc_offset=-6 +County "AL, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100190.epw site_zip_code=35960 site_time_zone_utc_offset=-6 +County "AL, Chilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100210.epw site_zip_code=35045 site_time_zone_utc_offset=-6 +County "AL, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100230.epw site_zip_code=36904 site_time_zone_utc_offset=-6 +County "AL, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100250.epw site_zip_code=36545 site_time_zone_utc_offset=-6 +County "AL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100270.epw site_zip_code=36251 site_time_zone_utc_offset=-6 +County "AL, Cleburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100290.epw site_zip_code=36264 site_time_zone_utc_offset=-6 +County "AL, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100310.epw site_zip_code=36330 site_time_zone_utc_offset=-6 +County "AL, Colbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100330.epw site_zip_code=35674 site_time_zone_utc_offset=-6 +County "AL, Conecuh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100350.epw site_zip_code=36401 site_time_zone_utc_offset=-6 +County "AL, Coosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100370.epw site_zip_code=35151 site_time_zone_utc_offset=-6 +County "AL, Covington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100390.epw site_zip_code=36420 site_time_zone_utc_offset=-6 +County "AL, Crenshaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100410.epw site_zip_code=36049 site_time_zone_utc_offset=-6 +County "AL, Cullman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100430.epw site_zip_code=35055 site_time_zone_utc_offset=-6 +County "AL, Dale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100450.epw site_zip_code=36360 site_time_zone_utc_offset=-6 +County "AL, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100470.epw site_zip_code=36701 site_time_zone_utc_offset=-6 +County "AL, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100490.epw site_zip_code=35967 site_time_zone_utc_offset=-6 +County "AL, Elmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100510.epw site_zip_code=36092 site_time_zone_utc_offset=-6 +County "AL, Escambia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100530.epw site_zip_code=36426 site_time_zone_utc_offset=-6 +County "AL, Etowah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100550.epw site_zip_code=35901 site_time_zone_utc_offset=-6 +County "AL, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100570.epw site_zip_code=35555 site_time_zone_utc_offset=-6 +County "AL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100590.epw site_zip_code=35653 site_time_zone_utc_offset=-6 +County "AL, Geneva County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100610.epw site_zip_code=36375 site_time_zone_utc_offset=-6 +County "AL, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100630.epw site_zip_code=35462 site_time_zone_utc_offset=-6 +County "AL, Hale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100650.epw site_zip_code=36744 site_time_zone_utc_offset=-6 +County "AL, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100670.epw site_zip_code=36310 site_time_zone_utc_offset=-6 +County "AL, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100690.epw site_zip_code=36301 site_time_zone_utc_offset=-6 +County "AL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100710.epw site_zip_code=35768 site_time_zone_utc_offset=-6 +County "AL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100730.epw site_zip_code=35215 site_time_zone_utc_offset=-6 +County "AL, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100750.epw site_zip_code=35586 site_time_zone_utc_offset=-6 +County "AL, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100770.epw site_zip_code=35630 site_time_zone_utc_offset=-6 +County "AL, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100790.epw site_zip_code=35650 site_time_zone_utc_offset=-6 +County "AL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100810.epw site_zip_code=36830 site_time_zone_utc_offset=-6 +County "AL, Limestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100830.epw site_zip_code=35611 site_time_zone_utc_offset=-6 +County "AL, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100850.epw site_zip_code=36040 site_time_zone_utc_offset=-6 +County "AL, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100870.epw site_zip_code=36083 site_time_zone_utc_offset=-6 +County "AL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100890.epw site_zip_code=35758 site_time_zone_utc_offset=-6 +County "AL, Marengo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100910.epw site_zip_code=36732 site_time_zone_utc_offset=-6 +County "AL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100930.epw site_zip_code=35570 site_time_zone_utc_offset=-6 +County "AL, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100950.epw site_zip_code=35976 site_time_zone_utc_offset=-6 +County "AL, Mobile County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100970.epw site_zip_code=36695 site_time_zone_utc_offset=-6 +County "AL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100990.epw site_zip_code=36460 site_time_zone_utc_offset=-6 +County "AL, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101010.epw site_zip_code=36117 site_time_zone_utc_offset=-6 +County "AL, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101030.epw site_zip_code=35601 site_time_zone_utc_offset=-6 +County "AL, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101050.epw site_zip_code=36756 site_time_zone_utc_offset=-6 +County "AL, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101070.epw site_zip_code=35466 site_time_zone_utc_offset=-6 +County "AL, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101090.epw site_zip_code=36081 site_time_zone_utc_offset=-6 +County "AL, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101110.epw site_zip_code=36274 site_time_zone_utc_offset=-6 +County "AL, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101130.epw site_zip_code=36869 site_time_zone_utc_offset=-6 +County "AL, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101170.epw site_zip_code=35242 site_time_zone_utc_offset=-6 +County "AL, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101150.epw site_zip_code=35120 site_time_zone_utc_offset=-6 +County "AL, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101190.epw site_zip_code=36925 site_time_zone_utc_offset=-6 +County "AL, Talladega County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101210.epw site_zip_code=35160 site_time_zone_utc_offset=-6 +County "AL, Tallapoosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101230.epw site_zip_code=35010 site_time_zone_utc_offset=-6 +County "AL, Tuscaloosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101250.epw site_zip_code=35401 site_time_zone_utc_offset=-6 +County "AL, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101270.epw site_zip_code=35504 site_time_zone_utc_offset=-6 +County "AL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101290.epw site_zip_code=36558 site_time_zone_utc_offset=-6 +County "AL, Wilcox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101310.epw site_zip_code=36726 site_time_zone_utc_offset=-6 +County "AL, Winston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101330.epw site_zip_code=35565 site_time_zone_utc_offset=-6 +County "AR, Arkansas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500010.epw site_zip_code=72160 site_time_zone_utc_offset=-6 +County "AR, Ashley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500030.epw site_zip_code=71635 site_time_zone_utc_offset=-6 +County "AR, Baxter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500050.epw site_zip_code=72653 site_time_zone_utc_offset=-6 +County "AR, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500070.epw site_zip_code=72712 site_time_zone_utc_offset=-6 +County "AR, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500090.epw site_zip_code=72601 site_time_zone_utc_offset=-6 +County "AR, Bradley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500110.epw site_zip_code=71671 site_time_zone_utc_offset=-6 +County "AR, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500130.epw site_zip_code=71744 site_time_zone_utc_offset=-6 +County "AR, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500150.epw site_zip_code=72616 site_time_zone_utc_offset=-6 +County "AR, Chicot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500170.epw site_zip_code=71653 site_time_zone_utc_offset=-6 +County "AR, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500190.epw site_zip_code=71923 site_time_zone_utc_offset=-6 +County "AR, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500210.epw site_zip_code=72454 site_time_zone_utc_offset=-6 +County "AR, Cleburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500230.epw site_zip_code=72543 site_time_zone_utc_offset=-6 +County "AR, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500250.epw site_zip_code=71665 site_time_zone_utc_offset=-6 +County "AR, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500270.epw site_zip_code=71753 site_time_zone_utc_offset=-6 +County "AR, Conway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500290.epw site_zip_code=72110 site_time_zone_utc_offset=-6 +County "AR, Craighead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500310.epw site_zip_code=72401 site_time_zone_utc_offset=-6 +County "AR, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500330.epw site_zip_code=72956 site_time_zone_utc_offset=-6 +County "AR, Crittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500350.epw site_zip_code=72301 site_time_zone_utc_offset=-6 +County "AR, Cross County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500370.epw site_zip_code=72396 site_time_zone_utc_offset=-6 +County "AR, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500390.epw site_zip_code=71742 site_time_zone_utc_offset=-6 +County "AR, Desha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500410.epw site_zip_code=71639 site_time_zone_utc_offset=-6 +County "AR, Drew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500430.epw site_zip_code=71655 site_time_zone_utc_offset=-6 +County "AR, Faulkner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500450.epw site_zip_code=72034 site_time_zone_utc_offset=-6 +County "AR, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500470.epw site_zip_code=72949 site_time_zone_utc_offset=-6 +County "AR, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500490.epw site_zip_code=72554 site_time_zone_utc_offset=-6 +County "AR, Garland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500510.epw site_zip_code=71913 site_time_zone_utc_offset=-6 +County "AR, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500530.epw site_zip_code=72150 site_time_zone_utc_offset=-6 +County "AR, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500550.epw site_zip_code=72450 site_time_zone_utc_offset=-6 +County "AR, Hempstead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500570.epw site_zip_code=71801 site_time_zone_utc_offset=-6 +County "AR, Hot Spring County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500590.epw site_zip_code=72104 site_time_zone_utc_offset=-6 +County "AR, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500610.epw site_zip_code=71852 site_time_zone_utc_offset=-6 +County "AR, Independence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500630.epw site_zip_code=72501 site_time_zone_utc_offset=-6 +County "AR, Izard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500650.epw site_zip_code=72556 site_time_zone_utc_offset=-6 +County "AR, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500670.epw site_zip_code=72112 site_time_zone_utc_offset=-6 +County "AR, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500690.epw site_zip_code=71603 site_time_zone_utc_offset=-6 +County "AR, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500710.epw site_zip_code=72830 site_time_zone_utc_offset=-6 +County "AR, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500730.epw site_zip_code=71860 site_time_zone_utc_offset=-6 +County "AR, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500750.epw site_zip_code=72476 site_time_zone_utc_offset=-6 +County "AR, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500770.epw site_zip_code=72360 site_time_zone_utc_offset=-6 +County "AR, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500790.epw site_zip_code=71667 site_time_zone_utc_offset=-6 +County "AR, Little River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500810.epw site_zip_code=71822 site_time_zone_utc_offset=-6 +County "AR, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500830.epw site_zip_code=72927 site_time_zone_utc_offset=-6 +County "AR, Lonoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500850.epw site_zip_code=72023 site_time_zone_utc_offset=-6 +County "AR, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500870.epw site_zip_code=72740 site_time_zone_utc_offset=-6 +County "AR, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500890.epw site_zip_code=72687 site_time_zone_utc_offset=-6 +County "AR, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500910.epw site_zip_code=71854 site_time_zone_utc_offset=-6 +County "AR, Mississippi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500930.epw site_zip_code=72315 site_time_zone_utc_offset=-6 +County "AR, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500950.epw site_zip_code=72021 site_time_zone_utc_offset=-6 +County "AR, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500970.epw site_zip_code=71957 site_time_zone_utc_offset=-6 +County "AR, Nevada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500990.epw site_zip_code=71857 site_time_zone_utc_offset=-6 +County "AR, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501010.epw site_zip_code=72641 site_time_zone_utc_offset=-6 +County "AR, Ouachita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501030.epw site_zip_code=71701 site_time_zone_utc_offset=-6 +County "AR, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501050.epw site_zip_code=72126 site_time_zone_utc_offset=-6 +County "AR, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501070.epw site_zip_code=72390 site_time_zone_utc_offset=-6 +County "AR, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501090.epw site_zip_code=71943 site_time_zone_utc_offset=-6 +County "AR, Poinsett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501110.epw site_zip_code=72472 site_time_zone_utc_offset=-6 +County "AR, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501130.epw site_zip_code=71953 site_time_zone_utc_offset=-6 +County "AR, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501150.epw site_zip_code=72802 site_time_zone_utc_offset=-6 +County "AR, Prairie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501170.epw site_zip_code=72040 site_time_zone_utc_offset=-6 +County "AR, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501190.epw site_zip_code=72076 site_time_zone_utc_offset=-6 +County "AR, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501210.epw site_zip_code=72455 site_time_zone_utc_offset=-6 +County "AR, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501250.epw site_zip_code=72019 site_time_zone_utc_offset=-6 +County "AR, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501270.epw site_zip_code=72958 site_time_zone_utc_offset=-6 +County "AR, Searcy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501290.epw site_zip_code=72650 site_time_zone_utc_offset=-6 +County "AR, Sebastian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501310.epw site_zip_code=72903 site_time_zone_utc_offset=-6 +County "AR, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501330.epw site_zip_code=71832 site_time_zone_utc_offset=-6 +County "AR, Sharp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501350.epw site_zip_code=72529 site_time_zone_utc_offset=-6 +County "AR, St. Francis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501230.epw site_zip_code=72335 site_time_zone_utc_offset=-6 +County "AR, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501370.epw site_zip_code=72560 site_time_zone_utc_offset=-6 +County "AR, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501390.epw site_zip_code=71730 site_time_zone_utc_offset=-6 +County "AR, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501410.epw site_zip_code=72031 site_time_zone_utc_offset=-6 +County "AR, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501430.epw site_zip_code=72701 site_time_zone_utc_offset=-6 +County "AR, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501450.epw site_zip_code=72143 site_time_zone_utc_offset=-6 +County "AR, Woodruff County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501470.epw site_zip_code=72006 site_time_zone_utc_offset=-6 +County "AR, Yell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501490.epw site_zip_code=72834 site_time_zone_utc_offset=-6 +County "AZ, Apache County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400010.epw site_zip_code=85936 site_time_zone_utc_offset=-7 +County "AZ, Cochise County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400030.epw site_zip_code=85635 site_time_zone_utc_offset=-7 +County "AZ, Coconino County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400050.epw site_zip_code=86001 site_time_zone_utc_offset=-7 +County "AZ, Gila County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400070.epw site_zip_code=85541 site_time_zone_utc_offset=-7 +County "AZ, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400090.epw site_zip_code=85546 site_time_zone_utc_offset=-7 +County "AZ, Greenlee County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400110.epw site_zip_code=85534 site_time_zone_utc_offset=-7 +County "AZ, La Paz County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400120.epw site_zip_code=85344 site_time_zone_utc_offset=-7 +County "AZ, Maricopa County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400130.epw site_zip_code=85281 site_time_zone_utc_offset=-7 +County "AZ, Mohave County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400150.epw site_zip_code=86442 site_time_zone_utc_offset=-7 +County "AZ, Navajo County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400170.epw site_zip_code=85901 site_time_zone_utc_offset=-7 +County "AZ, Pima County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400190.epw site_zip_code=85705 site_time_zone_utc_offset=-7 +County "AZ, Pinal County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400210.epw site_zip_code=85122 site_time_zone_utc_offset=-7 +County "AZ, Santa Cruz County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400230.epw site_zip_code=85621 site_time_zone_utc_offset=-7 +County "AZ, Yavapai County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400250.epw site_zip_code=86314 site_time_zone_utc_offset=-7 +County "AZ, Yuma County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400270.epw site_zip_code=85364 site_time_zone_utc_offset=-7 +County "CA, Alameda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600010.epw site_zip_code=94501 site_time_zone_utc_offset=-8 +County "CA, Alpine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600030.epw site_zip_code=96120 site_time_zone_utc_offset=-8 +County "CA, Amador County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600050.epw site_zip_code=95642 site_time_zone_utc_offset=-8 +County "CA, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600070.epw site_zip_code=95928 site_time_zone_utc_offset=-8 +County "CA, Calaveras County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600090.epw site_zip_code=95252 site_time_zone_utc_offset=-8 +County "CA, Colusa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600110.epw site_zip_code=95932 site_time_zone_utc_offset=-8 +County "CA, Contra Costa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600130.epw site_zip_code=94565 site_time_zone_utc_offset=-8 +County "CA, Del Norte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600150.epw site_zip_code=95531 site_time_zone_utc_offset=-8 +County "CA, El Dorado County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600170.epw site_zip_code=95762 site_time_zone_utc_offset=-8 +County "CA, Fresno County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600190.epw site_zip_code=93722 site_time_zone_utc_offset=-8 +County "CA, Glenn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600210.epw site_zip_code=95963 site_time_zone_utc_offset=-8 +County "CA, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600230.epw site_zip_code=95501 site_time_zone_utc_offset=-8 +County "CA, Imperial County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600250.epw site_zip_code=92243 site_time_zone_utc_offset=-8 +County "CA, Inyo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600270.epw site_zip_code=93514 site_time_zone_utc_offset=-8 +County "CA, Kern County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600290.epw site_zip_code=93306 site_time_zone_utc_offset=-8 +County "CA, Kings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600310.epw site_zip_code=93230 site_time_zone_utc_offset=-8 +County "CA, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600330.epw site_zip_code=95422 site_time_zone_utc_offset=-8 +County "CA, Lassen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600350.epw site_zip_code=96130 site_time_zone_utc_offset=-8 +County "CA, Los Angeles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600370.epw site_zip_code=90250 site_time_zone_utc_offset=-8 +County "CA, Madera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600390.epw site_zip_code=93637 site_time_zone_utc_offset=-8 +County "CA, Marin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600410.epw site_zip_code=94901 site_time_zone_utc_offset=-8 +County "CA, Mariposa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600430.epw site_zip_code=95338 site_time_zone_utc_offset=-8 +County "CA, Mendocino County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600450.epw site_zip_code=95482 site_time_zone_utc_offset=-8 +County "CA, Merced County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600470.epw site_zip_code=93635 site_time_zone_utc_offset=-8 +County "CA, Modoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600490.epw site_zip_code=96101 site_time_zone_utc_offset=-8 +County "CA, Mono County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600510.epw site_zip_code=93546 site_time_zone_utc_offset=-8 +County "CA, Monterey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600530.epw site_zip_code=93906 site_time_zone_utc_offset=-8 +County "CA, Napa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600550.epw site_zip_code=94558 site_time_zone_utc_offset=-8 +County "CA, Nevada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600570.epw site_zip_code=95945 site_time_zone_utc_offset=-8 +County "CA, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600590.epw site_zip_code=92683 site_time_zone_utc_offset=-8 +County "CA, Placer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600610.epw site_zip_code=95747 site_time_zone_utc_offset=-8 +County "CA, Plumas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600630.epw site_zip_code=96122 site_time_zone_utc_offset=-8 +County "CA, Riverside County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600650.epw site_zip_code=92503 site_time_zone_utc_offset=-8 +County "CA, Sacramento County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600670.epw site_zip_code=95630 site_time_zone_utc_offset=-8 +County "CA, San Benito County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600690.epw site_zip_code=95023 site_time_zone_utc_offset=-8 +County "CA, San Bernardino County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600710.epw site_zip_code=92336 site_time_zone_utc_offset=-8 +County "CA, San Diego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600730.epw site_zip_code=92101 site_time_zone_utc_offset=-8 +County "CA, San Francisco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600750.epw site_zip_code=94109 site_time_zone_utc_offset=-8 +County "CA, San Joaquin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600770.epw site_zip_code=95206 site_time_zone_utc_offset=-8 +County "CA, San Luis Obispo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600790.epw site_zip_code=93446 site_time_zone_utc_offset=-8 +County "CA, San Mateo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600810.epw site_zip_code=94080 site_time_zone_utc_offset=-8 +County "CA, Santa Barbara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600830.epw site_zip_code=93436 site_time_zone_utc_offset=-8 +County "CA, Santa Clara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600850.epw site_zip_code=95035 site_time_zone_utc_offset=-8 +County "CA, Santa Cruz County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600870.epw site_zip_code=95076 site_time_zone_utc_offset=-8 +County "CA, Shasta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600890.epw site_zip_code=96003 site_time_zone_utc_offset=-8 +County "CA, Sierra County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600910.epw site_zip_code=95960 site_time_zone_utc_offset=-8 +County "CA, Siskiyou County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600930.epw site_zip_code=96097 site_time_zone_utc_offset=-8 +County "CA, Solano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600950.epw site_zip_code=94533 site_time_zone_utc_offset=-8 +County "CA, Sonoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600970.epw site_zip_code=95403 site_time_zone_utc_offset=-8 +County "CA, Stanislaus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600990.epw site_zip_code=95355 site_time_zone_utc_offset=-8 +County "CA, Sutter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601010.epw site_zip_code=95991 site_time_zone_utc_offset=-8 +County "CA, Tehama County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601030.epw site_zip_code=96080 site_time_zone_utc_offset=-8 +County "CA, Trinity County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601050.epw site_zip_code=96091 site_time_zone_utc_offset=-8 +County "CA, Tulare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601070.epw site_zip_code=93274 site_time_zone_utc_offset=-8 +County "CA, Tuolumne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601090.epw site_zip_code=95370 site_time_zone_utc_offset=-8 +County "CA, Ventura County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601110.epw site_zip_code=93065 site_time_zone_utc_offset=-8 +County "CA, Yolo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601130.epw site_zip_code=95616 site_time_zone_utc_offset=-8 +County "CA, Yuba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601150.epw site_zip_code=95901 site_time_zone_utc_offset=-8 +County "CO, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800010.epw site_zip_code=80229 site_time_zone_utc_offset=-7 +County "CO, Alamosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800030.epw site_zip_code=81101 site_time_zone_utc_offset=-7 +County "CO, Arapahoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800050.epw site_zip_code=80013 site_time_zone_utc_offset=-7 +County "CO, Archuleta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800070.epw site_zip_code=81147 site_time_zone_utc_offset=-7 +County "CO, Baca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800090.epw site_zip_code=81073 site_time_zone_utc_offset=-7 +County "CO, Bent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800110.epw site_zip_code=81054 site_time_zone_utc_offset=-7 +County "CO, Boulder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800130.epw site_zip_code=80501 site_time_zone_utc_offset=-7 +County "CO, Broomfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800140.epw site_zip_code=80020 site_time_zone_utc_offset=-7 +County "CO, Chaffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800150.epw site_zip_code=81201 site_time_zone_utc_offset=-7 +County "CO, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800170.epw site_zip_code=80810 site_time_zone_utc_offset=-7 +County "CO, Clear Creek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800190.epw site_zip_code=80439 site_time_zone_utc_offset=-7 +County "CO, Conejos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800210.epw site_zip_code=81120 site_time_zone_utc_offset=-7 +County "CO, Costilla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800230.epw site_zip_code=81133 site_time_zone_utc_offset=-7 +County "CO, Crowley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800250.epw site_zip_code=81063 site_time_zone_utc_offset=-7 +County "CO, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800270.epw site_zip_code=81252 site_time_zone_utc_offset=-7 +County "CO, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800290.epw site_zip_code=81416 site_time_zone_utc_offset=-7 +County "CO, Denver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800310.epw site_zip_code=80211 site_time_zone_utc_offset=-7 +County "CO, Dolores County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800330.epw site_zip_code=81324 site_time_zone_utc_offset=-7 +County "CO, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800350.epw site_zip_code=80134 site_time_zone_utc_offset=-7 +County "CO, Eagle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800370.epw site_zip_code=81620 site_time_zone_utc_offset=-7 +County "CO, El Paso County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800410.epw site_zip_code=80918 site_time_zone_utc_offset=-7 +County "CO, Elbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800390.epw site_zip_code=80107 site_time_zone_utc_offset=-7 +County "CO, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800430.epw site_zip_code=81212 site_time_zone_utc_offset=-7 +County "CO, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800450.epw site_zip_code=81601 site_time_zone_utc_offset=-7 +County "CO, Gilpin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800470.epw site_zip_code=80422 site_time_zone_utc_offset=-7 +County "CO, Grand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800490.epw site_zip_code=80459 site_time_zone_utc_offset=-7 +County "CO, Gunnison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800510.epw site_zip_code=81230 site_time_zone_utc_offset=-7 +County "CO, Hinsdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800530.epw site_zip_code=81235 site_time_zone_utc_offset=-7 +County "CO, Huerfano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800550.epw site_zip_code=81089 site_time_zone_utc_offset=-7 +County "CO, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800570.epw site_zip_code=80480 site_time_zone_utc_offset=-7 +County "CO, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800590.epw site_zip_code=80127 site_time_zone_utc_offset=-7 +County "CO, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800610.epw site_zip_code=81036 site_time_zone_utc_offset=-7 +County "CO, Kit Carson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800630.epw site_zip_code=80807 site_time_zone_utc_offset=-7 +County "CO, La Plata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800670.epw site_zip_code=81301 site_time_zone_utc_offset=-7 +County "CO, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800650.epw site_zip_code=80461 site_time_zone_utc_offset=-7 +County "CO, Larimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800690.epw site_zip_code=80525 site_time_zone_utc_offset=-7 +County "CO, Las Animas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800710.epw site_zip_code=81082 site_time_zone_utc_offset=-7 +County "CO, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800730.epw site_zip_code=80828 site_time_zone_utc_offset=-7 +County "CO, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800750.epw site_zip_code=80751 site_time_zone_utc_offset=-7 +County "CO, Mesa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800770.epw site_zip_code=81504 site_time_zone_utc_offset=-7 +County "CO, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800790.epw site_zip_code=81130 site_time_zone_utc_offset=-7 +County "CO, Moffat County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800810.epw site_zip_code=81625 site_time_zone_utc_offset=-7 +County "CO, Montezuma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800830.epw site_zip_code=81321 site_time_zone_utc_offset=-7 +County "CO, Montrose County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800850.epw site_zip_code=81401 site_time_zone_utc_offset=-7 +County "CO, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800870.epw site_zip_code=80701 site_time_zone_utc_offset=-7 +County "CO, Otero County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800890.epw site_zip_code=81050 site_time_zone_utc_offset=-7 +County "CO, Ouray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800910.epw site_zip_code=81432 site_time_zone_utc_offset=-7 +County "CO, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800930.epw site_zip_code=80421 site_time_zone_utc_offset=-7 +County "CO, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800950.epw site_zip_code=80734 site_time_zone_utc_offset=-7 +County "CO, Pitkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800970.epw site_zip_code=81612 site_time_zone_utc_offset=-7 +County "CO, Prowers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800990.epw site_zip_code=81052 site_time_zone_utc_offset=-7 +County "CO, Pueblo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801010.epw site_zip_code=81001 site_time_zone_utc_offset=-7 +County "CO, Rio Blanco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801030.epw site_zip_code=81648 site_time_zone_utc_offset=-7 +County "CO, Rio Grande County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801050.epw site_zip_code=81144 site_time_zone_utc_offset=-7 +County "CO, Routt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801070.epw site_zip_code=80487 site_time_zone_utc_offset=-7 +County "CO, Saguache County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801090.epw site_zip_code=81125 site_time_zone_utc_offset=-7 +County "CO, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801110.epw site_zip_code=81433 site_time_zone_utc_offset=-7 +County "CO, San Miguel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801130.epw site_zip_code=81435 site_time_zone_utc_offset=-7 +County "CO, Sedgwick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801150.epw site_zip_code=80737 site_time_zone_utc_offset=-7 +County "CO, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801170.epw site_zip_code=80424 site_time_zone_utc_offset=-7 +County "CO, Teller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801190.epw site_zip_code=80863 site_time_zone_utc_offset=-7 +County "CO, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801210.epw site_zip_code=80720 site_time_zone_utc_offset=-7 +County "CO, Weld County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801230.epw site_zip_code=80634 site_time_zone_utc_offset=-7 +County "CO, Yuma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801250.epw site_zip_code=80759 site_time_zone_utc_offset=-7 +County "CT, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900010.epw site_zip_code=06902 site_time_zone_utc_offset=-5 +County "CT, Hartford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900030.epw site_zip_code=06010 site_time_zone_utc_offset=-5 +County "CT, Litchfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900050.epw site_zip_code=06790 site_time_zone_utc_offset=-5 +County "CT, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900070.epw site_zip_code=06457 site_time_zone_utc_offset=-5 +County "CT, New Haven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900090.epw site_zip_code=06516 site_time_zone_utc_offset=-5 +County "CT, New London County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900110.epw site_zip_code=06360 site_time_zone_utc_offset=-5 +County "CT, Tolland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900130.epw site_zip_code=06066 site_time_zone_utc_offset=-5 +County "CT, Windham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900150.epw site_zip_code=06226 site_time_zone_utc_offset=-5 +County "DC, District of Columbia" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1100010.epw site_zip_code=20002 site_time_zone_utc_offset=-5 +County "DE, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000010.epw site_zip_code=19904 site_time_zone_utc_offset=-5 +County "DE, New Castle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000030.epw site_zip_code=19720 site_time_zone_utc_offset=-5 +County "DE, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000050.epw site_zip_code=19966 site_time_zone_utc_offset=-5 +County "FL, Alachua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200010.epw site_zip_code=32608 site_time_zone_utc_offset=-5 +County "FL, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200030.epw site_zip_code=32063 site_time_zone_utc_offset=-5 +County "FL, Bay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200050.epw site_zip_code=32404 site_time_zone_utc_offset=-6 +County "FL, Bradford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200070.epw site_zip_code=32091 site_time_zone_utc_offset=-5 +County "FL, Brevard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200090.epw site_zip_code=32940 site_time_zone_utc_offset=-5 +County "FL, Broward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200110.epw site_zip_code=33027 site_time_zone_utc_offset=-5 +County "FL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200130.epw site_zip_code=32424 site_time_zone_utc_offset=-6 +County "FL, Charlotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200150.epw site_zip_code=33950 site_time_zone_utc_offset=-5 +County "FL, Citrus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200170.epw site_zip_code=34446 site_time_zone_utc_offset=-5 +County "FL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200190.epw site_zip_code=32068 site_time_zone_utc_offset=-5 +County "FL, Collier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200210.epw site_zip_code=34112 site_time_zone_utc_offset=-5 +County "FL, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200230.epw site_zip_code=32025 site_time_zone_utc_offset=-5 +County "FL, DeSoto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200270.epw site_zip_code=34266 site_time_zone_utc_offset=-5 +County "FL, Dixie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200290.epw site_zip_code=32680 site_time_zone_utc_offset=-5 +County "FL, Duval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200310.epw site_zip_code=32256 site_time_zone_utc_offset=-5 +County "FL, Escambia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200330.epw site_zip_code=32507 site_time_zone_utc_offset=-6 +County "FL, Flagler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200350.epw site_zip_code=32137 site_time_zone_utc_offset=-5 +County "FL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200370.epw site_zip_code=32328 site_time_zone_utc_offset=-5 +County "FL, Gadsden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200390.epw site_zip_code=32351 site_time_zone_utc_offset=-5 +County "FL, Gilchrist County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200410.epw site_zip_code=32693 site_time_zone_utc_offset=-5 +County "FL, Glades County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200430.epw site_zip_code=33471 site_time_zone_utc_offset=-5 +County "FL, Gulf County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200450.epw site_zip_code=32456 site_time_zone_utc_offset=-6 +County "FL, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200470.epw site_zip_code=32052 site_time_zone_utc_offset=-5 +County "FL, Hardee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200490.epw site_zip_code=33873 site_time_zone_utc_offset=-5 +County "FL, Hendry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200510.epw site_zip_code=33440 site_time_zone_utc_offset=-5 +County "FL, Hernando County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200530.epw site_zip_code=34609 site_time_zone_utc_offset=-5 +County "FL, Highlands County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200550.epw site_zip_code=33870 site_time_zone_utc_offset=-5 +County "FL, Hillsborough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200570.epw site_zip_code=33647 site_time_zone_utc_offset=-5 +County "FL, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200590.epw site_zip_code=32425 site_time_zone_utc_offset=-6 +County "FL, Indian River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200610.epw site_zip_code=32958 site_time_zone_utc_offset=-5 +County "FL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200630.epw site_zip_code=32446 site_time_zone_utc_offset=-6 +County "FL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200650.epw site_zip_code=32344 site_time_zone_utc_offset=-5 +County "FL, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200670.epw site_zip_code=32066 site_time_zone_utc_offset=-5 +County "FL, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200690.epw site_zip_code=34711 site_time_zone_utc_offset=-5 +County "FL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200710.epw site_zip_code=34135 site_time_zone_utc_offset=-5 +County "FL, Leon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200730.epw site_zip_code=32303 site_time_zone_utc_offset=-5 +County "FL, Levy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200750.epw site_zip_code=32696 site_time_zone_utc_offset=-5 +County "FL, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200770.epw site_zip_code=32321 site_time_zone_utc_offset=-5 +County "FL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200790.epw site_zip_code=32340 site_time_zone_utc_offset=-5 +County "FL, Manatee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200810.epw site_zip_code=34221 site_time_zone_utc_offset=-5 +County "FL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200830.epw site_zip_code=34491 site_time_zone_utc_offset=-5 +County "FL, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200850.epw site_zip_code=34997 site_time_zone_utc_offset=-5 +County "FL, Miami-Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200860.epw site_zip_code=33160 site_time_zone_utc_offset=-5 +County "FL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200870.epw site_zip_code=33040 site_time_zone_utc_offset=-5 +County "FL, Nassau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200890.epw site_zip_code=32034 site_time_zone_utc_offset=-5 +County "FL, Okaloosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200910.epw site_zip_code=32541 site_time_zone_utc_offset=-6 +County "FL, Okeechobee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200930.epw site_zip_code=34974 site_time_zone_utc_offset=-5 +County "FL, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200950.epw site_zip_code=34787 site_time_zone_utc_offset=-5 +County "FL, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200970.epw site_zip_code=34746 site_time_zone_utc_offset=-5 +County "FL, Palm Beach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200990.epw site_zip_code=33411 site_time_zone_utc_offset=-5 +County "FL, Pasco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201010.epw site_zip_code=34668 site_time_zone_utc_offset=-5 +County "FL, Pinellas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201030.epw site_zip_code=34698 site_time_zone_utc_offset=-5 +County "FL, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201050.epw site_zip_code=33810 site_time_zone_utc_offset=-5 +County "FL, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201070.epw site_zip_code=32177 site_time_zone_utc_offset=-5 +County "FL, Santa Rosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201130.epw site_zip_code=32566 site_time_zone_utc_offset=-6 +County "FL, Sarasota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201150.epw site_zip_code=34293 site_time_zone_utc_offset=-5 +County "FL, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201170.epw site_zip_code=32771 site_time_zone_utc_offset=-5 +County "FL, St. Johns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201090.epw site_zip_code=32259 site_time_zone_utc_offset=-5 +County "FL, St. Lucie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201110.epw site_zip_code=34953 site_time_zone_utc_offset=-5 +County "FL, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201190.epw site_zip_code=32162 site_time_zone_utc_offset=-5 +County "FL, Suwannee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201210.epw site_zip_code=32060 site_time_zone_utc_offset=-5 +County "FL, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201230.epw site_zip_code=32348 site_time_zone_utc_offset=-5 +County "FL, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201250.epw site_zip_code=32054 site_time_zone_utc_offset=-5 +County "FL, Volusia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201270.epw site_zip_code=32174 site_time_zone_utc_offset=-5 +County "FL, Wakulla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201290.epw site_zip_code=32327 site_time_zone_utc_offset=-5 +County "FL, Walton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201310.epw site_zip_code=32459 site_time_zone_utc_offset=-6 +County "FL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201330.epw site_zip_code=32428 site_time_zone_utc_offset=-6 +County "GA, Appling County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300010.epw site_zip_code=31513 site_time_zone_utc_offset=-5 +County "GA, Atkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300030.epw site_zip_code=31642 site_time_zone_utc_offset=-5 +County "GA, Bacon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300050.epw site_zip_code=31510 site_time_zone_utc_offset=-5 +County "GA, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300070.epw site_zip_code=39870 site_time_zone_utc_offset=-5 +County "GA, Baldwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300090.epw site_zip_code=31061 site_time_zone_utc_offset=-5 +County "GA, Banks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300110.epw site_zip_code=30547 site_time_zone_utc_offset=-5 +County "GA, Barrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300130.epw site_zip_code=30680 site_time_zone_utc_offset=-5 +County "GA, Bartow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300150.epw site_zip_code=30120 site_time_zone_utc_offset=-5 +County "GA, Ben Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300170.epw site_zip_code=31750 site_time_zone_utc_offset=-5 +County "GA, Berrien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300190.epw site_zip_code=31639 site_time_zone_utc_offset=-5 +County "GA, Bibb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300210.epw site_zip_code=31204 site_time_zone_utc_offset=-5 +County "GA, Bleckley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300230.epw site_zip_code=31014 site_time_zone_utc_offset=-5 +County "GA, Brantley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300250.epw site_zip_code=31553 site_time_zone_utc_offset=-5 +County "GA, Brooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300270.epw site_zip_code=31643 site_time_zone_utc_offset=-5 +County "GA, Bryan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300290.epw site_zip_code=31324 site_time_zone_utc_offset=-5 +County "GA, Bulloch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300310.epw site_zip_code=30458 site_time_zone_utc_offset=-5 +County "GA, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300330.epw site_zip_code=30830 site_time_zone_utc_offset=-5 +County "GA, Butts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300350.epw site_zip_code=30233 site_time_zone_utc_offset=-5 +County "GA, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300370.epw site_zip_code=39846 site_time_zone_utc_offset=-5 +County "GA, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300390.epw site_zip_code=31558 site_time_zone_utc_offset=-5 +County "GA, Candler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300430.epw site_zip_code=30439 site_time_zone_utc_offset=-5 +County "GA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300450.epw site_zip_code=30117 site_time_zone_utc_offset=-5 +County "GA, Catoosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300470.epw site_zip_code=30736 site_time_zone_utc_offset=-5 +County "GA, Charlton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300490.epw site_zip_code=31537 site_time_zone_utc_offset=-5 +County "GA, Chatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300510.epw site_zip_code=31419 site_time_zone_utc_offset=-5 +County "GA, Chattahoochee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300530.epw site_zip_code=31905 site_time_zone_utc_offset=-5 +County "GA, Chattooga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300550.epw site_zip_code=30747 site_time_zone_utc_offset=-5 +County "GA, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300570.epw site_zip_code=30188 site_time_zone_utc_offset=-5 +County "GA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300590.epw site_zip_code=30606 site_time_zone_utc_offset=-5 +County "GA, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300610.epw site_zip_code=39851 site_time_zone_utc_offset=-5 +County "GA, Clayton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300630.epw site_zip_code=30236 site_time_zone_utc_offset=-5 +County "GA, Clinch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300650.epw site_zip_code=31634 site_time_zone_utc_offset=-5 +County "GA, Cobb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300670.epw site_zip_code=30080 site_time_zone_utc_offset=-5 +County "GA, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300690.epw site_zip_code=31533 site_time_zone_utc_offset=-5 +County "GA, Colquitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300710.epw site_zip_code=31768 site_time_zone_utc_offset=-5 +County "GA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300730.epw site_zip_code=30809 site_time_zone_utc_offset=-5 +County "GA, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300750.epw site_zip_code=31620 site_time_zone_utc_offset=-5 +County "GA, Coweta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300770.epw site_zip_code=30263 site_time_zone_utc_offset=-5 +County "GA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300790.epw site_zip_code=31078 site_time_zone_utc_offset=-5 +County "GA, Crisp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300810.epw site_zip_code=31015 site_time_zone_utc_offset=-5 +County "GA, Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300830.epw site_zip_code=30752 site_time_zone_utc_offset=-5 +County "GA, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300850.epw site_zip_code=30534 site_time_zone_utc_offset=-5 +County "GA, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300890.epw site_zip_code=30058 site_time_zone_utc_offset=-5 +County "GA, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300870.epw site_zip_code=39819 site_time_zone_utc_offset=-5 +County "GA, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300910.epw site_zip_code=31023 site_time_zone_utc_offset=-5 +County "GA, Dooly County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300930.epw site_zip_code=31092 site_time_zone_utc_offset=-5 +County "GA, Dougherty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300950.epw site_zip_code=31705 site_time_zone_utc_offset=-5 +County "GA, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300970.epw site_zip_code=30135 site_time_zone_utc_offset=-5 +County "GA, Early County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300990.epw site_zip_code=39823 site_time_zone_utc_offset=-5 +County "GA, Echols County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301010.epw site_zip_code=31636 site_time_zone_utc_offset=-5 +County "GA, Effingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301030.epw site_zip_code=31326 site_time_zone_utc_offset=-5 +County "GA, Elbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301050.epw site_zip_code=30635 site_time_zone_utc_offset=-5 +County "GA, Emanuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301070.epw site_zip_code=30401 site_time_zone_utc_offset=-5 +County "GA, Evans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301090.epw site_zip_code=30417 site_time_zone_utc_offset=-5 +County "GA, Fannin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301110.epw site_zip_code=30513 site_time_zone_utc_offset=-5 +County "GA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301130.epw site_zip_code=30269 site_time_zone_utc_offset=-5 +County "GA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301150.epw site_zip_code=30165 site_time_zone_utc_offset=-5 +County "GA, Forsyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301170.epw site_zip_code=30040 site_time_zone_utc_offset=-5 +County "GA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301190.epw site_zip_code=30553 site_time_zone_utc_offset=-5 +County "GA, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301210.epw site_zip_code=30318 site_time_zone_utc_offset=-5 +County "GA, Gilmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301230.epw site_zip_code=30540 site_time_zone_utc_offset=-5 +County "GA, Glascock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301250.epw site_zip_code=30810 site_time_zone_utc_offset=-5 +County "GA, Glynn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301270.epw site_zip_code=31525 site_time_zone_utc_offset=-5 +County "GA, Gordon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301290.epw site_zip_code=30701 site_time_zone_utc_offset=-5 +County "GA, Grady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301310.epw site_zip_code=39828 site_time_zone_utc_offset=-5 +County "GA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301330.epw site_zip_code=30642 site_time_zone_utc_offset=-5 +County "GA, Gwinnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301350.epw site_zip_code=30044 site_time_zone_utc_offset=-5 +County "GA, Habersham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301370.epw site_zip_code=30531 site_time_zone_utc_offset=-5 +County "GA, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301390.epw site_zip_code=30542 site_time_zone_utc_offset=-5 +County "GA, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301410.epw site_zip_code=31087 site_time_zone_utc_offset=-5 +County "GA, Haralson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301430.epw site_zip_code=30110 site_time_zone_utc_offset=-5 +County "GA, Harris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301450.epw site_zip_code=31804 site_time_zone_utc_offset=-5 +County "GA, Hart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301470.epw site_zip_code=30643 site_time_zone_utc_offset=-5 +County "GA, Heard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301490.epw site_zip_code=30217 site_time_zone_utc_offset=-5 +County "GA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301510.epw site_zip_code=30253 site_time_zone_utc_offset=-5 +County "GA, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301530.epw site_zip_code=31088 site_time_zone_utc_offset=-5 +County "GA, Irwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301550.epw site_zip_code=31774 site_time_zone_utc_offset=-5 +County "GA, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301570.epw site_zip_code=30549 site_time_zone_utc_offset=-5 +County "GA, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301590.epw site_zip_code=31064 site_time_zone_utc_offset=-5 +County "GA, Jeff Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301610.epw site_zip_code=31539 site_time_zone_utc_offset=-5 +County "GA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301630.epw site_zip_code=30434 site_time_zone_utc_offset=-5 +County "GA, Jenkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301650.epw site_zip_code=30442 site_time_zone_utc_offset=-5 +County "GA, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301670.epw site_zip_code=31096 site_time_zone_utc_offset=-5 +County "GA, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301690.epw site_zip_code=31032 site_time_zone_utc_offset=-5 +County "GA, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301710.epw site_zip_code=30204 site_time_zone_utc_offset=-5 +County "GA, Lanier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301730.epw site_zip_code=31635 site_time_zone_utc_offset=-5 +County "GA, Laurens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301750.epw site_zip_code=31021 site_time_zone_utc_offset=-5 +County "GA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301770.epw site_zip_code=31763 site_time_zone_utc_offset=-5 +County "GA, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301790.epw site_zip_code=31313 site_time_zone_utc_offset=-5 +County "GA, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301810.epw site_zip_code=30817 site_time_zone_utc_offset=-5 +County "GA, Long County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301830.epw site_zip_code=31316 site_time_zone_utc_offset=-5 +County "GA, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301850.epw site_zip_code=31601 site_time_zone_utc_offset=-5 +County "GA, Lumpkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301870.epw site_zip_code=30533 site_time_zone_utc_offset=-5 +County "GA, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301930.epw site_zip_code=31063 site_time_zone_utc_offset=-5 +County "GA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301950.epw site_zip_code=30633 site_time_zone_utc_offset=-5 +County "GA, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301970.epw site_zip_code=31803 site_time_zone_utc_offset=-5 +County "GA, McDuffie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301890.epw site_zip_code=30824 site_time_zone_utc_offset=-5 +County "GA, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301910.epw site_zip_code=31331 site_time_zone_utc_offset=-5 +County "GA, Meriwether County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301990.epw site_zip_code=31816 site_time_zone_utc_offset=-5 +County "GA, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302010.epw site_zip_code=39837 site_time_zone_utc_offset=-5 +County "GA, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302050.epw site_zip_code=31730 site_time_zone_utc_offset=-5 +County "GA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302070.epw site_zip_code=31029 site_time_zone_utc_offset=-5 +County "GA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302090.epw site_zip_code=30445 site_time_zone_utc_offset=-5 +County "GA, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302110.epw site_zip_code=30650 site_time_zone_utc_offset=-5 +County "GA, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302130.epw site_zip_code=30705 site_time_zone_utc_offset=-5 +County "GA, Muscogee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302150.epw site_zip_code=31907 site_time_zone_utc_offset=-5 +County "GA, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302170.epw site_zip_code=30016 site_time_zone_utc_offset=-5 +County "GA, Oconee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302190.epw site_zip_code=30677 site_time_zone_utc_offset=-5 +County "GA, Oglethorpe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302210.epw site_zip_code=30683 site_time_zone_utc_offset=-5 +County "GA, Paulding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302230.epw site_zip_code=30132 site_time_zone_utc_offset=-5 +County "GA, Peach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302250.epw site_zip_code=31030 site_time_zone_utc_offset=-5 +County "GA, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302270.epw site_zip_code=30143 site_time_zone_utc_offset=-5 +County "GA, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302290.epw site_zip_code=31516 site_time_zone_utc_offset=-5 +County "GA, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302310.epw site_zip_code=30292 site_time_zone_utc_offset=-5 +County "GA, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302330.epw site_zip_code=30125 site_time_zone_utc_offset=-5 +County "GA, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302350.epw site_zip_code=31036 site_time_zone_utc_offset=-5 +County "GA, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302370.epw site_zip_code=31024 site_time_zone_utc_offset=-5 +County "GA, Quitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302390.epw site_zip_code=39854 site_time_zone_utc_offset=-5 +County "GA, Rabun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302410.epw site_zip_code=30525 site_time_zone_utc_offset=-5 +County "GA, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302430.epw site_zip_code=39840 site_time_zone_utc_offset=-5 +County "GA, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302450.epw site_zip_code=30909 site_time_zone_utc_offset=-5 +County "GA, Rockdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302470.epw site_zip_code=30094 site_time_zone_utc_offset=-5 +County "GA, Schley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302490.epw site_zip_code=31806 site_time_zone_utc_offset=-5 +County "GA, Screven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302510.epw site_zip_code=30467 site_time_zone_utc_offset=-5 +County "GA, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302530.epw site_zip_code=39845 site_time_zone_utc_offset=-5 +County "GA, Spalding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302550.epw site_zip_code=30223 site_time_zone_utc_offset=-5 +County "GA, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302570.epw site_zip_code=30577 site_time_zone_utc_offset=-5 +County "GA, Stewart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302590.epw site_zip_code=31825 site_time_zone_utc_offset=-5 +County "GA, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302610.epw site_zip_code=31709 site_time_zone_utc_offset=-5 +County "GA, Talbot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302630.epw site_zip_code=31827 site_time_zone_utc_offset=-5 +County "GA, Taliaferro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302650.epw site_zip_code=30631 site_time_zone_utc_offset=-5 +County "GA, Tattnall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302670.epw site_zip_code=30427 site_time_zone_utc_offset=-5 +County "GA, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302690.epw site_zip_code=31006 site_time_zone_utc_offset=-5 +County "GA, Telfair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302710.epw site_zip_code=31055 site_time_zone_utc_offset=-5 +County "GA, Terrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302730.epw site_zip_code=39842 site_time_zone_utc_offset=-5 +County "GA, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302750.epw site_zip_code=31792 site_time_zone_utc_offset=-5 +County "GA, Tift County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302770.epw site_zip_code=31794 site_time_zone_utc_offset=-5 +County "GA, Toombs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302790.epw site_zip_code=30474 site_time_zone_utc_offset=-5 +County "GA, Towns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302810.epw site_zip_code=30546 site_time_zone_utc_offset=-5 +County "GA, Treutlen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302830.epw site_zip_code=30457 site_time_zone_utc_offset=-5 +County "GA, Troup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302850.epw site_zip_code=30241 site_time_zone_utc_offset=-5 +County "GA, Turner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302870.epw site_zip_code=31714 site_time_zone_utc_offset=-5 +County "GA, Twiggs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302890.epw site_zip_code=31044 site_time_zone_utc_offset=-5 +County "GA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302910.epw site_zip_code=30512 site_time_zone_utc_offset=-5 +County "GA, Upson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302930.epw site_zip_code=30286 site_time_zone_utc_offset=-5 +County "GA, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302950.epw site_zip_code=30741 site_time_zone_utc_offset=-5 +County "GA, Walton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302970.epw site_zip_code=30052 site_time_zone_utc_offset=-5 +County "GA, Ware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302990.epw site_zip_code=31503 site_time_zone_utc_offset=-5 +County "GA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303010.epw site_zip_code=30828 site_time_zone_utc_offset=-5 +County "GA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303030.epw site_zip_code=31082 site_time_zone_utc_offset=-5 +County "GA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303050.epw site_zip_code=31545 site_time_zone_utc_offset=-5 +County "GA, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303070.epw site_zip_code=31824 site_time_zone_utc_offset=-5 +County "GA, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303090.epw site_zip_code=30428 site_time_zone_utc_offset=-5 +County "GA, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303110.epw site_zip_code=30528 site_time_zone_utc_offset=-5 +County "GA, Whitfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303130.epw site_zip_code=30721 site_time_zone_utc_offset=-5 +County "GA, Wilcox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303150.epw site_zip_code=31001 site_time_zone_utc_offset=-5 +County "GA, Wilkes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303170.epw site_zip_code=30673 site_time_zone_utc_offset=-5 +County "GA, Wilkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303190.epw site_zip_code=31031 site_time_zone_utc_offset=-5 +County "GA, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303210.epw site_zip_code=31791 site_time_zone_utc_offset=-5 +County "HI, Hawaii County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500010.epw site_zip_code=96721 site_time_zone_utc_offset=-10 +County "HI, Honolulu County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500030.epw site_zip_code=96813 site_time_zone_utc_offset=-10 +County "HI, Kalawao County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500050.epw site_zip_code=96742 site_time_zone_utc_offset=-10 +County "HI, Kauai County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500070.epw site_zip_code=96746 site_time_zone_utc_offset=-10 +County "HI, Maui County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500090.epw site_zip_code=96793 site_time_zone_utc_offset=-10 +County "IA, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900010.epw site_zip_code=50849 site_time_zone_utc_offset=-6 +County "IA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900030.epw site_zip_code=50841 site_time_zone_utc_offset=-6 +County "IA, Allamakee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900050.epw site_zip_code=52172 site_time_zone_utc_offset=-6 +County "IA, Appanoose County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900070.epw site_zip_code=52544 site_time_zone_utc_offset=-6 +County "IA, Audubon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900090.epw site_zip_code=50025 site_time_zone_utc_offset=-6 +County "IA, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900110.epw site_zip_code=52349 site_time_zone_utc_offset=-6 +County "IA, Black Hawk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900130.epw site_zip_code=50613 site_time_zone_utc_offset=-6 +County "IA, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900150.epw site_zip_code=50036 site_time_zone_utc_offset=-6 +County "IA, Bremer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900170.epw site_zip_code=50677 site_time_zone_utc_offset=-6 +County "IA, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900190.epw site_zip_code=50644 site_time_zone_utc_offset=-6 +County "IA, Buena Vista County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900210.epw site_zip_code=50588 site_time_zone_utc_offset=-6 +County "IA, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900230.epw site_zip_code=50665 site_time_zone_utc_offset=-6 +County "IA, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900250.epw site_zip_code=50563 site_time_zone_utc_offset=-6 +County "IA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900270.epw site_zip_code=51401 site_time_zone_utc_offset=-6 +County "IA, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900290.epw site_zip_code=50022 site_time_zone_utc_offset=-6 +County "IA, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900310.epw site_zip_code=52772 site_time_zone_utc_offset=-6 +County "IA, Cerro Gordo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900330.epw site_zip_code=50401 site_time_zone_utc_offset=-6 +County "IA, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900350.epw site_zip_code=51012 site_time_zone_utc_offset=-6 +County "IA, Chickasaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900370.epw site_zip_code=50659 site_time_zone_utc_offset=-6 +County "IA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900390.epw site_zip_code=50213 site_time_zone_utc_offset=-6 +County "IA, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900410.epw site_zip_code=51301 site_time_zone_utc_offset=-6 +County "IA, Clayton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900430.epw site_zip_code=52052 site_time_zone_utc_offset=-6 +County "IA, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900450.epw site_zip_code=52732 site_time_zone_utc_offset=-6 +County "IA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900470.epw site_zip_code=51442 site_time_zone_utc_offset=-6 +County "IA, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900490.epw site_zip_code=50263 site_time_zone_utc_offset=-6 +County "IA, Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900510.epw site_zip_code=52537 site_time_zone_utc_offset=-6 +County "IA, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900530.epw site_zip_code=50144 site_time_zone_utc_offset=-6 +County "IA, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900550.epw site_zip_code=52057 site_time_zone_utc_offset=-6 +County "IA, Des Moines County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900570.epw site_zip_code=52601 site_time_zone_utc_offset=-6 +County "IA, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900590.epw site_zip_code=51360 site_time_zone_utc_offset=-6 +County "IA, Dubuque County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900610.epw site_zip_code=52001 site_time_zone_utc_offset=-6 +County "IA, Emmet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900630.epw site_zip_code=51334 site_time_zone_utc_offset=-6 +County "IA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900650.epw site_zip_code=50662 site_time_zone_utc_offset=-6 +County "IA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900670.epw site_zip_code=50616 site_time_zone_utc_offset=-6 +County "IA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900690.epw site_zip_code=50441 site_time_zone_utc_offset=-6 +County "IA, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900710.epw site_zip_code=51652 site_time_zone_utc_offset=-6 +County "IA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900730.epw site_zip_code=50129 site_time_zone_utc_offset=-6 +County "IA, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900750.epw site_zip_code=50638 site_time_zone_utc_offset=-6 +County "IA, Guthrie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900770.epw site_zip_code=50216 site_time_zone_utc_offset=-6 +County "IA, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900790.epw site_zip_code=50595 site_time_zone_utc_offset=-6 +County "IA, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900810.epw site_zip_code=50438 site_time_zone_utc_offset=-6 +County "IA, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900830.epw site_zip_code=50126 site_time_zone_utc_offset=-6 +County "IA, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900850.epw site_zip_code=51555 site_time_zone_utc_offset=-6 +County "IA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900870.epw site_zip_code=52641 site_time_zone_utc_offset=-6 +County "IA, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900890.epw site_zip_code=52136 site_time_zone_utc_offset=-6 +County "IA, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900910.epw site_zip_code=50548 site_time_zone_utc_offset=-6 +County "IA, Ida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900930.epw site_zip_code=51445 site_time_zone_utc_offset=-6 +County "IA, Iowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900950.epw site_zip_code=52361 site_time_zone_utc_offset=-6 +County "IA, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900970.epw site_zip_code=52060 site_time_zone_utc_offset=-6 +County "IA, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900990.epw site_zip_code=50208 site_time_zone_utc_offset=-6 +County "IA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901010.epw site_zip_code=52556 site_time_zone_utc_offset=-6 +County "IA, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901030.epw site_zip_code=52240 site_time_zone_utc_offset=-6 +County "IA, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901050.epw site_zip_code=52205 site_time_zone_utc_offset=-6 +County "IA, Keokuk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901070.epw site_zip_code=52591 site_time_zone_utc_offset=-6 +County "IA, Kossuth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901090.epw site_zip_code=50511 site_time_zone_utc_offset=-6 +County "IA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901110.epw site_zip_code=52627 site_time_zone_utc_offset=-6 +County "IA, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901130.epw site_zip_code=52404 site_time_zone_utc_offset=-6 +County "IA, Louisa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901150.epw site_zip_code=52653 site_time_zone_utc_offset=-6 +County "IA, Lucas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901170.epw site_zip_code=50049 site_time_zone_utc_offset=-6 +County "IA, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901190.epw site_zip_code=51246 site_time_zone_utc_offset=-6 +County "IA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901210.epw site_zip_code=50273 site_time_zone_utc_offset=-6 +County "IA, Mahaska County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901230.epw site_zip_code=52577 site_time_zone_utc_offset=-6 +County "IA, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901250.epw site_zip_code=50219 site_time_zone_utc_offset=-6 +County "IA, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901270.epw site_zip_code=50158 site_time_zone_utc_offset=-6 +County "IA, Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901290.epw site_zip_code=51534 site_time_zone_utc_offset=-6 +County "IA, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901310.epw site_zip_code=50461 site_time_zone_utc_offset=-6 +County "IA, Monona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901330.epw site_zip_code=51040 site_time_zone_utc_offset=-6 +County "IA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901350.epw site_zip_code=52531 site_time_zone_utc_offset=-6 +County "IA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901370.epw site_zip_code=51566 site_time_zone_utc_offset=-6 +County "IA, Muscatine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901390.epw site_zip_code=52761 site_time_zone_utc_offset=-6 +County "IA, O'Brien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901410.epw site_zip_code=51201 site_time_zone_utc_offset=-6 +County "IA, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901430.epw site_zip_code=51249 site_time_zone_utc_offset=-6 +County "IA, Page County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901450.epw site_zip_code=51632 site_time_zone_utc_offset=-6 +County "IA, Palo Alto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901470.epw site_zip_code=50536 site_time_zone_utc_offset=-6 +County "IA, Plymouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901490.epw site_zip_code=51031 site_time_zone_utc_offset=-6 +County "IA, Pocahontas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901510.epw site_zip_code=50574 site_time_zone_utc_offset=-6 +County "IA, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901530.epw site_zip_code=50023 site_time_zone_utc_offset=-6 +County "IA, Pottawattamie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901550.epw site_zip_code=51503 site_time_zone_utc_offset=-6 +County "IA, Poweshiek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901570.epw site_zip_code=50112 site_time_zone_utc_offset=-6 +County "IA, Ringgold County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901590.epw site_zip_code=50854 site_time_zone_utc_offset=-6 +County "IA, Sac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901610.epw site_zip_code=50583 site_time_zone_utc_offset=-6 +County "IA, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901630.epw site_zip_code=52722 site_time_zone_utc_offset=-6 +County "IA, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901650.epw site_zip_code=51537 site_time_zone_utc_offset=-6 +County "IA, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901670.epw site_zip_code=51250 site_time_zone_utc_offset=-6 +County "IA, Story County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901690.epw site_zip_code=50010 site_time_zone_utc_offset=-6 +County "IA, Tama County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901710.epw site_zip_code=52339 site_time_zone_utc_offset=-6 +County "IA, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901730.epw site_zip_code=50833 site_time_zone_utc_offset=-6 +County "IA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901750.epw site_zip_code=50801 site_time_zone_utc_offset=-6 +County "IA, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901770.epw site_zip_code=52565 site_time_zone_utc_offset=-6 +County "IA, Wapello County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901790.epw site_zip_code=52501 site_time_zone_utc_offset=-6 +County "IA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901810.epw site_zip_code=50125 site_time_zone_utc_offset=-6 +County "IA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901830.epw site_zip_code=52353 site_time_zone_utc_offset=-6 +County "IA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901850.epw site_zip_code=50060 site_time_zone_utc_offset=-6 +County "IA, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901870.epw site_zip_code=50501 site_time_zone_utc_offset=-6 +County "IA, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901890.epw site_zip_code=50436 site_time_zone_utc_offset=-6 +County "IA, Winneshiek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901910.epw site_zip_code=52101 site_time_zone_utc_offset=-6 +County "IA, Woodbury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901930.epw site_zip_code=51106 site_time_zone_utc_offset=-6 +County "IA, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901950.epw site_zip_code=50459 site_time_zone_utc_offset=-6 +County "IA, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901970.epw site_zip_code=50533 site_time_zone_utc_offset=-6 +County "ID, Ada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600010.epw site_zip_code=83646 site_time_zone_utc_offset=-7 +County "ID, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600030.epw site_zip_code=83612 site_time_zone_utc_offset=-7 +County "ID, Bannock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600050.epw site_zip_code=83201 site_time_zone_utc_offset=-7 +County "ID, Bear Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600070.epw site_zip_code=83254 site_time_zone_utc_offset=-7 +County "ID, Benewah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600090.epw site_zip_code=83861 site_time_zone_utc_offset=-8 +County "ID, Bingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600110.epw site_zip_code=83221 site_time_zone_utc_offset=-7 +County "ID, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600130.epw site_zip_code=83333 site_time_zone_utc_offset=-7 +County "ID, Boise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600150.epw site_zip_code=83716 site_time_zone_utc_offset=-7 +County "ID, Bonner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600170.epw site_zip_code=83864 site_time_zone_utc_offset=-8 +County "ID, Bonneville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600190.epw site_zip_code=83401 site_time_zone_utc_offset=-7 +County "ID, Boundary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600210.epw site_zip_code=83805 site_time_zone_utc_offset=-8 +County "ID, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600230.epw site_zip_code=83213 site_time_zone_utc_offset=-7 +County "ID, Camas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600250.epw site_zip_code=83327 site_time_zone_utc_offset=-7 +County "ID, Canyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600270.epw site_zip_code=83686 site_time_zone_utc_offset=-7 +County "ID, Caribou County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600290.epw site_zip_code=83276 site_time_zone_utc_offset=-7 +County "ID, Cassia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600310.epw site_zip_code=83318 site_time_zone_utc_offset=-7 +County "ID, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600330.epw site_zip_code=83423 site_time_zone_utc_offset=-7 +County "ID, Clearwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600350.epw site_zip_code=83544 site_time_zone_utc_offset=-8 +County "ID, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600370.epw site_zip_code=83226 site_time_zone_utc_offset=-7 +County "ID, Elmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600390.epw site_zip_code=83647 site_time_zone_utc_offset=-7 +County "ID, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600410.epw site_zip_code=83263 site_time_zone_utc_offset=-7 +County "ID, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600430.epw site_zip_code=83445 site_time_zone_utc_offset=-7 +County "ID, Gem County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600450.epw site_zip_code=83617 site_time_zone_utc_offset=-7 +County "ID, Gooding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600470.epw site_zip_code=83330 site_time_zone_utc_offset=-7 +County "ID, Idaho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600490.epw site_zip_code=83530 site_time_zone_utc_offset=-8 +County "ID, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600510.epw site_zip_code=83442 site_time_zone_utc_offset=-7 +County "ID, Jerome County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600530.epw site_zip_code=83338 site_time_zone_utc_offset=-7 +County "ID, Kootenai County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600550.epw site_zip_code=83854 site_time_zone_utc_offset=-8 +County "ID, Latah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600570.epw site_zip_code=83843 site_time_zone_utc_offset=-8 +County "ID, Lemhi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600590.epw site_zip_code=83467 site_time_zone_utc_offset=-7 +County "ID, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600610.epw site_zip_code=83536 site_time_zone_utc_offset=-8 +County "ID, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600630.epw site_zip_code=83352 site_time_zone_utc_offset=-7 +County "ID, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600650.epw site_zip_code=83440 site_time_zone_utc_offset=-7 +County "ID, Minidoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600670.epw site_zip_code=83350 site_time_zone_utc_offset=-7 +County "ID, Nez Perce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600690.epw site_zip_code=83501 site_time_zone_utc_offset=-8 +County "ID, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600710.epw site_zip_code=83252 site_time_zone_utc_offset=-7 +County "ID, Owyhee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600730.epw site_zip_code=83628 site_time_zone_utc_offset=-7 +County "ID, Payette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600750.epw site_zip_code=83661 site_time_zone_utc_offset=-7 +County "ID, Power County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600770.epw site_zip_code=83211 site_time_zone_utc_offset=-7 +County "ID, Shoshone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600790.epw site_zip_code=83837 site_time_zone_utc_offset=-8 +County "ID, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600810.epw site_zip_code=83455 site_time_zone_utc_offset=-7 +County "ID, Twin Falls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600830.epw site_zip_code=83301 site_time_zone_utc_offset=-7 +County "ID, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600850.epw site_zip_code=83638 site_time_zone_utc_offset=-7 +County "ID, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600870.epw site_zip_code=83672 site_time_zone_utc_offset=-7 +County "IL, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700010.epw site_zip_code=62301 site_time_zone_utc_offset=-6 +County "IL, Alexander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700030.epw site_zip_code=62914 site_time_zone_utc_offset=-6 +County "IL, Bond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700050.epw site_zip_code=62246 site_time_zone_utc_offset=-6 +County "IL, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700070.epw site_zip_code=61008 site_time_zone_utc_offset=-6 +County "IL, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700090.epw site_zip_code=62353 site_time_zone_utc_offset=-6 +County "IL, Bureau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700110.epw site_zip_code=61356 site_time_zone_utc_offset=-6 +County "IL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700130.epw site_zip_code=62047 site_time_zone_utc_offset=-6 +County "IL, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700150.epw site_zip_code=61074 site_time_zone_utc_offset=-6 +County "IL, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700170.epw site_zip_code=62618 site_time_zone_utc_offset=-6 +County "IL, Champaign County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700190.epw site_zip_code=61820 site_time_zone_utc_offset=-6 +County "IL, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700210.epw site_zip_code=62568 site_time_zone_utc_offset=-6 +County "IL, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700230.epw site_zip_code=62441 site_time_zone_utc_offset=-6 +County "IL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700250.epw site_zip_code=62839 site_time_zone_utc_offset=-6 +County "IL, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700270.epw site_zip_code=62231 site_time_zone_utc_offset=-6 +County "IL, Coles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700290.epw site_zip_code=61938 site_time_zone_utc_offset=-6 +County "IL, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700310.epw site_zip_code=60657 site_time_zone_utc_offset=-6 +County "IL, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700330.epw site_zip_code=62454 site_time_zone_utc_offset=-6 +County "IL, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700350.epw site_zip_code=62428 site_time_zone_utc_offset=-6 +County "IL, De Witt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700390.epw site_zip_code=61727 site_time_zone_utc_offset=-6 +County "IL, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700370.epw site_zip_code=60115 site_time_zone_utc_offset=-6 +County "IL, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700410.epw site_zip_code=61953 site_time_zone_utc_offset=-6 +County "IL, DuPage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700430.epw site_zip_code=60148 site_time_zone_utc_offset=-6 +County "IL, Edgar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700450.epw site_zip_code=61944 site_time_zone_utc_offset=-6 +County "IL, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700470.epw site_zip_code=62806 site_time_zone_utc_offset=-6 +County "IL, Effingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700490.epw site_zip_code=62401 site_time_zone_utc_offset=-6 +County "IL, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700510.epw site_zip_code=62471 site_time_zone_utc_offset=-6 +County "IL, Ford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700530.epw site_zip_code=60957 site_time_zone_utc_offset=-6 +County "IL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700550.epw site_zip_code=62896 site_time_zone_utc_offset=-6 +County "IL, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700570.epw site_zip_code=61520 site_time_zone_utc_offset=-6 +County "IL, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700590.epw site_zip_code=62984 site_time_zone_utc_offset=-6 +County "IL, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700610.epw site_zip_code=62016 site_time_zone_utc_offset=-6 +County "IL, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700630.epw site_zip_code=60450 site_time_zone_utc_offset=-6 +County "IL, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700650.epw site_zip_code=62859 site_time_zone_utc_offset=-6 +County "IL, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700670.epw site_zip_code=62321 site_time_zone_utc_offset=-6 +County "IL, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700690.epw site_zip_code=62931 site_time_zone_utc_offset=-6 +County "IL, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700710.epw site_zip_code=61469 site_time_zone_utc_offset=-6 +County "IL, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700730.epw site_zip_code=61443 site_time_zone_utc_offset=-6 +County "IL, Iroquois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700750.epw site_zip_code=60970 site_time_zone_utc_offset=-6 +County "IL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700770.epw site_zip_code=62901 site_time_zone_utc_offset=-6 +County "IL, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700790.epw site_zip_code=62448 site_time_zone_utc_offset=-6 +County "IL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700810.epw site_zip_code=62864 site_time_zone_utc_offset=-6 +County "IL, Jersey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700830.epw site_zip_code=62052 site_time_zone_utc_offset=-6 +County "IL, Jo Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700850.epw site_zip_code=61036 site_time_zone_utc_offset=-6 +County "IL, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700870.epw site_zip_code=62995 site_time_zone_utc_offset=-6 +County "IL, Kane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700890.epw site_zip_code=60506 site_time_zone_utc_offset=-6 +County "IL, Kankakee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700910.epw site_zip_code=60901 site_time_zone_utc_offset=-6 +County "IL, Kendall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700930.epw site_zip_code=60543 site_time_zone_utc_offset=-6 +County "IL, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700950.epw site_zip_code=61401 site_time_zone_utc_offset=-6 +County "IL, LaSalle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700990.epw site_zip_code=61350 site_time_zone_utc_offset=-6 +County "IL, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700970.epw site_zip_code=60085 site_time_zone_utc_offset=-6 +County "IL, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701010.epw site_zip_code=62439 site_time_zone_utc_offset=-6 +County "IL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701030.epw site_zip_code=61021 site_time_zone_utc_offset=-6 +County "IL, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701050.epw site_zip_code=61764 site_time_zone_utc_offset=-6 +County "IL, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701070.epw site_zip_code=62656 site_time_zone_utc_offset=-6 +County "IL, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701150.epw site_zip_code=62521 site_time_zone_utc_offset=-6 +County "IL, Macoupin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701170.epw site_zip_code=62626 site_time_zone_utc_offset=-6 +County "IL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701190.epw site_zip_code=62040 site_time_zone_utc_offset=-6 +County "IL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701210.epw site_zip_code=62801 site_time_zone_utc_offset=-6 +County "IL, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701230.epw site_zip_code=61540 site_time_zone_utc_offset=-6 +County "IL, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701250.epw site_zip_code=62644 site_time_zone_utc_offset=-6 +County "IL, Massac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701270.epw site_zip_code=62960 site_time_zone_utc_offset=-6 +County "IL, McDonough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701090.epw site_zip_code=61455 site_time_zone_utc_offset=-6 +County "IL, McHenry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701110.epw site_zip_code=60014 site_time_zone_utc_offset=-6 +County "IL, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701130.epw site_zip_code=61761 site_time_zone_utc_offset=-6 +County "IL, Menard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701290.epw site_zip_code=62675 site_time_zone_utc_offset=-6 +County "IL, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701310.epw site_zip_code=61231 site_time_zone_utc_offset=-6 +County "IL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701330.epw site_zip_code=62298 site_time_zone_utc_offset=-6 +County "IL, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701350.epw site_zip_code=62056 site_time_zone_utc_offset=-6 +County "IL, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701370.epw site_zip_code=62650 site_time_zone_utc_offset=-6 +County "IL, Moultrie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701390.epw site_zip_code=61951 site_time_zone_utc_offset=-6 +County "IL, Ogle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701410.epw site_zip_code=61068 site_time_zone_utc_offset=-6 +County "IL, Peoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701430.epw site_zip_code=61604 site_time_zone_utc_offset=-6 +County "IL, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701450.epw site_zip_code=62832 site_time_zone_utc_offset=-6 +County "IL, Piatt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701470.epw site_zip_code=61856 site_time_zone_utc_offset=-6 +County "IL, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701490.epw site_zip_code=62363 site_time_zone_utc_offset=-6 +County "IL, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701510.epw site_zip_code=62938 site_time_zone_utc_offset=-6 +County "IL, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701530.epw site_zip_code=62964 site_time_zone_utc_offset=-6 +County "IL, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701550.epw site_zip_code=61326 site_time_zone_utc_offset=-6 +County "IL, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701570.epw site_zip_code=62286 site_time_zone_utc_offset=-6 +County "IL, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701590.epw site_zip_code=62450 site_time_zone_utc_offset=-6 +County "IL, Rock Island County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701610.epw site_zip_code=61265 site_time_zone_utc_offset=-6 +County "IL, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701650.epw site_zip_code=62946 site_time_zone_utc_offset=-6 +County "IL, Sangamon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701670.epw site_zip_code=62704 site_time_zone_utc_offset=-6 +County "IL, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701690.epw site_zip_code=62681 site_time_zone_utc_offset=-6 +County "IL, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701710.epw site_zip_code=62694 site_time_zone_utc_offset=-6 +County "IL, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701730.epw site_zip_code=62565 site_time_zone_utc_offset=-6 +County "IL, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701630.epw site_zip_code=62269 site_time_zone_utc_offset=-6 +County "IL, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701750.epw site_zip_code=61491 site_time_zone_utc_offset=-6 +County "IL, Stephenson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701770.epw site_zip_code=61032 site_time_zone_utc_offset=-6 +County "IL, Tazewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701790.epw site_zip_code=61554 site_time_zone_utc_offset=-6 +County "IL, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701810.epw site_zip_code=62906 site_time_zone_utc_offset=-6 +County "IL, Vermilion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701830.epw site_zip_code=61832 site_time_zone_utc_offset=-6 +County "IL, Wabash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701850.epw site_zip_code=62863 site_time_zone_utc_offset=-6 +County "IL, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701870.epw site_zip_code=61462 site_time_zone_utc_offset=-6 +County "IL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701890.epw site_zip_code=62263 site_time_zone_utc_offset=-6 +County "IL, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701910.epw site_zip_code=62837 site_time_zone_utc_offset=-6 +County "IL, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701930.epw site_zip_code=62821 site_time_zone_utc_offset=-6 +County "IL, Whiteside County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701950.epw site_zip_code=61081 site_time_zone_utc_offset=-6 +County "IL, Will County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701970.epw site_zip_code=60435 site_time_zone_utc_offset=-6 +County "IL, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701990.epw site_zip_code=62959 site_time_zone_utc_offset=-6 +County "IL, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1702010.epw site_zip_code=61107 site_time_zone_utc_offset=-6 +County "IL, Woodford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1702030.epw site_zip_code=61548 site_time_zone_utc_offset=-6 +County "IN, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800010.epw site_zip_code=46733 site_time_zone_utc_offset=-5 +County "IN, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800030.epw site_zip_code=46835 site_time_zone_utc_offset=-5 +County "IN, Bartholomew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800050.epw site_zip_code=47201 site_time_zone_utc_offset=-5 +County "IN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800070.epw site_zip_code=47944 site_time_zone_utc_offset=-5 +County "IN, Blackford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800090.epw site_zip_code=47348 site_time_zone_utc_offset=-5 +County "IN, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800110.epw site_zip_code=46077 site_time_zone_utc_offset=-5 +County "IN, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800130.epw site_zip_code=47448 site_time_zone_utc_offset=-5 +County "IN, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800150.epw site_zip_code=46923 site_time_zone_utc_offset=-5 +County "IN, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800170.epw site_zip_code=46947 site_time_zone_utc_offset=-5 +County "IN, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800190.epw site_zip_code=47130 site_time_zone_utc_offset=-5 +County "IN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800210.epw site_zip_code=47834 site_time_zone_utc_offset=-5 +County "IN, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800230.epw site_zip_code=46041 site_time_zone_utc_offset=-5 +County "IN, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800250.epw site_zip_code=47118 site_time_zone_utc_offset=-5 +County "IN, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800270.epw site_zip_code=47501 site_time_zone_utc_offset=-5 +County "IN, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800330.epw site_zip_code=46706 site_time_zone_utc_offset=-5 +County "IN, Dearborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800290.epw site_zip_code=47025 site_time_zone_utc_offset=-5 +County "IN, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800310.epw site_zip_code=47240 site_time_zone_utc_offset=-5 +County "IN, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800350.epw site_zip_code=47304 site_time_zone_utc_offset=-5 +County "IN, Dubois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800370.epw site_zip_code=47546 site_time_zone_utc_offset=-5 +County "IN, Elkhart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800390.epw site_zip_code=46514 site_time_zone_utc_offset=-5 +County "IN, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800410.epw site_zip_code=47331 site_time_zone_utc_offset=-5 +County "IN, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800430.epw site_zip_code=47150 site_time_zone_utc_offset=-5 +County "IN, Fountain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800450.epw site_zip_code=47918 site_time_zone_utc_offset=-5 +County "IN, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800470.epw site_zip_code=47012 site_time_zone_utc_offset=-5 +County "IN, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800490.epw site_zip_code=46975 site_time_zone_utc_offset=-5 +County "IN, Gibson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800510.epw site_zip_code=47670 site_time_zone_utc_offset=-6 +County "IN, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800530.epw site_zip_code=46953 site_time_zone_utc_offset=-5 +County "IN, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800550.epw site_zip_code=47441 site_time_zone_utc_offset=-5 +County "IN, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800570.epw site_zip_code=46032 site_time_zone_utc_offset=-5 +County "IN, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800590.epw site_zip_code=46140 site_time_zone_utc_offset=-5 +County "IN, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800610.epw site_zip_code=47112 site_time_zone_utc_offset=-5 +County "IN, Hendricks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800630.epw site_zip_code=46112 site_time_zone_utc_offset=-5 +County "IN, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800650.epw site_zip_code=47362 site_time_zone_utc_offset=-5 +County "IN, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800670.epw site_zip_code=46901 site_time_zone_utc_offset=-5 +County "IN, Huntington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800690.epw site_zip_code=46750 site_time_zone_utc_offset=-5 +County "IN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800710.epw site_zip_code=47274 site_time_zone_utc_offset=-5 +County "IN, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800730.epw site_zip_code=47978 site_time_zone_utc_offset=-6 +County "IN, Jay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800750.epw site_zip_code=47371 site_time_zone_utc_offset=-5 +County "IN, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800770.epw site_zip_code=47250 site_time_zone_utc_offset=-5 +County "IN, Jennings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800790.epw site_zip_code=47265 site_time_zone_utc_offset=-5 +County "IN, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800810.epw site_zip_code=46143 site_time_zone_utc_offset=-5 +County "IN, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800830.epw site_zip_code=47591 site_time_zone_utc_offset=-5 +County "IN, Kosciusko County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800850.epw site_zip_code=46580 site_time_zone_utc_offset=-5 +County "IN, LaGrange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800870.epw site_zip_code=46761 site_time_zone_utc_offset=-5 +County "IN, LaPorte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800910.epw site_zip_code=46360 site_time_zone_utc_offset=-6 +County "IN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800890.epw site_zip_code=46307 site_time_zone_utc_offset=-6 +County "IN, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800930.epw site_zip_code=47421 site_time_zone_utc_offset=-5 +County "IN, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800950.epw site_zip_code=46016 site_time_zone_utc_offset=-5 +County "IN, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800970.epw site_zip_code=46227 site_time_zone_utc_offset=-5 +County "IN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800990.epw site_zip_code=46563 site_time_zone_utc_offset=-5 +County "IN, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801010.epw site_zip_code=47581 site_time_zone_utc_offset=-5 +County "IN, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801030.epw site_zip_code=46970 site_time_zone_utc_offset=-5 +County "IN, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801050.epw site_zip_code=47401 site_time_zone_utc_offset=-5 +County "IN, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801070.epw site_zip_code=47933 site_time_zone_utc_offset=-5 +County "IN, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801090.epw site_zip_code=46151 site_time_zone_utc_offset=-5 +County "IN, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801110.epw site_zip_code=46349 site_time_zone_utc_offset=-6 +County "IN, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801130.epw site_zip_code=46755 site_time_zone_utc_offset=-5 +County "IN, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801150.epw site_zip_code=47040 site_time_zone_utc_offset=-5 +County "IN, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801170.epw site_zip_code=47454 site_time_zone_utc_offset=-5 +County "IN, Owen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801190.epw site_zip_code=47460 site_time_zone_utc_offset=-5 +County "IN, Parke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801210.epw site_zip_code=47872 site_time_zone_utc_offset=-5 +County "IN, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801230.epw site_zip_code=47586 site_time_zone_utc_offset=-6 +County "IN, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801250.epw site_zip_code=47567 site_time_zone_utc_offset=-5 +County "IN, Porter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801270.epw site_zip_code=46383 site_time_zone_utc_offset=-6 +County "IN, Posey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801290.epw site_zip_code=47620 site_time_zone_utc_offset=-6 +County "IN, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801310.epw site_zip_code=46996 site_time_zone_utc_offset=-5 +County "IN, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801330.epw site_zip_code=46135 site_time_zone_utc_offset=-5 +County "IN, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801350.epw site_zip_code=47394 site_time_zone_utc_offset=-5 +County "IN, Ripley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801370.epw site_zip_code=47006 site_time_zone_utc_offset=-5 +County "IN, Rush County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801390.epw site_zip_code=46173 site_time_zone_utc_offset=-5 +County "IN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801430.epw site_zip_code=47170 site_time_zone_utc_offset=-5 +County "IN, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801450.epw site_zip_code=46176 site_time_zone_utc_offset=-5 +County "IN, Spencer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801470.epw site_zip_code=47635 site_time_zone_utc_offset=-6 +County "IN, St. Joseph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801410.epw site_zip_code=46544 site_time_zone_utc_offset=-5 +County "IN, Starke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801490.epw site_zip_code=46534 site_time_zone_utc_offset=-6 +County "IN, Steuben County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801510.epw site_zip_code=46703 site_time_zone_utc_offset=-5 +County "IN, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801530.epw site_zip_code=47882 site_time_zone_utc_offset=-5 +County "IN, Switzerland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801550.epw site_zip_code=47043 site_time_zone_utc_offset=-5 +County "IN, Tippecanoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801570.epw site_zip_code=47906 site_time_zone_utc_offset=-5 +County "IN, Tipton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801590.epw site_zip_code=46072 site_time_zone_utc_offset=-5 +County "IN, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801610.epw site_zip_code=47353 site_time_zone_utc_offset=-5 +County "IN, Vanderburgh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801630.epw site_zip_code=47714 site_time_zone_utc_offset=-6 +County "IN, Vermillion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801650.epw site_zip_code=47842 site_time_zone_utc_offset=-5 +County "IN, Vigo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801670.epw site_zip_code=47802 site_time_zone_utc_offset=-5 +County "IN, Wabash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801690.epw site_zip_code=46992 site_time_zone_utc_offset=-5 +County "IN, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801710.epw site_zip_code=47993 site_time_zone_utc_offset=-5 +County "IN, Warrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801730.epw site_zip_code=47630 site_time_zone_utc_offset=-6 +County "IN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801750.epw site_zip_code=47167 site_time_zone_utc_offset=-5 +County "IN, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801770.epw site_zip_code=47374 site_time_zone_utc_offset=-5 +County "IN, Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801790.epw site_zip_code=46714 site_time_zone_utc_offset=-5 +County "IN, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801810.epw site_zip_code=47960 site_time_zone_utc_offset=-5 +County "IN, Whitley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801830.epw site_zip_code=46725 site_time_zone_utc_offset=-5 +County "KS, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000010.epw site_zip_code=66749 site_time_zone_utc_offset=-6 +County "KS, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000030.epw site_zip_code=66032 site_time_zone_utc_offset=-6 +County "KS, Atchison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000050.epw site_zip_code=66002 site_time_zone_utc_offset=-6 +County "KS, Barber County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000070.epw site_zip_code=67104 site_time_zone_utc_offset=-6 +County "KS, Barton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000090.epw site_zip_code=67530 site_time_zone_utc_offset=-6 +County "KS, Bourbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000110.epw site_zip_code=66701 site_time_zone_utc_offset=-6 +County "KS, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000130.epw site_zip_code=66434 site_time_zone_utc_offset=-6 +County "KS, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000150.epw site_zip_code=67042 site_time_zone_utc_offset=-6 +County "KS, Chase County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000170.epw site_zip_code=66845 site_time_zone_utc_offset=-6 +County "KS, Chautauqua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000190.epw site_zip_code=67361 site_time_zone_utc_offset=-6 +County "KS, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000210.epw site_zip_code=66713 site_time_zone_utc_offset=-6 +County "KS, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000230.epw site_zip_code=67756 site_time_zone_utc_offset=-6 +County "KS, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000250.epw site_zip_code=67865 site_time_zone_utc_offset=-6 +County "KS, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000270.epw site_zip_code=67432 site_time_zone_utc_offset=-6 +County "KS, Cloud County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000290.epw site_zip_code=66901 site_time_zone_utc_offset=-6 +County "KS, Coffey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000310.epw site_zip_code=66839 site_time_zone_utc_offset=-6 +County "KS, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000330.epw site_zip_code=67029 site_time_zone_utc_offset=-6 +County "KS, Cowley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000350.epw site_zip_code=67005 site_time_zone_utc_offset=-6 +County "KS, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000370.epw site_zip_code=66762 site_time_zone_utc_offset=-6 +County "KS, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000390.epw site_zip_code=67749 site_time_zone_utc_offset=-6 +County "KS, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000410.epw site_zip_code=67410 site_time_zone_utc_offset=-6 +County "KS, Doniphan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000430.epw site_zip_code=66090 site_time_zone_utc_offset=-6 +County "KS, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000450.epw site_zip_code=66049 site_time_zone_utc_offset=-6 +County "KS, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000470.epw site_zip_code=67547 site_time_zone_utc_offset=-6 +County "KS, Elk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000490.epw site_zip_code=67349 site_time_zone_utc_offset=-6 +County "KS, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000510.epw site_zip_code=67601 site_time_zone_utc_offset=-6 +County "KS, Ellsworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000530.epw site_zip_code=67439 site_time_zone_utc_offset=-6 +County "KS, Finney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000550.epw site_zip_code=67846 site_time_zone_utc_offset=-6 +County "KS, Ford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000570.epw site_zip_code=67801 site_time_zone_utc_offset=-6 +County "KS, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000590.epw site_zip_code=66067 site_time_zone_utc_offset=-6 +County "KS, Geary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000610.epw site_zip_code=66441 site_time_zone_utc_offset=-6 +County "KS, Gove County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000630.epw site_zip_code=67752 site_time_zone_utc_offset=-6 +County "KS, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000650.epw site_zip_code=67642 site_time_zone_utc_offset=-6 +County "KS, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000670.epw site_zip_code=67880 site_time_zone_utc_offset=-6 +County "KS, Gray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000690.epw site_zip_code=67867 site_time_zone_utc_offset=-6 +County "KS, Greeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000710.epw site_zip_code=67879 site_time_zone_utc_offset=-7 +County "KS, Greenwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000730.epw site_zip_code=67045 site_time_zone_utc_offset=-6 +County "KS, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000750.epw site_zip_code=67878 site_time_zone_utc_offset=-7 +County "KS, Harper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000770.epw site_zip_code=67003 site_time_zone_utc_offset=-6 +County "KS, Harvey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000790.epw site_zip_code=67114 site_time_zone_utc_offset=-6 +County "KS, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000810.epw site_zip_code=67877 site_time_zone_utc_offset=-6 +County "KS, Hodgeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000830.epw site_zip_code=67854 site_time_zone_utc_offset=-6 +County "KS, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000850.epw site_zip_code=66436 site_time_zone_utc_offset=-6 +County "KS, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000870.epw site_zip_code=66512 site_time_zone_utc_offset=-6 +County "KS, Jewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000890.epw site_zip_code=66956 site_time_zone_utc_offset=-6 +County "KS, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000910.epw site_zip_code=66062 site_time_zone_utc_offset=-6 +County "KS, Kearny County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000930.epw site_zip_code=67860 site_time_zone_utc_offset=-6 +County "KS, Kingman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000950.epw site_zip_code=67068 site_time_zone_utc_offset=-6 +County "KS, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000970.epw site_zip_code=67054 site_time_zone_utc_offset=-6 +County "KS, Labette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000990.epw site_zip_code=67357 site_time_zone_utc_offset=-6 +County "KS, Lane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001010.epw site_zip_code=67839 site_time_zone_utc_offset=-6 +County "KS, Leavenworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001030.epw site_zip_code=66048 site_time_zone_utc_offset=-6 +County "KS, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001050.epw site_zip_code=67455 site_time_zone_utc_offset=-6 +County "KS, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001070.epw site_zip_code=66040 site_time_zone_utc_offset=-6 +County "KS, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001090.epw site_zip_code=67748 site_time_zone_utc_offset=-6 +County "KS, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001110.epw site_zip_code=66801 site_time_zone_utc_offset=-6 +County "KS, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001150.epw site_zip_code=67063 site_time_zone_utc_offset=-6 +County "KS, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001170.epw site_zip_code=66508 site_time_zone_utc_offset=-6 +County "KS, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001130.epw site_zip_code=67460 site_time_zone_utc_offset=-6 +County "KS, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001190.epw site_zip_code=67864 site_time_zone_utc_offset=-6 +County "KS, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001210.epw site_zip_code=66071 site_time_zone_utc_offset=-6 +County "KS, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001230.epw site_zip_code=67420 site_time_zone_utc_offset=-6 +County "KS, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001250.epw site_zip_code=67301 site_time_zone_utc_offset=-6 +County "KS, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001270.epw site_zip_code=66846 site_time_zone_utc_offset=-6 +County "KS, Morton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001290.epw site_zip_code=67950 site_time_zone_utc_offset=-6 +County "KS, Nemaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001310.epw site_zip_code=66538 site_time_zone_utc_offset=-6 +County "KS, Neosho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001330.epw site_zip_code=66720 site_time_zone_utc_offset=-6 +County "KS, Ness County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001350.epw site_zip_code=67560 site_time_zone_utc_offset=-6 +County "KS, Norton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001370.epw site_zip_code=67654 site_time_zone_utc_offset=-6 +County "KS, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001390.epw site_zip_code=66523 site_time_zone_utc_offset=-6 +County "KS, Osborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001410.epw site_zip_code=67473 site_time_zone_utc_offset=-6 +County "KS, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001430.epw site_zip_code=67467 site_time_zone_utc_offset=-6 +County "KS, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001450.epw site_zip_code=67550 site_time_zone_utc_offset=-6 +County "KS, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001470.epw site_zip_code=67661 site_time_zone_utc_offset=-6 +County "KS, Pottawatomie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001490.epw site_zip_code=66547 site_time_zone_utc_offset=-6 +County "KS, Pratt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001510.epw site_zip_code=67124 site_time_zone_utc_offset=-6 +County "KS, Rawlins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001530.epw site_zip_code=67730 site_time_zone_utc_offset=-6 +County "KS, Reno County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001550.epw site_zip_code=67501 site_time_zone_utc_offset=-6 +County "KS, Republic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001570.epw site_zip_code=66935 site_time_zone_utc_offset=-6 +County "KS, Rice County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001590.epw site_zip_code=67554 site_time_zone_utc_offset=-6 +County "KS, Riley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001610.epw site_zip_code=66502 site_time_zone_utc_offset=-6 +County "KS, Rooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001630.epw site_zip_code=67663 site_time_zone_utc_offset=-6 +County "KS, Rush County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001650.epw site_zip_code=67548 site_time_zone_utc_offset=-6 +County "KS, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001670.epw site_zip_code=67665 site_time_zone_utc_offset=-6 +County "KS, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001690.epw site_zip_code=67401 site_time_zone_utc_offset=-6 +County "KS, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001710.epw site_zip_code=67871 site_time_zone_utc_offset=-6 +County "KS, Sedgwick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001730.epw site_zip_code=67212 site_time_zone_utc_offset=-6 +County "KS, Seward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001750.epw site_zip_code=67901 site_time_zone_utc_offset=-6 +County "KS, Shawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001770.epw site_zip_code=66614 site_time_zone_utc_offset=-6 +County "KS, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001790.epw site_zip_code=67740 site_time_zone_utc_offset=-6 +County "KS, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001810.epw site_zip_code=67735 site_time_zone_utc_offset=-7 +County "KS, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001830.epw site_zip_code=66967 site_time_zone_utc_offset=-6 +County "KS, Stafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001850.epw site_zip_code=67576 site_time_zone_utc_offset=-6 +County "KS, Stanton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001870.epw site_zip_code=67855 site_time_zone_utc_offset=-6 +County "KS, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001890.epw site_zip_code=67951 site_time_zone_utc_offset=-6 +County "KS, Sumner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001910.epw site_zip_code=67152 site_time_zone_utc_offset=-6 +County "KS, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001930.epw site_zip_code=67701 site_time_zone_utc_offset=-6 +County "KS, Trego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001950.epw site_zip_code=67672 site_time_zone_utc_offset=-6 +County "KS, Wabaunsee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001970.epw site_zip_code=66401 site_time_zone_utc_offset=-6 +County "KS, Wallace County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001990.epw site_zip_code=67758 site_time_zone_utc_offset=-7 +County "KS, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002010.epw site_zip_code=66968 site_time_zone_utc_offset=-6 +County "KS, Wichita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002030.epw site_zip_code=67861 site_time_zone_utc_offset=-6 +County "KS, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002050.epw site_zip_code=66736 site_time_zone_utc_offset=-6 +County "KS, Woodson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002070.epw site_zip_code=66783 site_time_zone_utc_offset=-6 +County "KS, Wyandotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002090.epw site_zip_code=66102 site_time_zone_utc_offset=-6 +County "KY, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100010.epw site_zip_code=42728 site_time_zone_utc_offset=-6 +County "KY, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100030.epw site_zip_code=42164 site_time_zone_utc_offset=-6 +County "KY, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100050.epw site_zip_code=40342 site_time_zone_utc_offset=-5 +County "KY, Ballard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100070.epw site_zip_code=42053 site_time_zone_utc_offset=-6 +County "KY, Barren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100090.epw site_zip_code=42141 site_time_zone_utc_offset=-6 +County "KY, Bath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100110.epw site_zip_code=40360 site_time_zone_utc_offset=-5 +County "KY, Bell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100130.epw site_zip_code=40965 site_time_zone_utc_offset=-5 +County "KY, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100150.epw site_zip_code=41042 site_time_zone_utc_offset=-5 +County "KY, Bourbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100170.epw site_zip_code=40361 site_time_zone_utc_offset=-5 +County "KY, Boyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100190.epw site_zip_code=41102 site_time_zone_utc_offset=-5 +County "KY, Boyle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100210.epw site_zip_code=40422 site_time_zone_utc_offset=-5 +County "KY, Bracken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100230.epw site_zip_code=41004 site_time_zone_utc_offset=-5 +County "KY, Breathitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100250.epw site_zip_code=41339 site_time_zone_utc_offset=-5 +County "KY, Breckinridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100270.epw site_zip_code=40143 site_time_zone_utc_offset=-6 +County "KY, Bullitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100290.epw site_zip_code=40165 site_time_zone_utc_offset=-5 +County "KY, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100310.epw site_zip_code=42261 site_time_zone_utc_offset=-6 +County "KY, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100330.epw site_zip_code=42445 site_time_zone_utc_offset=-6 +County "KY, Calloway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100350.epw site_zip_code=42071 site_time_zone_utc_offset=-6 +County "KY, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100370.epw site_zip_code=41071 site_time_zone_utc_offset=-5 +County "KY, Carlisle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100390.epw site_zip_code=42023 site_time_zone_utc_offset=-6 +County "KY, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100410.epw site_zip_code=41008 site_time_zone_utc_offset=-5 +County "KY, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100430.epw site_zip_code=41143 site_time_zone_utc_offset=-5 +County "KY, Casey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100450.epw site_zip_code=42539 site_time_zone_utc_offset=-5 +County "KY, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100470.epw site_zip_code=42240 site_time_zone_utc_offset=-6 +County "KY, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100490.epw site_zip_code=40391 site_time_zone_utc_offset=-5 +County "KY, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100510.epw site_zip_code=40962 site_time_zone_utc_offset=-5 +County "KY, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100530.epw site_zip_code=42602 site_time_zone_utc_offset=-6 +County "KY, Crittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100550.epw site_zip_code=42064 site_time_zone_utc_offset=-6 +County "KY, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100570.epw site_zip_code=42717 site_time_zone_utc_offset=-6 +County "KY, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100590.epw site_zip_code=42301 site_time_zone_utc_offset=-6 +County "KY, Edmonson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100610.epw site_zip_code=42210 site_time_zone_utc_offset=-6 +County "KY, Elliott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100630.epw site_zip_code=41171 site_time_zone_utc_offset=-5 +County "KY, Estill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100650.epw site_zip_code=40336 site_time_zone_utc_offset=-5 +County "KY, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100670.epw site_zip_code=40509 site_time_zone_utc_offset=-5 +County "KY, Fleming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100690.epw site_zip_code=41041 site_time_zone_utc_offset=-5 +County "KY, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100710.epw site_zip_code=41653 site_time_zone_utc_offset=-5 +County "KY, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100730.epw site_zip_code=40601 site_time_zone_utc_offset=-5 +County "KY, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100750.epw site_zip_code=42041 site_time_zone_utc_offset=-6 +County "KY, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100770.epw site_zip_code=41095 site_time_zone_utc_offset=-5 +County "KY, Garrard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100790.epw site_zip_code=40444 site_time_zone_utc_offset=-5 +County "KY, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100810.epw site_zip_code=41035 site_time_zone_utc_offset=-5 +County "KY, Graves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100830.epw site_zip_code=42066 site_time_zone_utc_offset=-6 +County "KY, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100850.epw site_zip_code=42754 site_time_zone_utc_offset=-6 +County "KY, Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100870.epw site_zip_code=42743 site_time_zone_utc_offset=-6 +County "KY, Greenup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100890.epw site_zip_code=41144 site_time_zone_utc_offset=-5 +County "KY, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100910.epw site_zip_code=42348 site_time_zone_utc_offset=-6 +County "KY, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100930.epw site_zip_code=42701 site_time_zone_utc_offset=-5 +County "KY, Harlan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100950.epw site_zip_code=40831 site_time_zone_utc_offset=-5 +County "KY, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100970.epw site_zip_code=41031 site_time_zone_utc_offset=-5 +County "KY, Hart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100990.epw site_zip_code=42765 site_time_zone_utc_offset=-6 +County "KY, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101010.epw site_zip_code=42420 site_time_zone_utc_offset=-6 +County "KY, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101030.epw site_zip_code=40019 site_time_zone_utc_offset=-5 +County "KY, Hickman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101050.epw site_zip_code=42031 site_time_zone_utc_offset=-6 +County "KY, Hopkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101070.epw site_zip_code=42431 site_time_zone_utc_offset=-6 +County "KY, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101090.epw site_zip_code=40447 site_time_zone_utc_offset=-5 +County "KY, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101110.epw site_zip_code=40214 site_time_zone_utc_offset=-5 +County "KY, Jessamine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101130.epw site_zip_code=40356 site_time_zone_utc_offset=-5 +County "KY, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101150.epw site_zip_code=41240 site_time_zone_utc_offset=-5 +County "KY, Kenton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101170.epw site_zip_code=41017 site_time_zone_utc_offset=-5 +County "KY, Knott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101190.epw site_zip_code=41822 site_time_zone_utc_offset=-5 +County "KY, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101210.epw site_zip_code=40906 site_time_zone_utc_offset=-5 +County "KY, Larue County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101230.epw site_zip_code=42748 site_time_zone_utc_offset=-5 +County "KY, Laurel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101250.epw site_zip_code=40741 site_time_zone_utc_offset=-5 +County "KY, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101270.epw site_zip_code=41230 site_time_zone_utc_offset=-5 +County "KY, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101290.epw site_zip_code=41311 site_time_zone_utc_offset=-5 +County "KY, Leslie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101310.epw site_zip_code=41749 site_time_zone_utc_offset=-5 +County "KY, Letcher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101330.epw site_zip_code=41858 site_time_zone_utc_offset=-5 +County "KY, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101350.epw site_zip_code=41179 site_time_zone_utc_offset=-5 +County "KY, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101370.epw site_zip_code=40484 site_time_zone_utc_offset=-5 +County "KY, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101390.epw site_zip_code=42045 site_time_zone_utc_offset=-6 +County "KY, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101410.epw site_zip_code=42276 site_time_zone_utc_offset=-6 +County "KY, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101430.epw site_zip_code=42038 site_time_zone_utc_offset=-6 +County "KY, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101510.epw site_zip_code=40475 site_time_zone_utc_offset=-5 +County "KY, Magoffin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101530.epw site_zip_code=41465 site_time_zone_utc_offset=-5 +County "KY, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101550.epw site_zip_code=40033 site_time_zone_utc_offset=-5 +County "KY, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101570.epw site_zip_code=42025 site_time_zone_utc_offset=-6 +County "KY, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101590.epw site_zip_code=41224 site_time_zone_utc_offset=-5 +County "KY, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101610.epw site_zip_code=41056 site_time_zone_utc_offset=-5 +County "KY, McCracken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101450.epw site_zip_code=42001 site_time_zone_utc_offset=-6 +County "KY, McCreary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101470.epw site_zip_code=42653 site_time_zone_utc_offset=-5 +County "KY, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101490.epw site_zip_code=42327 site_time_zone_utc_offset=-6 +County "KY, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101630.epw site_zip_code=40108 site_time_zone_utc_offset=-5 +County "KY, Menifee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101650.epw site_zip_code=40322 site_time_zone_utc_offset=-5 +County "KY, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101670.epw site_zip_code=40330 site_time_zone_utc_offset=-5 +County "KY, Metcalfe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101690.epw site_zip_code=42129 site_time_zone_utc_offset=-6 +County "KY, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101710.epw site_zip_code=42167 site_time_zone_utc_offset=-6 +County "KY, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101730.epw site_zip_code=40353 site_time_zone_utc_offset=-5 +County "KY, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101750.epw site_zip_code=41472 site_time_zone_utc_offset=-5 +County "KY, Muhlenberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101770.epw site_zip_code=42345 site_time_zone_utc_offset=-6 +County "KY, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101790.epw site_zip_code=40004 site_time_zone_utc_offset=-5 +County "KY, Nicholas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101810.epw site_zip_code=40311 site_time_zone_utc_offset=-5 +County "KY, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101830.epw site_zip_code=42320 site_time_zone_utc_offset=-6 +County "KY, Oldham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101850.epw site_zip_code=40014 site_time_zone_utc_offset=-5 +County "KY, Owen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101870.epw site_zip_code=40359 site_time_zone_utc_offset=-5 +County "KY, Owsley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101890.epw site_zip_code=41314 site_time_zone_utc_offset=-5 +County "KY, Pendleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101910.epw site_zip_code=41040 site_time_zone_utc_offset=-5 +County "KY, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101930.epw site_zip_code=41701 site_time_zone_utc_offset=-5 +County "KY, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101950.epw site_zip_code=41501 site_time_zone_utc_offset=-5 +County "KY, Powell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101970.epw site_zip_code=40380 site_time_zone_utc_offset=-5 +County "KY, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101990.epw site_zip_code=42503 site_time_zone_utc_offset=-5 +County "KY, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102010.epw site_zip_code=41064 site_time_zone_utc_offset=-5 +County "KY, Rockcastle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102030.epw site_zip_code=40456 site_time_zone_utc_offset=-5 +County "KY, Rowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102050.epw site_zip_code=40351 site_time_zone_utc_offset=-5 +County "KY, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102070.epw site_zip_code=42642 site_time_zone_utc_offset=-6 +County "KY, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102090.epw site_zip_code=40324 site_time_zone_utc_offset=-5 +County "KY, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102110.epw site_zip_code=40065 site_time_zone_utc_offset=-5 +County "KY, Simpson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102130.epw site_zip_code=42134 site_time_zone_utc_offset=-6 +County "KY, Spencer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102150.epw site_zip_code=40071 site_time_zone_utc_offset=-5 +County "KY, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102170.epw site_zip_code=42718 site_time_zone_utc_offset=-5 +County "KY, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102190.epw site_zip_code=42220 site_time_zone_utc_offset=-6 +County "KY, Trigg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102210.epw site_zip_code=42211 site_time_zone_utc_offset=-6 +County "KY, Trimble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102230.epw site_zip_code=40006 site_time_zone_utc_offset=-5 +County "KY, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102250.epw site_zip_code=42437 site_time_zone_utc_offset=-6 +County "KY, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102270.epw site_zip_code=42101 site_time_zone_utc_offset=-6 +County "KY, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102290.epw site_zip_code=40069 site_time_zone_utc_offset=-5 +County "KY, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102310.epw site_zip_code=42633 site_time_zone_utc_offset=-5 +County "KY, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102330.epw site_zip_code=42450 site_time_zone_utc_offset=-6 +County "KY, Whitley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102350.epw site_zip_code=40769 site_time_zone_utc_offset=-5 +County "KY, Wolfe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102370.epw site_zip_code=41301 site_time_zone_utc_offset=-5 +County "KY, Woodford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102390.epw site_zip_code=40383 site_time_zone_utc_offset=-5 +County "LA, Acadia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200010.epw site_zip_code=70526 site_time_zone_utc_offset=-6 +County "LA, Allen Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200030.epw site_zip_code=71463 site_time_zone_utc_offset=-6 +County "LA, Ascension Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200050.epw site_zip_code=70737 site_time_zone_utc_offset=-6 +County "LA, Assumption Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200070.epw site_zip_code=70339 site_time_zone_utc_offset=-6 +County "LA, Avoyelles Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200090.epw site_zip_code=71351 site_time_zone_utc_offset=-6 +County "LA, Beauregard Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200110.epw site_zip_code=70634 site_time_zone_utc_offset=-6 +County "LA, Bienville Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200130.epw site_zip_code=71001 site_time_zone_utc_offset=-6 +County "LA, Bossier Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200150.epw site_zip_code=71111 site_time_zone_utc_offset=-6 +County "LA, Caddo Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200170.epw site_zip_code=71106 site_time_zone_utc_offset=-6 +County "LA, Calcasieu Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200190.epw site_zip_code=70605 site_time_zone_utc_offset=-6 +County "LA, Caldwell Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200210.epw site_zip_code=71418 site_time_zone_utc_offset=-6 +County "LA, Cameron Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200230.epw site_zip_code=70607 site_time_zone_utc_offset=-6 +County "LA, Catahoula Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200250.epw site_zip_code=71343 site_time_zone_utc_offset=-6 +County "LA, Claiborne Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200270.epw site_zip_code=71040 site_time_zone_utc_offset=-6 +County "LA, Concordia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200290.epw site_zip_code=71334 site_time_zone_utc_offset=-6 +County "LA, De Soto Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200310.epw site_zip_code=71052 site_time_zone_utc_offset=-6 +County "LA, East Baton Rouge Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200330.epw site_zip_code=70816 site_time_zone_utc_offset=-6 +County "LA, East Carroll Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200350.epw site_zip_code=71254 site_time_zone_utc_offset=-6 +County "LA, East Feliciana Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200370.epw site_zip_code=70722 site_time_zone_utc_offset=-6 +County "LA, Evangeline Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200390.epw site_zip_code=70586 site_time_zone_utc_offset=-6 +County "LA, Franklin Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200410.epw site_zip_code=71295 site_time_zone_utc_offset=-6 +County "LA, Grant Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200430.epw site_zip_code=71467 site_time_zone_utc_offset=-6 +County "LA, Iberia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200450.epw site_zip_code=70560 site_time_zone_utc_offset=-6 +County "LA, Iberville Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200470.epw site_zip_code=70764 site_time_zone_utc_offset=-6 +County "LA, Jackson Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200490.epw site_zip_code=71251 site_time_zone_utc_offset=-6 +County "LA, Jefferson Davis Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200530.epw site_zip_code=70546 site_time_zone_utc_offset=-6 +County "LA, Jefferson Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200510.epw site_zip_code=70072 site_time_zone_utc_offset=-6 +County "LA, La Salle Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200590.epw site_zip_code=71342 site_time_zone_utc_offset=-6 +County "LA, Lafayette Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200550.epw site_zip_code=70506 site_time_zone_utc_offset=-6 +County "LA, Lafourche Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200570.epw site_zip_code=70301 site_time_zone_utc_offset=-6 +County "LA, Lincoln Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200610.epw site_zip_code=71270 site_time_zone_utc_offset=-6 +County "LA, Livingston Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200630.epw site_zip_code=70726 site_time_zone_utc_offset=-6 +County "LA, Madison Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200650.epw site_zip_code=71282 site_time_zone_utc_offset=-6 +County "LA, Morehouse Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200670.epw site_zip_code=71220 site_time_zone_utc_offset=-6 +County "LA, Natchitoches Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200690.epw site_zip_code=71457 site_time_zone_utc_offset=-6 +County "LA, Orleans Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200710.epw site_zip_code=70119 site_time_zone_utc_offset=-6 +County "LA, Ouachita Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200730.epw site_zip_code=71203 site_time_zone_utc_offset=-6 +County "LA, Plaquemines Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200750.epw site_zip_code=70037 site_time_zone_utc_offset=-6 +County "LA, Pointe Coupee Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200770.epw site_zip_code=70760 site_time_zone_utc_offset=-6 +County "LA, Rapides Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200790.epw site_zip_code=71360 site_time_zone_utc_offset=-6 +County "LA, Red River Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200810.epw site_zip_code=71019 site_time_zone_utc_offset=-6 +County "LA, Richland Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200830.epw site_zip_code=71269 site_time_zone_utc_offset=-6 +County "LA, Sabine Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200850.epw site_zip_code=71449 site_time_zone_utc_offset=-6 +County "LA, St. Bernard Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200870.epw site_zip_code=70043 site_time_zone_utc_offset=-6 +County "LA, St. Charles Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200890.epw site_zip_code=70070 site_time_zone_utc_offset=-6 +County "LA, St. Helena Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200910.epw site_zip_code=70441 site_time_zone_utc_offset=-6 +County "LA, St. James Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200930.epw site_zip_code=70090 site_time_zone_utc_offset=-6 +County "LA, St. John the Baptist Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200950.epw site_zip_code=70068 site_time_zone_utc_offset=-6 +County "LA, St. Landry Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200970.epw site_zip_code=70570 site_time_zone_utc_offset=-6 +County "LA, St. Martin Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200990.epw site_zip_code=70517 site_time_zone_utc_offset=-6 +County "LA, St. Mary Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201010.epw site_zip_code=70380 site_time_zone_utc_offset=-6 +County "LA, St. Tammany Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201030.epw site_zip_code=70433 site_time_zone_utc_offset=-6 +County "LA, Tangipahoa Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201050.epw site_zip_code=70454 site_time_zone_utc_offset=-6 +County "LA, Tensas Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201070.epw site_zip_code=71366 site_time_zone_utc_offset=-6 +County "LA, Terrebonne Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201090.epw site_zip_code=70360 site_time_zone_utc_offset=-6 +County "LA, Union Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201110.epw site_zip_code=71241 site_time_zone_utc_offset=-6 +County "LA, Vermilion Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201130.epw site_zip_code=70510 site_time_zone_utc_offset=-6 +County "LA, Vernon Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201150.epw site_zip_code=71446 site_time_zone_utc_offset=-6 +County "LA, Washington Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201170.epw site_zip_code=70427 site_time_zone_utc_offset=-6 +County "LA, Webster Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201190.epw site_zip_code=71055 site_time_zone_utc_offset=-6 +County "LA, West Baton Rouge Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201210.epw site_zip_code=70767 site_time_zone_utc_offset=-6 +County "LA, West Carroll Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201230.epw site_zip_code=71263 site_time_zone_utc_offset=-6 +County "LA, West Feliciana Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201250.epw site_zip_code=70775 site_time_zone_utc_offset=-6 +County "LA, Winn Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201270.epw site_zip_code=71483 site_time_zone_utc_offset=-6 +County "MA, Barnstable County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500010.epw site_zip_code=02536 site_time_zone_utc_offset=-5 +County "MA, Berkshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500030.epw site_zip_code=01201 site_time_zone_utc_offset=-5 +County "MA, Bristol County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500050.epw site_zip_code=02780 site_time_zone_utc_offset=-5 +County "MA, Dukes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500070.epw site_zip_code=02568 site_time_zone_utc_offset=-5 +County "MA, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500090.epw site_zip_code=01960 site_time_zone_utc_offset=-5 +County "MA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500110.epw site_zip_code=01301 site_time_zone_utc_offset=-5 +County "MA, Hampden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500130.epw site_zip_code=01085 site_time_zone_utc_offset=-5 +County "MA, Hampshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500150.epw site_zip_code=01002 site_time_zone_utc_offset=-5 +County "MA, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500170.epw site_zip_code=02148 site_time_zone_utc_offset=-5 +County "MA, Nantucket County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500190.epw site_zip_code=02554 site_time_zone_utc_offset=-5 +County "MA, Norfolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500210.epw site_zip_code=02169 site_time_zone_utc_offset=-5 +County "MA, Plymouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500230.epw site_zip_code=02360 site_time_zone_utc_offset=-5 +County "MA, Suffolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500250.epw site_zip_code=02151 site_time_zone_utc_offset=-5 +County "MA, Worcester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500270.epw site_zip_code=01453 site_time_zone_utc_offset=-5 +County "MD, Allegany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400010.epw site_zip_code=21502 site_time_zone_utc_offset=-5 +County "MD, Anne Arundel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400030.epw site_zip_code=21122 site_time_zone_utc_offset=-5 +County "MD, Baltimore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400050.epw site_zip_code=21117 site_time_zone_utc_offset=-5 +County "MD, Baltimore city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2405100.epw site_zip_code=21215 site_time_zone_utc_offset=-5 +County "MD, Calvert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400090.epw site_zip_code=20657 site_time_zone_utc_offset=-5 +County "MD, Caroline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400110.epw site_zip_code=21629 site_time_zone_utc_offset=-5 +County "MD, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400130.epw site_zip_code=21157 site_time_zone_utc_offset=-5 +County "MD, Cecil County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400150.epw site_zip_code=21921 site_time_zone_utc_offset=-5 +County "MD, Charles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400170.epw site_zip_code=20603 site_time_zone_utc_offset=-5 +County "MD, Dorchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400190.epw site_zip_code=21613 site_time_zone_utc_offset=-5 +County "MD, Frederick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400210.epw site_zip_code=21702 site_time_zone_utc_offset=-5 +County "MD, Garrett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400230.epw site_zip_code=21550 site_time_zone_utc_offset=-5 +County "MD, Harford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400250.epw site_zip_code=21014 site_time_zone_utc_offset=-5 +County "MD, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400270.epw site_zip_code=21044 site_time_zone_utc_offset=-5 +County "MD, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400290.epw site_zip_code=21620 site_time_zone_utc_offset=-5 +County "MD, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400310.epw site_zip_code=20906 site_time_zone_utc_offset=-5 +County "MD, Prince George's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400330.epw site_zip_code=20774 site_time_zone_utc_offset=-5 +County "MD, Queen Anne's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400350.epw site_zip_code=21666 site_time_zone_utc_offset=-5 +County "MD, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400390.epw site_zip_code=21853 site_time_zone_utc_offset=-5 +County "MD, St. Mary's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400370.epw site_zip_code=20653 site_time_zone_utc_offset=-5 +County "MD, Talbot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400410.epw site_zip_code=21601 site_time_zone_utc_offset=-5 +County "MD, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400430.epw site_zip_code=21740 site_time_zone_utc_offset=-5 +County "MD, Wicomico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400450.epw site_zip_code=21804 site_time_zone_utc_offset=-5 +County "MD, Worcester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400470.epw site_zip_code=21842 site_time_zone_utc_offset=-5 +County "ME, Androscoggin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300010.epw site_zip_code=04240 site_time_zone_utc_offset=-5 +County "ME, Aroostook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300030.epw site_zip_code=04769 site_time_zone_utc_offset=-5 +County "ME, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300050.epw site_zip_code=04103 site_time_zone_utc_offset=-5 +County "ME, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300070.epw site_zip_code=04938 site_time_zone_utc_offset=-5 +County "ME, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300090.epw site_zip_code=04605 site_time_zone_utc_offset=-5 +County "ME, Kennebec County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300110.epw site_zip_code=04901 site_time_zone_utc_offset=-5 +County "ME, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300130.epw site_zip_code=04841 site_time_zone_utc_offset=-5 +County "ME, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300150.epw site_zip_code=04572 site_time_zone_utc_offset=-5 +County "ME, Oxford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300170.epw site_zip_code=04276 site_time_zone_utc_offset=-5 +County "ME, Penobscot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300190.epw site_zip_code=04401 site_time_zone_utc_offset=-5 +County "ME, Piscataquis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300210.epw site_zip_code=04426 site_time_zone_utc_offset=-5 +County "ME, Sagadahoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300230.epw site_zip_code=04530 site_time_zone_utc_offset=-5 +County "ME, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300250.epw site_zip_code=04976 site_time_zone_utc_offset=-5 +County "ME, Waldo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300270.epw site_zip_code=04915 site_time_zone_utc_offset=-5 +County "ME, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300290.epw site_zip_code=04654 site_time_zone_utc_offset=-5 +County "ME, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300310.epw site_zip_code=04005 site_time_zone_utc_offset=-5 +County "MI, Alcona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600010.epw site_zip_code=48740 site_time_zone_utc_offset=-5 +County "MI, Alger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600030.epw site_zip_code=49862 site_time_zone_utc_offset=-5 +County "MI, Allegan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600050.epw site_zip_code=49010 site_time_zone_utc_offset=-5 +County "MI, Alpena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600070.epw site_zip_code=49707 site_time_zone_utc_offset=-5 +County "MI, Antrim County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600090.epw site_zip_code=49615 site_time_zone_utc_offset=-5 +County "MI, Arenac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600110.epw site_zip_code=48658 site_time_zone_utc_offset=-5 +County "MI, Baraga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600130.epw site_zip_code=49946 site_time_zone_utc_offset=-5 +County "MI, Barry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600150.epw site_zip_code=49058 site_time_zone_utc_offset=-5 +County "MI, Bay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600170.epw site_zip_code=48706 site_time_zone_utc_offset=-5 +County "MI, Benzie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600190.epw site_zip_code=49635 site_time_zone_utc_offset=-5 +County "MI, Berrien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600210.epw site_zip_code=49022 site_time_zone_utc_offset=-5 +County "MI, Branch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600230.epw site_zip_code=49036 site_time_zone_utc_offset=-5 +County "MI, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600250.epw site_zip_code=49015 site_time_zone_utc_offset=-5 +County "MI, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600270.epw site_zip_code=49047 site_time_zone_utc_offset=-5 +County "MI, Charlevoix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600290.epw site_zip_code=49720 site_time_zone_utc_offset=-5 +County "MI, Cheboygan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600310.epw site_zip_code=49721 site_time_zone_utc_offset=-5 +County "MI, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600330.epw site_zip_code=49783 site_time_zone_utc_offset=-5 +County "MI, Clare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600350.epw site_zip_code=48625 site_time_zone_utc_offset=-5 +County "MI, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600370.epw site_zip_code=48820 site_time_zone_utc_offset=-5 +County "MI, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600390.epw site_zip_code=49738 site_time_zone_utc_offset=-5 +County "MI, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600410.epw site_zip_code=49829 site_time_zone_utc_offset=-5 +County "MI, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600430.epw site_zip_code=49801 site_time_zone_utc_offset=-6 +County "MI, Eaton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600450.epw site_zip_code=48917 site_time_zone_utc_offset=-5 +County "MI, Emmet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600470.epw site_zip_code=49770 site_time_zone_utc_offset=-5 +County "MI, Genesee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600490.epw site_zip_code=48439 site_time_zone_utc_offset=-5 +County "MI, Gladwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600510.epw site_zip_code=48624 site_time_zone_utc_offset=-5 +County "MI, Gogebic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600530.epw site_zip_code=49938 site_time_zone_utc_offset=-6 +County "MI, Grand Traverse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600550.epw site_zip_code=49686 site_time_zone_utc_offset=-5 +County "MI, Gratiot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600570.epw site_zip_code=48801 site_time_zone_utc_offset=-5 +County "MI, Hillsdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600590.epw site_zip_code=49242 site_time_zone_utc_offset=-5 +County "MI, Houghton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600610.epw site_zip_code=49931 site_time_zone_utc_offset=-5 +County "MI, Huron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600630.epw site_zip_code=48413 site_time_zone_utc_offset=-5 +County "MI, Ingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600650.epw site_zip_code=48823 site_time_zone_utc_offset=-5 +County "MI, Ionia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600670.epw site_zip_code=48846 site_time_zone_utc_offset=-5 +County "MI, Iosco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600690.epw site_zip_code=48750 site_time_zone_utc_offset=-5 +County "MI, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600710.epw site_zip_code=49935 site_time_zone_utc_offset=-6 +County "MI, Isabella County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600730.epw site_zip_code=48858 site_time_zone_utc_offset=-5 +County "MI, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600750.epw site_zip_code=49201 site_time_zone_utc_offset=-5 +County "MI, Kalamazoo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600770.epw site_zip_code=49009 site_time_zone_utc_offset=-5 +County "MI, Kalkaska County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600790.epw site_zip_code=49646 site_time_zone_utc_offset=-5 +County "MI, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600810.epw site_zip_code=49503 site_time_zone_utc_offset=-5 +County "MI, Keweenaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600830.epw site_zip_code=49950 site_time_zone_utc_offset=-5 +County "MI, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600850.epw site_zip_code=49304 site_time_zone_utc_offset=-5 +County "MI, Lapeer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600870.epw site_zip_code=48446 site_time_zone_utc_offset=-5 +County "MI, Leelanau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600890.epw site_zip_code=49684 site_time_zone_utc_offset=-5 +County "MI, Lenawee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600910.epw site_zip_code=49221 site_time_zone_utc_offset=-5 +County "MI, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600930.epw site_zip_code=48843 site_time_zone_utc_offset=-5 +County "MI, Luce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600950.epw site_zip_code=49868 site_time_zone_utc_offset=-5 +County "MI, Mackinac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600970.epw site_zip_code=49781 site_time_zone_utc_offset=-5 +County "MI, Macomb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600990.epw site_zip_code=48038 site_time_zone_utc_offset=-5 +County "MI, Manistee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601010.epw site_zip_code=49660 site_time_zone_utc_offset=-5 +County "MI, Marquette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601030.epw site_zip_code=49855 site_time_zone_utc_offset=-5 +County "MI, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601050.epw site_zip_code=49431 site_time_zone_utc_offset=-5 +County "MI, Mecosta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601070.epw site_zip_code=49307 site_time_zone_utc_offset=-5 +County "MI, Menominee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601090.epw site_zip_code=49858 site_time_zone_utc_offset=-6 +County "MI, Midland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601110.epw site_zip_code=48642 site_time_zone_utc_offset=-5 +County "MI, Missaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601130.epw site_zip_code=49651 site_time_zone_utc_offset=-5 +County "MI, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601150.epw site_zip_code=48162 site_time_zone_utc_offset=-5 +County "MI, Montcalm County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601170.epw site_zip_code=48838 site_time_zone_utc_offset=-5 +County "MI, Montmorency County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601190.epw site_zip_code=49709 site_time_zone_utc_offset=-5 +County "MI, Muskegon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601210.epw site_zip_code=49442 site_time_zone_utc_offset=-5 +County "MI, Newaygo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601230.epw site_zip_code=49337 site_time_zone_utc_offset=-5 +County "MI, Oakland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601250.epw site_zip_code=48307 site_time_zone_utc_offset=-5 +County "MI, Oceana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601270.epw site_zip_code=49420 site_time_zone_utc_offset=-5 +County "MI, Ogemaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601290.epw site_zip_code=48661 site_time_zone_utc_offset=-5 +County "MI, Ontonagon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601310.epw site_zip_code=49953 site_time_zone_utc_offset=-5 +County "MI, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601330.epw site_zip_code=49631 site_time_zone_utc_offset=-5 +County "MI, Oscoda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601350.epw site_zip_code=48647 site_time_zone_utc_offset=-5 +County "MI, Otsego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601370.epw site_zip_code=49735 site_time_zone_utc_offset=-5 +County "MI, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601390.epw site_zip_code=49424 site_time_zone_utc_offset=-5 +County "MI, Presque Isle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601410.epw site_zip_code=49779 site_time_zone_utc_offset=-5 +County "MI, Roscommon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601430.epw site_zip_code=48629 site_time_zone_utc_offset=-5 +County "MI, Saginaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601450.epw site_zip_code=48601 site_time_zone_utc_offset=-5 +County "MI, Sanilac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601510.epw site_zip_code=48450 site_time_zone_utc_offset=-5 +County "MI, Schoolcraft County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601530.epw site_zip_code=49854 site_time_zone_utc_offset=-5 +County "MI, Shiawassee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601550.epw site_zip_code=48867 site_time_zone_utc_offset=-5 +County "MI, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601470.epw site_zip_code=48060 site_time_zone_utc_offset=-5 +County "MI, St. Joseph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601490.epw site_zip_code=49091 site_time_zone_utc_offset=-5 +County "MI, Tuscola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601570.epw site_zip_code=48723 site_time_zone_utc_offset=-5 +County "MI, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601590.epw site_zip_code=49090 site_time_zone_utc_offset=-5 +County "MI, Washtenaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601610.epw site_zip_code=48197 site_time_zone_utc_offset=-5 +County "MI, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601630.epw site_zip_code=48180 site_time_zone_utc_offset=-5 +County "MI, Wexford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601650.epw site_zip_code=49601 site_time_zone_utc_offset=-5 +County "MN, Aitkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700010.epw site_zip_code=56431 site_time_zone_utc_offset=-6 +County "MN, Anoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700030.epw site_zip_code=55303 site_time_zone_utc_offset=-6 +County "MN, Becker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700050.epw site_zip_code=56501 site_time_zone_utc_offset=-6 +County "MN, Beltrami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700070.epw site_zip_code=56601 site_time_zone_utc_offset=-6 +County "MN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700090.epw site_zip_code=56379 site_time_zone_utc_offset=-6 +County "MN, Big Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700110.epw site_zip_code=56278 site_time_zone_utc_offset=-6 +County "MN, Blue Earth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700130.epw site_zip_code=56001 site_time_zone_utc_offset=-6 +County "MN, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700150.epw site_zip_code=56073 site_time_zone_utc_offset=-6 +County "MN, Carlton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700170.epw site_zip_code=55720 site_time_zone_utc_offset=-6 +County "MN, Carver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700190.epw site_zip_code=55318 site_time_zone_utc_offset=-6 +County "MN, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700210.epw site_zip_code=56474 site_time_zone_utc_offset=-6 +County "MN, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700230.epw site_zip_code=56265 site_time_zone_utc_offset=-6 +County "MN, Chisago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700250.epw site_zip_code=55056 site_time_zone_utc_offset=-6 +County "MN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700270.epw site_zip_code=56560 site_time_zone_utc_offset=-6 +County "MN, Clearwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700290.epw site_zip_code=56621 site_time_zone_utc_offset=-6 +County "MN, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700310.epw site_zip_code=55604 site_time_zone_utc_offset=-6 +County "MN, Cottonwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700330.epw site_zip_code=56101 site_time_zone_utc_offset=-6 +County "MN, Crow Wing County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700350.epw site_zip_code=56401 site_time_zone_utc_offset=-6 +County "MN, Dakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700370.epw site_zip_code=55124 site_time_zone_utc_offset=-6 +County "MN, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700390.epw site_zip_code=55944 site_time_zone_utc_offset=-6 +County "MN, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700410.epw site_zip_code=56308 site_time_zone_utc_offset=-6 +County "MN, Faribault County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700430.epw site_zip_code=56013 site_time_zone_utc_offset=-6 +County "MN, Fillmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700450.epw site_zip_code=55975 site_time_zone_utc_offset=-6 +County "MN, Freeborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700470.epw site_zip_code=56007 site_time_zone_utc_offset=-6 +County "MN, Goodhue County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700490.epw site_zip_code=55066 site_time_zone_utc_offset=-6 +County "MN, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700510.epw site_zip_code=56531 site_time_zone_utc_offset=-6 +County "MN, Hennepin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700530.epw site_zip_code=55408 site_time_zone_utc_offset=-6 +County "MN, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700550.epw site_zip_code=55947 site_time_zone_utc_offset=-6 +County "MN, Hubbard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700570.epw site_zip_code=56470 site_time_zone_utc_offset=-6 +County "MN, Isanti County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700590.epw site_zip_code=55008 site_time_zone_utc_offset=-6 +County "MN, Itasca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700610.epw site_zip_code=55744 site_time_zone_utc_offset=-6 +County "MN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700630.epw site_zip_code=56143 site_time_zone_utc_offset=-6 +County "MN, Kanabec County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700650.epw site_zip_code=55051 site_time_zone_utc_offset=-6 +County "MN, Kandiyohi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700670.epw site_zip_code=56201 site_time_zone_utc_offset=-6 +County "MN, Kittson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700690.epw site_zip_code=56728 site_time_zone_utc_offset=-6 +County "MN, Koochiching County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700710.epw site_zip_code=56649 site_time_zone_utc_offset=-6 +County "MN, Lac qui Parle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700730.epw site_zip_code=56256 site_time_zone_utc_offset=-6 +County "MN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700750.epw site_zip_code=55616 site_time_zone_utc_offset=-6 +County "MN, Lake of the Woods County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700770.epw site_zip_code=56623 site_time_zone_utc_offset=-6 +County "MN, Le Sueur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700790.epw site_zip_code=56058 site_time_zone_utc_offset=-6 +County "MN, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700810.epw site_zip_code=56178 site_time_zone_utc_offset=-6 +County "MN, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700830.epw site_zip_code=56258 site_time_zone_utc_offset=-6 +County "MN, Mahnomen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700870.epw site_zip_code=56557 site_time_zone_utc_offset=-6 +County "MN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700890.epw site_zip_code=56762 site_time_zone_utc_offset=-6 +County "MN, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700910.epw site_zip_code=56031 site_time_zone_utc_offset=-6 +County "MN, McLeod County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700850.epw site_zip_code=55350 site_time_zone_utc_offset=-6 +County "MN, Meeker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700930.epw site_zip_code=55355 site_time_zone_utc_offset=-6 +County "MN, Mille Lacs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700950.epw site_zip_code=56353 site_time_zone_utc_offset=-6 +County "MN, Morrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700970.epw site_zip_code=56345 site_time_zone_utc_offset=-6 +County "MN, Mower County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700990.epw site_zip_code=55912 site_time_zone_utc_offset=-6 +County "MN, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701010.epw site_zip_code=56172 site_time_zone_utc_offset=-6 +County "MN, Nicollet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701030.epw site_zip_code=56003 site_time_zone_utc_offset=-6 +County "MN, Nobles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701050.epw site_zip_code=56187 site_time_zone_utc_offset=-6 +County "MN, Norman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701070.epw site_zip_code=56510 site_time_zone_utc_offset=-6 +County "MN, Olmsted County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701090.epw site_zip_code=55901 site_time_zone_utc_offset=-6 +County "MN, Otter Tail County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701110.epw site_zip_code=56537 site_time_zone_utc_offset=-6 +County "MN, Pennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701130.epw site_zip_code=56701 site_time_zone_utc_offset=-6 +County "MN, Pine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701150.epw site_zip_code=55063 site_time_zone_utc_offset=-6 +County "MN, Pipestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701170.epw site_zip_code=56164 site_time_zone_utc_offset=-6 +County "MN, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701190.epw site_zip_code=56721 site_time_zone_utc_offset=-6 +County "MN, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701210.epw site_zip_code=56334 site_time_zone_utc_offset=-6 +County "MN, Ramsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701230.epw site_zip_code=55106 site_time_zone_utc_offset=-6 +County "MN, Red Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701250.epw site_zip_code=56750 site_time_zone_utc_offset=-6 +County "MN, Redwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701270.epw site_zip_code=56283 site_time_zone_utc_offset=-6 +County "MN, Renville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701290.epw site_zip_code=56277 site_time_zone_utc_offset=-6 +County "MN, Rice County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701310.epw site_zip_code=55021 site_time_zone_utc_offset=-6 +County "MN, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701330.epw site_zip_code=56156 site_time_zone_utc_offset=-6 +County "MN, Roseau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701350.epw site_zip_code=56751 site_time_zone_utc_offset=-6 +County "MN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701390.epw site_zip_code=55379 site_time_zone_utc_offset=-6 +County "MN, Sherburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701410.epw site_zip_code=55330 site_time_zone_utc_offset=-6 +County "MN, Sibley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701430.epw site_zip_code=55334 site_time_zone_utc_offset=-6 +County "MN, St. Louis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701370.epw site_zip_code=55811 site_time_zone_utc_offset=-6 +County "MN, Stearns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701450.epw site_zip_code=56301 site_time_zone_utc_offset=-6 +County "MN, Steele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701470.epw site_zip_code=55060 site_time_zone_utc_offset=-6 +County "MN, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701490.epw site_zip_code=56267 site_time_zone_utc_offset=-6 +County "MN, Swift County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701510.epw site_zip_code=56215 site_time_zone_utc_offset=-6 +County "MN, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701530.epw site_zip_code=56347 site_time_zone_utc_offset=-6 +County "MN, Traverse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701550.epw site_zip_code=56296 site_time_zone_utc_offset=-6 +County "MN, Wabasha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701570.epw site_zip_code=55041 site_time_zone_utc_offset=-6 +County "MN, Wadena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701590.epw site_zip_code=56482 site_time_zone_utc_offset=-6 +County "MN, Waseca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701610.epw site_zip_code=56093 site_time_zone_utc_offset=-6 +County "MN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701630.epw site_zip_code=55125 site_time_zone_utc_offset=-6 +County "MN, Watonwan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701650.epw site_zip_code=56081 site_time_zone_utc_offset=-6 +County "MN, Wilkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701670.epw site_zip_code=56520 site_time_zone_utc_offset=-6 +County "MN, Winona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701690.epw site_zip_code=55987 site_time_zone_utc_offset=-6 +County "MN, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701710.epw site_zip_code=55313 site_time_zone_utc_offset=-6 +County "MN, Yellow Medicine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701730.epw site_zip_code=56220 site_time_zone_utc_offset=-6 +County "MO, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900010.epw site_zip_code=63501 site_time_zone_utc_offset=-6 +County "MO, Andrew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900030.epw site_zip_code=64485 site_time_zone_utc_offset=-6 +County "MO, Atchison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900050.epw site_zip_code=64491 site_time_zone_utc_offset=-6 +County "MO, Audrain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900070.epw site_zip_code=65265 site_time_zone_utc_offset=-6 +County "MO, Barry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900090.epw site_zip_code=65625 site_time_zone_utc_offset=-6 +County "MO, Barton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900110.epw site_zip_code=64759 site_time_zone_utc_offset=-6 +County "MO, Bates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900130.epw site_zip_code=64730 site_time_zone_utc_offset=-6 +County "MO, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900150.epw site_zip_code=65355 site_time_zone_utc_offset=-6 +County "MO, Bollinger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900170.epw site_zip_code=63764 site_time_zone_utc_offset=-6 +County "MO, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900190.epw site_zip_code=65203 site_time_zone_utc_offset=-6 +County "MO, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900210.epw site_zip_code=64506 site_time_zone_utc_offset=-6 +County "MO, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900230.epw site_zip_code=63901 site_time_zone_utc_offset=-6 +County "MO, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900250.epw site_zip_code=64644 site_time_zone_utc_offset=-6 +County "MO, Callaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900270.epw site_zip_code=65251 site_time_zone_utc_offset=-6 +County "MO, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900290.epw site_zip_code=65020 site_time_zone_utc_offset=-6 +County "MO, Cape Girardeau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900310.epw site_zip_code=63701 site_time_zone_utc_offset=-6 +County "MO, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900330.epw site_zip_code=64633 site_time_zone_utc_offset=-6 +County "MO, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900350.epw site_zip_code=63965 site_time_zone_utc_offset=-6 +County "MO, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900370.epw site_zip_code=64012 site_time_zone_utc_offset=-6 +County "MO, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900390.epw site_zip_code=64744 site_time_zone_utc_offset=-6 +County "MO, Chariton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900410.epw site_zip_code=65281 site_time_zone_utc_offset=-6 +County "MO, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900430.epw site_zip_code=65714 site_time_zone_utc_offset=-6 +County "MO, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900450.epw site_zip_code=63445 site_time_zone_utc_offset=-6 +County "MO, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900470.epw site_zip_code=64118 site_time_zone_utc_offset=-6 +County "MO, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900490.epw site_zip_code=64429 site_time_zone_utc_offset=-6 +County "MO, Cole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900510.epw site_zip_code=65109 site_time_zone_utc_offset=-6 +County "MO, Cooper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900530.epw site_zip_code=65233 site_time_zone_utc_offset=-6 +County "MO, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900550.epw site_zip_code=65453 site_time_zone_utc_offset=-6 +County "MO, Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900570.epw site_zip_code=65661 site_time_zone_utc_offset=-6 +County "MO, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900590.epw site_zip_code=65622 site_time_zone_utc_offset=-6 +County "MO, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900610.epw site_zip_code=64640 site_time_zone_utc_offset=-6 +County "MO, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900630.epw site_zip_code=64429 site_time_zone_utc_offset=-6 +County "MO, Dent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900650.epw site_zip_code=65560 site_time_zone_utc_offset=-6 +County "MO, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900670.epw site_zip_code=65608 site_time_zone_utc_offset=-6 +County "MO, Dunklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900690.epw site_zip_code=63857 site_time_zone_utc_offset=-6 +County "MO, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900710.epw site_zip_code=63090 site_time_zone_utc_offset=-6 +County "MO, Gasconade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900730.epw site_zip_code=65066 site_time_zone_utc_offset=-6 +County "MO, Gentry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900750.epw site_zip_code=64402 site_time_zone_utc_offset=-6 +County "MO, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900770.epw site_zip_code=65807 site_time_zone_utc_offset=-6 +County "MO, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900790.epw site_zip_code=64683 site_time_zone_utc_offset=-6 +County "MO, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900810.epw site_zip_code=64424 site_time_zone_utc_offset=-6 +County "MO, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900830.epw site_zip_code=64735 site_time_zone_utc_offset=-6 +County "MO, Hickory County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900850.epw site_zip_code=65779 site_time_zone_utc_offset=-6 +County "MO, Holt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900870.epw site_zip_code=64470 site_time_zone_utc_offset=-6 +County "MO, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900890.epw site_zip_code=65248 site_time_zone_utc_offset=-6 +County "MO, Howell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900910.epw site_zip_code=65775 site_time_zone_utc_offset=-6 +County "MO, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900930.epw site_zip_code=63650 site_time_zone_utc_offset=-6 +County "MO, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900950.epw site_zip_code=64055 site_time_zone_utc_offset=-6 +County "MO, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900970.epw site_zip_code=64801 site_time_zone_utc_offset=-6 +County "MO, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900990.epw site_zip_code=63010 site_time_zone_utc_offset=-6 +County "MO, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901010.epw site_zip_code=64093 site_time_zone_utc_offset=-6 +County "MO, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901030.epw site_zip_code=63537 site_time_zone_utc_offset=-6 +County "MO, Laclede County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901050.epw site_zip_code=65536 site_time_zone_utc_offset=-6 +County "MO, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901070.epw site_zip_code=64076 site_time_zone_utc_offset=-6 +County "MO, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901090.epw site_zip_code=65605 site_time_zone_utc_offset=-6 +County "MO, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901110.epw site_zip_code=63435 site_time_zone_utc_offset=-6 +County "MO, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901130.epw site_zip_code=63379 site_time_zone_utc_offset=-6 +County "MO, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901150.epw site_zip_code=64628 site_time_zone_utc_offset=-6 +County "MO, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901170.epw site_zip_code=64601 site_time_zone_utc_offset=-6 +County "MO, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901210.epw site_zip_code=63552 site_time_zone_utc_offset=-6 +County "MO, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901230.epw site_zip_code=63645 site_time_zone_utc_offset=-6 +County "MO, Maries County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901250.epw site_zip_code=65582 site_time_zone_utc_offset=-6 +County "MO, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901270.epw site_zip_code=63401 site_time_zone_utc_offset=-6 +County "MO, McDonald County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901190.epw site_zip_code=64831 site_time_zone_utc_offset=-6 +County "MO, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901290.epw site_zip_code=64673 site_time_zone_utc_offset=-6 +County "MO, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901310.epw site_zip_code=65026 site_time_zone_utc_offset=-6 +County "MO, Mississippi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901330.epw site_zip_code=63845 site_time_zone_utc_offset=-6 +County "MO, Moniteau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901350.epw site_zip_code=65018 site_time_zone_utc_offset=-6 +County "MO, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901370.epw site_zip_code=65275 site_time_zone_utc_offset=-6 +County "MO, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901390.epw site_zip_code=63361 site_time_zone_utc_offset=-6 +County "MO, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901410.epw site_zip_code=65037 site_time_zone_utc_offset=-6 +County "MO, New Madrid County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901430.epw site_zip_code=63873 site_time_zone_utc_offset=-6 +County "MO, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901450.epw site_zip_code=64850 site_time_zone_utc_offset=-6 +County "MO, Nodaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901470.epw site_zip_code=64468 site_time_zone_utc_offset=-6 +County "MO, Oregon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901490.epw site_zip_code=65606 site_time_zone_utc_offset=-6 +County "MO, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901510.epw site_zip_code=65051 site_time_zone_utc_offset=-6 +County "MO, Ozark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901530.epw site_zip_code=65655 site_time_zone_utc_offset=-6 +County "MO, Pemiscot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901550.epw site_zip_code=63830 site_time_zone_utc_offset=-6 +County "MO, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901570.epw site_zip_code=63775 site_time_zone_utc_offset=-6 +County "MO, Pettis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901590.epw site_zip_code=65301 site_time_zone_utc_offset=-6 +County "MO, Phelps County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901610.epw site_zip_code=65401 site_time_zone_utc_offset=-6 +County "MO, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901630.epw site_zip_code=63334 site_time_zone_utc_offset=-6 +County "MO, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901650.epw site_zip_code=64151 site_time_zone_utc_offset=-6 +County "MO, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901670.epw site_zip_code=65613 site_time_zone_utc_offset=-6 +County "MO, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901690.epw site_zip_code=65473 site_time_zone_utc_offset=-6 +County "MO, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901710.epw site_zip_code=63565 site_time_zone_utc_offset=-6 +County "MO, Ralls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901730.epw site_zip_code=63459 site_time_zone_utc_offset=-6 +County "MO, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901750.epw site_zip_code=65270 site_time_zone_utc_offset=-6 +County "MO, Ray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901770.epw site_zip_code=64085 site_time_zone_utc_offset=-6 +County "MO, Reynolds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901790.epw site_zip_code=63638 site_time_zone_utc_offset=-6 +County "MO, Ripley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901810.epw site_zip_code=63935 site_time_zone_utc_offset=-6 +County "MO, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901950.epw site_zip_code=65340 site_time_zone_utc_offset=-6 +County "MO, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901970.epw site_zip_code=63548 site_time_zone_utc_offset=-6 +County "MO, Scotland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901990.epw site_zip_code=63555 site_time_zone_utc_offset=-6 +County "MO, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902010.epw site_zip_code=63801 site_time_zone_utc_offset=-6 +County "MO, Shannon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902030.epw site_zip_code=65588 site_time_zone_utc_offset=-6 +County "MO, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902050.epw site_zip_code=63468 site_time_zone_utc_offset=-6 +County "MO, St. Charles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901830.epw site_zip_code=63376 site_time_zone_utc_offset=-6 +County "MO, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901850.epw site_zip_code=64776 site_time_zone_utc_offset=-6 +County "MO, St. Francois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901870.epw site_zip_code=63640 site_time_zone_utc_offset=-6 +County "MO, St. Louis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901890.epw site_zip_code=63021 site_time_zone_utc_offset=-6 +County "MO, St. Louis city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2905100.epw site_zip_code=63116 site_time_zone_utc_offset=-6 +County "MO, Ste. Genevieve County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901860.epw site_zip_code=63670 site_time_zone_utc_offset=-6 +County "MO, Stoddard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902070.epw site_zip_code=63841 site_time_zone_utc_offset=-6 +County "MO, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902090.epw site_zip_code=65737 site_time_zone_utc_offset=-6 +County "MO, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902110.epw site_zip_code=63556 site_time_zone_utc_offset=-6 +County "MO, Taney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902130.epw site_zip_code=65616 site_time_zone_utc_offset=-6 +County "MO, Texas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902150.epw site_zip_code=65483 site_time_zone_utc_offset=-6 +County "MO, Vernon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902170.epw site_zip_code=64772 site_time_zone_utc_offset=-6 +County "MO, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902190.epw site_zip_code=63383 site_time_zone_utc_offset=-6 +County "MO, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902210.epw site_zip_code=63664 site_time_zone_utc_offset=-6 +County "MO, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902230.epw site_zip_code=63957 site_time_zone_utc_offset=-6 +County "MO, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902250.epw site_zip_code=65706 site_time_zone_utc_offset=-6 +County "MO, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902270.epw site_zip_code=64456 site_time_zone_utc_offset=-6 +County "MO, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902290.epw site_zip_code=65711 site_time_zone_utc_offset=-6 +County "MS, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800010.epw site_zip_code=39120 site_time_zone_utc_offset=-6 +County "MS, Alcorn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800030.epw site_zip_code=38834 site_time_zone_utc_offset=-6 +County "MS, Amite County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800050.epw site_zip_code=39645 site_time_zone_utc_offset=-6 +County "MS, Attala County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800070.epw site_zip_code=39090 site_time_zone_utc_offset=-6 +County "MS, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800090.epw site_zip_code=38603 site_time_zone_utc_offset=-6 +County "MS, Bolivar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800110.epw site_zip_code=38732 site_time_zone_utc_offset=-6 +County "MS, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800130.epw site_zip_code=38916 site_time_zone_utc_offset=-6 +County "MS, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800150.epw site_zip_code=38917 site_time_zone_utc_offset=-6 +County "MS, Chickasaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800170.epw site_zip_code=38851 site_time_zone_utc_offset=-6 +County "MS, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800190.epw site_zip_code=39735 site_time_zone_utc_offset=-6 +County "MS, Claiborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800210.epw site_zip_code=39150 site_time_zone_utc_offset=-6 +County "MS, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800230.epw site_zip_code=39355 site_time_zone_utc_offset=-6 +County "MS, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800250.epw site_zip_code=39773 site_time_zone_utc_offset=-6 +County "MS, Coahoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800270.epw site_zip_code=38614 site_time_zone_utc_offset=-6 +County "MS, Copiah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800290.epw site_zip_code=39059 site_time_zone_utc_offset=-6 +County "MS, Covington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800310.epw site_zip_code=39428 site_time_zone_utc_offset=-6 +County "MS, DeSoto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800330.epw site_zip_code=38654 site_time_zone_utc_offset=-6 +County "MS, Forrest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800350.epw site_zip_code=39401 site_time_zone_utc_offset=-6 +County "MS, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800370.epw site_zip_code=39653 site_time_zone_utc_offset=-6 +County "MS, George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800390.epw site_zip_code=39452 site_time_zone_utc_offset=-6 +County "MS, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800410.epw site_zip_code=39451 site_time_zone_utc_offset=-6 +County "MS, Grenada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800430.epw site_zip_code=38901 site_time_zone_utc_offset=-6 +County "MS, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800450.epw site_zip_code=39520 site_time_zone_utc_offset=-6 +County "MS, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800470.epw site_zip_code=39503 site_time_zone_utc_offset=-6 +County "MS, Hinds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800490.epw site_zip_code=39209 site_time_zone_utc_offset=-6 +County "MS, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800510.epw site_zip_code=39095 site_time_zone_utc_offset=-6 +County "MS, Humphreys County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800530.epw site_zip_code=39038 site_time_zone_utc_offset=-6 +County "MS, Issaquena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800550.epw site_zip_code=39159 site_time_zone_utc_offset=-6 +County "MS, Itawamba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800570.epw site_zip_code=38843 site_time_zone_utc_offset=-6 +County "MS, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800590.epw site_zip_code=39564 site_time_zone_utc_offset=-6 +County "MS, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800610.epw site_zip_code=39422 site_time_zone_utc_offset=-6 +County "MS, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800630.epw site_zip_code=39069 site_time_zone_utc_offset=-6 +County "MS, Jefferson Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800650.epw site_zip_code=39474 site_time_zone_utc_offset=-6 +County "MS, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800670.epw site_zip_code=39443 site_time_zone_utc_offset=-6 +County "MS, Kemper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800690.epw site_zip_code=39328 site_time_zone_utc_offset=-6 +County "MS, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800710.epw site_zip_code=38655 site_time_zone_utc_offset=-6 +County "MS, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800730.epw site_zip_code=39402 site_time_zone_utc_offset=-6 +County "MS, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800750.epw site_zip_code=39301 site_time_zone_utc_offset=-6 +County "MS, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800770.epw site_zip_code=39654 site_time_zone_utc_offset=-6 +County "MS, Leake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800790.epw site_zip_code=39051 site_time_zone_utc_offset=-6 +County "MS, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800810.epw site_zip_code=38801 site_time_zone_utc_offset=-6 +County "MS, Leflore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800830.epw site_zip_code=38930 site_time_zone_utc_offset=-6 +County "MS, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800850.epw site_zip_code=39601 site_time_zone_utc_offset=-6 +County "MS, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800870.epw site_zip_code=39702 site_time_zone_utc_offset=-6 +County "MS, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800890.epw site_zip_code=39110 site_time_zone_utc_offset=-6 +County "MS, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800910.epw site_zip_code=39429 site_time_zone_utc_offset=-6 +County "MS, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800930.epw site_zip_code=38611 site_time_zone_utc_offset=-6 +County "MS, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800950.epw site_zip_code=38821 site_time_zone_utc_offset=-6 +County "MS, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800970.epw site_zip_code=38967 site_time_zone_utc_offset=-6 +County "MS, Neshoba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800990.epw site_zip_code=39350 site_time_zone_utc_offset=-6 +County "MS, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801010.epw site_zip_code=39345 site_time_zone_utc_offset=-6 +County "MS, Noxubee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801030.epw site_zip_code=39341 site_time_zone_utc_offset=-6 +County "MS, Oktibbeha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801050.epw site_zip_code=39759 site_time_zone_utc_offset=-6 +County "MS, Panola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801070.epw site_zip_code=38606 site_time_zone_utc_offset=-6 +County "MS, Pearl River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801090.epw site_zip_code=39466 site_time_zone_utc_offset=-6 +County "MS, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801110.epw site_zip_code=39476 site_time_zone_utc_offset=-6 +County "MS, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801130.epw site_zip_code=39648 site_time_zone_utc_offset=-6 +County "MS, Pontotoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801150.epw site_zip_code=38863 site_time_zone_utc_offset=-6 +County "MS, Prentiss County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801170.epw site_zip_code=38829 site_time_zone_utc_offset=-6 +County "MS, Quitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801190.epw site_zip_code=38646 site_time_zone_utc_offset=-6 +County "MS, Rankin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801210.epw site_zip_code=39047 site_time_zone_utc_offset=-6 +County "MS, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801230.epw site_zip_code=39074 site_time_zone_utc_offset=-6 +County "MS, Sharkey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801250.epw site_zip_code=39159 site_time_zone_utc_offset=-6 +County "MS, Simpson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801270.epw site_zip_code=39111 site_time_zone_utc_offset=-6 +County "MS, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801290.epw site_zip_code=39168 site_time_zone_utc_offset=-6 +County "MS, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801310.epw site_zip_code=39577 site_time_zone_utc_offset=-6 +County "MS, Sunflower County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801330.epw site_zip_code=38751 site_time_zone_utc_offset=-6 +County "MS, Tallahatchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801350.epw site_zip_code=38921 site_time_zone_utc_offset=-6 +County "MS, Tate County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801370.epw site_zip_code=38668 site_time_zone_utc_offset=-6 +County "MS, Tippah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801390.epw site_zip_code=38663 site_time_zone_utc_offset=-6 +County "MS, Tishomingo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801410.epw site_zip_code=38852 site_time_zone_utc_offset=-6 +County "MS, Tunica County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801430.epw site_zip_code=38676 site_time_zone_utc_offset=-6 +County "MS, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801450.epw site_zip_code=38652 site_time_zone_utc_offset=-6 +County "MS, Walthall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801470.epw site_zip_code=39667 site_time_zone_utc_offset=-6 +County "MS, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801490.epw site_zip_code=39180 site_time_zone_utc_offset=-6 +County "MS, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801510.epw site_zip_code=38701 site_time_zone_utc_offset=-6 +County "MS, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801530.epw site_zip_code=39367 site_time_zone_utc_offset=-6 +County "MS, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801550.epw site_zip_code=39744 site_time_zone_utc_offset=-6 +County "MS, Wilkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801570.epw site_zip_code=39669 site_time_zone_utc_offset=-6 +County "MS, Winston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801590.epw site_zip_code=39339 site_time_zone_utc_offset=-6 +County "MS, Yalobusha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801610.epw site_zip_code=38965 site_time_zone_utc_offset=-6 +County "MS, Yazoo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801630.epw site_zip_code=39194 site_time_zone_utc_offset=-6 +County "MT, Beaverhead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000010.epw site_zip_code=59725 site_time_zone_utc_offset=-7 +County "MT, Big Horn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000030.epw site_zip_code=59034 site_time_zone_utc_offset=-7 +County "MT, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000050.epw site_zip_code=59526 site_time_zone_utc_offset=-7 +County "MT, Broadwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000070.epw site_zip_code=59644 site_time_zone_utc_offset=-7 +County "MT, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000090.epw site_zip_code=59068 site_time_zone_utc_offset=-7 +County "MT, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000110.epw site_zip_code=59324 site_time_zone_utc_offset=-7 +County "MT, Cascade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000130.epw site_zip_code=59405 site_time_zone_utc_offset=-7 +County "MT, Chouteau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000150.epw site_zip_code=59442 site_time_zone_utc_offset=-7 +County "MT, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000170.epw site_zip_code=59301 site_time_zone_utc_offset=-7 +County "MT, Daniels County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000190.epw site_zip_code=59263 site_time_zone_utc_offset=-7 +County "MT, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000210.epw site_zip_code=59330 site_time_zone_utc_offset=-7 +County "MT, Deer Lodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000230.epw site_zip_code=59711 site_time_zone_utc_offset=-7 +County "MT, Fallon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000250.epw site_zip_code=59313 site_time_zone_utc_offset=-7 +County "MT, Fergus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000270.epw site_zip_code=59457 site_time_zone_utc_offset=-7 +County "MT, Flathead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000290.epw site_zip_code=59901 site_time_zone_utc_offset=-7 +County "MT, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000310.epw site_zip_code=59718 site_time_zone_utc_offset=-7 +County "MT, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000330.epw site_zip_code=59337 site_time_zone_utc_offset=-7 +County "MT, Glacier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000350.epw site_zip_code=59427 site_time_zone_utc_offset=-7 +County "MT, Golden Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000370.epw site_zip_code=59074 site_time_zone_utc_offset=-7 +County "MT, Granite County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000390.epw site_zip_code=59858 site_time_zone_utc_offset=-7 +County "MT, Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000410.epw site_zip_code=59501 site_time_zone_utc_offset=-7 +County "MT, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000430.epw site_zip_code=59634 site_time_zone_utc_offset=-7 +County "MT, Judith Basin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000450.epw site_zip_code=59479 site_time_zone_utc_offset=-7 +County "MT, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000470.epw site_zip_code=59860 site_time_zone_utc_offset=-7 +County "MT, Lewis and Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000490.epw site_zip_code=59601 site_time_zone_utc_offset=-7 +County "MT, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000510.epw site_zip_code=59522 site_time_zone_utc_offset=-7 +County "MT, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000530.epw site_zip_code=59923 site_time_zone_utc_offset=-7 +County "MT, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000570.epw site_zip_code=59729 site_time_zone_utc_offset=-7 +County "MT, McCone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000550.epw site_zip_code=59215 site_time_zone_utc_offset=-7 +County "MT, Meagher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000590.epw site_zip_code=59645 site_time_zone_utc_offset=-7 +County "MT, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000610.epw site_zip_code=59872 site_time_zone_utc_offset=-7 +County "MT, Missoula County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000630.epw site_zip_code=59801 site_time_zone_utc_offset=-7 +County "MT, Musselshell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000650.epw site_zip_code=59072 site_time_zone_utc_offset=-7 +County "MT, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000670.epw site_zip_code=59047 site_time_zone_utc_offset=-7 +County "MT, Petroleum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000690.epw site_zip_code=59087 site_time_zone_utc_offset=-7 +County "MT, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000710.epw site_zip_code=59538 site_time_zone_utc_offset=-7 +County "MT, Pondera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000730.epw site_zip_code=59425 site_time_zone_utc_offset=-7 +County "MT, Powder River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000750.epw site_zip_code=59317 site_time_zone_utc_offset=-7 +County "MT, Powell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000770.epw site_zip_code=59722 site_time_zone_utc_offset=-7 +County "MT, Prairie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000790.epw site_zip_code=59349 site_time_zone_utc_offset=-7 +County "MT, Ravalli County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000810.epw site_zip_code=59840 site_time_zone_utc_offset=-7 +County "MT, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000830.epw site_zip_code=59270 site_time_zone_utc_offset=-7 +County "MT, Roosevelt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000850.epw site_zip_code=59201 site_time_zone_utc_offset=-7 +County "MT, Rosebud County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000870.epw site_zip_code=59327 site_time_zone_utc_offset=-7 +County "MT, Sanders County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000890.epw site_zip_code=59859 site_time_zone_utc_offset=-7 +County "MT, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000910.epw site_zip_code=59254 site_time_zone_utc_offset=-7 +County "MT, Silver Bow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000930.epw site_zip_code=59701 site_time_zone_utc_offset=-7 +County "MT, Stillwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000950.epw site_zip_code=59019 site_time_zone_utc_offset=-7 +County "MT, Sweet Grass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000970.epw site_zip_code=59011 site_time_zone_utc_offset=-7 +County "MT, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000990.epw site_zip_code=59422 site_time_zone_utc_offset=-7 +County "MT, Toole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001010.epw site_zip_code=59474 site_time_zone_utc_offset=-7 +County "MT, Treasure County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001030.epw site_zip_code=59038 site_time_zone_utc_offset=-7 +County "MT, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001050.epw site_zip_code=59230 site_time_zone_utc_offset=-7 +County "MT, Wheatland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001070.epw site_zip_code=59036 site_time_zone_utc_offset=-7 +County "MT, Wibaux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001090.epw site_zip_code=59353 site_time_zone_utc_offset=-7 +County "MT, Yellowstone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001110.epw site_zip_code=59102 site_time_zone_utc_offset=-7 +County "NC, Alamance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700010.epw site_zip_code=27215 site_time_zone_utc_offset=-5 +County "NC, Alexander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700030.epw site_zip_code=28681 site_time_zone_utc_offset=-5 +County "NC, Alleghany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700050.epw site_zip_code=28675 site_time_zone_utc_offset=-5 +County "NC, Anson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700070.epw site_zip_code=28170 site_time_zone_utc_offset=-5 +County "NC, Ashe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700090.epw site_zip_code=28694 site_time_zone_utc_offset=-5 +County "NC, Avery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700110.epw site_zip_code=28657 site_time_zone_utc_offset=-5 +County "NC, Beaufort County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700130.epw site_zip_code=27889 site_time_zone_utc_offset=-5 +County "NC, Bertie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700150.epw site_zip_code=27983 site_time_zone_utc_offset=-5 +County "NC, Bladen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700170.epw site_zip_code=28337 site_time_zone_utc_offset=-5 +County "NC, Brunswick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700190.epw site_zip_code=28451 site_time_zone_utc_offset=-5 +County "NC, Buncombe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700210.epw site_zip_code=28806 site_time_zone_utc_offset=-5 +County "NC, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700230.epw site_zip_code=28655 site_time_zone_utc_offset=-5 +County "NC, Cabarrus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700250.epw site_zip_code=28027 site_time_zone_utc_offset=-5 +County "NC, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700270.epw site_zip_code=28645 site_time_zone_utc_offset=-5 +County "NC, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700290.epw site_zip_code=27921 site_time_zone_utc_offset=-5 +County "NC, Carteret County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700310.epw site_zip_code=28570 site_time_zone_utc_offset=-5 +County "NC, Caswell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700330.epw site_zip_code=27379 site_time_zone_utc_offset=-5 +County "NC, Catawba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700350.epw site_zip_code=28601 site_time_zone_utc_offset=-5 +County "NC, Chatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700370.epw site_zip_code=27312 site_time_zone_utc_offset=-5 +County "NC, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700390.epw site_zip_code=28906 site_time_zone_utc_offset=-5 +County "NC, Chowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700410.epw site_zip_code=27932 site_time_zone_utc_offset=-5 +County "NC, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700430.epw site_zip_code=28904 site_time_zone_utc_offset=-5 +County "NC, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700450.epw site_zip_code=28150 site_time_zone_utc_offset=-5 +County "NC, Columbus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700470.epw site_zip_code=28472 site_time_zone_utc_offset=-5 +County "NC, Craven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700490.epw site_zip_code=28562 site_time_zone_utc_offset=-5 +County "NC, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700510.epw site_zip_code=28314 site_time_zone_utc_offset=-5 +County "NC, Currituck County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700530.epw site_zip_code=27958 site_time_zone_utc_offset=-5 +County "NC, Dare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700550.epw site_zip_code=27949 site_time_zone_utc_offset=-5 +County "NC, Davidson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700570.epw site_zip_code=27360 site_time_zone_utc_offset=-5 +County "NC, Davie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700590.epw site_zip_code=27028 site_time_zone_utc_offset=-5 +County "NC, Duplin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700610.epw site_zip_code=28466 site_time_zone_utc_offset=-5 +County "NC, Durham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700630.epw site_zip_code=27703 site_time_zone_utc_offset=-5 +County "NC, Edgecombe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700650.epw site_zip_code=27801 site_time_zone_utc_offset=-5 +County "NC, Forsyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700670.epw site_zip_code=27284 site_time_zone_utc_offset=-5 +County "NC, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700690.epw site_zip_code=27549 site_time_zone_utc_offset=-5 +County "NC, Gaston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700710.epw site_zip_code=28054 site_time_zone_utc_offset=-5 +County "NC, Gates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700730.epw site_zip_code=27937 site_time_zone_utc_offset=-5 +County "NC, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700750.epw site_zip_code=28771 site_time_zone_utc_offset=-5 +County "NC, Granville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700770.epw site_zip_code=27565 site_time_zone_utc_offset=-5 +County "NC, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700790.epw site_zip_code=28580 site_time_zone_utc_offset=-5 +County "NC, Guilford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700810.epw site_zip_code=27406 site_time_zone_utc_offset=-5 +County "NC, Halifax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700830.epw site_zip_code=27870 site_time_zone_utc_offset=-5 +County "NC, Harnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700850.epw site_zip_code=27546 site_time_zone_utc_offset=-5 +County "NC, Haywood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700870.epw site_zip_code=28786 site_time_zone_utc_offset=-5 +County "NC, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700890.epw site_zip_code=28792 site_time_zone_utc_offset=-5 +County "NC, Hertford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700910.epw site_zip_code=27910 site_time_zone_utc_offset=-5 +County "NC, Hoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700930.epw site_zip_code=28376 site_time_zone_utc_offset=-5 +County "NC, Hyde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700950.epw site_zip_code=27824 site_time_zone_utc_offset=-5 +County "NC, Iredell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700970.epw site_zip_code=28117 site_time_zone_utc_offset=-5 +County "NC, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700990.epw site_zip_code=28779 site_time_zone_utc_offset=-5 +County "NC, Johnston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701010.epw site_zip_code=27520 site_time_zone_utc_offset=-5 +County "NC, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701030.epw site_zip_code=28585 site_time_zone_utc_offset=-5 +County "NC, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701050.epw site_zip_code=27330 site_time_zone_utc_offset=-5 +County "NC, Lenoir County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701070.epw site_zip_code=28501 site_time_zone_utc_offset=-5 +County "NC, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701090.epw site_zip_code=28092 site_time_zone_utc_offset=-5 +County "NC, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701130.epw site_zip_code=28734 site_time_zone_utc_offset=-5 +County "NC, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701150.epw site_zip_code=28753 site_time_zone_utc_offset=-5 +County "NC, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701170.epw site_zip_code=27892 site_time_zone_utc_offset=-5 +County "NC, McDowell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701110.epw site_zip_code=28752 site_time_zone_utc_offset=-5 +County "NC, Mecklenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701190.epw site_zip_code=28269 site_time_zone_utc_offset=-5 +County "NC, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701210.epw site_zip_code=28777 site_time_zone_utc_offset=-5 +County "NC, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701230.epw site_zip_code=27371 site_time_zone_utc_offset=-5 +County "NC, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701250.epw site_zip_code=28374 site_time_zone_utc_offset=-5 +County "NC, Nash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701270.epw site_zip_code=27804 site_time_zone_utc_offset=-5 +County "NC, New Hanover County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701290.epw site_zip_code=28412 site_time_zone_utc_offset=-5 +County "NC, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701310.epw site_zip_code=27831 site_time_zone_utc_offset=-5 +County "NC, Onslow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701330.epw site_zip_code=28540 site_time_zone_utc_offset=-5 +County "NC, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701350.epw site_zip_code=27514 site_time_zone_utc_offset=-5 +County "NC, Pamlico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701370.epw site_zip_code=28571 site_time_zone_utc_offset=-5 +County "NC, Pasquotank County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701390.epw site_zip_code=27909 site_time_zone_utc_offset=-5 +County "NC, Pender County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701410.epw site_zip_code=28443 site_time_zone_utc_offset=-5 +County "NC, Perquimans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701430.epw site_zip_code=27944 site_time_zone_utc_offset=-5 +County "NC, Person County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701450.epw site_zip_code=27574 site_time_zone_utc_offset=-5 +County "NC, Pitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701470.epw site_zip_code=27858 site_time_zone_utc_offset=-5 +County "NC, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701490.epw site_zip_code=28782 site_time_zone_utc_offset=-5 +County "NC, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701510.epw site_zip_code=27205 site_time_zone_utc_offset=-5 +County "NC, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701530.epw site_zip_code=28379 site_time_zone_utc_offset=-5 +County "NC, Robeson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701550.epw site_zip_code=28358 site_time_zone_utc_offset=-5 +County "NC, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701570.epw site_zip_code=27320 site_time_zone_utc_offset=-5 +County "NC, Rowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701590.epw site_zip_code=28146 site_time_zone_utc_offset=-5 +County "NC, Rutherford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701610.epw site_zip_code=28043 site_time_zone_utc_offset=-5 +County "NC, Sampson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701630.epw site_zip_code=28328 site_time_zone_utc_offset=-5 +County "NC, Scotland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701650.epw site_zip_code=28352 site_time_zone_utc_offset=-5 +County "NC, Stanly County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701670.epw site_zip_code=28001 site_time_zone_utc_offset=-5 +County "NC, Stokes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701690.epw site_zip_code=27021 site_time_zone_utc_offset=-5 +County "NC, Surry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701710.epw site_zip_code=27030 site_time_zone_utc_offset=-5 +County "NC, Swain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701730.epw site_zip_code=28713 site_time_zone_utc_offset=-5 +County "NC, Transylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701750.epw site_zip_code=28712 site_time_zone_utc_offset=-5 +County "NC, Tyrrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701770.epw site_zip_code=27925 site_time_zone_utc_offset=-5 +County "NC, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701790.epw site_zip_code=28173 site_time_zone_utc_offset=-5 +County "NC, Vance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701810.epw site_zip_code=27537 site_time_zone_utc_offset=-5 +County "NC, Wake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701830.epw site_zip_code=27610 site_time_zone_utc_offset=-5 +County "NC, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701850.epw site_zip_code=27589 site_time_zone_utc_offset=-5 +County "NC, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701870.epw site_zip_code=27962 site_time_zone_utc_offset=-5 +County "NC, Watauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701890.epw site_zip_code=28607 site_time_zone_utc_offset=-5 +County "NC, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701910.epw site_zip_code=27530 site_time_zone_utc_offset=-5 +County "NC, Wilkes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701930.epw site_zip_code=28659 site_time_zone_utc_offset=-5 +County "NC, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701950.epw site_zip_code=27893 site_time_zone_utc_offset=-5 +County "NC, Yadkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701970.epw site_zip_code=27055 site_time_zone_utc_offset=-5 +County "NC, Yancey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701990.epw site_zip_code=28714 site_time_zone_utc_offset=-5 +County "ND, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800010.epw site_zip_code=58639 site_time_zone_utc_offset=-7 +County "ND, Barnes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800030.epw site_zip_code=58072 site_time_zone_utc_offset=-6 +County "ND, Benson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800050.epw site_zip_code=58348 site_time_zone_utc_offset=-6 +County "ND, Billings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800070.epw site_zip_code=58622 site_time_zone_utc_offset=-7 +County "ND, Bottineau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800090.epw site_zip_code=58318 site_time_zone_utc_offset=-6 +County "ND, Bowman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800110.epw site_zip_code=58623 site_time_zone_utc_offset=-7 +County "ND, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800130.epw site_zip_code=58773 site_time_zone_utc_offset=-6 +County "ND, Burleigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800150.epw site_zip_code=58503 site_time_zone_utc_offset=-6 +County "ND, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800170.epw site_zip_code=58103 site_time_zone_utc_offset=-6 +County "ND, Cavalier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800190.epw site_zip_code=58249 site_time_zone_utc_offset=-6 +County "ND, Dickey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800210.epw site_zip_code=58474 site_time_zone_utc_offset=-6 +County "ND, Divide County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800230.epw site_zip_code=58730 site_time_zone_utc_offset=-6 +County "ND, Dunn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800250.epw site_zip_code=58640 site_time_zone_utc_offset=-7 +County "ND, Eddy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800270.epw site_zip_code=58356 site_time_zone_utc_offset=-6 +County "ND, Emmons County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800290.epw site_zip_code=58552 site_time_zone_utc_offset=-6 +County "ND, Foster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800310.epw site_zip_code=58421 site_time_zone_utc_offset=-6 +County "ND, Golden Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800330.epw site_zip_code=58621 site_time_zone_utc_offset=-7 +County "ND, Grand Forks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800350.epw site_zip_code=58201 site_time_zone_utc_offset=-6 +County "ND, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800370.epw site_zip_code=58533 site_time_zone_utc_offset=-7 +County "ND, Griggs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800390.epw site_zip_code=58425 site_time_zone_utc_offset=-6 +County "ND, Hettinger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800410.epw site_zip_code=58646 site_time_zone_utc_offset=-7 +County "ND, Kidder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800430.epw site_zip_code=58482 site_time_zone_utc_offset=-6 +County "ND, LaMoure County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800450.epw site_zip_code=58458 site_time_zone_utc_offset=-6 +County "ND, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800470.epw site_zip_code=58561 site_time_zone_utc_offset=-6 +County "ND, McHenry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800490.epw site_zip_code=58790 site_time_zone_utc_offset=-6 +County "ND, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800510.epw site_zip_code=58495 site_time_zone_utc_offset=-6 +County "ND, McKenzie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800530.epw site_zip_code=58854 site_time_zone_utc_offset=-7 +County "ND, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800550.epw site_zip_code=58540 site_time_zone_utc_offset=-6 +County "ND, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800570.epw site_zip_code=58545 site_time_zone_utc_offset=-6 +County "ND, Morton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800590.epw site_zip_code=58554 site_time_zone_utc_offset=-6 +County "ND, Mountrail County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800610.epw site_zip_code=58763 site_time_zone_utc_offset=-6 +County "ND, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800630.epw site_zip_code=58344 site_time_zone_utc_offset=-6 +County "ND, Oliver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800650.epw site_zip_code=58530 site_time_zone_utc_offset=-6 +County "ND, Pembina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800670.epw site_zip_code=58220 site_time_zone_utc_offset=-6 +County "ND, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800690.epw site_zip_code=58368 site_time_zone_utc_offset=-6 +County "ND, Ramsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800710.epw site_zip_code=58301 site_time_zone_utc_offset=-6 +County "ND, Ransom County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800730.epw site_zip_code=58054 site_time_zone_utc_offset=-6 +County "ND, Renville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800750.epw site_zip_code=58761 site_time_zone_utc_offset=-6 +County "ND, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800770.epw site_zip_code=58075 site_time_zone_utc_offset=-6 +County "ND, Rolette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800790.epw site_zip_code=58367 site_time_zone_utc_offset=-6 +County "ND, Sargent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800810.epw site_zip_code=58060 site_time_zone_utc_offset=-6 +County "ND, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800830.epw site_zip_code=58463 site_time_zone_utc_offset=-6 +County "ND, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800850.epw site_zip_code=58538 site_time_zone_utc_offset=-6 +County "ND, Slope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800870.epw site_zip_code=58620 site_time_zone_utc_offset=-7 +County "ND, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800890.epw site_zip_code=58601 site_time_zone_utc_offset=-7 +County "ND, Steele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800910.epw site_zip_code=58230 site_time_zone_utc_offset=-6 +County "ND, Stutsman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800930.epw site_zip_code=58401 site_time_zone_utc_offset=-6 +County "ND, Towner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800950.epw site_zip_code=58324 site_time_zone_utc_offset=-6 +County "ND, Traill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800970.epw site_zip_code=58257 site_time_zone_utc_offset=-6 +County "ND, Walsh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800990.epw site_zip_code=58237 site_time_zone_utc_offset=-6 +County "ND, Ward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801010.epw site_zip_code=58701 site_time_zone_utc_offset=-6 +County "ND, Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801030.epw site_zip_code=58341 site_time_zone_utc_offset=-6 +County "ND, Williams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801050.epw site_zip_code=58801 site_time_zone_utc_offset=-6 +County "NE, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100010.epw site_zip_code=68901 site_time_zone_utc_offset=-6 +County "NE, Antelope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100030.epw site_zip_code=68756 site_time_zone_utc_offset=-6 +County "NE, Arthur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100050.epw site_zip_code=69121 site_time_zone_utc_offset=-7 +County "NE, Banner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100070.epw site_zip_code=69345 site_time_zone_utc_offset=-7 +County "NE, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100090.epw site_zip_code=68833 site_time_zone_utc_offset=-6 +County "NE, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100110.epw site_zip_code=68620 site_time_zone_utc_offset=-6 +County "NE, Box Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100130.epw site_zip_code=69301 site_time_zone_utc_offset=-7 +County "NE, Boyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100150.epw site_zip_code=68777 site_time_zone_utc_offset=-6 +County "NE, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100170.epw site_zip_code=69210 site_time_zone_utc_offset=-6 +County "NE, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100190.epw site_zip_code=68845 site_time_zone_utc_offset=-6 +County "NE, Burt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100210.epw site_zip_code=68061 site_time_zone_utc_offset=-6 +County "NE, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100230.epw site_zip_code=68632 site_time_zone_utc_offset=-6 +County "NE, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100250.epw site_zip_code=68048 site_time_zone_utc_offset=-6 +County "NE, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100270.epw site_zip_code=68739 site_time_zone_utc_offset=-6 +County "NE, Chase County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100290.epw site_zip_code=69033 site_time_zone_utc_offset=-7 +County "NE, Cherry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100310.epw site_zip_code=69201 site_time_zone_utc_offset=-6 +County "NE, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100330.epw site_zip_code=69162 site_time_zone_utc_offset=-7 +County "NE, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100350.epw site_zip_code=68979 site_time_zone_utc_offset=-6 +County "NE, Colfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100370.epw site_zip_code=68661 site_time_zone_utc_offset=-6 +County "NE, Cuming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100390.epw site_zip_code=68788 site_time_zone_utc_offset=-6 +County "NE, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100410.epw site_zip_code=68822 site_time_zone_utc_offset=-6 +County "NE, Dakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100430.epw site_zip_code=68776 site_time_zone_utc_offset=-6 +County "NE, Dawes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100450.epw site_zip_code=69337 site_time_zone_utc_offset=-7 +County "NE, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100470.epw site_zip_code=68850 site_time_zone_utc_offset=-6 +County "NE, Deuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100490.epw site_zip_code=69129 site_time_zone_utc_offset=-7 +County "NE, Dixon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100510.epw site_zip_code=68770 site_time_zone_utc_offset=-6 +County "NE, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100530.epw site_zip_code=68025 site_time_zone_utc_offset=-6 +County "NE, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100550.epw site_zip_code=68022 site_time_zone_utc_offset=-6 +County "NE, Dundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100570.epw site_zip_code=69021 site_time_zone_utc_offset=-7 +County "NE, Fillmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100590.epw site_zip_code=68361 site_time_zone_utc_offset=-6 +County "NE, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100610.epw site_zip_code=68939 site_time_zone_utc_offset=-6 +County "NE, Frontier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100630.epw site_zip_code=69025 site_time_zone_utc_offset=-6 +County "NE, Furnas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100650.epw site_zip_code=69022 site_time_zone_utc_offset=-6 +County "NE, Gage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100670.epw site_zip_code=68310 site_time_zone_utc_offset=-6 +County "NE, Garden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100690.epw site_zip_code=69154 site_time_zone_utc_offset=-7 +County "NE, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100710.epw site_zip_code=68823 site_time_zone_utc_offset=-6 +County "NE, Gosper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100730.epw site_zip_code=68937 site_time_zone_utc_offset=-6 +County "NE, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100750.epw site_zip_code=69350 site_time_zone_utc_offset=-7 +County "NE, Greeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100770.epw site_zip_code=68665 site_time_zone_utc_offset=-6 +County "NE, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100790.epw site_zip_code=68801 site_time_zone_utc_offset=-6 +County "NE, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100810.epw site_zip_code=68818 site_time_zone_utc_offset=-6 +County "NE, Harlan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100830.epw site_zip_code=68920 site_time_zone_utc_offset=-6 +County "NE, Hayes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100850.epw site_zip_code=69032 site_time_zone_utc_offset=-6 +County "NE, Hitchcock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100870.epw site_zip_code=69024 site_time_zone_utc_offset=-6 +County "NE, Holt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100890.epw site_zip_code=68763 site_time_zone_utc_offset=-6 +County "NE, Hooker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100910.epw site_zip_code=69152 site_time_zone_utc_offset=-7 +County "NE, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100930.epw site_zip_code=68873 site_time_zone_utc_offset=-6 +County "NE, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100950.epw site_zip_code=68352 site_time_zone_utc_offset=-6 +County "NE, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100970.epw site_zip_code=68450 site_time_zone_utc_offset=-6 +County "NE, Kearney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100990.epw site_zip_code=68959 site_time_zone_utc_offset=-6 +County "NE, Keith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101010.epw site_zip_code=69153 site_time_zone_utc_offset=-7 +County "NE, Keya Paha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101030.epw site_zip_code=68778 site_time_zone_utc_offset=-6 +County "NE, Kimball County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101050.epw site_zip_code=69145 site_time_zone_utc_offset=-7 +County "NE, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101070.epw site_zip_code=68718 site_time_zone_utc_offset=-6 +County "NE, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101090.epw site_zip_code=68516 site_time_zone_utc_offset=-6 +County "NE, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101110.epw site_zip_code=69101 site_time_zone_utc_offset=-6 +County "NE, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101130.epw site_zip_code=69163 site_time_zone_utc_offset=-6 +County "NE, Loup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101150.epw site_zip_code=68823 site_time_zone_utc_offset=-6 +County "NE, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101190.epw site_zip_code=68701 site_time_zone_utc_offset=-6 +County "NE, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101170.epw site_zip_code=69167 site_time_zone_utc_offset=-6 +County "NE, Merrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101210.epw site_zip_code=68826 site_time_zone_utc_offset=-6 +County "NE, Morrill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101230.epw site_zip_code=69336 site_time_zone_utc_offset=-7 +County "NE, Nance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101250.epw site_zip_code=68638 site_time_zone_utc_offset=-6 +County "NE, Nemaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101270.epw site_zip_code=68305 site_time_zone_utc_offset=-6 +County "NE, Nuckolls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101290.epw site_zip_code=68978 site_time_zone_utc_offset=-6 +County "NE, Otoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101310.epw site_zip_code=68410 site_time_zone_utc_offset=-6 +County "NE, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101330.epw site_zip_code=68420 site_time_zone_utc_offset=-6 +County "NE, Perkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101350.epw site_zip_code=69140 site_time_zone_utc_offset=-7 +County "NE, Phelps County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101370.epw site_zip_code=68949 site_time_zone_utc_offset=-6 +County "NE, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101390.epw site_zip_code=68767 site_time_zone_utc_offset=-6 +County "NE, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101410.epw site_zip_code=68601 site_time_zone_utc_offset=-6 +County "NE, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101430.epw site_zip_code=68666 site_time_zone_utc_offset=-6 +County "NE, Red Willow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101450.epw site_zip_code=69001 site_time_zone_utc_offset=-6 +County "NE, Richardson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101470.epw site_zip_code=68355 site_time_zone_utc_offset=-6 +County "NE, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101490.epw site_zip_code=68714 site_time_zone_utc_offset=-6 +County "NE, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101510.epw site_zip_code=68333 site_time_zone_utc_offset=-6 +County "NE, Sarpy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101530.epw site_zip_code=68046 site_time_zone_utc_offset=-6 +County "NE, Saunders County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101550.epw site_zip_code=68066 site_time_zone_utc_offset=-6 +County "NE, Scotts Bluff County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101570.epw site_zip_code=69361 site_time_zone_utc_offset=-7 +County "NE, Seward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101590.epw site_zip_code=68434 site_time_zone_utc_offset=-6 +County "NE, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101610.epw site_zip_code=69343 site_time_zone_utc_offset=-7 +County "NE, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101630.epw site_zip_code=68853 site_time_zone_utc_offset=-6 +County "NE, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101650.epw site_zip_code=69346 site_time_zone_utc_offset=-7 +County "NE, Stanton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101670.epw site_zip_code=68779 site_time_zone_utc_offset=-6 +County "NE, Thayer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101690.epw site_zip_code=68370 site_time_zone_utc_offset=-6 +County "NE, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101710.epw site_zip_code=69166 site_time_zone_utc_offset=-6 +County "NE, Thurston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101730.epw site_zip_code=68071 site_time_zone_utc_offset=-6 +County "NE, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101750.epw site_zip_code=68862 site_time_zone_utc_offset=-6 +County "NE, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101770.epw site_zip_code=68008 site_time_zone_utc_offset=-6 +County "NE, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101790.epw site_zip_code=68787 site_time_zone_utc_offset=-6 +County "NE, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101810.epw site_zip_code=68970 site_time_zone_utc_offset=-6 +County "NE, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101830.epw site_zip_code=68637 site_time_zone_utc_offset=-6 +County "NE, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101850.epw site_zip_code=68467 site_time_zone_utc_offset=-6 +County "NH, Belknap County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300010.epw site_zip_code=03246 site_time_zone_utc_offset=-5 +County "NH, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300030.epw site_zip_code=03894 site_time_zone_utc_offset=-5 +County "NH, Cheshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300050.epw site_zip_code=03431 site_time_zone_utc_offset=-5 +County "NH, Coos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300070.epw site_zip_code=03570 site_time_zone_utc_offset=-5 +County "NH, Grafton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300090.epw site_zip_code=03766 site_time_zone_utc_offset=-5 +County "NH, Hillsborough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300110.epw site_zip_code=03103 site_time_zone_utc_offset=-5 +County "NH, Merrimack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300130.epw site_zip_code=03301 site_time_zone_utc_offset=-5 +County "NH, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300150.epw site_zip_code=03038 site_time_zone_utc_offset=-5 +County "NH, Strafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300170.epw site_zip_code=03820 site_time_zone_utc_offset=-5 +County "NH, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300190.epw site_zip_code=03743 site_time_zone_utc_offset=-5 +County "NJ, Atlantic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400010.epw site_zip_code=08401 site_time_zone_utc_offset=-5 +County "NJ, Bergen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400030.epw site_zip_code=07410 site_time_zone_utc_offset=-5 +County "NJ, Burlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400050.epw site_zip_code=08054 site_time_zone_utc_offset=-5 +County "NJ, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400070.epw site_zip_code=08021 site_time_zone_utc_offset=-5 +County "NJ, Cape May County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400090.epw site_zip_code=08260 site_time_zone_utc_offset=-5 +County "NJ, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400110.epw site_zip_code=08332 site_time_zone_utc_offset=-5 +County "NJ, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400130.epw site_zip_code=07111 site_time_zone_utc_offset=-5 +County "NJ, Gloucester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400150.epw site_zip_code=08096 site_time_zone_utc_offset=-5 +County "NJ, Hudson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400170.epw site_zip_code=07302 site_time_zone_utc_offset=-5 +County "NJ, Hunterdon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400190.epw site_zip_code=08822 site_time_zone_utc_offset=-5 +County "NJ, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400210.epw site_zip_code=08618 site_time_zone_utc_offset=-5 +County "NJ, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400230.epw site_zip_code=08831 site_time_zone_utc_offset=-5 +County "NJ, Monmouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400250.epw site_zip_code=07728 site_time_zone_utc_offset=-5 +County "NJ, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400270.epw site_zip_code=07960 site_time_zone_utc_offset=-5 +County "NJ, Ocean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400290.epw site_zip_code=08701 site_time_zone_utc_offset=-5 +County "NJ, Passaic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400310.epw site_zip_code=07055 site_time_zone_utc_offset=-5 +County "NJ, Salem County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400330.epw site_zip_code=08069 site_time_zone_utc_offset=-5 +County "NJ, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400350.epw site_zip_code=08873 site_time_zone_utc_offset=-5 +County "NJ, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400370.epw site_zip_code=07860 site_time_zone_utc_offset=-5 +County "NJ, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400390.epw site_zip_code=07083 site_time_zone_utc_offset=-5 +County "NJ, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400410.epw site_zip_code=08865 site_time_zone_utc_offset=-5 +County "NM, Bernalillo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500010.epw site_zip_code=87111 site_time_zone_utc_offset=-7 +County "NM, Catron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500030.epw site_zip_code=87829 site_time_zone_utc_offset=-7 +County "NM, Chaves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500050.epw site_zip_code=88203 site_time_zone_utc_offset=-7 +County "NM, Cibola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500060.epw site_zip_code=87020 site_time_zone_utc_offset=-7 +County "NM, Colfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500070.epw site_zip_code=87740 site_time_zone_utc_offset=-7 +County "NM, Curry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500090.epw site_zip_code=88101 site_time_zone_utc_offset=-7 +County "NM, De Baca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500110.epw site_zip_code=88119 site_time_zone_utc_offset=-7 +County "NM, Dona Ana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500130.epw site_zip_code=88001 site_time_zone_utc_offset=-7 +County "NM, Eddy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500150.epw site_zip_code=88220 site_time_zone_utc_offset=-7 +County "NM, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500170.epw site_zip_code=88061 site_time_zone_utc_offset=-7 +County "NM, Guadalupe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500190.epw site_zip_code=88435 site_time_zone_utc_offset=-7 +County "NM, Harding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500210.epw site_zip_code=87743 site_time_zone_utc_offset=-7 +County "NM, Hidalgo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500230.epw site_zip_code=88045 site_time_zone_utc_offset=-7 +County "NM, Lea County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500250.epw site_zip_code=88240 site_time_zone_utc_offset=-7 +County "NM, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500270.epw site_zip_code=88355 site_time_zone_utc_offset=-7 +County "NM, Los Alamos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500280.epw site_zip_code=87544 site_time_zone_utc_offset=-7 +County "NM, Luna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500290.epw site_zip_code=88030 site_time_zone_utc_offset=-7 +County "NM, McKinley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500310.epw site_zip_code=87301 site_time_zone_utc_offset=-7 +County "NM, Mora County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500330.epw site_zip_code=87722 site_time_zone_utc_offset=-7 +County "NM, Otero County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500350.epw site_zip_code=88310 site_time_zone_utc_offset=-7 +County "NM, Quay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500370.epw site_zip_code=88401 site_time_zone_utc_offset=-7 +County "NM, Rio Arriba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500390.epw site_zip_code=87532 site_time_zone_utc_offset=-7 +County "NM, Roosevelt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500410.epw site_zip_code=88130 site_time_zone_utc_offset=-7 +County "NM, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500450.epw site_zip_code=87401 site_time_zone_utc_offset=-7 +County "NM, San Miguel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500470.epw site_zip_code=87701 site_time_zone_utc_offset=-7 +County "NM, Sandoval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500430.epw site_zip_code=87124 site_time_zone_utc_offset=-7 +County "NM, Santa Fe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500490.epw site_zip_code=87507 site_time_zone_utc_offset=-7 +County "NM, Sierra County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500510.epw site_zip_code=87901 site_time_zone_utc_offset=-7 +County "NM, Socorro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500530.epw site_zip_code=87801 site_time_zone_utc_offset=-7 +County "NM, Taos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500550.epw site_zip_code=87571 site_time_zone_utc_offset=-7 +County "NM, Torrance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500570.epw site_zip_code=87035 site_time_zone_utc_offset=-7 +County "NM, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500590.epw site_zip_code=88415 site_time_zone_utc_offset=-7 +County "NM, Valencia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500610.epw site_zip_code=87031 site_time_zone_utc_offset=-7 +County "NV, Carson City" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3205100.epw site_zip_code=89701 site_time_zone_utc_offset=-8 +County "NV, Churchill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200010.epw site_zip_code=89406 site_time_zone_utc_offset=-8 +County "NV, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200030.epw site_zip_code=89052 site_time_zone_utc_offset=-8 +County "NV, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200050.epw site_zip_code=89460 site_time_zone_utc_offset=-8 +County "NV, Elko County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200070.epw site_zip_code=89801 site_time_zone_utc_offset=-8 +County "NV, Esmeralda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200090.epw site_zip_code=89010 site_time_zone_utc_offset=-8 +County "NV, Eureka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200110.epw site_zip_code=89316 site_time_zone_utc_offset=-8 +County "NV, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200130.epw site_zip_code=89445 site_time_zone_utc_offset=-8 +County "NV, Lander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200150.epw site_zip_code=89820 site_time_zone_utc_offset=-8 +County "NV, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200170.epw site_zip_code=89017 site_time_zone_utc_offset=-8 +County "NV, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200190.epw site_zip_code=89408 site_time_zone_utc_offset=-8 +County "NV, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200210.epw site_zip_code=89415 site_time_zone_utc_offset=-8 +County "NV, Nye County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200230.epw site_zip_code=89048 site_time_zone_utc_offset=-8 +County "NV, Pershing County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200270.epw site_zip_code=89419 site_time_zone_utc_offset=-8 +County "NV, Storey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200290.epw site_zip_code=89521 site_time_zone_utc_offset=-8 +County "NV, Washoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200310.epw site_zip_code=89502 site_time_zone_utc_offset=-8 +County "NV, White Pine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200330.epw site_zip_code=89301 site_time_zone_utc_offset=-8 +County "NY, Albany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600010.epw site_zip_code=12203 site_time_zone_utc_offset=-5 +County "NY, Allegany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600030.epw site_zip_code=14895 site_time_zone_utc_offset=-5 +County "NY, Bronx County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600050.epw site_zip_code=10467 site_time_zone_utc_offset=-5 +County "NY, Broome County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600070.epw site_zip_code=13760 site_time_zone_utc_offset=-5 +County "NY, Cattaraugus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600090.epw site_zip_code=14760 site_time_zone_utc_offset=-5 +County "NY, Cayuga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600110.epw site_zip_code=13021 site_time_zone_utc_offset=-5 +County "NY, Chautauqua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600130.epw site_zip_code=14701 site_time_zone_utc_offset=-5 +County "NY, Chemung County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600150.epw site_zip_code=14845 site_time_zone_utc_offset=-5 +County "NY, Chenango County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600170.epw site_zip_code=13815 site_time_zone_utc_offset=-5 +County "NY, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600190.epw site_zip_code=12901 site_time_zone_utc_offset=-5 +County "NY, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600210.epw site_zip_code=12534 site_time_zone_utc_offset=-5 +County "NY, Cortland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600230.epw site_zip_code=13045 site_time_zone_utc_offset=-5 +County "NY, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600250.epw site_zip_code=13856 site_time_zone_utc_offset=-5 +County "NY, Dutchess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600270.epw site_zip_code=12601 site_time_zone_utc_offset=-5 +County "NY, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600290.epw site_zip_code=14221 site_time_zone_utc_offset=-5 +County "NY, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600310.epw site_zip_code=12946 site_time_zone_utc_offset=-5 +County "NY, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600330.epw site_zip_code=12953 site_time_zone_utc_offset=-5 +County "NY, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600350.epw site_zip_code=12078 site_time_zone_utc_offset=-5 +County "NY, Genesee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600370.epw site_zip_code=14020 site_time_zone_utc_offset=-5 +County "NY, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600390.epw site_zip_code=12414 site_time_zone_utc_offset=-5 +County "NY, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600410.epw site_zip_code=12842 site_time_zone_utc_offset=-5 +County "NY, Herkimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600430.epw site_zip_code=13357 site_time_zone_utc_offset=-5 +County "NY, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600450.epw site_zip_code=13601 site_time_zone_utc_offset=-5 +County "NY, Kings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600470.epw site_zip_code=11226 site_time_zone_utc_offset=-5 +County "NY, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600490.epw site_zip_code=13367 site_time_zone_utc_offset=-5 +County "NY, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600510.epw site_zip_code=14454 site_time_zone_utc_offset=-5 +County "NY, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600530.epw site_zip_code=13032 site_time_zone_utc_offset=-5 +County "NY, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600550.epw site_zip_code=14580 site_time_zone_utc_offset=-5 +County "NY, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600570.epw site_zip_code=12010 site_time_zone_utc_offset=-5 +County "NY, Nassau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600590.epw site_zip_code=11758 site_time_zone_utc_offset=-5 +County "NY, New York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600610.epw site_zip_code=10025 site_time_zone_utc_offset=-5 +County "NY, Niagara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600630.epw site_zip_code=14094 site_time_zone_utc_offset=-5 +County "NY, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600650.epw site_zip_code=13440 site_time_zone_utc_offset=-5 +County "NY, Onondaga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600670.epw site_zip_code=13027 site_time_zone_utc_offset=-5 +County "NY, Ontario County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600690.epw site_zip_code=14424 site_time_zone_utc_offset=-5 +County "NY, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600710.epw site_zip_code=12550 site_time_zone_utc_offset=-5 +County "NY, Orleans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600730.epw site_zip_code=14411 site_time_zone_utc_offset=-5 +County "NY, Oswego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600750.epw site_zip_code=13126 site_time_zone_utc_offset=-5 +County "NY, Otsego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600770.epw site_zip_code=13820 site_time_zone_utc_offset=-5 +County "NY, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600790.epw site_zip_code=10512 site_time_zone_utc_offset=-5 +County "NY, Queens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600810.epw site_zip_code=11375 site_time_zone_utc_offset=-5 +County "NY, Rensselaer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600830.epw site_zip_code=12180 site_time_zone_utc_offset=-5 +County "NY, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600850.epw site_zip_code=10314 site_time_zone_utc_offset=-5 +County "NY, Rockland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600870.epw site_zip_code=10977 site_time_zone_utc_offset=-5 +County "NY, Saratoga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600910.epw site_zip_code=12866 site_time_zone_utc_offset=-5 +County "NY, Schenectady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600930.epw site_zip_code=12306 site_time_zone_utc_offset=-5 +County "NY, Schoharie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600950.epw site_zip_code=12043 site_time_zone_utc_offset=-5 +County "NY, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600970.epw site_zip_code=14891 site_time_zone_utc_offset=-5 +County "NY, Seneca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600990.epw site_zip_code=13148 site_time_zone_utc_offset=-5 +County "NY, St. Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600890.epw site_zip_code=13676 site_time_zone_utc_offset=-5 +County "NY, Steuben County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601010.epw site_zip_code=14830 site_time_zone_utc_offset=-5 +County "NY, Suffolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601030.epw site_zip_code=11746 site_time_zone_utc_offset=-5 +County "NY, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601050.epw site_zip_code=12701 site_time_zone_utc_offset=-5 +County "NY, Tioga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601070.epw site_zip_code=13827 site_time_zone_utc_offset=-5 +County "NY, Tompkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601090.epw site_zip_code=14850 site_time_zone_utc_offset=-5 +County "NY, Ulster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601110.epw site_zip_code=12401 site_time_zone_utc_offset=-5 +County "NY, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601130.epw site_zip_code=12804 site_time_zone_utc_offset=-5 +County "NY, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601150.epw site_zip_code=12839 site_time_zone_utc_offset=-5 +County "NY, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601170.epw site_zip_code=14513 site_time_zone_utc_offset=-5 +County "NY, Westchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601190.epw site_zip_code=10701 site_time_zone_utc_offset=-5 +County "NY, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601210.epw site_zip_code=14569 site_time_zone_utc_offset=-5 +County "NY, Yates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601230.epw site_zip_code=14527 site_time_zone_utc_offset=-5 +County "OH, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900010.epw site_zip_code=45693 site_time_zone_utc_offset=-5 +County "OH, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900030.epw site_zip_code=45805 site_time_zone_utc_offset=-5 +County "OH, Ashland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900050.epw site_zip_code=44805 site_time_zone_utc_offset=-5 +County "OH, Ashtabula County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900070.epw site_zip_code=44004 site_time_zone_utc_offset=-5 +County "OH, Athens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900090.epw site_zip_code=45701 site_time_zone_utc_offset=-5 +County "OH, Auglaize County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900110.epw site_zip_code=45895 site_time_zone_utc_offset=-5 +County "OH, Belmont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900130.epw site_zip_code=43950 site_time_zone_utc_offset=-5 +County "OH, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900150.epw site_zip_code=45121 site_time_zone_utc_offset=-5 +County "OH, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900170.epw site_zip_code=45011 site_time_zone_utc_offset=-5 +County "OH, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900190.epw site_zip_code=44615 site_time_zone_utc_offset=-5 +County "OH, Champaign County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900210.epw site_zip_code=43078 site_time_zone_utc_offset=-5 +County "OH, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900230.epw site_zip_code=45503 site_time_zone_utc_offset=-5 +County "OH, Clermont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900250.epw site_zip_code=45103 site_time_zone_utc_offset=-5 +County "OH, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900270.epw site_zip_code=45177 site_time_zone_utc_offset=-5 +County "OH, Columbiana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900290.epw site_zip_code=43920 site_time_zone_utc_offset=-5 +County "OH, Coshocton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900310.epw site_zip_code=43812 site_time_zone_utc_offset=-5 +County "OH, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900330.epw site_zip_code=44820 site_time_zone_utc_offset=-5 +County "OH, Cuyahoga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900350.epw site_zip_code=44107 site_time_zone_utc_offset=-5 +County "OH, Darke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900370.epw site_zip_code=45331 site_time_zone_utc_offset=-5 +County "OH, Defiance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900390.epw site_zip_code=43512 site_time_zone_utc_offset=-5 +County "OH, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900410.epw site_zip_code=43015 site_time_zone_utc_offset=-5 +County "OH, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900430.epw site_zip_code=44870 site_time_zone_utc_offset=-5 +County "OH, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900450.epw site_zip_code=43130 site_time_zone_utc_offset=-5 +County "OH, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900470.epw site_zip_code=43160 site_time_zone_utc_offset=-5 +County "OH, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900490.epw site_zip_code=43081 site_time_zone_utc_offset=-5 +County "OH, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900510.epw site_zip_code=43567 site_time_zone_utc_offset=-5 +County "OH, Gallia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900530.epw site_zip_code=45631 site_time_zone_utc_offset=-5 +County "OH, Geauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900550.epw site_zip_code=44024 site_time_zone_utc_offset=-5 +County "OH, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900570.epw site_zip_code=45324 site_time_zone_utc_offset=-5 +County "OH, Guernsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900590.epw site_zip_code=43725 site_time_zone_utc_offset=-5 +County "OH, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900610.epw site_zip_code=45238 site_time_zone_utc_offset=-5 +County "OH, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900630.epw site_zip_code=45840 site_time_zone_utc_offset=-5 +County "OH, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900650.epw site_zip_code=43326 site_time_zone_utc_offset=-5 +County "OH, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900670.epw site_zip_code=43907 site_time_zone_utc_offset=-5 +County "OH, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900690.epw site_zip_code=43545 site_time_zone_utc_offset=-5 +County "OH, Highland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900710.epw site_zip_code=45133 site_time_zone_utc_offset=-5 +County "OH, Hocking County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900730.epw site_zip_code=43138 site_time_zone_utc_offset=-5 +County "OH, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900750.epw site_zip_code=44654 site_time_zone_utc_offset=-5 +County "OH, Huron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900770.epw site_zip_code=44857 site_time_zone_utc_offset=-5 +County "OH, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900790.epw site_zip_code=45640 site_time_zone_utc_offset=-5 +County "OH, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900810.epw site_zip_code=43952 site_time_zone_utc_offset=-5 +County "OH, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900830.epw site_zip_code=43050 site_time_zone_utc_offset=-5 +County "OH, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900850.epw site_zip_code=44060 site_time_zone_utc_offset=-5 +County "OH, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900870.epw site_zip_code=45638 site_time_zone_utc_offset=-5 +County "OH, Licking County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900890.epw site_zip_code=43055 site_time_zone_utc_offset=-5 +County "OH, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900910.epw site_zip_code=43311 site_time_zone_utc_offset=-5 +County "OH, Lorain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900930.epw site_zip_code=44035 site_time_zone_utc_offset=-5 +County "OH, Lucas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900950.epw site_zip_code=43615 site_time_zone_utc_offset=-5 +County "OH, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900970.epw site_zip_code=43140 site_time_zone_utc_offset=-5 +County "OH, Mahoning County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900990.epw site_zip_code=44512 site_time_zone_utc_offset=-5 +County "OH, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901010.epw site_zip_code=43302 site_time_zone_utc_offset=-5 +County "OH, Medina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901030.epw site_zip_code=44256 site_time_zone_utc_offset=-5 +County "OH, Meigs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901050.epw site_zip_code=45769 site_time_zone_utc_offset=-5 +County "OH, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901070.epw site_zip_code=45822 site_time_zone_utc_offset=-5 +County "OH, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901090.epw site_zip_code=45373 site_time_zone_utc_offset=-5 +County "OH, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901110.epw site_zip_code=43793 site_time_zone_utc_offset=-5 +County "OH, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901130.epw site_zip_code=45424 site_time_zone_utc_offset=-5 +County "OH, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901150.epw site_zip_code=43756 site_time_zone_utc_offset=-5 +County "OH, Morrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901170.epw site_zip_code=43338 site_time_zone_utc_offset=-5 +County "OH, Muskingum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901190.epw site_zip_code=43701 site_time_zone_utc_offset=-5 +County "OH, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901210.epw site_zip_code=43724 site_time_zone_utc_offset=-5 +County "OH, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901230.epw site_zip_code=43452 site_time_zone_utc_offset=-5 +County "OH, Paulding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901250.epw site_zip_code=45879 site_time_zone_utc_offset=-5 +County "OH, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901270.epw site_zip_code=43764 site_time_zone_utc_offset=-5 +County "OH, Pickaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901290.epw site_zip_code=43113 site_time_zone_utc_offset=-5 +County "OH, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901310.epw site_zip_code=45690 site_time_zone_utc_offset=-5 +County "OH, Portage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901330.epw site_zip_code=44240 site_time_zone_utc_offset=-5 +County "OH, Preble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901350.epw site_zip_code=45320 site_time_zone_utc_offset=-5 +County "OH, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901370.epw site_zip_code=45875 site_time_zone_utc_offset=-5 +County "OH, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901390.epw site_zip_code=44903 site_time_zone_utc_offset=-5 +County "OH, Ross County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901410.epw site_zip_code=45601 site_time_zone_utc_offset=-5 +County "OH, Sandusky County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901430.epw site_zip_code=43420 site_time_zone_utc_offset=-5 +County "OH, Scioto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901450.epw site_zip_code=45662 site_time_zone_utc_offset=-5 +County "OH, Seneca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901470.epw site_zip_code=44883 site_time_zone_utc_offset=-5 +County "OH, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901490.epw site_zip_code=45365 site_time_zone_utc_offset=-5 +County "OH, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901510.epw site_zip_code=44646 site_time_zone_utc_offset=-5 +County "OH, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901530.epw site_zip_code=44224 site_time_zone_utc_offset=-5 +County "OH, Trumbull County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901550.epw site_zip_code=44483 site_time_zone_utc_offset=-5 +County "OH, Tuscarawas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901570.epw site_zip_code=44663 site_time_zone_utc_offset=-5 +County "OH, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901590.epw site_zip_code=43040 site_time_zone_utc_offset=-5 +County "OH, Van Wert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901610.epw site_zip_code=45891 site_time_zone_utc_offset=-5 +County "OH, Vinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901630.epw site_zip_code=45651 site_time_zone_utc_offset=-5 +County "OH, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901650.epw site_zip_code=45040 site_time_zone_utc_offset=-5 +County "OH, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901670.epw site_zip_code=45750 site_time_zone_utc_offset=-5 +County "OH, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901690.epw site_zip_code=44691 site_time_zone_utc_offset=-5 +County "OH, Williams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901710.epw site_zip_code=43506 site_time_zone_utc_offset=-5 +County "OH, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901730.epw site_zip_code=43551 site_time_zone_utc_offset=-5 +County "OH, Wyandot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901750.epw site_zip_code=43351 site_time_zone_utc_offset=-5 +County "OK, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000010.epw site_zip_code=74960 site_time_zone_utc_offset=-6 +County "OK, Alfalfa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000030.epw site_zip_code=73728 site_time_zone_utc_offset=-6 +County "OK, Atoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000050.epw site_zip_code=74525 site_time_zone_utc_offset=-6 +County "OK, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000070.epw site_zip_code=73932 site_time_zone_utc_offset=-6 +County "OK, Beckham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000090.epw site_zip_code=73644 site_time_zone_utc_offset=-6 +County "OK, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000110.epw site_zip_code=73772 site_time_zone_utc_offset=-6 +County "OK, Bryan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000130.epw site_zip_code=74701 site_time_zone_utc_offset=-6 +County "OK, Caddo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000150.epw site_zip_code=73005 site_time_zone_utc_offset=-6 +County "OK, Canadian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000170.epw site_zip_code=73099 site_time_zone_utc_offset=-6 +County "OK, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000190.epw site_zip_code=73401 site_time_zone_utc_offset=-6 +County "OK, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000210.epw site_zip_code=74464 site_time_zone_utc_offset=-6 +County "OK, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000230.epw site_zip_code=74743 site_time_zone_utc_offset=-6 +County "OK, Cimarron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000250.epw site_zip_code=73933 site_time_zone_utc_offset=-6 +County "OK, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000270.epw site_zip_code=73160 site_time_zone_utc_offset=-6 +County "OK, Coal County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000290.epw site_zip_code=74538 site_time_zone_utc_offset=-6 +County "OK, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000310.epw site_zip_code=73505 site_time_zone_utc_offset=-6 +County "OK, Cotton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000330.epw site_zip_code=73572 site_time_zone_utc_offset=-6 +County "OK, Craig County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000350.epw site_zip_code=74301 site_time_zone_utc_offset=-6 +County "OK, Creek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000370.epw site_zip_code=74066 site_time_zone_utc_offset=-6 +County "OK, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000390.epw site_zip_code=73096 site_time_zone_utc_offset=-6 +County "OK, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000410.epw site_zip_code=74344 site_time_zone_utc_offset=-6 +County "OK, Dewey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000430.epw site_zip_code=73859 site_time_zone_utc_offset=-6 +County "OK, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000450.epw site_zip_code=73858 site_time_zone_utc_offset=-6 +County "OK, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000470.epw site_zip_code=73703 site_time_zone_utc_offset=-6 +County "OK, Garvin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000490.epw site_zip_code=73075 site_time_zone_utc_offset=-6 +County "OK, Grady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000510.epw site_zip_code=73018 site_time_zone_utc_offset=-6 +County "OK, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000530.epw site_zip_code=73759 site_time_zone_utc_offset=-6 +County "OK, Greer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000550.epw site_zip_code=73554 site_time_zone_utc_offset=-6 +County "OK, Harmon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000570.epw site_zip_code=73550 site_time_zone_utc_offset=-6 +County "OK, Harper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000590.epw site_zip_code=73848 site_time_zone_utc_offset=-6 +County "OK, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000610.epw site_zip_code=74462 site_time_zone_utc_offset=-6 +County "OK, Hughes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000630.epw site_zip_code=74848 site_time_zone_utc_offset=-6 +County "OK, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000650.epw site_zip_code=73521 site_time_zone_utc_offset=-6 +County "OK, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000670.epw site_zip_code=73573 site_time_zone_utc_offset=-6 +County "OK, Johnston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000690.epw site_zip_code=73460 site_time_zone_utc_offset=-6 +County "OK, Kay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000710.epw site_zip_code=74601 site_time_zone_utc_offset=-6 +County "OK, Kingfisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000730.epw site_zip_code=73750 site_time_zone_utc_offset=-6 +County "OK, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000750.epw site_zip_code=73651 site_time_zone_utc_offset=-6 +County "OK, Latimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000770.epw site_zip_code=74578 site_time_zone_utc_offset=-6 +County "OK, Le Flore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000790.epw site_zip_code=74953 site_time_zone_utc_offset=-6 +County "OK, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000810.epw site_zip_code=74834 site_time_zone_utc_offset=-6 +County "OK, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000830.epw site_zip_code=73044 site_time_zone_utc_offset=-6 +County "OK, Love County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000850.epw site_zip_code=73448 site_time_zone_utc_offset=-6 +County "OK, Major County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000930.epw site_zip_code=73737 site_time_zone_utc_offset=-6 +County "OK, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000950.epw site_zip_code=73439 site_time_zone_utc_offset=-6 +County "OK, Mayes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000970.epw site_zip_code=74361 site_time_zone_utc_offset=-6 +County "OK, McClain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000870.epw site_zip_code=73080 site_time_zone_utc_offset=-6 +County "OK, McCurtain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000890.epw site_zip_code=74728 site_time_zone_utc_offset=-6 +County "OK, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000910.epw site_zip_code=74432 site_time_zone_utc_offset=-6 +County "OK, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000990.epw site_zip_code=73086 site_time_zone_utc_offset=-6 +County "OK, Muskogee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001010.epw site_zip_code=74403 site_time_zone_utc_offset=-6 +County "OK, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001030.epw site_zip_code=73077 site_time_zone_utc_offset=-6 +County "OK, Nowata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001050.epw site_zip_code=74048 site_time_zone_utc_offset=-6 +County "OK, Okfuskee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001070.epw site_zip_code=74859 site_time_zone_utc_offset=-6 +County "OK, Oklahoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001090.epw site_zip_code=73013 site_time_zone_utc_offset=-6 +County "OK, Okmulgee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001110.epw site_zip_code=74447 site_time_zone_utc_offset=-6 +County "OK, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001130.epw site_zip_code=74070 site_time_zone_utc_offset=-6 +County "OK, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001150.epw site_zip_code=74354 site_time_zone_utc_offset=-6 +County "OK, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001170.epw site_zip_code=74020 site_time_zone_utc_offset=-6 +County "OK, Payne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001190.epw site_zip_code=74074 site_time_zone_utc_offset=-6 +County "OK, Pittsburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001210.epw site_zip_code=74501 site_time_zone_utc_offset=-6 +County "OK, Pontotoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001230.epw site_zip_code=74820 site_time_zone_utc_offset=-6 +County "OK, Pottawatomie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001250.epw site_zip_code=74801 site_time_zone_utc_offset=-6 +County "OK, Pushmataha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001270.epw site_zip_code=74523 site_time_zone_utc_offset=-6 +County "OK, Roger Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001290.epw site_zip_code=73628 site_time_zone_utc_offset=-6 +County "OK, Rogers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001310.epw site_zip_code=74017 site_time_zone_utc_offset=-6 +County "OK, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001330.epw site_zip_code=74868 site_time_zone_utc_offset=-6 +County "OK, Sequoyah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001350.epw site_zip_code=74955 site_time_zone_utc_offset=-6 +County "OK, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001370.epw site_zip_code=73533 site_time_zone_utc_offset=-6 +County "OK, Texas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001390.epw site_zip_code=73942 site_time_zone_utc_offset=-6 +County "OK, Tillman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001410.epw site_zip_code=73542 site_time_zone_utc_offset=-6 +County "OK, Tulsa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001430.epw site_zip_code=74012 site_time_zone_utc_offset=-6 +County "OK, Wagoner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001450.epw site_zip_code=74014 site_time_zone_utc_offset=-6 +County "OK, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001470.epw site_zip_code=74006 site_time_zone_utc_offset=-6 +County "OK, Washita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001490.epw site_zip_code=73632 site_time_zone_utc_offset=-6 +County "OK, Woods County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001510.epw site_zip_code=73717 site_time_zone_utc_offset=-6 +County "OK, Woodward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001530.epw site_zip_code=73801 site_time_zone_utc_offset=-6 +County "OR, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100010.epw site_zip_code=97814 site_time_zone_utc_offset=-8 +County "OR, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100030.epw site_zip_code=97330 site_time_zone_utc_offset=-8 +County "OR, Clackamas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100050.epw site_zip_code=97045 site_time_zone_utc_offset=-8 +County "OR, Clatsop County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100070.epw site_zip_code=97103 site_time_zone_utc_offset=-8 +County "OR, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100090.epw site_zip_code=97051 site_time_zone_utc_offset=-8 +County "OR, Coos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100110.epw site_zip_code=97420 site_time_zone_utc_offset=-8 +County "OR, Crook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100130.epw site_zip_code=97754 site_time_zone_utc_offset=-8 +County "OR, Curry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100150.epw site_zip_code=97415 site_time_zone_utc_offset=-8 +County "OR, Deschutes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100170.epw site_zip_code=97702 site_time_zone_utc_offset=-8 +County "OR, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100190.epw site_zip_code=97471 site_time_zone_utc_offset=-8 +County "OR, Gilliam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100210.epw site_zip_code=97823 site_time_zone_utc_offset=-8 +County "OR, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100230.epw site_zip_code=97845 site_time_zone_utc_offset=-8 +County "OR, Harney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100250.epw site_zip_code=97720 site_time_zone_utc_offset=-8 +County "OR, Hood River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100270.epw site_zip_code=97031 site_time_zone_utc_offset=-8 +County "OR, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100290.epw site_zip_code=97504 site_time_zone_utc_offset=-8 +County "OR, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100310.epw site_zip_code=97741 site_time_zone_utc_offset=-8 +County "OR, Josephine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100330.epw site_zip_code=97526 site_time_zone_utc_offset=-8 +County "OR, Klamath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100350.epw site_zip_code=97603 site_time_zone_utc_offset=-8 +County "OR, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100370.epw site_zip_code=97630 site_time_zone_utc_offset=-8 +County "OR, Lane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100390.epw site_zip_code=97402 site_time_zone_utc_offset=-8 +County "OR, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100410.epw site_zip_code=97367 site_time_zone_utc_offset=-8 +County "OR, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100430.epw site_zip_code=97322 site_time_zone_utc_offset=-8 +County "OR, Malheur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100450.epw site_zip_code=97914 site_time_zone_utc_offset=-7 +County "OR, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100470.epw site_zip_code=97301 site_time_zone_utc_offset=-8 +County "OR, Morrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100490.epw site_zip_code=97818 site_time_zone_utc_offset=-8 +County "OR, Multnomah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100510.epw site_zip_code=97206 site_time_zone_utc_offset=-8 +County "OR, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100530.epw site_zip_code=97304 site_time_zone_utc_offset=-8 +County "OR, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100550.epw site_zip_code=97065 site_time_zone_utc_offset=-8 +County "OR, Tillamook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100570.epw site_zip_code=97141 site_time_zone_utc_offset=-8 +County "OR, Umatilla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100590.epw site_zip_code=97838 site_time_zone_utc_offset=-8 +County "OR, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100610.epw site_zip_code=97850 site_time_zone_utc_offset=-8 +County "OR, Wallowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100630.epw site_zip_code=97828 site_time_zone_utc_offset=-8 +County "OR, Wasco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100650.epw site_zip_code=97058 site_time_zone_utc_offset=-8 +County "OR, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100670.epw site_zip_code=97229 site_time_zone_utc_offset=-8 +County "OR, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100690.epw site_zip_code=97830 site_time_zone_utc_offset=-8 +County "OR, Yamhill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100710.epw site_zip_code=97128 site_time_zone_utc_offset=-8 +County "PA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200010.epw site_zip_code=17325 site_time_zone_utc_offset=-5 +County "PA, Allegheny County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200030.epw site_zip_code=15237 site_time_zone_utc_offset=-5 +County "PA, Armstrong County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200050.epw site_zip_code=16201 site_time_zone_utc_offset=-5 +County "PA, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200070.epw site_zip_code=15001 site_time_zone_utc_offset=-5 +County "PA, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200090.epw site_zip_code=15522 site_time_zone_utc_offset=-5 +County "PA, Berks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200110.epw site_zip_code=19606 site_time_zone_utc_offset=-5 +County "PA, Blair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200130.epw site_zip_code=16601 site_time_zone_utc_offset=-5 +County "PA, Bradford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200150.epw site_zip_code=18840 site_time_zone_utc_offset=-5 +County "PA, Bucks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200170.epw site_zip_code=19020 site_time_zone_utc_offset=-5 +County "PA, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200190.epw site_zip_code=16001 site_time_zone_utc_offset=-5 +County "PA, Cambria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200210.epw site_zip_code=15905 site_time_zone_utc_offset=-5 +County "PA, Cameron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200230.epw site_zip_code=15834 site_time_zone_utc_offset=-5 +County "PA, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200250.epw site_zip_code=18235 site_time_zone_utc_offset=-5 +County "PA, Centre County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200270.epw site_zip_code=16801 site_time_zone_utc_offset=-5 +County "PA, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200290.epw site_zip_code=19380 site_time_zone_utc_offset=-5 +County "PA, Clarion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200310.epw site_zip_code=16214 site_time_zone_utc_offset=-5 +County "PA, Clearfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200330.epw site_zip_code=15801 site_time_zone_utc_offset=-5 +County "PA, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200350.epw site_zip_code=17745 site_time_zone_utc_offset=-5 +County "PA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200370.epw site_zip_code=17815 site_time_zone_utc_offset=-5 +County "PA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200390.epw site_zip_code=16335 site_time_zone_utc_offset=-5 +County "PA, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200410.epw site_zip_code=17055 site_time_zone_utc_offset=-5 +County "PA, Dauphin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200430.epw site_zip_code=17112 site_time_zone_utc_offset=-5 +County "PA, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200450.epw site_zip_code=19063 site_time_zone_utc_offset=-5 +County "PA, Elk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200470.epw site_zip_code=15857 site_time_zone_utc_offset=-5 +County "PA, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200490.epw site_zip_code=16509 site_time_zone_utc_offset=-5 +County "PA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200510.epw site_zip_code=15401 site_time_zone_utc_offset=-5 +County "PA, Forest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200530.epw site_zip_code=16353 site_time_zone_utc_offset=-5 +County "PA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200550.epw site_zip_code=17268 site_time_zone_utc_offset=-5 +County "PA, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200570.epw site_zip_code=17233 site_time_zone_utc_offset=-5 +County "PA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200590.epw site_zip_code=15370 site_time_zone_utc_offset=-5 +County "PA, Huntingdon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200610.epw site_zip_code=16652 site_time_zone_utc_offset=-5 +County "PA, Indiana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200630.epw site_zip_code=15701 site_time_zone_utc_offset=-5 +County "PA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200650.epw site_zip_code=15767 site_time_zone_utc_offset=-5 +County "PA, Juniata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200670.epw site_zip_code=17059 site_time_zone_utc_offset=-5 +County "PA, Lackawanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200690.epw site_zip_code=18505 site_time_zone_utc_offset=-5 +County "PA, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200710.epw site_zip_code=17603 site_time_zone_utc_offset=-5 +County "PA, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200730.epw site_zip_code=16101 site_time_zone_utc_offset=-5 +County "PA, Lebanon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200750.epw site_zip_code=17042 site_time_zone_utc_offset=-5 +County "PA, Lehigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200770.epw site_zip_code=18103 site_time_zone_utc_offset=-5 +County "PA, Luzerne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200790.epw site_zip_code=18702 site_time_zone_utc_offset=-5 +County "PA, Lycoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200810.epw site_zip_code=17701 site_time_zone_utc_offset=-5 +County "PA, McKean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200830.epw site_zip_code=16701 site_time_zone_utc_offset=-5 +County "PA, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200850.epw site_zip_code=16148 site_time_zone_utc_offset=-5 +County "PA, Mifflin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200870.epw site_zip_code=17044 site_time_zone_utc_offset=-5 +County "PA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200890.epw site_zip_code=18301 site_time_zone_utc_offset=-5 +County "PA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200910.epw site_zip_code=19446 site_time_zone_utc_offset=-5 +County "PA, Montour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200930.epw site_zip_code=17821 site_time_zone_utc_offset=-5 +County "PA, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200950.epw site_zip_code=18042 site_time_zone_utc_offset=-5 +County "PA, Northumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200970.epw site_zip_code=17801 site_time_zone_utc_offset=-5 +County "PA, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200990.epw site_zip_code=17020 site_time_zone_utc_offset=-5 +County "PA, Philadelphia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201010.epw site_zip_code=19143 site_time_zone_utc_offset=-5 +County "PA, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201030.epw site_zip_code=18337 site_time_zone_utc_offset=-5 +County "PA, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201050.epw site_zip_code=16915 site_time_zone_utc_offset=-5 +County "PA, Schuylkill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201070.epw site_zip_code=17901 site_time_zone_utc_offset=-5 +County "PA, Snyder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201090.epw site_zip_code=17870 site_time_zone_utc_offset=-5 +County "PA, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201110.epw site_zip_code=15501 site_time_zone_utc_offset=-5 +County "PA, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201130.epw site_zip_code=18614 site_time_zone_utc_offset=-5 +County "PA, Susquehanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201150.epw site_zip_code=18801 site_time_zone_utc_offset=-5 +County "PA, Tioga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201170.epw site_zip_code=16901 site_time_zone_utc_offset=-5 +County "PA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201190.epw site_zip_code=17837 site_time_zone_utc_offset=-5 +County "PA, Venango County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201210.epw site_zip_code=16301 site_time_zone_utc_offset=-5 +County "PA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201230.epw site_zip_code=16365 site_time_zone_utc_offset=-5 +County "PA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201250.epw site_zip_code=15301 site_time_zone_utc_offset=-5 +County "PA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201270.epw site_zip_code=18431 site_time_zone_utc_offset=-5 +County "PA, Westmoreland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201290.epw site_zip_code=15601 site_time_zone_utc_offset=-5 +County "PA, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201310.epw site_zip_code=18657 site_time_zone_utc_offset=-5 +County "PA, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201330.epw site_zip_code=17331 site_time_zone_utc_offset=-5 +County "RI, Bristol County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400010.epw site_zip_code=02809 site_time_zone_utc_offset=-5 +County "RI, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400030.epw site_zip_code=02893 site_time_zone_utc_offset=-5 +County "RI, Newport County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400050.epw site_zip_code=02840 site_time_zone_utc_offset=-5 +County "RI, Providence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400070.epw site_zip_code=02860 site_time_zone_utc_offset=-5 +County "RI, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400090.epw site_zip_code=02891 site_time_zone_utc_offset=-5 +County "SC, Abbeville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500010.epw site_zip_code=29620 site_time_zone_utc_offset=-5 +County "SC, Aiken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500030.epw site_zip_code=29803 site_time_zone_utc_offset=-5 +County "SC, Allendale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500050.epw site_zip_code=29810 site_time_zone_utc_offset=-5 +County "SC, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500070.epw site_zip_code=29621 site_time_zone_utc_offset=-5 +County "SC, Bamberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500090.epw site_zip_code=29003 site_time_zone_utc_offset=-5 +County "SC, Barnwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500110.epw site_zip_code=29812 site_time_zone_utc_offset=-5 +County "SC, Beaufort County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500130.epw site_zip_code=29910 site_time_zone_utc_offset=-5 +County "SC, Berkeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500150.epw site_zip_code=29445 site_time_zone_utc_offset=-5 +County "SC, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500170.epw site_zip_code=29135 site_time_zone_utc_offset=-5 +County "SC, Charleston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500190.epw site_zip_code=29464 site_time_zone_utc_offset=-5 +County "SC, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500210.epw site_zip_code=29340 site_time_zone_utc_offset=-5 +County "SC, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500230.epw site_zip_code=29706 site_time_zone_utc_offset=-5 +County "SC, Chesterfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500250.epw site_zip_code=29520 site_time_zone_utc_offset=-5 +County "SC, Clarendon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500270.epw site_zip_code=29102 site_time_zone_utc_offset=-5 +County "SC, Colleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500290.epw site_zip_code=29488 site_time_zone_utc_offset=-5 +County "SC, Darlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500310.epw site_zip_code=29550 site_time_zone_utc_offset=-5 +County "SC, Dillon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500330.epw site_zip_code=29536 site_time_zone_utc_offset=-5 +County "SC, Dorchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500350.epw site_zip_code=29485 site_time_zone_utc_offset=-5 +County "SC, Edgefield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500370.epw site_zip_code=29860 site_time_zone_utc_offset=-5 +County "SC, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500390.epw site_zip_code=29180 site_time_zone_utc_offset=-5 +County "SC, Florence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500410.epw site_zip_code=29501 site_time_zone_utc_offset=-5 +County "SC, Georgetown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500430.epw site_zip_code=29440 site_time_zone_utc_offset=-5 +County "SC, Greenville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500450.epw site_zip_code=29681 site_time_zone_utc_offset=-5 +County "SC, Greenwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500470.epw site_zip_code=29649 site_time_zone_utc_offset=-5 +County "SC, Hampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500490.epw site_zip_code=29918 site_time_zone_utc_offset=-5 +County "SC, Horry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500510.epw site_zip_code=29579 site_time_zone_utc_offset=-5 +County "SC, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500530.epw site_zip_code=29936 site_time_zone_utc_offset=-5 +County "SC, Kershaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500550.epw site_zip_code=29020 site_time_zone_utc_offset=-5 +County "SC, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500570.epw site_zip_code=29720 site_time_zone_utc_offset=-5 +County "SC, Laurens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500590.epw site_zip_code=29360 site_time_zone_utc_offset=-5 +County "SC, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500610.epw site_zip_code=29010 site_time_zone_utc_offset=-5 +County "SC, Lexington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500630.epw site_zip_code=29072 site_time_zone_utc_offset=-5 +County "SC, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500670.epw site_zip_code=29571 site_time_zone_utc_offset=-5 +County "SC, Marlboro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500690.epw site_zip_code=29512 site_time_zone_utc_offset=-5 +County "SC, McCormick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500650.epw site_zip_code=29835 site_time_zone_utc_offset=-5 +County "SC, Newberry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500710.epw site_zip_code=29108 site_time_zone_utc_offset=-5 +County "SC, Oconee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500730.epw site_zip_code=29678 site_time_zone_utc_offset=-5 +County "SC, Orangeburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500750.epw site_zip_code=29115 site_time_zone_utc_offset=-5 +County "SC, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500770.epw site_zip_code=29640 site_time_zone_utc_offset=-5 +County "SC, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500790.epw site_zip_code=29223 site_time_zone_utc_offset=-5 +County "SC, Saluda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500810.epw site_zip_code=29138 site_time_zone_utc_offset=-5 +County "SC, Spartanburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500830.epw site_zip_code=29301 site_time_zone_utc_offset=-5 +County "SC, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500850.epw site_zip_code=29150 site_time_zone_utc_offset=-5 +County "SC, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500870.epw site_zip_code=29379 site_time_zone_utc_offset=-5 +County "SC, Williamsburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500890.epw site_zip_code=29556 site_time_zone_utc_offset=-5 +County "SC, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500910.epw site_zip_code=29732 site_time_zone_utc_offset=-5 +County "SD, Aurora County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600030.epw site_zip_code=57368 site_time_zone_utc_offset=-6 +County "SD, Beadle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600050.epw site_zip_code=57350 site_time_zone_utc_offset=-6 +County "SD, Bennett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600070.epw site_zip_code=57551 site_time_zone_utc_offset=-7 +County "SD, Bon Homme County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600090.epw site_zip_code=57066 site_time_zone_utc_offset=-6 +County "SD, Brookings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600110.epw site_zip_code=57006 site_time_zone_utc_offset=-6 +County "SD, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600130.epw site_zip_code=57401 site_time_zone_utc_offset=-6 +County "SD, Brule County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600150.epw site_zip_code=57325 site_time_zone_utc_offset=-6 +County "SD, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600170.epw site_zip_code=57341 site_time_zone_utc_offset=-6 +County "SD, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600190.epw site_zip_code=57717 site_time_zone_utc_offset=-7 +County "SD, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600210.epw site_zip_code=57632 site_time_zone_utc_offset=-6 +County "SD, Charles Mix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600230.epw site_zip_code=57380 site_time_zone_utc_offset=-6 +County "SD, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600250.epw site_zip_code=57225 site_time_zone_utc_offset=-6 +County "SD, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600270.epw site_zip_code=57069 site_time_zone_utc_offset=-6 +County "SD, Codington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600290.epw site_zip_code=57201 site_time_zone_utc_offset=-6 +County "SD, Corson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600310.epw site_zip_code=57642 site_time_zone_utc_offset=-7 +County "SD, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600330.epw site_zip_code=57730 site_time_zone_utc_offset=-7 +County "SD, Davison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600350.epw site_zip_code=57301 site_time_zone_utc_offset=-6 +County "SD, Day County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600370.epw site_zip_code=57274 site_time_zone_utc_offset=-6 +County "SD, Deuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600390.epw site_zip_code=57226 site_time_zone_utc_offset=-6 +County "SD, Dewey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600410.epw site_zip_code=57625 site_time_zone_utc_offset=-7 +County "SD, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600430.epw site_zip_code=57328 site_time_zone_utc_offset=-6 +County "SD, Edmunds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600450.epw site_zip_code=57451 site_time_zone_utc_offset=-6 +County "SD, Fall River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600470.epw site_zip_code=57747 site_time_zone_utc_offset=-7 +County "SD, Faulk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600490.epw site_zip_code=57438 site_time_zone_utc_offset=-6 +County "SD, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600510.epw site_zip_code=57252 site_time_zone_utc_offset=-6 +County "SD, Gregory County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600530.epw site_zip_code=57533 site_time_zone_utc_offset=-6 +County "SD, Haakon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600550.epw site_zip_code=57552 site_time_zone_utc_offset=-7 +County "SD, Hamlin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600570.epw site_zip_code=57223 site_time_zone_utc_offset=-6 +County "SD, Hand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600590.epw site_zip_code=57362 site_time_zone_utc_offset=-6 +County "SD, Hanson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600610.epw site_zip_code=57311 site_time_zone_utc_offset=-6 +County "SD, Harding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600630.epw site_zip_code=57720 site_time_zone_utc_offset=-7 +County "SD, Hughes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600650.epw site_zip_code=57501 site_time_zone_utc_offset=-6 +County "SD, Hutchinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600670.epw site_zip_code=57366 site_time_zone_utc_offset=-6 +County "SD, Hyde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600690.epw site_zip_code=57345 site_time_zone_utc_offset=-6 +County "SD, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600710.epw site_zip_code=57543 site_time_zone_utc_offset=-7 +County "SD, Jerauld County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600730.epw site_zip_code=57382 site_time_zone_utc_offset=-6 +County "SD, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600750.epw site_zip_code=57559 site_time_zone_utc_offset=-6 +County "SD, Kingsbury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600770.epw site_zip_code=57231 site_time_zone_utc_offset=-6 +County "SD, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600790.epw site_zip_code=57042 site_time_zone_utc_offset=-6 +County "SD, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600810.epw site_zip_code=57783 site_time_zone_utc_offset=-7 +County "SD, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600830.epw site_zip_code=57108 site_time_zone_utc_offset=-6 +County "SD, Lyman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600850.epw site_zip_code=57569 site_time_zone_utc_offset=-6 +County "SD, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600910.epw site_zip_code=57430 site_time_zone_utc_offset=-6 +County "SD, McCook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600870.epw site_zip_code=57058 site_time_zone_utc_offset=-6 +County "SD, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600890.epw site_zip_code=57437 site_time_zone_utc_offset=-6 +County "SD, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600930.epw site_zip_code=57785 site_time_zone_utc_offset=-7 +County "SD, Mellette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600950.epw site_zip_code=57579 site_time_zone_utc_offset=-6 +County "SD, Miner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600970.epw site_zip_code=57349 site_time_zone_utc_offset=-6 +County "SD, Minnehaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600990.epw site_zip_code=57106 site_time_zone_utc_offset=-6 +County "SD, Moody County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601010.epw site_zip_code=57028 site_time_zone_utc_offset=-6 +County "SD, Oglala Lakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601020.epw site_zip_code=57770 site_time_zone_utc_offset=-7 +County "SD, Pennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601030.epw site_zip_code=57701 site_time_zone_utc_offset=-7 +County "SD, Perkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601050.epw site_zip_code=57638 site_time_zone_utc_offset=-7 +County "SD, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601070.epw site_zip_code=57442 site_time_zone_utc_offset=-6 +County "SD, Roberts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601090.epw site_zip_code=57262 site_time_zone_utc_offset=-6 +County "SD, Sanborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601110.epw site_zip_code=57385 site_time_zone_utc_offset=-6 +County "SD, Spink County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601150.epw site_zip_code=57469 site_time_zone_utc_offset=-6 +County "SD, Stanley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601170.epw site_zip_code=57532 site_time_zone_utc_offset=-7 +County "SD, Sully County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601190.epw site_zip_code=57564 site_time_zone_utc_offset=-6 +County "SD, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601210.epw site_zip_code=57555 site_time_zone_utc_offset=-6 +County "SD, Tripp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601230.epw site_zip_code=57580 site_time_zone_utc_offset=-6 +County "SD, Turner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601250.epw site_zip_code=57053 site_time_zone_utc_offset=-6 +County "SD, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601270.epw site_zip_code=57049 site_time_zone_utc_offset=-6 +County "SD, Walworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601290.epw site_zip_code=57601 site_time_zone_utc_offset=-6 +County "SD, Yankton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601350.epw site_zip_code=57078 site_time_zone_utc_offset=-6 +County "SD, Ziebach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601370.epw site_zip_code=57623 site_time_zone_utc_offset=-7 +County "TN, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700010.epw site_zip_code=37830 site_time_zone_utc_offset=-5 +County "TN, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700030.epw site_zip_code=37160 site_time_zone_utc_offset=-6 +County "TN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700050.epw site_zip_code=38320 site_time_zone_utc_offset=-6 +County "TN, Bledsoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700070.epw site_zip_code=37367 site_time_zone_utc_offset=-6 +County "TN, Blount County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700090.epw site_zip_code=37803 site_time_zone_utc_offset=-5 +County "TN, Bradley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700110.epw site_zip_code=37312 site_time_zone_utc_offset=-5 +County "TN, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700130.epw site_zip_code=37766 site_time_zone_utc_offset=-5 +County "TN, Cannon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700150.epw site_zip_code=37190 site_time_zone_utc_offset=-6 +County "TN, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700170.epw site_zip_code=38344 site_time_zone_utc_offset=-6 +County "TN, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700190.epw site_zip_code=37643 site_time_zone_utc_offset=-5 +County "TN, Cheatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700210.epw site_zip_code=37015 site_time_zone_utc_offset=-6 +County "TN, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700230.epw site_zip_code=38340 site_time_zone_utc_offset=-6 +County "TN, Claiborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700250.epw site_zip_code=37879 site_time_zone_utc_offset=-5 +County "TN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700270.epw site_zip_code=38551 site_time_zone_utc_offset=-6 +County "TN, Cocke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700290.epw site_zip_code=37821 site_time_zone_utc_offset=-5 +County "TN, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700310.epw site_zip_code=37355 site_time_zone_utc_offset=-6 +County "TN, Crockett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700330.epw site_zip_code=38006 site_time_zone_utc_offset=-6 +County "TN, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700350.epw site_zip_code=38555 site_time_zone_utc_offset=-6 +County "TN, Davidson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700370.epw site_zip_code=37013 site_time_zone_utc_offset=-6 +County "TN, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700410.epw site_zip_code=37166 site_time_zone_utc_offset=-6 +County "TN, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700390.epw site_zip_code=38363 site_time_zone_utc_offset=-6 +County "TN, Dickson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700430.epw site_zip_code=37055 site_time_zone_utc_offset=-6 +County "TN, Dyer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700450.epw site_zip_code=38024 site_time_zone_utc_offset=-6 +County "TN, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700470.epw site_zip_code=38060 site_time_zone_utc_offset=-6 +County "TN, Fentress County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700490.epw site_zip_code=38556 site_time_zone_utc_offset=-6 +County "TN, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700510.epw site_zip_code=37398 site_time_zone_utc_offset=-6 +County "TN, Gibson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700530.epw site_zip_code=38343 site_time_zone_utc_offset=-6 +County "TN, Giles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700550.epw site_zip_code=38478 site_time_zone_utc_offset=-6 +County "TN, Grainger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700570.epw site_zip_code=37861 site_time_zone_utc_offset=-5 +County "TN, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700590.epw site_zip_code=37743 site_time_zone_utc_offset=-5 +County "TN, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700610.epw site_zip_code=37387 site_time_zone_utc_offset=-6 +County "TN, Hamblen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700630.epw site_zip_code=37814 site_time_zone_utc_offset=-5 +County "TN, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700650.epw site_zip_code=37421 site_time_zone_utc_offset=-5 +County "TN, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700670.epw site_zip_code=37869 site_time_zone_utc_offset=-5 +County "TN, Hardeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700690.epw site_zip_code=38008 site_time_zone_utc_offset=-6 +County "TN, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700710.epw site_zip_code=38372 site_time_zone_utc_offset=-6 +County "TN, Hawkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700730.epw site_zip_code=37857 site_time_zone_utc_offset=-5 +County "TN, Haywood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700750.epw site_zip_code=38012 site_time_zone_utc_offset=-6 +County "TN, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700770.epw site_zip_code=38351 site_time_zone_utc_offset=-6 +County "TN, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700790.epw site_zip_code=38242 site_time_zone_utc_offset=-6 +County "TN, Hickman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700810.epw site_zip_code=37033 site_time_zone_utc_offset=-6 +County "TN, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700830.epw site_zip_code=37061 site_time_zone_utc_offset=-6 +County "TN, Humphreys County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700850.epw site_zip_code=37185 site_time_zone_utc_offset=-6 +County "TN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700870.epw site_zip_code=38562 site_time_zone_utc_offset=-6 +County "TN, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700890.epw site_zip_code=37725 site_time_zone_utc_offset=-5 +County "TN, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700910.epw site_zip_code=37683 site_time_zone_utc_offset=-5 +County "TN, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700930.epw site_zip_code=37920 site_time_zone_utc_offset=-5 +County "TN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700950.epw site_zip_code=38079 site_time_zone_utc_offset=-6 +County "TN, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700970.epw site_zip_code=38063 site_time_zone_utc_offset=-6 +County "TN, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700990.epw site_zip_code=38464 site_time_zone_utc_offset=-6 +County "TN, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701010.epw site_zip_code=38462 site_time_zone_utc_offset=-6 +County "TN, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701030.epw site_zip_code=37334 site_time_zone_utc_offset=-6 +County "TN, Loudon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701050.epw site_zip_code=37774 site_time_zone_utc_offset=-5 +County "TN, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701110.epw site_zip_code=37083 site_time_zone_utc_offset=-6 +County "TN, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701130.epw site_zip_code=38305 site_time_zone_utc_offset=-6 +County "TN, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701150.epw site_zip_code=37397 site_time_zone_utc_offset=-6 +County "TN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701170.epw site_zip_code=37091 site_time_zone_utc_offset=-6 +County "TN, Maury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701190.epw site_zip_code=38401 site_time_zone_utc_offset=-6 +County "TN, McMinn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701070.epw site_zip_code=37303 site_time_zone_utc_offset=-5 +County "TN, McNairy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701090.epw site_zip_code=38375 site_time_zone_utc_offset=-6 +County "TN, Meigs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701210.epw site_zip_code=37322 site_time_zone_utc_offset=-5 +County "TN, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701230.epw site_zip_code=37354 site_time_zone_utc_offset=-5 +County "TN, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701250.epw site_zip_code=37042 site_time_zone_utc_offset=-6 +County "TN, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701270.epw site_zip_code=37352 site_time_zone_utc_offset=-6 +County "TN, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701290.epw site_zip_code=37887 site_time_zone_utc_offset=-5 +County "TN, Obion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701310.epw site_zip_code=38261 site_time_zone_utc_offset=-6 +County "TN, Overton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701330.epw site_zip_code=38570 site_time_zone_utc_offset=-6 +County "TN, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701350.epw site_zip_code=37096 site_time_zone_utc_offset=-6 +County "TN, Pickett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701370.epw site_zip_code=38549 site_time_zone_utc_offset=-6 +County "TN, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701390.epw site_zip_code=37307 site_time_zone_utc_offset=-5 +County "TN, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701410.epw site_zip_code=38501 site_time_zone_utc_offset=-6 +County "TN, Rhea County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701430.epw site_zip_code=37321 site_time_zone_utc_offset=-5 +County "TN, Roane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701450.epw site_zip_code=37748 site_time_zone_utc_offset=-5 +County "TN, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701470.epw site_zip_code=37172 site_time_zone_utc_offset=-6 +County "TN, Rutherford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701490.epw site_zip_code=37128 site_time_zone_utc_offset=-6 +County "TN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701510.epw site_zip_code=37841 site_time_zone_utc_offset=-5 +County "TN, Sequatchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701530.epw site_zip_code=37327 site_time_zone_utc_offset=-6 +County "TN, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701550.epw site_zip_code=37876 site_time_zone_utc_offset=-5 +County "TN, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701570.epw site_zip_code=38111 site_time_zone_utc_offset=-6 +County "TN, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701590.epw site_zip_code=37030 site_time_zone_utc_offset=-6 +County "TN, Stewart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701610.epw site_zip_code=37058 site_time_zone_utc_offset=-6 +County "TN, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701630.epw site_zip_code=37660 site_time_zone_utc_offset=-5 +County "TN, Sumner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701650.epw site_zip_code=37075 site_time_zone_utc_offset=-6 +County "TN, Tipton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701670.epw site_zip_code=38019 site_time_zone_utc_offset=-6 +County "TN, Trousdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701690.epw site_zip_code=37074 site_time_zone_utc_offset=-6 +County "TN, Unicoi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701710.epw site_zip_code=37650 site_time_zone_utc_offset=-5 +County "TN, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701730.epw site_zip_code=37807 site_time_zone_utc_offset=-5 +County "TN, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701750.epw site_zip_code=38585 site_time_zone_utc_offset=-6 +County "TN, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701770.epw site_zip_code=37110 site_time_zone_utc_offset=-6 +County "TN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701790.epw site_zip_code=37604 site_time_zone_utc_offset=-5 +County "TN, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701810.epw site_zip_code=38485 site_time_zone_utc_offset=-6 +County "TN, Weakley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701830.epw site_zip_code=38237 site_time_zone_utc_offset=-6 +County "TN, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701850.epw site_zip_code=38583 site_time_zone_utc_offset=-6 +County "TN, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701870.epw site_zip_code=37064 site_time_zone_utc_offset=-6 +County "TN, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701890.epw site_zip_code=37122 site_time_zone_utc_offset=-6 +County "TX, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800010.epw site_zip_code=75803 site_time_zone_utc_offset=-6 +County "TX, Andrews County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800030.epw site_zip_code=79714 site_time_zone_utc_offset=-6 +County "TX, Angelina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800050.epw site_zip_code=75904 site_time_zone_utc_offset=-6 +County "TX, Aransas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800070.epw site_zip_code=78382 site_time_zone_utc_offset=-6 +County "TX, Archer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800090.epw site_zip_code=76310 site_time_zone_utc_offset=-6 +County "TX, Armstrong County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800110.epw site_zip_code=79019 site_time_zone_utc_offset=-6 +County "TX, Atascosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800130.epw site_zip_code=78064 site_time_zone_utc_offset=-6 +County "TX, Austin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800150.epw site_zip_code=77474 site_time_zone_utc_offset=-6 +County "TX, Bailey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800170.epw site_zip_code=79347 site_time_zone_utc_offset=-6 +County "TX, Bandera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800190.epw site_zip_code=78003 site_time_zone_utc_offset=-6 +County "TX, Bastrop County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800210.epw site_zip_code=78602 site_time_zone_utc_offset=-6 +County "TX, Baylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800230.epw site_zip_code=76380 site_time_zone_utc_offset=-6 +County "TX, Bee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800250.epw site_zip_code=78102 site_time_zone_utc_offset=-6 +County "TX, Bell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800270.epw site_zip_code=76502 site_time_zone_utc_offset=-6 +County "TX, Bexar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800290.epw site_zip_code=78245 site_time_zone_utc_offset=-6 +County "TX, Blanco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800310.epw site_zip_code=78606 site_time_zone_utc_offset=-6 +County "TX, Borden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800330.epw site_zip_code=79351 site_time_zone_utc_offset=-6 +County "TX, Bosque County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800350.epw site_zip_code=76634 site_time_zone_utc_offset=-6 +County "TX, Bowie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800370.epw site_zip_code=75501 site_time_zone_utc_offset=-6 +County "TX, Brazoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800390.epw site_zip_code=77584 site_time_zone_utc_offset=-6 +County "TX, Brazos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800410.epw site_zip_code=77845 site_time_zone_utc_offset=-6 +County "TX, Brewster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800430.epw site_zip_code=79830 site_time_zone_utc_offset=-6 +County "TX, Briscoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800450.epw site_zip_code=79257 site_time_zone_utc_offset=-6 +County "TX, Brooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800470.epw site_zip_code=78355 site_time_zone_utc_offset=-6 +County "TX, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800490.epw site_zip_code=76801 site_time_zone_utc_offset=-6 +County "TX, Burleson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800510.epw site_zip_code=77836 site_time_zone_utc_offset=-6 +County "TX, Burnet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800530.epw site_zip_code=78654 site_time_zone_utc_offset=-6 +County "TX, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800550.epw site_zip_code=78644 site_time_zone_utc_offset=-6 +County "TX, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800570.epw site_zip_code=77979 site_time_zone_utc_offset=-6 +County "TX, Callahan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800590.epw site_zip_code=79510 site_time_zone_utc_offset=-6 +County "TX, Cameron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800610.epw site_zip_code=78521 site_time_zone_utc_offset=-6 +County "TX, Camp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800630.epw site_zip_code=75686 site_time_zone_utc_offset=-6 +County "TX, Carson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800650.epw site_zip_code=79068 site_time_zone_utc_offset=-6 +County "TX, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800670.epw site_zip_code=75551 site_time_zone_utc_offset=-6 +County "TX, Castro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800690.epw site_zip_code=79027 site_time_zone_utc_offset=-6 +County "TX, Chambers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800710.epw site_zip_code=77523 site_time_zone_utc_offset=-6 +County "TX, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800730.epw site_zip_code=75766 site_time_zone_utc_offset=-6 +County "TX, Childress County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800750.epw site_zip_code=79201 site_time_zone_utc_offset=-6 +County "TX, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800770.epw site_zip_code=76365 site_time_zone_utc_offset=-6 +County "TX, Cochran County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800790.epw site_zip_code=79346 site_time_zone_utc_offset=-6 +County "TX, Coke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800810.epw site_zip_code=76945 site_time_zone_utc_offset=-6 +County "TX, Coleman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800830.epw site_zip_code=76834 site_time_zone_utc_offset=-6 +County "TX, Collin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800850.epw site_zip_code=75035 site_time_zone_utc_offset=-6 +County "TX, Collingsworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800870.epw site_zip_code=79095 site_time_zone_utc_offset=-6 +County "TX, Colorado County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800890.epw site_zip_code=78934 site_time_zone_utc_offset=-6 +County "TX, Comal County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800910.epw site_zip_code=78130 site_time_zone_utc_offset=-6 +County "TX, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800930.epw site_zip_code=76442 site_time_zone_utc_offset=-6 +County "TX, Concho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800950.epw site_zip_code=76837 site_time_zone_utc_offset=-6 +County "TX, Cooke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800970.epw site_zip_code=76240 site_time_zone_utc_offset=-6 +County "TX, Coryell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800990.epw site_zip_code=76522 site_time_zone_utc_offset=-6 +County "TX, Cottle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801010.epw site_zip_code=79248 site_time_zone_utc_offset=-6 +County "TX, Crane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801030.epw site_zip_code=79731 site_time_zone_utc_offset=-6 +County "TX, Crockett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801050.epw site_zip_code=76943 site_time_zone_utc_offset=-6 +County "TX, Crosby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801070.epw site_zip_code=79322 site_time_zone_utc_offset=-6 +County "TX, Culberson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801090.epw site_zip_code=79847 site_time_zone_utc_offset=-6 +County "TX, Dallam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801110.epw site_zip_code=79022 site_time_zone_utc_offset=-6 +County "TX, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801130.epw site_zip_code=75243 site_time_zone_utc_offset=-6 +County "TX, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801150.epw site_zip_code=79331 site_time_zone_utc_offset=-6 +County "TX, DeWitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801230.epw site_zip_code=77954 site_time_zone_utc_offset=-6 +County "TX, Deaf Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801170.epw site_zip_code=79045 site_time_zone_utc_offset=-6 +County "TX, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801190.epw site_zip_code=75432 site_time_zone_utc_offset=-6 +County "TX, Denton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801210.epw site_zip_code=75056 site_time_zone_utc_offset=-6 +County "TX, Dickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801250.epw site_zip_code=79370 site_time_zone_utc_offset=-6 +County "TX, Dimmit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801270.epw site_zip_code=78834 site_time_zone_utc_offset=-6 +County "TX, Donley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801290.epw site_zip_code=79226 site_time_zone_utc_offset=-6 +County "TX, Duval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801310.epw site_zip_code=78384 site_time_zone_utc_offset=-6 +County "TX, Eastland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801330.epw site_zip_code=76437 site_time_zone_utc_offset=-6 +County "TX, Ector County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801350.epw site_zip_code=79762 site_time_zone_utc_offset=-6 +County "TX, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801370.epw site_zip_code=78880 site_time_zone_utc_offset=-6 +County "TX, El Paso County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801410.epw site_zip_code=79936 site_time_zone_utc_offset=-7 +County "TX, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801390.epw site_zip_code=75165 site_time_zone_utc_offset=-6 +County "TX, Erath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801430.epw site_zip_code=76401 site_time_zone_utc_offset=-6 +County "TX, Falls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801450.epw site_zip_code=76661 site_time_zone_utc_offset=-6 +County "TX, Fannin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801470.epw site_zip_code=75418 site_time_zone_utc_offset=-6 +County "TX, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801490.epw site_zip_code=78945 site_time_zone_utc_offset=-6 +County "TX, Fisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801510.epw site_zip_code=79546 site_time_zone_utc_offset=-6 +County "TX, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801530.epw site_zip_code=79235 site_time_zone_utc_offset=-6 +County "TX, Foard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801550.epw site_zip_code=79227 site_time_zone_utc_offset=-6 +County "TX, Fort Bend County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801570.epw site_zip_code=77494 site_time_zone_utc_offset=-6 +County "TX, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801590.epw site_zip_code=75457 site_time_zone_utc_offset=-6 +County "TX, Freestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801610.epw site_zip_code=75860 site_time_zone_utc_offset=-6 +County "TX, Frio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801630.epw site_zip_code=78061 site_time_zone_utc_offset=-6 +County "TX, Gaines County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801650.epw site_zip_code=79360 site_time_zone_utc_offset=-6 +County "TX, Galveston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801670.epw site_zip_code=77573 site_time_zone_utc_offset=-6 +County "TX, Garza County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801690.epw site_zip_code=79356 site_time_zone_utc_offset=-6 +County "TX, Gillespie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801710.epw site_zip_code=78624 site_time_zone_utc_offset=-6 +County "TX, Glasscock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801730.epw site_zip_code=79739 site_time_zone_utc_offset=-6 +County "TX, Goliad County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801750.epw site_zip_code=77963 site_time_zone_utc_offset=-6 +County "TX, Gonzales County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801770.epw site_zip_code=78629 site_time_zone_utc_offset=-6 +County "TX, Gray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801790.epw site_zip_code=79065 site_time_zone_utc_offset=-6 +County "TX, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801810.epw site_zip_code=75092 site_time_zone_utc_offset=-6 +County "TX, Gregg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801830.epw site_zip_code=75605 site_time_zone_utc_offset=-6 +County "TX, Grimes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801850.epw site_zip_code=77868 site_time_zone_utc_offset=-6 +County "TX, Guadalupe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801870.epw site_zip_code=78155 site_time_zone_utc_offset=-6 +County "TX, Hale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801890.epw site_zip_code=79072 site_time_zone_utc_offset=-6 +County "TX, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801910.epw site_zip_code=79245 site_time_zone_utc_offset=-6 +County "TX, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801930.epw site_zip_code=76531 site_time_zone_utc_offset=-6 +County "TX, Hansford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801950.epw site_zip_code=79081 site_time_zone_utc_offset=-6 +County "TX, Hardeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801970.epw site_zip_code=79252 site_time_zone_utc_offset=-6 +County "TX, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801990.epw site_zip_code=77657 site_time_zone_utc_offset=-6 +County "TX, Harris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802010.epw site_zip_code=77449 site_time_zone_utc_offset=-6 +County "TX, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802030.epw site_zip_code=75672 site_time_zone_utc_offset=-6 +County "TX, Hartley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802050.epw site_zip_code=79022 site_time_zone_utc_offset=-6 +County "TX, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802070.epw site_zip_code=79521 site_time_zone_utc_offset=-6 +County "TX, Hays County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802090.epw site_zip_code=78666 site_time_zone_utc_offset=-6 +County "TX, Hemphill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802110.epw site_zip_code=79014 site_time_zone_utc_offset=-6 +County "TX, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802130.epw site_zip_code=75156 site_time_zone_utc_offset=-6 +County "TX, Hidalgo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802150.epw site_zip_code=78572 site_time_zone_utc_offset=-6 +County "TX, Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802170.epw site_zip_code=76692 site_time_zone_utc_offset=-6 +County "TX, Hockley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802190.epw site_zip_code=79336 site_time_zone_utc_offset=-6 +County "TX, Hood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802210.epw site_zip_code=76048 site_time_zone_utc_offset=-6 +County "TX, Hopkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802230.epw site_zip_code=75482 site_time_zone_utc_offset=-6 +County "TX, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802250.epw site_zip_code=75835 site_time_zone_utc_offset=-6 +County "TX, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802270.epw site_zip_code=79720 site_time_zone_utc_offset=-6 +County "TX, Hudspeth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802290.epw site_zip_code=79839 site_time_zone_utc_offset=-7 +County "TX, Hunt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802310.epw site_zip_code=75401 site_time_zone_utc_offset=-6 +County "TX, Hutchinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802330.epw site_zip_code=79007 site_time_zone_utc_offset=-6 +County "TX, Irion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802350.epw site_zip_code=76941 site_time_zone_utc_offset=-6 +County "TX, Jack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802370.epw site_zip_code=76458 site_time_zone_utc_offset=-6 +County "TX, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802390.epw site_zip_code=77957 site_time_zone_utc_offset=-6 +County "TX, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802410.epw site_zip_code=75951 site_time_zone_utc_offset=-6 +County "TX, Jeff Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802430.epw site_zip_code=79734 site_time_zone_utc_offset=-6 +County "TX, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802450.epw site_zip_code=77642 site_time_zone_utc_offset=-6 +County "TX, Jim Hogg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802470.epw site_zip_code=78361 site_time_zone_utc_offset=-6 +County "TX, Jim Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802490.epw site_zip_code=78332 site_time_zone_utc_offset=-6 +County "TX, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802510.epw site_zip_code=76028 site_time_zone_utc_offset=-6 +County "TX, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802530.epw site_zip_code=79501 site_time_zone_utc_offset=-6 +County "TX, Karnes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802550.epw site_zip_code=78119 site_time_zone_utc_offset=-6 +County "TX, Kaufman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802570.epw site_zip_code=75126 site_time_zone_utc_offset=-6 +County "TX, Kendall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802590.epw site_zip_code=78006 site_time_zone_utc_offset=-6 +County "TX, Kenedy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802610.epw site_zip_code=78385 site_time_zone_utc_offset=-6 +County "TX, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802630.epw site_zip_code=79549 site_time_zone_utc_offset=-6 +County "TX, Kerr County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802650.epw site_zip_code=78028 site_time_zone_utc_offset=-6 +County "TX, Kimble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802670.epw site_zip_code=76849 site_time_zone_utc_offset=-6 +County "TX, King County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802690.epw site_zip_code=79248 site_time_zone_utc_offset=-6 +County "TX, Kinney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802710.epw site_zip_code=78832 site_time_zone_utc_offset=-6 +County "TX, Kleberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802730.epw site_zip_code=78363 site_time_zone_utc_offset=-6 +County "TX, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802750.epw site_zip_code=76371 site_time_zone_utc_offset=-6 +County "TX, La Salle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802830.epw site_zip_code=78014 site_time_zone_utc_offset=-6 +County "TX, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802770.epw site_zip_code=75460 site_time_zone_utc_offset=-6 +County "TX, Lamb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802790.epw site_zip_code=79339 site_time_zone_utc_offset=-6 +County "TX, Lampasas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802810.epw site_zip_code=76550 site_time_zone_utc_offset=-6 +County "TX, Lavaca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802850.epw site_zip_code=77964 site_time_zone_utc_offset=-6 +County "TX, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802870.epw site_zip_code=78942 site_time_zone_utc_offset=-6 +County "TX, Leon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802890.epw site_zip_code=75831 site_time_zone_utc_offset=-6 +County "TX, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802910.epw site_zip_code=77327 site_time_zone_utc_offset=-6 +County "TX, Limestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802930.epw site_zip_code=76667 site_time_zone_utc_offset=-6 +County "TX, Lipscomb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802950.epw site_zip_code=79005 site_time_zone_utc_offset=-6 +County "TX, Live Oak County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802970.epw site_zip_code=78022 site_time_zone_utc_offset=-6 +County "TX, Llano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802990.epw site_zip_code=78657 site_time_zone_utc_offset=-6 +County "TX, Loving County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803010.epw site_zip_code=79754 site_time_zone_utc_offset=-6 +County "TX, Lubbock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803030.epw site_zip_code=79424 site_time_zone_utc_offset=-6 +County "TX, Lynn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803050.epw site_zip_code=79373 site_time_zone_utc_offset=-6 +County "TX, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803130.epw site_zip_code=77864 site_time_zone_utc_offset=-6 +County "TX, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803150.epw site_zip_code=75657 site_time_zone_utc_offset=-6 +County "TX, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803170.epw site_zip_code=79782 site_time_zone_utc_offset=-6 +County "TX, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803190.epw site_zip_code=76856 site_time_zone_utc_offset=-6 +County "TX, Matagorda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803210.epw site_zip_code=77414 site_time_zone_utc_offset=-6 +County "TX, Maverick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803230.epw site_zip_code=78852 site_time_zone_utc_offset=-6 +County "TX, McCulloch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803070.epw site_zip_code=76825 site_time_zone_utc_offset=-6 +County "TX, McLennan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803090.epw site_zip_code=76706 site_time_zone_utc_offset=-6 +County "TX, McMullen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803110.epw site_zip_code=78072 site_time_zone_utc_offset=-6 +County "TX, Medina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803250.epw site_zip_code=78861 site_time_zone_utc_offset=-6 +County "TX, Menard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803270.epw site_zip_code=76859 site_time_zone_utc_offset=-6 +County "TX, Midland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803290.epw site_zip_code=79705 site_time_zone_utc_offset=-6 +County "TX, Milam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803310.epw site_zip_code=76567 site_time_zone_utc_offset=-6 +County "TX, Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803330.epw site_zip_code=76844 site_time_zone_utc_offset=-6 +County "TX, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803350.epw site_zip_code=79512 site_time_zone_utc_offset=-6 +County "TX, Montague County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803370.epw site_zip_code=76230 site_time_zone_utc_offset=-6 +County "TX, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803390.epw site_zip_code=77386 site_time_zone_utc_offset=-6 +County "TX, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803410.epw site_zip_code=79029 site_time_zone_utc_offset=-6 +County "TX, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803430.epw site_zip_code=75638 site_time_zone_utc_offset=-6 +County "TX, Motley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803450.epw site_zip_code=79234 site_time_zone_utc_offset=-6 +County "TX, Nacogdoches County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803470.epw site_zip_code=75964 site_time_zone_utc_offset=-6 +County "TX, Navarro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803490.epw site_zip_code=75110 site_time_zone_utc_offset=-6 +County "TX, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803510.epw site_zip_code=75966 site_time_zone_utc_offset=-6 +County "TX, Nolan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803530.epw site_zip_code=79556 site_time_zone_utc_offset=-6 +County "TX, Nueces County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803550.epw site_zip_code=78414 site_time_zone_utc_offset=-6 +County "TX, Ochiltree County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803570.epw site_zip_code=79070 site_time_zone_utc_offset=-6 +County "TX, Oldham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803590.epw site_zip_code=79092 site_time_zone_utc_offset=-6 +County "TX, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803610.epw site_zip_code=77630 site_time_zone_utc_offset=-6 +County "TX, Palo Pinto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803630.epw site_zip_code=76067 site_time_zone_utc_offset=-6 +County "TX, Panola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803650.epw site_zip_code=75633 site_time_zone_utc_offset=-6 +County "TX, Parker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803670.epw site_zip_code=76087 site_time_zone_utc_offset=-6 +County "TX, Parmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803690.epw site_zip_code=79035 site_time_zone_utc_offset=-6 +County "TX, Pecos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803710.epw site_zip_code=79735 site_time_zone_utc_offset=-6 +County "TX, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803730.epw site_zip_code=77351 site_time_zone_utc_offset=-6 +County "TX, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803750.epw site_zip_code=79107 site_time_zone_utc_offset=-6 +County "TX, Presidio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803770.epw site_zip_code=79845 site_time_zone_utc_offset=-6 +County "TX, Rains County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803790.epw site_zip_code=75440 site_time_zone_utc_offset=-6 +County "TX, Randall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803810.epw site_zip_code=79109 site_time_zone_utc_offset=-6 +County "TX, Reagan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803830.epw site_zip_code=76932 site_time_zone_utc_offset=-6 +County "TX, Real County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803850.epw site_zip_code=78873 site_time_zone_utc_offset=-6 +County "TX, Red River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803870.epw site_zip_code=75426 site_time_zone_utc_offset=-6 +County "TX, Reeves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803890.epw site_zip_code=79772 site_time_zone_utc_offset=-6 +County "TX, Refugio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803910.epw site_zip_code=78377 site_time_zone_utc_offset=-6 +County "TX, Roberts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803930.epw site_zip_code=79059 site_time_zone_utc_offset=-6 +County "TX, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803950.epw site_zip_code=77859 site_time_zone_utc_offset=-6 +County "TX, Rockwall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803970.epw site_zip_code=75087 site_time_zone_utc_offset=-6 +County "TX, Runnels County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803990.epw site_zip_code=76821 site_time_zone_utc_offset=-6 +County "TX, Rusk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804010.epw site_zip_code=75652 site_time_zone_utc_offset=-6 +County "TX, Sabine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804030.epw site_zip_code=75948 site_time_zone_utc_offset=-6 +County "TX, San Augustine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804050.epw site_zip_code=75972 site_time_zone_utc_offset=-6 +County "TX, San Jacinto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804070.epw site_zip_code=77331 site_time_zone_utc_offset=-6 +County "TX, San Patricio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804090.epw site_zip_code=78374 site_time_zone_utc_offset=-6 +County "TX, San Saba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804110.epw site_zip_code=76877 site_time_zone_utc_offset=-6 +County "TX, Schleicher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804130.epw site_zip_code=76936 site_time_zone_utc_offset=-6 +County "TX, Scurry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804150.epw site_zip_code=79549 site_time_zone_utc_offset=-6 +County "TX, Shackelford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804170.epw site_zip_code=76430 site_time_zone_utc_offset=-6 +County "TX, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804190.epw site_zip_code=75935 site_time_zone_utc_offset=-6 +County "TX, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804210.epw site_zip_code=79084 site_time_zone_utc_offset=-6 +County "TX, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804230.epw site_zip_code=75703 site_time_zone_utc_offset=-6 +County "TX, Somervell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804250.epw site_zip_code=76043 site_time_zone_utc_offset=-6 +County "TX, Starr County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804270.epw site_zip_code=78582 site_time_zone_utc_offset=-6 +County "TX, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804290.epw site_zip_code=76424 site_time_zone_utc_offset=-6 +County "TX, Sterling County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804310.epw site_zip_code=76951 site_time_zone_utc_offset=-6 +County "TX, Stonewall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804330.epw site_zip_code=79502 site_time_zone_utc_offset=-6 +County "TX, Sutton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804350.epw site_zip_code=76950 site_time_zone_utc_offset=-6 +County "TX, Swisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804370.epw site_zip_code=79088 site_time_zone_utc_offset=-6 +County "TX, Tarrant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804390.epw site_zip_code=76244 site_time_zone_utc_offset=-6 +County "TX, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804410.epw site_zip_code=79605 site_time_zone_utc_offset=-6 +County "TX, Terrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804430.epw site_zip_code=78851 site_time_zone_utc_offset=-6 +County "TX, Terry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804450.epw site_zip_code=79316 site_time_zone_utc_offset=-6 +County "TX, Throckmorton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804470.epw site_zip_code=76483 site_time_zone_utc_offset=-6 +County "TX, Titus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804490.epw site_zip_code=75455 site_time_zone_utc_offset=-6 +County "TX, Tom Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804510.epw site_zip_code=76904 site_time_zone_utc_offset=-6 +County "TX, Travis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804530.epw site_zip_code=78660 site_time_zone_utc_offset=-6 +County "TX, Trinity County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804550.epw site_zip_code=75862 site_time_zone_utc_offset=-6 +County "TX, Tyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804570.epw site_zip_code=75979 site_time_zone_utc_offset=-6 +County "TX, Upshur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804590.epw site_zip_code=75644 site_time_zone_utc_offset=-6 +County "TX, Upton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804610.epw site_zip_code=79778 site_time_zone_utc_offset=-6 +County "TX, Uvalde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804630.epw site_zip_code=78801 site_time_zone_utc_offset=-6 +County "TX, Val Verde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804650.epw site_zip_code=78840 site_time_zone_utc_offset=-6 +County "TX, Van Zandt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804670.epw site_zip_code=75103 site_time_zone_utc_offset=-6 +County "TX, Victoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804690.epw site_zip_code=77901 site_time_zone_utc_offset=-6 +County "TX, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804710.epw site_zip_code=77340 site_time_zone_utc_offset=-6 +County "TX, Waller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804730.epw site_zip_code=77423 site_time_zone_utc_offset=-6 +County "TX, Ward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804750.epw site_zip_code=79756 site_time_zone_utc_offset=-6 +County "TX, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804770.epw site_zip_code=77833 site_time_zone_utc_offset=-6 +County "TX, Webb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804790.epw site_zip_code=78045 site_time_zone_utc_offset=-6 +County "TX, Wharton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804810.epw site_zip_code=77437 site_time_zone_utc_offset=-6 +County "TX, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804830.epw site_zip_code=79079 site_time_zone_utc_offset=-6 +County "TX, Wichita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804850.epw site_zip_code=76311 site_time_zone_utc_offset=-6 +County "TX, Wilbarger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804870.epw site_zip_code=76384 site_time_zone_utc_offset=-6 +County "TX, Willacy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804890.epw site_zip_code=78580 site_time_zone_utc_offset=-6 +County "TX, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804910.epw site_zip_code=78641 site_time_zone_utc_offset=-6 +County "TX, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804930.epw site_zip_code=78114 site_time_zone_utc_offset=-6 +County "TX, Winkler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804950.epw site_zip_code=79745 site_time_zone_utc_offset=-6 +County "TX, Wise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804970.epw site_zip_code=76234 site_time_zone_utc_offset=-6 +County "TX, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804990.epw site_zip_code=75773 site_time_zone_utc_offset=-6 +County "TX, Yoakum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805010.epw site_zip_code=79323 site_time_zone_utc_offset=-6 +County "TX, Young County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805030.epw site_zip_code=76450 site_time_zone_utc_offset=-6 +County "TX, Zapata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805050.epw site_zip_code=78076 site_time_zone_utc_offset=-6 +County "TX, Zavala County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805070.epw site_zip_code=78839 site_time_zone_utc_offset=-6 +County "UT, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900010.epw site_zip_code=84713 site_time_zone_utc_offset=-7 +County "UT, Box Elder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900030.epw site_zip_code=84302 site_time_zone_utc_offset=-7 +County "UT, Cache County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900050.epw site_zip_code=84321 site_time_zone_utc_offset=-7 +County "UT, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900070.epw site_zip_code=84501 site_time_zone_utc_offset=-7 +County "UT, Daggett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900090.epw site_zip_code=84046 site_time_zone_utc_offset=-7 +County "UT, Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900110.epw site_zip_code=84015 site_time_zone_utc_offset=-7 +County "UT, Duchesne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900130.epw site_zip_code=84066 site_time_zone_utc_offset=-7 +County "UT, Emery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900150.epw site_zip_code=84528 site_time_zone_utc_offset=-7 +County "UT, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900170.epw site_zip_code=84726 site_time_zone_utc_offset=-7 +County "UT, Grand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900190.epw site_zip_code=84532 site_time_zone_utc_offset=-7 +County "UT, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900210.epw site_zip_code=84721 site_time_zone_utc_offset=-7 +County "UT, Juab County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900230.epw site_zip_code=84648 site_time_zone_utc_offset=-7 +County "UT, Kane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900250.epw site_zip_code=84741 site_time_zone_utc_offset=-7 +County "UT, Millard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900270.epw site_zip_code=84624 site_time_zone_utc_offset=-7 +County "UT, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900290.epw site_zip_code=84050 site_time_zone_utc_offset=-7 +County "UT, Piute County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900310.epw site_zip_code=84750 site_time_zone_utc_offset=-7 +County "UT, Rich County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900330.epw site_zip_code=84028 site_time_zone_utc_offset=-7 +County "UT, Salt Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900350.epw site_zip_code=84096 site_time_zone_utc_offset=-7 +County "UT, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900370.epw site_zip_code=84511 site_time_zone_utc_offset=-7 +County "UT, Sanpete County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900390.epw site_zip_code=84627 site_time_zone_utc_offset=-7 +County "UT, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900410.epw site_zip_code=84701 site_time_zone_utc_offset=-7 +County "UT, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900430.epw site_zip_code=84098 site_time_zone_utc_offset=-7 +County "UT, Tooele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900450.epw site_zip_code=84074 site_time_zone_utc_offset=-7 +County "UT, Uintah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900470.epw site_zip_code=84078 site_time_zone_utc_offset=-7 +County "UT, Utah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900490.epw site_zip_code=84043 site_time_zone_utc_offset=-7 +County "UT, Wasatch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900510.epw site_zip_code=84032 site_time_zone_utc_offset=-7 +County "UT, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900530.epw site_zip_code=84770 site_time_zone_utc_offset=-7 +County "UT, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900550.epw site_zip_code=84775 site_time_zone_utc_offset=-7 +County "UT, Weber County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900570.epw site_zip_code=84404 site_time_zone_utc_offset=-7 +County "VA, Accomack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100010.epw site_zip_code=23336 site_time_zone_utc_offset=-5 +County "VA, Albemarle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100030.epw site_zip_code=22901 site_time_zone_utc_offset=-5 +County "VA, Alexandria city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105100.epw site_zip_code=22304 site_time_zone_utc_offset=-5 +County "VA, Alleghany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100050.epw site_zip_code=24426 site_time_zone_utc_offset=-5 +County "VA, Amelia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100070.epw site_zip_code=23002 site_time_zone_utc_offset=-5 +County "VA, Amherst County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100090.epw site_zip_code=24572 site_time_zone_utc_offset=-5 +County "VA, Appomattox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100110.epw site_zip_code=24522 site_time_zone_utc_offset=-5 +County "VA, Arlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100130.epw site_zip_code=22204 site_time_zone_utc_offset=-5 +County "VA, Augusta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100150.epw site_zip_code=24401 site_time_zone_utc_offset=-5 +County "VA, Bath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100170.epw site_zip_code=24460 site_time_zone_utc_offset=-5 +County "VA, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100190.epw site_zip_code=24551 site_time_zone_utc_offset=-5 +County "VA, Bland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100210.epw site_zip_code=24315 site_time_zone_utc_offset=-5 +County "VA, Botetourt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100230.epw site_zip_code=24175 site_time_zone_utc_offset=-5 +County "VA, Bristol city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105200.epw site_zip_code=24201 site_time_zone_utc_offset=-5 +County "VA, Brunswick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100250.epw site_zip_code=23868 site_time_zone_utc_offset=-5 +County "VA, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100270.epw site_zip_code=24614 site_time_zone_utc_offset=-5 +County "VA, Buckingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100290.epw site_zip_code=23936 site_time_zone_utc_offset=-5 +County "VA, Buena Vista city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105300.epw site_zip_code=24416 site_time_zone_utc_offset=-5 +County "VA, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100310.epw site_zip_code=24502 site_time_zone_utc_offset=-5 +County "VA, Caroline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100330.epw site_zip_code=22546 site_time_zone_utc_offset=-5 +County "VA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100350.epw site_zip_code=24343 site_time_zone_utc_offset=-5 +County "VA, Charles City County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100360.epw site_zip_code=23030 site_time_zone_utc_offset=-5 +County "VA, Charlotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100370.epw site_zip_code=23923 site_time_zone_utc_offset=-5 +County "VA, Charlottesville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105400.epw site_zip_code=22903 site_time_zone_utc_offset=-5 +County "VA, Chesapeake city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105500.epw site_zip_code=23320 site_time_zone_utc_offset=-5 +County "VA, Chesterfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100410.epw site_zip_code=23112 site_time_zone_utc_offset=-5 +County "VA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100430.epw site_zip_code=22611 site_time_zone_utc_offset=-5 +County "VA, Colonial Heights city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105700.epw site_zip_code=23834 site_time_zone_utc_offset=-5 +County "VA, Covington city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105800.epw site_zip_code=24426 site_time_zone_utc_offset=-5 +County "VA, Craig County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100450.epw site_zip_code=24127 site_time_zone_utc_offset=-5 +County "VA, Culpeper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100470.epw site_zip_code=22701 site_time_zone_utc_offset=-5 +County "VA, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100490.epw site_zip_code=23040 site_time_zone_utc_offset=-5 +County "VA, Danville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105900.epw site_zip_code=24541 site_time_zone_utc_offset=-5 +County "VA, Dickenson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100510.epw site_zip_code=24228 site_time_zone_utc_offset=-5 +County "VA, Dinwiddie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100530.epw site_zip_code=23803 site_time_zone_utc_offset=-5 +County "VA, Emporia city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105950.epw site_zip_code=23847 site_time_zone_utc_offset=-5 +County "VA, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100570.epw site_zip_code=22560 site_time_zone_utc_offset=-5 +County "VA, Fairfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100590.epw site_zip_code=20171 site_time_zone_utc_offset=-5 +County "VA, Fairfax city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106000.epw site_zip_code=22030 site_time_zone_utc_offset=-5 +County "VA, Falls Church city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106100.epw site_zip_code=22046 site_time_zone_utc_offset=-5 +County "VA, Fauquier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100610.epw site_zip_code=20187 site_time_zone_utc_offset=-5 +County "VA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100630.epw site_zip_code=24091 site_time_zone_utc_offset=-5 +County "VA, Fluvanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100650.epw site_zip_code=22963 site_time_zone_utc_offset=-5 +County "VA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100670.epw site_zip_code=24151 site_time_zone_utc_offset=-5 +County "VA, Franklin city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106200.epw site_zip_code=23851 site_time_zone_utc_offset=-5 +County "VA, Frederick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100690.epw site_zip_code=22602 site_time_zone_utc_offset=-5 +County "VA, Fredericksburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106300.epw site_zip_code=22401 site_time_zone_utc_offset=-5 +County "VA, Galax city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106400.epw site_zip_code=24333 site_time_zone_utc_offset=-5 +County "VA, Giles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100710.epw site_zip_code=24134 site_time_zone_utc_offset=-5 +County "VA, Gloucester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100730.epw site_zip_code=23061 site_time_zone_utc_offset=-5 +County "VA, Goochland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100750.epw site_zip_code=23103 site_time_zone_utc_offset=-5 +County "VA, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100770.epw site_zip_code=24333 site_time_zone_utc_offset=-5 +County "VA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100790.epw site_zip_code=22968 site_time_zone_utc_offset=-5 +County "VA, Greensville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100810.epw site_zip_code=23847 site_time_zone_utc_offset=-5 +County "VA, Halifax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100830.epw site_zip_code=24592 site_time_zone_utc_offset=-5 +County "VA, Hampton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106500.epw site_zip_code=23666 site_time_zone_utc_offset=-5 +County "VA, Hanover County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100850.epw site_zip_code=23111 site_time_zone_utc_offset=-5 +County "VA, Harrisonburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106600.epw site_zip_code=22801 site_time_zone_utc_offset=-5 +County "VA, Henrico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100870.epw site_zip_code=23228 site_time_zone_utc_offset=-5 +County "VA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100890.epw site_zip_code=24112 site_time_zone_utc_offset=-5 +County "VA, Highland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100910.epw site_zip_code=24465 site_time_zone_utc_offset=-5 +County "VA, Hopewell city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106700.epw site_zip_code=23860 site_time_zone_utc_offset=-5 +County "VA, Isle of Wight County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100930.epw site_zip_code=23430 site_time_zone_utc_offset=-5 +County "VA, James City County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100950.epw site_zip_code=23188 site_time_zone_utc_offset=-5 +County "VA, King George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100990.epw site_zip_code=22485 site_time_zone_utc_offset=-5 +County "VA, King William County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101010.epw site_zip_code=23009 site_time_zone_utc_offset=-5 +County "VA, King and Queen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100970.epw site_zip_code=23156 site_time_zone_utc_offset=-5 +County "VA, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101030.epw site_zip_code=22503 site_time_zone_utc_offset=-5 +County "VA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101050.epw site_zip_code=24263 site_time_zone_utc_offset=-5 +County "VA, Lexington city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106780.epw site_zip_code=24450 site_time_zone_utc_offset=-5 +County "VA, Loudoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101070.epw site_zip_code=20189 site_time_zone_utc_offset=-5 +County "VA, Louisa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101090.epw site_zip_code=23093 site_time_zone_utc_offset=-5 +County "VA, Lunenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101110.epw site_zip_code=23974 site_time_zone_utc_offset=-5 +County "VA, Lynchburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106800.epw site_zip_code=24502 site_time_zone_utc_offset=-5 +County "VA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101130.epw site_zip_code=22727 site_time_zone_utc_offset=-5 +County "VA, Manassas Park city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106850.epw site_zip_code=20111 site_time_zone_utc_offset=-5 +County "VA, Manassas city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106830.epw site_zip_code=20110 site_time_zone_utc_offset=-5 +County "VA, Martinsville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106900.epw site_zip_code=24112 site_time_zone_utc_offset=-5 +County "VA, Mathews County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101150.epw site_zip_code=23109 site_time_zone_utc_offset=-5 +County "VA, Mecklenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101170.epw site_zip_code=23970 site_time_zone_utc_offset=-5 +County "VA, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101190.epw site_zip_code=23043 site_time_zone_utc_offset=-5 +County "VA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101210.epw site_zip_code=24060 site_time_zone_utc_offset=-5 +County "VA, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101250.epw site_zip_code=22967 site_time_zone_utc_offset=-5 +County "VA, New Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101270.epw site_zip_code=23141 site_time_zone_utc_offset=-5 +County "VA, Newport News city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107000.epw site_zip_code=23608 site_time_zone_utc_offset=-5 +County "VA, Norfolk city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107100.epw site_zip_code=23503 site_time_zone_utc_offset=-5 +County "VA, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101310.epw site_zip_code=23310 site_time_zone_utc_offset=-5 +County "VA, Northumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101330.epw site_zip_code=22473 site_time_zone_utc_offset=-5 +County "VA, Norton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107200.epw site_zip_code=24273 site_time_zone_utc_offset=-5 +County "VA, Nottoway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101350.epw site_zip_code=23824 site_time_zone_utc_offset=-5 +County "VA, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101370.epw site_zip_code=22508 site_time_zone_utc_offset=-5 +County "VA, Page County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101390.epw site_zip_code=22835 site_time_zone_utc_offset=-5 +County "VA, Patrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101410.epw site_zip_code=24171 site_time_zone_utc_offset=-5 +County "VA, Petersburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107300.epw site_zip_code=23803 site_time_zone_utc_offset=-5 +County "VA, Pittsylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101430.epw site_zip_code=24540 site_time_zone_utc_offset=-5 +County "VA, Poquoson city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107350.epw site_zip_code=23662 site_time_zone_utc_offset=-5 +County "VA, Portsmouth city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107400.epw site_zip_code=23703 site_time_zone_utc_offset=-5 +County "VA, Powhatan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101450.epw site_zip_code=23139 site_time_zone_utc_offset=-5 +County "VA, Prince Edward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101470.epw site_zip_code=23901 site_time_zone_utc_offset=-5 +County "VA, Prince George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101490.epw site_zip_code=23875 site_time_zone_utc_offset=-5 +County "VA, Prince William County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101530.epw site_zip_code=22191 site_time_zone_utc_offset=-5 +County "VA, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101550.epw site_zip_code=24301 site_time_zone_utc_offset=-5 +County "VA, Radford city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107500.epw site_zip_code=24141 site_time_zone_utc_offset=-5 +County "VA, Rappahannock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101570.epw site_zip_code=20106 site_time_zone_utc_offset=-5 +County "VA, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101590.epw site_zip_code=22572 site_time_zone_utc_offset=-5 +County "VA, Richmond city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107600.epw site_zip_code=23220 site_time_zone_utc_offset=-5 +County "VA, Roanoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101610.epw site_zip_code=24018 site_time_zone_utc_offset=-5 +County "VA, Roanoke city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107700.epw site_zip_code=24017 site_time_zone_utc_offset=-5 +County "VA, Rockbridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101630.epw site_zip_code=24450 site_time_zone_utc_offset=-5 +County "VA, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101650.epw site_zip_code=22801 site_time_zone_utc_offset=-5 +County "VA, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101670.epw site_zip_code=24266 site_time_zone_utc_offset=-5 +County "VA, Salem city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107750.epw site_zip_code=24153 site_time_zone_utc_offset=-5 +County "VA, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101690.epw site_zip_code=24251 site_time_zone_utc_offset=-5 +County "VA, Shenandoah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101710.epw site_zip_code=22657 site_time_zone_utc_offset=-5 +County "VA, Smyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101730.epw site_zip_code=24354 site_time_zone_utc_offset=-5 +County "VA, Southampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101750.epw site_zip_code=23851 site_time_zone_utc_offset=-5 +County "VA, Spotsylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101770.epw site_zip_code=22407 site_time_zone_utc_offset=-5 +County "VA, Stafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101790.epw site_zip_code=22554 site_time_zone_utc_offset=-5 +County "VA, Staunton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107900.epw site_zip_code=24401 site_time_zone_utc_offset=-5 +County "VA, Suffolk city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108000.epw site_zip_code=23434 site_time_zone_utc_offset=-5 +County "VA, Surry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101810.epw site_zip_code=23883 site_time_zone_utc_offset=-5 +County "VA, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101830.epw site_zip_code=23890 site_time_zone_utc_offset=-5 +County "VA, Tazewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101850.epw site_zip_code=24605 site_time_zone_utc_offset=-5 +County "VA, Virginia Beach city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108100.epw site_zip_code=23462 site_time_zone_utc_offset=-5 +County "VA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101870.epw site_zip_code=22630 site_time_zone_utc_offset=-5 +County "VA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101910.epw site_zip_code=24210 site_time_zone_utc_offset=-5 +County "VA, Waynesboro city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108200.epw site_zip_code=22980 site_time_zone_utc_offset=-5 +County "VA, Westmoreland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101930.epw site_zip_code=22443 site_time_zone_utc_offset=-5 +County "VA, Williamsburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108300.epw site_zip_code=23185 site_time_zone_utc_offset=-5 +County "VA, Winchester city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108400.epw site_zip_code=22601 site_time_zone_utc_offset=-5 +County "VA, Wise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101950.epw site_zip_code=24219 site_time_zone_utc_offset=-5 +County "VA, Wythe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101970.epw site_zip_code=24382 site_time_zone_utc_offset=-5 +County "VA, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101990.epw site_zip_code=23692 site_time_zone_utc_offset=-5 +County "VT, Addison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000010.epw site_zip_code=05753 site_time_zone_utc_offset=-5 +County "VT, Bennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000030.epw site_zip_code=05201 site_time_zone_utc_offset=-5 +County "VT, Caledonia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000050.epw site_zip_code=05819 site_time_zone_utc_offset=-5 +County "VT, Chittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000070.epw site_zip_code=05401 site_time_zone_utc_offset=-5 +County "VT, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000090.epw site_zip_code=05906 site_time_zone_utc_offset=-5 +County "VT, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000110.epw site_zip_code=05478 site_time_zone_utc_offset=-5 +County "VT, Grand Isle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000130.epw site_zip_code=05440 site_time_zone_utc_offset=-5 +County "VT, Lamoille County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000150.epw site_zip_code=05672 site_time_zone_utc_offset=-5 +County "VT, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000170.epw site_zip_code=05060 site_time_zone_utc_offset=-5 +County "VT, Orleans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000190.epw site_zip_code=05855 site_time_zone_utc_offset=-5 +County "VT, Rutland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000210.epw site_zip_code=05701 site_time_zone_utc_offset=-5 +County "VT, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000230.epw site_zip_code=05641 site_time_zone_utc_offset=-5 +County "VT, Windham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000250.epw site_zip_code=05301 site_time_zone_utc_offset=-5 +County "VT, Windsor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000270.epw site_zip_code=05156 site_time_zone_utc_offset=-5 +County "WA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300010.epw site_zip_code=99344 site_time_zone_utc_offset=-8 +County "WA, Asotin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300030.epw site_zip_code=99403 site_time_zone_utc_offset=-8 +County "WA, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300050.epw site_zip_code=99336 site_time_zone_utc_offset=-8 +County "WA, Chelan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300070.epw site_zip_code=98801 site_time_zone_utc_offset=-8 +County "WA, Clallam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300090.epw site_zip_code=98382 site_time_zone_utc_offset=-8 +County "WA, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300110.epw site_zip_code=98682 site_time_zone_utc_offset=-8 +County "WA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300130.epw site_zip_code=99328 site_time_zone_utc_offset=-8 +County "WA, Cowlitz County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300150.epw site_zip_code=98632 site_time_zone_utc_offset=-8 +County "WA, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300170.epw site_zip_code=98802 site_time_zone_utc_offset=-8 +County "WA, Ferry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300190.epw site_zip_code=99166 site_time_zone_utc_offset=-8 +County "WA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300210.epw site_zip_code=99301 site_time_zone_utc_offset=-8 +County "WA, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300230.epw site_zip_code=99347 site_time_zone_utc_offset=-8 +County "WA, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300250.epw site_zip_code=98837 site_time_zone_utc_offset=-8 +County "WA, Grays Harbor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300270.epw site_zip_code=98520 site_time_zone_utc_offset=-8 +County "WA, Island County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300290.epw site_zip_code=98277 site_time_zone_utc_offset=-8 +County "WA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300310.epw site_zip_code=98368 site_time_zone_utc_offset=-8 +County "WA, King County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300330.epw site_zip_code=98052 site_time_zone_utc_offset=-8 +County "WA, Kitsap County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300350.epw site_zip_code=98312 site_time_zone_utc_offset=-8 +County "WA, Kittitas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300370.epw site_zip_code=98926 site_time_zone_utc_offset=-8 +County "WA, Klickitat County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300390.epw site_zip_code=98672 site_time_zone_utc_offset=-8 +County "WA, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300410.epw site_zip_code=98531 site_time_zone_utc_offset=-8 +County "WA, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300430.epw site_zip_code=99122 site_time_zone_utc_offset=-8 +County "WA, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300450.epw site_zip_code=98584 site_time_zone_utc_offset=-8 +County "WA, Okanogan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300470.epw site_zip_code=98841 site_time_zone_utc_offset=-8 +County "WA, Pacific County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300490.epw site_zip_code=98640 site_time_zone_utc_offset=-8 +County "WA, Pend Oreille County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300510.epw site_zip_code=99156 site_time_zone_utc_offset=-8 +County "WA, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300530.epw site_zip_code=98391 site_time_zone_utc_offset=-8 +County "WA, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300550.epw site_zip_code=98250 site_time_zone_utc_offset=-8 +County "WA, Skagit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300570.epw site_zip_code=98273 site_time_zone_utc_offset=-8 +County "WA, Skamania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300590.epw site_zip_code=98648 site_time_zone_utc_offset=-8 +County "WA, Snohomish County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300610.epw site_zip_code=98012 site_time_zone_utc_offset=-8 +County "WA, Spokane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300630.epw site_zip_code=99208 site_time_zone_utc_offset=-8 +County "WA, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300650.epw site_zip_code=99114 site_time_zone_utc_offset=-8 +County "WA, Thurston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300670.epw site_zip_code=98501 site_time_zone_utc_offset=-8 +County "WA, Wahkiakum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300690.epw site_zip_code=98612 site_time_zone_utc_offset=-8 +County "WA, Walla Walla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300710.epw site_zip_code=99362 site_time_zone_utc_offset=-8 +County "WA, Whatcom County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300730.epw site_zip_code=98225 site_time_zone_utc_offset=-8 +County "WA, Whitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300750.epw site_zip_code=99163 site_time_zone_utc_offset=-8 +County "WA, Yakima County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300770.epw site_zip_code=98902 site_time_zone_utc_offset=-8 +County "WI, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500010.epw site_zip_code=53934 site_time_zone_utc_offset=-6 +County "WI, Ashland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500030.epw site_zip_code=54806 site_time_zone_utc_offset=-6 +County "WI, Barron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500050.epw site_zip_code=54868 site_time_zone_utc_offset=-6 +County "WI, Bayfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500070.epw site_zip_code=54891 site_time_zone_utc_offset=-6 +County "WI, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500090.epw site_zip_code=54115 site_time_zone_utc_offset=-6 +County "WI, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500110.epw site_zip_code=54755 site_time_zone_utc_offset=-6 +County "WI, Burnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500130.epw site_zip_code=54830 site_time_zone_utc_offset=-6 +County "WI, Calumet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500150.epw site_zip_code=54915 site_time_zone_utc_offset=-6 +County "WI, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500170.epw site_zip_code=54729 site_time_zone_utc_offset=-6 +County "WI, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500190.epw site_zip_code=54456 site_time_zone_utc_offset=-6 +County "WI, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500210.epw site_zip_code=53901 site_time_zone_utc_offset=-6 +County "WI, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500230.epw site_zip_code=53821 site_time_zone_utc_offset=-6 +County "WI, Dane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500250.epw site_zip_code=53711 site_time_zone_utc_offset=-6 +County "WI, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500270.epw site_zip_code=53916 site_time_zone_utc_offset=-6 +County "WI, Door County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500290.epw site_zip_code=54235 site_time_zone_utc_offset=-6 +County "WI, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500310.epw site_zip_code=54880 site_time_zone_utc_offset=-6 +County "WI, Dunn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500330.epw site_zip_code=54751 site_time_zone_utc_offset=-6 +County "WI, Eau Claire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500350.epw site_zip_code=54703 site_time_zone_utc_offset=-6 +County "WI, Florence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500370.epw site_zip_code=54121 site_time_zone_utc_offset=-6 +County "WI, Fond du Lac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500390.epw site_zip_code=54935 site_time_zone_utc_offset=-6 +County "WI, Forest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500410.epw site_zip_code=54520 site_time_zone_utc_offset=-6 +County "WI, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500430.epw site_zip_code=53818 site_time_zone_utc_offset=-6 +County "WI, Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500450.epw site_zip_code=53566 site_time_zone_utc_offset=-6 +County "WI, Green Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500470.epw site_zip_code=54923 site_time_zone_utc_offset=-6 +County "WI, Iowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500490.epw site_zip_code=53533 site_time_zone_utc_offset=-6 +County "WI, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500510.epw site_zip_code=54547 site_time_zone_utc_offset=-6 +County "WI, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500530.epw site_zip_code=54615 site_time_zone_utc_offset=-6 +County "WI, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500550.epw site_zip_code=53538 site_time_zone_utc_offset=-6 +County "WI, Juneau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500570.epw site_zip_code=53948 site_time_zone_utc_offset=-6 +County "WI, Kenosha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500590.epw site_zip_code=53142 site_time_zone_utc_offset=-6 +County "WI, Kewaunee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500610.epw site_zip_code=54216 site_time_zone_utc_offset=-6 +County "WI, La Crosse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500630.epw site_zip_code=54601 site_time_zone_utc_offset=-6 +County "WI, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500650.epw site_zip_code=53530 site_time_zone_utc_offset=-6 +County "WI, Langlade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500670.epw site_zip_code=54409 site_time_zone_utc_offset=-6 +County "WI, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500690.epw site_zip_code=54452 site_time_zone_utc_offset=-6 +County "WI, Manitowoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500710.epw site_zip_code=54220 site_time_zone_utc_offset=-6 +County "WI, Marathon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500730.epw site_zip_code=54401 site_time_zone_utc_offset=-6 +County "WI, Marinette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500750.epw site_zip_code=54143 site_time_zone_utc_offset=-6 +County "WI, Marquette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500770.epw site_zip_code=53949 site_time_zone_utc_offset=-6 +County "WI, Menominee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500780.epw site_zip_code=54135 site_time_zone_utc_offset=-6 +County "WI, Milwaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500790.epw site_zip_code=53209 site_time_zone_utc_offset=-6 +County "WI, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500810.epw site_zip_code=54656 site_time_zone_utc_offset=-6 +County "WI, Oconto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500830.epw site_zip_code=54153 site_time_zone_utc_offset=-6 +County "WI, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500850.epw site_zip_code=54501 site_time_zone_utc_offset=-6 +County "WI, Outagamie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500870.epw site_zip_code=54911 site_time_zone_utc_offset=-6 +County "WI, Ozaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500890.epw site_zip_code=53092 site_time_zone_utc_offset=-6 +County "WI, Pepin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500910.epw site_zip_code=54736 site_time_zone_utc_offset=-6 +County "WI, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500930.epw site_zip_code=54022 site_time_zone_utc_offset=-6 +County "WI, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500950.epw site_zip_code=54001 site_time_zone_utc_offset=-6 +County "WI, Portage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500970.epw site_zip_code=54481 site_time_zone_utc_offset=-6 +County "WI, Price County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500990.epw site_zip_code=54555 site_time_zone_utc_offset=-6 +County "WI, Racine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501010.epw site_zip_code=53402 site_time_zone_utc_offset=-6 +County "WI, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501030.epw site_zip_code=53581 site_time_zone_utc_offset=-6 +County "WI, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501050.epw site_zip_code=53511 site_time_zone_utc_offset=-6 +County "WI, Rusk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501070.epw site_zip_code=54848 site_time_zone_utc_offset=-6 +County "WI, Sauk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501110.epw site_zip_code=53913 site_time_zone_utc_offset=-6 +County "WI, Sawyer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501130.epw site_zip_code=54843 site_time_zone_utc_offset=-6 +County "WI, Shawano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501150.epw site_zip_code=54166 site_time_zone_utc_offset=-6 +County "WI, Sheboygan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501170.epw site_zip_code=53081 site_time_zone_utc_offset=-6 +County "WI, St. Croix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501090.epw site_zip_code=54016 site_time_zone_utc_offset=-6 +County "WI, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501190.epw site_zip_code=54451 site_time_zone_utc_offset=-6 +County "WI, Trempealeau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501210.epw site_zip_code=54612 site_time_zone_utc_offset=-6 +County "WI, Vernon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501230.epw site_zip_code=54665 site_time_zone_utc_offset=-6 +County "WI, Vilas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501250.epw site_zip_code=54521 site_time_zone_utc_offset=-6 +County "WI, Walworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501270.epw site_zip_code=53147 site_time_zone_utc_offset=-6 +County "WI, Washburn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501290.epw site_zip_code=54801 site_time_zone_utc_offset=-6 +County "WI, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501310.epw site_zip_code=53022 site_time_zone_utc_offset=-6 +County "WI, Waukesha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501330.epw site_zip_code=53051 site_time_zone_utc_offset=-6 +County "WI, Waupaca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501350.epw site_zip_code=54981 site_time_zone_utc_offset=-6 +County "WI, Waushara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501370.epw site_zip_code=54982 site_time_zone_utc_offset=-6 +County "WI, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501390.epw site_zip_code=54956 site_time_zone_utc_offset=-6 +County "WI, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501410.epw site_zip_code=54449 site_time_zone_utc_offset=-6 +County "WV, Barbour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400010.epw site_zip_code=26416 site_time_zone_utc_offset=-5 +County "WV, Berkeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400030.epw site_zip_code=25404 site_time_zone_utc_offset=-5 +County "WV, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400050.epw site_zip_code=25130 site_time_zone_utc_offset=-5 +County "WV, Braxton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400070.epw site_zip_code=26601 site_time_zone_utc_offset=-5 +County "WV, Brooke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400090.epw site_zip_code=26070 site_time_zone_utc_offset=-5 +County "WV, Cabell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400110.epw site_zip_code=25701 site_time_zone_utc_offset=-5 +County "WV, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400130.epw site_zip_code=26147 site_time_zone_utc_offset=-5 +County "WV, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400150.epw site_zip_code=25043 site_time_zone_utc_offset=-5 +County "WV, Doddridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400170.epw site_zip_code=26456 site_time_zone_utc_offset=-5 +County "WV, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400190.epw site_zip_code=25901 site_time_zone_utc_offset=-5 +County "WV, Gilmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400210.epw site_zip_code=26351 site_time_zone_utc_offset=-5 +County "WV, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400230.epw site_zip_code=26847 site_time_zone_utc_offset=-5 +County "WV, Greenbrier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400250.epw site_zip_code=24901 site_time_zone_utc_offset=-5 +County "WV, Hampshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400270.epw site_zip_code=26757 site_time_zone_utc_offset=-5 +County "WV, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400290.epw site_zip_code=26062 site_time_zone_utc_offset=-5 +County "WV, Hardy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400310.epw site_zip_code=26836 site_time_zone_utc_offset=-5 +County "WV, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400330.epw site_zip_code=26301 site_time_zone_utc_offset=-5 +County "WV, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400350.epw site_zip_code=25271 site_time_zone_utc_offset=-5 +County "WV, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400370.epw site_zip_code=25414 site_time_zone_utc_offset=-5 +County "WV, Kanawha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400390.epw site_zip_code=25177 site_time_zone_utc_offset=-5 +County "WV, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400410.epw site_zip_code=26452 site_time_zone_utc_offset=-5 +County "WV, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400430.epw site_zip_code=25506 site_time_zone_utc_offset=-5 +County "WV, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400450.epw site_zip_code=25601 site_time_zone_utc_offset=-5 +County "WV, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400490.epw site_zip_code=26554 site_time_zone_utc_offset=-5 +County "WV, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400510.epw site_zip_code=26041 site_time_zone_utc_offset=-5 +County "WV, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400530.epw site_zip_code=25550 site_time_zone_utc_offset=-5 +County "WV, McDowell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400470.epw site_zip_code=24801 site_time_zone_utc_offset=-5 +County "WV, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400550.epw site_zip_code=24701 site_time_zone_utc_offset=-5 +County "WV, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400570.epw site_zip_code=26726 site_time_zone_utc_offset=-5 +County "WV, Mingo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400590.epw site_zip_code=25661 site_time_zone_utc_offset=-5 +County "WV, Monongalia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400610.epw site_zip_code=26505 site_time_zone_utc_offset=-5 +County "WV, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400630.epw site_zip_code=24963 site_time_zone_utc_offset=-5 +County "WV, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400650.epw site_zip_code=25411 site_time_zone_utc_offset=-5 +County "WV, Nicholas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400670.epw site_zip_code=26651 site_time_zone_utc_offset=-5 +County "WV, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400690.epw site_zip_code=26003 site_time_zone_utc_offset=-5 +County "WV, Pendleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400710.epw site_zip_code=26807 site_time_zone_utc_offset=-5 +County "WV, Pleasants County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400730.epw site_zip_code=26170 site_time_zone_utc_offset=-5 +County "WV, Pocahontas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400750.epw site_zip_code=24954 site_time_zone_utc_offset=-5 +County "WV, Preston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400770.epw site_zip_code=26537 site_time_zone_utc_offset=-5 +County "WV, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400790.epw site_zip_code=25526 site_time_zone_utc_offset=-5 +County "WV, Raleigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400810.epw site_zip_code=25801 site_time_zone_utc_offset=-5 +County "WV, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400830.epw site_zip_code=26241 site_time_zone_utc_offset=-5 +County "WV, Ritchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400850.epw site_zip_code=26362 site_time_zone_utc_offset=-5 +County "WV, Roane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400870.epw site_zip_code=25276 site_time_zone_utc_offset=-5 +County "WV, Summers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400890.epw site_zip_code=25951 site_time_zone_utc_offset=-5 +County "WV, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400910.epw site_zip_code=26354 site_time_zone_utc_offset=-5 +County "WV, Tucker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400930.epw site_zip_code=26287 site_time_zone_utc_offset=-5 +County "WV, Tyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400950.epw site_zip_code=26175 site_time_zone_utc_offset=-5 +County "WV, Upshur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400970.epw site_zip_code=26201 site_time_zone_utc_offset=-5 +County "WV, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400990.epw site_zip_code=25704 site_time_zone_utc_offset=-5 +County "WV, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401010.epw site_zip_code=26288 site_time_zone_utc_offset=-5 +County "WV, Wetzel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401030.epw site_zip_code=26155 site_time_zone_utc_offset=-5 +County "WV, Wirt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401050.epw site_zip_code=26143 site_time_zone_utc_offset=-5 +County "WV, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401070.epw site_zip_code=26101 site_time_zone_utc_offset=-5 +County "WV, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401090.epw site_zip_code=25882 site_time_zone_utc_offset=-5 +County "WY, Albany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600010.epw site_zip_code=82070 site_time_zone_utc_offset=-7 +County "WY, Big Horn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600030.epw site_zip_code=82431 site_time_zone_utc_offset=-7 +County "WY, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600050.epw site_zip_code=82718 site_time_zone_utc_offset=-7 +County "WY, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600070.epw site_zip_code=82301 site_time_zone_utc_offset=-7 +County "WY, Converse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600090.epw site_zip_code=82633 site_time_zone_utc_offset=-7 +County "WY, Crook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600110.epw site_zip_code=82729 site_time_zone_utc_offset=-7 +County "WY, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600130.epw site_zip_code=82501 site_time_zone_utc_offset=-7 +County "WY, Goshen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600150.epw site_zip_code=82240 site_time_zone_utc_offset=-7 +County "WY, Hot Springs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600170.epw site_zip_code=82443 site_time_zone_utc_offset=-7 +County "WY, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600190.epw site_zip_code=82834 site_time_zone_utc_offset=-7 +County "WY, Laramie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600210.epw site_zip_code=82001 site_time_zone_utc_offset=-7 +County "WY, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600230.epw site_zip_code=83127 site_time_zone_utc_offset=-7 +County "WY, Natrona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600250.epw site_zip_code=82601 site_time_zone_utc_offset=-7 +County "WY, Niobrara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600270.epw site_zip_code=82225 site_time_zone_utc_offset=-7 +County "WY, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600290.epw site_zip_code=82414 site_time_zone_utc_offset=-7 +County "WY, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600310.epw site_zip_code=82201 site_time_zone_utc_offset=-7 +County "WY, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600330.epw site_zip_code=82801 site_time_zone_utc_offset=-7 +County "WY, Sublette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600350.epw site_zip_code=82941 site_time_zone_utc_offset=-7 +County "WY, Sweetwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600370.epw site_zip_code=82901 site_time_zone_utc_offset=-7 +County "WY, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600390.epw site_zip_code=83001 site_time_zone_utc_offset=-7 +County "WY, Uinta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600410.epw site_zip_code=82930 site_time_zone_utc_offset=-7 +County "WY, Washakie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600430.epw site_zip_code=82401 site_time_zone_utc_offset=-7 +County "WY, Weston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600450.epw site_zip_code=82701 site_time_zone_utc_offset=-7 +County Metro Status Metropolitan +County Metro Status Non-Metropolitan +County and PUMA "G0100010, G01002100" +County and PUMA "G0100030, G01002600" +County and PUMA "G0100050, G01002400" +County and PUMA "G0100070, G01001700" +County and PUMA "G0100090, G01000800" +County and PUMA "G0100110, G01002400" +County and PUMA "G0100130, G01002300" +County and PUMA "G0100150, G01001100" +County and PUMA "G0100170, G01001800" +County and PUMA "G0100190, G01001000" +County and PUMA "G0100210, G01001800" +County and PUMA "G0100230, G01002200" +County and PUMA "G0100250, G01002200" +County and PUMA "G0100270, G01001000" +County and PUMA "G0100290, G01001000" +County and PUMA "G0100310, G01002300" +County and PUMA "G0100330, G01000100" +County and PUMA "G0100350, G01002200" +County and PUMA "G0100370, G01001800" +County and PUMA "G0100390, G01002300" +County and PUMA "G0100410, G01002300" +County and PUMA "G0100430, G01000700" +County and PUMA "G0100450, G01002500" +County and PUMA "G0100470, G01001700" +County and PUMA "G0100490, G01000400" +County and PUMA "G0100510, G01002100" +County and PUMA "G0100530, G01002200" +County and PUMA "G0100550, G01000900" +County and PUMA "G0100570, G01001400" +County and PUMA "G0100590, G01000100" +County and PUMA "G0100610, G01002500" +County and PUMA "G0100630, G01001700" +County and PUMA "G0100650, G01001700" +County and PUMA "G0100670, G01002500" +County and PUMA "G0100690, G01002500" +County and PUMA "G0100710, G01000400" +County and PUMA "G0100730, G01001301" +County and PUMA "G0100730, G01001302" +County and PUMA "G0100730, G01001303" +County and PUMA "G0100730, G01001304" +County and PUMA "G0100730, G01001305" +County and PUMA "G0100750, G01001400" +County and PUMA "G0100770, G01000100" +County and PUMA "G0100790, G01000600" +County and PUMA "G0100810, G01001900" +County and PUMA "G0100830, G01000200" +County and PUMA "G0100850, G01002100" +County and PUMA "G0100870, G01002400" +County and PUMA "G0100890, G01000200" +County and PUMA "G0100890, G01000301" +County and PUMA "G0100890, G01000302" +County and PUMA "G0100890, G01000500" +County and PUMA "G0100910, G01001700" +County and PUMA "G0100930, G01000100" +County and PUMA "G0100930, G01001400" +County and PUMA "G0100950, G01000500" +County and PUMA "G0100970, G01002701" +County and PUMA "G0100970, G01002702" +County and PUMA "G0100970, G01002703" +County and PUMA "G0100990, G01002200" +County and PUMA "G0101010, G01002000" +County and PUMA "G0101010, G01002100" +County and PUMA "G0101030, G01000600" +County and PUMA "G0101050, G01001700" +County and PUMA "G0101070, G01001500" +County and PUMA "G0101090, G01002400" +County and PUMA "G0101110, G01001000" +County and PUMA "G0101130, G01002400" +County and PUMA "G0101150, G01000800" +County and PUMA "G0101170, G01001200" +County and PUMA "G0101190, G01001700" +County and PUMA "G0101210, G01001000" +County and PUMA "G0101230, G01001800" +County and PUMA "G0101250, G01001500" +County and PUMA "G0101250, G01001600" +County and PUMA "G0101270, G01001400" +County and PUMA "G0101290, G01002200" +County and PUMA "G0101310, G01002200" +County and PUMA "G0101330, G01000700" +County and PUMA "G0200130, G02000400" +County and PUMA "G0200160, G02000400" +County and PUMA "G0200200, G02000101" +County and PUMA "G0200200, G02000102" +County and PUMA "G0200500, G02000400" +County and PUMA "G0200600, G02000400" +County and PUMA "G0200680, G02000300" +County and PUMA "G0200700, G02000400" +County and PUMA "G0200900, G02000300" +County and PUMA "G0201000, G02000300" +County and PUMA "G0201050, G02000400" +County and PUMA "G0201100, G02000300" +County and PUMA "G0201220, G02000200" +County and PUMA "G0201300, G02000300" +County and PUMA "G0201500, G02000400" +County and PUMA "G0201580, G02000400" +County and PUMA "G0201640, G02000400" +County and PUMA "G0201700, G02000200" +County and PUMA "G0201800, G02000400" +County and PUMA "G0201850, G02000400" +County and PUMA "G0201880, G02000400" +County and PUMA "G0201950, G02000400" +County and PUMA "G0201980, G02000400" +County and PUMA "G0202200, G02000400" +County and PUMA "G0202300, G02000300" +County and PUMA "G0202400, G02000300" +County and PUMA "G0202610, G02000300" +County and PUMA "G0202750, G02000400" +County and PUMA "G0202820, G02000400" +County and PUMA "G0202900, G02000400" +County and PUMA "G0400010, G04000300" +County and PUMA "G0400030, G04000900" +County and PUMA "G0400050, G04000400" +County and PUMA "G0400070, G04000800" +County and PUMA "G0400090, G04000800" +County and PUMA "G0400110, G04000800" +County and PUMA "G0400120, G04000600" +County and PUMA "G0400130, G04000100" +County and PUMA "G0400130, G04000101" +County and PUMA "G0400130, G04000102" +County and PUMA "G0400130, G04000103" +County and PUMA "G0400130, G04000104" +County and PUMA "G0400130, G04000105" +County and PUMA "G0400130, G04000106" +County and PUMA "G0400130, G04000107" +County and PUMA "G0400130, G04000108" +County and PUMA "G0400130, G04000109" +County and PUMA "G0400130, G04000110" +County and PUMA "G0400130, G04000111" +County and PUMA "G0400130, G04000112" +County and PUMA "G0400130, G04000113" +County and PUMA "G0400130, G04000114" +County and PUMA "G0400130, G04000115" +County and PUMA "G0400130, G04000116" +County and PUMA "G0400130, G04000117" +County and PUMA "G0400130, G04000118" +County and PUMA "G0400130, G04000119" +County and PUMA "G0400130, G04000120" +County and PUMA "G0400130, G04000121" +County and PUMA "G0400130, G04000122" +County and PUMA "G0400130, G04000123" +County and PUMA "G0400130, G04000124" +County and PUMA "G0400130, G04000125" +County and PUMA "G0400130, G04000126" +County and PUMA "G0400130, G04000127" +County and PUMA "G0400130, G04000128" +County and PUMA "G0400130, G04000129" +County and PUMA "G0400130, G04000130" +County and PUMA "G0400130, G04000131" +County and PUMA "G0400130, G04000132" +County and PUMA "G0400130, G04000133" +County and PUMA "G0400130, G04000134" +County and PUMA "G0400150, G04000600" +County and PUMA "G0400170, G04000300" +County and PUMA "G0400190, G04000201" +County and PUMA "G0400190, G04000202" +County and PUMA "G0400190, G04000203" +County and PUMA "G0400190, G04000204" +County and PUMA "G0400190, G04000205" +County and PUMA "G0400190, G04000206" +County and PUMA "G0400190, G04000207" +County and PUMA "G0400190, G04000208" +County and PUMA "G0400190, G04000209" +County and PUMA "G0400210, G04000800" +County and PUMA "G0400210, G04000803" +County and PUMA "G0400210, G04000805" +County and PUMA "G0400210, G04000807" +County and PUMA "G0400230, G04000900" +County and PUMA "G0400250, G04000500" +County and PUMA "G0400270, G04000700" +County and PUMA "G0500010, G05001700" +County and PUMA "G0500010, G05001800" +County and PUMA "G0500030, G05001800" +County and PUMA "G0500050, G05000300" +County and PUMA "G0500070, G05000100" +County and PUMA "G0500090, G05000300" +County and PUMA "G0500110, G05001800" +County and PUMA "G0500130, G05001900" +County and PUMA "G0500150, G05000300" +County and PUMA "G0500170, G05001800" +County and PUMA "G0500190, G05001600" +County and PUMA "G0500210, G05000500" +County and PUMA "G0500230, G05000400" +County and PUMA "G0500250, G05001800" +County and PUMA "G0500270, G05001900" +County and PUMA "G0500290, G05001300" +County and PUMA "G0500310, G05000500" +County and PUMA "G0500310, G05000600" +County and PUMA "G0500330, G05001400" +County and PUMA "G0500350, G05000600" +County and PUMA "G0500370, G05000700" +County and PUMA "G0500390, G05001900" +County and PUMA "G0500410, G05001800" +County and PUMA "G0500430, G05001800" +County and PUMA "G0500450, G05001100" +County and PUMA "G0500470, G05001500" +County and PUMA "G0500490, G05000400" +County and PUMA "G0500510, G05001600" +County and PUMA "G0500530, G05001700" +County and PUMA "G0500550, G05000500" +County and PUMA "G0500570, G05002000" +County and PUMA "G0500590, G05001600" +County and PUMA "G0500610, G05001500" +County and PUMA "G0500630, G05000400" +County and PUMA "G0500650, G05000400" +County and PUMA "G0500670, G05000800" +County and PUMA "G0500690, G05001700" +County and PUMA "G0500710, G05001300" +County and PUMA "G0500730, G05002000" +County and PUMA "G0500750, G05000500" +County and PUMA "G0500770, G05000700" +County and PUMA "G0500790, G05001800" +County and PUMA "G0500810, G05002000" +County and PUMA "G0500830, G05001500" +County and PUMA "G0500850, G05001100" +County and PUMA "G0500870, G05000300" +County and PUMA "G0500890, G05000300" +County and PUMA "G0500910, G05002000" +County and PUMA "G0500930, G05000600" +County and PUMA "G0500950, G05000700" +County and PUMA "G0500970, G05001600" +County and PUMA "G0500990, G05002000" +County and PUMA "G0501010, G05000300" +County and PUMA "G0501030, G05001900" +County and PUMA "G0501050, G05001300" +County and PUMA "G0501070, G05000700" +County and PUMA "G0501090, G05002000" +County and PUMA "G0501110, G05000700" +County and PUMA "G0501130, G05001500" +County and PUMA "G0501150, G05001300" +County and PUMA "G0501170, G05000800" +County and PUMA "G0501190, G05000900" +County and PUMA "G0501190, G05001000" +County and PUMA "G0501210, G05000500" +County and PUMA "G0501230, G05000700" +County and PUMA "G0501250, G05001200" +County and PUMA "G0501270, G05001500" +County and PUMA "G0501290, G05000300" +County and PUMA "G0501310, G05001400" +County and PUMA "G0501330, G05001500" +County and PUMA "G0501350, G05000400" +County and PUMA "G0501370, G05000400" +County and PUMA "G0501390, G05001900" +County and PUMA "G0501410, G05000400" +County and PUMA "G0501430, G05000200" +County and PUMA "G0501450, G05000800" +County and PUMA "G0501470, G05000800" +County and PUMA "G0501490, G05001300" +County and PUMA "G0600010, G06000101" +County and PUMA "G0600010, G06000102" +County and PUMA "G0600010, G06000103" +County and PUMA "G0600010, G06000104" +County and PUMA "G0600010, G06000105" +County and PUMA "G0600010, G06000106" +County and PUMA "G0600010, G06000107" +County and PUMA "G0600010, G06000108" +County and PUMA "G0600010, G06000109" +County and PUMA "G0600010, G06000110" +County and PUMA "G0600030, G06000300" +County and PUMA "G0600050, G06000300" +County and PUMA "G0600070, G06000701" +County and PUMA "G0600070, G06000702" +County and PUMA "G0600090, G06000300" +County and PUMA "G0600110, G06001100" +County and PUMA "G0600130, G06001301" +County and PUMA "G0600130, G06001302" +County and PUMA "G0600130, G06001303" +County and PUMA "G0600130, G06001304" +County and PUMA "G0600130, G06001305" +County and PUMA "G0600130, G06001306" +County and PUMA "G0600130, G06001307" +County and PUMA "G0600130, G06001308" +County and PUMA "G0600130, G06001309" +County and PUMA "G0600150, G06001500" +County and PUMA "G0600170, G06001700" +County and PUMA "G0600190, G06001901" +County and PUMA "G0600190, G06001902" +County and PUMA "G0600190, G06001903" +County and PUMA "G0600190, G06001904" +County and PUMA "G0600190, G06001905" +County and PUMA "G0600190, G06001906" +County and PUMA "G0600190, G06001907" +County and PUMA "G0600210, G06001100" +County and PUMA "G0600230, G06002300" +County and PUMA "G0600250, G06002500" +County and PUMA "G0600270, G06000300" +County and PUMA "G0600290, G06002901" +County and PUMA "G0600290, G06002902" +County and PUMA "G0600290, G06002903" +County and PUMA "G0600290, G06002904" +County and PUMA "G0600290, G06002905" +County and PUMA "G0600310, G06003100" +County and PUMA "G0600330, G06003300" +County and PUMA "G0600350, G06001500" +County and PUMA "G0600370, G06003701" +County and PUMA "G0600370, G06003702" +County and PUMA "G0600370, G06003703" +County and PUMA "G0600370, G06003704" +County and PUMA "G0600370, G06003705" +County and PUMA "G0600370, G06003706" +County and PUMA "G0600370, G06003707" +County and PUMA "G0600370, G06003708" +County and PUMA "G0600370, G06003709" +County and PUMA "G0600370, G06003710" +County and PUMA "G0600370, G06003711" +County and PUMA "G0600370, G06003712" +County and PUMA "G0600370, G06003713" +County and PUMA "G0600370, G06003714" +County and PUMA "G0600370, G06003715" +County and PUMA "G0600370, G06003716" +County and PUMA "G0600370, G06003717" +County and PUMA "G0600370, G06003718" +County and PUMA "G0600370, G06003719" +County and PUMA "G0600370, G06003720" +County and PUMA "G0600370, G06003721" +County and PUMA "G0600370, G06003722" +County and PUMA "G0600370, G06003723" +County and PUMA "G0600370, G06003724" +County and PUMA "G0600370, G06003725" +County and PUMA "G0600370, G06003726" +County and PUMA "G0600370, G06003727" +County and PUMA "G0600370, G06003728" +County and PUMA "G0600370, G06003729" +County and PUMA "G0600370, G06003730" +County and PUMA "G0600370, G06003731" +County and PUMA "G0600370, G06003732" +County and PUMA "G0600370, G06003733" +County and PUMA "G0600370, G06003734" +County and PUMA "G0600370, G06003735" +County and PUMA "G0600370, G06003736" +County and PUMA "G0600370, G06003737" +County and PUMA "G0600370, G06003738" +County and PUMA "G0600370, G06003739" +County and PUMA "G0600370, G06003740" +County and PUMA "G0600370, G06003741" +County and PUMA "G0600370, G06003742" +County and PUMA "G0600370, G06003743" +County and PUMA "G0600370, G06003744" +County and PUMA "G0600370, G06003745" +County and PUMA "G0600370, G06003746" +County and PUMA "G0600370, G06003747" +County and PUMA "G0600370, G06003748" +County and PUMA "G0600370, G06003749" +County and PUMA "G0600370, G06003750" +County and PUMA "G0600370, G06003751" +County and PUMA "G0600370, G06003752" +County and PUMA "G0600370, G06003753" +County and PUMA "G0600370, G06003754" +County and PUMA "G0600370, G06003755" +County and PUMA "G0600370, G06003756" +County and PUMA "G0600370, G06003757" +County and PUMA "G0600370, G06003758" +County and PUMA "G0600370, G06003759" +County and PUMA "G0600370, G06003760" +County and PUMA "G0600370, G06003761" +County and PUMA "G0600370, G06003762" +County and PUMA "G0600370, G06003763" +County and PUMA "G0600370, G06003764" +County and PUMA "G0600370, G06003765" +County and PUMA "G0600370, G06003766" +County and PUMA "G0600370, G06003767" +County and PUMA "G0600370, G06003768" +County and PUMA "G0600370, G06003769" +County and PUMA "G0600390, G06003900" +County and PUMA "G0600410, G06004101" +County and PUMA "G0600410, G06004102" +County and PUMA "G0600430, G06000300" +County and PUMA "G0600450, G06003300" +County and PUMA "G0600470, G06004701" +County and PUMA "G0600470, G06004702" +County and PUMA "G0600490, G06001500" +County and PUMA "G0600510, G06000300" +County and PUMA "G0600530, G06005301" +County and PUMA "G0600530, G06005302" +County and PUMA "G0600530, G06005303" +County and PUMA "G0600550, G06005500" +County and PUMA "G0600570, G06005700" +County and PUMA "G0600590, G06005901" +County and PUMA "G0600590, G06005902" +County and PUMA "G0600590, G06005903" +County and PUMA "G0600590, G06005904" +County and PUMA "G0600590, G06005905" +County and PUMA "G0600590, G06005906" +County and PUMA "G0600590, G06005907" +County and PUMA "G0600590, G06005908" +County and PUMA "G0600590, G06005909" +County and PUMA "G0600590, G06005910" +County and PUMA "G0600590, G06005911" +County and PUMA "G0600590, G06005912" +County and PUMA "G0600590, G06005913" +County and PUMA "G0600590, G06005914" +County and PUMA "G0600590, G06005915" +County and PUMA "G0600590, G06005916" +County and PUMA "G0600590, G06005917" +County and PUMA "G0600590, G06005918" +County and PUMA "G0600610, G06006101" +County and PUMA "G0600610, G06006102" +County and PUMA "G0600610, G06006103" +County and PUMA "G0600630, G06001500" +County and PUMA "G0600650, G06006501" +County and PUMA "G0600650, G06006502" +County and PUMA "G0600650, G06006503" +County and PUMA "G0600650, G06006504" +County and PUMA "G0600650, G06006505" +County and PUMA "G0600650, G06006506" +County and PUMA "G0600650, G06006507" +County and PUMA "G0600650, G06006508" +County and PUMA "G0600650, G06006509" +County and PUMA "G0600650, G06006510" +County and PUMA "G0600650, G06006511" +County and PUMA "G0600650, G06006512" +County and PUMA "G0600650, G06006513" +County and PUMA "G0600650, G06006514" +County and PUMA "G0600650, G06006515" +County and PUMA "G0600670, G06006701" +County and PUMA "G0600670, G06006702" +County and PUMA "G0600670, G06006703" +County and PUMA "G0600670, G06006704" +County and PUMA "G0600670, G06006705" +County and PUMA "G0600670, G06006706" +County and PUMA "G0600670, G06006707" +County and PUMA "G0600670, G06006708" +County and PUMA "G0600670, G06006709" +County and PUMA "G0600670, G06006710" +County and PUMA "G0600670, G06006711" +County and PUMA "G0600670, G06006712" +County and PUMA "G0600690, G06005303" +County and PUMA "G0600710, G06007101" +County and PUMA "G0600710, G06007102" +County and PUMA "G0600710, G06007103" +County and PUMA "G0600710, G06007104" +County and PUMA "G0600710, G06007105" +County and PUMA "G0600710, G06007106" +County and PUMA "G0600710, G06007107" +County and PUMA "G0600710, G06007108" +County and PUMA "G0600710, G06007109" +County and PUMA "G0600710, G06007110" +County and PUMA "G0600710, G06007111" +County and PUMA "G0600710, G06007112" +County and PUMA "G0600710, G06007113" +County and PUMA "G0600710, G06007114" +County and PUMA "G0600710, G06007115" +County and PUMA "G0600730, G06007301" +County and PUMA "G0600730, G06007302" +County and PUMA "G0600730, G06007303" +County and PUMA "G0600730, G06007304" +County and PUMA "G0600730, G06007305" +County and PUMA "G0600730, G06007306" +County and PUMA "G0600730, G06007307" +County and PUMA "G0600730, G06007308" +County and PUMA "G0600730, G06007309" +County and PUMA "G0600730, G06007310" +County and PUMA "G0600730, G06007311" +County and PUMA "G0600730, G06007312" +County and PUMA "G0600730, G06007313" +County and PUMA "G0600730, G06007314" +County and PUMA "G0600730, G06007315" +County and PUMA "G0600730, G06007316" +County and PUMA "G0600730, G06007317" +County and PUMA "G0600730, G06007318" +County and PUMA "G0600730, G06007319" +County and PUMA "G0600730, G06007320" +County and PUMA "G0600730, G06007321" +County and PUMA "G0600730, G06007322" +County and PUMA "G0600750, G06007501" +County and PUMA "G0600750, G06007502" +County and PUMA "G0600750, G06007503" +County and PUMA "G0600750, G06007504" +County and PUMA "G0600750, G06007505" +County and PUMA "G0600750, G06007506" +County and PUMA "G0600750, G06007507" +County and PUMA "G0600770, G06007701" +County and PUMA "G0600770, G06007702" +County and PUMA "G0600770, G06007703" +County and PUMA "G0600770, G06007704" +County and PUMA "G0600790, G06007901" +County and PUMA "G0600790, G06007902" +County and PUMA "G0600810, G06008101" +County and PUMA "G0600810, G06008102" +County and PUMA "G0600810, G06008103" +County and PUMA "G0600810, G06008104" +County and PUMA "G0600810, G06008105" +County and PUMA "G0600810, G06008106" +County and PUMA "G0600830, G06008301" +County and PUMA "G0600830, G06008302" +County and PUMA "G0600830, G06008303" +County and PUMA "G0600850, G06008501" +County and PUMA "G0600850, G06008502" +County and PUMA "G0600850, G06008503" +County and PUMA "G0600850, G06008504" +County and PUMA "G0600850, G06008505" +County and PUMA "G0600850, G06008506" +County and PUMA "G0600850, G06008507" +County and PUMA "G0600850, G06008508" +County and PUMA "G0600850, G06008509" +County and PUMA "G0600850, G06008510" +County and PUMA "G0600850, G06008511" +County and PUMA "G0600850, G06008512" +County and PUMA "G0600850, G06008513" +County and PUMA "G0600850, G06008514" +County and PUMA "G0600870, G06008701" +County and PUMA "G0600870, G06008702" +County and PUMA "G0600890, G06008900" +County and PUMA "G0600910, G06005700" +County and PUMA "G0600930, G06001500" +County and PUMA "G0600950, G06009501" +County and PUMA "G0600950, G06009502" +County and PUMA "G0600950, G06009503" +County and PUMA "G0600970, G06009701" +County and PUMA "G0600970, G06009702" +County and PUMA "G0600970, G06009703" +County and PUMA "G0600990, G06009901" +County and PUMA "G0600990, G06009902" +County and PUMA "G0600990, G06009903" +County and PUMA "G0600990, G06009904" +County and PUMA "G0601010, G06010100" +County and PUMA "G0601030, G06001100" +County and PUMA "G0601050, G06001100" +County and PUMA "G0601070, G06010701" +County and PUMA "G0601070, G06010702" +County and PUMA "G0601070, G06010703" +County and PUMA "G0601090, G06000300" +County and PUMA "G0601110, G06011101" +County and PUMA "G0601110, G06011102" +County and PUMA "G0601110, G06011103" +County and PUMA "G0601110, G06011104" +County and PUMA "G0601110, G06011105" +County and PUMA "G0601110, G06011106" +County and PUMA "G0601130, G06011300" +County and PUMA "G0601150, G06010100" +County and PUMA "G0800010, G08000804" +County and PUMA "G0800010, G08000805" +County and PUMA "G0800010, G08000806" +County and PUMA "G0800010, G08000807" +County and PUMA "G0800010, G08000809" +County and PUMA "G0800010, G08000810" +County and PUMA "G0800010, G08000817" +County and PUMA "G0800010, G08000824" +County and PUMA "G0800030, G08000800" +County and PUMA "G0800050, G08000808" +County and PUMA "G0800050, G08000809" +County and PUMA "G0800050, G08000810" +County and PUMA "G0800050, G08000811" +County and PUMA "G0800050, G08000815" +County and PUMA "G0800050, G08000820" +County and PUMA "G0800050, G08000824" +County and PUMA "G0800070, G08000900" +County and PUMA "G0800090, G08000800" +County and PUMA "G0800110, G08000100" +County and PUMA "G0800130, G08000801" +County and PUMA "G0800130, G08000802" +County and PUMA "G0800130, G08000803" +County and PUMA "G0800130, G08000804" +County and PUMA "G0800140, G08000804" +County and PUMA "G0800140, G08000805" +County and PUMA "G0800150, G08000600" +County and PUMA "G0800170, G08000100" +County and PUMA "G0800190, G08000801" +County and PUMA "G0800210, G08000800" +County and PUMA "G0800230, G08000800" +County and PUMA "G0800250, G08000100" +County and PUMA "G0800270, G08000600" +County and PUMA "G0800290, G08001002" +County and PUMA "G0800310, G08000812" +County and PUMA "G0800310, G08000813" +County and PUMA "G0800310, G08000814" +County and PUMA "G0800310, G08000815" +County and PUMA "G0800310, G08000816" +County and PUMA "G0800330, G08000900" +County and PUMA "G0800350, G08000821" +County and PUMA "G0800350, G08000822" +County and PUMA "G0800350, G08000823" +County and PUMA "G0800370, G08000400" +County and PUMA "G0800390, G08000100" +County and PUMA "G0800390, G08000823" +County and PUMA "G0800410, G08004101" +County and PUMA "G0800410, G08004102" +County and PUMA "G0800410, G08004103" +County and PUMA "G0800410, G08004104" +County and PUMA "G0800410, G08004105" +County and PUMA "G0800410, G08004106" +County and PUMA "G0800430, G08000600" +County and PUMA "G0800450, G08000200" +County and PUMA "G0800470, G08000801" +County and PUMA "G0800490, G08000400" +County and PUMA "G0800510, G08000900" +County and PUMA "G0800530, G08000900" +County and PUMA "G0800550, G08000600" +County and PUMA "G0800570, G08000400" +County and PUMA "G0800590, G08000801" +County and PUMA "G0800590, G08000804" +County and PUMA "G0800590, G08000805" +County and PUMA "G0800590, G08000817" +County and PUMA "G0800590, G08000818" +County and PUMA "G0800590, G08000819" +County and PUMA "G0800590, G08000820" +County and PUMA "G0800590, G08000821" +County and PUMA "G0800610, G08000100" +County and PUMA "G0800630, G08000100" +County and PUMA "G0800650, G08000600" +County and PUMA "G0800670, G08000900" +County and PUMA "G0800690, G08000102" +County and PUMA "G0800690, G08000103" +County and PUMA "G0800710, G08000800" +County and PUMA "G0800730, G08000100" +County and PUMA "G0800750, G08000100" +County and PUMA "G0800770, G08001001" +County and PUMA "G0800770, G08001002" +County and PUMA "G0800790, G08000800" +County and PUMA "G0800810, G08000200" +County and PUMA "G0800830, G08000900" +County and PUMA "G0800850, G08001002" +County and PUMA "G0800870, G08000100" +County and PUMA "G0800890, G08000800" +County and PUMA "G0800910, G08001002" +County and PUMA "G0800930, G08000600" +County and PUMA "G0800950, G08000100" +County and PUMA "G0800970, G08000400" +County and PUMA "G0800990, G08000800" +County and PUMA "G0801010, G08000600" +County and PUMA "G0801010, G08000700" +County and PUMA "G0801010, G08000800" +County and PUMA "G0801030, G08000200" +County and PUMA "G0801050, G08000800" +County and PUMA "G0801070, G08000200" +County and PUMA "G0801090, G08000800" +County and PUMA "G0801110, G08000900" +County and PUMA "G0801130, G08001002" +County and PUMA "G0801150, G08000100" +County and PUMA "G0801170, G08000400" +County and PUMA "G0801190, G08004101" +County and PUMA "G0801210, G08000100" +County and PUMA "G0801230, G08000100" +County and PUMA "G0801230, G08000300" +County and PUMA "G0801230, G08000802" +County and PUMA "G0801230, G08000824" +County and PUMA "G0801250, G08000100" +County and PUMA "G0900010, G09000100" +County and PUMA "G0900010, G09000101" +County and PUMA "G0900010, G09000102" +County and PUMA "G0900010, G09000103" +County and PUMA "G0900010, G09000104" +County and PUMA "G0900010, G09000105" +County and PUMA "G0900030, G09000300" +County and PUMA "G0900030, G09000301" +County and PUMA "G0900030, G09000302" +County and PUMA "G0900030, G09000303" +County and PUMA "G0900030, G09000304" +County and PUMA "G0900030, G09000305" +County and PUMA "G0900030, G09000306" +County and PUMA "G0900050, G09000500" +County and PUMA "G0900070, G09000700" +County and PUMA "G0900090, G09000900" +County and PUMA "G0900090, G09000901" +County and PUMA "G0900090, G09000902" +County and PUMA "G0900090, G09000903" +County and PUMA "G0900090, G09000904" +County and PUMA "G0900090, G09000905" +County and PUMA "G0900090, G09000906" +County and PUMA "G0900110, G09001100" +County and PUMA "G0900110, G09001101" +County and PUMA "G0900130, G09001300" +County and PUMA "G0900150, G09001500" +County and PUMA "G1000010, G10000200" +County and PUMA "G1000030, G10000101" +County and PUMA "G1000030, G10000102" +County and PUMA "G1000030, G10000103" +County and PUMA "G1000030, G10000104" +County and PUMA "G1000050, G10000300" +County and PUMA "G1100010, G11000101" +County and PUMA "G1100010, G11000102" +County and PUMA "G1100010, G11000103" +County and PUMA "G1100010, G11000104" +County and PUMA "G1100010, G11000105" +County and PUMA "G1200010, G12000101" +County and PUMA "G1200010, G12000102" +County and PUMA "G1200030, G12008900" +County and PUMA "G1200050, G12000500" +County and PUMA "G1200070, G12002300" +County and PUMA "G1200090, G12000901" +County and PUMA "G1200090, G12000902" +County and PUMA "G1200090, G12000903" +County and PUMA "G1200090, G12000904" +County and PUMA "G1200110, G12001101" +County and PUMA "G1200110, G12001102" +County and PUMA "G1200110, G12001103" +County and PUMA "G1200110, G12001104" +County and PUMA "G1200110, G12001105" +County and PUMA "G1200110, G12001106" +County and PUMA "G1200110, G12001107" +County and PUMA "G1200110, G12001108" +County and PUMA "G1200110, G12001109" +County and PUMA "G1200110, G12001110" +County and PUMA "G1200110, G12001111" +County and PUMA "G1200110, G12001112" +County and PUMA "G1200110, G12001113" +County and PUMA "G1200110, G12001114" +County and PUMA "G1200130, G12006300" +County and PUMA "G1200150, G12001500" +County and PUMA "G1200170, G12001701" +County and PUMA "G1200190, G12001900" +County and PUMA "G1200210, G12002101" +County and PUMA "G1200210, G12002102" +County and PUMA "G1200210, G12002103" +County and PUMA "G1200230, G12002300" +County and PUMA "G1200270, G12002700" +County and PUMA "G1200290, G12002300" +County and PUMA "G1200310, G12003101" +County and PUMA "G1200310, G12003102" +County and PUMA "G1200310, G12003103" +County and PUMA "G1200310, G12003104" +County and PUMA "G1200310, G12003105" +County and PUMA "G1200310, G12003106" +County and PUMA "G1200310, G12003107" +County and PUMA "G1200330, G12003301" +County and PUMA "G1200330, G12003302" +County and PUMA "G1200350, G12003500" +County and PUMA "G1200370, G12006300" +County and PUMA "G1200390, G12006300" +County and PUMA "G1200410, G12002300" +County and PUMA "G1200430, G12009300" +County and PUMA "G1200450, G12006300" +County and PUMA "G1200470, G12012100" +County and PUMA "G1200490, G12002700" +County and PUMA "G1200510, G12009300" +County and PUMA "G1200530, G12005301" +County and PUMA "G1200550, G12002700" +County and PUMA "G1200550, G12009300" +County and PUMA "G1200570, G12005701" +County and PUMA "G1200570, G12005702" +County and PUMA "G1200570, G12005703" +County and PUMA "G1200570, G12005704" +County and PUMA "G1200570, G12005705" +County and PUMA "G1200570, G12005706" +County and PUMA "G1200570, G12005707" +County and PUMA "G1200570, G12005708" +County and PUMA "G1200590, G12000500" +County and PUMA "G1200610, G12006100" +County and PUMA "G1200630, G12006300" +County and PUMA "G1200650, G12006300" +County and PUMA "G1200670, G12012100" +County and PUMA "G1200690, G12006901" +County and PUMA "G1200690, G12006902" +County and PUMA "G1200690, G12006903" +County and PUMA "G1200710, G12007101" +County and PUMA "G1200710, G12007102" +County and PUMA "G1200710, G12007103" +County and PUMA "G1200710, G12007104" +County and PUMA "G1200710, G12007105" +County and PUMA "G1200730, G12007300" +County and PUMA "G1200730, G12007301" +County and PUMA "G1200750, G12002300" +County and PUMA "G1200770, G12006300" +County and PUMA "G1200790, G12012100" +County and PUMA "G1200810, G12008101" +County and PUMA "G1200810, G12008102" +County and PUMA "G1200810, G12008103" +County and PUMA "G1200830, G12008301" +County and PUMA "G1200830, G12008302" +County and PUMA "G1200830, G12008303" +County and PUMA "G1200850, G12008500" +County and PUMA "G1200860, G12008601" +County and PUMA "G1200860, G12008602" +County and PUMA "G1200860, G12008603" +County and PUMA "G1200860, G12008604" +County and PUMA "G1200860, G12008605" +County and PUMA "G1200860, G12008606" +County and PUMA "G1200860, G12008607" +County and PUMA "G1200860, G12008608" +County and PUMA "G1200860, G12008609" +County and PUMA "G1200860, G12008610" +County and PUMA "G1200860, G12008611" +County and PUMA "G1200860, G12008612" +County and PUMA "G1200860, G12008613" +County and PUMA "G1200860, G12008614" +County and PUMA "G1200860, G12008615" +County and PUMA "G1200860, G12008616" +County and PUMA "G1200860, G12008617" +County and PUMA "G1200860, G12008618" +County and PUMA "G1200860, G12008619" +County and PUMA "G1200860, G12008620" +County and PUMA "G1200860, G12008621" +County and PUMA "G1200860, G12008622" +County and PUMA "G1200860, G12008623" +County and PUMA "G1200860, G12008624" +County and PUMA "G1200860, G12008700" +County and PUMA "G1200870, G12008700" +County and PUMA "G1200890, G12008900" +County and PUMA "G1200910, G12009100" +County and PUMA "G1200930, G12009300" +County and PUMA "G1200950, G12009501" +County and PUMA "G1200950, G12009502" +County and PUMA "G1200950, G12009503" +County and PUMA "G1200950, G12009504" +County and PUMA "G1200950, G12009505" +County and PUMA "G1200950, G12009506" +County and PUMA "G1200950, G12009507" +County and PUMA "G1200950, G12009508" +County and PUMA "G1200950, G12009509" +County and PUMA "G1200950, G12009510" +County and PUMA "G1200970, G12009701" +County and PUMA "G1200970, G12009702" +County and PUMA "G1200990, G12009901" +County and PUMA "G1200990, G12009902" +County and PUMA "G1200990, G12009903" +County and PUMA "G1200990, G12009904" +County and PUMA "G1200990, G12009905" +County and PUMA "G1200990, G12009906" +County and PUMA "G1200990, G12009907" +County and PUMA "G1200990, G12009908" +County and PUMA "G1200990, G12009909" +County and PUMA "G1200990, G12009910" +County and PUMA "G1200990, G12009911" +County and PUMA "G1201010, G12010101" +County and PUMA "G1201010, G12010102" +County and PUMA "G1201010, G12010103" +County and PUMA "G1201010, G12010104" +County and PUMA "G1201030, G12010301" +County and PUMA "G1201030, G12010302" +County and PUMA "G1201030, G12010303" +County and PUMA "G1201030, G12010304" +County and PUMA "G1201030, G12010305" +County and PUMA "G1201030, G12010306" +County and PUMA "G1201030, G12010307" +County and PUMA "G1201030, G12010308" +County and PUMA "G1201050, G12010501" +County and PUMA "G1201050, G12010502" +County and PUMA "G1201050, G12010503" +County and PUMA "G1201050, G12010504" +County and PUMA "G1201070, G12010700" +County and PUMA "G1201090, G12010700" +County and PUMA "G1201090, G12010900" +County and PUMA "G1201110, G12011101" +County and PUMA "G1201110, G12011102" +County and PUMA "G1201130, G12011300" +County and PUMA "G1201150, G12011501" +County and PUMA "G1201150, G12011502" +County and PUMA "G1201150, G12011503" +County and PUMA "G1201170, G12011701" +County and PUMA "G1201170, G12011702" +County and PUMA "G1201170, G12011703" +County and PUMA "G1201170, G12011704" +County and PUMA "G1201190, G12006902" +County and PUMA "G1201190, G12006903" +County and PUMA "G1201210, G12012100" +County and PUMA "G1201230, G12012100" +County and PUMA "G1201250, G12002300" +County and PUMA "G1201270, G12003500" +County and PUMA "G1201270, G12012701" +County and PUMA "G1201270, G12012702" +County and PUMA "G1201270, G12012703" +County and PUMA "G1201270, G12012704" +County and PUMA "G1201290, G12006300" +County and PUMA "G1201310, G12000500" +County and PUMA "G1201330, G12000500" +County and PUMA "G1300010, G13001200" +County and PUMA "G1300030, G13000500" +County and PUMA "G1300050, G13000500" +County and PUMA "G1300070, G13001100" +County and PUMA "G1300090, G13001600" +County and PUMA "G1300110, G13003500" +County and PUMA "G1300130, G13003800" +County and PUMA "G1300150, G13002900" +County and PUMA "G1300170, G13000700" +County and PUMA "G1300190, G13000700" +County and PUMA "G1300210, G13001400" +County and PUMA "G1300230, G13001300" +County and PUMA "G1300250, G13000500" +County and PUMA "G1300270, G13000700" +County and PUMA "G1300290, G13000200" +County and PUMA "G1300310, G13000300" +County and PUMA "G1300330, G13004200" +County and PUMA "G1300350, G13001900" +County and PUMA "G1300370, G13001100" +County and PUMA "G1300390, G13000100" +County and PUMA "G1300430, G13001300" +County and PUMA "G1300450, G13002300" +County and PUMA "G1300470, G13002600" +County and PUMA "G1300490, G13000500" +County and PUMA "G1300510, G13000401" +County and PUMA "G1300510, G13000402" +County and PUMA "G1300530, G13001700" +County and PUMA "G1300550, G13002600" +County and PUMA "G1300570, G13003101" +County and PUMA "G1300570, G13003102" +County and PUMA "G1300590, G13003600" +County and PUMA "G1300610, G13001800" +County and PUMA "G1300630, G13005001" +County and PUMA "G1300630, G13005002" +County and PUMA "G1300650, G13000500" +County and PUMA "G1300670, G13003001" +County and PUMA "G1300670, G13003002" +County and PUMA "G1300670, G13003003" +County and PUMA "G1300670, G13003004" +County and PUMA "G1300670, G13003005" +County and PUMA "G1300690, G13000500" +County and PUMA "G1300710, G13000800" +County and PUMA "G1300730, G13004100" +County and PUMA "G1300750, G13000700" +County and PUMA "G1300770, G13002100" +County and PUMA "G1300790, G13001600" +County and PUMA "G1300810, G13001800" +County and PUMA "G1300830, G13002600" +County and PUMA "G1300850, G13003200" +County and PUMA "G1300870, G13001100" +County and PUMA "G1300890, G13001007" +County and PUMA "G1300890, G13001008" +County and PUMA "G1300890, G13002001" +County and PUMA "G1300890, G13002002" +County and PUMA "G1300890, G13002003" +County and PUMA "G1300890, G13002004" +County and PUMA "G1300910, G13001300" +County and PUMA "G1300930, G13001800" +County and PUMA "G1300950, G13000900" +County and PUMA "G1300970, G13004400" +County and PUMA "G1300990, G13001100" +County and PUMA "G1301010, G13000500" +County and PUMA "G1301030, G13000300" +County and PUMA "G1301050, G13003700" +County and PUMA "G1301070, G13001300" +County and PUMA "G1301090, G13001200" +County and PUMA "G1301110, G13002800" +County and PUMA "G1301130, G13002400" +County and PUMA "G1301150, G13002500" +County and PUMA "G1301170, G13003300" +County and PUMA "G1301190, G13003500" +County and PUMA "G1301210, G13001001" +County and PUMA "G1301210, G13001002" +County and PUMA "G1301210, G13001003" +County and PUMA "G1301210, G13001004" +County and PUMA "G1301210, G13001005" +County and PUMA "G1301210, G13001006" +County and PUMA "G1301210, G13001007" +County and PUMA "G1301210, G13004600" +County and PUMA "G1301230, G13002800" +County and PUMA "G1301250, G13004200" +County and PUMA "G1301270, G13000100" +County and PUMA "G1301290, G13002800" +County and PUMA "G1301310, G13001100" +County and PUMA "G1301330, G13003700" +County and PUMA "G1301350, G13004001" +County and PUMA "G1301350, G13004002" +County and PUMA "G1301350, G13004003" +County and PUMA "G1301350, G13004004" +County and PUMA "G1301350, G13004005" +County and PUMA "G1301350, G13004006" +County and PUMA "G1301370, G13003500" +County and PUMA "G1301390, G13003400" +County and PUMA "G1301410, G13004200" +County and PUMA "G1301430, G13002500" +County and PUMA "G1301450, G13001800" +County and PUMA "G1301470, G13003500" +County and PUMA "G1301490, G13002200" +County and PUMA "G1301510, G13006001" +County and PUMA "G1301510, G13006002" +County and PUMA "G1301530, G13001500" +County and PUMA "G1301550, G13000700" +County and PUMA "G1301570, G13003800" +County and PUMA "G1301590, G13003900" +County and PUMA "G1301610, G13001200" +County and PUMA "G1301630, G13004200" +County and PUMA "G1301650, G13004200" +County and PUMA "G1301670, G13001300" +County and PUMA "G1301690, G13001600" +County and PUMA "G1301710, G13001900" +County and PUMA "G1301730, G13000500" +County and PUMA "G1301750, G13001300" +County and PUMA "G1301770, G13000900" +County and PUMA "G1301790, G13000200" +County and PUMA "G1301810, G13004200" +County and PUMA "G1301830, G13000200" +County and PUMA "G1301850, G13000600" +County and PUMA "G1301870, G13003200" +County and PUMA "G1301890, G13004200" +County and PUMA "G1301910, G13000100" +County and PUMA "G1301930, G13001800" +County and PUMA "G1301950, G13003700" +County and PUMA "G1301970, G13001800" +County and PUMA "G1301990, G13002200" +County and PUMA "G1302010, G13001100" +County and PUMA "G1302050, G13001100" +County and PUMA "G1302070, G13001600" +County and PUMA "G1302090, G13001200" +County and PUMA "G1302110, G13003900" +County and PUMA "G1302130, G13002800" +County and PUMA "G1302150, G13001700" +County and PUMA "G1302170, G13004300" +County and PUMA "G1302190, G13003700" +County and PUMA "G1302210, G13003700" +County and PUMA "G1302230, G13004500" +County and PUMA "G1302250, G13001600" +County and PUMA "G1302270, G13002800" +County and PUMA "G1302290, G13000500" +County and PUMA "G1302310, G13001900" +County and PUMA "G1302330, G13002500" +County and PUMA "G1302350, G13001500" +County and PUMA "G1302370, G13001600" +County and PUMA "G1302390, G13001800" +County and PUMA "G1302410, G13003200" +County and PUMA "G1302430, G13001800" +County and PUMA "G1302450, G13004000" +County and PUMA "G1302470, G13004300" +County and PUMA "G1302490, G13001800" +County and PUMA "G1302510, G13000300" +County and PUMA "G1302530, G13001100" +County and PUMA "G1302550, G13001900" +County and PUMA "G1302570, G13003500" +County and PUMA "G1302590, G13001800" +County and PUMA "G1302610, G13001800" +County and PUMA "G1302630, G13001800" +County and PUMA "G1302650, G13004200" +County and PUMA "G1302670, G13001200" +County and PUMA "G1302690, G13001800" +County and PUMA "G1302710, G13001200" +County and PUMA "G1302730, G13001100" +County and PUMA "G1302750, G13000800" +County and PUMA "G1302770, G13000700" +County and PUMA "G1302790, G13001200" +County and PUMA "G1302810, G13003200" +County and PUMA "G1302830, G13001300" +County and PUMA "G1302850, G13002200" +County and PUMA "G1302870, G13000700" +County and PUMA "G1302890, G13001600" +County and PUMA "G1302910, G13003200" +County and PUMA "G1302930, G13001900" +County and PUMA "G1302950, G13002600" +County and PUMA "G1302970, G13003900" +County and PUMA "G1302990, G13000500" +County and PUMA "G1303010, G13004200" +County and PUMA "G1303030, G13004200" +County and PUMA "G1303050, G13001200" +County and PUMA "G1303070, G13001800" +County and PUMA "G1303090, G13001200" +County and PUMA "G1303110, G13003200" +County and PUMA "G1303130, G13002700" +County and PUMA "G1303150, G13001300" +County and PUMA "G1303170, G13004200" +County and PUMA "G1303190, G13001600" +County and PUMA "G1303210, G13000800" +County and PUMA "G1500010, G15000200" +County and PUMA "G1500030, G15000301" +County and PUMA "G1500030, G15000302" +County and PUMA "G1500030, G15000303" +County and PUMA "G1500030, G15000304" +County and PUMA "G1500030, G15000305" +County and PUMA "G1500030, G15000306" +County and PUMA "G1500030, G15000307" +County and PUMA "G1500030, G15000308" +County and PUMA "G1500050, G15000100" +County and PUMA "G1500070, G15000100" +County and PUMA "G1500090, G15000100" +County and PUMA "G1600010, G16000400" +County and PUMA "G1600010, G16000600" +County and PUMA "G1600010, G16000701" +County and PUMA "G1600010, G16000702" +County and PUMA "G1600010, G16000800" +County and PUMA "G1600030, G16000300" +County and PUMA "G1600050, G16001300" +County and PUMA "G1600070, G16001300" +County and PUMA "G1600090, G16000100" +County and PUMA "G1600110, G16001100" +County and PUMA "G1600110, G16001300" +County and PUMA "G1600130, G16001000" +County and PUMA "G1600150, G16000300" +County and PUMA "G1600170, G16000100" +County and PUMA "G1600190, G16001200" +County and PUMA "G1600210, G16000100" +County and PUMA "G1600230, G16000300" +County and PUMA "G1600250, G16001000" +County and PUMA "G1600270, G16000400" +County and PUMA "G1600270, G16000500" +County and PUMA "G1600270, G16000600" +County and PUMA "G1600290, G16001300" +County and PUMA "G1600310, G16000900" +County and PUMA "G1600330, G16000300" +County and PUMA "G1600350, G16000300" +County and PUMA "G1600370, G16000300" +County and PUMA "G1600390, G16001000" +County and PUMA "G1600410, G16001300" +County and PUMA "G1600430, G16001100" +County and PUMA "G1600450, G16000400" +County and PUMA "G1600470, G16001000" +County and PUMA "G1600490, G16000300" +County and PUMA "G1600510, G16001100" +County and PUMA "G1600530, G16001000" +County and PUMA "G1600550, G16000100" +County and PUMA "G1600550, G16000200" +County and PUMA "G1600570, G16000100" +County and PUMA "G1600590, G16000300" +County and PUMA "G1600610, G16000300" +County and PUMA "G1600630, G16001000" +County and PUMA "G1600650, G16001100" +County and PUMA "G1600670, G16001000" +County and PUMA "G1600690, G16000300" +County and PUMA "G1600710, G16001300" +County and PUMA "G1600730, G16000500" +County and PUMA "G1600750, G16000400" +County and PUMA "G1600770, G16001300" +County and PUMA "G1600790, G16000100" +County and PUMA "G1600810, G16001100" +County and PUMA "G1600830, G16000900" +County and PUMA "G1600850, G16000300" +County and PUMA "G1600870, G16000400" +County and PUMA "G1700010, G17000300" +County and PUMA "G1700030, G17000800" +County and PUMA "G1700050, G17000501" +County and PUMA "G1700070, G17002901" +County and PUMA "G1700090, G17000300" +County and PUMA "G1700110, G17002501" +County and PUMA "G1700130, G17000401" +County and PUMA "G1700150, G17000104" +County and PUMA "G1700170, G17000401" +County and PUMA "G1700190, G17002100" +County and PUMA "G1700210, G17001602" +County and PUMA "G1700230, G17000700" +County and PUMA "G1700250, G17000700" +County and PUMA "G1700270, G17000501" +County and PUMA "G1700290, G17000600" +County and PUMA "G1700310, G17003401" +County and PUMA "G1700310, G17003407" +County and PUMA "G1700310, G17003408" +County and PUMA "G1700310, G17003409" +County and PUMA "G1700310, G17003410" +County and PUMA "G1700310, G17003411" +County and PUMA "G1700310, G17003412" +County and PUMA "G1700310, G17003413" +County and PUMA "G1700310, G17003414" +County and PUMA "G1700310, G17003415" +County and PUMA "G1700310, G17003416" +County and PUMA "G1700310, G17003417" +County and PUMA "G1700310, G17003418" +County and PUMA "G1700310, G17003419" +County and PUMA "G1700310, G17003420" +County and PUMA "G1700310, G17003421" +County and PUMA "G1700310, G17003422" +County and PUMA "G1700310, G17003501" +County and PUMA "G1700310, G17003502" +County and PUMA "G1700310, G17003503" +County and PUMA "G1700310, G17003504" +County and PUMA "G1700310, G17003520" +County and PUMA "G1700310, G17003521" +County and PUMA "G1700310, G17003522" +County and PUMA "G1700310, G17003523" +County and PUMA "G1700310, G17003524" +County and PUMA "G1700310, G17003525" +County and PUMA "G1700310, G17003526" +County and PUMA "G1700310, G17003527" +County and PUMA "G1700310, G17003528" +County and PUMA "G1700310, G17003529" +County and PUMA "G1700310, G17003530" +County and PUMA "G1700310, G17003531" +County and PUMA "G1700310, G17003532" +County and PUMA "G1700330, G17000700" +County and PUMA "G1700350, G17000600" +County and PUMA "G1700370, G17002601" +County and PUMA "G1700390, G17001602" +County and PUMA "G1700410, G17000600" +County and PUMA "G1700430, G17003202" +County and PUMA "G1700430, G17003203" +County and PUMA "G1700430, G17003204" +County and PUMA "G1700430, G17003205" +County and PUMA "G1700430, G17003207" +County and PUMA "G1700430, G17003208" +County and PUMA "G1700430, G17003209" +County and PUMA "G1700450, G17000600" +County and PUMA "G1700470, G17000800" +County and PUMA "G1700490, G17000501" +County and PUMA "G1700510, G17000501" +County and PUMA "G1700530, G17002200" +County and PUMA "G1700550, G17000900" +County and PUMA "G1700570, G17000202" +County and PUMA "G1700590, G17000800" +County and PUMA "G1700610, G17000401" +County and PUMA "G1700630, G17003700" +County and PUMA "G1700650, G17000800" +County and PUMA "G1700670, G17000202" +County and PUMA "G1700690, G17000800" +County and PUMA "G1700710, G17000202" +County and PUMA "G1700730, G17000202" +County and PUMA "G1700750, G17002200" +County and PUMA "G1700770, G17000900" +County and PUMA "G1700790, G17000700" +County and PUMA "G1700810, G17001001" +County and PUMA "G1700830, G17000401" +County and PUMA "G1700850, G17000104" +County and PUMA "G1700870, G17000800" +County and PUMA "G1700890, G17003005" +County and PUMA "G1700890, G17003007" +County and PUMA "G1700890, G17003008" +County and PUMA "G1700890, G17003009" +County and PUMA "G1700910, G17002300" +County and PUMA "G1700930, G17003700" +County and PUMA "G1700950, G17002501" +County and PUMA "G1700970, G17003306" +County and PUMA "G1700970, G17003307" +County and PUMA "G1700970, G17003308" +County and PUMA "G1700970, G17003309" +County and PUMA "G1700970, G17003310" +County and PUMA "G1700990, G17002400" +County and PUMA "G1701010, G17000700" +County and PUMA "G1701030, G17000104" +County and PUMA "G1701050, G17002200" +County and PUMA "G1701070, G17001602" +County and PUMA "G1701090, G17000202" +County and PUMA "G1701110, G17003601" +County and PUMA "G1701110, G17003602" +County and PUMA "G1701130, G17002000" +County and PUMA "G1701150, G17001500" +County and PUMA "G1701170, G17000401" +County and PUMA "G1701190, G17001204" +County and PUMA "G1701190, G17001205" +County and PUMA "G1701210, G17001001" +County and PUMA "G1701230, G17002501" +County and PUMA "G1701250, G17000300" +County and PUMA "G1701270, G17000800" +County and PUMA "G1701290, G17001602" +County and PUMA "G1701310, G17000202" +County and PUMA "G1701330, G17001001" +County and PUMA "G1701350, G17000501" +County and PUMA "G1701370, G17000401" +County and PUMA "G1701390, G17001602" +County and PUMA "G1701410, G17002700" +County and PUMA "G1701430, G17001701" +County and PUMA "G1701450, G17000900" +County and PUMA "G1701470, G17001602" +County and PUMA "G1701490, G17000300" +County and PUMA "G1701510, G17000800" +County and PUMA "G1701530, G17000800" +County and PUMA "G1701550, G17002501" +County and PUMA "G1701570, G17001001" +County and PUMA "G1701590, G17000700" +County and PUMA "G1701610, G17000105" +County and PUMA "G1701630, G17001104" +County and PUMA "G1701630, G17001105" +County and PUMA "G1701650, G17000800" +County and PUMA "G1701670, G17001300" +County and PUMA "G1701690, G17000300" +County and PUMA "G1701710, G17000401" +County and PUMA "G1701730, G17001602" +County and PUMA "G1701750, G17002501" +County and PUMA "G1701770, G17002700" +County and PUMA "G1701790, G17001900" +County and PUMA "G1701810, G17000800" +County and PUMA "G1701830, G17002200" +County and PUMA "G1701850, G17000800" +County and PUMA "G1701870, G17000202" +County and PUMA "G1701890, G17001001" +County and PUMA "G1701910, G17000700" +County and PUMA "G1701930, G17000800" +County and PUMA "G1701950, G17000104" +County and PUMA "G1701970, G17003102" +County and PUMA "G1701970, G17003105" +County and PUMA "G1701970, G17003106" +County and PUMA "G1701970, G17003107" +County and PUMA "G1701970, G17003108" +County and PUMA "G1701990, G17000900" +County and PUMA "G1702010, G17002801" +County and PUMA "G1702010, G17002901" +County and PUMA "G1702030, G17002501" +County and PUMA "G1800010, G18000900" +County and PUMA "G1800030, G18001001" +County and PUMA "G1800030, G18001002" +County and PUMA "G1800030, G18001003" +County and PUMA "G1800050, G18002900" +County and PUMA "G1800070, G18001100" +County and PUMA "G1800090, G18001500" +County and PUMA "G1800110, G18001801" +County and PUMA "G1800130, G18002100" +County and PUMA "G1800150, G18001100" +County and PUMA "G1800170, G18001300" +County and PUMA "G1800190, G18003600" +County and PUMA "G1800210, G18001600" +County and PUMA "G1800230, G18001100" +County and PUMA "G1800250, G18003400" +County and PUMA "G1800270, G18002700" +County and PUMA "G1800290, G18003100" +County and PUMA "G1800310, G18003000" +County and PUMA "G1800330, G18000600" +County and PUMA "G1800350, G18002000" +County and PUMA "G1800370, G18003400" +County and PUMA "G1800390, G18000500" +County and PUMA "G1800410, G18002600" +County and PUMA "G1800430, G18003500" +County and PUMA "G1800450, G18001600" +County and PUMA "G1800470, G18003100" +County and PUMA "G1800490, G18000700" +County and PUMA "G1800510, G18003200" +County and PUMA "G1800530, G18001400" +County and PUMA "G1800550, G18002700" +County and PUMA "G1800570, G18001801" +County and PUMA "G1800570, G18001802" +County and PUMA "G1800570, G18001803" +County and PUMA "G1800590, G18002500" +County and PUMA "G1800610, G18003500" +County and PUMA "G1800630, G18002200" +County and PUMA "G1800650, G18001500" +County and PUMA "G1800670, G18001300" +County and PUMA "G1800690, G18000900" +County and PUMA "G1800710, G18002900" +County and PUMA "G1800730, G18000700" +County and PUMA "G1800750, G18001500" +County and PUMA "G1800770, G18003000" +County and PUMA "G1800790, G18003000" +County and PUMA "G1800810, G18002400" +County and PUMA "G1800830, G18003400" +County and PUMA "G1800850, G18000800" +County and PUMA "G1800870, G18000600" +County and PUMA "G1800890, G18000101" +County and PUMA "G1800890, G18000102" +County and PUMA "G1800890, G18000103" +County and PUMA "G1800890, G18000104" +County and PUMA "G1800910, G18000300" +County and PUMA "G1800930, G18002700" +County and PUMA "G1800950, G18001900" +County and PUMA "G1800970, G18002301" +County and PUMA "G1800970, G18002302" +County and PUMA "G1800970, G18002303" +County and PUMA "G1800970, G18002304" +County and PUMA "G1800970, G18002305" +County and PUMA "G1800970, G18002306" +County and PUMA "G1800970, G18002307" +County and PUMA "G1800990, G18000800" +County and PUMA "G1801010, G18002700" +County and PUMA "G1801030, G18001400" +County and PUMA "G1801050, G18002800" +County and PUMA "G1801070, G18001100" +County and PUMA "G1801090, G18002100" +County and PUMA "G1801110, G18000700" +County and PUMA "G1801130, G18000600" +County and PUMA "G1801150, G18003100" +County and PUMA "G1801170, G18002700" +County and PUMA "G1801190, G18002700" +County and PUMA "G1801210, G18001600" +County and PUMA "G1801230, G18003400" +County and PUMA "G1801250, G18003400" +County and PUMA "G1801270, G18000200" +County and PUMA "G1801290, G18003200" +County and PUMA "G1801310, G18000700" +County and PUMA "G1801330, G18002100" +County and PUMA "G1801350, G18001500" +County and PUMA "G1801370, G18003100" +County and PUMA "G1801390, G18002600" +County and PUMA "G1801410, G18000401" +County and PUMA "G1801410, G18000402" +County and PUMA "G1801430, G18003000" +County and PUMA "G1801450, G18002500" +County and PUMA "G1801470, G18003400" +County and PUMA "G1801490, G18000700" +County and PUMA "G1801510, G18000600" +County and PUMA "G1801530, G18001600" +County and PUMA "G1801550, G18003100" +County and PUMA "G1801570, G18001200" +County and PUMA "G1801590, G18001300" +County and PUMA "G1801610, G18002600" +County and PUMA "G1801630, G18003300" +County and PUMA "G1801650, G18001600" +County and PUMA "G1801670, G18001700" +County and PUMA "G1801690, G18001400" +County and PUMA "G1801710, G18001600" +County and PUMA "G1801730, G18003200" +County and PUMA "G1801750, G18003500" +County and PUMA "G1801770, G18002600" +County and PUMA "G1801790, G18000900" +County and PUMA "G1801810, G18001100" +County and PUMA "G1801830, G18000900" +County and PUMA "G1900010, G19001800" +County and PUMA "G1900030, G19001800" +County and PUMA "G1900050, G19000400" +County and PUMA "G1900070, G19001800" +County and PUMA "G1900090, G19001800" +County and PUMA "G1900110, G19001200" +County and PUMA "G1900130, G19000500" +County and PUMA "G1900150, G19001300" +County and PUMA "G1900170, G19000400" +County and PUMA "G1900190, G19000700" +County and PUMA "G1900210, G19001900" +County and PUMA "G1900230, G19000600" +County and PUMA "G1900250, G19001900" +County and PUMA "G1900270, G19001900" +County and PUMA "G1900290, G19002100" +County and PUMA "G1900310, G19000800" +County and PUMA "G1900330, G19000200" +County and PUMA "G1900350, G19001900" +County and PUMA "G1900370, G19000400" +County and PUMA "G1900390, G19001800" +County and PUMA "G1900410, G19000100" +County and PUMA "G1900430, G19000400" +County and PUMA "G1900450, G19000800" +County and PUMA "G1900470, G19001900" +County and PUMA "G1900490, G19001400" +County and PUMA "G1900490, G19001500" +County and PUMA "G1900510, G19002200" +County and PUMA "G1900530, G19001800" +County and PUMA "G1900550, G19000700" +County and PUMA "G1900570, G19002300" +County and PUMA "G1900590, G19000100" +County and PUMA "G1900610, G19000700" +County and PUMA "G1900630, G19000100" +County and PUMA "G1900650, G19000400" +County and PUMA "G1900670, G19000200" +County and PUMA "G1900690, G19000600" +County and PUMA "G1900710, G19002100" +County and PUMA "G1900730, G19001900" +County and PUMA "G1900750, G19000600" +County and PUMA "G1900770, G19001800" +County and PUMA "G1900790, G19000600" +County and PUMA "G1900810, G19000200" +County and PUMA "G1900830, G19000600" +County and PUMA "G1900850, G19002100" +County and PUMA "G1900870, G19002300" +County and PUMA "G1900890, G19000400" +County and PUMA "G1900910, G19000600" +County and PUMA "G1900930, G19001900" +County and PUMA "G1900950, G19001200" +County and PUMA "G1900970, G19000700" +County and PUMA "G1900990, G19001400" +County and PUMA "G1901010, G19002200" +County and PUMA "G1901030, G19001100" +County and PUMA "G1901050, G19000800" +County and PUMA "G1901070, G19002200" +County and PUMA "G1901090, G19000200" +County and PUMA "G1901110, G19002300" +County and PUMA "G1901130, G19001000" +County and PUMA "G1901150, G19002300" +County and PUMA "G1901170, G19001800" +County and PUMA "G1901190, G19000100" +County and PUMA "G1901210, G19001400" +County and PUMA "G1901230, G19002200" +County and PUMA "G1901250, G19001400" +County and PUMA "G1901270, G19001200" +County and PUMA "G1901290, G19002100" +County and PUMA "G1901310, G19000200" +County and PUMA "G1901330, G19001900" +County and PUMA "G1901350, G19001800" +County and PUMA "G1901370, G19002100" +County and PUMA "G1901390, G19000800" +County and PUMA "G1901410, G19000100" +County and PUMA "G1901430, G19000100" +County and PUMA "G1901450, G19002100" +County and PUMA "G1901470, G19000100" +County and PUMA "G1901490, G19002000" +County and PUMA "G1901510, G19001900" +County and PUMA "G1901530, G19001500" +County and PUMA "G1901530, G19001600" +County and PUMA "G1901530, G19001700" +County and PUMA "G1901550, G19002100" +County and PUMA "G1901570, G19001200" +County and PUMA "G1901590, G19001800" +County and PUMA "G1901610, G19001900" +County and PUMA "G1901630, G19000900" +County and PUMA "G1901650, G19002100" +County and PUMA "G1901670, G19000100" +County and PUMA "G1901690, G19001300" +County and PUMA "G1901710, G19001200" +County and PUMA "G1901730, G19001800" +County and PUMA "G1901750, G19001800" +County and PUMA "G1901770, G19002200" +County and PUMA "G1901790, G19002200" +County and PUMA "G1901810, G19001400" +County and PUMA "G1901830, G19002200" +County and PUMA "G1901850, G19001800" +County and PUMA "G1901870, G19000600" +County and PUMA "G1901890, G19000200" +County and PUMA "G1901910, G19000400" +County and PUMA "G1901930, G19002000" +County and PUMA "G1901950, G19000200" +County and PUMA "G1901970, G19000600" +County and PUMA "G2000010, G20001400" +County and PUMA "G2000030, G20001400" +County and PUMA "G2000050, G20000400" +County and PUMA "G2000070, G20001100" +County and PUMA "G2000090, G20001100" +County and PUMA "G2000110, G20001400" +County and PUMA "G2000130, G20000802" +County and PUMA "G2000150, G20001302" +County and PUMA "G2000150, G20001304" +County and PUMA "G2000170, G20000900" +County and PUMA "G2000190, G20000900" +County and PUMA "G2000210, G20001500" +County and PUMA "G2000230, G20000100" +County and PUMA "G2000250, G20001200" +County and PUMA "G2000270, G20000200" +County and PUMA "G2000290, G20000200" +County and PUMA "G2000310, G20000900" +County and PUMA "G2000330, G20001100" +County and PUMA "G2000350, G20000900" +County and PUMA "G2000350, G20001100" +County and PUMA "G2000370, G20001500" +County and PUMA "G2000390, G20000100" +County and PUMA "G2000410, G20000200" +County and PUMA "G2000430, G20000400" +County and PUMA "G2000450, G20000700" +County and PUMA "G2000470, G20001100" +County and PUMA "G2000490, G20000900" +County and PUMA "G2000510, G20000100" +County and PUMA "G2000530, G20000200" +County and PUMA "G2000550, G20001200" +County and PUMA "G2000570, G20001200" +County and PUMA "G2000590, G20001400" +County and PUMA "G2000610, G20000300" +County and PUMA "G2000630, G20000100" +County and PUMA "G2000650, G20000100" +County and PUMA "G2000670, G20001200" +County and PUMA "G2000690, G20001200" +County and PUMA "G2000710, G20000100" +County and PUMA "G2000730, G20000900" +County and PUMA "G2000750, G20001200" +County and PUMA "G2000770, G20001100" +County and PUMA "G2000790, G20001301" +County and PUMA "G2000810, G20001200" +County and PUMA "G2000830, G20001200" +County and PUMA "G2000850, G20000802" +County and PUMA "G2000870, G20000400" +County and PUMA "G2000890, G20000200" +County and PUMA "G2000910, G20000601" +County and PUMA "G2000910, G20000602" +County and PUMA "G2000910, G20000603" +County and PUMA "G2000910, G20000604" +County and PUMA "G2000930, G20001200" +County and PUMA "G2000950, G20001100" +County and PUMA "G2000970, G20001100" +County and PUMA "G2000990, G20001500" +County and PUMA "G2001010, G20000100" +County and PUMA "G2001030, G20000400" +County and PUMA "G2001050, G20000200" +County and PUMA "G2001070, G20001400" +County and PUMA "G2001090, G20000100" +County and PUMA "G2001110, G20000900" +County and PUMA "G2001130, G20001000" +County and PUMA "G2001150, G20000900" +County and PUMA "G2001170, G20000200" +County and PUMA "G2001190, G20001200" +County and PUMA "G2001210, G20001400" +County and PUMA "G2001230, G20000200" +County and PUMA "G2001250, G20001500" +County and PUMA "G2001270, G20000900" +County and PUMA "G2001290, G20001200" +County and PUMA "G2001310, G20000200" +County and PUMA "G2001330, G20001500" +County and PUMA "G2001350, G20000100" +County and PUMA "G2001370, G20000100" +County and PUMA "G2001390, G20000802" +County and PUMA "G2001410, G20000100" +County and PUMA "G2001430, G20000200" +County and PUMA "G2001450, G20001100" +County and PUMA "G2001470, G20000100" +County and PUMA "G2001490, G20000300" +County and PUMA "G2001510, G20001100" +County and PUMA "G2001530, G20000100" +County and PUMA "G2001550, G20001000" +County and PUMA "G2001570, G20000200" +County and PUMA "G2001590, G20001000" +County and PUMA "G2001610, G20000300" +County and PUMA "G2001630, G20000100" +County and PUMA "G2001650, G20001100" +County and PUMA "G2001670, G20000100" +County and PUMA "G2001690, G20000200" +County and PUMA "G2001710, G20000100" +County and PUMA "G2001730, G20001301" +County and PUMA "G2001730, G20001302" +County and PUMA "G2001730, G20001303" +County and PUMA "G2001730, G20001304" +County and PUMA "G2001750, G20001200" +County and PUMA "G2001770, G20000801" +County and PUMA "G2001770, G20000802" +County and PUMA "G2001790, G20000100" +County and PUMA "G2001810, G20000100" +County and PUMA "G2001830, G20000100" +County and PUMA "G2001850, G20001100" +County and PUMA "G2001870, G20001200" +County and PUMA "G2001890, G20001200" +County and PUMA "G2001910, G20001100" +County and PUMA "G2001930, G20000100" +County and PUMA "G2001950, G20000100" +County and PUMA "G2001970, G20000802" +County and PUMA "G2001990, G20000100" +County and PUMA "G2002010, G20000200" +County and PUMA "G2002030, G20000100" +County and PUMA "G2002050, G20000900" +County and PUMA "G2002070, G20000900" +County and PUMA "G2002090, G20000500" +County and PUMA "G2100010, G21000600" +County and PUMA "G2100030, G21000400" +County and PUMA "G2100050, G21002000" +County and PUMA "G2100070, G21000100" +County and PUMA "G2100090, G21000400" +County and PUMA "G2100110, G21002700" +County and PUMA "G2100130, G21000900" +County and PUMA "G2100150, G21002500" +County and PUMA "G2100170, G21002300" +County and PUMA "G2100190, G21002800" +County and PUMA "G2100210, G21002100" +County and PUMA "G2100230, G21002700" +County and PUMA "G2100250, G21001000" +County and PUMA "G2100270, G21001300" +County and PUMA "G2100290, G21001600" +County and PUMA "G2100310, G21000400" +County and PUMA "G2100330, G21000200" +County and PUMA "G2100350, G21000100" +County and PUMA "G2100370, G21002600" +County and PUMA "G2100390, G21000100" +County and PUMA "G2100410, G21002600" +County and PUMA "G2100430, G21002800" +County and PUMA "G2100450, G21000600" +County and PUMA "G2100470, G21000300" +County and PUMA "G2100490, G21002300" +County and PUMA "G2100510, G21000800" +County and PUMA "G2100530, G21000600" +County and PUMA "G2100550, G21000200" +County and PUMA "G2100570, G21000600" +County and PUMA "G2100590, G21001500" +County and PUMA "G2100610, G21000400" +County and PUMA "G2100630, G21002800" +County and PUMA "G2100650, G21002200" +County and PUMA "G2100670, G21001901" +County and PUMA "G2100670, G21001902" +County and PUMA "G2100690, G21002700" +County and PUMA "G2100710, G21001100" +County and PUMA "G2100730, G21002000" +County and PUMA "G2100750, G21000100" +County and PUMA "G2100770, G21002600" +County and PUMA "G2100790, G21002100" +County and PUMA "G2100810, G21002600" +County and PUMA "G2100830, G21000100" +County and PUMA "G2100850, G21001300" +County and PUMA "G2100870, G21000600" +County and PUMA "G2100890, G21002800" +County and PUMA "G2100910, G21001500" +County and PUMA "G2100930, G21001200" +County and PUMA "G2100930, G21001300" +County and PUMA "G2100950, G21000900" +County and PUMA "G2100970, G21002300" +County and PUMA "G2100990, G21000400" +County and PUMA "G2101010, G21001400" +County and PUMA "G2101030, G21001800" +County and PUMA "G2101050, G21000100" +County and PUMA "G2101070, G21000200" +County and PUMA "G2101090, G21000800" +County and PUMA "G2101110, G21001701" +County and PUMA "G2101110, G21001702" +County and PUMA "G2101110, G21001703" +County and PUMA "G2101110, G21001704" +County and PUMA "G2101110, G21001705" +County and PUMA "G2101110, G21001706" +County and PUMA "G2101130, G21002100" +County and PUMA "G2101150, G21001100" +County and PUMA "G2101170, G21002400" +County and PUMA "G2101190, G21001000" +County and PUMA "G2101210, G21000900" +County and PUMA "G2101230, G21001200" +County and PUMA "G2101250, G21000800" +County and PUMA "G2101270, G21002800" +County and PUMA "G2101290, G21001000" +County and PUMA "G2101310, G21001000" +County and PUMA "G2101330, G21001000" +County and PUMA "G2101350, G21002700" +County and PUMA "G2101370, G21002100" +County and PUMA "G2101390, G21000200" +County and PUMA "G2101410, G21000400" +County and PUMA "G2101430, G21000300" +County and PUMA "G2101450, G21000100" +County and PUMA "G2101470, G21000700" +County and PUMA "G2101490, G21001400" +County and PUMA "G2101510, G21002200" +County and PUMA "G2101530, G21001100" +County and PUMA "G2101550, G21001200" +County and PUMA "G2101570, G21000100" +County and PUMA "G2101590, G21001100" +County and PUMA "G2101610, G21002700" +County and PUMA "G2101630, G21001300" +County and PUMA "G2101650, G21002700" +County and PUMA "G2101670, G21002000" +County and PUMA "G2101690, G21000400" +County and PUMA "G2101710, G21000400" +County and PUMA "G2101730, G21002700" +County and PUMA "G2101750, G21002700" +County and PUMA "G2101770, G21000200" +County and PUMA "G2101790, G21001200" +County and PUMA "G2101810, G21002300" +County and PUMA "G2101830, G21001400" +County and PUMA "G2101850, G21001800" +County and PUMA "G2101870, G21002600" +County and PUMA "G2101890, G21001000" +County and PUMA "G2101910, G21002600" +County and PUMA "G2101930, G21001000" +County and PUMA "G2101950, G21001100" +County and PUMA "G2101970, G21002200" +County and PUMA "G2101990, G21000700" +County and PUMA "G2102010, G21002700" +County and PUMA "G2102030, G21000800" +County and PUMA "G2102050, G21002700" +County and PUMA "G2102070, G21000600" +County and PUMA "G2102090, G21002300" +County and PUMA "G2102110, G21001600" +County and PUMA "G2102110, G21001800" +County and PUMA "G2102130, G21000400" +County and PUMA "G2102150, G21001600" +County and PUMA "G2102170, G21000600" +County and PUMA "G2102190, G21000300" +County and PUMA "G2102210, G21000300" +County and PUMA "G2102230, G21001800" +County and PUMA "G2102250, G21001400" +County and PUMA "G2102270, G21000500" +County and PUMA "G2102290, G21001200" +County and PUMA "G2102310, G21000700" +County and PUMA "G2102330, G21001400" +County and PUMA "G2102350, G21000900" +County and PUMA "G2102370, G21001000" +County and PUMA "G2102390, G21002000" +County and PUMA "G2200010, G22001100" +County and PUMA "G2200030, G22000800" +County and PUMA "G2200050, G22001600" +County and PUMA "G2200070, G22002000" +County and PUMA "G2200090, G22000600" +County and PUMA "G2200110, G22000800" +County and PUMA "G2200130, G22000300" +County and PUMA "G2200150, G22000200" +County and PUMA "G2200170, G22000100" +County and PUMA "G2200170, G22000101" +County and PUMA "G2200190, G22000800" +County and PUMA "G2200190, G22000900" +County and PUMA "G2200210, G22000500" +County and PUMA "G2200230, G22000900" +County and PUMA "G2200250, G22000600" +County and PUMA "G2200270, G22000300" +County and PUMA "G2200290, G22000600" +County and PUMA "G2200310, G22000300" +County and PUMA "G2200330, G22001500" +County and PUMA "G2200330, G22001501" +County and PUMA "G2200330, G22001502" +County and PUMA "G2200350, G22000500" +County and PUMA "G2200370, G22001400" +County and PUMA "G2200390, G22001000" +County and PUMA "G2200410, G22000500" +County and PUMA "G2200430, G22000600" +County and PUMA "G2200450, G22001300" +County and PUMA "G2200470, G22001400" +County and PUMA "G2200490, G22000500" +County and PUMA "G2200510, G22002300" +County and PUMA "G2200510, G22002301" +County and PUMA "G2200510, G22002302" +County and PUMA "G2200510, G22002500" +County and PUMA "G2200530, G22000900" +County and PUMA "G2200550, G22001200" +County and PUMA "G2200550, G22001201" +County and PUMA "G2200570, G22002000" +County and PUMA "G2200590, G22000600" +County and PUMA "G2200610, G22000300" +County and PUMA "G2200630, G22001700" +County and PUMA "G2200650, G22000500" +County and PUMA "G2200670, G22000500" +County and PUMA "G2200690, G22000300" +County and PUMA "G2200710, G22002400" +County and PUMA "G2200710, G22002401" +County and PUMA "G2200710, G22002402" +County and PUMA "G2200730, G22000400" +County and PUMA "G2200750, G22002500" +County and PUMA "G2200770, G22001400" +County and PUMA "G2200790, G22000700" +County and PUMA "G2200810, G22000300" +County and PUMA "G2200830, G22000500" +County and PUMA "G2200850, G22000300" +County and PUMA "G2200870, G22002500" +County and PUMA "G2200890, G22001900" +County and PUMA "G2200910, G22001700" +County and PUMA "G2200930, G22001900" +County and PUMA "G2200950, G22001900" +County and PUMA "G2200970, G22001000" +County and PUMA "G2200990, G22001300" +County and PUMA "G2201010, G22001300" +County and PUMA "G2201030, G22002200" +County and PUMA "G2201030, G22002201" +County and PUMA "G2201050, G22001800" +County and PUMA "G2201070, G22000500" +County and PUMA "G2201090, G22002100" +County and PUMA "G2201110, G22000500" +County and PUMA "G2201130, G22001100" +County and PUMA "G2201150, G22000700" +County and PUMA "G2201170, G22001800" +County and PUMA "G2201190, G22000200" +County and PUMA "G2201210, G22001400" +County and PUMA "G2201230, G22000500" +County and PUMA "G2201250, G22001400" +County and PUMA "G2201270, G22000600" +County and PUMA "G2300010, G23000600" +County and PUMA "G2300030, G23000100" +County and PUMA "G2300050, G23000700" +County and PUMA "G2300050, G23000800" +County and PUMA "G2300050, G23000900" +County and PUMA "G2300050, G23001000" +County and PUMA "G2300070, G23000200" +County and PUMA "G2300090, G23000500" +County and PUMA "G2300110, G23000400" +County and PUMA "G2300130, G23000500" +County and PUMA "G2300150, G23000500" +County and PUMA "G2300170, G23000200" +County and PUMA "G2300190, G23000300" +County and PUMA "G2300210, G23000200" +County and PUMA "G2300230, G23000700" +County and PUMA "G2300250, G23000200" +County and PUMA "G2300270, G23000500" +County and PUMA "G2300290, G23000100" +County and PUMA "G2300310, G23000800" +County and PUMA "G2300310, G23000900" +County and PUMA "G2400010, G24000100" +County and PUMA "G2400030, G24001201" +County and PUMA "G2400030, G24001202" +County and PUMA "G2400030, G24001203" +County and PUMA "G2400030, G24001204" +County and PUMA "G2400050, G24000501" +County and PUMA "G2400050, G24000502" +County and PUMA "G2400050, G24000503" +County and PUMA "G2400050, G24000504" +County and PUMA "G2400050, G24000505" +County and PUMA "G2400050, G24000506" +County and PUMA "G2400050, G24000507" +County and PUMA "G2400090, G24001500" +County and PUMA "G2400110, G24001300" +County and PUMA "G2400130, G24000400" +County and PUMA "G2400150, G24000700" +County and PUMA "G2400170, G24001600" +County and PUMA "G2400190, G24001300" +County and PUMA "G2400210, G24000301" +County and PUMA "G2400210, G24000302" +County and PUMA "G2400230, G24000100" +County and PUMA "G2400250, G24000601" +County and PUMA "G2400250, G24000602" +County and PUMA "G2400270, G24000901" +County and PUMA "G2400270, G24000902" +County and PUMA "G2400290, G24001300" +County and PUMA "G2400310, G24001001" +County and PUMA "G2400310, G24001002" +County and PUMA "G2400310, G24001003" +County and PUMA "G2400310, G24001004" +County and PUMA "G2400310, G24001005" +County and PUMA "G2400310, G24001006" +County and PUMA "G2400310, G24001007" +County and PUMA "G2400330, G24001101" +County and PUMA "G2400330, G24001102" +County and PUMA "G2400330, G24001103" +County and PUMA "G2400330, G24001104" +County and PUMA "G2400330, G24001105" +County and PUMA "G2400330, G24001106" +County and PUMA "G2400330, G24001107" +County and PUMA "G2400350, G24001300" +County and PUMA "G2400370, G24001500" +County and PUMA "G2400390, G24001400" +County and PUMA "G2400410, G24001300" +County and PUMA "G2400430, G24000200" +County and PUMA "G2400450, G24001400" +County and PUMA "G2400470, G24001400" +County and PUMA "G2405100, G24000801" +County and PUMA "G2405100, G24000802" +County and PUMA "G2405100, G24000803" +County and PUMA "G2405100, G24000804" +County and PUMA "G2405100, G24000805" +County and PUMA "G2500010, G25004700" +County and PUMA "G2500010, G25004800" +County and PUMA "G2500030, G25000100" +County and PUMA "G2500050, G25004200" +County and PUMA "G2500050, G25004301" +County and PUMA "G2500050, G25004302" +County and PUMA "G2500050, G25004303" +County and PUMA "G2500050, G25004500" +County and PUMA "G2500050, G25004901" +County and PUMA "G2500070, G25004800" +County and PUMA "G2500090, G25000701" +County and PUMA "G2500090, G25000702" +County and PUMA "G2500090, G25000703" +County and PUMA "G2500090, G25000704" +County and PUMA "G2500090, G25001000" +County and PUMA "G2500090, G25001300" +County and PUMA "G2500090, G25002800" +County and PUMA "G2500110, G25000200" +County and PUMA "G2500130, G25001600" +County and PUMA "G2500130, G25001900" +County and PUMA "G2500130, G25001901" +County and PUMA "G2500130, G25001902" +County and PUMA "G2500150, G25000200" +County and PUMA "G2500150, G25001600" +County and PUMA "G2500170, G25000400" +County and PUMA "G2500170, G25000501" +County and PUMA "G2500170, G25000502" +County and PUMA "G2500170, G25000503" +County and PUMA "G2500170, G25000504" +County and PUMA "G2500170, G25000505" +County and PUMA "G2500170, G25000506" +County and PUMA "G2500170, G25000507" +County and PUMA "G2500170, G25000508" +County and PUMA "G2500170, G25001000" +County and PUMA "G2500170, G25001300" +County and PUMA "G2500170, G25001400" +County and PUMA "G2500170, G25002400" +County and PUMA "G2500170, G25002800" +County and PUMA "G2500170, G25003400" +County and PUMA "G2500170, G25003500" +County and PUMA "G2500190, G25004800" +County and PUMA "G2500210, G25002400" +County and PUMA "G2500210, G25003400" +County and PUMA "G2500210, G25003500" +County and PUMA "G2500210, G25003601" +County and PUMA "G2500210, G25003602" +County and PUMA "G2500210, G25003603" +County and PUMA "G2500210, G25003900" +County and PUMA "G2500210, G25004000" +County and PUMA "G2500210, G25004200" +County and PUMA "G2500230, G25003900" +County and PUMA "G2500230, G25004000" +County and PUMA "G2500230, G25004301" +County and PUMA "G2500230, G25004901" +County and PUMA "G2500230, G25004902" +County and PUMA "G2500230, G25004903" +County and PUMA "G2500250, G25003301" +County and PUMA "G2500250, G25003302" +County and PUMA "G2500250, G25003303" +County and PUMA "G2500250, G25003304" +County and PUMA "G2500250, G25003305" +County and PUMA "G2500250, G25003306" +County and PUMA "G2500270, G25000300" +County and PUMA "G2500270, G25000301" +County and PUMA "G2500270, G25000302" +County and PUMA "G2500270, G25000303" +County and PUMA "G2500270, G25000304" +County and PUMA "G2500270, G25000400" +County and PUMA "G2500270, G25001400" +County and PUMA "G2500270, G25002400" +County and PUMA "G2600010, G26000300" +County and PUMA "G2600030, G26000200" +County and PUMA "G2600050, G26000900" +County and PUMA "G2600070, G26000300" +County and PUMA "G2600090, G26000400" +County and PUMA "G2600110, G26001300" +County and PUMA "G2600130, G26000100" +County and PUMA "G2600150, G26002000" +County and PUMA "G2600170, G26001400" +County and PUMA "G2600190, G26000500" +County and PUMA "G2600210, G26002400" +County and PUMA "G2600230, G26002200" +County and PUMA "G2600250, G26002000" +County and PUMA "G2600270, G26002300" +County and PUMA "G2600290, G26000400" +County and PUMA "G2600310, G26000300" +County and PUMA "G2600330, G26000200" +County and PUMA "G2600350, G26001200" +County and PUMA "G2600370, G26001900" +County and PUMA "G2600390, G26000300" +County and PUMA "G2600410, G26000200" +County and PUMA "G2600430, G26000100" +County and PUMA "G2600450, G26001900" +County and PUMA "G2600470, G26000400" +County and PUMA "G2600490, G26001701" +County and PUMA "G2600490, G26001702" +County and PUMA "G2600490, G26001703" +County and PUMA "G2600490, G26001704" +County and PUMA "G2600510, G26001300" +County and PUMA "G2600530, G26000100" +County and PUMA "G2600550, G26000500" +County and PUMA "G2600570, G26001200" +County and PUMA "G2600590, G26002500" +County and PUMA "G2600610, G26000100" +County and PUMA "G2600630, G26001600" +County and PUMA "G2600650, G26001801" +County and PUMA "G2600650, G26001802" +County and PUMA "G2600670, G26001100" +County and PUMA "G2600690, G26001300" +County and PUMA "G2600710, G26000100" +County and PUMA "G2600730, G26001200" +County and PUMA "G2600750, G26002600" +County and PUMA "G2600770, G26002101" +County and PUMA "G2600770, G26002102" +County and PUMA "G2600790, G26000400" +County and PUMA "G2600810, G26001001" +County and PUMA "G2600810, G26001002" +County and PUMA "G2600810, G26001003" +County and PUMA "G2600810, G26001004" +County and PUMA "G2600830, G26000100" +County and PUMA "G2600850, G26000600" +County and PUMA "G2600870, G26001701" +County and PUMA "G2600890, G26000500" +County and PUMA "G2600910, G26002500" +County and PUMA "G2600930, G26002800" +County and PUMA "G2600950, G26000200" +County and PUMA "G2600970, G26000200" +County and PUMA "G2600990, G26003001" +County and PUMA "G2600990, G26003002" +County and PUMA "G2600990, G26003003" +County and PUMA "G2600990, G26003004" +County and PUMA "G2600990, G26003005" +County and PUMA "G2600990, G26003006" +County and PUMA "G2601010, G26000500" +County and PUMA "G2601030, G26000100" +County and PUMA "G2601050, G26000600" +County and PUMA "G2601070, G26001100" +County and PUMA "G2601090, G26000200" +County and PUMA "G2601110, G26001400" +County and PUMA "G2601130, G26000400" +County and PUMA "G2601150, G26003300" +County and PUMA "G2601170, G26001100" +County and PUMA "G2601190, G26000300" +County and PUMA "G2601210, G26000700" +County and PUMA "G2601230, G26000600" +County and PUMA "G2601250, G26002901" +County and PUMA "G2601250, G26002902" +County and PUMA "G2601250, G26002903" +County and PUMA "G2601250, G26002904" +County and PUMA "G2601250, G26002905" +County and PUMA "G2601250, G26002906" +County and PUMA "G2601250, G26002907" +County and PUMA "G2601250, G26002908" +County and PUMA "G2601270, G26000600" +County and PUMA "G2601290, G26001300" +County and PUMA "G2601310, G26000100" +County and PUMA "G2601330, G26001100" +County and PUMA "G2601350, G26000300" +County and PUMA "G2601370, G26000300" +County and PUMA "G2601390, G26000801" +County and PUMA "G2601390, G26000802" +County and PUMA "G2601410, G26000300" +County and PUMA "G2601430, G26001300" +County and PUMA "G2601450, G26001500" +County and PUMA "G2601470, G26003100" +County and PUMA "G2601490, G26002200" +County and PUMA "G2601510, G26001600" +County and PUMA "G2601530, G26000200" +County and PUMA "G2601550, G26001704" +County and PUMA "G2601570, G26001600" +County and PUMA "G2601590, G26002300" +County and PUMA "G2601610, G26002701" +County and PUMA "G2601610, G26002702" +County and PUMA "G2601610, G26002703" +County and PUMA "G2601630, G26003201" +County and PUMA "G2601630, G26003202" +County and PUMA "G2601630, G26003203" +County and PUMA "G2601630, G26003204" +County and PUMA "G2601630, G26003205" +County and PUMA "G2601630, G26003206" +County and PUMA "G2601630, G26003207" +County and PUMA "G2601630, G26003208" +County and PUMA "G2601630, G26003209" +County and PUMA "G2601630, G26003210" +County and PUMA "G2601630, G26003211" +County and PUMA "G2601630, G26003212" +County and PUMA "G2601630, G26003213" +County and PUMA "G2601650, G26000400" +County and PUMA "G2700010, G27000300" +County and PUMA "G2700030, G27001101" +County and PUMA "G2700030, G27001102" +County and PUMA "G2700030, G27001103" +County and PUMA "G2700050, G27000200" +County and PUMA "G2700070, G27000200" +County and PUMA "G2700090, G27001000" +County and PUMA "G2700110, G27000800" +County and PUMA "G2700130, G27002200" +County and PUMA "G2700150, G27002000" +County and PUMA "G2700170, G27000300" +County and PUMA "G2700170, G27000400" +County and PUMA "G2700190, G27001700" +County and PUMA "G2700210, G27000300" +County and PUMA "G2700230, G27002000" +County and PUMA "G2700250, G27000600" +County and PUMA "G2700270, G27000100" +County and PUMA "G2700290, G27000200" +County and PUMA "G2700310, G27000400" +County and PUMA "G2700330, G27002100" +County and PUMA "G2700350, G27000700" +County and PUMA "G2700370, G27001501" +County and PUMA "G2700370, G27001502" +County and PUMA "G2700370, G27001503" +County and PUMA "G2700390, G27002400" +County and PUMA "G2700410, G27000800" +County and PUMA "G2700430, G27002100" +County and PUMA "G2700450, G27002600" +County and PUMA "G2700470, G27002400" +County and PUMA "G2700490, G27002300" +County and PUMA "G2700510, G27000800" +County and PUMA "G2700530, G27001401" +County and PUMA "G2700530, G27001402" +County and PUMA "G2700530, G27001403" +County and PUMA "G2700530, G27001404" +County and PUMA "G2700530, G27001405" +County and PUMA "G2700530, G27001406" +County and PUMA "G2700530, G27001407" +County and PUMA "G2700530, G27001408" +County and PUMA "G2700530, G27001409" +County and PUMA "G2700530, G27001410" +County and PUMA "G2700550, G27002600" +County and PUMA "G2700570, G27000200" +County and PUMA "G2700590, G27000600" +County and PUMA "G2700610, G27000300" +County and PUMA "G2700630, G27002100" +County and PUMA "G2700650, G27000600" +County and PUMA "G2700670, G27001900" +County and PUMA "G2700690, G27000100" +County and PUMA "G2700710, G27000400" +County and PUMA "G2700730, G27002000" +County and PUMA "G2700750, G27000400" +County and PUMA "G2700770, G27000200" +County and PUMA "G2700790, G27002300" +County and PUMA "G2700810, G27002000" +County and PUMA "G2700830, G27002000" +County and PUMA "G2700850, G27001900" +County and PUMA "G2700870, G27000200" +County and PUMA "G2700890, G27000100" +County and PUMA "G2700910, G27002100" +County and PUMA "G2700930, G27001900" +County and PUMA "G2700950, G27000600" +County and PUMA "G2700970, G27000700" +County and PUMA "G2700990, G27002400" +County and PUMA "G2701010, G27002100" +County and PUMA "G2701030, G27002200" +County and PUMA "G2701050, G27002100" +County and PUMA "G2701070, G27000100" +County and PUMA "G2701090, G27002500" +County and PUMA "G2701110, G27000800" +County and PUMA "G2701130, G27000100" +County and PUMA "G2701150, G27000600" +County and PUMA "G2701170, G27002100" +County and PUMA "G2701190, G27000100" +County and PUMA "G2701210, G27000800" +County and PUMA "G2701230, G27001301" +County and PUMA "G2701230, G27001302" +County and PUMA "G2701230, G27001303" +County and PUMA "G2701230, G27001304" +County and PUMA "G2701250, G27000100" +County and PUMA "G2701270, G27002000" +County and PUMA "G2701290, G27001900" +County and PUMA "G2701310, G27002300" +County and PUMA "G2701330, G27002100" +County and PUMA "G2701350, G27000100" +County and PUMA "G2701370, G27000400" +County and PUMA "G2701370, G27000500" +County and PUMA "G2701390, G27001600" +County and PUMA "G2701390, G27001700" +County and PUMA "G2701410, G27001000" +County and PUMA "G2701430, G27001900" +County and PUMA "G2701450, G27000900" +County and PUMA "G2701470, G27002400" +County and PUMA "G2701490, G27000800" +County and PUMA "G2701510, G27000800" +County and PUMA "G2701530, G27000700" +County and PUMA "G2701550, G27000800" +County and PUMA "G2701570, G27002600" +County and PUMA "G2701590, G27000700" +County and PUMA "G2701610, G27002200" +County and PUMA "G2701630, G27001201" +County and PUMA "G2701630, G27001202" +County and PUMA "G2701650, G27002100" +County and PUMA "G2701670, G27000800" +County and PUMA "G2701690, G27002600" +County and PUMA "G2701710, G27001800" +County and PUMA "G2701730, G27002000" +County and PUMA "G2800010, G28001600" +County and PUMA "G2800030, G28000200" +County and PUMA "G2800050, G28001600" +County and PUMA "G2800070, G28000700" +County and PUMA "G2800090, G28000200" +County and PUMA "G2800110, G28000800" +County and PUMA "G2800130, G28000400" +County and PUMA "G2800150, G28000700" +County and PUMA "G2800170, G28000400" +County and PUMA "G2800190, G28000600" +County and PUMA "G2800210, G28001600" +County and PUMA "G2800230, G28001500" +County and PUMA "G2800250, G28000600" +County and PUMA "G2800270, G28000300" +County and PUMA "G2800290, G28001200" +County and PUMA "G2800310, G28001700" +County and PUMA "G2800330, G28000100" +County and PUMA "G2800350, G28001800" +County and PUMA "G2800370, G28001600" +County and PUMA "G2800390, G28001900" +County and PUMA "G2800410, G28001700" +County and PUMA "G2800430, G28000700" +County and PUMA "G2800450, G28001900" +County and PUMA "G2800470, G28002000" +County and PUMA "G2800490, G28001000" +County and PUMA "G2800490, G28001100" +County and PUMA "G2800490, G28001200" +County and PUMA "G2800510, G28000700" +County and PUMA "G2800530, G28000800" +County and PUMA "G2800550, G28000800" +County and PUMA "G2800570, G28000400" +County and PUMA "G2800590, G28002100" +County and PUMA "G2800610, G28001400" +County and PUMA "G2800630, G28001600" +County and PUMA "G2800650, G28001700" +County and PUMA "G2800670, G28001700" +County and PUMA "G2800690, G28001400" +County and PUMA "G2800710, G28000400" +County and PUMA "G2800730, G28001800" +County and PUMA "G2800750, G28001500" +County and PUMA "G2800770, G28001600" +County and PUMA "G2800790, G28001400" +County and PUMA "G2800810, G28000500" +County and PUMA "G2800830, G28000700" +County and PUMA "G2800850, G28001600" +County and PUMA "G2800870, G28000600" +County and PUMA "G2800890, G28000900" +County and PUMA "G2800890, G28001000" +County and PUMA "G2800910, G28001800" +County and PUMA "G2800930, G28000200" +County and PUMA "G2800950, G28000400" +County and PUMA "G2800970, G28000700" +County and PUMA "G2800990, G28001400" +County and PUMA "G2801010, G28001500" +County and PUMA "G2801030, G28000600" +County and PUMA "G2801050, G28000600" +County and PUMA "G2801070, G28000300" +County and PUMA "G2801090, G28001900" +County and PUMA "G2801110, G28001800" +County and PUMA "G2801130, G28001600" +County and PUMA "G2801150, G28000500" +County and PUMA "G2801170, G28000200" +County and PUMA "G2801190, G28000300" +County and PUMA "G2801210, G28001300" +County and PUMA "G2801230, G28001400" +County and PUMA "G2801250, G28000800" +County and PUMA "G2801270, G28001300" +County and PUMA "G2801290, G28001400" +County and PUMA "G2801310, G28001900" +County and PUMA "G2801330, G28000800" +County and PUMA "G2801350, G28000300" +County and PUMA "G2801370, G28000300" +County and PUMA "G2801390, G28000200" +County and PUMA "G2801410, G28000200" +County and PUMA "G2801430, G28000300" +County and PUMA "G2801450, G28000500" +County and PUMA "G2801470, G28001600" +County and PUMA "G2801490, G28001200" +County and PUMA "G2801510, G28000800" +County and PUMA "G2801530, G28001700" +County and PUMA "G2801550, G28000600" +County and PUMA "G2801570, G28001600" +County and PUMA "G2801590, G28000600" +County and PUMA "G2801610, G28000700" +County and PUMA "G2801630, G28000900" +County and PUMA "G2900010, G29000300" +County and PUMA "G2900030, G29000200" +County and PUMA "G2900050, G29000100" +County and PUMA "G2900070, G29000400" +County and PUMA "G2900090, G29002700" +County and PUMA "G2900110, G29001200" +County and PUMA "G2900130, G29001100" +County and PUMA "G2900150, G29001300" +County and PUMA "G2900170, G29002200" +County and PUMA "G2900190, G29000600" +County and PUMA "G2900210, G29000200" +County and PUMA "G2900230, G29002400" +County and PUMA "G2900250, G29000800" +County and PUMA "G2900270, G29000500" +County and PUMA "G2900290, G29001400" +County and PUMA "G2900310, G29002200" +County and PUMA "G2900330, G29000700" +County and PUMA "G2900350, G29002400" +County and PUMA "G2900370, G29001100" +County and PUMA "G2900390, G29001200" +County and PUMA "G2900410, G29000700" +County and PUMA "G2900430, G29002601" +County and PUMA "G2900450, G29000300" +County and PUMA "G2900470, G29000901" +County and PUMA "G2900470, G29000902" +County and PUMA "G2900470, G29000903" +County and PUMA "G2900490, G29000800" +County and PUMA "G2900510, G29000500" +County and PUMA "G2900530, G29000700" +County and PUMA "G2900550, G29001500" +County and PUMA "G2900570, G29001200" +County and PUMA "G2900590, G29001300" +County and PUMA "G2900610, G29000100" +County and PUMA "G2900630, G29000200" +County and PUMA "G2900650, G29001500" +County and PUMA "G2900670, G29002500" +County and PUMA "G2900690, G29002300" +County and PUMA "G2900710, G29001600" +County and PUMA "G2900730, G29001500" +County and PUMA "G2900750, G29000100" +County and PUMA "G2900770, G29002601" +County and PUMA "G2900770, G29002602" +County and PUMA "G2900770, G29002603" +County and PUMA "G2900790, G29000100" +County and PUMA "G2900810, G29000100" +County and PUMA "G2900830, G29001200" +County and PUMA "G2900850, G29001300" +County and PUMA "G2900870, G29000100" +County and PUMA "G2900890, G29000700" +County and PUMA "G2900910, G29002500" +County and PUMA "G2900930, G29002400" +County and PUMA "G2900950, G29001001" +County and PUMA "G2900950, G29001002" +County and PUMA "G2900950, G29001003" +County and PUMA "G2900950, G29001004" +County and PUMA "G2900950, G29001005" +County and PUMA "G2900970, G29002800" +County and PUMA "G2900990, G29002001" +County and PUMA "G2900990, G29002002" +County and PUMA "G2901010, G29000800" +County and PUMA "G2901030, G29000300" +County and PUMA "G2901050, G29001300" +County and PUMA "G2901070, G29000800" +County and PUMA "G2901090, G29001200" +County and PUMA "G2901110, G29000300" +County and PUMA "G2901130, G29000400" +County and PUMA "G2901150, G29000100" +County and PUMA "G2901170, G29000100" +County and PUMA "G2901190, G29002700" +County and PUMA "G2901210, G29000300" +County and PUMA "G2901230, G29002400" +County and PUMA "G2901250, G29001500" +County and PUMA "G2901270, G29000300" +County and PUMA "G2901290, G29000100" +County and PUMA "G2901310, G29001400" +County and PUMA "G2901330, G29002300" +County and PUMA "G2901350, G29000500" +County and PUMA "G2901370, G29000300" +County and PUMA "G2901390, G29000400" +County and PUMA "G2901410, G29001400" +County and PUMA "G2901430, G29002300" +County and PUMA "G2901450, G29002800" +County and PUMA "G2901470, G29000100" +County and PUMA "G2901490, G29002500" +County and PUMA "G2901510, G29000500" +County and PUMA "G2901530, G29002500" +County and PUMA "G2901550, G29002300" +County and PUMA "G2901570, G29002100" +County and PUMA "G2901590, G29000700" +County and PUMA "G2901610, G29001500" +County and PUMA "G2901630, G29000400" +County and PUMA "G2901650, G29000903" +County and PUMA "G2901670, G29001300" +County and PUMA "G2901690, G29001400" +County and PUMA "G2901710, G29000100" +County and PUMA "G2901730, G29000300" +County and PUMA "G2901750, G29000700" +County and PUMA "G2901770, G29000800" +County and PUMA "G2901790, G29002400" +County and PUMA "G2901810, G29002400" +County and PUMA "G2901830, G29001701" +County and PUMA "G2901830, G29001702" +County and PUMA "G2901830, G29001703" +County and PUMA "G2901850, G29001200" +County and PUMA "G2901860, G29002100" +County and PUMA "G2901870, G29002100" +County and PUMA "G2901890, G29001801" +County and PUMA "G2901890, G29001802" +County and PUMA "G2901890, G29001803" +County and PUMA "G2901890, G29001804" +County and PUMA "G2901890, G29001805" +County and PUMA "G2901890, G29001806" +County and PUMA "G2901890, G29001807" +County and PUMA "G2901890, G29001808" +County and PUMA "G2901950, G29000700" +County and PUMA "G2901970, G29000300" +County and PUMA "G2901990, G29000300" +County and PUMA "G2902010, G29002200" +County and PUMA "G2902030, G29002500" +County and PUMA "G2902050, G29000300" +County and PUMA "G2902070, G29002300" +County and PUMA "G2902090, G29002700" +County and PUMA "G2902110, G29000100" +County and PUMA "G2902130, G29002700" +County and PUMA "G2902150, G29002500" +County and PUMA "G2902170, G29001200" +County and PUMA "G2902190, G29000400" +County and PUMA "G2902210, G29002100" +County and PUMA "G2902230, G29002400" +County and PUMA "G2902250, G29002601" +County and PUMA "G2902270, G29000100" +County and PUMA "G2902290, G29002500" +County and PUMA "G2905100, G29001901" +County and PUMA "G2905100, G29001902" +County and PUMA "G3000010, G30000300" +County and PUMA "G3000030, G30000600" +County and PUMA "G3000050, G30000400" +County and PUMA "G3000070, G30000300" +County and PUMA "G3000090, G30000500" +County and PUMA "G3000110, G30000600" +County and PUMA "G3000130, G30000400" +County and PUMA "G3000150, G30000400" +County and PUMA "G3000170, G30000600" +County and PUMA "G3000190, G30000600" +County and PUMA "G3000210, G30000600" +County and PUMA "G3000230, G30000300" +County and PUMA "G3000250, G30000600" +County and PUMA "G3000270, G30000400" +County and PUMA "G3000290, G30000100" +County and PUMA "G3000310, G30000500" +County and PUMA "G3000330, G30000600" +County and PUMA "G3000350, G30000100" +County and PUMA "G3000370, G30000600" +County and PUMA "G3000390, G30000300" +County and PUMA "G3000410, G30000400" +County and PUMA "G3000430, G30000300" +County and PUMA "G3000450, G30000400" +County and PUMA "G3000470, G30000200" +County and PUMA "G3000490, G30000300" +County and PUMA "G3000510, G30000400" +County and PUMA "G3000530, G30000100" +County and PUMA "G3000550, G30000600" +County and PUMA "G3000570, G30000300" +County and PUMA "G3000590, G30000400" +County and PUMA "G3000610, G30000200" +County and PUMA "G3000630, G30000200" +County and PUMA "G3000650, G30000600" +County and PUMA "G3000670, G30000500" +County and PUMA "G3000690, G30000400" +County and PUMA "G3000710, G30000600" +County and PUMA "G3000730, G30000400" +County and PUMA "G3000750, G30000600" +County and PUMA "G3000770, G30000300" +County and PUMA "G3000790, G30000600" +County and PUMA "G3000810, G30000200" +County and PUMA "G3000830, G30000600" +County and PUMA "G3000850, G30000600" +County and PUMA "G3000870, G30000600" +County and PUMA "G3000890, G30000200" +County and PUMA "G3000910, G30000600" +County and PUMA "G3000930, G30000300" +County and PUMA "G3000950, G30000500" +County and PUMA "G3000970, G30000500" +County and PUMA "G3000990, G30000400" +County and PUMA "G3001010, G30000400" +County and PUMA "G3001030, G30000600" +County and PUMA "G3001050, G30000600" +County and PUMA "G3001070, G30000400" +County and PUMA "G3001090, G30000600" +County and PUMA "G3001110, G30000600" +County and PUMA "G3001110, G30000700" +County and PUMA "G3100010, G31000500" +County and PUMA "G3100030, G31000200" +County and PUMA "G3100050, G31000400" +County and PUMA "G3100070, G31000100" +County and PUMA "G3100090, G31000300" +County and PUMA "G3100110, G31000200" +County and PUMA "G3100130, G31000100" +County and PUMA "G3100150, G31000100" +County and PUMA "G3100170, G31000100" +County and PUMA "G3100190, G31000500" +County and PUMA "G3100210, G31000200" +County and PUMA "G3100230, G31000600" +County and PUMA "G3100250, G31000701" +County and PUMA "G3100270, G31000200" +County and PUMA "G3100290, G31000400" +County and PUMA "G3100310, G31000100" +County and PUMA "G3100330, G31000100" +County and PUMA "G3100350, G31000500" +County and PUMA "G3100370, G31000200" +County and PUMA "G3100390, G31000200" +County and PUMA "G3100410, G31000300" +County and PUMA "G3100430, G31000200" +County and PUMA "G3100450, G31000100" +County and PUMA "G3100470, G31000400" +County and PUMA "G3100490, G31000100" +County and PUMA "G3100510, G31000200" +County and PUMA "G3100530, G31000701" +County and PUMA "G3100550, G31000901" +County and PUMA "G3100550, G31000902" +County and PUMA "G3100550, G31000903" +County and PUMA "G3100550, G31000904" +County and PUMA "G3100570, G31000400" +County and PUMA "G3100590, G31000600" +County and PUMA "G3100610, G31000500" +County and PUMA "G3100630, G31000400" +County and PUMA "G3100650, G31000400" +County and PUMA "G3100670, G31000600" +County and PUMA "G3100690, G31000100" +County and PUMA "G3100710, G31000300" +County and PUMA "G3100730, G31000400" +County and PUMA "G3100750, G31000400" +County and PUMA "G3100770, G31000300" +County and PUMA "G3100790, G31000300" +County and PUMA "G3100810, G31000300" +County and PUMA "G3100830, G31000500" +County and PUMA "G3100850, G31000400" +County and PUMA "G3100870, G31000400" +County and PUMA "G3100890, G31000100" +County and PUMA "G3100910, G31000400" +County and PUMA "G3100930, G31000300" +County and PUMA "G3100950, G31000600" +County and PUMA "G3100970, G31000600" +County and PUMA "G3100990, G31000500" +County and PUMA "G3101010, G31000400" +County and PUMA "G3101030, G31000100" +County and PUMA "G3101050, G31000100" +County and PUMA "G3101070, G31000200" +County and PUMA "G3101090, G31000801" +County and PUMA "G3101090, G31000802" +County and PUMA "G3101110, G31000400" +County and PUMA "G3101130, G31000400" +County and PUMA "G3101150, G31000300" +County and PUMA "G3101170, G31000400" +County and PUMA "G3101190, G31000200" +County and PUMA "G3101210, G31000300" +County and PUMA "G3101230, G31000100" +County and PUMA "G3101250, G31000200" +County and PUMA "G3101270, G31000600" +County and PUMA "G3101290, G31000500" +County and PUMA "G3101310, G31000600" +County and PUMA "G3101330, G31000600" +County and PUMA "G3101350, G31000400" +County and PUMA "G3101370, G31000500" +County and PUMA "G3101390, G31000200" +County and PUMA "G3101410, G31000200" +County and PUMA "G3101430, G31000600" +County and PUMA "G3101450, G31000400" +County and PUMA "G3101470, G31000600" +County and PUMA "G3101490, G31000100" +County and PUMA "G3101510, G31000600" +County and PUMA "G3101530, G31000702" +County and PUMA "G3101550, G31000701" +County and PUMA "G3101570, G31000100" +County and PUMA "G3101590, G31000600" +County and PUMA "G3101610, G31000100" +County and PUMA "G3101630, G31000300" +County and PUMA "G3101650, G31000100" +County and PUMA "G3101670, G31000200" +County and PUMA "G3101690, G31000600" +County and PUMA "G3101710, G31000400" +County and PUMA "G3101730, G31000200" +County and PUMA "G3101750, G31000300" +County and PUMA "G3101770, G31000701" +County and PUMA "G3101790, G31000200" +County and PUMA "G3101810, G31000500" +County and PUMA "G3101830, G31000300" +County and PUMA "G3101850, G31000600" +County and PUMA "G3200010, G32000300" +County and PUMA "G3200030, G32000401" +County and PUMA "G3200030, G32000402" +County and PUMA "G3200030, G32000403" +County and PUMA "G3200030, G32000404" +County and PUMA "G3200030, G32000405" +County and PUMA "G3200030, G32000406" +County and PUMA "G3200030, G32000407" +County and PUMA "G3200030, G32000408" +County and PUMA "G3200030, G32000409" +County and PUMA "G3200030, G32000410" +County and PUMA "G3200030, G32000411" +County and PUMA "G3200030, G32000412" +County and PUMA "G3200030, G32000413" +County and PUMA "G3200050, G32000200" +County and PUMA "G3200070, G32000300" +County and PUMA "G3200090, G32000300" +County and PUMA "G3200110, G32000300" +County and PUMA "G3200130, G32000300" +County and PUMA "G3200150, G32000300" +County and PUMA "G3200170, G32000300" +County and PUMA "G3200190, G32000200" +County and PUMA "G3200210, G32000300" +County and PUMA "G3200230, G32000300" +County and PUMA "G3200270, G32000300" +County and PUMA "G3200290, G32000200" +County and PUMA "G3200310, G32000101" +County and PUMA "G3200310, G32000102" +County and PUMA "G3200310, G32000103" +County and PUMA "G3200330, G32000300" +County and PUMA "G3205100, G32000200" +County and PUMA "G3300010, G33000200" +County and PUMA "G3300030, G33000200" +County and PUMA "G3300030, G33000300" +County and PUMA "G3300050, G33000500" +County and PUMA "G3300070, G33000100" +County and PUMA "G3300090, G33000100" +County and PUMA "G3300110, G33000600" +County and PUMA "G3300110, G33000700" +County and PUMA "G3300110, G33000800" +County and PUMA "G3300110, G33000900" +County and PUMA "G3300130, G33000200" +County and PUMA "G3300130, G33000400" +County and PUMA "G3300130, G33000700" +County and PUMA "G3300150, G33000300" +County and PUMA "G3300150, G33000700" +County and PUMA "G3300150, G33001000" +County and PUMA "G3300170, G33000300" +County and PUMA "G3300190, G33000500" +County and PUMA "G3400010, G34000101" +County and PUMA "G3400010, G34000102" +County and PUMA "G3400010, G34002600" +County and PUMA "G3400030, G34000301" +County and PUMA "G3400030, G34000302" +County and PUMA "G3400030, G34000303" +County and PUMA "G3400030, G34000304" +County and PUMA "G3400030, G34000305" +County and PUMA "G3400030, G34000306" +County and PUMA "G3400030, G34000307" +County and PUMA "G3400030, G34000308" +County and PUMA "G3400050, G34002001" +County and PUMA "G3400050, G34002002" +County and PUMA "G3400050, G34002003" +County and PUMA "G3400070, G34002101" +County and PUMA "G3400070, G34002102" +County and PUMA "G3400070, G34002103" +County and PUMA "G3400070, G34002104" +County and PUMA "G3400090, G34002600" +County and PUMA "G3400110, G34002400" +County and PUMA "G3400110, G34002500" +County and PUMA "G3400130, G34001301" +County and PUMA "G3400130, G34001302" +County and PUMA "G3400130, G34001401" +County and PUMA "G3400130, G34001402" +County and PUMA "G3400130, G34001403" +County and PUMA "G3400130, G34001404" +County and PUMA "G3400150, G34002201" +County and PUMA "G3400150, G34002202" +County and PUMA "G3400170, G34000601" +County and PUMA "G3400170, G34000602" +County and PUMA "G3400170, G34000701" +County and PUMA "G3400170, G34000702" +County and PUMA "G3400170, G34000703" +County and PUMA "G3400190, G34000800" +County and PUMA "G3400210, G34002301" +County and PUMA "G3400210, G34002302" +County and PUMA "G3400210, G34002303" +County and PUMA "G3400230, G34000901" +County and PUMA "G3400230, G34000902" +County and PUMA "G3400230, G34000903" +County and PUMA "G3400230, G34000904" +County and PUMA "G3400230, G34000905" +County and PUMA "G3400230, G34000906" +County and PUMA "G3400230, G34000907" +County and PUMA "G3400250, G34001101" +County and PUMA "G3400250, G34001102" +County and PUMA "G3400250, G34001103" +County and PUMA "G3400250, G34001104" +County and PUMA "G3400250, G34001105" +County and PUMA "G3400250, G34001106" +County and PUMA "G3400270, G34001501" +County and PUMA "G3400270, G34001502" +County and PUMA "G3400270, G34001503" +County and PUMA "G3400270, G34001504" +County and PUMA "G3400290, G34001201" +County and PUMA "G3400290, G34001202" +County and PUMA "G3400290, G34001203" +County and PUMA "G3400290, G34001204" +County and PUMA "G3400290, G34001205" +County and PUMA "G3400310, G34000400" +County and PUMA "G3400310, G34000501" +County and PUMA "G3400310, G34000502" +County and PUMA "G3400310, G34000503" +County and PUMA "G3400330, G34002500" +County and PUMA "G3400350, G34001001" +County and PUMA "G3400350, G34001002" +County and PUMA "G3400350, G34001003" +County and PUMA "G3400370, G34001600" +County and PUMA "G3400390, G34001800" +County and PUMA "G3400390, G34001901" +County and PUMA "G3400390, G34001902" +County and PUMA "G3400390, G34001903" +County and PUMA "G3400390, G34001904" +County and PUMA "G3400410, G34001700" +County and PUMA "G3500010, G35000700" +County and PUMA "G3500010, G35000801" +County and PUMA "G3500010, G35000802" +County and PUMA "G3500010, G35000803" +County and PUMA "G3500010, G35000804" +County and PUMA "G3500010, G35000805" +County and PUMA "G3500010, G35000806" +County and PUMA "G3500030, G35000900" +County and PUMA "G3500050, G35001100" +County and PUMA "G3500060, G35000100" +County and PUMA "G3500070, G35000400" +County and PUMA "G3500090, G35000400" +County and PUMA "G3500110, G35000400" +County and PUMA "G3500130, G35001001" +County and PUMA "G3500130, G35001002" +County and PUMA "G3500150, G35001200" +County and PUMA "G3500170, G35000900" +County and PUMA "G3500190, G35000400" +County and PUMA "G3500210, G35000400" +County and PUMA "G3500230, G35000900" +County and PUMA "G3500250, G35001200" +County and PUMA "G3500270, G35001100" +County and PUMA "G3500280, G35000300" +County and PUMA "G3500290, G35000900" +County and PUMA "G3500310, G35000100" +County and PUMA "G3500330, G35000300" +County and PUMA "G3500350, G35001100" +County and PUMA "G3500370, G35000400" +County and PUMA "G3500390, G35000300" +County and PUMA "G3500410, G35000400" +County and PUMA "G3500430, G35000600" +County and PUMA "G3500450, G35000100" +County and PUMA "G3500450, G35000200" +County and PUMA "G3500470, G35000300" +County and PUMA "G3500490, G35000500" +County and PUMA "G3500510, G35000900" +County and PUMA "G3500530, G35000900" +County and PUMA "G3500550, G35000300" +County and PUMA "G3500570, G35000900" +County and PUMA "G3500590, G35000400" +County and PUMA "G3500610, G35000700" +County and PUMA "G3600010, G36002001" +County and PUMA "G3600010, G36002002" +County and PUMA "G3600030, G36002500" +County and PUMA "G3600050, G36003701" +County and PUMA "G3600050, G36003702" +County and PUMA "G3600050, G36003703" +County and PUMA "G3600050, G36003704" +County and PUMA "G3600050, G36003705" +County and PUMA "G3600050, G36003706" +County and PUMA "G3600050, G36003707" +County and PUMA "G3600050, G36003708" +County and PUMA "G3600050, G36003709" +County and PUMA "G3600050, G36003710" +County and PUMA "G3600070, G36002201" +County and PUMA "G3600070, G36002202" +County and PUMA "G3600070, G36002203" +County and PUMA "G3600090, G36002500" +County and PUMA "G3600110, G36000704" +County and PUMA "G3600130, G36002600" +County and PUMA "G3600150, G36002401" +County and PUMA "G3600150, G36002402" +County and PUMA "G3600170, G36002203" +County and PUMA "G3600190, G36000200" +County and PUMA "G3600210, G36002100" +County and PUMA "G3600230, G36001500" +County and PUMA "G3600250, G36002203" +County and PUMA "G3600270, G36002801" +County and PUMA "G3600270, G36002802" +County and PUMA "G3600290, G36001201" +County and PUMA "G3600290, G36001202" +County and PUMA "G3600290, G36001203" +County and PUMA "G3600290, G36001204" +County and PUMA "G3600290, G36001205" +County and PUMA "G3600290, G36001206" +County and PUMA "G3600290, G36001207" +County and PUMA "G3600310, G36000200" +County and PUMA "G3600330, G36000200" +County and PUMA "G3600350, G36001600" +County and PUMA "G3600370, G36001000" +County and PUMA "G3600390, G36002100" +County and PUMA "G3600410, G36000200" +County and PUMA "G3600430, G36000401" +County and PUMA "G3600430, G36000403" +County and PUMA "G3600450, G36000500" +County and PUMA "G3600470, G36004001" +County and PUMA "G3600470, G36004002" +County and PUMA "G3600470, G36004003" +County and PUMA "G3600470, G36004004" +County and PUMA "G3600470, G36004005" +County and PUMA "G3600470, G36004006" +County and PUMA "G3600470, G36004007" +County and PUMA "G3600470, G36004008" +County and PUMA "G3600470, G36004009" +County and PUMA "G3600470, G36004010" +County and PUMA "G3600470, G36004011" +County and PUMA "G3600470, G36004012" +County and PUMA "G3600470, G36004013" +County and PUMA "G3600470, G36004014" +County and PUMA "G3600470, G36004015" +County and PUMA "G3600470, G36004016" +County and PUMA "G3600470, G36004017" +County and PUMA "G3600470, G36004018" +County and PUMA "G3600490, G36000500" +County and PUMA "G3600510, G36001300" +County and PUMA "G3600530, G36001500" +County and PUMA "G3600550, G36000901" +County and PUMA "G3600550, G36000902" +County and PUMA "G3600550, G36000903" +County and PUMA "G3600550, G36000904" +County and PUMA "G3600550, G36000905" +County and PUMA "G3600550, G36000906" +County and PUMA "G3600570, G36001600" +County and PUMA "G3600590, G36003201" +County and PUMA "G3600590, G36003202" +County and PUMA "G3600590, G36003203" +County and PUMA "G3600590, G36003204" +County and PUMA "G3600590, G36003205" +County and PUMA "G3600590, G36003206" +County and PUMA "G3600590, G36003207" +County and PUMA "G3600590, G36003208" +County and PUMA "G3600590, G36003209" +County and PUMA "G3600590, G36003210" +County and PUMA "G3600590, G36003211" +County and PUMA "G3600590, G36003212" +County and PUMA "G3600610, G36003801" +County and PUMA "G3600610, G36003802" +County and PUMA "G3600610, G36003803" +County and PUMA "G3600610, G36003804" +County and PUMA "G3600610, G36003805" +County and PUMA "G3600610, G36003806" +County and PUMA "G3600610, G36003807" +County and PUMA "G3600610, G36003808" +County and PUMA "G3600610, G36003809" +County and PUMA "G3600610, G36003810" +County and PUMA "G3600630, G36001101" +County and PUMA "G3600630, G36001102" +County and PUMA "G3600650, G36000401" +County and PUMA "G3600650, G36000402" +County and PUMA "G3600650, G36000403" +County and PUMA "G3600670, G36000701" +County and PUMA "G3600670, G36000702" +County and PUMA "G3600670, G36000703" +County and PUMA "G3600670, G36000704" +County and PUMA "G3600690, G36001400" +County and PUMA "G3600710, G36002901" +County and PUMA "G3600710, G36002902" +County and PUMA "G3600710, G36002903" +County and PUMA "G3600730, G36001000" +County and PUMA "G3600750, G36000600" +County and PUMA "G3600770, G36000403" +County and PUMA "G3600790, G36003101" +County and PUMA "G3600810, G36004101" +County and PUMA "G3600810, G36004102" +County and PUMA "G3600810, G36004103" +County and PUMA "G3600810, G36004104" +County and PUMA "G3600810, G36004105" +County and PUMA "G3600810, G36004106" +County and PUMA "G3600810, G36004107" +County and PUMA "G3600810, G36004108" +County and PUMA "G3600810, G36004109" +County and PUMA "G3600810, G36004110" +County and PUMA "G3600810, G36004111" +County and PUMA "G3600810, G36004112" +County and PUMA "G3600810, G36004113" +County and PUMA "G3600810, G36004114" +County and PUMA "G3600830, G36001900" +County and PUMA "G3600850, G36003901" +County and PUMA "G3600850, G36003902" +County and PUMA "G3600850, G36003903" +County and PUMA "G3600870, G36003001" +County and PUMA "G3600870, G36003002" +County and PUMA "G3600870, G36003003" +County and PUMA "G3600890, G36000100" +County and PUMA "G3600910, G36001801" +County and PUMA "G3600910, G36001802" +County and PUMA "G3600930, G36001700" +County and PUMA "G3600950, G36000403" +County and PUMA "G3600970, G36002402" +County and PUMA "G3600990, G36000800" +County and PUMA "G3601010, G36002401" +County and PUMA "G3601010, G36002402" +County and PUMA "G3601030, G36003301" +County and PUMA "G3601030, G36003302" +County and PUMA "G3601030, G36003303" +County and PUMA "G3601030, G36003304" +County and PUMA "G3601030, G36003305" +County and PUMA "G3601030, G36003306" +County and PUMA "G3601030, G36003307" +County and PUMA "G3601030, G36003308" +County and PUMA "G3601030, G36003309" +County and PUMA "G3601030, G36003310" +County and PUMA "G3601030, G36003311" +County and PUMA "G3601030, G36003312" +County and PUMA "G3601030, G36003313" +County and PUMA "G3601050, G36002701" +County and PUMA "G3601070, G36002202" +County and PUMA "G3601090, G36002300" +County and PUMA "G3601110, G36002701" +County and PUMA "G3601110, G36002702" +County and PUMA "G3601130, G36000300" +County and PUMA "G3601150, G36000300" +County and PUMA "G3601170, G36000800" +County and PUMA "G3601190, G36003101" +County and PUMA "G3601190, G36003102" +County and PUMA "G3601190, G36003103" +County and PUMA "G3601190, G36003104" +County and PUMA "G3601190, G36003105" +County and PUMA "G3601190, G36003106" +County and PUMA "G3601190, G36003107" +County and PUMA "G3601210, G36001300" +County and PUMA "G3601230, G36001400" +County and PUMA "G3700010, G37001600" +County and PUMA "G3700030, G37002000" +County and PUMA "G3700050, G37000200" +County and PUMA "G3700070, G37005300" +County and PUMA "G3700090, G37000100" +County and PUMA "G3700110, G37000100" +County and PUMA "G3700130, G37004400" +County and PUMA "G3700150, G37000800" +County and PUMA "G3700170, G37004900" +County and PUMA "G3700190, G37004800" +County and PUMA "G3700210, G37002201" +County and PUMA "G3700210, G37002202" +County and PUMA "G3700230, G37002100" +County and PUMA "G3700250, G37003200" +County and PUMA "G3700250, G37003300" +County and PUMA "G3700270, G37002000" +County and PUMA "G3700290, G37000700" +County and PUMA "G3700310, G37004400" +County and PUMA "G3700330, G37000400" +County and PUMA "G3700350, G37002800" +County and PUMA "G3700370, G37001500" +County and PUMA "G3700390, G37002400" +County and PUMA "G3700410, G37000700" +County and PUMA "G3700430, G37002400" +County and PUMA "G3700450, G37002600" +County and PUMA "G3700450, G37002700" +County and PUMA "G3700470, G37004900" +County and PUMA "G3700490, G37004300" +County and PUMA "G3700510, G37005001" +County and PUMA "G3700510, G37005002" +County and PUMA "G3700510, G37005003" +County and PUMA "G3700530, G37000700" +County and PUMA "G3700550, G37000800" +County and PUMA "G3700570, G37003500" +County and PUMA "G3700590, G37001900" +County and PUMA "G3700610, G37003900" +County and PUMA "G3700630, G37001301" +County and PUMA "G3700630, G37001302" +County and PUMA "G3700650, G37000900" +County and PUMA "G3700670, G37001801" +County and PUMA "G3700670, G37001802" +County and PUMA "G3700670, G37001803" +County and PUMA "G3700690, G37000500" +County and PUMA "G3700710, G37003001" +County and PUMA "G3700710, G37003002" +County and PUMA "G3700730, G37000700" +County and PUMA "G3700750, G37002300" +County and PUMA "G3700770, G37000400" +County and PUMA "G3700790, G37001000" +County and PUMA "G3700810, G37001701" +County and PUMA "G3700810, G37001702" +County and PUMA "G3700810, G37001703" +County and PUMA "G3700810, G37001704" +County and PUMA "G3700830, G37000600" +County and PUMA "G3700850, G37003800" +County and PUMA "G3700870, G37002300" +County and PUMA "G3700890, G37002500" +County and PUMA "G3700910, G37000600" +County and PUMA "G3700930, G37005200" +County and PUMA "G3700950, G37000800" +County and PUMA "G3700970, G37001900" +County and PUMA "G3700970, G37002900" +County and PUMA "G3700990, G37002300" +County and PUMA "G3700990, G37002400" +County and PUMA "G3701010, G37001100" +County and PUMA "G3701030, G37004100" +County and PUMA "G3701050, G37001500" +County and PUMA "G3701070, G37004100" +County and PUMA "G3701090, G37002700" +County and PUMA "G3701110, G37002100" +County and PUMA "G3701130, G37002400" +County and PUMA "G3701150, G37002300" +County and PUMA "G3701170, G37000800" +County and PUMA "G3701190, G37003101" +County and PUMA "G3701190, G37003102" +County and PUMA "G3701190, G37003103" +County and PUMA "G3701190, G37003104" +County and PUMA "G3701190, G37003105" +County and PUMA "G3701190, G37003106" +County and PUMA "G3701190, G37003107" +County and PUMA "G3701190, G37003108" +County and PUMA "G3701210, G37000100" +County and PUMA "G3701230, G37003700" +County and PUMA "G3701250, G37003700" +County and PUMA "G3701270, G37000900" +County and PUMA "G3701290, G37004600" +County and PUMA "G3701290, G37004700" +County and PUMA "G3701310, G37000600" +County and PUMA "G3701330, G37004100" +County and PUMA "G3701330, G37004500" +County and PUMA "G3701350, G37001400" +County and PUMA "G3701370, G37004400" +County and PUMA "G3701390, G37000700" +County and PUMA "G3701410, G37004600" +County and PUMA "G3701430, G37000700" +County and PUMA "G3701450, G37000400" +County and PUMA "G3701470, G37004200" +County and PUMA "G3701490, G37002600" +County and PUMA "G3701510, G37003600" +County and PUMA "G3701530, G37005200" +County and PUMA "G3701550, G37004900" +County and PUMA "G3701550, G37005100" +County and PUMA "G3701570, G37000300" +County and PUMA "G3701590, G37003400" +County and PUMA "G3701610, G37002600" +County and PUMA "G3701630, G37003900" +County and PUMA "G3701650, G37005200" +County and PUMA "G3701670, G37003300" +County and PUMA "G3701690, G37000300" +County and PUMA "G3701710, G37000200" +County and PUMA "G3701730, G37002300" +County and PUMA "G3701750, G37002500" +County and PUMA "G3701770, G37000800" +County and PUMA "G3701790, G37005300" +County and PUMA "G3701790, G37005400" +County and PUMA "G3701810, G37000500" +County and PUMA "G3701830, G37001201" +County and PUMA "G3701830, G37001202" +County and PUMA "G3701830, G37001203" +County and PUMA "G3701830, G37001204" +County and PUMA "G3701830, G37001205" +County and PUMA "G3701830, G37001206" +County and PUMA "G3701830, G37001207" +County and PUMA "G3701830, G37001208" +County and PUMA "G3701850, G37000500" +County and PUMA "G3701850, G37000600" +County and PUMA "G3701870, G37000800" +County and PUMA "G3701890, G37000100" +County and PUMA "G3701910, G37004000" +County and PUMA "G3701930, G37000200" +County and PUMA "G3701950, G37001000" +County and PUMA "G3701970, G37001900" +County and PUMA "G3701990, G37000100" +County and PUMA "G3800010, G38000100" +County and PUMA "G3800030, G38000200" +County and PUMA "G3800050, G38000200" +County and PUMA "G3800070, G38000100" +County and PUMA "G3800090, G38000200" +County and PUMA "G3800110, G38000100" +County and PUMA "G3800130, G38000100" +County and PUMA "G3800150, G38000300" +County and PUMA "G3800170, G38000500" +County and PUMA "G3800190, G38000400" +County and PUMA "G3800210, G38000200" +County and PUMA "G3800230, G38000100" +County and PUMA "G3800250, G38000100" +County and PUMA "G3800270, G38000200" +County and PUMA "G3800290, G38000300" +County and PUMA "G3800310, G38000200" +County and PUMA "G3800330, G38000100" +County and PUMA "G3800350, G38000400" +County and PUMA "G3800370, G38000100" +County and PUMA "G3800390, G38000400" +County and PUMA "G3800410, G38000100" +County and PUMA "G3800430, G38000300" +County and PUMA "G3800450, G38000200" +County and PUMA "G3800470, G38000300" +County and PUMA "G3800490, G38000100" +County and PUMA "G3800510, G38000300" +County and PUMA "G3800530, G38000100" +County and PUMA "G3800550, G38000100" +County and PUMA "G3800570, G38000100" +County and PUMA "G3800590, G38000300" +County and PUMA "G3800610, G38000100" +County and PUMA "G3800630, G38000200" +County and PUMA "G3800650, G38000100" +County and PUMA "G3800670, G38000400" +County and PUMA "G3800690, G38000200" +County and PUMA "G3800710, G38000200" +County and PUMA "G3800730, G38000200" +County and PUMA "G3800750, G38000100" +County and PUMA "G3800770, G38000200" +County and PUMA "G3800790, G38000200" +County and PUMA "G3800810, G38000200" +County and PUMA "G3800830, G38000200" +County and PUMA "G3800850, G38000100" +County and PUMA "G3800870, G38000100" +County and PUMA "G3800890, G38000100" +County and PUMA "G3800910, G38000400" +County and PUMA "G3800930, G38000200" +County and PUMA "G3800950, G38000400" +County and PUMA "G3800970, G38000400" +County and PUMA "G3800990, G38000400" +County and PUMA "G3801010, G38000100" +County and PUMA "G3801030, G38000200" +County and PUMA "G3801050, G38000100" +County and PUMA "G3900010, G39005200" +County and PUMA "G3900030, G39002500" +County and PUMA "G3900050, G39002100" +County and PUMA "G3900070, G39001300" +County and PUMA "G3900090, G39005000" +County and PUMA "G3900110, G39002600" +County and PUMA "G3900130, G39003500" +County and PUMA "G3900150, G39005700" +County and PUMA "G3900170, G39005401" +County and PUMA "G3900170, G39005402" +County and PUMA "G3900170, G39005403" +County and PUMA "G3900190, G39003300" +County and PUMA "G3900210, G39002700" +County and PUMA "G3900230, G39004300" +County and PUMA "G3900250, G39005600" +County and PUMA "G3900250, G39005700" +County and PUMA "G3900270, G39005200" +County and PUMA "G3900290, G39003400" +County and PUMA "G3900310, G39002900" +County and PUMA "G3900330, G39002300" +County and PUMA "G3900350, G39000901" +County and PUMA "G3900350, G39000902" +County and PUMA "G3900350, G39000903" +County and PUMA "G3900350, G39000904" +County and PUMA "G3900350, G39000905" +County and PUMA "G3900350, G39000906" +County and PUMA "G3900350, G39000907" +County and PUMA "G3900350, G39000908" +County and PUMA "G3900350, G39000909" +County and PUMA "G3900350, G39000910" +County and PUMA "G3900370, G39004500" +County and PUMA "G3900390, G39000100" +County and PUMA "G3900410, G39004000" +County and PUMA "G3900430, G39000700" +County and PUMA "G3900450, G39003900" +County and PUMA "G3900470, G39004800" +County and PUMA "G3900490, G39004101" +County and PUMA "G3900490, G39004102" +County and PUMA "G3900490, G39004103" +County and PUMA "G3900490, G39004104" +County and PUMA "G3900490, G39004105" +County and PUMA "G3900490, G39004106" +County and PUMA "G3900490, G39004107" +County and PUMA "G3900490, G39004108" +County and PUMA "G3900490, G39004109" +County and PUMA "G3900490, G39004110" +County and PUMA "G3900490, G39004111" +County and PUMA "G3900510, G39000200" +County and PUMA "G3900530, G39005000" +County and PUMA "G3900550, G39001200" +County and PUMA "G3900570, G39004700" +County and PUMA "G3900590, G39002900" +County and PUMA "G3900610, G39005501" +County and PUMA "G3900610, G39005502" +County and PUMA "G3900610, G39005503" +County and PUMA "G3900610, G39005504" +County and PUMA "G3900610, G39005505" +County and PUMA "G3900610, G39005506" +County and PUMA "G3900610, G39005507" +County and PUMA "G3900630, G39002400" +County and PUMA "G3900650, G39002700" +County and PUMA "G3900670, G39003000" +County and PUMA "G3900690, G39000100" +County and PUMA "G3900710, G39005200" +County and PUMA "G3900730, G39004900" +County and PUMA "G3900750, G39002900" +County and PUMA "G3900770, G39002100" +County and PUMA "G3900790, G39004900" +County and PUMA "G3900810, G39003500" +County and PUMA "G3900830, G39002800" +County and PUMA "G3900850, G39001000" +County and PUMA "G3900850, G39001100" +County and PUMA "G3900850, G39001200" +County and PUMA "G3900870, G39005100" +County and PUMA "G3900890, G39003800" +County and PUMA "G3900910, G39002700" +County and PUMA "G3900930, G39000801" +County and PUMA "G3900930, G39000802" +County and PUMA "G3900950, G39000200" +County and PUMA "G3900950, G39000300" +County and PUMA "G3900950, G39000400" +County and PUMA "G3900950, G39000500" +County and PUMA "G3900950, G39000600" +County and PUMA "G3900970, G39004200" +County and PUMA "G3900990, G39001400" +County and PUMA "G3900990, G39001500" +County and PUMA "G3901010, G39002800" +County and PUMA "G3901030, G39001900" +County and PUMA "G3901050, G39005000" +County and PUMA "G3901070, G39002600" +County and PUMA "G3901090, G39004400" +County and PUMA "G3901110, G39003600" +County and PUMA "G3901130, G39004601" +County and PUMA "G3901130, G39004602" +County and PUMA "G3901130, G39004603" +County and PUMA "G3901130, G39004604" +County and PUMA "G3901150, G39003600" +County and PUMA "G3901170, G39002800" +County and PUMA "G3901190, G39003700" +County and PUMA "G3901210, G39003600" +County and PUMA "G3901230, G39000600" +County and PUMA "G3901250, G39000100" +County and PUMA "G3901270, G39003700" +County and PUMA "G3901290, G39004200" +County and PUMA "G3901310, G39004900" +County and PUMA "G3901330, G39001700" +County and PUMA "G3901350, G39004500" +County and PUMA "G3901370, G39002400" +County and PUMA "G3901390, G39002200" +County and PUMA "G3901410, G39004800" +County and PUMA "G3901430, G39000700" +County and PUMA "G3901450, G39005100" +County and PUMA "G3901470, G39002300" +County and PUMA "G3901490, G39004500" +County and PUMA "G3901510, G39003100" +County and PUMA "G3901510, G39003200" +County and PUMA "G3901510, G39003300" +County and PUMA "G3901530, G39001801" +County and PUMA "G3901530, G39001802" +County and PUMA "G3901530, G39001803" +County and PUMA "G3901530, G39001804" +County and PUMA "G3901530, G39001805" +County and PUMA "G3901550, G39001400" +County and PUMA "G3901550, G39001600" +County and PUMA "G3901570, G39003000" +County and PUMA "G3901590, G39004200" +County and PUMA "G3901610, G39002600" +County and PUMA "G3901630, G39004900" +County and PUMA "G3901650, G39005301" +County and PUMA "G3901650, G39005302" +County and PUMA "G3901670, G39003600" +County and PUMA "G3901690, G39002000" +County and PUMA "G3901710, G39000100" +County and PUMA "G3901730, G39000200" +County and PUMA "G3901730, G39000300" +County and PUMA "G3901730, G39000600" +County and PUMA "G3901750, G39002300" +County and PUMA "G4000010, G40000200" +County and PUMA "G4000030, G40000500" +County and PUMA "G4000050, G40000702" +County and PUMA "G4000070, G40000500" +County and PUMA "G4000090, G40000400" +County and PUMA "G4000110, G40000500" +County and PUMA "G4000130, G40000702" +County and PUMA "G4000150, G40000602" +County and PUMA "G4000170, G40000800" +County and PUMA "G4000190, G40000701" +County and PUMA "G4000210, G40000200" +County and PUMA "G4000230, G40000300" +County and PUMA "G4000250, G40000500" +County and PUMA "G4000270, G40000900" +County and PUMA "G4000290, G40000702" +County and PUMA "G4000310, G40000601" +County and PUMA "G4000310, G40000602" +County and PUMA "G4000330, G40000602" +County and PUMA "G4000350, G40000100" +County and PUMA "G4000370, G40001204" +County and PUMA "G4000370, G40001501" +County and PUMA "G4000370, G40001601" +County and PUMA "G4000390, G40000400" +County and PUMA "G4000410, G40000100" +County and PUMA "G4000430, G40000500" +County and PUMA "G4000450, G40000500" +County and PUMA "G4000470, G40001400" +County and PUMA "G4000490, G40000701" +County and PUMA "G4000510, G40001101" +County and PUMA "G4000530, G40000500" +County and PUMA "G4000550, G40000400" +County and PUMA "G4000570, G40000400" +County and PUMA "G4000590, G40000500" +County and PUMA "G4000610, G40000300" +County and PUMA "G4000630, G40001501" +County and PUMA "G4000650, G40000400" +County and PUMA "G4000670, G40000602" +County and PUMA "G4000690, G40000702" +County and PUMA "G4000710, G40001400" +County and PUMA "G4000730, G40000500" +County and PUMA "G4000750, G40000400" +County and PUMA "G4000770, G40000300" +County and PUMA "G4000790, G40000300" +County and PUMA "G4000810, G40001102" +County and PUMA "G4000830, G40001102" +County and PUMA "G4000850, G40000701" +County and PUMA "G4000870, G40001101" +County and PUMA "G4000890, G40000300" +County and PUMA "G4000910, G40001302" +County and PUMA "G4000930, G40000500" +County and PUMA "G4000950, G40000702" +County and PUMA "G4000970, G40000100" +County and PUMA "G4000990, G40000701" +County and PUMA "G4001010, G40001302" +County and PUMA "G4001030, G40001400" +County and PUMA "G4001050, G40000100" +County and PUMA "G4001070, G40001501" +County and PUMA "G4001090, G40001001" +County and PUMA "G4001090, G40001002" +County and PUMA "G4001090, G40001003" +County and PUMA "G4001090, G40001004" +County and PUMA "G4001090, G40001005" +County and PUMA "G4001090, G40001006" +County and PUMA "G4001110, G40001302" +County and PUMA "G4001130, G40001204" +County and PUMA "G4001130, G40001601" +County and PUMA "G4001150, G40000100" +County and PUMA "G4001170, G40001601" +County and PUMA "G4001190, G40001501" +County and PUMA "G4001210, G40000300" +County and PUMA "G4001230, G40000701" +County and PUMA "G4001230, G40000702" +County and PUMA "G4001250, G40001101" +County and PUMA "G4001250, G40001102" +County and PUMA "G4001270, G40000300" +County and PUMA "G4001290, G40000400" +County and PUMA "G4001310, G40000100" +County and PUMA "G4001310, G40001301" +County and PUMA "G4001330, G40001501" +County and PUMA "G4001350, G40000200" +County and PUMA "G4001370, G40000602" +County and PUMA "G4001390, G40000500" +County and PUMA "G4001410, G40000602" +County and PUMA "G4001430, G40001201" +County and PUMA "G4001430, G40001202" +County and PUMA "G4001430, G40001203" +County and PUMA "G4001430, G40001204" +County and PUMA "G4001450, G40001301" +County and PUMA "G4001450, G40001302" +County and PUMA "G4001470, G40001601" +County and PUMA "G4001490, G40000400" +County and PUMA "G4001510, G40000500" +County and PUMA "G4001530, G40000500" +County and PUMA "G4100010, G41000100" +County and PUMA "G4100030, G41000600" +County and PUMA "G4100050, G41001317" +County and PUMA "G4100050, G41001318" +County and PUMA "G4100050, G41001319" +County and PUMA "G4100070, G41000500" +County and PUMA "G4100090, G41000500" +County and PUMA "G4100110, G41000800" +County and PUMA "G4100130, G41000200" +County and PUMA "G4100150, G41000800" +County and PUMA "G4100170, G41000400" +County and PUMA "G4100190, G41001000" +County and PUMA "G4100210, G41000200" +County and PUMA "G4100230, G41000200" +County and PUMA "G4100250, G41000300" +County and PUMA "G4100270, G41000200" +County and PUMA "G4100290, G41000901" +County and PUMA "G4100290, G41000902" +County and PUMA "G4100310, G41000200" +County and PUMA "G4100330, G41000800" +County and PUMA "G4100350, G41000300" +County and PUMA "G4100370, G41000300" +County and PUMA "G4100390, G41000703" +County and PUMA "G4100390, G41000704" +County and PUMA "G4100390, G41000705" +County and PUMA "G4100410, G41000500" +County and PUMA "G4100430, G41000600" +County and PUMA "G4100450, G41000300" +County and PUMA "G4100470, G41001103" +County and PUMA "G4100470, G41001104" +County and PUMA "G4100470, G41001105" +County and PUMA "G4100490, G41000200" +County and PUMA "G4100510, G41001301" +County and PUMA "G4100510, G41001302" +County and PUMA "G4100510, G41001303" +County and PUMA "G4100510, G41001305" +County and PUMA "G4100510, G41001314" +County and PUMA "G4100510, G41001316" +County and PUMA "G4100530, G41001200" +County and PUMA "G4100550, G41000200" +County and PUMA "G4100570, G41000500" +County and PUMA "G4100590, G41000100" +County and PUMA "G4100610, G41000100" +County and PUMA "G4100630, G41000100" +County and PUMA "G4100650, G41000200" +County and PUMA "G4100670, G41001320" +County and PUMA "G4100670, G41001321" +County and PUMA "G4100670, G41001322" +County and PUMA "G4100670, G41001323" +County and PUMA "G4100670, G41001324" +County and PUMA "G4100690, G41000200" +County and PUMA "G4100710, G41001200" +County and PUMA "G4200010, G42003701" +County and PUMA "G4200030, G42001701" +County and PUMA "G4200030, G42001702" +County and PUMA "G4200030, G42001801" +County and PUMA "G4200030, G42001802" +County and PUMA "G4200030, G42001803" +County and PUMA "G4200030, G42001804" +County and PUMA "G4200030, G42001805" +County and PUMA "G4200030, G42001806" +County and PUMA "G4200030, G42001807" +County and PUMA "G4200050, G42001900" +County and PUMA "G4200070, G42001501" +County and PUMA "G4200070, G42001502" +County and PUMA "G4200090, G42003800" +County and PUMA "G4200110, G42002701" +County and PUMA "G4200110, G42002702" +County and PUMA "G4200110, G42002703" +County and PUMA "G4200130, G42002200" +County and PUMA "G4200150, G42000400" +County and PUMA "G4200170, G42003001" +County and PUMA "G4200170, G42003002" +County and PUMA "G4200170, G42003003" +County and PUMA "G4200170, G42003004" +County and PUMA "G4200190, G42001600" +County and PUMA "G4200210, G42002100" +County and PUMA "G4200230, G42000300" +County and PUMA "G4200250, G42002801" +County and PUMA "G4200270, G42001200" +County and PUMA "G4200290, G42003401" +County and PUMA "G4200290, G42003402" +County and PUMA "G4200290, G42003403" +County and PUMA "G4200290, G42003404" +County and PUMA "G4200310, G42001300" +County and PUMA "G4200330, G42000300" +County and PUMA "G4200350, G42000900" +County and PUMA "G4200370, G42000803" +County and PUMA "G4200390, G42000200" +County and PUMA "G4200410, G42002301" +County and PUMA "G4200410, G42002302" +County and PUMA "G4200430, G42002401" +County and PUMA "G4200430, G42002402" +County and PUMA "G4200450, G42003301" +County and PUMA "G4200450, G42003302" +County and PUMA "G4200450, G42003303" +County and PUMA "G4200450, G42003304" +County and PUMA "G4200470, G42000300" +County and PUMA "G4200490, G42000101" +County and PUMA "G4200490, G42000102" +County and PUMA "G4200510, G42003900" +County and PUMA "G4200530, G42001300" +County and PUMA "G4200550, G42003701" +County and PUMA "G4200550, G42003702" +County and PUMA "G4200570, G42003800" +County and PUMA "G4200590, G42004002" +County and PUMA "G4200610, G42002200" +County and PUMA "G4200630, G42001900" +County and PUMA "G4200650, G42001300" +County and PUMA "G4200670, G42001100" +County and PUMA "G4200690, G42000701" +County and PUMA "G4200690, G42000702" +County and PUMA "G4200710, G42003501" +County and PUMA "G4200710, G42003502" +County and PUMA "G4200710, G42003503" +County and PUMA "G4200710, G42003504" +County and PUMA "G4200730, G42001501" +County and PUMA "G4200750, G42002500" +County and PUMA "G4200770, G42002801" +County and PUMA "G4200770, G42002802" +County and PUMA "G4200770, G42002803" +County and PUMA "G4200770, G42002901" +County and PUMA "G4200790, G42000801" +County and PUMA "G4200790, G42000802" +County and PUMA "G4200790, G42000803" +County and PUMA "G4200810, G42000900" +County and PUMA "G4200830, G42000300" +County and PUMA "G4200850, G42001400" +County and PUMA "G4200870, G42001100" +County and PUMA "G4200890, G42000600" +County and PUMA "G4200910, G42003101" +County and PUMA "G4200910, G42003102" +County and PUMA "G4200910, G42003103" +County and PUMA "G4200910, G42003104" +County and PUMA "G4200910, G42003105" +County and PUMA "G4200910, G42003106" +County and PUMA "G4200930, G42001000" +County and PUMA "G4200950, G42002901" +County and PUMA "G4200950, G42002902" +County and PUMA "G4200970, G42001000" +County and PUMA "G4200990, G42002301" +County and PUMA "G4201010, G42003201" +County and PUMA "G4201010, G42003202" +County and PUMA "G4201010, G42003203" +County and PUMA "G4201010, G42003204" +County and PUMA "G4201010, G42003205" +County and PUMA "G4201010, G42003206" +County and PUMA "G4201010, G42003207" +County and PUMA "G4201010, G42003208" +County and PUMA "G4201010, G42003209" +County and PUMA "G4201010, G42003210" +County and PUMA "G4201010, G42003211" +County and PUMA "G4201030, G42000500" +County and PUMA "G4201050, G42000300" +County and PUMA "G4201070, G42002600" +County and PUMA "G4201090, G42001100" +County and PUMA "G4201110, G42003800" +County and PUMA "G4201130, G42000400" +County and PUMA "G4201150, G42000500" +County and PUMA "G4201170, G42000400" +County and PUMA "G4201190, G42001100" +County and PUMA "G4201210, G42001300" +County and PUMA "G4201230, G42000200" +County and PUMA "G4201250, G42004001" +County and PUMA "G4201250, G42004002" +County and PUMA "G4201270, G42000500" +County and PUMA "G4201290, G42002001" +County and PUMA "G4201290, G42002002" +County and PUMA "G4201290, G42002003" +County and PUMA "G4201310, G42000702" +County and PUMA "G4201330, G42003601" +County and PUMA "G4201330, G42003602" +County and PUMA "G4201330, G42003603" +County and PUMA "G4400010, G44000300" +County and PUMA "G4400030, G44000201" +County and PUMA "G4400050, G44000300" +County and PUMA "G4400070, G44000101" +County and PUMA "G4400070, G44000102" +County and PUMA "G4400070, G44000103" +County and PUMA "G4400070, G44000104" +County and PUMA "G4400090, G44000400" +County and PUMA "G4500010, G45001600" +County and PUMA "G4500030, G45001500" +County and PUMA "G4500050, G45001300" +County and PUMA "G4500070, G45000200" +County and PUMA "G4500090, G45001300" +County and PUMA "G4500110, G45001300" +County and PUMA "G4500130, G45001400" +County and PUMA "G4500150, G45001201" +County and PUMA "G4500150, G45001202" +County and PUMA "G4500150, G45001203" +County and PUMA "G4500150, G45001204" +County and PUMA "G4500170, G45000605" +County and PUMA "G4500190, G45001201" +County and PUMA "G4500190, G45001202" +County and PUMA "G4500190, G45001203" +County and PUMA "G4500190, G45001204" +County and PUMA "G4500210, G45000400" +County and PUMA "G4500230, G45000400" +County and PUMA "G4500250, G45000700" +County and PUMA "G4500270, G45000800" +County and PUMA "G4500290, G45001300" +County and PUMA "G4500310, G45000900" +County and PUMA "G4500330, G45001000" +County and PUMA "G4500350, G45001201" +County and PUMA "G4500350, G45001204" +County and PUMA "G4500370, G45001500" +County and PUMA "G4500390, G45000603" +County and PUMA "G4500410, G45000900" +County and PUMA "G4500430, G45001000" +County and PUMA "G4500450, G45000102" +County and PUMA "G4500450, G45000103" +County and PUMA "G4500450, G45000104" +County and PUMA "G4500450, G45000105" +County and PUMA "G4500470, G45001600" +County and PUMA "G4500490, G45001300" +County and PUMA "G4500510, G45001101" +County and PUMA "G4500510, G45001102" +County and PUMA "G4500530, G45001400" +County and PUMA "G4500550, G45000605" +County and PUMA "G4500570, G45000700" +County and PUMA "G4500590, G45000105" +County and PUMA "G4500610, G45000800" +County and PUMA "G4500630, G45000601" +County and PUMA "G4500630, G45000602" +County and PUMA "G4500650, G45001600" +County and PUMA "G4500670, G45001000" +County and PUMA "G4500690, G45000700" +County and PUMA "G4500710, G45000400" +County and PUMA "G4500730, G45000101" +County and PUMA "G4500750, G45001300" +County and PUMA "G4500770, G45000101" +County and PUMA "G4500790, G45000603" +County and PUMA "G4500790, G45000604" +County and PUMA "G4500790, G45000605" +County and PUMA "G4500810, G45000601" +County and PUMA "G4500830, G45000301" +County and PUMA "G4500830, G45000302" +County and PUMA "G4500850, G45000800" +County and PUMA "G4500870, G45000400" +County and PUMA "G4500890, G45000800" +County and PUMA "G4500910, G45000501" +County and PUMA "G4500910, G45000502" +County and PUMA "G4600030, G46000400" +County and PUMA "G4600050, G46000400" +County and PUMA "G4600070, G46000200" +County and PUMA "G4600090, G46000400" +County and PUMA "G4600110, G46000400" +County and PUMA "G4600130, G46000300" +County and PUMA "G4600150, G46000400" +County and PUMA "G4600170, G46000200" +County and PUMA "G4600190, G46000100" +County and PUMA "G4600210, G46000300" +County and PUMA "G4600230, G46000200" +County and PUMA "G4600250, G46000300" +County and PUMA "G4600270, G46000500" +County and PUMA "G4600290, G46000300" +County and PUMA "G4600310, G46000200" +County and PUMA "G4600330, G46000100" +County and PUMA "G4600350, G46000400" +County and PUMA "G4600370, G46000300" +County and PUMA "G4600390, G46000300" +County and PUMA "G4600410, G46000200" +County and PUMA "G4600430, G46000400" +County and PUMA "G4600450, G46000300" +County and PUMA "G4600470, G46000200" +County and PUMA "G4600490, G46000300" +County and PUMA "G4600510, G46000300" +County and PUMA "G4600530, G46000200" +County and PUMA "G4600550, G46000200" +County and PUMA "G4600570, G46000300" +County and PUMA "G4600590, G46000400" +County and PUMA "G4600610, G46000400" +County and PUMA "G4600630, G46000100" +County and PUMA "G4600650, G46000200" +County and PUMA "G4600670, G46000400" +County and PUMA "G4600690, G46000200" +County and PUMA "G4600710, G46000200" +County and PUMA "G4600730, G46000400" +County and PUMA "G4600750, G46000200" +County and PUMA "G4600770, G46000400" +County and PUMA "G4600790, G46000400" +County and PUMA "G4600810, G46000100" +County and PUMA "G4600830, G46000500" +County and PUMA "G4600830, G46000600" +County and PUMA "G4600850, G46000200" +County and PUMA "G4600870, G46000500" +County and PUMA "G4600890, G46000300" +County and PUMA "G4600910, G46000300" +County and PUMA "G4600930, G46000100" +County and PUMA "G4600950, G46000200" +County and PUMA "G4600970, G46000400" +County and PUMA "G4600990, G46000500" +County and PUMA "G4600990, G46000600" +County and PUMA "G4601010, G46000400" +County and PUMA "G4601020, G46000200" +County and PUMA "G4601030, G46000100" +County and PUMA "G4601050, G46000100" +County and PUMA "G4601070, G46000300" +County and PUMA "G4601090, G46000300" +County and PUMA "G4601110, G46000400" +County and PUMA "G4601150, G46000300" +County and PUMA "G4601170, G46000200" +County and PUMA "G4601190, G46000200" +County and PUMA "G4601210, G46000200" +County and PUMA "G4601230, G46000200" +County and PUMA "G4601250, G46000500" +County and PUMA "G4601270, G46000500" +County and PUMA "G4601290, G46000300" +County and PUMA "G4601350, G46000500" +County and PUMA "G4601370, G46000200" +County and PUMA "G4700010, G47001601" +County and PUMA "G4700030, G47002700" +County and PUMA "G4700050, G47000200" +County and PUMA "G4700070, G47002100" +County and PUMA "G4700090, G47001700" +County and PUMA "G4700110, G47001900" +County and PUMA "G4700130, G47000900" +County and PUMA "G4700150, G47000600" +County and PUMA "G4700170, G47000200" +County and PUMA "G4700190, G47001200" +County and PUMA "G4700210, G47000400" +County and PUMA "G4700230, G47003000" +County and PUMA "G4700250, G47000900" +County and PUMA "G4700270, G47000700" +County and PUMA "G4700290, G47001400" +County and PUMA "G4700310, G47002200" +County and PUMA "G4700330, G47000100" +County and PUMA "G4700350, G47000800" +County and PUMA "G4700370, G47002501" +County and PUMA "G4700370, G47002502" +County and PUMA "G4700370, G47002503" +County and PUMA "G4700370, G47002504" +County and PUMA "G4700370, G47002505" +County and PUMA "G4700390, G47002900" +County and PUMA "G4700410, G47000600" +County and PUMA "G4700430, G47000400" +County and PUMA "G4700450, G47000100" +County and PUMA "G4700470, G47003100" +County and PUMA "G4700490, G47000800" +County and PUMA "G4700510, G47002200" +County and PUMA "G4700530, G47000100" +County and PUMA "G4700550, G47002800" +County and PUMA "G4700570, G47001400" +County and PUMA "G4700590, G47001200" +County and PUMA "G4700610, G47002100" +County and PUMA "G4700630, G47001400" +County and PUMA "G4700650, G47002001" +County and PUMA "G4700650, G47002002" +County and PUMA "G4700650, G47002003" +County and PUMA "G4700670, G47000900" +County and PUMA "G4700690, G47002900" +County and PUMA "G4700710, G47002900" +County and PUMA "G4700730, G47001000" +County and PUMA "G4700750, G47002900" +County and PUMA "G4700770, G47002900" +County and PUMA "G4700790, G47000200" +County and PUMA "G4700810, G47000400" +County and PUMA "G4700830, G47000200" +County and PUMA "G4700850, G47000200" +County and PUMA "G4700870, G47000700" +County and PUMA "G4700890, G47001500" +County and PUMA "G4700910, G47001200" +County and PUMA "G4700930, G47001601" +County and PUMA "G4700930, G47001602" +County and PUMA "G4700930, G47001603" +County and PUMA "G4700930, G47001604" +County and PUMA "G4700950, G47000100" +County and PUMA "G4700970, G47003100" +County and PUMA "G4700990, G47002800" +County and PUMA "G4701010, G47002800" +County and PUMA "G4701030, G47002200" +County and PUMA "G4701050, G47001800" +County and PUMA "G4701070, G47001900" +County and PUMA "G4701090, G47002900" +County and PUMA "G4701110, G47000600" +County and PUMA "G4701130, G47003000" +County and PUMA "G4701150, G47002100" +County and PUMA "G4701170, G47002700" +County and PUMA "G4701190, G47002700" +County and PUMA "G4701210, G47002100" +County and PUMA "G4701230, G47001800" +County and PUMA "G4701250, G47000300" +County and PUMA "G4701270, G47002200" +County and PUMA "G4701290, G47000900" +County and PUMA "G4701310, G47000100" +County and PUMA "G4701330, G47000700" +County and PUMA "G4701350, G47002800" +County and PUMA "G4701370, G47000700" +County and PUMA "G4701390, G47001900" +County and PUMA "G4701410, G47000700" +County and PUMA "G4701430, G47002100" +County and PUMA "G4701450, G47001800" +County and PUMA "G4701470, G47000400" +County and PUMA "G4701490, G47002401" +County and PUMA "G4701490, G47002402" +County and PUMA "G4701510, G47000900" +County and PUMA "G4701530, G47002100" +County and PUMA "G4701550, G47001500" +County and PUMA "G4701570, G47003201" +County and PUMA "G4701570, G47003202" +County and PUMA "G4701570, G47003203" +County and PUMA "G4701570, G47003204" +County and PUMA "G4701570, G47003205" +County and PUMA "G4701570, G47003206" +County and PUMA "G4701570, G47003207" +County and PUMA "G4701570, G47003208" +County and PUMA "G4701590, G47000600" +County and PUMA "G4701610, G47000300" +County and PUMA "G4701630, G47001000" +County and PUMA "G4701630, G47001100" +County and PUMA "G4701650, G47000500" +County and PUMA "G4701670, G47003100" +County and PUMA "G4701690, G47000600" +County and PUMA "G4701710, G47001200" +County and PUMA "G4701730, G47001601" +County and PUMA "G4701750, G47000800" +County and PUMA "G4701770, G47000600" +County and PUMA "G4701790, G47001300" +County and PUMA "G4701810, G47002800" +County and PUMA "G4701830, G47000200" +County and PUMA "G4701850, G47000800" +County and PUMA "G4701870, G47002600" +County and PUMA "G4701890, G47002300" +County and PUMA "G4800010, G48001800" +County and PUMA "G4800030, G48003200" +County and PUMA "G4800050, G48004000" +County and PUMA "G4800070, G48006500" +County and PUMA "G4800090, G48000600" +County and PUMA "G4800110, G48000100" +County and PUMA "G4800130, G48006100" +County and PUMA "G4800150, G48005000" +County and PUMA "G4800170, G48000400" +County and PUMA "G4800190, G48006100" +County and PUMA "G4800210, G48005100" +County and PUMA "G4800230, G48000600" +County and PUMA "G4800250, G48006500" +County and PUMA "G4800270, G48003501" +County and PUMA "G4800270, G48003502" +County and PUMA "G4800290, G48005901" +County and PUMA "G4800290, G48005902" +County and PUMA "G4800290, G48005903" +County and PUMA "G4800290, G48005904" +County and PUMA "G4800290, G48005905" +County and PUMA "G4800290, G48005906" +County and PUMA "G4800290, G48005907" +County and PUMA "G4800290, G48005908" +County and PUMA "G4800290, G48005909" +County and PUMA "G4800290, G48005910" +County and PUMA "G4800290, G48005911" +County and PUMA "G4800290, G48005912" +County and PUMA "G4800290, G48005913" +County and PUMA "G4800290, G48005914" +County and PUMA "G4800290, G48005915" +County and PUMA "G4800290, G48005916" +County and PUMA "G4800310, G48006000" +County and PUMA "G4800330, G48002800" +County and PUMA "G4800350, G48003700" +County and PUMA "G4800370, G48001100" +County and PUMA "G4800390, G48004801" +County and PUMA "G4800390, G48004802" +County and PUMA "G4800390, G48004803" +County and PUMA "G4800410, G48003602" +County and PUMA "G4800430, G48003200" +County and PUMA "G4800450, G48000100" +County and PUMA "G4800470, G48006900" +County and PUMA "G4800490, G48002600" +County and PUMA "G4800510, G48003601" +County and PUMA "G4800530, G48003400" +County and PUMA "G4800550, G48005100" +County and PUMA "G4800570, G48005600" +County and PUMA "G4800590, G48002600" +County and PUMA "G4800610, G48006701" +County and PUMA "G4800610, G48006702" +County and PUMA "G4800610, G48006703" +County and PUMA "G4800630, G48001300" +County and PUMA "G4800650, G48000100" +County and PUMA "G4800670, G48001100" +County and PUMA "G4800690, G48000100" +County and PUMA "G4800710, G48004400" +County and PUMA "G4800730, G48001700" +County and PUMA "G4800750, G48000100" +County and PUMA "G4800770, G48000600" +County and PUMA "G4800790, G48000400" +County and PUMA "G4800810, G48002800" +County and PUMA "G4800830, G48002600" +County and PUMA "G4800850, G48001901" +County and PUMA "G4800850, G48001902" +County and PUMA "G4800850, G48001903" +County and PUMA "G4800850, G48001904" +County and PUMA "G4800850, G48001905" +County and PUMA "G4800850, G48001906" +County and PUMA "G4800850, G48001907" +County and PUMA "G4800870, G48000100" +County and PUMA "G4800890, G48005000" +County and PUMA "G4800910, G48005800" +County and PUMA "G4800930, G48002600" +County and PUMA "G4800950, G48002800" +County and PUMA "G4800970, G48000800" +County and PUMA "G4800990, G48003400" +County and PUMA "G4801010, G48000600" +County and PUMA "G4801030, G48003200" +County and PUMA "G4801050, G48002800" +County and PUMA "G4801070, G48000400" +County and PUMA "G4801090, G48003200" +County and PUMA "G4801110, G48000100" +County and PUMA "G4801130, G48002301" +County and PUMA "G4801130, G48002302" +County and PUMA "G4801130, G48002303" +County and PUMA "G4801130, G48002304" +County and PUMA "G4801130, G48002305" +County and PUMA "G4801130, G48002306" +County and PUMA "G4801130, G48002307" +County and PUMA "G4801130, G48002308" +County and PUMA "G4801130, G48002309" +County and PUMA "G4801130, G48002310" +County and PUMA "G4801130, G48002311" +County and PUMA "G4801130, G48002312" +County and PUMA "G4801130, G48002313" +County and PUMA "G4801130, G48002314" +County and PUMA "G4801130, G48002315" +County and PUMA "G4801130, G48002316" +County and PUMA "G4801130, G48002317" +County and PUMA "G4801130, G48002318" +County and PUMA "G4801130, G48002319" +County and PUMA "G4801130, G48002320" +County and PUMA "G4801130, G48002321" +County and PUMA "G4801130, G48002322" +County and PUMA "G4801150, G48002800" +County and PUMA "G4801170, G48000100" +County and PUMA "G4801190, G48001000" +County and PUMA "G4801210, G48002001" +County and PUMA "G4801210, G48002002" +County and PUMA "G4801210, G48002003" +County and PUMA "G4801210, G48002004" +County and PUMA "G4801210, G48002005" +County and PUMA "G4801210, G48002006" +County and PUMA "G4801230, G48005500" +County and PUMA "G4801250, G48000400" +County and PUMA "G4801270, G48006200" +County and PUMA "G4801290, G48000100" +County and PUMA "G4801310, G48006400" +County and PUMA "G4801330, G48002600" +County and PUMA "G4801350, G48003100" +County and PUMA "G4801370, G48006200" +County and PUMA "G4801390, G48002101" +County and PUMA "G4801410, G48003301" +County and PUMA "G4801410, G48003302" +County and PUMA "G4801410, G48003303" +County and PUMA "G4801410, G48003304" +County and PUMA "G4801410, G48003305" +County and PUMA "G4801410, G48003306" +County and PUMA "G4801430, G48002200" +County and PUMA "G4801450, G48003700" +County and PUMA "G4801470, G48000800" +County and PUMA "G4801490, G48005100" +County and PUMA "G4801510, G48002600" +County and PUMA "G4801530, G48000400" +County and PUMA "G4801550, G48000600" +County and PUMA "G4801570, G48004901" +County and PUMA "G4801570, G48004902" +County and PUMA "G4801570, G48004903" +County and PUMA "G4801570, G48004904" +County and PUMA "G4801570, G48004905" +County and PUMA "G4801590, G48001000" +County and PUMA "G4801610, G48003700" +County and PUMA "G4801630, G48006100" +County and PUMA "G4801650, G48003200" +County and PUMA "G4801670, G48004701" +County and PUMA "G4801670, G48004702" +County and PUMA "G4801690, G48000400" +County and PUMA "G4801710, G48006000" +County and PUMA "G4801730, G48002800" +County and PUMA "G4801750, G48005500" +County and PUMA "G4801770, G48005500" +County and PUMA "G4801790, G48000100" +County and PUMA "G4801810, G48000800" +County and PUMA "G4801830, G48001600" +County and PUMA "G4801850, G48003601" +County and PUMA "G4801870, G48005700" +County and PUMA "G4801890, G48000400" +County and PUMA "G4801910, G48000100" +County and PUMA "G4801930, G48003400" +County and PUMA "G4801950, G48000100" +County and PUMA "G4801970, G48000600" +County and PUMA "G4801990, G48004200" +County and PUMA "G4802010, G48004601" +County and PUMA "G4802010, G48004602" +County and PUMA "G4802010, G48004603" +County and PUMA "G4802010, G48004604" +County and PUMA "G4802010, G48004605" +County and PUMA "G4802010, G48004606" +County and PUMA "G4802010, G48004607" +County and PUMA "G4802010, G48004608" +County and PUMA "G4802010, G48004609" +County and PUMA "G4802010, G48004610" +County and PUMA "G4802010, G48004611" +County and PUMA "G4802010, G48004612" +County and PUMA "G4802010, G48004613" +County and PUMA "G4802010, G48004614" +County and PUMA "G4802010, G48004615" +County and PUMA "G4802010, G48004616" +County and PUMA "G4802010, G48004617" +County and PUMA "G4802010, G48004618" +County and PUMA "G4802010, G48004619" +County and PUMA "G4802010, G48004620" +County and PUMA "G4802010, G48004621" +County and PUMA "G4802010, G48004622" +County and PUMA "G4802010, G48004623" +County and PUMA "G4802010, G48004624" +County and PUMA "G4802010, G48004625" +County and PUMA "G4802010, G48004626" +County and PUMA "G4802010, G48004627" +County and PUMA "G4802010, G48004628" +County and PUMA "G4802010, G48004629" +County and PUMA "G4802010, G48004630" +County and PUMA "G4802010, G48004631" +County and PUMA "G4802010, G48004632" +County and PUMA "G4802010, G48004633" +County and PUMA "G4802010, G48004634" +County and PUMA "G4802010, G48004635" +County and PUMA "G4802010, G48004636" +County and PUMA "G4802010, G48004637" +County and PUMA "G4802010, G48004638" +County and PUMA "G4802030, G48001200" +County and PUMA "G4802050, G48000100" +County and PUMA "G4802070, G48002600" +County and PUMA "G4802090, G48005400" +County and PUMA "G4802110, G48000100" +County and PUMA "G4802130, G48001800" +County and PUMA "G4802150, G48006801" +County and PUMA "G4802150, G48006802" +County and PUMA "G4802150, G48006803" +County and PUMA "G4802150, G48006804" +County and PUMA "G4802150, G48006805" +County and PUMA "G4802150, G48006806" +County and PUMA "G4802150, G48006807" +County and PUMA "G4802170, G48003700" +County and PUMA "G4802190, G48000400" +County and PUMA "G4802210, G48002200" +County and PUMA "G4802230, G48001000" +County and PUMA "G4802250, G48003900" +County and PUMA "G4802270, G48002800" +County and PUMA "G4802290, G48003200" +County and PUMA "G4802310, G48000900" +County and PUMA "G4802330, G48000100" +County and PUMA "G4802350, G48002800" +County and PUMA "G4802370, G48000600" +County and PUMA "G4802390, G48005500" +County and PUMA "G4802410, G48004100" +County and PUMA "G4802430, G48003200" +County and PUMA "G4802450, G48004301" +County and PUMA "G4802450, G48004302" +County and PUMA "G4802470, G48006400" +County and PUMA "G4802490, G48006900" +County and PUMA "G4802510, G48002102" +County and PUMA "G4802530, G48002600" +County and PUMA "G4802550, G48005500" +County and PUMA "G4802570, G48001400" +County and PUMA "G4802590, G48006000" +County and PUMA "G4802610, G48006900" +County and PUMA "G4802630, G48002600" +County and PUMA "G4802650, G48006000" +County and PUMA "G4802670, G48002800" +County and PUMA "G4802690, G48000400" +County and PUMA "G4802710, G48006200" +County and PUMA "G4802730, G48006900" +County and PUMA "G4802750, G48002600" +County and PUMA "G4802770, G48001000" +County and PUMA "G4802790, G48000400" +County and PUMA "G4802810, G48003400" +County and PUMA "G4802830, G48006200" +County and PUMA "G4802850, G48005500" +County and PUMA "G4802870, G48005100" +County and PUMA "G4802890, G48003601" +County and PUMA "G4802910, G48004400" +County and PUMA "G4802930, G48003700" +County and PUMA "G4802950, G48000100" +County and PUMA "G4802970, G48006400" +County and PUMA "G4802990, G48003400" +County and PUMA "G4803010, G48003200" +County and PUMA "G4803030, G48000501" +County and PUMA "G4803030, G48000502" +County and PUMA "G4803050, G48000400" +County and PUMA "G4803070, G48002800" +County and PUMA "G4803090, G48003801" +County and PUMA "G4803090, G48003802" +County and PUMA "G4803110, G48006400" +County and PUMA "G4803130, G48003601" +County and PUMA "G4803150, G48001200" +County and PUMA "G4803170, G48002800" +County and PUMA "G4803190, G48002800" +County and PUMA "G4803210, G48005000" +County and PUMA "G4803230, G48006200" +County and PUMA "G4803250, G48006100" +County and PUMA "G4803270, G48002800" +County and PUMA "G4803290, G48003000" +County and PUMA "G4803310, G48003601" +County and PUMA "G4803330, G48003400" +County and PUMA "G4803350, G48002600" +County and PUMA "G4803370, G48000600" +County and PUMA "G4803390, G48004501" +County and PUMA "G4803390, G48004502" +County and PUMA "G4803390, G48004503" +County and PUMA "G4803390, G48004504" +County and PUMA "G4803410, G48000100" +County and PUMA "G4803430, G48001000" +County and PUMA "G4803450, G48000400" +County and PUMA "G4803470, G48004000" +County and PUMA "G4803490, G48003700" +County and PUMA "G4803510, G48004100" +County and PUMA "G4803530, G48002600" +County and PUMA "G4803550, G48006601" +County and PUMA "G4803550, G48006602" +County and PUMA "G4803550, G48006603" +County and PUMA "G4803570, G48000100" +County and PUMA "G4803590, G48000100" +County and PUMA "G4803610, G48004200" +County and PUMA "G4803630, G48002200" +County and PUMA "G4803650, G48001700" +County and PUMA "G4803670, G48002400" +County and PUMA "G4803690, G48000100" +County and PUMA "G4803710, G48003200" +County and PUMA "G4803730, G48003900" +County and PUMA "G4803750, G48000200" +County and PUMA "G4803770, G48003200" +County and PUMA "G4803790, G48001300" +County and PUMA "G4803810, G48000300" +County and PUMA "G4803830, G48002800" +County and PUMA "G4803850, G48006200" +County and PUMA "G4803870, G48001000" +County and PUMA "G4803890, G48003200" +County and PUMA "G4803910, G48006500" +County and PUMA "G4803930, G48000100" +County and PUMA "G4803950, G48003601" +County and PUMA "G4803970, G48000900" +County and PUMA "G4803990, G48002600" +County and PUMA "G4804010, G48001700" +County and PUMA "G4804030, G48004100" +County and PUMA "G4804050, G48004100" +County and PUMA "G4804070, G48003900" +County and PUMA "G4804090, G48006500" +County and PUMA "G4804110, G48003400" +County and PUMA "G4804130, G48002800" +County and PUMA "G4804150, G48002600" +County and PUMA "G4804170, G48002600" +County and PUMA "G4804190, G48004100" +County and PUMA "G4804210, G48000100" +County and PUMA "G4804230, G48001501" +County and PUMA "G4804230, G48001502" +County and PUMA "G4804250, G48002200" +County and PUMA "G4804270, G48006400" +County and PUMA "G4804290, G48002600" +County and PUMA "G4804310, G48002800" +County and PUMA "G4804330, G48002600" +County and PUMA "G4804350, G48002800" +County and PUMA "G4804370, G48000100" +County and PUMA "G4804390, G48002501" +County and PUMA "G4804390, G48002502" +County and PUMA "G4804390, G48002503" +County and PUMA "G4804390, G48002504" +County and PUMA "G4804390, G48002505" +County and PUMA "G4804390, G48002506" +County and PUMA "G4804390, G48002507" +County and PUMA "G4804390, G48002508" +County and PUMA "G4804390, G48002509" +County and PUMA "G4804390, G48002510" +County and PUMA "G4804390, G48002511" +County and PUMA "G4804390, G48002512" +County and PUMA "G4804390, G48002513" +County and PUMA "G4804390, G48002514" +County and PUMA "G4804390, G48002515" +County and PUMA "G4804390, G48002516" +County and PUMA "G4804410, G48002700" +County and PUMA "G4804430, G48003200" +County and PUMA "G4804450, G48000400" +County and PUMA "G4804470, G48002600" +County and PUMA "G4804490, G48001000" +County and PUMA "G4804510, G48002900" +County and PUMA "G4804530, G48005301" +County and PUMA "G4804530, G48005302" +County and PUMA "G4804530, G48005303" +County and PUMA "G4804530, G48005304" +County and PUMA "G4804530, G48005305" +County and PUMA "G4804530, G48005306" +County and PUMA "G4804530, G48005307" +County and PUMA "G4804530, G48005308" +County and PUMA "G4804530, G48005309" +County and PUMA "G4804550, G48003900" +County and PUMA "G4804570, G48004100" +County and PUMA "G4804590, G48001200" +County and PUMA "G4804610, G48002800" +County and PUMA "G4804630, G48006200" +County and PUMA "G4804650, G48006200" +County and PUMA "G4804670, G48001300" +County and PUMA "G4804690, G48005600" +County and PUMA "G4804710, G48003900" +County and PUMA "G4804730, G48005000" +County and PUMA "G4804750, G48003200" +County and PUMA "G4804770, G48003601" +County and PUMA "G4804790, G48006301" +County and PUMA "G4804790, G48006302" +County and PUMA "G4804810, G48005000" +County and PUMA "G4804830, G48000100" +County and PUMA "G4804850, G48000700" +County and PUMA "G4804870, G48000600" +County and PUMA "G4804890, G48006900" +County and PUMA "G4804910, G48005201" +County and PUMA "G4804910, G48005202" +County and PUMA "G4804910, G48005203" +County and PUMA "G4804910, G48005204" +County and PUMA "G4804930, G48005500" +County and PUMA "G4804950, G48003200" +County and PUMA "G4804970, G48000600" +County and PUMA "G4804990, G48001300" +County and PUMA "G4805010, G48000400" +County and PUMA "G4805030, G48000600" +County and PUMA "G4805050, G48006400" +County and PUMA "G4805070, G48006200" +County and PUMA "G4900010, G49021001" +County and PUMA "G4900030, G49003001" +County and PUMA "G4900050, G49005001" +County and PUMA "G4900070, G49013001" +County and PUMA "G4900090, G49013001" +County and PUMA "G4900110, G49011001" +County and PUMA "G4900110, G49011002" +County and PUMA "G4900130, G49013001" +County and PUMA "G4900150, G49013001" +County and PUMA "G4900170, G49021001" +County and PUMA "G4900190, G49013001" +County and PUMA "G4900210, G49021001" +County and PUMA "G4900230, G49021001" +County and PUMA "G4900250, G49021001" +County and PUMA "G4900270, G49021001" +County and PUMA "G4900290, G49005001" +County and PUMA "G4900310, G49021001" +County and PUMA "G4900330, G49005001" +County and PUMA "G4900350, G49035001" +County and PUMA "G4900350, G49035002" +County and PUMA "G4900350, G49035003" +County and PUMA "G4900350, G49035004" +County and PUMA "G4900350, G49035005" +County and PUMA "G4900350, G49035006" +County and PUMA "G4900350, G49035007" +County and PUMA "G4900350, G49035008" +County and PUMA "G4900350, G49035009" +County and PUMA "G4900370, G49013001" +County and PUMA "G4900390, G49021001" +County and PUMA "G4900410, G49021001" +County and PUMA "G4900430, G49005001" +County and PUMA "G4900450, G49003001" +County and PUMA "G4900470, G49013001" +County and PUMA "G4900490, G49049001" +County and PUMA "G4900490, G49049002" +County and PUMA "G4900490, G49049003" +County and PUMA "G4900490, G49049004" +County and PUMA "G4900510, G49013001" +County and PUMA "G4900530, G49053001" +County and PUMA "G4900550, G49021001" +County and PUMA "G4900570, G49057001" +County and PUMA "G4900570, G49057002" +County and PUMA "G5000010, G50000400" +County and PUMA "G5000030, G50000400" +County and PUMA "G5000050, G50000200" +County and PUMA "G5000070, G50000100" +County and PUMA "G5000090, G50000200" +County and PUMA "G5000110, G50000100" +County and PUMA "G5000130, G50000100" +County and PUMA "G5000150, G50000200" +County and PUMA "G5000170, G50000300" +County and PUMA "G5000190, G50000200" +County and PUMA "G5000210, G50000400" +County and PUMA "G5000230, G50000200" +County and PUMA "G5000250, G50000300" +County and PUMA "G5000270, G50000300" +County and PUMA "G5100010, G51051125" +County and PUMA "G5100030, G51051089" +County and PUMA "G5100030, G51051090" +County and PUMA "G5100050, G51051045" +County and PUMA "G5100070, G51051105" +County and PUMA "G5100090, G51051095" +County and PUMA "G5100110, G51051095" +County and PUMA "G5100130, G51001301" +County and PUMA "G5100130, G51001302" +County and PUMA "G5100150, G51051080" +County and PUMA "G5100170, G51051080" +County and PUMA "G5100190, G51051095" +County and PUMA "G5100210, G51051020" +County and PUMA "G5100230, G51051045" +County and PUMA "G5100250, G51051105" +County and PUMA "G5100270, G51051010" +County and PUMA "G5100290, G51051105" +County and PUMA "G5100310, G51051096" +County and PUMA "G5100330, G51051120" +County and PUMA "G5100350, G51051020" +County and PUMA "G5100360, G51051215" +County and PUMA "G5100370, G51051105" +County and PUMA "G5100410, G51004101" +County and PUMA "G5100410, G51004102" +County and PUMA "G5100410, G51004103" +County and PUMA "G5100430, G51051084" +County and PUMA "G5100450, G51051045" +County and PUMA "G5100470, G51051087" +County and PUMA "G5100490, G51051105" +County and PUMA "G5100510, G51051010" +County and PUMA "G5100530, G51051135" +County and PUMA "G5100570, G51051125" +County and PUMA "G5100590, G51059301" +County and PUMA "G5100590, G51059302" +County and PUMA "G5100590, G51059303" +County and PUMA "G5100590, G51059304" +County and PUMA "G5100590, G51059305" +County and PUMA "G5100590, G51059306" +County and PUMA "G5100590, G51059307" +County and PUMA "G5100590, G51059308" +County and PUMA "G5100590, G51059309" +County and PUMA "G5100610, G51051087" +County and PUMA "G5100630, G51051040" +County and PUMA "G5100650, G51051089" +County and PUMA "G5100670, G51051045" +County and PUMA "G5100690, G51051084" +County and PUMA "G5100710, G51051040" +County and PUMA "G5100730, G51051125" +County and PUMA "G5100750, G51051215" +County and PUMA "G5100770, G51051020" +County and PUMA "G5100790, G51051090" +County and PUMA "G5100810, G51051135" +County and PUMA "G5100830, G51051105" +County and PUMA "G5100850, G51051215" +County and PUMA "G5100870, G51051224" +County and PUMA "G5100870, G51051225" +County and PUMA "G5100890, G51051097" +County and PUMA "G5100910, G51051080" +County and PUMA "G5100930, G51051145" +County and PUMA "G5100950, G51051206" +County and PUMA "G5100970, G51051125" +County and PUMA "G5100990, G51051120" +County and PUMA "G5101010, G51051215" +County and PUMA "G5101030, G51051125" +County and PUMA "G5101050, G51051010" +County and PUMA "G5101070, G51010701" +County and PUMA "G5101070, G51010702" +County and PUMA "G5101070, G51010703" +County and PUMA "G5101090, G51051089" +County and PUMA "G5101110, G51051105" +County and PUMA "G5101130, G51051087" +County and PUMA "G5101150, G51051125" +County and PUMA "G5101170, G51051105" +County and PUMA "G5101190, G51051125" +County and PUMA "G5101210, G51051040" +County and PUMA "G5101250, G51051089" +County and PUMA "G5101270, G51051215" +County and PUMA "G5101310, G51051125" +County and PUMA "G5101330, G51051125" +County and PUMA "G5101350, G51051105" +County and PUMA "G5101370, G51051087" +County and PUMA "G5101390, G51051085" +County and PUMA "G5101410, G51051097" +County and PUMA "G5101430, G51051097" +County and PUMA "G5101450, G51051215" +County and PUMA "G5101470, G51051105" +County and PUMA "G5101490, G51051135" +County and PUMA "G5101530, G51051244" +County and PUMA "G5101530, G51051245" +County and PUMA "G5101530, G51051246" +County and PUMA "G5101550, G51051040" +County and PUMA "G5101570, G51051087" +County and PUMA "G5101590, G51051125" +County and PUMA "G5101610, G51051044" +County and PUMA "G5101610, G51051045" +County and PUMA "G5101630, G51051080" +County and PUMA "G5101650, G51051110" +County and PUMA "G5101670, G51051010" +County and PUMA "G5101690, G51051010" +County and PUMA "G5101710, G51051085" +County and PUMA "G5101730, G51051020" +County and PUMA "G5101750, G51051145" +County and PUMA "G5101770, G51051120" +County and PUMA "G5101790, G51051115" +County and PUMA "G5101810, G51051135" +County and PUMA "G5101830, G51051135" +County and PUMA "G5101850, G51051010" +County and PUMA "G5101870, G51051085" +County and PUMA "G5101910, G51051020" +County and PUMA "G5101930, G51051125" +County and PUMA "G5101950, G51051010" +County and PUMA "G5101970, G51051020" +County and PUMA "G5101990, G51051206" +County and PUMA "G5105100, G51051255" +County and PUMA "G5105200, G51051020" +County and PUMA "G5105300, G51051080" +County and PUMA "G5105400, G51051090" +County and PUMA "G5105500, G51055001" +County and PUMA "G5105500, G51055002" +County and PUMA "G5105700, G51051135" +County and PUMA "G5105800, G51051045" +County and PUMA "G5105900, G51051097" +County and PUMA "G5105950, G51051135" +County and PUMA "G5106000, G51059303" +County and PUMA "G5106100, G51059308" +County and PUMA "G5106200, G51051145" +County and PUMA "G5106300, G51051115" +County and PUMA "G5106400, G51051020" +County and PUMA "G5106500, G51051186" +County and PUMA "G5106600, G51051110" +County and PUMA "G5106700, G51051135" +County and PUMA "G5106780, G51051080" +County and PUMA "G5106800, G51051096" +County and PUMA "G5106830, G51051245" +County and PUMA "G5106850, G51051245" +County and PUMA "G5106900, G51051097" +County and PUMA "G5107000, G51051175" +County and PUMA "G5107100, G51051154" +County and PUMA "G5107100, G51051155" +County and PUMA "G5107200, G51051010" +County and PUMA "G5107300, G51051135" +County and PUMA "G5107350, G51051206" +County and PUMA "G5107400, G51051155" +County and PUMA "G5107500, G51051040" +County and PUMA "G5107600, G51051235" +County and PUMA "G5107700, G51051044" +County and PUMA "G5107750, G51051044" +County and PUMA "G5107900, G51051080" +County and PUMA "G5108000, G51051145" +County and PUMA "G5108100, G51051164" +County and PUMA "G5108100, G51051165" +County and PUMA "G5108100, G51051167" +County and PUMA "G5108200, G51051080" +County and PUMA "G5108300, G51051206" +County and PUMA "G5108400, G51051084" +County and PUMA "G5300010, G53010600" +County and PUMA "G5300030, G53010600" +County and PUMA "G5300050, G53010701" +County and PUMA "G5300050, G53010702" +County and PUMA "G5300050, G53010703" +County and PUMA "G5300070, G53010300" +County and PUMA "G5300090, G53011900" +County and PUMA "G5300110, G53011101" +County and PUMA "G5300110, G53011102" +County and PUMA "G5300110, G53011103" +County and PUMA "G5300110, G53011104" +County and PUMA "G5300130, G53010600" +County and PUMA "G5300150, G53011200" +County and PUMA "G5300170, G53010300" +County and PUMA "G5300190, G53010400" +County and PUMA "G5300210, G53010701" +County and PUMA "G5300210, G53010703" +County and PUMA "G5300230, G53010600" +County and PUMA "G5300250, G53010800" +County and PUMA "G5300270, G53011300" +County and PUMA "G5300290, G53010200" +County and PUMA "G5300310, G53011900" +County and PUMA "G5300330, G53011601" +County and PUMA "G5300330, G53011602" +County and PUMA "G5300330, G53011603" +County and PUMA "G5300330, G53011604" +County and PUMA "G5300330, G53011605" +County and PUMA "G5300330, G53011606" +County and PUMA "G5300330, G53011607" +County and PUMA "G5300330, G53011608" +County and PUMA "G5300330, G53011609" +County and PUMA "G5300330, G53011610" +County and PUMA "G5300330, G53011611" +County and PUMA "G5300330, G53011612" +County and PUMA "G5300330, G53011613" +County and PUMA "G5300330, G53011614" +County and PUMA "G5300330, G53011615" +County and PUMA "G5300330, G53011616" +County and PUMA "G5300350, G53011801" +County and PUMA "G5300350, G53011802" +County and PUMA "G5300370, G53010800" +County and PUMA "G5300390, G53011000" +County and PUMA "G5300410, G53011000" +County and PUMA "G5300430, G53010600" +County and PUMA "G5300450, G53011300" +County and PUMA "G5300470, G53010400" +County and PUMA "G5300490, G53011200" +County and PUMA "G5300510, G53010400" +County and PUMA "G5300530, G53011501" +County and PUMA "G5300530, G53011502" +County and PUMA "G5300530, G53011503" +County and PUMA "G5300530, G53011504" +County and PUMA "G5300530, G53011505" +County and PUMA "G5300530, G53011506" +County and PUMA "G5300530, G53011507" +County and PUMA "G5300550, G53010200" +County and PUMA "G5300570, G53010200" +County and PUMA "G5300590, G53011000" +County and PUMA "G5300610, G53011701" +County and PUMA "G5300610, G53011702" +County and PUMA "G5300610, G53011703" +County and PUMA "G5300610, G53011704" +County and PUMA "G5300610, G53011705" +County and PUMA "G5300610, G53011706" +County and PUMA "G5300630, G53010501" +County and PUMA "G5300630, G53010502" +County and PUMA "G5300630, G53010503" +County and PUMA "G5300630, G53010504" +County and PUMA "G5300650, G53010400" +County and PUMA "G5300670, G53011401" +County and PUMA "G5300670, G53011402" +County and PUMA "G5300690, G53011200" +County and PUMA "G5300710, G53010703" +County and PUMA "G5300730, G53010100" +County and PUMA "G5300750, G53010600" +County and PUMA "G5300770, G53010901" +County and PUMA "G5300770, G53010902" +County and PUMA "G5400010, G54000500" +County and PUMA "G5400030, G54000400" +County and PUMA "G5400050, G54000900" +County and PUMA "G5400070, G54000600" +County and PUMA "G5400090, G54000100" +County and PUMA "G5400110, G54000800" +County and PUMA "G5400130, G54000600" +County and PUMA "G5400150, G54001000" +County and PUMA "G5400170, G54000200" +County and PUMA "G5400190, G54001200" +County and PUMA "G5400210, G54000600" +County and PUMA "G5400230, G54000500" +County and PUMA "G5400250, G54001100" +County and PUMA "G5400270, G54000400" +County and PUMA "G5400290, G54000100" +County and PUMA "G5400310, G54000500" +County and PUMA "G5400330, G54000200" +County and PUMA "G5400350, G54000600" +County and PUMA "G5400370, G54000400" +County and PUMA "G5400390, G54001000" +County and PUMA "G5400410, G54000500" +County and PUMA "G5400430, G54000900" +County and PUMA "G5400450, G54001300" +County and PUMA "G5400470, G54001300" +County and PUMA "G5400490, G54000200" +County and PUMA "G5400510, G54000100" +County and PUMA "G5400530, G54000800" +County and PUMA "G5400550, G54001200" +County and PUMA "G5400570, G54000400" +County and PUMA "G5400590, G54001300" +County and PUMA "G5400610, G54000300" +County and PUMA "G5400630, G54001100" +County and PUMA "G5400650, G54000400" +County and PUMA "G5400670, G54001100" +County and PUMA "G5400690, G54000100" +County and PUMA "G5400710, G54000500" +County and PUMA "G5400730, G54000700" +County and PUMA "G5400750, G54001100" +County and PUMA "G5400770, G54000300" +County and PUMA "G5400790, G54000900" +County and PUMA "G5400810, G54001200" +County and PUMA "G5400830, G54000500" +County and PUMA "G5400850, G54000600" +County and PUMA "G5400870, G54000600" +County and PUMA "G5400890, G54001100" +County and PUMA "G5400910, G54000200" +County and PUMA "G5400930, G54000500" +County and PUMA "G5400950, G54000600" +County and PUMA "G5400970, G54000500" +County and PUMA "G5400990, G54000800" +County and PUMA "G5401010, G54001100" +County and PUMA "G5401030, G54000600" +County and PUMA "G5401050, G54000700" +County and PUMA "G5401070, G54000700" +County and PUMA "G5401090, G54001300" +County and PUMA "G5500010, G55001601" +County and PUMA "G5500030, G55000100" +County and PUMA "G5500050, G55055101" +County and PUMA "G5500070, G55000100" +County and PUMA "G5500090, G55000200" +County and PUMA "G5500090, G55000300" +County and PUMA "G5500110, G55000700" +County and PUMA "G5500130, G55000100" +County and PUMA "G5500150, G55001401" +County and PUMA "G5500170, G55055101" +County and PUMA "G5500170, G55055103" +County and PUMA "G5500190, G55055101" +County and PUMA "G5500210, G55001000" +County and PUMA "G5500230, G55000700" +County and PUMA "G5500250, G55000101" +County and PUMA "G5500250, G55000102" +County and PUMA "G5500250, G55000103" +County and PUMA "G5500270, G55001001" +County and PUMA "G5500290, G55001300" +County and PUMA "G5500310, G55000100" +County and PUMA "G5500330, G55055102" +County and PUMA "G5500350, G55055103" +County and PUMA "G5500370, G55001300" +County and PUMA "G5500390, G55001401" +County and PUMA "G5500410, G55000600" +County and PUMA "G5500430, G55000800" +County and PUMA "G5500450, G55000800" +County and PUMA "G5500470, G55001400" +County and PUMA "G5500490, G55000800" +County and PUMA "G5500510, G55000100" +County and PUMA "G5500530, G55000700" +County and PUMA "G5500550, G55001001" +County and PUMA "G5500570, G55001601" +County and PUMA "G5500590, G55010000" +County and PUMA "G5500610, G55001301" +County and PUMA "G5500630, G55000900" +County and PUMA "G5500650, G55000800" +County and PUMA "G5500670, G55000600" +County and PUMA "G5500690, G55000600" +County and PUMA "G5500710, G55001301" +County and PUMA "G5500730, G55001600" +County and PUMA "G5500750, G55001300" +County and PUMA "G5500770, G55001400" +County and PUMA "G5500780, G55001400" +County and PUMA "G5500790, G55040101" +County and PUMA "G5500790, G55040301" +County and PUMA "G5500790, G55040701" +County and PUMA "G5500790, G55041001" +County and PUMA "G5500790, G55041002" +County and PUMA "G5500790, G55041003" +County and PUMA "G5500790, G55041004" +County and PUMA "G5500790, G55041005" +County and PUMA "G5500810, G55000700" +County and PUMA "G5500830, G55001300" +County and PUMA "G5500850, G55000600" +County and PUMA "G5500870, G55001500" +County and PUMA "G5500890, G55020000" +County and PUMA "G5500910, G55000700" +County and PUMA "G5500930, G55000700" +County and PUMA "G5500950, G55055101" +County and PUMA "G5500970, G55001601" +County and PUMA "G5500990, G55000100" +County and PUMA "G5501010, G55030000" +County and PUMA "G5501030, G55000800" +County and PUMA "G5501050, G55002400" +County and PUMA "G5501070, G55000100" +County and PUMA "G5501090, G55055102" +County and PUMA "G5501110, G55001000" +County and PUMA "G5501130, G55000100" +County and PUMA "G5501150, G55001400" +County and PUMA "G5501170, G55002500" +County and PUMA "G5501190, G55000100" +County and PUMA "G5501210, G55000700" +County and PUMA "G5501230, G55000700" +County and PUMA "G5501250, G55000600" +County and PUMA "G5501270, G55050000" +County and PUMA "G5501290, G55000100" +County and PUMA "G5501310, G55020000" +County and PUMA "G5501330, G55070101" +County and PUMA "G5501330, G55070201" +County and PUMA "G5501330, G55070301" +County and PUMA "G5501350, G55001400" +County and PUMA "G5501370, G55001400" +County and PUMA "G5501390, G55001501" +County and PUMA "G5501410, G55001601" +County and PUMA "G5600010, G56000300" +County and PUMA "G5600030, G56000100" +County and PUMA "G5600050, G56000200" +County and PUMA "G5600070, G56000400" +County and PUMA "G5600090, G56000400" +County and PUMA "G5600110, G56000200" +County and PUMA "G5600130, G56000500" +County and PUMA "G5600150, G56000200" +County and PUMA "G5600170, G56000500" +County and PUMA "G5600190, G56000200" +County and PUMA "G5600210, G56000300" +County and PUMA "G5600230, G56000100" +County and PUMA "G5600250, G56000400" +County and PUMA "G5600270, G56000200" +County and PUMA "G5600290, G56000100" +County and PUMA "G5600310, G56000200" +County and PUMA "G5600330, G56000100" +County and PUMA "G5600350, G56000500" +County and PUMA "G5600370, G56000500" +County and PUMA "G5600390, G56000100" +County and PUMA "G5600410, G56000500" +County and PUMA "G5600430, G56000200" +County and PUMA "G5600450, G56000200" +County and PUMA "G7200010, G72000401" +County and PUMA "G7200030, G72000101" +County and PUMA "G7200050, G72000102" +County and PUMA "G7200070, G72000602" +County and PUMA "G7200090, G72000602" +County and PUMA "G7200110, G72000101" +County and PUMA "G7200130, G72000301" +County and PUMA "G7200150, G72000701" +County and PUMA "G7200170, G72000301" +County and PUMA "G7200190, G72000601" +County and PUMA "G7200210, G72000801" +County and PUMA "G7200210, G72000802" +County and PUMA "G7200230, G72000201" +County and PUMA "G7200250, G72001001" +County and PUMA "G7200270, G72000302" +County and PUMA "G7200290, G72000902" +County and PUMA "G7200310, G72000901" +County and PUMA "G7200310, G72000902" +County and PUMA "G7200330, G72000803" +County and PUMA "G7200350, G72000602" +County and PUMA "G7200370, G72001101" +County and PUMA "G7200390, G72000501" +County and PUMA "G7200410, G72000602" +County and PUMA "G7200430, G72000403" +County and PUMA "G7200450, G72000601" +County and PUMA "G7200470, G72000601" +County and PUMA "G7200490, G72001101" +County and PUMA "G7200510, G72000502" +County and PUMA "G7200530, G72001101" +County and PUMA "G7200540, G72000301" +County and PUMA "G7200550, G72000401" +County and PUMA "G7200570, G72000701" +County and PUMA "G7200590, G72000401" +County and PUMA "G7200610, G72000803" +County and PUMA "G7200630, G72001002" +County and PUMA "G7200650, G72000302" +County and PUMA "G7200670, G72000202" +County and PUMA "G7200690, G72001102" +County and PUMA "G7200710, G72000102" +County and PUMA "G7200730, G72000402" +County and PUMA "G7200750, G72000403" +County and PUMA "G7200770, G72001002" +County and PUMA "G7200790, G72000201" +County and PUMA "G7200810, G72000302" +County and PUMA "G7200830, G72000202" +County and PUMA "G7200850, G72001002" +County and PUMA "G7200870, G72000902" +County and PUMA "G7200890, G72001101" +County and PUMA "G7200910, G72000501" +County and PUMA "G7200930, G72000202" +County and PUMA "G7200950, G72000701" +County and PUMA "G7200970, G72000202" +County and PUMA "G7200990, G72000101" +County and PUMA "G7201010, G72000501" +County and PUMA "G7201030, G72001102" +County and PUMA "G7201050, G72000601" +County and PUMA "G7201070, G72000601" +County and PUMA "G7201090, G72000701" +County and PUMA "G7201110, G72000401" +County and PUMA "G7201130, G72000402" +County and PUMA "G7201150, G72000102" +County and PUMA "G7201170, G72000101" +County and PUMA "G7201190, G72001101" +County and PUMA "G7201210, G72000201" +County and PUMA "G7201230, G72000701" +County and PUMA "G7201250, G72000201" +County and PUMA "G7201270, G72000804" +County and PUMA "G7201270, G72000805" +County and PUMA "G7201270, G72000806" +County and PUMA "G7201290, G72001002" +County and PUMA "G7201310, G72000101" +County and PUMA "G7201330, G72000403" +County and PUMA "G7201350, G72000503" +County and PUMA "G7201370, G72000502" +County and PUMA "G7201390, G72000902" +County and PUMA "G7201410, G72000302" +County and PUMA "G7201430, G72000503" +County and PUMA "G7201450, G72000501" +County and PUMA "G7201470, G72001101" +County and PUMA "G7201490, G72000403" +County and PUMA "G7201510, G72001102" +County and PUMA "G7201530, G72000401" +Custom State AK +Custom State Others +Dehumidifier "65 pints/day, 50% RH" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=1.8 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 +Dehumidifier "65 pints/day, 50% RH, 2.0 EF" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=2 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 +Dehumidifier "65 pints/day, 60% RH" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=1.8 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.6 dehumidifier_fraction_dehumidification_load_served=1 +Dehumidifier None ResStockArguments dehumidifier_type=none dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=0 dehumidifier_capacity=40 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 +Dishwasher 144 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=144 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=13 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 199 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=199 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=18 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 220 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=220 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=19 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 255 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=255 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=21 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 270 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=270 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=22 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 290 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=290 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=23 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 318 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=318 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=25 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher None ResStockArguments dishwasher_present=false dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=0 dishwasher_label_electric_rate=0 dishwasher_label_gas_rate=0 dishwasher_label_annual_gas_cost=0 dishwasher_label_usage=0 dishwasher_place_setting_capacity=0 +Dishwasher Void +Dishwasher Usage Level 100% Usage ResStockArguments dishwasher_usage_multiplier=1.0 +Dishwasher Usage Level 120% Usage ResStockArguments dishwasher_usage_multiplier=1.2 +Dishwasher Usage Level 80% Usage ResStockArguments dishwasher_usage_multiplier=0.8 +Door Area 20 ft^2 ResStockArguments door_area=20 +Door Area 30 ft^2 ResStockArguments door_area=30 +Door Area 40 ft^2 ResStockArguments door_area=40 +Doors Fiberglass ResStockArguments door_rvalue=5 +Doors Steel ResStockArguments door_rvalue=5 +Doors Wood ResStockArguments door_rvalue=2.1 +Duct Leakage and Insulation "0% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0 ducts_return_leakage_to_outside_value=0 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "10% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "10% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "10% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "10% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "14% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "14% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "14% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "14% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "15% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "15% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "15% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "15% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "20% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "20% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "20% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "20% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "22.5% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "22.5% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "22.5% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "22.5% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "24% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "24% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "24% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "24% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "30% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "30% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "30% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "30% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "34% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "34% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "34% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "34% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "53% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "53% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "53% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "53% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "6% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "6% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "6% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "6% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "7.5% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "7.5% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "7.5% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "7.5% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "85% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "85% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "85% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation "85% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Leakage and Insulation None ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0 ducts_return_leakage_to_outside_value=0 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto +Duct Location Attic ResStockArguments ducts_supply_location=attic ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=attic ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location Crawlspace ResStockArguments ducts_supply_location=crawlspace ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=crawlspace ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location Garage ResStockArguments ducts_supply_location=garage ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=garage ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location Heated Basement ResStockArguments ducts_supply_location=basement - conditioned ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=basement - conditioned ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location Living Space ResStockArguments ducts_supply_location=conditioned space ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=conditioned space ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location None ResStockArguments ducts_supply_location=conditioned space ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=conditioned space ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=0 +Duct Location Unheated Basement ResStockArguments ducts_supply_location=basement - unconditioned ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=basement - unconditioned ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Eaves 1 ft ResStockArguments geometry_eaves_depth=1 +Eaves 2 ft ResStockArguments geometry_eaves_depth=2 +Eaves 3 ft ResStockArguments geometry_eaves_depth=3 +Eaves None ResStockArguments geometry_eaves_depth=0 +Electric Vehicle "EV, 4000 miles, 0.3 kWh/mi" ResStockArguments misc_plug_loads_vehicle_present=true misc_plug_loads_vehicle_annual_kwh=1481 misc_plug_loads_vehicle_usage_multiplier=1.0 misc_plug_loads_vehicle_2_usage_multiplier=1.0 +Electric Vehicle "EV, 5000 miles, 0.3 kWh/mi" ResStockArguments misc_plug_loads_vehicle_present=true misc_plug_loads_vehicle_annual_kwh=1852 misc_plug_loads_vehicle_usage_multiplier=1.0 misc_plug_loads_vehicle_2_usage_multiplier=1.0 +Electric Vehicle None ResStockArguments misc_plug_loads_vehicle_present=false misc_plug_loads_vehicle_annual_kwh=0 misc_plug_loads_vehicle_usage_multiplier=0 misc_plug_loads_vehicle_2_usage_multiplier=0 +Energystar Climate Zone 2023 North-Central +Energystar Climate Zone 2023 Northern +Energystar Climate Zone 2023 South-Central +Energystar Climate Zone 2023 Southern +Energystar Climate Zone 2023 Void +Federal Poverty Level 0-100% +Federal Poverty Level 100-150% +Federal Poverty Level 150-200% +Federal Poverty Level 200-300% +Federal Poverty Level 300-400% +Federal Poverty Level 400%+ +Federal Poverty Level Not Available +Generation And Emissions Assessment Region AZNMc +Generation And Emissions Assessment Region CAMXc +Generation And Emissions Assessment Region ERCTc +Generation And Emissions Assessment Region FRCCc +Generation And Emissions Assessment Region MROEc +Generation And Emissions Assessment Region MROWc +Generation And Emissions Assessment Region NEWEc +Generation And Emissions Assessment Region NWPPc +Generation And Emissions Assessment Region NYSTc +Generation And Emissions Assessment Region None +Generation And Emissions Assessment Region RFCEc +Generation And Emissions Assessment Region RFCMc +Generation And Emissions Assessment Region RFCWc +Generation And Emissions Assessment Region RMPAc +Generation And Emissions Assessment Region SPNOc +Generation And Emissions Assessment Region SPSOc +Generation And Emissions Assessment Region SRMVc +Generation And Emissions Assessment Region SRMWc +Generation And Emissions Assessment Region SRSOc +Generation And Emissions Assessment Region SRTVc +Generation And Emissions Assessment Region SRVCc +Geometry Attic Type Finished Attic or Cathedral Ceilings ResStockArguments geometry_attic_type=ConditionedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 +Geometry Attic Type None ResStockArguments geometry_attic_type=FlatRoof geometry_roof_type=gable geometry_roof_pitch=6:12 +Geometry Attic Type Unvented Attic ResStockArguments geometry_attic_type=UnventedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 +Geometry Attic Type Vented Attic ResStockArguments geometry_attic_type=VentedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 +Geometry Building Horizontal Location MF Left ResStockArguments geometry_unit_horizontal_location=Left +Geometry Building Horizontal Location MF Middle ResStockArguments geometry_unit_horizontal_location=Middle +Geometry Building Horizontal Location MF None +Geometry Building Horizontal Location MF Not Applicable ResStockArguments geometry_unit_horizontal_location=None +Geometry Building Horizontal Location MF Right ResStockArguments geometry_unit_horizontal_location=Right +Geometry Building Horizontal Location SFA Left ResStockArguments geometry_unit_horizontal_location=Left +Geometry Building Horizontal Location SFA Middle ResStockArguments geometry_unit_horizontal_location=Middle +Geometry Building Horizontal Location SFA None +Geometry Building Horizontal Location SFA Right ResStockArguments geometry_unit_horizontal_location=Right +Geometry Building Level MF Bottom ResStockArguments geometry_unit_level=Bottom +Geometry Building Level MF Middle ResStockArguments geometry_unit_level=Middle +Geometry Building Level MF None +Geometry Building Level MF Top ResStockArguments geometry_unit_level=Top +Geometry Building Number Units MF 10 ResStockArguments geometry_building_num_units=10 +Geometry Building Number Units MF 102 ResStockArguments geometry_building_num_units=102 +Geometry Building Number Units MF 11 ResStockArguments geometry_building_num_units=11 +Geometry Building Number Units MF 116 ResStockArguments geometry_building_num_units=116 +Geometry Building Number Units MF 12 ResStockArguments geometry_building_num_units=12 +Geometry Building Number Units MF 13 ResStockArguments geometry_building_num_units=13 +Geometry Building Number Units MF 14 ResStockArguments geometry_building_num_units=14 +Geometry Building Number Units MF 15 ResStockArguments geometry_building_num_units=15 +Geometry Building Number Units MF 16 ResStockArguments geometry_building_num_units=16 +Geometry Building Number Units MF 17 ResStockArguments geometry_building_num_units=17 +Geometry Building Number Units MF 18 ResStockArguments geometry_building_num_units=18 +Geometry Building Number Units MF 183 ResStockArguments geometry_building_num_units=183 +Geometry Building Number Units MF 19 ResStockArguments geometry_building_num_units=19 +Geometry Building Number Units MF 2 ResStockArguments geometry_building_num_units=2 +Geometry Building Number Units MF 20 ResStockArguments geometry_building_num_units=20 +Geometry Building Number Units MF 21 ResStockArguments geometry_building_num_units=21 +Geometry Building Number Units MF 24 ResStockArguments geometry_building_num_units=24 +Geometry Building Number Units MF 3 ResStockArguments geometry_building_num_units=3 +Geometry Building Number Units MF 30 ResStockArguments geometry_building_num_units=30 +Geometry Building Number Units MF 323 ResStockArguments geometry_building_num_units=323 +Geometry Building Number Units MF 326 ResStockArguments geometry_building_num_units=326 +Geometry Building Number Units MF 36 ResStockArguments geometry_building_num_units=36 +Geometry Building Number Units MF 4 ResStockArguments geometry_building_num_units=4 +Geometry Building Number Units MF 43 ResStockArguments geometry_building_num_units=43 +Geometry Building Number Units MF 5 ResStockArguments geometry_building_num_units=5 +Geometry Building Number Units MF 6 ResStockArguments geometry_building_num_units=6 +Geometry Building Number Units MF 67 ResStockArguments geometry_building_num_units=67 +Geometry Building Number Units MF 7 ResStockArguments geometry_building_num_units=7 +Geometry Building Number Units MF 8 ResStockArguments geometry_building_num_units=8 +Geometry Building Number Units MF 9 ResStockArguments geometry_building_num_units=9 +Geometry Building Number Units MF None +Geometry Building Number Units SFA 10 ResStockArguments geometry_building_num_units=10 +Geometry Building Number Units SFA 12 ResStockArguments geometry_building_num_units=12 +Geometry Building Number Units SFA 144 ResStockArguments geometry_building_num_units=144 +Geometry Building Number Units SFA 15 ResStockArguments geometry_building_num_units=15 +Geometry Building Number Units SFA 16 ResStockArguments geometry_building_num_units=16 +Geometry Building Number Units SFA 2 ResStockArguments geometry_building_num_units=2 +Geometry Building Number Units SFA 20 ResStockArguments geometry_building_num_units=20 +Geometry Building Number Units SFA 24 ResStockArguments geometry_building_num_units=24 +Geometry Building Number Units SFA 3 ResStockArguments geometry_building_num_units=3 +Geometry Building Number Units SFA 30 ResStockArguments geometry_building_num_units=30 +Geometry Building Number Units SFA 36 ResStockArguments geometry_building_num_units=36 +Geometry Building Number Units SFA 4 ResStockArguments geometry_building_num_units=4 +Geometry Building Number Units SFA 5 ResStockArguments geometry_building_num_units=5 +Geometry Building Number Units SFA 50 ResStockArguments geometry_building_num_units=50 +Geometry Building Number Units SFA 6 ResStockArguments geometry_building_num_units=6 +Geometry Building Number Units SFA 60 ResStockArguments geometry_building_num_units=60 +Geometry Building Number Units SFA 7 ResStockArguments geometry_building_num_units=7 +Geometry Building Number Units SFA 8 ResStockArguments geometry_building_num_units=8 +Geometry Building Number Units SFA 9 ResStockArguments geometry_building_num_units=9 +Geometry Building Number Units SFA 90 ResStockArguments geometry_building_num_units=90 +Geometry Building Number Units SFA None +Geometry Building Type ACS 10 to 19 Unit +Geometry Building Type ACS 2 Unit +Geometry Building Type ACS 20 to 49 Unit +Geometry Building Type ACS 3 or 4 Unit +Geometry Building Type ACS 5 to 9 Unit +Geometry Building Type ACS 50 or more Unit +Geometry Building Type ACS Mobile Home +Geometry Building Type ACS Single-Family Attached +Geometry Building Type ACS Single-Family Detached +Geometry Building Type Height "Multifamily with 5+ units, 1-3 stories" +Geometry Building Type Height "Multifamily with 5+ units, 4-7 stories" +Geometry Building Type Height "Multifamily with 5+ units, 8+ stories" +Geometry Building Type Height Mobile Home +Geometry Building Type Height Multifamily with 2-4 Units +Geometry Building Type Height Single-Family Attached +Geometry Building Type Height Single-Family Detached +Geometry Building Type RECS Mobile Home ResStockArguments geometry_unit_type=manufactured home geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=1.8 +Geometry Building Type RECS Multi-Family with 2 - 4 Units ResStockArguments geometry_unit_type=apartment unit geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 +Geometry Building Type RECS Multi-Family with 5+ Units ResStockArguments geometry_unit_type=apartment unit geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 +Geometry Building Type RECS Single-Family Attached ResStockArguments geometry_unit_type=single-family attached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 +Geometry Building Type RECS Single-Family Detached ResStockArguments geometry_unit_type=single-family detached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=1.8 +Geometry Floor Area 0-499 ResStockArguments geometry_unit_cfa_bin=0-499 geometry_unit_cfa=auto geometry_garage_protrusion=0.72 +Geometry Floor Area 1000-1499 ResStockArguments geometry_unit_cfa_bin=1000-1499 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 1500-1999 ResStockArguments geometry_unit_cfa_bin=1500-1999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 2000-2499 ResStockArguments geometry_unit_cfa_bin=2000-2499 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 2500-2999 ResStockArguments geometry_unit_cfa_bin=2500-2999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 3000-3999 ResStockArguments geometry_unit_cfa_bin=3000-3999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 4000+ ResStockArguments geometry_unit_cfa_bin=4000+ geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 500-749 ResStockArguments geometry_unit_cfa_bin=500-749 geometry_unit_cfa=auto geometry_garage_protrusion=0.75 +Geometry Floor Area 750-999 ResStockArguments geometry_unit_cfa_bin=750-999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area Bin 0-1499 +Geometry Floor Area Bin 1500-2499 +Geometry Floor Area Bin 2500-3999 +Geometry Floor Area Bin 4000+ +Geometry Foundation Type Ambient ResStockArguments geometry_foundation_type=Ambient geometry_foundation_height=4 geometry_foundation_height_above_grade=4 geometry_rim_joist_height=0 +Geometry Foundation Type Conditioned Crawlspace ResStockArguments geometry_foundation_type=ConditionedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Foundation Type Heated Basement ResStockArguments geometry_foundation_type=ConditionedBasement geometry_foundation_height=8 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Foundation Type Slab ResStockArguments geometry_foundation_type=SlabOnGrade geometry_foundation_height=0 geometry_foundation_height_above_grade=0 geometry_rim_joist_height=0 +Geometry Foundation Type Unheated Basement ResStockArguments geometry_foundation_type=UnconditionedBasement geometry_foundation_height=8 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Foundation Type Unvented Crawlspace ResStockArguments geometry_foundation_type=UnventedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Foundation Type Vented Crawlspace ResStockArguments geometry_foundation_type=VentedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Garage 1 Car ResStockArguments geometry_garage_width=12 geometry_garage_depth=24 geometry_garage_position=Right +Geometry Garage 2 Car ResStockArguments geometry_garage_width=24 geometry_garage_depth=24 geometry_garage_position=Right +Geometry Garage 3 Car ResStockArguments geometry_garage_width=36 geometry_garage_depth=24 geometry_garage_position=Right +Geometry Garage None ResStockArguments geometry_garage_width=0 geometry_garage_depth=24 geometry_garage_position=Right +Geometry Heated Basement No +Geometry Heated Basement Yes +Geometry Number Units ACS bins 10 to 19 Units +Geometry Number Units ACS bins 20 to 49 Units +Geometry Number Units ACS bins 5 to 9 Units +Geometry Number Units ACS bins 50 or more +Geometry Number Units ACS bins <5 +Geometry Space Combination "Mobile Home, Ambient, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Slab, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Slab, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage" +Geometry Space Combination Void +Geometry Stories 1 ResStockArguments geometry_num_floors_above_grade=1 +Geometry Stories 10 ResStockArguments geometry_num_floors_above_grade=10 +Geometry Stories 11 ResStockArguments geometry_num_floors_above_grade=11 +Geometry Stories 12 ResStockArguments geometry_num_floors_above_grade=12 +Geometry Stories 13 ResStockArguments geometry_num_floors_above_grade=13 +Geometry Stories 14 ResStockArguments geometry_num_floors_above_grade=14 +Geometry Stories 15 ResStockArguments geometry_num_floors_above_grade=15 +Geometry Stories 2 ResStockArguments geometry_num_floors_above_grade=2 +Geometry Stories 20 ResStockArguments geometry_num_floors_above_grade=20 +Geometry Stories 21 ResStockArguments geometry_num_floors_above_grade=21 +Geometry Stories 3 ResStockArguments geometry_num_floors_above_grade=3 +Geometry Stories 35 ResStockArguments geometry_num_floors_above_grade=35 +Geometry Stories 4 ResStockArguments geometry_num_floors_above_grade=4 +Geometry Stories 5 ResStockArguments geometry_num_floors_above_grade=5 +Geometry Stories 6 ResStockArguments geometry_num_floors_above_grade=6 +Geometry Stories 7 ResStockArguments geometry_num_floors_above_grade=7 +Geometry Stories 8 ResStockArguments geometry_num_floors_above_grade=8 +Geometry Stories 9 ResStockArguments geometry_num_floors_above_grade=9 +Geometry Stories Low Rise 1 +Geometry Stories Low Rise 2 +Geometry Stories Low Rise 3 +Geometry Stories Low Rise 4+ +Geometry Story Bin 8+ +Geometry Story Bin <8 +Geometry Wall Exterior Finish "Aluminum, Light" ResStockArguments wall_siding_type=aluminum siding wall_color=light exterior_finish_r=0.6 +Geometry Wall Exterior Finish "Brick, Light" ResStockArguments wall_siding_type=brick veneer wall_color=light exterior_finish_r=0.7 +Geometry Wall Exterior Finish "Brick, Medium/Dark" ResStockArguments wall_siding_type=brick veneer wall_color=medium dark exterior_finish_r=0.7 +Geometry Wall Exterior Finish "Fiber-Cement, Light" ResStockArguments wall_siding_type=fiber cement siding wall_color=light exterior_finish_r=0.2 +Geometry Wall Exterior Finish "Shingle, Asbestos, Medium" ResStockArguments wall_siding_type=asbestos siding wall_color=medium exterior_finish_r=0.6 +Geometry Wall Exterior Finish "Shingle, Composition, Medium" ResStockArguments wall_siding_type=composite shingle siding wall_color=medium exterior_finish_r=0.6 +Geometry Wall Exterior Finish "Stucco, Light" ResStockArguments wall_siding_type=stucco wall_color=light exterior_finish_r=0.2 +Geometry Wall Exterior Finish "Stucco, Medium/Dark" ResStockArguments wall_siding_type=stucco wall_color=medium dark exterior_finish_r=0.2 +Geometry Wall Exterior Finish "Vinyl, Light" ResStockArguments wall_siding_type=vinyl siding wall_color=light exterior_finish_r=0.6 +Geometry Wall Exterior Finish "Wood, Medium/Dark" ResStockArguments wall_siding_type=wood siding wall_color=medium dark exterior_finish_r=1.4 +Geometry Wall Exterior Finish None ResStockArguments wall_siding_type=none wall_color=medium exterior_finish_r=0 +Geometry Wall Type Brick +Geometry Wall Type Concrete +Geometry Wall Type Steel Frame +Geometry Wall Type Void +Geometry Wall Type Wood Frame +Ground Thermal Conductivity 0.5 ResStockArguments site_ground_conductivity=0.5 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 0.8 ResStockArguments site_ground_conductivity=0.8 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 1.1 ResStockArguments site_ground_conductivity=1.1 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 1.4 ResStockArguments site_ground_conductivity=1.4 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 1.7 ResStockArguments site_ground_conductivity=1.7 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 2.0 ResStockArguments site_ground_conductivity=2.0 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 2.3 ResStockArguments site_ground_conductivity=2.3 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 2.6 ResStockArguments site_ground_conductivity=2.6 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +HVAC Cooling Autosizing Factor 40% Oversized ResStockArguments cooling_system_cooling_autosizing_factor=1.4 heat_pump_cooling_autosizing_factor=auto +HVAC Cooling Autosizing Factor None +HVAC Cooling Efficiency "AC, SEER 10" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=10 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 13" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 14" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=14 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 15" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=15 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 18" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=18 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 24.5" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=24.5 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 8" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=8 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "Room AC, EER 10.7" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=10.7 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "Room AC, EER 12.0" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=12 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "Room AC, EER 8.5" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=8.5 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "Room AC, EER 9.8" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=9.8 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency Ducted Heat Pump ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency Evaporative Cooler ResStockArguments cooling_system_type=evaporative cooler cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency Non-Ducted Heat Pump ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency None ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency Shared Cooling +HVAC Cooling Partial Space Conditioning 100% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=1 +HVAC Cooling Partial Space Conditioning 20% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.2 +HVAC Cooling Partial Space Conditioning 40% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.4 +HVAC Cooling Partial Space Conditioning 60% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.6 +HVAC Cooling Partial Space Conditioning 80% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.8 +HVAC Cooling Partial Space Conditioning <10% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.1 +HVAC Cooling Partial Space Conditioning None ResStockArguments cooling_system_fraction_cool_load_served=0 +HVAC Cooling Partial Space Conditioning Void +HVAC Cooling Type Central AC +HVAC Cooling Type Ducted Heat Pump +HVAC Cooling Type Evaporative or Swamp Cooler +HVAC Cooling Type Non-Ducted Heat Pump +HVAC Cooling Type None +HVAC Cooling Type Room AC +HVAC Detailed Performance Data Default ResStockArguments hvac_perf_data_capacity_type=auto hvac_perf_data_heating_outdoor_temperatures=auto hvac_perf_data_heating_min_speed_capacities=auto hvac_perf_data_heating_max_speed_capacities=auto hvac_perf_data_heating_min_speed_cops=auto hvac_perf_data_heating_max_speed_cops=auto hvac_perf_data_cooling_outdoor_temperatures=auto hvac_perf_data_cooling_min_speed_capacities=auto hvac_perf_data_cooling_max_speed_capacities=auto hvac_perf_data_cooling_min_speed_cops=auto hvac_perf_data_cooling_max_speed_cops=auto +HVAC Has Ducts No ResStockArguments hvac_blower_fan_watts_per_cfm=auto +HVAC Has Ducts Void +HVAC Has Ducts Yes ResStockArguments hvac_blower_fan_watts_per_cfm=auto +HVAC Has Shared System Cooling Only +HVAC Has Shared System Heating Only +HVAC Has Shared System Heating and Cooling +HVAC Has Shared System None +HVAC Has Shared System Void +HVAC Has Zonal Electric Heating No +HVAC Has Zonal Electric Heating Yes +HVAC Heating Autosizing Factor 40% Oversized ResStockArguments heating_system_heating_autosizing_factor=1.4 heating_system_2_heating_autosizing_factor=auto heat_pump_heating_autosizing_factor=auto heat_pump_backup_heating_autosizing_factor=auto +HVAC Heating Autosizing Factor None +HVAC Heating Efficiency "ASHP, SEER 10, 6.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=6.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 10.3, 7.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 11.5, 7.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=11.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 13, 7.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=13 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 13, 8.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=13 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 14, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 14.3, 8.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 15, 8.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 15, 9.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 16, 9.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 17, 8.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 18, 9.3 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 22, 10 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=10 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=22 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 14, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Electric Baseboard, 100% Efficiency" ResStockArguments heating_system_type=ElectricResistance heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Electric Boiler, 100% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Electric Furnace, 100% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Electric Wall Furnace, 100% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 72% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.72 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.76 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.8 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 82% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.82 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 85% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.85 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.9 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 95% AFUE, OAT Reset" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.95 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 96% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.96 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 60% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.6 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 68% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.68 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 72% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.72 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 76% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.76 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 80% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.8 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 85% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.85 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 90% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.9 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 92.5% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.925 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 96% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.96 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Wall/Floor Furnace, 60% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=0.6 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Wall/Floor Furnace, 68% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=0.68 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "GSHP, EER 16.6, COP 3.6" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=3.6 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=16.6 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=vertical geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "GSHP, EER 20.2, COP 4.2" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=4.2 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=20.2 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=vertical geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 14.5, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 14.5, 8.2 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 17, 9.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 17, 9.5 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 18.0, 9.6 HSPF, 60% Conditioned" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.6 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=0.6 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=0.6 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 18.0, 9.6 HSPF, 60% Conditioned, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.6 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=0.6 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=0.6 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 25, 12.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=12.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=25.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 25, 12.7 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=12.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=25.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 29.3, 14 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=14 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=29.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 29.3, 14 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=14 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=29.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 33, 13.3 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=13.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=33.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 33, 13.3 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=13.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=33.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency None ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=6.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency Shared Heating +HVAC Heating Efficiency Void +HVAC Heating Type Ducted Heat Pump +HVAC Heating Type Ducted Heating +HVAC Heating Type Non-Ducted Heat Pump +HVAC Heating Type Non-Ducted Heating +HVAC Heating Type None +HVAC Heating Type And Fuel Electricity ASHP +HVAC Heating Type And Fuel Electricity Baseboard +HVAC Heating Type And Fuel Electricity Electric Boiler +HVAC Heating Type And Fuel Electricity Electric Furnace +HVAC Heating Type And Fuel Electricity Electric Wall Furnace +HVAC Heating Type And Fuel Electricity MSHP +HVAC Heating Type And Fuel Electricity Other +HVAC Heating Type And Fuel Electricity Shared Heating +HVAC Heating Type And Fuel Fuel Oil Fuel Boiler +HVAC Heating Type And Fuel Fuel Oil Fuel Furnace +HVAC Heating Type And Fuel Fuel Oil Fuel Wall/Floor Furnace +HVAC Heating Type And Fuel Fuel Oil Shared Heating +HVAC Heating Type And Fuel Natural Gas Fuel Boiler +HVAC Heating Type And Fuel Natural Gas Fuel Furnace +HVAC Heating Type And Fuel Natural Gas Fuel Wall/Floor Furnace +HVAC Heating Type And Fuel Natural Gas Shared Heating +HVAC Heating Type And Fuel None +HVAC Heating Type And Fuel Other Fuel Fuel Boiler +HVAC Heating Type And Fuel Other Fuel Fuel Furnace +HVAC Heating Type And Fuel Other Fuel Fuel Wall/Floor Furnace +HVAC Heating Type And Fuel Other Fuel Shared Heating +HVAC Heating Type And Fuel Propane Fuel Boiler +HVAC Heating Type And Fuel Propane Fuel Furnace +HVAC Heating Type And Fuel Propane Fuel Wall/Floor Furnace +HVAC Heating Type And Fuel Propane Shared Heating +HVAC Heating Type And Fuel Void +HVAC Secondary Heating Efficiency "Electric Baseboard, 100% Efficiency" ResStockArguments heating_system_2_type=ElectricResistance heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Electric Portable Heater, 100% Efficiency" ResStockArguments heating_system_2_type=SpaceHeater heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 60% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.76 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.8 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.90 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 92.5% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.925 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Fireplace, 60% AFUE" ResStockArguments heating_system_2_type=Fireplace heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Furnace, 60% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Furnace, 76% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.76 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Furnace, 80% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.8 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Furnace, 92.5% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.925 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency None ResStockArguments heating_system_2_type=none heating_system_2_heating_efficiency=0 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency Shared Heating ResStockArguments heating_system_2_type=none heating_system_2_heating_efficiency=0 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency Void +HVAC Secondary Heating Fuel Electricity ResStockArguments heating_system_2_fuel=electricity +HVAC Secondary Heating Fuel Fuel Oil ResStockArguments heating_system_2_fuel=fuel oil +HVAC Secondary Heating Fuel Natural Gas ResStockArguments heating_system_2_fuel=natural gas +HVAC Secondary Heating Fuel None ResStockArguments heating_system_2_fuel=electricity +HVAC Secondary Heating Fuel Other Fuel ResStockArguments heating_system_2_fuel=wood +HVAC Secondary Heating Fuel Propane ResStockArguments heating_system_2_fuel=propane +HVAC Secondary Heating Fuel Wood ResStockArguments heating_system_2_fuel=wood +HVAC Secondary Heating Partial Space Conditioning 0% ResStockArguments heating_system_2_fraction_heat_load_served=0 +HVAC Secondary Heating Partial Space Conditioning 10% ResStockArguments heating_system_2_fraction_heat_load_served=0.1 +HVAC Secondary Heating Partial Space Conditioning 20% ResStockArguments heating_system_2_fraction_heat_load_served=0.2 +HVAC Secondary Heating Partial Space Conditioning 30% ResStockArguments heating_system_2_fraction_heat_load_served=0.3 +HVAC Secondary Heating Partial Space Conditioning 40% ResStockArguments heating_system_2_fraction_heat_load_served=0.4 +HVAC Secondary Heating Partial Space Conditioning 49% ResStockArguments heating_system_2_fraction_heat_load_served=0.49 +HVAC Secondary Heating Partial Space Conditioning None ResStockArguments heating_system_2_fraction_heat_load_served=0 +HVAC Secondary Heating Partial Space Conditioning Void +HVAC Secondary Heating Type Ducted Heating +HVAC Secondary Heating Type Non-Ducted Heating +HVAC Secondary Heating Type None +HVAC Shared Efficiencies "Boiler Baseboards Heating Only, Electricity" ResStockArguments heating_system_type=Shared Boiler w/ Baseboard heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Shared Efficiencies "Boiler Baseboards Heating Only, Fuel" ResStockArguments heating_system_type=Shared Boiler w/ Baseboard heating_system_heating_efficiency=0.78 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Shared Efficiencies "Fan Coil Heating and Cooling, Electricity" ResStockArguments heating_system_type=Shared Boiler w/ Ductless Fan Coil heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Shared Efficiencies "Fan Coil Heating and Cooling, Fuel" ResStockArguments heating_system_type=Shared Boiler w/ Ductless Fan Coil heating_system_heating_efficiency=0.78 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Shared Efficiencies Fan Coil Cooling Only ResStockArguments cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false +HVAC Shared Efficiencies None +HVAC Shared Efficiencies Void +HVAC System Is Faulted No +HVAC System Is Faulted Yes +HVAC System Is Scaled No +HVAC System Is Scaled Yes +HVAC System Single Speed AC Airflow 154.8 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=154.8 +HVAC System Single Speed AC Airflow 204.4 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=204.4 +HVAC System Single Speed AC Airflow 254.0 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=254.0 +HVAC System Single Speed AC Airflow 303.5 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=303.5 +HVAC System Single Speed AC Airflow 353.1 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=353.1 +HVAC System Single Speed AC Airflow 402.7 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=402.7 +HVAC System Single Speed AC Airflow 452.3 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=452.3 +HVAC System Single Speed AC Airflow 501.9 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=501.9 +HVAC System Single Speed AC Airflow 551.5 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=551.5 +HVAC System Single Speed AC Airflow 601.0 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=601.0 +HVAC System Single Speed AC Airflow 650.6 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=650.6 +HVAC System Single Speed AC Airflow 700.2 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=700.2 +HVAC System Single Speed AC Airflow None +HVAC System Single Speed AC Charge 0.570 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.570 +HVAC System Single Speed AC Charge 0.709 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.709 +HVAC System Single Speed AC Charge 0.848 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.848 +HVAC System Single Speed AC Charge 0.988 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.988 +HVAC System Single Speed AC Charge 1.127 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.127 +HVAC System Single Speed AC Charge 1.266 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.266 +HVAC System Single Speed AC Charge 1.405 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.405 +HVAC System Single Speed AC Charge None +HVAC System Single Speed ASHP Airflow 154.8 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=154.8 +HVAC System Single Speed ASHP Airflow 204.4 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=204.4 +HVAC System Single Speed ASHP Airflow 254.0 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=254.0 +HVAC System Single Speed ASHP Airflow 303.5 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=303.5 +HVAC System Single Speed ASHP Airflow 353.1 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=353.1 +HVAC System Single Speed ASHP Airflow 402.7 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=402.7 +HVAC System Single Speed ASHP Airflow 452.3 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=452.3 +HVAC System Single Speed ASHP Airflow 501.9 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=501.9 +HVAC System Single Speed ASHP Airflow 551.5 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=551.5 +HVAC System Single Speed ASHP Airflow 601.0 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=601.0 +HVAC System Single Speed ASHP Airflow 650.6 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=650.6 +HVAC System Single Speed ASHP Airflow 700.2 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=700.2 +HVAC System Single Speed ASHP Airflow None +HVAC System Single Speed ASHP Charge 0.570 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.570 +HVAC System Single Speed ASHP Charge 0.709 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.709 +HVAC System Single Speed ASHP Charge 0.848 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.848 +HVAC System Single Speed ASHP Charge 0.988 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.988 +HVAC System Single Speed ASHP Charge 1.127 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.127 +HVAC System Single Speed ASHP Charge 1.266 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.266 +HVAC System Single Speed ASHP Charge 1.405 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.405 +HVAC System Single Speed ASHP Charge None +Has PV No +Has PV Yes +Heat Pump Backup Use Existing System ResStockArguments heat_pump_backup_use_existing_system=true +Heating Fuel Electricity ResStockArguments heating_system_fuel=electricity +Heating Fuel Fuel Oil ResStockArguments heating_system_fuel=fuel oil +Heating Fuel Natural Gas ResStockArguments heating_system_fuel=natural gas +Heating Fuel None ResStockArguments heating_system_fuel=natural gas +Heating Fuel Other Fuel ResStockArguments heating_system_fuel=wood +Heating Fuel Propane ResStockArguments heating_system_fuel=propane +Heating Fuel Wood ResStockArguments heating_system_fuel=wood +Heating Setpoint 55F ResStockArguments hvac_control_heating_weekday_setpoint_temp=55 hvac_control_heating_weekend_setpoint_temp=55 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 60F ResStockArguments hvac_control_heating_weekday_setpoint_temp=60 hvac_control_heating_weekend_setpoint_temp=60 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 62F ResStockArguments hvac_control_heating_weekday_setpoint_temp=62 hvac_control_heating_weekend_setpoint_temp=62 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 63F ResStockArguments hvac_control_heating_weekday_setpoint_temp=63 hvac_control_heating_weekend_setpoint_temp=63 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 64F ResStockArguments hvac_control_heating_weekday_setpoint_temp=64 hvac_control_heating_weekend_setpoint_temp=64 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 65F ResStockArguments hvac_control_heating_weekday_setpoint_temp=65 hvac_control_heating_weekend_setpoint_temp=65 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 66F ResStockArguments hvac_control_heating_weekday_setpoint_temp=66 hvac_control_heating_weekend_setpoint_temp=66 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 67F ResStockArguments hvac_control_heating_weekday_setpoint_temp=67 hvac_control_heating_weekend_setpoint_temp=67 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 68F ResStockArguments hvac_control_heating_weekday_setpoint_temp=68 hvac_control_heating_weekend_setpoint_temp=68 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 69F ResStockArguments hvac_control_heating_weekday_setpoint_temp=69 hvac_control_heating_weekend_setpoint_temp=69 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 70F ResStockArguments hvac_control_heating_weekday_setpoint_temp=70 hvac_control_heating_weekend_setpoint_temp=70 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 71F ResStockArguments hvac_control_heating_weekday_setpoint_temp=71 hvac_control_heating_weekend_setpoint_temp=71 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 71F w/ Building America season ResStockArguments hvac_control_heating_weekday_setpoint_temp=71 hvac_control_heating_weekend_setpoint_temp=71 use_auto_heating_season=true hvac_control_heating_season_period=auto +Heating Setpoint 72F ResStockArguments hvac_control_heating_weekday_setpoint_temp=72 hvac_control_heating_weekend_setpoint_temp=72 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 73F ResStockArguments hvac_control_heating_weekday_setpoint_temp=73 hvac_control_heating_weekend_setpoint_temp=73 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 74F ResStockArguments hvac_control_heating_weekday_setpoint_temp=74 hvac_control_heating_weekend_setpoint_temp=74 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 75F ResStockArguments hvac_control_heating_weekday_setpoint_temp=75 hvac_control_heating_weekend_setpoint_temp=75 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 76F ResStockArguments hvac_control_heating_weekday_setpoint_temp=76 hvac_control_heating_weekend_setpoint_temp=76 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 78F ResStockArguments hvac_control_heating_weekday_setpoint_temp=78 hvac_control_heating_weekend_setpoint_temp=78 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 80F ResStockArguments hvac_control_heating_weekday_setpoint_temp=80 hvac_control_heating_weekend_setpoint_temp=80 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint Has Offset No +Heating Setpoint Has Offset Yes +Heating Setpoint Offset Magnitude 0F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=0 hvac_control_heating_weekend_setpoint_offset_magnitude=0 +Heating Setpoint Offset Magnitude 12F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=12 hvac_control_heating_weekend_setpoint_offset_magnitude=12 +Heating Setpoint Offset Magnitude 3F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=3 hvac_control_heating_weekend_setpoint_offset_magnitude=3 +Heating Setpoint Offset Magnitude 6F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=6 hvac_control_heating_weekend_setpoint_offset_magnitude=6 +Heating Setpoint Offset Period Day ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day and Night ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1" +Heating Setpoint Offset Period Day and Night +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1" +Heating Setpoint Offset Period Day and Night +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Heating Setpoint Offset Period Day and Night +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Heating Setpoint Offset Period Day and Night +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0" +Heating Setpoint Offset Period Day and Night +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0" +Heating Setpoint Offset Period Day and Night -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1" +Heating Setpoint Offset Period Day and Night -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1" +Heating Setpoint Offset Period Day and Night -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1" +Heating Setpoint Offset Period Day and Night -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1" +Heating Setpoint Offset Period Day and Night -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" +Heating Setpoint Offset Period Night ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" +Heating Setpoint Offset Period Night +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" +Heating Setpoint Offset Period Night +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Night +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Night +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Night +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Night -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" +Heating Setpoint Offset Period Night -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" +Heating Setpoint Offset Period Night -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" +Heating Setpoint Offset Period Night -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" +Heating Setpoint Offset Period Night -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" +Heating Setpoint Offset Period None ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Holiday Lighting No Exterior Use ResStockArguments holiday_lighting_present=false holiday_lighting_daily_kwh=0 holiday_lighting_period=auto +Holiday Lighting None ResStockArguments holiday_lighting_present=false holiday_lighting_daily_kwh=0 holiday_lighting_period=auto +Hot Water Distribution "R-2, Demand" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=presence sensor demand control hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Distribution "R-2, Timer" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=timer hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Distribution "R-5, Timer" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=timer hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=5 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Distribution R-2 ResStockArguments hot_water_distribution_system_type=Standard hot_water_distribution_standard_piping_length=auto hot_water_distribution_recirc_control_type=no control hot_water_distribution_recirc_piping_length=0 hot_water_distribution_recirc_branch_piping_length=0 hot_water_distribution_recirc_pump_power=0 hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Distribution Uninsulated ResStockArguments hot_water_distribution_system_type=Standard hot_water_distribution_standard_piping_length=auto hot_water_distribution_recirc_control_type=no control hot_water_distribution_recirc_piping_length=0 hot_water_distribution_recirc_branch_piping_length=0 hot_water_distribution_recirc_pump_power=0 hot_water_distribution_pipe_r=0 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Fixtures "100% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=1.0 +Hot Water Fixtures "200% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=2.0 +Hot Water Fixtures "50% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=0.5 +Hot Water Fixtures 100% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.0 +Hot Water Fixtures 110% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.1 +Hot Water Fixtures 120% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.2 +Hot Water Fixtures 130% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.3 +Hot Water Fixtures 140% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.4 +Hot Water Fixtures 150% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.5 +Hot Water Fixtures 160% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.6 +Hot Water Fixtures 170% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.7 +Hot Water Fixtures 180% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.8 +Hot Water Fixtures 190% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.9 +Hot Water Fixtures 200% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=2.0 +Hot Water Fixtures 40% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.4 +Hot Water Fixtures 50% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.5 +Hot Water Fixtures 60% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.6 +Hot Water Fixtures 70% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.7 +Hot Water Fixtures 80% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.8 +Hot Water Fixtures 90% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.9 +Household Has Tribal Persons No +Household Has Tribal Persons Not Available +Household Has Tribal Persons Yes +ISO RTO Region CAISO +ISO RTO Region ERCOT +ISO RTO Region MISO +ISO RTO Region NEISO +ISO RTO Region NYISO +ISO RTO Region None +ISO RTO Region PJM +ISO RTO Region SPP +Income 10000-14999 +Income 100000-119999 +Income 120000-139999 +Income 140000-159999 +Income 15000-19999 +Income 160000-179999 +Income 180000-199999 +Income 20000-24999 +Income 200000+ +Income 25000-29999 +Income 30000-34999 +Income 35000-39999 +Income 40000-44999 +Income 45000-49999 +Income 50000-59999 +Income 60000-69999 +Income 70000-79999 +Income 80000-99999 +Income <10000 +Income Not Available +Income RECS2015 100000-119999 +Income RECS2015 120000-139999 +Income RECS2015 140000+ +Income RECS2015 20000-39999 +Income RECS2015 40000-59999 +Income RECS2015 60000-79999 +Income RECS2015 80000-99999 +Income RECS2015 <20000 +Income RECS2015 Not Available +Income RECS2020 100000-149999 +Income RECS2020 150000+ +Income RECS2020 20000-39999 +Income RECS2020 40000-59999 +Income RECS2020 60000-99999 +Income RECS2020 <20000 +Income RECS2020 Not Available +Infiltration "7 ACH50, 0.5 Shelter Coefficient" ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 0.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 0.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 0.75 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.75 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 1 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=1 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 1.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=1.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 10 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=10 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 11.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=11.25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 15 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=15 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 18.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=18.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 2 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=2 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 2.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=2.25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 20 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=20 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 3 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=3 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 3.75 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=3.75 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 30 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=30 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 4 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=4 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 4.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=4.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 40 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=40 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 5.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=5.25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 50 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=50 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 6 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=6 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 7 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 7.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 8 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=8 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration Reduction 15% ResStockArguments air_leakage_percent_reduction=15 +Infiltration Reduction 20% ResStockArguments air_leakage_percent_reduction=20 +Infiltration Reduction 25% ResStockArguments air_leakage_percent_reduction=25 +Insulation Ceiling None ResStockArguments ceiling_assembly_r=0 ceiling_insulation_r=0 +Insulation Ceiling R-13 ResStockArguments ceiling_assembly_r=14.6 ceiling_insulation_r=13 +Insulation Ceiling R-19 ResStockArguments ceiling_assembly_r=20.6 ceiling_insulation_r=19 +Insulation Ceiling R-30 ResStockArguments ceiling_assembly_r=31.6 ceiling_insulation_r=30 +Insulation Ceiling R-38 ResStockArguments ceiling_assembly_r=39.6 ceiling_insulation_r=38 +Insulation Ceiling R-49 ResStockArguments ceiling_assembly_r=50.6 ceiling_insulation_r=49 +Insulation Ceiling R-60 ResStockArguments ceiling_assembly_r=61.6 ceiling_insulation_r=60 +Insulation Ceiling R-7 ResStockArguments ceiling_assembly_r=8.7 ceiling_insulation_r=7 +Insulation Ceiling Uninsulated ResStockArguments ceiling_assembly_r=2.1 ceiling_insulation_r=0 +Insulation Floor Ceiling R-13 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=17.8 floor_over_garage_assembly_r=17.8 +Insulation Floor Ceiling R-19 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=22.6 floor_over_garage_assembly_r=22.6 +Insulation Floor Ceiling R-30 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=30.3 floor_over_garage_assembly_r=30.3 +Insulation Floor Ceiling R-38 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=35.1 floor_over_garage_assembly_r=35.1 +Insulation Floor None ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=0 floor_over_garage_assembly_r=5.3 +Insulation Floor Uninsulated ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=5.3 floor_over_garage_assembly_r=5.3 +Insulation Foundation Wall "Wall R-10, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=10 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto +Insulation Foundation Wall "Wall R-13, Interior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=13 foundation_wall_insulation_location=interior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto +Insulation Foundation Wall "Wall R-15, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=15 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto +Insulation Foundation Wall "Wall R-5, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=5 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto +Insulation Foundation Wall None ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=0 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=0 foundation_wall_assembly_r=auto +Insulation Foundation Wall Uninsulated ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=0 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=0 foundation_wall_assembly_r=auto +Insulation Rim Joist "R-10, Exterior" ResStockArguments rim_joist_continuous_exterior_r=10 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Rim Joist "R-13, Interior" ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=13 rim_joist_assembly_interior_r=10.4 rim_joist_assembly_r=auto +Insulation Rim Joist "R-15, Exterior" ResStockArguments rim_joist_continuous_exterior_r=15 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Rim Joist "R-5, Exterior" ResStockArguments rim_joist_continuous_exterior_r=5 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Rim Joist None ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Rim Joist Uninsulated ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Roof "Finished, R-13" ResStockArguments roof_assembly_r=14.3 +Insulation Roof "Finished, R-19" ResStockArguments roof_assembly_r=21.2 +Insulation Roof "Finished, R-30" ResStockArguments roof_assembly_r=29.7 +Insulation Roof "Finished, R-38" ResStockArguments roof_assembly_r=36.5 +Insulation Roof "Finished, R-49" ResStockArguments roof_assembly_r=47.0 +Insulation Roof "Finished, R-7" ResStockArguments roof_assembly_r=10.2 +Insulation Roof "Finished, Uninsulated" ResStockArguments roof_assembly_r=3.7 +Insulation Roof "Unfinished, Uninsulated" ResStockArguments roof_assembly_r=2.3 +Insulation Sheathing R-10 ResStockArguments wall_continuous_exterior_r=10 +Insulation Sheathing R-15 ResStockArguments wall_continuous_exterior_r=15 +Insulation Sheathing R-5 ResStockArguments wall_continuous_exterior_r=5 +Insulation Slab "2ft R10 Perimeter, Vertical" ResStockArguments slab_perimeter_insulation_r=10 slab_perimeter_depth=2 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "2ft R10 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=10 slab_under_width=2 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "2ft R5 Perimeter, Vertical" ResStockArguments slab_perimeter_insulation_r=5 slab_perimeter_depth=2 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "2ft R5 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=5 slab_under_width=2 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "4ft R5 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=5 slab_under_width=4 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "R10 Whole Slab, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=10 slab_under_width=999 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab None ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab Uninsulated ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Wall "Brick, 12-in, 3-wythe, R-11" ResStockArguments wall_type=StructuralBrick wall_assembly_r=13.3 +Insulation Wall "Brick, 12-in, 3-wythe, R-15" ResStockArguments wall_type=StructuralBrick wall_assembly_r=15.9 +Insulation Wall "Brick, 12-in, 3-wythe, R-19" ResStockArguments wall_type=StructuralBrick wall_assembly_r=18.3 +Insulation Wall "Brick, 12-in, 3-wythe, R-7" ResStockArguments wall_type=StructuralBrick wall_assembly_r=10.3 +Insulation Wall "Brick, 12-in, 3-wythe, Uninsulated" ResStockArguments wall_type=StructuralBrick wall_assembly_r=4.9 +Insulation Wall "CMU, 12-in Hollow" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=4.9 +Insulation Wall "CMU, 12-in Hollow, R-10" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=12.9 +Insulation Wall "CMU, 6-in Concrete Filled" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=3.7 +Insulation Wall "CMU, 6-in Concrete-Filled, R-10" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=11.4 +Insulation Wall "CMU, 6-in Hollow, R-11" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=12.4 +Insulation Wall "CMU, 6-in Hollow, R-15" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=15 +Insulation Wall "CMU, 6-in Hollow, R-19" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=17.4 +Insulation Wall "CMU, 6-in Hollow, R-7" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=9.4 +Insulation Wall "CMU, 6-in Hollow, Uninsulated" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=4 +Insulation Wall "Double Wood Stud, R-33" ResStockArguments wall_type=DoubleWoodStud wall_assembly_r=28.1 +Insulation Wall "Double Wood Stud, R-45, Grade 3" ResStockArguments wall_type=DoubleWoodStud wall_assembly_r=25.1 +Insulation Wall "Generic, 10-in Grid ICF" ResStockArguments wall_type=WoodStud wall_assembly_r=12.4 +Insulation Wall "Generic, T-Mass Wall w/Metal Ties" ResStockArguments wall_type=WoodStud wall_assembly_r=9 +Insulation Wall "ICF, 2-in EPS, 12-in Concrete, 2-in EPS" ResStockArguments wall_type=InsulatedConcreteForms wall_assembly_r=22.5 +Insulation Wall "ICF, 2-in EPS, 4-in Concrete, 2-in EPS" ResStockArguments wall_type=InsulatedConcreteForms wall_assembly_r=20.4 +Insulation Wall "SIP, 3.6 in EPS Core, OSB int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=15.5 +Insulation Wall "SIP, 9.4 in EPS Core, Gypsum int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=35.8 +Insulation Wall "SIP, 9.4 in EPS Core, OSB int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=36 +Insulation Wall "Steel Stud, R-13" ResStockArguments wall_type=SteelFrame wall_assembly_r=7.9 +Insulation Wall "Steel Stud, R-25, Grade 3" ResStockArguments wall_type=SteelFrame wall_assembly_r=10.4 +Insulation Wall "Steel Stud, Uninsulated" ResStockArguments wall_type=SteelFrame wall_assembly_r=3 +Insulation Wall "Wood Stud, R-11" ResStockArguments wall_type=WoodStud wall_assembly_r=10.3 +Insulation Wall "Wood Stud, R-11, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=15.3 +Insulation Wall "Wood Stud, R-13" ResStockArguments wall_type=WoodStud wall_assembly_r=11.3 +Insulation Wall "Wood Stud, R-13, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=16.3 +Insulation Wall "Wood Stud, R-15" ResStockArguments wall_type=WoodStud wall_assembly_r=12.1 +Insulation Wall "Wood Stud, R-15, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=17.1 +Insulation Wall "Wood Stud, R-19" ResStockArguments wall_type=WoodStud wall_assembly_r=15.4 +Insulation Wall "Wood Stud, R-19, Grade 2" ResStockArguments wall_type=WoodStud wall_assembly_r=14.5 +Insulation Wall "Wood Stud, R-19, Grade 2, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=19.5 +Insulation Wall "Wood Stud, R-19, Grade 3" ResStockArguments wall_type=WoodStud wall_assembly_r=13.4 +Insulation Wall "Wood Stud, R-19, Grade 3, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=18.4 +Insulation Wall "Wood Stud, R-19, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=20.4 +Insulation Wall "Wood Stud, R-23 Closed Cell Spray Foam, 2x4, 16 in o.c." ResStockArguments wall_type=WoodStud wall_assembly_r=14.7 +Insulation Wall "Wood Stud, R-23 Closed Cell Spray Foam, 2x4, 16 in o.c., R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=19.7 +Insulation Wall "Wood Stud, R-36" ResStockArguments wall_type=WoodStud wall_assembly_r=22.3 +Insulation Wall "Wood Stud, R-36, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=27.3 +Insulation Wall "Wood Stud, R-7" ResStockArguments wall_type=WoodStud wall_assembly_r=8.7 +Insulation Wall "Wood Stud, R-7, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=13.7 +Insulation Wall "Wood Stud, Uninsulated" ResStockArguments wall_type=WoodStud wall_assembly_r=3.4 +Insulation Wall "Wood Stud, Uninsulated, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=8.4 +Insulation Wall Void +Interior Shading "Summer = 0.5, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.5 window_interior_shading_winter=0.7 +Interior Shading "Summer = 0.5, Winter = 0.95" ResStockArguments window_interior_shading_summer=0.5 window_interior_shading_winter=0.95 +Interior Shading "Summer = 0.6, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.6 window_interior_shading_winter=0.7 +Interior Shading "Summer = 0.7, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.7 +Interior Shading "Summer = 0.7, Winter = 0.85" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.85 +Interior Shading "Summer = 0.7, Winter = 0.95" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.95 +Lighting 100% CFL ResStockArguments lighting_present=true lighting_interior_fraction_cfl=1 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=1 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=1 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 +Lighting 100% Incandescent ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 +Lighting 100% LED ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=1 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=1 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=1 +Lighting 20% LED ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0.2 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0.2 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0.2 +Lighting 60% CFL ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0.6 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0.6 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0.6 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 +Lighting None ResStockArguments lighting_present=false lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 +Lighting Interior Use 100% Usage ResStockArguments lighting_interior_usage_multiplier=1.0 +Lighting Interior Use 95% Usage ResStockArguments lighting_interior_usage_multiplier=0.95 +Lighting Interior Use None ResStockArguments lighting_interior_usage_multiplier=0.0 +Lighting Other Use 100% Usage ResStockArguments lighting_exterior_usage_multiplier=1.0 lighting_garage_usage_multiplier=1.0 +Lighting Other Use 95% Usage ResStockArguments lighting_exterior_usage_multiplier=0.95 lighting_garage_usage_multiplier=0.95 +Lighting Other Use None ResStockArguments lighting_exterior_usage_multiplier=0.0 lighting_garage_usage_multiplier=0.0 +Location Region CR02 +Location Region CR03 +Location Region CR04 +Location Region CR05 +Location Region CR06 +Location Region CR07 +Location Region CR08 +Location Region CR09 +Location Region CR10 +Location Region CR11 +Location Region CRAK +Location Region CRHI +Mechanical Ventilation "ERV, 72%" ResStockArguments mech_vent_fan_type=energy recovery ventilator mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0.48 mech_vent_sensible_recovery_efficiency=0.72 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Mechanical Ventilation "HRV, 60%" ResStockArguments mech_vent_fan_type=heat recovery ventilator mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0.6 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Mechanical Ventilation Exhaust ResStockArguments mech_vent_fan_type=exhaust only mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Mechanical Ventilation None ResStockArguments mech_vent_fan_type=none mech_vent_flow_rate=0 mech_vent_hours_in_operation=0 mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=0 mech_vent_num_units_served=0 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Mechanical Ventilation Supply ResStockArguments mech_vent_fan_type=supply only mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Metropolitan and Micropolitan Statistical Area "Aberdeen, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Aberdeen, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Abilene, TX MSA" +Metropolitan and Micropolitan Statistical Area "Ada, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Adrian, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Akron, OH MSA" +Metropolitan and Micropolitan Statistical Area "Alamogordo, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Albany, GA MSA" +Metropolitan and Micropolitan Statistical Area "Albany, OR MSA" +Metropolitan and Micropolitan Statistical Area "Albany-Schenectady-Troy, NY MSA" +Metropolitan and Micropolitan Statistical Area "Albemarle, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Albert Lea, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Albertville, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Albuquerque, NM MSA" +Metropolitan and Micropolitan Statistical Area "Alexandria, LA MSA" +Metropolitan and Micropolitan Statistical Area "Alexandria, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Alice, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Allentown-Bethlehem-Easton, PA-NJ MSA" +Metropolitan and Micropolitan Statistical Area "Alma, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Alpena, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Altoona, PA MSA" +Metropolitan and Micropolitan Statistical Area "Altus, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Amarillo, TX MSA" +Metropolitan and Micropolitan Statistical Area "Americus, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Ames, IA MSA" +Metropolitan and Micropolitan Statistical Area "Amsterdam, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Anchorage, AK MSA" +Metropolitan and Micropolitan Statistical Area "Andrews, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Angola, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Ann Arbor, MI MSA" +Metropolitan and Micropolitan Statistical Area "Anniston-Oxford-Jacksonville, AL MSA" +Metropolitan and Micropolitan Statistical Area "Appleton, WI MSA" +Metropolitan and Micropolitan Statistical Area "Arcadia, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Ardmore, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Arkadelphia, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Arkansas City-Winfield, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Asheville, NC MSA" +Metropolitan and Micropolitan Statistical Area "Ashland, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Ashtabula, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Astoria, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Atchison, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Athens, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Athens, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Athens, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Athens-Clarke County, GA MSA" +Metropolitan and Micropolitan Statistical Area "Atlanta-Sandy Springs-Roswell, GA MSA" +Metropolitan and Micropolitan Statistical Area "Atlantic City-Hammonton, NJ MSA" +Metropolitan and Micropolitan Statistical Area "Auburn, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Auburn, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Auburn-Opelika, AL MSA" +Metropolitan and Micropolitan Statistical Area "Augusta-Richmond County, GA-SC MSA" +Metropolitan and Micropolitan Statistical Area "Augusta-Waterville, ME MicroSA" +Metropolitan and Micropolitan Statistical Area "Austin, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Austin-Round Rock, TX MSA" +Metropolitan and Micropolitan Statistical Area "Bainbridge, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Bakersfield, CA MSA" +Metropolitan and Micropolitan Statistical Area "Baltimore-Columbia-Towson, MD MSA" +Metropolitan and Micropolitan Statistical Area "Bangor, ME MSA" +Metropolitan and Micropolitan Statistical Area "Baraboo, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Bardstown, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Barnstable Town, MA MSA" +Metropolitan and Micropolitan Statistical Area "Barre, VT MicroSA" +Metropolitan and Micropolitan Statistical Area "Bartlesville, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Bastrop, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Batavia, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Batesville, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Baton Rouge, LA MSA" +Metropolitan and Micropolitan Statistical Area "Battle Creek, MI MSA" +Metropolitan and Micropolitan Statistical Area "Bay City, MI MSA" +Metropolitan and Micropolitan Statistical Area "Bay City, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Beatrice, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Beaumont-Port Arthur, TX MSA" +Metropolitan and Micropolitan Statistical Area "Beaver Dam, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Beckley, WV MSA" +Metropolitan and Micropolitan Statistical Area "Bedford, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Beeville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Bellefontaine, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Bellingham, WA MSA" +Metropolitan and Micropolitan Statistical Area "Bemidji, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Bend-Redmond, OR MSA" +Metropolitan and Micropolitan Statistical Area "Bennettsville, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Bennington, VT MicroSA" +Metropolitan and Micropolitan Statistical Area "Berlin, NH-VT MicroSA" +Metropolitan and Micropolitan Statistical Area "Big Rapids, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Big Spring, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Big Stone Gap, VA MicroSA" +Metropolitan and Micropolitan Statistical Area "Billings, MT MSA" +Metropolitan and Micropolitan Statistical Area "Binghamton, NY MSA" +Metropolitan and Micropolitan Statistical Area "Birmingham-Hoover, AL MSA" +Metropolitan and Micropolitan Statistical Area "Bismarck, ND MSA" +Metropolitan and Micropolitan Statistical Area "Blackfoot, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Blacksburg-Christiansburg-Radford, VA MSA" +Metropolitan and Micropolitan Statistical Area "Bloomington, IL MSA" +Metropolitan and Micropolitan Statistical Area "Bloomington, IN MSA" +Metropolitan and Micropolitan Statistical Area "Bloomsburg-Berwick, PA MSA" +Metropolitan and Micropolitan Statistical Area "Bluefield, WV-VA MicroSA" +Metropolitan and Micropolitan Statistical Area "Blytheville, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Bogalusa, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Boise City, ID MSA" +Metropolitan and Micropolitan Statistical Area "Boone, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Boone, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Borger, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Boston-Cambridge-Newton, MA-NH MSA" +Metropolitan and Micropolitan Statistical Area "Boulder, CO MSA" +Metropolitan and Micropolitan Statistical Area "Bowling Green, KY MSA" +Metropolitan and Micropolitan Statistical Area "Bozeman, MT MicroSA" +Metropolitan and Micropolitan Statistical Area "Bradford, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Brainerd, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Branson, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Breckenridge, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Bremerton-Silverdale, WA MSA" +Metropolitan and Micropolitan Statistical Area "Brenham, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Brevard, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Bridgeport-Stamford-Norwalk, CT MSA" +Metropolitan and Micropolitan Statistical Area "Brookhaven, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Brookings, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Brookings, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Brownsville-Harlingen, TX MSA" +Metropolitan and Micropolitan Statistical Area "Brownwood, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Brunswick, GA MSA" +Metropolitan and Micropolitan Statistical Area "Bucyrus, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Buffalo-Cheektowaga-Niagara Falls, NY MSA" +Metropolitan and Micropolitan Statistical Area "Burley, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Burlington, IA-IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Burlington, NC MSA" +Metropolitan and Micropolitan Statistical Area "Burlington-South Burlington, VT MSA" +Metropolitan and Micropolitan Statistical Area "Butte-Silver Bow, MT MicroSA" +Metropolitan and Micropolitan Statistical Area "Cadillac, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Calhoun, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "California-Lexington Park, MD MSA" +Metropolitan and Micropolitan Statistical Area "Cambridge, MD MicroSA" +Metropolitan and Micropolitan Statistical Area "Cambridge, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Camden, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Campbellsville, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Canon City, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Canton, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Canton-Massillon, OH MSA" +Metropolitan and Micropolitan Statistical Area "Cape Coral-Fort Myers, FL MSA" +Metropolitan and Micropolitan Statistical Area "Cape Girardeau, MO-IL MSA" +Metropolitan and Micropolitan Statistical Area "Carbondale-Marion, IL MSA" +Metropolitan and Micropolitan Statistical Area "Carlsbad-Artesia, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Carson City, NV MSA" +Metropolitan and Micropolitan Statistical Area "Casper, WY MSA" +Metropolitan and Micropolitan Statistical Area "Cedar City, UT MicroSA" +Metropolitan and Micropolitan Statistical Area "Cedar Rapids, IA MSA" +Metropolitan and Micropolitan Statistical Area "Cedartown, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Celina, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Centralia, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Centralia, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Chambersburg-Waynesboro, PA MSA" +Metropolitan and Micropolitan Statistical Area "Champaign-Urbana, IL MSA" +Metropolitan and Micropolitan Statistical Area "Charleston, WV MSA" +Metropolitan and Micropolitan Statistical Area "Charleston-Mattoon, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Charleston-North Charleston, SC MSA" +Metropolitan and Micropolitan Statistical Area "Charlotte-Concord-Gastonia, NC-SC MSA" +Metropolitan and Micropolitan Statistical Area "Charlottesville, VA MSA" +Metropolitan and Micropolitan Statistical Area "Chattanooga, TN-GA MSA" +Metropolitan and Micropolitan Statistical Area "Cheyenne, WY MSA" +Metropolitan and Micropolitan Statistical Area "Chicago-Naperville-Elgin, IL-IN-WI MSA" +Metropolitan and Micropolitan Statistical Area "Chico, CA MSA" +Metropolitan and Micropolitan Statistical Area "Chillicothe, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Cincinnati, OH-KY-IN MSA" +Metropolitan and Micropolitan Statistical Area "Claremont-Lebanon, NH-VT MicroSA" +Metropolitan and Micropolitan Statistical Area "Clarksburg, WV MicroSA" +Metropolitan and Micropolitan Statistical Area "Clarksdale, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Clarksville, TN-KY MSA" +Metropolitan and Micropolitan Statistical Area "Clearlake, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Cleveland, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Cleveland, TN MSA" +Metropolitan and Micropolitan Statistical Area "Cleveland-Elyria, OH MSA" +Metropolitan and Micropolitan Statistical Area "Clewiston, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Clinton, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Clovis, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Coeur d'Alene, ID MSA" +Metropolitan and Micropolitan Statistical Area "Coffeyville, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Coldwater, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "College Station-Bryan, TX MSA" +Metropolitan and Micropolitan Statistical Area "Colorado Springs, CO MSA" +Metropolitan and Micropolitan Statistical Area "Columbia, MO MSA" +Metropolitan and Micropolitan Statistical Area "Columbia, SC MSA" +Metropolitan and Micropolitan Statistical Area "Columbus, GA-AL MSA" +Metropolitan and Micropolitan Statistical Area "Columbus, IN MSA" +Metropolitan and Micropolitan Statistical Area "Columbus, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Columbus, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Columbus, OH MSA" +Metropolitan and Micropolitan Statistical Area "Concord, NH MicroSA" +Metropolitan and Micropolitan Statistical Area "Connersville, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Cookeville, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Coos Bay, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Cordele, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Corinth, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Cornelia, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Corning, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Corpus Christi, TX MSA" +Metropolitan and Micropolitan Statistical Area "Corsicana, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Cortland, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Corvallis, OR MSA" +Metropolitan and Micropolitan Statistical Area "Coshocton, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Craig, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Crawfordsville, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Crescent City, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Crestview-Fort Walton Beach-Destin, FL MSA" +Metropolitan and Micropolitan Statistical Area "Crossville, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Cullman, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Cullowhee, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Cumberland, MD-WV MSA" +Metropolitan and Micropolitan Statistical Area "Dallas-Fort Worth-Arlington, TX MSA" +Metropolitan and Micropolitan Statistical Area "Dalton, GA MSA" +Metropolitan and Micropolitan Statistical Area "Danville, IL MSA" +Metropolitan and Micropolitan Statistical Area "Danville, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Danville, VA MicroSA" +Metropolitan and Micropolitan Statistical Area "Daphne-Fairhope-Foley, AL MSA" +Metropolitan and Micropolitan Statistical Area "Davenport-Moline-Rock Island, IA-IL MSA" +Metropolitan and Micropolitan Statistical Area "Dayton, OH MSA" +Metropolitan and Micropolitan Statistical Area "Dayton, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "DeRidder, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Decatur, AL MSA" +Metropolitan and Micropolitan Statistical Area "Decatur, IL MSA" +Metropolitan and Micropolitan Statistical Area "Decatur, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Defiance, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Del Rio, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Deltona-Daytona Beach-Ormond Beach, FL MSA" +Metropolitan and Micropolitan Statistical Area "Deming, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Denver-Aurora-Lakewood, CO MSA" +Metropolitan and Micropolitan Statistical Area "Des Moines-West Des Moines, IA MSA" +Metropolitan and Micropolitan Statistical Area "Detroit-Warren-Dearborn, MI MSA" +Metropolitan and Micropolitan Statistical Area "Dickinson, ND MicroSA" +Metropolitan and Micropolitan Statistical Area "Dixon, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Dodge City, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Dothan, AL MSA" +Metropolitan and Micropolitan Statistical Area "Douglas, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Dover, DE MSA" +Metropolitan and Micropolitan Statistical Area "DuBois, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Dublin, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Dubuque, IA MSA" +Metropolitan and Micropolitan Statistical Area "Duluth, MN-WI MSA" +Metropolitan and Micropolitan Statistical Area "Dumas, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Duncan, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Dunn, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Durango, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Durant, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Durham-Chapel Hill, NC MSA" +Metropolitan and Micropolitan Statistical Area "Dyersburg, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Eagle Pass, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "East Stroudsburg, PA MSA" +Metropolitan and Micropolitan Statistical Area "Easton, MD MicroSA" +Metropolitan and Micropolitan Statistical Area "Eau Claire, WI MSA" +Metropolitan and Micropolitan Statistical Area "Edwards, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Effingham, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "El Campo, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "El Centro, CA MSA" +Metropolitan and Micropolitan Statistical Area "El Dorado, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "El Paso, TX MSA" +Metropolitan and Micropolitan Statistical Area "Elizabeth City, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Elizabethtown-Fort Knox, KY MSA" +Metropolitan and Micropolitan Statistical Area "Elk City, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Elkhart-Goshen, IN MSA" +Metropolitan and Micropolitan Statistical Area "Elkins, WV MicroSA" +Metropolitan and Micropolitan Statistical Area "Elko, NV MicroSA" +Metropolitan and Micropolitan Statistical Area "Ellensburg, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Elmira, NY MSA" +Metropolitan and Micropolitan Statistical Area "Emporia, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Enid, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Enterprise, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Erie, PA MSA" +Metropolitan and Micropolitan Statistical Area "Escanaba, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Espanola, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Eugene, OR MSA" +Metropolitan and Micropolitan Statistical Area "Eureka-Arcata-Fortuna, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Evanston, WY MicroSA" +Metropolitan and Micropolitan Statistical Area "Evansville, IN-KY MSA" +Metropolitan and Micropolitan Statistical Area "Fairbanks, AK MSA" +Metropolitan and Micropolitan Statistical Area "Fairfield, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Fairmont, WV MicroSA" +Metropolitan and Micropolitan Statistical Area "Fallon, NV MicroSA" +Metropolitan and Micropolitan Statistical Area "Fargo, ND-MN MSA" +Metropolitan and Micropolitan Statistical Area "Faribault-Northfield, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Farmington, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Farmington, NM MSA" +Metropolitan and Micropolitan Statistical Area "Fayetteville, NC MSA" +Metropolitan and Micropolitan Statistical Area "Fayetteville-Springdale-Rogers, AR-MO MSA" +Metropolitan and Micropolitan Statistical Area "Fergus Falls, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Fernley, NV MicroSA" +Metropolitan and Micropolitan Statistical Area "Findlay, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Fitzgerald, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Flagstaff, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Flint, MI MSA" +Metropolitan and Micropolitan Statistical Area "Florence, SC MSA" +Metropolitan and Micropolitan Statistical Area "Florence-Muscle Shoals, AL MSA" +Metropolitan and Micropolitan Statistical Area "Fond du Lac, WI MSA" +Metropolitan and Micropolitan Statistical Area "Forest City, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Forrest City, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Fort Collins, CO MSA" +Metropolitan and Micropolitan Statistical Area "Fort Dodge, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Fort Leonard Wood, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Fort Madison-Keokuk, IA-IL-MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Fort Morgan, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Fort Polk South, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Fort Smith, AR-OK MSA" +Metropolitan and Micropolitan Statistical Area "Fort Wayne, IN MSA" +Metropolitan and Micropolitan Statistical Area "Frankfort, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Frankfort, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Fredericksburg, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Freeport, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Fremont, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Fremont, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Fresno, CA MSA" +Metropolitan and Micropolitan Statistical Area "Gadsden, AL MSA" +Metropolitan and Micropolitan Statistical Area "Gaffney, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Gainesville, FL MSA" +Metropolitan and Micropolitan Statistical Area "Gainesville, GA MSA" +Metropolitan and Micropolitan Statistical Area "Gainesville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Galesburg, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Gallup, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Garden City, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Gardnerville Ranchos, NV MicroSA" +Metropolitan and Micropolitan Statistical Area "Georgetown, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Gettysburg, PA MSA" +Metropolitan and Micropolitan Statistical Area "Gillette, WY MicroSA" +Metropolitan and Micropolitan Statistical Area "Glasgow, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Glens Falls, NY MSA" +Metropolitan and Micropolitan Statistical Area "Glenwood Springs, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Gloversville, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Goldsboro, NC MSA" +Metropolitan and Micropolitan Statistical Area "Grand Forks, ND-MN MSA" +Metropolitan and Micropolitan Statistical Area "Grand Island, NE MSA" +Metropolitan and Micropolitan Statistical Area "Grand Junction, CO MSA" +Metropolitan and Micropolitan Statistical Area "Grand Rapids-Wyoming, MI MSA" +Metropolitan and Micropolitan Statistical Area "Grants Pass, OR MSA" +Metropolitan and Micropolitan Statistical Area "Grants, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Great Bend, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Great Falls, MT MSA" +Metropolitan and Micropolitan Statistical Area "Greeley, CO MSA" +Metropolitan and Micropolitan Statistical Area "Green Bay, WI MSA" +Metropolitan and Micropolitan Statistical Area "Greeneville, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Greenfield Town, MA MicroSA" +Metropolitan and Micropolitan Statistical Area "Greensboro-High Point, NC MSA" +Metropolitan and Micropolitan Statistical Area "Greensburg, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Greenville, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Greenville, NC MSA" +Metropolitan and Micropolitan Statistical Area "Greenville, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Greenville-Anderson-Mauldin, SC MSA" +Metropolitan and Micropolitan Statistical Area "Greenwood, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Greenwood, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Grenada, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Gulfport-Biloxi-Pascagoula, MS MSA" +Metropolitan and Micropolitan Statistical Area "Guymon, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Hagerstown-Martinsburg, MD-WV MSA" +Metropolitan and Micropolitan Statistical Area "Hailey, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Hammond, LA MSA" +Metropolitan and Micropolitan Statistical Area "Hanford-Corcoran, CA MSA" +Metropolitan and Micropolitan Statistical Area "Hannibal, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Harrisburg-Carlisle, PA MSA" +Metropolitan and Micropolitan Statistical Area "Harrison, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Harrisonburg, VA MSA" +Metropolitan and Micropolitan Statistical Area "Hartford-West Hartford-East Hartford, CT MSA" +Metropolitan and Micropolitan Statistical Area "Hastings, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Hattiesburg, MS MSA" +Metropolitan and Micropolitan Statistical Area "Hays, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Heber, UT MicroSA" +Metropolitan and Micropolitan Statistical Area "Helena, MT MicroSA" +Metropolitan and Micropolitan Statistical Area "Helena-West Helena, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Henderson, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Hereford, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Hermiston-Pendleton, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Hickory-Lenoir-Morganton, NC MSA" +Metropolitan and Micropolitan Statistical Area "Hillsdale, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Hilo, HI MicroSA" +Metropolitan and Micropolitan Statistical Area "Hilton Head Island-Bluffton-Beaufort, SC MSA" +Metropolitan and Micropolitan Statistical Area "Hinesville, GA MSA" +Metropolitan and Micropolitan Statistical Area "Hobbs, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Holland, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Homosassa Springs, FL MSA" +Metropolitan and Micropolitan Statistical Area "Hood River, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Hot Springs, AR MSA" +Metropolitan and Micropolitan Statistical Area "Houghton, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Houma-Thibodaux, LA MSA" +Metropolitan and Micropolitan Statistical Area "Houston-The Woodlands-Sugar Land, TX MSA" +Metropolitan and Micropolitan Statistical Area "Hudson, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Huntingdon, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Huntington, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Huntington-Ashland, WV-KY-OH MSA" +Metropolitan and Micropolitan Statistical Area "Huntsville, AL MSA" +Metropolitan and Micropolitan Statistical Area "Huntsville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Huron, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Hutchinson, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Hutchinson, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Idaho Falls, ID MSA" +Metropolitan and Micropolitan Statistical Area "Indiana, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Indianapolis-Carmel-Anderson, IN MSA" +Metropolitan and Micropolitan Statistical Area "Indianola, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Ionia, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Iowa City, IA MSA" +Metropolitan and Micropolitan Statistical Area "Iron Mountain, MI-WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Ithaca, NY MSA" +Metropolitan and Micropolitan Statistical Area "Jackson, MI MSA" +Metropolitan and Micropolitan Statistical Area "Jackson, MS MSA" +Metropolitan and Micropolitan Statistical Area "Jackson, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Jackson, TN MSA" +Metropolitan and Micropolitan Statistical Area "Jackson, WY-ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Jacksonville, FL MSA" +Metropolitan and Micropolitan Statistical Area "Jacksonville, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Jacksonville, NC MSA" +Metropolitan and Micropolitan Statistical Area "Jacksonville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Jamestown, ND MicroSA" +Metropolitan and Micropolitan Statistical Area "Jamestown-Dunkirk-Fredonia, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Janesville-Beloit, WI MSA" +Metropolitan and Micropolitan Statistical Area "Jasper, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Jefferson City, MO MSA" +Metropolitan and Micropolitan Statistical Area "Jefferson, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Jesup, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Johnson City, TN MSA" +Metropolitan and Micropolitan Statistical Area "Johnstown, PA MSA" +Metropolitan and Micropolitan Statistical Area "Jonesboro, AR MSA" +Metropolitan and Micropolitan Statistical Area "Joplin, MO MSA" +Metropolitan and Micropolitan Statistical Area "Junction City, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Juneau, AK MicroSA" +Metropolitan and Micropolitan Statistical Area "Kahului-Wailuku-Lahaina, HI MSA" +Metropolitan and Micropolitan Statistical Area "Kalamazoo-Portage, MI MSA" +Metropolitan and Micropolitan Statistical Area "Kalispell, MT MicroSA" +Metropolitan and Micropolitan Statistical Area "Kankakee, IL MSA" +Metropolitan and Micropolitan Statistical Area "Kansas City, MO-KS MSA" +Metropolitan and Micropolitan Statistical Area "Kapaa, HI MicroSA" +Metropolitan and Micropolitan Statistical Area "Kearney, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Keene, NH MicroSA" +Metropolitan and Micropolitan Statistical Area "Kendallville, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Kennett, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Kennewick-Richland, WA MSA" +Metropolitan and Micropolitan Statistical Area "Kerrville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Ketchikan, AK MicroSA" +Metropolitan and Micropolitan Statistical Area "Key West, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Kill Devil Hills, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Killeen-Temple, TX MSA" +Metropolitan and Micropolitan Statistical Area "Kingsport-Bristol-Bristol, TN-VA MSA" +Metropolitan and Micropolitan Statistical Area "Kingston, NY MSA" +Metropolitan and Micropolitan Statistical Area "Kingsville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Kinston, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Kirksville, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Klamath Falls, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Knoxville, TN MSA" +Metropolitan and Micropolitan Statistical Area "Kokomo, IN MSA" +Metropolitan and Micropolitan Statistical Area "La Crosse-Onalaska, WI-MN MSA" +Metropolitan and Micropolitan Statistical Area "La Grande, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "LaGrange, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Laconia, NH MicroSA" +Metropolitan and Micropolitan Statistical Area "Lafayette, LA MSA" +Metropolitan and Micropolitan Statistical Area "Lafayette-West Lafayette, IN MSA" +Metropolitan and Micropolitan Statistical Area "Lake Charles, LA MSA" +Metropolitan and Micropolitan Statistical Area "Lake City, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Lake Havasu City-Kingman, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Lakeland-Winter Haven, FL MSA" +Metropolitan and Micropolitan Statistical Area "Lamesa, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Lancaster, PA MSA" +Metropolitan and Micropolitan Statistical Area "Lansing-East Lansing, MI MSA" +Metropolitan and Micropolitan Statistical Area "Laramie, WY MicroSA" +Metropolitan and Micropolitan Statistical Area "Laredo, TX MSA" +Metropolitan and Micropolitan Statistical Area "Las Cruces, NM MSA" +Metropolitan and Micropolitan Statistical Area "Las Vegas, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Las Vegas-Henderson-Paradise, NV MSA" +Metropolitan and Micropolitan Statistical Area "Laurel, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Laurinburg, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Lawrence, KS MSA" +Metropolitan and Micropolitan Statistical Area "Lawrenceburg, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Lawton, OK MSA" +Metropolitan and Micropolitan Statistical Area "Lebanon, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Lebanon, PA MSA" +Metropolitan and Micropolitan Statistical Area "Levelland, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Lewisburg, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Lewisburg, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Lewiston, ID-WA MSA" +Metropolitan and Micropolitan Statistical Area "Lewiston-Auburn, ME MSA" +Metropolitan and Micropolitan Statistical Area "Lewistown, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Lexington, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Lexington-Fayette, KY MSA" +Metropolitan and Micropolitan Statistical Area "Liberal, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Lima, OH MSA" +Metropolitan and Micropolitan Statistical Area "Lincoln, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Lincoln, NE MSA" +Metropolitan and Micropolitan Statistical Area "Little Rock-North Little Rock-Conway, AR MSA" +Metropolitan and Micropolitan Statistical Area "Lock Haven, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Logan, UT-ID MSA" +Metropolitan and Micropolitan Statistical Area "Logan, WV MicroSA" +Metropolitan and Micropolitan Statistical Area "Logansport, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "London, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Longview, TX MSA" +Metropolitan and Micropolitan Statistical Area "Longview, WA MSA" +Metropolitan and Micropolitan Statistical Area "Los Alamos, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Los Angeles-Long Beach-Anaheim, CA MSA" +Metropolitan and Micropolitan Statistical Area "Louisville/Jefferson County, KY-IN MSA" +Metropolitan and Micropolitan Statistical Area "Lubbock, TX MSA" +Metropolitan and Micropolitan Statistical Area "Ludington, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Lufkin, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Lumberton, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Lynchburg, VA MSA" +Metropolitan and Micropolitan Statistical Area "Macomb, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Macon, GA MSA" +Metropolitan and Micropolitan Statistical Area "Madera, CA MSA" +Metropolitan and Micropolitan Statistical Area "Madison, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Madison, WI MSA" +Metropolitan and Micropolitan Statistical Area "Madisonville, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Magnolia, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Malone, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Malvern, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Manchester-Nashua, NH MSA" +Metropolitan and Micropolitan Statistical Area "Manhattan, KS MSA" +Metropolitan and Micropolitan Statistical Area "Manitowoc, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Mankato-North Mankato, MN MSA" +Metropolitan and Micropolitan Statistical Area "Mansfield, OH MSA" +Metropolitan and Micropolitan Statistical Area "Marietta, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Marinette, WI-MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Marion, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Marion, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Marion, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Marquette, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Marshall, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Marshall, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Marshall, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Marshalltown, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Martin, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Martinsville, VA MicroSA" +Metropolitan and Micropolitan Statistical Area "Maryville, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Mason City, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Mayfield, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Maysville, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "McAlester, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "McAllen-Edinburg-Mission, TX MSA" +Metropolitan and Micropolitan Statistical Area "McComb, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "McMinnville, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "McPherson, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Meadville, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Medford, OR MSA" +Metropolitan and Micropolitan Statistical Area "Memphis, TN-MS-AR MSA" +Metropolitan and Micropolitan Statistical Area "Menomonie, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Merced, CA MSA" +Metropolitan and Micropolitan Statistical Area "Meridian, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Merrill, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Mexico, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Miami, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Miami-Fort Lauderdale-West Palm Beach, FL MSA" +Metropolitan and Micropolitan Statistical Area "Michigan City-La Porte, IN MSA" +Metropolitan and Micropolitan Statistical Area "Middlesborough, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Midland, MI MSA" +Metropolitan and Micropolitan Statistical Area "Midland, TX MSA" +Metropolitan and Micropolitan Statistical Area "Milledgeville, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Milwaukee-Waukesha-West Allis, WI MSA" +Metropolitan and Micropolitan Statistical Area "Mineral Wells, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Minneapolis-St. Paul-Bloomington, MN-WI MSA" +Metropolitan and Micropolitan Statistical Area "Minot, ND MicroSA" +Metropolitan and Micropolitan Statistical Area "Missoula, MT MSA" +Metropolitan and Micropolitan Statistical Area "Mitchell, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Moberly, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Mobile, AL MSA" +Metropolitan and Micropolitan Statistical Area "Modesto, CA MSA" +Metropolitan and Micropolitan Statistical Area "Monroe, LA MSA" +Metropolitan and Micropolitan Statistical Area "Monroe, MI MSA" +Metropolitan and Micropolitan Statistical Area "Montgomery, AL MSA" +Metropolitan and Micropolitan Statistical Area "Montrose, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Morehead City, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Morgan City, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Morgantown, WV MSA" +Metropolitan and Micropolitan Statistical Area "Morristown, TN MSA" +Metropolitan and Micropolitan Statistical Area "Moscow, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Moses Lake, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Moultrie, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Airy, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Pleasant, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Pleasant, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Sterling, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Vernon, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Vernon, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Vernon-Anacortes, WA MSA" +Metropolitan and Micropolitan Statistical Area "Mountain Home, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Mountain Home, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Muncie, IN MSA" +Metropolitan and Micropolitan Statistical Area "Murray, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Muscatine, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Muskegon, MI MSA" +Metropolitan and Micropolitan Statistical Area "Muskogee, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Myrtle Beach-Conway-North Myrtle Beach, SC-NC MSA" +Metropolitan and Micropolitan Statistical Area "Nacogdoches, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Napa, CA MSA" +Metropolitan and Micropolitan Statistical Area "Naples-Immokalee-Marco Island, FL MSA" +Metropolitan and Micropolitan Statistical Area "Nashville-Davidson--Murfreesboro--Franklin, TN MSA" +Metropolitan and Micropolitan Statistical Area "Natchez, MS-LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Natchitoches, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "New Bern, NC MSA" +Metropolitan and Micropolitan Statistical Area "New Castle, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "New Castle, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "New Haven-Milford, CT MSA" +Metropolitan and Micropolitan Statistical Area "New Orleans-Metairie, LA MSA" +Metropolitan and Micropolitan Statistical Area "New Philadelphia-Dover, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "New Ulm, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "New York-Newark-Jersey City, NY-NJ-PA MSA" +Metropolitan and Micropolitan Statistical Area "Newberry, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Newport, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Newport, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Newton, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Niles-Benton Harbor, MI MSA" +Metropolitan and Micropolitan Statistical Area "Nogales, AZ MicroSA" +Metropolitan and Micropolitan Statistical Area "Norfolk, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "North Platte, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "North Port-Sarasota-Bradenton, FL MSA" +Metropolitan and Micropolitan Statistical Area "North Vernon, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "North Wilkesboro, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Norwalk, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Norwich-New London, CT MSA" +Metropolitan and Micropolitan Statistical Area "Oak Harbor, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Ocala, FL MSA" +Metropolitan and Micropolitan Statistical Area "Ocean City, NJ MSA" +Metropolitan and Micropolitan Statistical Area "Odessa, TX MSA" +Metropolitan and Micropolitan Statistical Area "Ogden-Clearfield, UT MSA" +Metropolitan and Micropolitan Statistical Area "Ogdensburg-Massena, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Oil City, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Okeechobee, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Oklahoma City, OK MSA" +Metropolitan and Micropolitan Statistical Area "Olean, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Olympia-Tumwater, WA MSA" +Metropolitan and Micropolitan Statistical Area "Omaha-Council Bluffs, NE-IA MSA" +Metropolitan and Micropolitan Statistical Area "Oneonta, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Ontario, OR-ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Opelousas, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Orangeburg, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Orlando-Kissimmee-Sanford, FL MSA" +Metropolitan and Micropolitan Statistical Area "Oshkosh-Neenah, WI MSA" +Metropolitan and Micropolitan Statistical Area "Oskaloosa, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Othello, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Ottawa, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Ottawa-Peru, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Ottumwa, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Owatonna, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Owensboro, KY MSA" +Metropolitan and Micropolitan Statistical Area "Owosso, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Oxford, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Oxford, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Oxnard-Thousand Oaks-Ventura, CA MSA" +Metropolitan and Micropolitan Statistical Area "Ozark, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Paducah, KY-IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Pahrump, NV MicroSA" +Metropolitan and Micropolitan Statistical Area "Palatka, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Palestine, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Palm Bay-Melbourne-Titusville, FL MSA" +Metropolitan and Micropolitan Statistical Area "Pampa, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Panama City, FL MSA" +Metropolitan and Micropolitan Statistical Area "Paragould, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Paris, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Paris, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Parkersburg-Vienna, WV MSA" +Metropolitan and Micropolitan Statistical Area "Parsons, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Payson, AZ MicroSA" +Metropolitan and Micropolitan Statistical Area "Pecos, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Pensacola-Ferry Pass-Brent, FL MSA" +Metropolitan and Micropolitan Statistical Area "Peoria, IL MSA" +Metropolitan and Micropolitan Statistical Area "Peru, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Philadelphia-Camden-Wilmington, PA-NJ-DE-MD MSA" +Metropolitan and Micropolitan Statistical Area "Phoenix-Mesa-Scottsdale, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Picayune, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Pierre, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Pine Bluff, AR MSA" +Metropolitan and Micropolitan Statistical Area "Pinehurst-Southern Pines, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Pittsburg, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Pittsburgh, PA MSA" +Metropolitan and Micropolitan Statistical Area "Pittsfield, MA MSA" +Metropolitan and Micropolitan Statistical Area "Plainview, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Platteville, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Plattsburgh, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Plymouth, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Pocatello, ID MSA" +Metropolitan and Micropolitan Statistical Area "Point Pleasant, WV-OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Ponca City, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Pontiac, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Poplar Bluff, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Port Angeles, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Port Clinton, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Port Lavaca, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Port St. Lucie, FL MSA" +Metropolitan and Micropolitan Statistical Area "Portales, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Portland-South Portland, ME MSA" +Metropolitan and Micropolitan Statistical Area "Portland-Vancouver-Hillsboro, OR-WA MSA" +Metropolitan and Micropolitan Statistical Area "Portsmouth, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Pottsville, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Prescott, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Price, UT MicroSA" +Metropolitan and Micropolitan Statistical Area "Prineville, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Providence-Warwick, RI-MA MSA" +Metropolitan and Micropolitan Statistical Area "Provo-Orem, UT MSA" +Metropolitan and Micropolitan Statistical Area "Pueblo, CO MSA" +Metropolitan and Micropolitan Statistical Area "Pullman, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Punta Gorda, FL MSA" +Metropolitan and Micropolitan Statistical Area "Quincy, IL-MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Racine, WI MSA" +Metropolitan and Micropolitan Statistical Area "Raleigh, NC MSA" +Metropolitan and Micropolitan Statistical Area "Rapid City, SD MSA" +Metropolitan and Micropolitan Statistical Area "Raymondville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Reading, PA MSA" +Metropolitan and Micropolitan Statistical Area "Red Bluff, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Red Wing, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Redding, CA MSA" +Metropolitan and Micropolitan Statistical Area "Reno, NV MSA" +Metropolitan and Micropolitan Statistical Area "Rexburg, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Richmond, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Richmond, VA MSA" +Metropolitan and Micropolitan Statistical Area "Richmond-Berea, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Rio Grande City, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Riverside-San Bernardino-Ontario, CA MSA" +Metropolitan and Micropolitan Statistical Area "Riverton, WY MicroSA" +Metropolitan and Micropolitan Statistical Area "Roanoke Rapids, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Roanoke, VA MSA" +Metropolitan and Micropolitan Statistical Area "Rochelle, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Rochester, MN MSA" +Metropolitan and Micropolitan Statistical Area "Rochester, NY MSA" +Metropolitan and Micropolitan Statistical Area "Rock Springs, WY MicroSA" +Metropolitan and Micropolitan Statistical Area "Rockford, IL MSA" +Metropolitan and Micropolitan Statistical Area "Rockingham, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Rocky Mount, NC MSA" +Metropolitan and Micropolitan Statistical Area "Rolla, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Rome, GA MSA" +Metropolitan and Micropolitan Statistical Area "Roseburg, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Roswell, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Russellville, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Ruston, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Rutland, VT MicroSA" +Metropolitan and Micropolitan Statistical Area "Sacramento--Roseville--Arden-Arcade, CA MSA" +Metropolitan and Micropolitan Statistical Area "Safford, AZ MicroSA" +Metropolitan and Micropolitan Statistical Area "Saginaw, MI MSA" +Metropolitan and Micropolitan Statistical Area "Salem, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Salem, OR MSA" +Metropolitan and Micropolitan Statistical Area "Salina, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Salinas, CA MSA" +Metropolitan and Micropolitan Statistical Area "Salisbury, MD-DE MSA" +Metropolitan and Micropolitan Statistical Area "Salt Lake City, UT MSA" +Metropolitan and Micropolitan Statistical Area "San Angelo, TX MSA" +Metropolitan and Micropolitan Statistical Area "San Antonio-New Braunfels, TX MSA" +Metropolitan and Micropolitan Statistical Area "San Diego-Carlsbad, CA MSA" +Metropolitan and Micropolitan Statistical Area "San Francisco-Oakland-Hayward, CA MSA" +Metropolitan and Micropolitan Statistical Area "San Jose-Sunnyvale-Santa Clara, CA MSA" +Metropolitan and Micropolitan Statistical Area "San Luis Obispo-Paso Robles-Arroyo Grande, CA MSA" +Metropolitan and Micropolitan Statistical Area "Sandpoint, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Sandusky, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Sanford, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Santa Cruz-Watsonville, CA MSA" +Metropolitan and Micropolitan Statistical Area "Santa Fe, NM MSA" +Metropolitan and Micropolitan Statistical Area "Santa Maria-Santa Barbara, CA MSA" +Metropolitan and Micropolitan Statistical Area "Santa Rosa, CA MSA" +Metropolitan and Micropolitan Statistical Area "Sault Ste. Marie, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Savannah, GA MSA" +Metropolitan and Micropolitan Statistical Area "Sayre, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Scottsbluff, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Scottsboro, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Scranton--Wilkes-Barre--Hazleton, PA MSA" +Metropolitan and Micropolitan Statistical Area "Searcy, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Seattle-Tacoma-Bellevue, WA MSA" +Metropolitan and Micropolitan Statistical Area "Sebastian-Vero Beach, FL MSA" +Metropolitan and Micropolitan Statistical Area "Sebring, FL MSA" +Metropolitan and Micropolitan Statistical Area "Sedalia, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Selinsgrove, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Selma, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Seneca Falls, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Seneca, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Sevierville, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Seymour, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Shawano, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Shawnee, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Sheboygan, WI MSA" +Metropolitan and Micropolitan Statistical Area "Shelby, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Shelbyville, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Shelton, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Sheridan, WY MicroSA" +Metropolitan and Micropolitan Statistical Area "Sherman-Denison, TX MSA" +Metropolitan and Micropolitan Statistical Area "Show Low, AZ MicroSA" +Metropolitan and Micropolitan Statistical Area "Shreveport-Bossier City, LA MSA" +Metropolitan and Micropolitan Statistical Area "Sidney, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Sierra Vista-Douglas, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Sikeston, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Silver City, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Sioux City, IA-NE-SD MSA" +Metropolitan and Micropolitan Statistical Area "Sioux Falls, SD MSA" +Metropolitan and Micropolitan Statistical Area "Snyder, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Somerset, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Somerset, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Sonora, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "South Bend-Mishawaka, IN-MI MSA" +Metropolitan and Micropolitan Statistical Area "Spartanburg, SC MSA" +Metropolitan and Micropolitan Statistical Area "Spearfish, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Spencer, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Spirit Lake, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Spokane-Spokane Valley, WA MSA" +Metropolitan and Micropolitan Statistical Area "Springfield, IL MSA" +Metropolitan and Micropolitan Statistical Area "Springfield, MA MSA" +Metropolitan and Micropolitan Statistical Area "Springfield, MO MSA" +Metropolitan and Micropolitan Statistical Area "Springfield, OH MSA" +Metropolitan and Micropolitan Statistical Area "St. Cloud, MN MSA" +Metropolitan and Micropolitan Statistical Area "St. George, UT MSA" +Metropolitan and Micropolitan Statistical Area "St. Joseph, MO-KS MSA" +Metropolitan and Micropolitan Statistical Area "St. Louis, MO-IL MSA" +Metropolitan and Micropolitan Statistical Area "St. Marys, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Starkville, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "State College, PA MSA" +Metropolitan and Micropolitan Statistical Area "Statesboro, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Staunton-Waynesboro, VA MSA" +Metropolitan and Micropolitan Statistical Area "Steamboat Springs, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Stephenville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Sterling, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Sterling, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Stevens Point, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Stillwater, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Stockton-Lodi, CA MSA" +Metropolitan and Micropolitan Statistical Area "Storm Lake, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Sturgis, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Sulphur Springs, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Summerville, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Summit Park, UT MicroSA" +Metropolitan and Micropolitan Statistical Area "Sumter, SC MSA" +Metropolitan and Micropolitan Statistical Area "Sunbury, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Susanville, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Sweetwater, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Syracuse, NY MSA" +Metropolitan and Micropolitan Statistical Area "Tahlequah, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Talladega-Sylacauga, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Tallahassee, FL MSA" +Metropolitan and Micropolitan Statistical Area "Tampa-St. Petersburg-Clearwater, FL MSA" +Metropolitan and Micropolitan Statistical Area "Taos, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Taylorville, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Terre Haute, IN MSA" +Metropolitan and Micropolitan Statistical Area "Texarkana, TX-AR MSA" +Metropolitan and Micropolitan Statistical Area "The Dalles, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "The Villages, FL MSA" +Metropolitan and Micropolitan Statistical Area "Thomaston, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Thomasville, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Tiffin, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Tifton, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Toccoa, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Toledo, OH MSA" +Metropolitan and Micropolitan Statistical Area "Topeka, KS MSA" +Metropolitan and Micropolitan Statistical Area "Torrington, CT MicroSA" +Metropolitan and Micropolitan Statistical Area "Traverse City, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Trenton, NJ MSA" +Metropolitan and Micropolitan Statistical Area "Troy, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Truckee-Grass Valley, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Tucson, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Tullahoma-Manchester, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Tulsa, OK MSA" +Metropolitan and Micropolitan Statistical Area "Tupelo, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Tuscaloosa, AL MSA" +Metropolitan and Micropolitan Statistical Area "Twin Falls, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Tyler, TX MSA" +Metropolitan and Micropolitan Statistical Area "Ukiah, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Union City, TN-KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Urban Honolulu, HI MSA" +Metropolitan and Micropolitan Statistical Area "Urbana, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Utica-Rome, NY MSA" +Metropolitan and Micropolitan Statistical Area "Uvalde, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Valdosta, GA MSA" +Metropolitan and Micropolitan Statistical Area "Vallejo-Fairfield, CA MSA" +Metropolitan and Micropolitan Statistical Area "Valley, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Van Wert, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Vermillion, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Vernal, UT MicroSA" +Metropolitan and Micropolitan Statistical Area "Vernon, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Vicksburg, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Victoria, TX MSA" +Metropolitan and Micropolitan Statistical Area "Vidalia, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Vincennes, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Vineland-Bridgeton, NJ MSA" +Metropolitan and Micropolitan Statistical Area "Vineyard Haven, MA MicroSA" +Metropolitan and Micropolitan Statistical Area "Virginia Beach-Norfolk-Newport News, VA-NC MSA" +Metropolitan and Micropolitan Statistical Area "Visalia-Porterville, CA MSA" +Metropolitan and Micropolitan Statistical Area "Wabash, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Waco, TX MSA" +Metropolitan and Micropolitan Statistical Area "Wahpeton, ND-MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Walla Walla, WA MSA" +Metropolitan and Micropolitan Statistical Area "Wapakoneta, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Warner Robins, GA MSA" +Metropolitan and Micropolitan Statistical Area "Warren, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Warrensburg, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Warsaw, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Washington Court House, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Washington, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Washington, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Washington-Arlington-Alexandria, DC-VA-MD-WV MSA" +Metropolitan and Micropolitan Statistical Area "Waterloo-Cedar Falls, IA MSA" +Metropolitan and Micropolitan Statistical Area "Watertown, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Watertown-Fort Atkinson, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Watertown-Fort Drum, NY MSA" +Metropolitan and Micropolitan Statistical Area "Wauchula, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Wausau, WI MSA" +Metropolitan and Micropolitan Statistical Area "Waycross, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Weatherford, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Weirton-Steubenville, WV-OH MSA" +Metropolitan and Micropolitan Statistical Area "Wenatchee, WA MSA" +Metropolitan and Micropolitan Statistical Area "West Plains, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Wheeling, WV-OH MSA" +Metropolitan and Micropolitan Statistical Area "Whitewater-Elkhorn, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Wichita Falls, TX MSA" +Metropolitan and Micropolitan Statistical Area "Wichita, KS MSA" +Metropolitan and Micropolitan Statistical Area "Williamsport, PA MSA" +Metropolitan and Micropolitan Statistical Area "Williston, ND MicroSA" +Metropolitan and Micropolitan Statistical Area "Willmar, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Wilmington, NC MSA" +Metropolitan and Micropolitan Statistical Area "Wilmington, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Wilson, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Winchester, VA-WV MSA" +Metropolitan and Micropolitan Statistical Area "Winnemucca, NV MicroSA" +Metropolitan and Micropolitan Statistical Area "Winona, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Winston-Salem, NC MSA" +Metropolitan and Micropolitan Statistical Area "Wisconsin Rapids-Marshfield, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Woodward, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Wooster, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Worcester, MA-CT MSA" +Metropolitan and Micropolitan Statistical Area "Worthington, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Yakima, WA MSA" +Metropolitan and Micropolitan Statistical Area "Yankton, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "York-Hanover, PA MSA" +Metropolitan and Micropolitan Statistical Area "Youngstown-Warren-Boardman, OH-PA MSA" +Metropolitan and Micropolitan Statistical Area "Yuba City, CA MSA" +Metropolitan and Micropolitan Statistical Area "Yuma, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Zanesville, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Zapata, TX MicroSA" +Metropolitan and Micropolitan Statistical Area None +Misc Extra Refrigerator "EF 15.9, Fed Standard, bottom freezer-reference fridge" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=573 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator "EF 19.8, bottom freezer" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=458 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator "EF 6.9, Average Installed" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1102 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator "EF 6.9, National Average" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1102 extra_refrigerator_usage_multiplier=0.221 +Misc Extra Refrigerator EF 10.2 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=748 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 10.5 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=727 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 15.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=480 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 17.6 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=433 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 19.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=383 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 21.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=348 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 6.7 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1139 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator None ResStockArguments extra_refrigerator_present=false extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=0 extra_refrigerator_usage_multiplier=0 +Misc Extra Refrigerator Void +Misc Freezer "EF 12, Average Installed" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=935 freezer_usage_multiplier=1.0 +Misc Freezer "EF 12, National Average" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=935 freezer_usage_multiplier=0.342 +Misc Freezer "EF 16, 2001 Fed Standard-reference freezer" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=712 freezer_usage_multiplier=1.0 +Misc Freezer "EF 18, 2008 Energy Star" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=641 freezer_usage_multiplier=1.0 +Misc Freezer "EF 20, 2008 Energy Star Most Efficient" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=568 freezer_usage_multiplier=1.0 +Misc Freezer None ResStockArguments freezer_present=false freezer_location=auto freezer_rated_annual_kwh=0 freezer_usage_multiplier=0 +Misc Freezer Void +Misc Gas Fireplace Gas Fireplace ResStockArguments misc_fuel_loads_fireplace_present=true misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=auto misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=1.0 +Misc Gas Fireplace National Average ResStockArguments misc_fuel_loads_fireplace_present=true misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=auto misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=0.032 +Misc Gas Fireplace None ResStockArguments misc_fuel_loads_fireplace_present=false misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=0 misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=0 +Misc Gas Grill Gas Grill ResStockArguments misc_fuel_loads_grill_present=true misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=auto misc_fuel_loads_grill_usage_multiplier=1.0 +Misc Gas Grill National Average ResStockArguments misc_fuel_loads_grill_present=true misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=auto misc_fuel_loads_grill_usage_multiplier=0.029 +Misc Gas Grill None ResStockArguments misc_fuel_loads_grill_present=false misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=0 misc_fuel_loads_grill_usage_multiplier=0 +Misc Gas Lighting Gas Lighting ResStockArguments misc_fuel_loads_lighting_present=true misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=auto misc_fuel_loads_lighting_usage_multiplier=1.0 +Misc Gas Lighting National Average ResStockArguments misc_fuel_loads_lighting_present=true misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=auto misc_fuel_loads_lighting_usage_multiplier=0.012 +Misc Gas Lighting None ResStockArguments misc_fuel_loads_lighting_present=false misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=0 misc_fuel_loads_lighting_usage_multiplier=0 +Misc Hot Tub Spa Electricity ResStockArguments permanent_spa_present=true permanent_spa_pump_annual_kwh=auto permanent_spa_pump_usage_multiplier=1.0 permanent_spa_heater_type=electric resistance permanent_spa_heater_annual_kwh=auto permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=1.0 +Misc Hot Tub Spa Natural Gas ResStockArguments permanent_spa_present=true permanent_spa_pump_annual_kwh=auto permanent_spa_pump_usage_multiplier=1.0 permanent_spa_heater_type=gas fired permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=auto permanent_spa_heater_usage_multiplier=1.0 +Misc Hot Tub Spa None ResStockArguments permanent_spa_present=false permanent_spa_pump_annual_kwh=0 permanent_spa_pump_usage_multiplier=0 permanent_spa_heater_type=none permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=0 +Misc Hot Tub Spa Other Fuel ResStockArguments permanent_spa_present=false permanent_spa_pump_annual_kwh=0 permanent_spa_pump_usage_multiplier=0 permanent_spa_heater_type=none permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=0 +Misc Hot Tub Spa Void +Misc Pool Has Pool ResStockArguments pool_present=true +Misc Pool None ResStockArguments pool_present=false +Misc Pool Void +Misc Pool Heater "Electric, 78F" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.8 +Misc Pool Heater "Electric, Covered" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.3 +Misc Pool Heater "Electric, Covered, 78F" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.2 +Misc Pool Heater "Gas, 78F" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.8 +Misc Pool Heater "Gas, Covered" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.3 +Misc Pool Heater "Gas, Covered, 78F" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.2 +Misc Pool Heater Electricity ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=1.0 +Misc Pool Heater Natural Gas ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=1.0 +Misc Pool Heater None ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 +Misc Pool Heater Other Fuel ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 +Misc Pool Heater Solar ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 +Misc Pool Heater Unheated ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 +Misc Pool Pump 0.75 HP Pump ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=0.75 +Misc Pool Pump 1.0 HP Pump ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=1.0 +Misc Pool Pump National Average ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=0.075 +Misc Pool Pump None ResStockArguments pool_pump_annual_kwh=0 pool_pump_usage_multiplier=0 +Misc Well Pump High Efficiency ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=0.67 misc_plug_loads_well_pump_2_usage_multiplier=1.0 +Misc Well Pump National Average ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=0.127 misc_plug_loads_well_pump_2_usage_multiplier=1.0 +Misc Well Pump None ResStockArguments misc_plug_loads_well_pump_present=false misc_plug_loads_well_pump_annual_kwh=0 misc_plug_loads_well_pump_usage_multiplier=0 misc_plug_loads_well_pump_2_usage_multiplier=0 +Misc Well Pump Typical Efficiency ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=1.0 misc_plug_loads_well_pump_2_usage_multiplier=1.0 +Natural Ventilation "Cooling Season, 7 days/wk" ResStockArguments window_fraction_operable=0.67 +Natural Ventilation None ResStockArguments window_fraction_operable=0 +Neighbors "Left/Right at 15ft, Front/Back at 80ft" ResStockArguments neighbor_front_distance=80 neighbor_back_distance=80 neighbor_left_distance=15 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 12 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=12 neighbor_right_distance=12 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 2 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=2 neighbor_right_distance=2 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 27 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=27 neighbor_right_distance=27 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 4 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=4 neighbor_right_distance=4 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 7 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=7 neighbor_right_distance=7 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Back at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=15 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Front at 15ft ResStockArguments neighbor_front_distance=15 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Left at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=15 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Left/Right at 10ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=10 neighbor_right_distance=10 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Left/Right at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=15 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Left/Right at 20ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=20 neighbor_right_distance=20 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors None ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Right at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Occupants 0 ResStockArguments geometry_unit_num_occupants=0 general_water_use_usage_multiplier=auto +Occupants 1 ResStockArguments geometry_unit_num_occupants=1 general_water_use_usage_multiplier=auto +Occupants 10+ ResStockArguments geometry_unit_num_occupants=11 general_water_use_usage_multiplier=auto +Occupants 2 ResStockArguments geometry_unit_num_occupants=2 general_water_use_usage_multiplier=auto +Occupants 3 ResStockArguments geometry_unit_num_occupants=3 general_water_use_usage_multiplier=auto +Occupants 4 ResStockArguments geometry_unit_num_occupants=4 general_water_use_usage_multiplier=auto +Occupants 5 ResStockArguments geometry_unit_num_occupants=5 general_water_use_usage_multiplier=auto +Occupants 6 ResStockArguments geometry_unit_num_occupants=6 general_water_use_usage_multiplier=auto +Occupants 7 ResStockArguments geometry_unit_num_occupants=7 general_water_use_usage_multiplier=auto +Occupants 8 ResStockArguments geometry_unit_num_occupants=8 general_water_use_usage_multiplier=auto +Occupants 9 ResStockArguments geometry_unit_num_occupants=9 general_water_use_usage_multiplier=auto +Orientation ENE ResStockArguments geometry_unit_orientation=68 +Orientation ESE ResStockArguments geometry_unit_orientation=113 +Orientation East ResStockArguments geometry_unit_orientation=90 +Orientation NNE ResStockArguments geometry_unit_orientation=23 +Orientation NNW ResStockArguments geometry_unit_orientation=338 +Orientation North ResStockArguments geometry_unit_orientation=0 +Orientation Northeast ResStockArguments geometry_unit_orientation=45 +Orientation Northwest ResStockArguments geometry_unit_orientation=315 +Orientation SSE ResStockArguments geometry_unit_orientation=158 +Orientation SSW ResStockArguments geometry_unit_orientation=203 +Orientation South ResStockArguments geometry_unit_orientation=180 +Orientation Southeast ResStockArguments geometry_unit_orientation=135 +Orientation Southwest ResStockArguments geometry_unit_orientation=225 +Orientation WNW ResStockArguments geometry_unit_orientation=293 +Orientation WSW ResStockArguments geometry_unit_orientation=248 +Orientation West ResStockArguments geometry_unit_orientation=270 +Overhangs "2ft, All Windows" ResStockArguments overhangs_front_depth=2 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=2 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=2 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=2 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs "2ft, Back Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=2 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs "2ft, Front Windows" ResStockArguments overhangs_front_depth=2 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs "2ft, Left Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=2 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs "2ft, Right Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=2 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs None ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +PUMA "AK, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AK, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AK, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AK, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AK, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00115" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00116" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00117" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00118" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00119" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00120" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00121" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00122" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00123" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00124" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00125" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00126" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00127" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00128" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00129" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00130" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00131" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00132" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00133" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00134" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03709" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03710" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03711" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03712" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03713" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03714" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03715" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03716" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03717" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03718" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03719" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03720" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03721" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03722" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03723" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03724" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03725" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03726" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03727" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03728" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03729" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03730" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03731" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03732" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03733" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03734" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03735" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03736" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03737" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03738" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03739" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03740" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03741" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03742" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03743" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03744" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03745" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03746" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03747" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03748" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03749" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03750" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03751" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03752" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03753" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03754" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03755" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03756" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03757" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03758" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03759" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03760" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03761" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03762" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03763" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03764" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03765" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03766" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03767" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03768" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03769" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 04701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 04702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05911" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05912" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05913" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05914" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05915" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05916" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05917" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05918" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06511" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06512" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06513" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06514" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06515" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06709" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06710" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06711" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06712" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07115" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07311" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07312" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07313" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07314" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07315" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07316" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07317" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07318" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07319" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07320" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07321" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07322" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08511" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08512" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08513" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08514" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 10100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 10701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 10702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 10703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00808" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00809" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00810" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00811" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00812" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00813" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00814" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00815" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00816" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00817" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00818" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00819" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00820" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00821" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00822" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00823" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00824" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 04104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 04105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 04106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DC, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DC, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DC, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DC, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DC, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DE, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DE, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DE, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DE, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DE, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DE, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 02103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 06100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 06300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 06901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 06902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 06903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08606" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08607" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08608" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08609" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08610" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08611" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08612" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08613" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08614" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08615" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08616" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08617" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08618" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08619" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08620" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08621" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08622" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08623" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08624" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09911" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 12100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 12701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 12702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 12703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 12704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 05001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 05002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 06001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 06002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03009" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03407" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03408" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03409" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03410" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03411" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03412" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03413" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03414" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03415" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03416" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03417" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03418" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03419" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03420" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03421" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03422" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03520" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03521" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03522" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03523" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03524" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03525" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03526" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03527" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03528" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03529" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03530" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03531" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03532" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03210" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03211" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03212" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03213" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01405" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01406" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01407" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01408" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01409" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01410" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01808" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ND, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ND, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ND, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ND, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ND, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00405" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00406" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00407" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00408" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00409" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00410" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00411" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00412" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00413" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03210" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03211" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03212" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03311" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03312" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03313" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03709" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03710" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03808" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03809" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03810" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04009" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04010" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04011" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04012" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04013" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04014" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04015" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04016" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04017" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04018" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01314" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01316" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01317" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01318" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01319" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01320" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01321" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01322" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01323" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01324" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03210" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03211" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 04001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 04002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SD, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SD, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SD, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SD, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SD, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SD, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02311" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02312" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02313" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02314" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02315" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02316" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02317" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02318" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02319" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02320" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02321" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02322" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02511" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02512" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02513" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02514" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02515" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02516" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04606" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04607" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04608" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04609" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04610" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04611" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04612" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04613" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04614" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04615" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04616" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04617" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04618" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04619" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04620" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04621" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04622" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04623" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04624" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04625" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04626" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04627" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04628" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04629" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04630" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04631" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04632" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04633" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04634" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04635" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04636" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04637" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04638" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05911" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05912" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05913" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05914" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05915" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05916" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 05001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 11001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 11002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 13001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 21001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35009" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 49001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 49002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 49003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 49004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 53001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 57001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 57002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 10701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 10702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 10703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51010" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51020" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51040" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51044" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51045" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51080" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51084" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51085" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51087" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51089" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51090" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51095" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51096" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51097" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51115" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51120" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51125" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51135" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51145" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51154" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51155" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51164" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51165" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51167" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51175" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51186" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51215" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51224" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51225" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51235" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51244" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51245" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51246" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51255" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 55001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 55002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VT, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VT, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VT, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VT, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11606" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11607" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11608" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11609" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11610" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11611" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11612" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11613" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11614" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11615" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11616" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 10000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 20000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 30000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 40101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 40301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 40701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 41001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 41002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 41003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 41004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 41005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 50000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 55101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 55102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 55103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 70101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 70201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 70301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WY, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WY, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WY, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WY, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WY, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA Metro Status "In metro area, not/partially in principal city" +PUMA Metro Status "In metro area, principal city" +PUMA Metro Status Not/partially in metro area +PV Orientation East ResStockArguments pv_system_array_azimuth=90 pv_system_2_array_azimuth=0 +PV Orientation None ResStockArguments pv_system_array_azimuth=180 pv_system_2_array_azimuth=0 +PV Orientation North ResStockArguments pv_system_array_azimuth=0 pv_system_2_array_azimuth=0 +PV Orientation Northeast ResStockArguments pv_system_array_azimuth=45 pv_system_2_array_azimuth=0 +PV Orientation Northwest ResStockArguments pv_system_array_azimuth=315 pv_system_2_array_azimuth=0 +PV Orientation South ResStockArguments pv_system_array_azimuth=180 pv_system_2_array_azimuth=0 +PV Orientation Southeast ResStockArguments pv_system_array_azimuth=135 pv_system_2_array_azimuth=0 +PV Orientation Southwest ResStockArguments pv_system_array_azimuth=225 pv_system_2_array_azimuth=0 +PV Orientation West ResStockArguments pv_system_array_azimuth=270 pv_system_2_array_azimuth=0 +PV System Size 1.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=1000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 11.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=11000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 13.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=13000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 3.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=3000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 5.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=5000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 7.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=7000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 9.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=9000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size None ResStockArguments pv_system_present=false pv_system_module_type=auto pv_system_max_power_output=0 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +Plug Load Diversity 100% ResStockArguments misc_plug_loads_other_2_usage_multiplier=1.0 misc_plug_loads_television_2_usage_multiplier=1.0 +Plug Load Diversity 150% ResStockArguments misc_plug_loads_other_2_usage_multiplier=1.5 misc_plug_loads_television_2_usage_multiplier=1.5 +Plug Load Diversity 200% ResStockArguments misc_plug_loads_other_2_usage_multiplier=2.0 misc_plug_loads_television_2_usage_multiplier=2.0 +Plug Load Diversity 25% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.25 misc_plug_loads_television_2_usage_multiplier=0.25 +Plug Load Diversity 400% ResStockArguments misc_plug_loads_other_2_usage_multiplier=4.0 misc_plug_loads_television_2_usage_multiplier=4.0 +Plug Load Diversity 50% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.5 misc_plug_loads_television_2_usage_multiplier=0.5 +Plug Load Diversity 75% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.75 misc_plug_loads_television_2_usage_multiplier=0.75 +Plug Loads 100% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.0 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.0 +Plug Loads 101% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.01 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.01 +Plug Loads 102% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.02 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.02 +Plug Loads 103% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.03 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.03 +Plug Loads 104% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.04 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.04 +Plug Loads 105% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.05 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.05 +Plug Loads 106% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.06 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.06 +Plug Loads 108% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.08 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.08 +Plug Loads 110% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.1 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.1 +Plug Loads 113% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.13 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.13 +Plug Loads 119% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.19 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.19 +Plug Loads 121% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.21 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.21 +Plug Loads 123% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.23 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.23 +Plug Loads 134% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.34 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.34 +Plug Loads 137% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.37 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.37 +Plug Loads 140% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.4 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.4 +Plug Loads 144% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.44 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.44 +Plug Loads 166% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.66 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.66 +Plug Loads 78% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.78 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.78 +Plug Loads 79% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.79 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.79 +Plug Loads 82% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.82 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.82 +Plug Loads 84% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.84 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.84 +Plug Loads 85% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.85 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.85 +Plug Loads 86% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.86 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.86 +Plug Loads 89% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.89 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.89 +Plug Loads 91% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.91 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.91 +Plug Loads 93% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.93 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.93 +Plug Loads 94% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.94 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.94 +Plug Loads 95% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.95 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.95 +Plug Loads 96% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.96 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.96 +Plug Loads 97% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.97 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.97 +Plug Loads 99% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.99 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.99 +Power Outage Summer ResStockArguments schedules_power_outage_periods=Jul 1 5 - Jul 31 14 schedules_power_outage_periods_window_natvent_availability=always available +REEDS Balancing Area 1 +REEDS Balancing Area 10 +REEDS Balancing Area 100 +REEDS Balancing Area 101 +REEDS Balancing Area 102 +REEDS Balancing Area 103 +REEDS Balancing Area 104 +REEDS Balancing Area 105 +REEDS Balancing Area 106 +REEDS Balancing Area 107 +REEDS Balancing Area 108 +REEDS Balancing Area 109 +REEDS Balancing Area 11 +REEDS Balancing Area 110 +REEDS Balancing Area 111 +REEDS Balancing Area 112 +REEDS Balancing Area 113 +REEDS Balancing Area 114 +REEDS Balancing Area 115 +REEDS Balancing Area 116 +REEDS Balancing Area 117 +REEDS Balancing Area 118 +REEDS Balancing Area 119 +REEDS Balancing Area 12 +REEDS Balancing Area 120 +REEDS Balancing Area 121 +REEDS Balancing Area 122 +REEDS Balancing Area 123 +REEDS Balancing Area 124 +REEDS Balancing Area 125 +REEDS Balancing Area 126 +REEDS Balancing Area 127 +REEDS Balancing Area 128 +REEDS Balancing Area 129 +REEDS Balancing Area 13 +REEDS Balancing Area 130 +REEDS Balancing Area 131 +REEDS Balancing Area 132 +REEDS Balancing Area 133 +REEDS Balancing Area 134 +REEDS Balancing Area 14 +REEDS Balancing Area 15 +REEDS Balancing Area 16 +REEDS Balancing Area 17 +REEDS Balancing Area 18 +REEDS Balancing Area 19 +REEDS Balancing Area 2 +REEDS Balancing Area 20 +REEDS Balancing Area 21 +REEDS Balancing Area 22 +REEDS Balancing Area 23 +REEDS Balancing Area 24 +REEDS Balancing Area 25 +REEDS Balancing Area 26 +REEDS Balancing Area 27 +REEDS Balancing Area 28 +REEDS Balancing Area 29 +REEDS Balancing Area 3 +REEDS Balancing Area 30 +REEDS Balancing Area 31 +REEDS Balancing Area 32 +REEDS Balancing Area 33 +REEDS Balancing Area 34 +REEDS Balancing Area 35 +REEDS Balancing Area 36 +REEDS Balancing Area 37 +REEDS Balancing Area 38 +REEDS Balancing Area 39 +REEDS Balancing Area 4 +REEDS Balancing Area 40 +REEDS Balancing Area 41 +REEDS Balancing Area 42 +REEDS Balancing Area 43 +REEDS Balancing Area 44 +REEDS Balancing Area 45 +REEDS Balancing Area 46 +REEDS Balancing Area 47 +REEDS Balancing Area 48 +REEDS Balancing Area 49 +REEDS Balancing Area 5 +REEDS Balancing Area 50 +REEDS Balancing Area 51 +REEDS Balancing Area 52 +REEDS Balancing Area 53 +REEDS Balancing Area 54 +REEDS Balancing Area 55 +REEDS Balancing Area 56 +REEDS Balancing Area 57 +REEDS Balancing Area 58 +REEDS Balancing Area 59 +REEDS Balancing Area 6 +REEDS Balancing Area 60 +REEDS Balancing Area 61 +REEDS Balancing Area 62 +REEDS Balancing Area 63 +REEDS Balancing Area 64 +REEDS Balancing Area 65 +REEDS Balancing Area 66 +REEDS Balancing Area 67 +REEDS Balancing Area 68 +REEDS Balancing Area 69 +REEDS Balancing Area 7 +REEDS Balancing Area 70 +REEDS Balancing Area 71 +REEDS Balancing Area 72 +REEDS Balancing Area 73 +REEDS Balancing Area 74 +REEDS Balancing Area 75 +REEDS Balancing Area 76 +REEDS Balancing Area 77 +REEDS Balancing Area 78 +REEDS Balancing Area 79 +REEDS Balancing Area 8 +REEDS Balancing Area 80 +REEDS Balancing Area 81 +REEDS Balancing Area 82 +REEDS Balancing Area 83 +REEDS Balancing Area 84 +REEDS Balancing Area 85 +REEDS Balancing Area 86 +REEDS Balancing Area 87 +REEDS Balancing Area 88 +REEDS Balancing Area 89 +REEDS Balancing Area 9 +REEDS Balancing Area 90 +REEDS Balancing Area 91 +REEDS Balancing Area 92 +REEDS Balancing Area 93 +REEDS Balancing Area 94 +REEDS Balancing Area 95 +REEDS Balancing Area 96 +REEDS Balancing Area 97 +REEDS Balancing Area 98 +REEDS Balancing Area 99 +REEDS Balancing Area None +Radiant Barrier No ResStockArguments radiant_barrier_attic_location=none radiant_barrier_grade=1 +Radiant Barrier None ResStockArguments radiant_barrier_attic_location=none radiant_barrier_grade=1 +Radiant Barrier Yes ResStockArguments radiant_barrier_attic_location=Attic roof only radiant_barrier_grade=1 +Range Spot Vent Hour Hour0 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=0 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour1 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=1 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour10 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=10 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour11 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=11 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour12 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=12 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour13 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=13 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour14 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=14 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour15 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=15 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour16 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=16 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour17 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=17 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour18 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=18 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour19 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=19 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour2 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=2 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour20 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=20 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour21 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=21 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour22 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=22 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour23 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=23 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour3 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=3 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour4 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=4 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour5 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=5 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour6 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=6 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour7 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=7 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour8 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=8 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour9 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=9 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Refrigerator EF 10.2 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=748 +Refrigerator EF 10.5 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=727 +Refrigerator EF 15.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=480 +Refrigerator EF 17.6 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=433 +Refrigerator EF 19.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=383 +Refrigerator EF 21.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=348 +Refrigerator EF 6.7 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=1139 +Refrigerator None ResStockArguments refrigerator_present=false refrigerator_location=auto refrigerator_rated_annual_kwh=0 +Refrigerator Void +Refrigerator Usage Level 100% Usage ResStockArguments refrigerator_usage_multiplier=1.0 +Refrigerator Usage Level 105% Usage ResStockArguments refrigerator_usage_multiplier=1.05 +Refrigerator Usage Level 95% Usage ResStockArguments refrigerator_usage_multiplier=0.95 +Roof Material "Asphalt Shingles, Dark" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=dark +Roof Material "Asphalt Shingles, Light" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=light +Roof Material "Asphalt Shingles, Medium" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=medium +Roof Material "Asphalt Shingles, White or cool colors" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=reflective +Roof Material "Composition Shingles, White or Cool Colors" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=reflective +Roof Material "Metal, Cool Colors" ResStockArguments roof_material_type=metal surfacing roof_color=reflective +Roof Material "Metal, Dark" ResStockArguments roof_material_type=metal surfacing roof_color=dark +Roof Material "Metal, Light" ResStockArguments roof_material_type=metal surfacing roof_color=light +Roof Material "Metal, Medium" ResStockArguments roof_material_type=metal surfacing roof_color=medium +Roof Material "Metal, White" ResStockArguments roof_material_type=metal surfacing roof_color=reflective +Roof Material "Tile, Clay or Ceramic" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium +Roof Material "Tile, Clay or Ceramic, White or Cool Colors" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective +Roof Material "Tile, Concrete" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium +Roof Material "Tile, Concrete, White or Cool Colors" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective +Roof Material "Tile, Dark" ResStockArguments roof_material_type=slate or tile shingles roof_color=dark +Roof Material "Tile, Light" ResStockArguments roof_material_type=slate or tile shingles roof_color=light +Roof Material "Tile, Medium" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium +Roof Material "Tile, White" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective +Roof Material Composition Shingles ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=medium +Roof Material Galvanized Steel ResStockArguments roof_material_type=metal surfacing roof_color=medium +Roof Material Slate ResStockArguments roof_material_type=slate or tile shingles roof_color=medium +Roof Material Wood Shingles ResStockArguments roof_material_type=wood shingles or shakes roof_color=medium +Solar Hot Water "40 sqft, South, 10 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=10 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, South, Latitude - 15 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=latitude-15 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, South, Roof Pitch" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, West, 70 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=70 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, West, Latitude + 15 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=latitude+15 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, West, Roof Pitch" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water None ResStockArguments solar_thermal_system_type=none solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +State AK ResStockArguments site_state_code=AK +State AL ResStockArguments site_state_code=AL +State AR ResStockArguments site_state_code=AR +State AZ ResStockArguments site_state_code=AZ +State CA ResStockArguments site_state_code=CA +State CO ResStockArguments site_state_code=CO +State CT ResStockArguments site_state_code=CT +State DC ResStockArguments site_state_code=DC +State DE ResStockArguments site_state_code=DE +State FL ResStockArguments site_state_code=FL +State GA ResStockArguments site_state_code=GA +State HI ResStockArguments site_state_code=HI +State IA ResStockArguments site_state_code=IA +State ID ResStockArguments site_state_code=ID +State IL ResStockArguments site_state_code=IL +State IN ResStockArguments site_state_code=IN +State KS ResStockArguments site_state_code=KS +State KY ResStockArguments site_state_code=KY +State LA ResStockArguments site_state_code=LA +State MA ResStockArguments site_state_code=MA +State MD ResStockArguments site_state_code=MD +State ME ResStockArguments site_state_code=ME +State MI ResStockArguments site_state_code=MI +State MN ResStockArguments site_state_code=MN +State MO ResStockArguments site_state_code=MO +State MS ResStockArguments site_state_code=MS +State MT ResStockArguments site_state_code=MT +State NC ResStockArguments site_state_code=NC +State ND ResStockArguments site_state_code=ND +State NE ResStockArguments site_state_code=NE +State NH ResStockArguments site_state_code=NH +State NJ ResStockArguments site_state_code=NJ +State NM ResStockArguments site_state_code=NM +State NV ResStockArguments site_state_code=NV +State NY ResStockArguments site_state_code=NY +State OH ResStockArguments site_state_code=OH +State OK ResStockArguments site_state_code=OK +State OR ResStockArguments site_state_code=OR +State PA ResStockArguments site_state_code=PA +State RI ResStockArguments site_state_code=RI +State SC ResStockArguments site_state_code=SC +State SD ResStockArguments site_state_code=SD +State TN ResStockArguments site_state_code=TN +State TX ResStockArguments site_state_code=TX +State UT ResStockArguments site_state_code=UT +State VA ResStockArguments site_state_code=VA +State VT ResStockArguments site_state_code=VT +State WA ResStockArguments site_state_code=WA +State WI ResStockArguments site_state_code=WI +State WV ResStockArguments site_state_code=WV +State WY ResStockArguments site_state_code=WY +State Metro Median Income 0-30% +State Metro Median Income 100-120% +State Metro Median Income 120-150% +State Metro Median Income 150%+ +State Metro Median Income 30-60% +State Metro Median Income 60-80% +State Metro Median Income 80-100% +State Metro Median Income Not Available +Storm Windows Clear ResStockArguments window_storm_type=clear +Storm Windows Low-E ResStockArguments window_storm_type=low-e +Tenure Not Available +Tenure Owner +Tenure Renter +Usage Level Average +Usage Level High +Usage Level Low +Usage Level Medium +Vacancy Status Occupied +Vacancy Status Vacant ResStockArguments schedules_vacancy_periods=Jan 1 - Dec 31 +Vintage 1940s ResStockArguments vintage=1940s year_built=auto +Vintage 1950s ResStockArguments vintage=1950s year_built=auto +Vintage 1960s ResStockArguments vintage=1960s year_built=auto +Vintage 1970s ResStockArguments vintage=1970s year_built=auto +Vintage 1980s ResStockArguments vintage=1980s year_built=auto +Vintage 1990s ResStockArguments vintage=1990s year_built=auto +Vintage 2000s ResStockArguments vintage=2000s year_built=auto +Vintage 2010s ResStockArguments vintage=2010s year_built=auto +Vintage <1940 ResStockArguments vintage=<1940 year_built=auto +Vintage <1950 ResStockArguments vintage=<1950 year_built=auto +Vintage ACS 1940-59 +Vintage ACS 1960-79 +Vintage ACS 1980-99 +Vintage ACS 2000-09 +Vintage ACS 2010s +Vintage ACS <1940 +Water Heater Efficiency "Electric Heat Pump, 50 gal, 3.45 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 50 gal, 3.45 UEF, 140F" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=140 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 66 gal, 3.35 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=66 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.35 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 80 gal, 3.45 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=80 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Natural Gas Premium, Condensing" ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Natural Gas Tankless, Condensing" ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=natural gas water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.96 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Propane Premium, Condensing" ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Electric Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=electricity water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.95 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Electric Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=electricity water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.92 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Electric Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=electricity water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.99 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency FIXME Fuel Oil Indirect ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.62 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Fuel Oil Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.68 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Fuel Oil Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.62 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Natural Gas Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.67 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Natural Gas Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Natural Gas Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=natural gas water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Other Fuel ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=wood water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Propane Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.67 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Propane Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Propane Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=propane water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Fuel Electricity +Water Heater Fuel Fuel Oil +Water Heater Fuel Natural Gas +Water Heater Fuel Other Fuel +Water Heater Fuel Propane +Water Heater In Unit No +Water Heater In Unit Yes +Water Heater Location Attic ResStockArguments water_heater_location=attic +Water Heater Location Conditioned Mechanical Room ResStockArguments water_heater_location=other heated space +Water Heater Location Crawlspace ResStockArguments water_heater_location=crawlspace +Water Heater Location Garage ResStockArguments water_heater_location=garage +Water Heater Location Heated Basement ResStockArguments water_heater_location=basement - conditioned +Water Heater Location Living Space ResStockArguments water_heater_location=conditioned space +Water Heater Location Outside ResStockArguments water_heater_location=other exterior +Water Heater Location Unheated Basement ResStockArguments water_heater_location=basement - unconditioned +Window Areas F10 B30 L10 R10 ResStockArguments window_front_wwr=0.1 window_back_wwr=0.3 window_left_wwr=0.1 window_right_wwr=0.1 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F12 B12 L12 R12 ResStockArguments window_front_wwr=0.12 window_back_wwr=0.12 window_left_wwr=0.12 window_right_wwr=0.12 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F15 B15 L0 R0 ResStockArguments window_front_wwr=0.15 window_back_wwr=0.15 window_left_wwr=0 window_right_wwr=0 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F15 B15 L15 R15 ResStockArguments window_front_wwr=0.15 window_back_wwr=0.15 window_left_wwr=0.15 window_right_wwr=0.15 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F18 B18 L18 R18 ResStockArguments window_front_wwr=0.18 window_back_wwr=0.18 window_left_wwr=0.18 window_right_wwr=0.18 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F30 B30 L30 R30 ResStockArguments window_front_wwr=0.30 window_back_wwr=0.30 window_left_wwr=0.30 window_right_wwr=0.30 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F6 B6 L6 R6 ResStockArguments window_front_wwr=0.06 window_back_wwr=0.06 window_left_wwr=0.06 window_right_wwr=0.06 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F9 B9 L9 R9 ResStockArguments window_front_wwr=0.09 window_back_wwr=0.09 window_left_wwr=0.09 window_right_wwr=0.09 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas None ResStockArguments window_front_wwr=0.0 window_back_wwr=0.0 window_left_wwr=0.0 window_right_wwr=0.0 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Windows "Double, Clear, Metal, Air" ResStockArguments window_ufactor=0.76 window_shgc=0.67 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Metal, Air, Exterior Clear Storm" ResStockArguments window_ufactor=0.55 window_shgc=0.51 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.49 window_shgc=0.44 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Non-metal, Air" ResStockArguments window_ufactor=0.49 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Non-metal, Air, Exterior Clear Storm" ResStockArguments window_ufactor=0.34 window_shgc=0.49 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Non-metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.28 window_shgc=0.42 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Thermal-Break, Air" ResStockArguments window_ufactor=0.63 window_shgc=0.62 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Low-E, H-Gain" ResStockArguments window_ufactor=0.29 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Low-E, L-Gain" ResStockArguments window_ufactor=0.26 window_shgc=0.31 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Low-E, Non-metal, Air, L-Gain" ResStockArguments window_ufactor=0.37 window_shgc=0.3 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Low-E, Non-metal, Air, M-Gain" ResStockArguments window_ufactor=0.38 window_shgc=0.44 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Metal" ResStockArguments window_ufactor=1.16 window_shgc=0.76 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Metal, Exterior Clear Storm" ResStockArguments window_ufactor=0.67 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.57 window_shgc=0.47 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Non-metal" ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Non-metal, Exterior Clear Storm" ResStockArguments window_ufactor=0.47 window_shgc=0.54 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Non-metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.36 window_shgc=0.46 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Triple, Low-E, Insulated, Argon, H-Gain" ResStockArguments window_ufactor=0.18 window_shgc=0.40 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Triple, Low-E, Insulated, Argon, L-Gain" ResStockArguments window_ufactor=0.17 window_shgc=0.27 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Triple, Low-E, Non-metal, Air, L-Gain" ResStockArguments window_ufactor=0.29 window_shgc=0.26 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows No Windows ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows Void From 87d7f43b708a6a75355ddd153f1d26876eb06afc Mon Sep 17 00:00:00 2001 From: Yingli Date: Fri, 26 Jul 2024 17:41:10 -0600 Subject: [PATCH 10/21] unit test --- .../LoadFlexibility/resources/input_helper.py | 10 +- .../LoadFlexibility/resources/setpoint.py | 35 +- resources/options_lookup.tsv | 27946 ++++++++-------- 3 files changed, 14012 insertions(+), 13979 deletions(-) diff --git a/measures/LoadFlexibility/resources/input_helper.py b/measures/LoadFlexibility/resources/input_helper.py index 1fd5739df4..a96defe0eb 100644 --- a/measures/LoadFlexibility/resources/input_helper.py +++ b/measures/LoadFlexibility/resources/input_helper.py @@ -1,5 +1,5 @@ from dataclasses import dataclass, field -import openstudio +#import openstudio from typing import Optional from typing import TypeVar, Generic, List T = TypeVar('T') @@ -79,7 +79,7 @@ class __RelativeOffsetData: type=int, default=4, displayname="Heating Pre-Peak Offset (deg F)", - description="How much offset to apply to the heating schedule in degree fahrenheit before the peak. Only used" + description="How much increase offset to apply to the heating schedule in degree fahrenheit before the peak. Only used" " if offset type is relative." ) heating_on_peak_offset: Argument[int] = Argument( @@ -87,7 +87,7 @@ class __RelativeOffsetData: type=int, default=4, displayname="Heating On-Peak Offset (deg F)", - description="How much offset to apply to the heating schedule in degree fahrenheit on the peak. Only used" + description="How much decrease offset to apply to the heating schedule in degree fahrenheit on the peak. Only used" " if offset type is relative." ) heating_max: Argument[int] = Argument( @@ -111,7 +111,7 @@ class __RelativeOffsetData: type=int, default=4, displayname="Cooling Pre-Peak Offset (deg F)", - description="How much offset to apply to the cooling schedule in degree fahrenheit before the peak." + description="How much decrease offset to apply to the cooling schedule in degree fahrenheit before the peak." " Only used if offset type is relative." ) cooling_on_peak_offset: Argument[int] = Argument( @@ -119,7 +119,7 @@ class __RelativeOffsetData: type=int, default=4, displayname="Cooling On-Peak Offset (deg F)", - description="How much offset to apply to the cooling schedule in degree fahrenheit on the peak." + description="How much increase offset to apply to the cooling schedule in degree fahrenheit on the peak." " Only used if offset type is relative." ) cooling_max: Argument[int] = Argument( diff --git a/measures/LoadFlexibility/resources/setpoint.py b/measures/LoadFlexibility/resources/setpoint.py index a5152ce236..89d6892694 100644 --- a/measures/LoadFlexibility/resources/setpoint.py +++ b/measures/LoadFlexibility/resources/setpoint.py @@ -18,6 +18,7 @@ def get_month_day(year_index, total_indices, year=2007): hour_num = year_index // num_timsteps_per_hour day_num = int(hour_num // 24 + 1) month = datetime.strptime(str(year) + "-" + str(day_num), "%Y-%j").strftime("%m") + month = int(month) # need to modify based on the simulation year what the first day is # the first day in 2007 is Monday @@ -46,11 +47,11 @@ def get_prepeak_and_peak_start_end(year_index, total_indices, on_peak_hour_weekd month, day_type = get_month_day(year_index, total_indices) if setpoint_type == 'heating': - pre_peak_duration = OffsetTimingData.heating_pre_peak_duration - on_peak_duration = OffsetTimingData.heating_on_peak_duration + pre_peak_duration = OffsetTimingData.heating_pre_peak_duration.default + on_peak_duration = OffsetTimingData.heating_on_peak_duration.default if setpoint_type == 'cooling': - pre_peak_duration = OffsetTimingData.cooling_pre_peak_duration - on_peak_duration = OffsetTimingData.cooling_on_peak_duration + pre_peak_duration = OffsetTimingData.cooling_pre_peak_duration.default + on_peak_duration = OffsetTimingData.cooling_on_peak_duration.default if day_type == 'weekday': row = on_peak_hour_weekday_dict[month] @@ -102,13 +103,13 @@ def get_setpoint_offset(year_index, total_indices, on_peak_hour_weekday_dict, on setattr(offset_time, f.name, value) if setpoint_type == 'heating': - pre_peak_offset = RelativeOffsetData.heating_pre_peak_offset - on_peak_offset = RelativeOffsetData.heating_on_peak_offset + pre_peak_offset = RelativeOffsetData.heating_pre_peak_offset.default + on_peak_offset = - RelativeOffsetData.heating_on_peak_offset.default if setpoint_type == 'cooling': - pre_peak_offset = RelativeOffsetData.cooling_pre_peak_offset - on_peak_offset = RelativeOffsetData.cooling_on_peak_offset + pre_peak_offset = - RelativeOffsetData.cooling_pre_peak_offset.default + on_peak_offset = RelativeOffsetData.cooling_on_peak_offset.default - day_index = int(year_index % (24*num_timsteps_per_hour)) + day_index = int(year_index % (24*num_timsteps_per_hour)) if (offset_time.pre_peak_start_morning <= day_index < offset_time.peak_start_morning)\ or (offset_time.pre_peak_start_afternoon <= day_index < offset_time.peak_start_afternoon): setpoint_offset = pre_peak_offset @@ -139,11 +140,11 @@ def get_setpoint_absolute_value(year_index, total_indices, on_peak_hour_weekday setattr(offset_time, f.name, value) if setpoint_type == 'heating': - pre_peak_setpoint = AbsoluteOffsetData.heating_pre_peak_setpoint - on_peak_setpoint = AbsoluteOffsetData.heating_on_peak_setpoint + pre_peak_setpoint = AbsoluteOffsetData.heating_pre_peak_setpoint.default + on_peak_setpoint = AbsoluteOffsetData.heating_on_peak_setpoint.default if setpoint_type == 'cooling': - pre_peak_setpoint = AbsoluteOffsetData.cooling_pre_peak_setpoint - on_peak_setpoint = AbsoluteOffsetData.cooling_on_peak_setpoint + pre_peak_setpoint = AbsoluteOffsetData.cooling_pre_peak_setpoint.default + on_peak_setpoint = AbsoluteOffsetData.cooling_on_peak_setpoint.default day_index = int(year_index % (24*num_timsteps_per_hour)) if (offset_time.pre_peak_start_morning <= day_index < offset_time.peak_start_morning)\ @@ -165,11 +166,11 @@ def clip_setpoints(setpoint, setpoint_type): """ if setpoint_type == 'heating': - setpoint_max = RelativeOffsetData.heating_max - setpoint_min = RelativeOffsetData.heating_min + setpoint_max = RelativeOffsetData.heating_max.default + setpoint_min = RelativeOffsetData.heating_min.default elif setpoint_type == 'cooling': - setpoint_max = RelativeOffsetData.cooling_max - setpoint_min = RelativeOffsetData.cooling_min + setpoint_max = RelativeOffsetData.cooling_max.default + setpoint_min = RelativeOffsetData.cooling_min.default if setpoint > setpoint_max: setpoint = setpoint_max diff --git a/resources/options_lookup.tsv b/resources/options_lookup.tsv index 7809e96d1b..1ae24e4d5f 100644 --- a/resources/options_lookup.tsv +++ b/resources/options_lookup.tsv @@ -1,13957 +1,13989 @@ -Parameter Name Option Name Measure Dir Measure Arg 1 Measure Arg 2 ... -AHS Region "CBSA Atlanta-Sandy Springs-Roswell, GA" -AHS Region "CBSA Boston-Cambridge-Newton, MA-NH" -AHS Region "CBSA Chicago-Naperville-Elgin, IL-IN-WI" -AHS Region "CBSA Dallas-Fort Worth-Arlington, TX" -AHS Region "CBSA Detroit-Warren-Dearborn, MI" -AHS Region "CBSA Houston-The Woodlands-Sugar Land, TX" -AHS Region "CBSA Los Angeles-Long Beach-Anaheim, CA" -AHS Region "CBSA Miami-Fort Lauderdale-West Palm Beach, FL" -AHS Region "CBSA New York-Newark-Jersey City, NY-NJ-PA" -AHS Region "CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD" -AHS Region "CBSA Phoenix-Mesa-Scottsdale, AZ" -AHS Region "CBSA Riverside-San Bernardino-Ontario, CA" -AHS Region "CBSA San Francisco-Oakland-Hayward, CA" -AHS Region "CBSA Seattle-Tacoma-Bellevue, WA" -AHS Region "CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV" -AHS Region Non-CBSA East North Central -AHS Region Non-CBSA East South Central -AHS Region Non-CBSA Middle Atlantic -AHS Region Non-CBSA Mountain -AHS Region Non-CBSA New England -AHS Region Non-CBSA Pacific -AHS Region Non-CBSA South Atlantic -AHS Region Non-CBSA West North Central -AHS Region Non-CBSA West South Central -AIANNH Area No -AIANNH Area Yes -ASHRAE IECC Climate Zone 2004 1A ResStockArguments site_iecc_zone=1A site_type=auto -ASHRAE IECC Climate Zone 2004 2A ResStockArguments site_iecc_zone=2A site_type=auto -ASHRAE IECC Climate Zone 2004 2B ResStockArguments site_iecc_zone=2B site_type=auto -ASHRAE IECC Climate Zone 2004 3A ResStockArguments site_iecc_zone=3A site_type=auto -ASHRAE IECC Climate Zone 2004 3B ResStockArguments site_iecc_zone=3B site_type=auto -ASHRAE IECC Climate Zone 2004 3C ResStockArguments site_iecc_zone=3C site_type=auto -ASHRAE IECC Climate Zone 2004 4A ResStockArguments site_iecc_zone=4A site_type=auto -ASHRAE IECC Climate Zone 2004 4B ResStockArguments site_iecc_zone=4B site_type=auto -ASHRAE IECC Climate Zone 2004 4C ResStockArguments site_iecc_zone=4C site_type=auto -ASHRAE IECC Climate Zone 2004 5A ResStockArguments site_iecc_zone=5A site_type=auto -ASHRAE IECC Climate Zone 2004 5B ResStockArguments site_iecc_zone=5B site_type=auto -ASHRAE IECC Climate Zone 2004 6A ResStockArguments site_iecc_zone=6A site_type=auto -ASHRAE IECC Climate Zone 2004 6B ResStockArguments site_iecc_zone=6B site_type=auto -ASHRAE IECC Climate Zone 2004 7A ResStockArguments site_iecc_zone=7 site_type=auto -ASHRAE IECC Climate Zone 2004 7AK ResStockArguments site_iecc_zone=7 site_type=auto -ASHRAE IECC Climate Zone 2004 7B ResStockArguments site_iecc_zone=7 site_type=auto -ASHRAE IECC Climate Zone 2004 8AK ResStockArguments site_iecc_zone=8 site_type=auto -ASHRAE IECC Climate Zone 2004 - 2A Split "2A - FL, GA, AL, MS" -ASHRAE IECC Climate Zone 2004 - 2A Split "2A - TX, LA" -ASHRAE IECC Climate Zone 2004 - 2A Split 1A -ASHRAE IECC Climate Zone 2004 - 2A Split 2B -ASHRAE IECC Climate Zone 2004 - 2A Split 3A -ASHRAE IECC Climate Zone 2004 - 2A Split 3B -ASHRAE IECC Climate Zone 2004 - 2A Split 3C -ASHRAE IECC Climate Zone 2004 - 2A Split 4A -ASHRAE IECC Climate Zone 2004 - 2A Split 4B -ASHRAE IECC Climate Zone 2004 - 2A Split 4C -ASHRAE IECC Climate Zone 2004 - 2A Split 5A -ASHRAE IECC Climate Zone 2004 - 2A Split 5B -ASHRAE IECC Climate Zone 2004 - 2A Split 6A -ASHRAE IECC Climate Zone 2004 - 2A Split 6B -ASHRAE IECC Climate Zone 2004 - 2A Split 7A -ASHRAE IECC Climate Zone 2004 - 2A Split 7AK -ASHRAE IECC Climate Zone 2004 - 2A Split 7B -ASHRAE IECC Climate Zone 2004 - 2A Split 8AK -Area Median Income 0-30% -Area Median Income 100-120% -Area Median Income 120-150% -Area Median Income 150%+ -Area Median Income 30-60% -Area Median Income 60-80% -Area Median Income 80-100% -Area Median Income Not Available -Bathroom Spot Vent Hour Hour0 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=0 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour1 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=1 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour10 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=10 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour11 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=11 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour12 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=12 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour13 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=13 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour14 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=14 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour15 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=15 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour16 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=16 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour17 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=17 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour18 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=18 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour19 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=19 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour2 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=2 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour20 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=20 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour21 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=21 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour22 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=22 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour23 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=23 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour3 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=3 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour4 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=4 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour5 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=5 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour6 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=6 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour7 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=7 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour8 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=8 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour9 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=9 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Battery "20 kWh, 80% Round Trip Efficiency" ResStockArguments battery_present=true battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=0.8 -Battery "20 kWh, Garage" ResStockArguments battery_present=true battery_location=garage battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto -Battery "20 kWh, Outside" ResStockArguments battery_present=true battery_location=outside battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto -Battery 10 kWh ResStockArguments battery_present=true battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto -Battery None ResStockArguments battery_present=false battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto -Bedrooms 1 ResStockArguments geometry_unit_num_bedrooms=1 geometry_unit_num_bathrooms=auto -Bedrooms 2 ResStockArguments geometry_unit_num_bedrooms=2 geometry_unit_num_bathrooms=auto -Bedrooms 3 ResStockArguments geometry_unit_num_bedrooms=3 geometry_unit_num_bathrooms=auto -Bedrooms 4 ResStockArguments geometry_unit_num_bedrooms=4 geometry_unit_num_bathrooms=auto -Bedrooms 5 ResStockArguments geometry_unit_num_bedrooms=5 geometry_unit_num_bathrooms=auto -Building America Climate Zone Cold -Building America Climate Zone Hot-Dry -Building America Climate Zone Hot-Humid -Building America Climate Zone Marine -Building America Climate Zone Mixed-Dry -Building America Climate Zone Mixed-Humid -Building America Climate Zone Subarctic -Building America Climate Zone Very Cold -CEC Climate Zone 1 -CEC Climate Zone 10 -CEC Climate Zone 11 -CEC Climate Zone 12 -CEC Climate Zone 13 -CEC Climate Zone 14 -CEC Climate Zone 15 -CEC Climate Zone 16 -CEC Climate Zone 2 -CEC Climate Zone 3 -CEC Climate Zone 4 -CEC Climate Zone 5 -CEC Climate Zone 6 -CEC Climate Zone 7 -CEC Climate Zone 8 -CEC Climate Zone 9 -CEC Climate Zone None -Ceiling Fan "Premium Efficiency, 0.5F Offset" ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=140.8 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0.5 -Ceiling Fan "Standard Efficiency, 0.5F Offset" ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=70.4 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0.5 -Ceiling Fan "Standard Efficiency, No usage" ResStockArguments ceiling_fan_present=false ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=0 ceiling_fan_quantity=0 ceiling_fan_cooling_setpoint_temp_offset=0 -Ceiling Fan None ResStockArguments ceiling_fan_present=false ceiling_fan_label_energy_use=0 ceiling_fan_efficiency=0 ceiling_fan_quantity=0 ceiling_fan_cooling_setpoint_temp_offset=0 -Ceiling Fan Premium Efficiency ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=140.8 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0 -Ceiling Fan Standard Efficiency ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=70.4 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0 -Census Division East North Central -Census Division East South Central -Census Division Middle Atlantic -Census Division Mountain -Census Division New England -Census Division Pacific -Census Division South Atlantic -Census Division West North Central -Census Division West South Central -Census Division RECS East North Central -Census Division RECS East South Central -Census Division RECS Middle Atlantic -Census Division RECS Mountain North -Census Division RECS Mountain South -Census Division RECS New England -Census Division RECS Pacific -Census Division RECS South Atlantic -Census Division RECS West North Central -Census Division RECS West South Central -Census Region Midwest -Census Region Northeast -Census Region South -Census Region West -City "AK, Anchorage" ResStockArguments site_city=auto -City "AL, Auburn" ResStockArguments site_city=auto -City "AL, Birmingham" ResStockArguments site_city=auto -City "AL, Decatur" ResStockArguments site_city=auto -City "AL, Dothan" ResStockArguments site_city=auto -City "AL, Florence" ResStockArguments site_city=auto -City "AL, Gadsden" ResStockArguments site_city=auto -City "AL, Hoover" ResStockArguments site_city=auto -City "AL, Huntsville" ResStockArguments site_city=auto -City "AL, Madison" ResStockArguments site_city=auto -City "AL, Mobile" ResStockArguments site_city=auto -City "AL, Montgomery" ResStockArguments site_city=auto -City "AL, Phenix City" ResStockArguments site_city=auto -City "AL, Tuscaloosa" ResStockArguments site_city=auto -City "AR, Bentonville" ResStockArguments site_city=auto -City "AR, Conway" ResStockArguments site_city=auto -City "AR, Fayetteville" ResStockArguments site_city=auto -City "AR, Fort Smith" ResStockArguments site_city=auto -City "AR, Hot Springs" ResStockArguments site_city=auto -City "AR, Jonesboro" ResStockArguments site_city=auto -City "AR, Little Rock" ResStockArguments site_city=auto -City "AR, North Little Rock" ResStockArguments site_city=auto -City "AR, Pine Bluff" ResStockArguments site_city=auto -City "AR, Rogers" ResStockArguments site_city=auto -City "AR, Springdale" ResStockArguments site_city=auto -City "AZ, Apache Junction" ResStockArguments site_city=auto -City "AZ, Avondale" ResStockArguments site_city=auto -City "AZ, Buckeye" ResStockArguments site_city=auto -City "AZ, Bullhead City" ResStockArguments site_city=auto -City "AZ, Casa Grande" ResStockArguments site_city=auto -City "AZ, Casas Adobes" ResStockArguments site_city=auto -City "AZ, Catalina Foothills" ResStockArguments site_city=auto -City "AZ, Chandler" ResStockArguments site_city=auto -City "AZ, Flagstaff" ResStockArguments site_city=auto -City "AZ, Fortuna Foothills" ResStockArguments site_city=auto -City "AZ, Gilbert" ResStockArguments site_city=auto -City "AZ, Glendale" ResStockArguments site_city=auto -City "AZ, Goodyear" ResStockArguments site_city=auto -City "AZ, Green Valley" ResStockArguments site_city=auto -City "AZ, Lake Havasu City" ResStockArguments site_city=auto -City "AZ, Marana" ResStockArguments site_city=auto -City "AZ, Maricopa" ResStockArguments site_city=auto -City "AZ, Mesa" ResStockArguments site_city=auto -City "AZ, Oro Valley" ResStockArguments site_city=auto -City "AZ, Peoria" ResStockArguments site_city=auto -City "AZ, Phoenix" ResStockArguments site_city=auto -City "AZ, Prescott Valley" ResStockArguments site_city=auto -City "AZ, Prescott" ResStockArguments site_city=auto -City "AZ, San Tan Valley" ResStockArguments site_city=auto -City "AZ, Scottsdale" ResStockArguments site_city=auto -City "AZ, Sierra Vista" ResStockArguments site_city=auto -City "AZ, Sun City West" ResStockArguments site_city=auto -City "AZ, Sun City" ResStockArguments site_city=auto -City "AZ, Surprise" ResStockArguments site_city=auto -City "AZ, Tempe" ResStockArguments site_city=auto -City "AZ, Tucson" ResStockArguments site_city=auto -City "AZ, Yuma" ResStockArguments site_city=auto -City "CA, Alameda" ResStockArguments site_city=auto -City "CA, Alhambra" ResStockArguments site_city=auto -City "CA, Aliso Viejo" ResStockArguments site_city=auto -City "CA, Altadena" ResStockArguments site_city=auto -City "CA, Anaheim" ResStockArguments site_city=auto -City "CA, Antioch" ResStockArguments site_city=auto -City "CA, Apple Valley" ResStockArguments site_city=auto -City "CA, Arcadia" ResStockArguments site_city=auto -City "CA, Arden-Arcade" ResStockArguments site_city=auto -City "CA, Bakersfield" ResStockArguments site_city=auto -City "CA, Baldwin Park" ResStockArguments site_city=auto -City "CA, Bellflower" ResStockArguments site_city=auto -City "CA, Berkeley" ResStockArguments site_city=auto -City "CA, Beverly Hills" ResStockArguments site_city=auto -City "CA, Brea" ResStockArguments site_city=auto -City "CA, Brentwood" ResStockArguments site_city=auto -City "CA, Buena Park" ResStockArguments site_city=auto -City "CA, Burbank" ResStockArguments site_city=auto -City "CA, Camarillo" ResStockArguments site_city=auto -City "CA, Campbell" ResStockArguments site_city=auto -City "CA, Carlsbad" ResStockArguments site_city=auto -City "CA, Carmichael" ResStockArguments site_city=auto -City "CA, Carson" ResStockArguments site_city=auto -City "CA, Castro Valley" ResStockArguments site_city=auto -City "CA, Cathedral City" ResStockArguments site_city=auto -City "CA, Cerritos" ResStockArguments site_city=auto -City "CA, Chico" ResStockArguments site_city=auto -City "CA, Chino Hills" ResStockArguments site_city=auto -City "CA, Chino" ResStockArguments site_city=auto -City "CA, Chula Vista" ResStockArguments site_city=auto -City "CA, Citrus Heights" ResStockArguments site_city=auto -City "CA, Clovis" ResStockArguments site_city=auto -City "CA, Colton" ResStockArguments site_city=auto -City "CA, Compton" ResStockArguments site_city=auto -City "CA, Concord" ResStockArguments site_city=auto -City "CA, Corona" ResStockArguments site_city=auto -City "CA, Costa Mesa" ResStockArguments site_city=auto -City "CA, Covina" ResStockArguments site_city=auto -City "CA, Culver City" ResStockArguments site_city=auto -City "CA, Cupertino" ResStockArguments site_city=auto -City "CA, Cypress" ResStockArguments site_city=auto -City "CA, Daly City" ResStockArguments site_city=auto -City "CA, Dana Point" ResStockArguments site_city=auto -City "CA, Danville" ResStockArguments site_city=auto -City "CA, Davis" ResStockArguments site_city=auto -City "CA, Diamond Bar" ResStockArguments site_city=auto -City "CA, Downey" ResStockArguments site_city=auto -City "CA, Dublin" ResStockArguments site_city=auto -City "CA, East Los Angeles" ResStockArguments site_city=auto -City "CA, El Cajon" ResStockArguments site_city=auto -City "CA, El Dorado Hills" ResStockArguments site_city=auto -City "CA, El Monte" ResStockArguments site_city=auto -City "CA, Elk Grove" ResStockArguments site_city=auto -City "CA, Encinitas" ResStockArguments site_city=auto -City "CA, Escondido" ResStockArguments site_city=auto -City "CA, Fairfield" ResStockArguments site_city=auto -City "CA, Florence-Graham" ResStockArguments site_city=auto -City "CA, Florin" ResStockArguments site_city=auto -City "CA, Folsom" ResStockArguments site_city=auto -City "CA, Fontana" ResStockArguments site_city=auto -City "CA, Fountain Valley" ResStockArguments site_city=auto -City "CA, Fremont" ResStockArguments site_city=auto -City "CA, Fresno" ResStockArguments site_city=auto -City "CA, Fullerton" ResStockArguments site_city=auto -City "CA, Garden Grove" ResStockArguments site_city=auto -City "CA, Gardena" ResStockArguments site_city=auto -City "CA, Gilroy" ResStockArguments site_city=auto -City "CA, Glendale" ResStockArguments site_city=auto -City "CA, Glendora" ResStockArguments site_city=auto -City "CA, Hacienda Heights" ResStockArguments site_city=auto -City "CA, Hanford" ResStockArguments site_city=auto -City "CA, Hawthorne" ResStockArguments site_city=auto -City "CA, Hayward" ResStockArguments site_city=auto -City "CA, Hemet" ResStockArguments site_city=auto -City "CA, Hesperia" ResStockArguments site_city=auto -City "CA, Highland" ResStockArguments site_city=auto -City "CA, Huntington Beach" ResStockArguments site_city=auto -City "CA, Huntington Park" ResStockArguments site_city=auto -City "CA, Indio" ResStockArguments site_city=auto -City "CA, Inglewood" ResStockArguments site_city=auto -City "CA, Irvine" ResStockArguments site_city=auto -City "CA, La Habra" ResStockArguments site_city=auto -City "CA, La Mesa" ResStockArguments site_city=auto -City "CA, La Quinta" ResStockArguments site_city=auto -City "CA, Laguna Niguel" ResStockArguments site_city=auto -City "CA, Lake Elsinore" ResStockArguments site_city=auto -City "CA, Lake Forest" ResStockArguments site_city=auto -City "CA, Lakewood" ResStockArguments site_city=auto -City "CA, Lancaster" ResStockArguments site_city=auto -City "CA, Lincoln" ResStockArguments site_city=auto -City "CA, Livermore" ResStockArguments site_city=auto -City "CA, Lodi" ResStockArguments site_city=auto -City "CA, Long Beach" ResStockArguments site_city=auto -City "CA, Los Angeles" ResStockArguments site_city=auto -City "CA, Lynwood" ResStockArguments site_city=auto -City "CA, Madera" ResStockArguments site_city=auto -City "CA, Manhattan Beach" ResStockArguments site_city=auto -City "CA, Manteca" ResStockArguments site_city=auto -City "CA, Martinez" ResStockArguments site_city=auto -City "CA, Menifee" ResStockArguments site_city=auto -City "CA, Merced" ResStockArguments site_city=auto -City "CA, Milpitas" ResStockArguments site_city=auto -City "CA, Mission Viejo" ResStockArguments site_city=auto -City "CA, Modesto" ResStockArguments site_city=auto -City "CA, Montebello" ResStockArguments site_city=auto -City "CA, Monterey Park" ResStockArguments site_city=auto -City "CA, Moreno Valley" ResStockArguments site_city=auto -City "CA, Mountain View" ResStockArguments site_city=auto -City "CA, Murrieta" ResStockArguments site_city=auto -City "CA, Napa" ResStockArguments site_city=auto -City "CA, National City" ResStockArguments site_city=auto -City "CA, Newport Beach" ResStockArguments site_city=auto -City "CA, North Highlands" ResStockArguments site_city=auto -City "CA, Norwalk" ResStockArguments site_city=auto -City "CA, Novato" ResStockArguments site_city=auto -City "CA, Oakland" ResStockArguments site_city=auto -City "CA, Oceanside" ResStockArguments site_city=auto -City "CA, Ontario" ResStockArguments site_city=auto -City "CA, Orange" ResStockArguments site_city=auto -City "CA, Oxnard" ResStockArguments site_city=auto -City "CA, Palm Desert" ResStockArguments site_city=auto -City "CA, Palm Springs" ResStockArguments site_city=auto -City "CA, Palmdale" ResStockArguments site_city=auto -City "CA, Palo Alto" ResStockArguments site_city=auto -City "CA, Pasadena" ResStockArguments site_city=auto -City "CA, Perris" ResStockArguments site_city=auto -City "CA, Petaluma" ResStockArguments site_city=auto -City "CA, Pico Rivera" ResStockArguments site_city=auto -City "CA, Pittsburg" ResStockArguments site_city=auto -City "CA, Placentia" ResStockArguments site_city=auto -City "CA, Pleasanton" ResStockArguments site_city=auto -City "CA, Pomona" ResStockArguments site_city=auto -City "CA, Porterville" ResStockArguments site_city=auto -City "CA, Poway" ResStockArguments site_city=auto -City "CA, Rancho Cordova" ResStockArguments site_city=auto -City "CA, Rancho Cucamonga" ResStockArguments site_city=auto -City "CA, Rancho Palos Verdes" ResStockArguments site_city=auto -City "CA, Rancho Santa Margarita" ResStockArguments site_city=auto -City "CA, Redding" ResStockArguments site_city=auto -City "CA, Redlands" ResStockArguments site_city=auto -City "CA, Redondo Beach" ResStockArguments site_city=auto -City "CA, Redwood City" ResStockArguments site_city=auto -City "CA, Rialto" ResStockArguments site_city=auto -City "CA, Richmond" ResStockArguments site_city=auto -City "CA, Riverside" ResStockArguments site_city=auto -City "CA, Rocklin" ResStockArguments site_city=auto -City "CA, Rohnert Park" ResStockArguments site_city=auto -City "CA, Rosemead" ResStockArguments site_city=auto -City "CA, Roseville" ResStockArguments site_city=auto -City "CA, Rowland Heights" ResStockArguments site_city=auto -City "CA, Sacramento" ResStockArguments site_city=auto -City "CA, Salinas" ResStockArguments site_city=auto -City "CA, San Bernardino" ResStockArguments site_city=auto -City "CA, San Bruno" ResStockArguments site_city=auto -City "CA, San Buenaventura Ventura" ResStockArguments site_city=auto -City "CA, San Clemente" ResStockArguments site_city=auto -City "CA, San Diego" ResStockArguments site_city=auto -City "CA, San Francisco" ResStockArguments site_city=auto -City "CA, San Jose" ResStockArguments site_city=auto -City "CA, San Leandro" ResStockArguments site_city=auto -City "CA, San Luis Obispo" ResStockArguments site_city=auto -City "CA, San Marcos" ResStockArguments site_city=auto -City "CA, San Mateo" ResStockArguments site_city=auto -City "CA, San Rafael" ResStockArguments site_city=auto -City "CA, San Ramon" ResStockArguments site_city=auto -City "CA, Santa Ana" ResStockArguments site_city=auto -City "CA, Santa Barbara" ResStockArguments site_city=auto -City "CA, Santa Clara" ResStockArguments site_city=auto -City "CA, Santa Clarita" ResStockArguments site_city=auto -City "CA, Santa Cruz" ResStockArguments site_city=auto -City "CA, Santa Maria" ResStockArguments site_city=auto -City "CA, Santa Monica" ResStockArguments site_city=auto -City "CA, Santa Rosa" ResStockArguments site_city=auto -City "CA, Santee" ResStockArguments site_city=auto -City "CA, Simi Valley" ResStockArguments site_city=auto -City "CA, South Gate" ResStockArguments site_city=auto -City "CA, South Lake Tahoe" ResStockArguments site_city=auto -City "CA, South San Francisco" ResStockArguments site_city=auto -City "CA, South Whittier" ResStockArguments site_city=auto -City "CA, Stockton" ResStockArguments site_city=auto -City "CA, Sunnyvale" ResStockArguments site_city=auto -City "CA, Temecula" ResStockArguments site_city=auto -City "CA, Thousand Oaks" ResStockArguments site_city=auto -City "CA, Torrance" ResStockArguments site_city=auto -City "CA, Tracy" ResStockArguments site_city=auto -City "CA, Tulare" ResStockArguments site_city=auto -City "CA, Turlock" ResStockArguments site_city=auto -City "CA, Tustin" ResStockArguments site_city=auto -City "CA, Union City" ResStockArguments site_city=auto -City "CA, Upland" ResStockArguments site_city=auto -City "CA, Vacaville" ResStockArguments site_city=auto -City "CA, Vallejo" ResStockArguments site_city=auto -City "CA, Victorville" ResStockArguments site_city=auto -City "CA, Visalia" ResStockArguments site_city=auto -City "CA, Vista" ResStockArguments site_city=auto -City "CA, Walnut Creek" ResStockArguments site_city=auto -City "CA, West Covina" ResStockArguments site_city=auto -City "CA, West Hollywood" ResStockArguments site_city=auto -City "CA, West Sacramento" ResStockArguments site_city=auto -City "CA, Westminster" ResStockArguments site_city=auto -City "CA, Whittier" ResStockArguments site_city=auto -City "CA, Woodland" ResStockArguments site_city=auto -City "CA, Yorba Linda" ResStockArguments site_city=auto -City "CA, Yuba City" ResStockArguments site_city=auto -City "CA, Yucaipa" ResStockArguments site_city=auto -City "CO, Arvada" ResStockArguments site_city=auto -City "CO, Aurora" ResStockArguments site_city=auto -City "CO, Boulder" ResStockArguments site_city=auto -City "CO, Broomfield" ResStockArguments site_city=auto -City "CO, Castle Rock" ResStockArguments site_city=auto -City "CO, Centennial" ResStockArguments site_city=auto -City "CO, Colorado Springs" ResStockArguments site_city=auto -City "CO, Commerce City" ResStockArguments site_city=auto -City "CO, Denver" ResStockArguments site_city=auto -City "CO, Englewood" ResStockArguments site_city=auto -City "CO, Fort Collins" ResStockArguments site_city=auto -City "CO, Grand Junction" ResStockArguments site_city=auto -City "CO, Greeley" ResStockArguments site_city=auto -City "CO, Highlands Ranch" ResStockArguments site_city=auto -City "CO, Lakewood" ResStockArguments site_city=auto -City "CO, Littleton" ResStockArguments site_city=auto -City "CO, Longmont" ResStockArguments site_city=auto -City "CO, Loveland" ResStockArguments site_city=auto -City "CO, Parker" ResStockArguments site_city=auto -City "CO, Pueblo" ResStockArguments site_city=auto -City "CO, Thornton" ResStockArguments site_city=auto -City "CO, Westminster" ResStockArguments site_city=auto -City "CT, Bridgeport" ResStockArguments site_city=auto -City "CT, Bristol" ResStockArguments site_city=auto -City "CT, Danbury" ResStockArguments site_city=auto -City "CT, East Hartford" ResStockArguments site_city=auto -City "CT, Hartford" ResStockArguments site_city=auto -City "CT, Meriden" ResStockArguments site_city=auto -City "CT, Middletown" ResStockArguments site_city=auto -City "CT, Milford City Balance" ResStockArguments site_city=auto -City "CT, New Britain" ResStockArguments site_city=auto -City "CT, New Haven" ResStockArguments site_city=auto -City "CT, Norwalk" ResStockArguments site_city=auto -City "CT, Norwich" ResStockArguments site_city=auto -City "CT, Shelton" ResStockArguments site_city=auto -City "CT, Stamford" ResStockArguments site_city=auto -City "CT, Stratford" ResStockArguments site_city=auto -City "CT, Torrington" ResStockArguments site_city=auto -City "CT, Waterbury" ResStockArguments site_city=auto -City "CT, West Hartford" ResStockArguments site_city=auto -City "CT, West Haven" ResStockArguments site_city=auto -City "DC, Washington" ResStockArguments site_city=auto -City "DE, Dover" ResStockArguments site_city=auto -City "DE, Wilmington" ResStockArguments site_city=auto -City "FL, Alafaya" ResStockArguments site_city=auto -City "FL, Altamonte Springs" ResStockArguments site_city=auto -City "FL, Apopka" ResStockArguments site_city=auto -City "FL, Aventura" ResStockArguments site_city=auto -City "FL, Boca Raton" ResStockArguments site_city=auto -City "FL, Bonita Springs" ResStockArguments site_city=auto -City "FL, Boynton Beach" ResStockArguments site_city=auto -City "FL, Bradenton" ResStockArguments site_city=auto -City "FL, Brandon" ResStockArguments site_city=auto -City "FL, Cape Coral" ResStockArguments site_city=auto -City "FL, Carrollwood" ResStockArguments site_city=auto -City "FL, Clearwater" ResStockArguments site_city=auto -City "FL, Coconut Creek" ResStockArguments site_city=auto -City "FL, Coral Gables" ResStockArguments site_city=auto -City "FL, Coral Springs" ResStockArguments site_city=auto -City "FL, Country Club" ResStockArguments site_city=auto -City "FL, Dania Beach" ResStockArguments site_city=auto -City "FL, Davie" ResStockArguments site_city=auto -City "FL, Daytona Beach" ResStockArguments site_city=auto -City "FL, Deerfield Beach" ResStockArguments site_city=auto -City "FL, Delray Beach" ResStockArguments site_city=auto -City "FL, Deltona" ResStockArguments site_city=auto -City "FL, Doral" ResStockArguments site_city=auto -City "FL, Dunedin" ResStockArguments site_city=auto -City "FL, East Lake" ResStockArguments site_city=auto -City "FL, Estero" ResStockArguments site_city=auto -City "FL, Fort Lauderdale" ResStockArguments site_city=auto -City "FL, Fort Myers" ResStockArguments site_city=auto -City "FL, Fort Pierce" ResStockArguments site_city=auto -City "FL, Fountainebleau" ResStockArguments site_city=auto -City "FL, Four Corners" ResStockArguments site_city=auto -City "FL, Gainesville" ResStockArguments site_city=auto -City "FL, Greenacres" ResStockArguments site_city=auto -City "FL, Hallandale Beach" ResStockArguments site_city=auto -City "FL, Hialeah" ResStockArguments site_city=auto -City "FL, Hollywood" ResStockArguments site_city=auto -City "FL, Homestead" ResStockArguments site_city=auto -City "FL, Jacksonville" ResStockArguments site_city=auto -City "FL, Jupiter" ResStockArguments site_city=auto -City "FL, Kendale Lakes" ResStockArguments site_city=auto -City "FL, Kendall" ResStockArguments site_city=auto -City "FL, Kissimmee" ResStockArguments site_city=auto -City "FL, Lake Worth" ResStockArguments site_city=auto -City "FL, Lakeland" ResStockArguments site_city=auto -City "FL, Largo" ResStockArguments site_city=auto -City "FL, Lauderhill" ResStockArguments site_city=auto -City "FL, Lehigh Acres" ResStockArguments site_city=auto -City "FL, Marco Island" ResStockArguments site_city=auto -City "FL, Margate" ResStockArguments site_city=auto -City "FL, Melbourne" ResStockArguments site_city=auto -City "FL, Merritt Island" ResStockArguments site_city=auto -City "FL, Miami Beach" ResStockArguments site_city=auto -City "FL, Miami Gardens" ResStockArguments site_city=auto -City "FL, Miami" ResStockArguments site_city=auto -City "FL, Miramar" ResStockArguments site_city=auto -City "FL, Naples" ResStockArguments site_city=auto -City "FL, New Smyrna Beach" ResStockArguments site_city=auto -City "FL, North Fort Myers" ResStockArguments site_city=auto -City "FL, North Miami Beach" ResStockArguments site_city=auto -City "FL, North Miami" ResStockArguments site_city=auto -City "FL, North Port" ResStockArguments site_city=auto -City "FL, Oakland Park" ResStockArguments site_city=auto -City "FL, Ocala" ResStockArguments site_city=auto -City "FL, Orlando" ResStockArguments site_city=auto -City "FL, Ormond Beach" ResStockArguments site_city=auto -City "FL, Palm Bay" ResStockArguments site_city=auto -City "FL, Palm Beach Gardens" ResStockArguments site_city=auto -City "FL, Palm Coast" ResStockArguments site_city=auto -City "FL, Palm Harbor" ResStockArguments site_city=auto -City "FL, Panama City Beach" ResStockArguments site_city=auto -City "FL, Panama City" ResStockArguments site_city=auto -City "FL, Pembroke Pines" ResStockArguments site_city=auto -City "FL, Pensacola" ResStockArguments site_city=auto -City "FL, Pine Hills" ResStockArguments site_city=auto -City "FL, Pinellas Park" ResStockArguments site_city=auto -City "FL, Plantation" ResStockArguments site_city=auto -City "FL, Poinciana" ResStockArguments site_city=auto -City "FL, Pompano Beach" ResStockArguments site_city=auto -City "FL, Port Charlotte" ResStockArguments site_city=auto -City "FL, Port Orange" ResStockArguments site_city=auto -City "FL, Port St Lucie" ResStockArguments site_city=auto -City "FL, Riverview" ResStockArguments site_city=auto -City "FL, Riviera Beach" ResStockArguments site_city=auto -City "FL, Sanford" ResStockArguments site_city=auto -City "FL, Sarasota" ResStockArguments site_city=auto -City "FL, Spring Hill" ResStockArguments site_city=auto -City "FL, St Cloud" ResStockArguments site_city=auto -City "FL, St Petersburg" ResStockArguments site_city=auto -City "FL, Sun City Center" ResStockArguments site_city=auto -City "FL, Sunny Isles Beach" ResStockArguments site_city=auto -City "FL, Sunrise" ResStockArguments site_city=auto -City "FL, Tallahassee" ResStockArguments site_city=auto -City "FL, Tamarac" ResStockArguments site_city=auto -City "FL, Tamiami" ResStockArguments site_city=auto -City "FL, Tampa" ResStockArguments site_city=auto -City "FL, The Hammocks" ResStockArguments site_city=auto -City "FL, The Villages" ResStockArguments site_city=auto -City "FL, Titusville" ResStockArguments site_city=auto -City "FL, Town N Country" ResStockArguments site_city=auto -City "FL, University" ResStockArguments site_city=auto -City "FL, Venice" ResStockArguments site_city=auto -City "FL, Wellington" ResStockArguments site_city=auto -City "FL, Wesley Chapel" ResStockArguments site_city=auto -City "FL, West Palm Beach" ResStockArguments site_city=auto -City "FL, Weston" ResStockArguments site_city=auto -City "FL, Winter Haven" ResStockArguments site_city=auto -City "GA, Albany" ResStockArguments site_city=auto -City "GA, Alpharetta" ResStockArguments site_city=auto -City "GA, Athens-Clarke County Unified Government Balance" ResStockArguments site_city=auto -City "GA, Atlanta" ResStockArguments site_city=auto -City "GA, Augusta-Richmond County Consolidated Government Balance" ResStockArguments site_city=auto -City "GA, Columbus" ResStockArguments site_city=auto -City "GA, Dunwoody" ResStockArguments site_city=auto -City "GA, East Point" ResStockArguments site_city=auto -City "GA, Hinesville" ResStockArguments site_city=auto -City "GA, Johns Creek" ResStockArguments site_city=auto -City "GA, Mableton" ResStockArguments site_city=auto -City "GA, Macon" ResStockArguments site_city=auto -City "GA, Marietta" ResStockArguments site_city=auto -City "GA, Newnan" ResStockArguments site_city=auto -City "GA, North Atlanta" ResStockArguments site_city=auto -City "GA, Rome" ResStockArguments site_city=auto -City "GA, Roswell" ResStockArguments site_city=auto -City "GA, Sandy Springs" ResStockArguments site_city=auto -City "GA, Savannah" ResStockArguments site_city=auto -City "GA, Smyrna" ResStockArguments site_city=auto -City "GA, Valdosta" ResStockArguments site_city=auto -City "GA, Warner Robins" ResStockArguments site_city=auto -City "HI, East Honolulu" ResStockArguments site_city=auto -City "HI, Hilo" ResStockArguments site_city=auto -City "HI, Kailua" ResStockArguments site_city=auto -City "HI, Urban Honolulu" ResStockArguments site_city=auto -City "IA, Ames" ResStockArguments site_city=auto -City "IA, Ankeny" ResStockArguments site_city=auto -City "IA, Cedar Falls" ResStockArguments site_city=auto -City "IA, Cedar Rapids" ResStockArguments site_city=auto -City "IA, Council Bluffs" ResStockArguments site_city=auto -City "IA, Davenport" ResStockArguments site_city=auto -City "IA, Des Moines" ResStockArguments site_city=auto -City "IA, Dubuque" ResStockArguments site_city=auto -City "IA, Iowa City" ResStockArguments site_city=auto -City "IA, Marion" ResStockArguments site_city=auto -City "IA, Sioux City" ResStockArguments site_city=auto -City "IA, Urbandale" ResStockArguments site_city=auto -City "IA, Waterloo" ResStockArguments site_city=auto -City "IA, West Des Moines" ResStockArguments site_city=auto -City "ID, Boise City" ResStockArguments site_city=auto -City "ID, Caldwell" ResStockArguments site_city=auto -City "ID, Coeur Dalene" ResStockArguments site_city=auto -City "ID, Idaho Falls" ResStockArguments site_city=auto -City "ID, Meridian" ResStockArguments site_city=auto -City "ID, Nampa" ResStockArguments site_city=auto -City "ID, Pocatello" ResStockArguments site_city=auto -City "ID, Twin Falls" ResStockArguments site_city=auto -City "IL, Arlington Heights" ResStockArguments site_city=auto -City "IL, Aurora" ResStockArguments site_city=auto -City "IL, Belleville" ResStockArguments site_city=auto -City "IL, Berwyn" ResStockArguments site_city=auto -City "IL, Bloomington" ResStockArguments site_city=auto -City "IL, Bolingbrook" ResStockArguments site_city=auto -City "IL, Buffalo Grove" ResStockArguments site_city=auto -City "IL, Calumet City" ResStockArguments site_city=auto -City "IL, Carol Stream" ResStockArguments site_city=auto -City "IL, Champaign" ResStockArguments site_city=auto -City "IL, Chicago" ResStockArguments site_city=auto -City "IL, Cicero" ResStockArguments site_city=auto -City "IL, Crystal Lake" ResStockArguments site_city=auto -City "IL, Decatur" ResStockArguments site_city=auto -City "IL, Dekalb" ResStockArguments site_city=auto -City "IL, Des Plaines" ResStockArguments site_city=auto -City "IL, Downers Grove" ResStockArguments site_city=auto -City "IL, Elgin" ResStockArguments site_city=auto -City "IL, Elmhurst" ResStockArguments site_city=auto -City "IL, Evanston" ResStockArguments site_city=auto -City "IL, Glenview" ResStockArguments site_city=auto -City "IL, Hoffman Estates" ResStockArguments site_city=auto -City "IL, Joliet" ResStockArguments site_city=auto -City "IL, Lombard" ResStockArguments site_city=auto -City "IL, Moline" ResStockArguments site_city=auto -City "IL, Mount Prospect" ResStockArguments site_city=auto -City "IL, Naperville" ResStockArguments site_city=auto -City "IL, Normal" ResStockArguments site_city=auto -City "IL, Oak Lawn" ResStockArguments site_city=auto -City "IL, Oak Park" ResStockArguments site_city=auto -City "IL, Orland Park" ResStockArguments site_city=auto -City "IL, Palatine" ResStockArguments site_city=auto -City "IL, Peoria" ResStockArguments site_city=auto -City "IL, Quincy" ResStockArguments site_city=auto -City "IL, Rock Island" ResStockArguments site_city=auto -City "IL, Rockford" ResStockArguments site_city=auto -City "IL, Schaumburg" ResStockArguments site_city=auto -City "IL, Skokie" ResStockArguments site_city=auto -City "IL, Springfield" ResStockArguments site_city=auto -City "IL, Tinley Park" ResStockArguments site_city=auto -City "IL, Urbana" ResStockArguments site_city=auto -City "IL, Waukegan" ResStockArguments site_city=auto -City "IL, Wheaton" ResStockArguments site_city=auto -City "IL, Wheeling" ResStockArguments site_city=auto -City "IN, Anderson" ResStockArguments site_city=auto -City "IN, Bloomington" ResStockArguments site_city=auto -City "IN, Carmel" ResStockArguments site_city=auto -City "IN, Columbus" ResStockArguments site_city=auto -City "IN, Elkhart" ResStockArguments site_city=auto -City "IN, Evansville" ResStockArguments site_city=auto -City "IN, Fishers" ResStockArguments site_city=auto -City "IN, Fort Wayne" ResStockArguments site_city=auto -City "IN, Gary" ResStockArguments site_city=auto -City "IN, Greenwood" ResStockArguments site_city=auto -City "IN, Hammond" ResStockArguments site_city=auto -City "IN, Indianapolis City Balance" ResStockArguments site_city=auto -City "IN, Jeffersonville" ResStockArguments site_city=auto -City "IN, Kokomo" ResStockArguments site_city=auto -City "IN, Lafayette" ResStockArguments site_city=auto -City "IN, Lawrence" ResStockArguments site_city=auto -City "IN, Mishawaka" ResStockArguments site_city=auto -City "IN, Muncie" ResStockArguments site_city=auto -City "IN, New Albany" ResStockArguments site_city=auto -City "IN, Noblesville" ResStockArguments site_city=auto -City "IN, Portage" ResStockArguments site_city=auto -City "IN, Richmond" ResStockArguments site_city=auto -City "IN, South Bend" ResStockArguments site_city=auto -City "IN, Terre Haute" ResStockArguments site_city=auto -City "KS, Hutchinson" ResStockArguments site_city=auto -City "KS, Kansas City" ResStockArguments site_city=auto -City "KS, Lawrence" ResStockArguments site_city=auto -City "KS, Lenexa" ResStockArguments site_city=auto -City "KS, Manhattan" ResStockArguments site_city=auto -City "KS, Olathe" ResStockArguments site_city=auto -City "KS, Overland Park" ResStockArguments site_city=auto -City "KS, Salina" ResStockArguments site_city=auto -City "KS, Shawnee" ResStockArguments site_city=auto -City "KS, Topeka" ResStockArguments site_city=auto -City "KS, Wichita" ResStockArguments site_city=auto -City "KY, Bowling Green" ResStockArguments site_city=auto -City "KY, Covington" ResStockArguments site_city=auto -City "KY, Lexington-Fayette" ResStockArguments site_city=auto -City "KY, Louisville Jefferson County Metro Government Balance" ResStockArguments site_city=auto -City "KY, Owensboro" ResStockArguments site_city=auto -City "LA, Alexandria" ResStockArguments site_city=auto -City "LA, Baton Rouge" ResStockArguments site_city=auto -City "LA, Bossier City" ResStockArguments site_city=auto -City "LA, Kenner" ResStockArguments site_city=auto -City "LA, Lafayette" ResStockArguments site_city=auto -City "LA, Lake Charles" ResStockArguments site_city=auto -City "LA, Metairie" ResStockArguments site_city=auto -City "LA, Monroe" ResStockArguments site_city=auto -City "LA, New Orleans" ResStockArguments site_city=auto -City "LA, Shreveport" ResStockArguments site_city=auto -City "MA, Arlington" ResStockArguments site_city=auto -City "MA, Attleboro" ResStockArguments site_city=auto -City "MA, Barnstable Town" ResStockArguments site_city=auto -City "MA, Beverly" ResStockArguments site_city=auto -City "MA, Boston" ResStockArguments site_city=auto -City "MA, Brockton" ResStockArguments site_city=auto -City "MA, Brookline" ResStockArguments site_city=auto -City "MA, Cambridge" ResStockArguments site_city=auto -City "MA, Chicopee" ResStockArguments site_city=auto -City "MA, Everett" ResStockArguments site_city=auto -City "MA, Fall River" ResStockArguments site_city=auto -City "MA, Fitchburg" ResStockArguments site_city=auto -City "MA, Framingham" ResStockArguments site_city=auto -City "MA, Haverhill" ResStockArguments site_city=auto -City "MA, Holyoke" ResStockArguments site_city=auto -City "MA, Lawrence" ResStockArguments site_city=auto -City "MA, Leominster" ResStockArguments site_city=auto -City "MA, Lowell" ResStockArguments site_city=auto -City "MA, Lynn" ResStockArguments site_city=auto -City "MA, Malden" ResStockArguments site_city=auto -City "MA, Marlborough" ResStockArguments site_city=auto -City "MA, Medford" ResStockArguments site_city=auto -City "MA, Methuen Town" ResStockArguments site_city=auto -City "MA, New Bedford" ResStockArguments site_city=auto -City "MA, Newton" ResStockArguments site_city=auto -City "MA, Peabody" ResStockArguments site_city=auto -City "MA, Pittsfield" ResStockArguments site_city=auto -City "MA, Quincy" ResStockArguments site_city=auto -City "MA, Revere" ResStockArguments site_city=auto -City "MA, Salem" ResStockArguments site_city=auto -City "MA, Somerville" ResStockArguments site_city=auto -City "MA, Springfield" ResStockArguments site_city=auto -City "MA, Taunton" ResStockArguments site_city=auto -City "MA, Waltham" ResStockArguments site_city=auto -City "MA, Watertown Town" ResStockArguments site_city=auto -City "MA, Westfield" ResStockArguments site_city=auto -City "MA, Weymouth Town" ResStockArguments site_city=auto -City "MA, Woburn" ResStockArguments site_city=auto -City "MA, Worcester" ResStockArguments site_city=auto -City "MD, Annapolis" ResStockArguments site_city=auto -City "MD, Aspen Hill" ResStockArguments site_city=auto -City "MD, Baltimore" ResStockArguments site_city=auto -City "MD, Bel Air South" ResStockArguments site_city=auto -City "MD, Bethesda" ResStockArguments site_city=auto -City "MD, Bowie" ResStockArguments site_city=auto -City "MD, Catonsville" ResStockArguments site_city=auto -City "MD, Columbia" ResStockArguments site_city=auto -City "MD, Dundalk" ResStockArguments site_city=auto -City "MD, Ellicott City" ResStockArguments site_city=auto -City "MD, Essex" ResStockArguments site_city=auto -City "MD, Frederick" ResStockArguments site_city=auto -City "MD, Gaithersburg" ResStockArguments site_city=auto -City "MD, Germantown" ResStockArguments site_city=auto -City "MD, Glen Burnie" ResStockArguments site_city=auto -City "MD, Hagerstown" ResStockArguments site_city=auto -City "MD, North Bethesda" ResStockArguments site_city=auto -City "MD, Ocean City" ResStockArguments site_city=auto -City "MD, Odenton" ResStockArguments site_city=auto -City "MD, Potomac" ResStockArguments site_city=auto -City "MD, Rockville" ResStockArguments site_city=auto -City "MD, Severn" ResStockArguments site_city=auto -City "MD, Silver Spring" ResStockArguments site_city=auto -City "MD, Towson" ResStockArguments site_city=auto -City "MD, Waldorf" ResStockArguments site_city=auto -City "MD, Wheaton" ResStockArguments site_city=auto -City "MD, Woodlawn" ResStockArguments site_city=auto -City "ME, Bangor" ResStockArguments site_city=auto -City "ME, Lewiston" ResStockArguments site_city=auto -City "ME, Portland" ResStockArguments site_city=auto -City "MI, Ann Arbor" ResStockArguments site_city=auto -City "MI, Battle Creek" ResStockArguments site_city=auto -City "MI, Bay City" ResStockArguments site_city=auto -City "MI, Dearborn Heights" ResStockArguments site_city=auto -City "MI, Dearborn" ResStockArguments site_city=auto -City "MI, Detroit" ResStockArguments site_city=auto -City "MI, Farmington Hills" ResStockArguments site_city=auto -City "MI, Flint" ResStockArguments site_city=auto -City "MI, Grand Rapids" ResStockArguments site_city=auto -City "MI, Jackson" ResStockArguments site_city=auto -City "MI, Kalamazoo" ResStockArguments site_city=auto -City "MI, Kentwood" ResStockArguments site_city=auto -City "MI, Lansing" ResStockArguments site_city=auto -City "MI, Lincoln Park" ResStockArguments site_city=auto -City "MI, Livonia" ResStockArguments site_city=auto -City "MI, Midland" ResStockArguments site_city=auto -City "MI, Muskegon" ResStockArguments site_city=auto -City "MI, Novi" ResStockArguments site_city=auto -City "MI, Pontiac" ResStockArguments site_city=auto -City "MI, Portage" ResStockArguments site_city=auto -City "MI, Rochester Hills" ResStockArguments site_city=auto -City "MI, Roseville" ResStockArguments site_city=auto -City "MI, Royal Oak" ResStockArguments site_city=auto -City "MI, Saginaw" ResStockArguments site_city=auto -City "MI, Southfield" ResStockArguments site_city=auto -City "MI, St Clair Shores" ResStockArguments site_city=auto -City "MI, Sterling Heights" ResStockArguments site_city=auto -City "MI, Taylor" ResStockArguments site_city=auto -City "MI, Troy" ResStockArguments site_city=auto -City "MI, Warren" ResStockArguments site_city=auto -City "MI, Westland" ResStockArguments site_city=auto -City "MI, Wyoming" ResStockArguments site_city=auto -City "MN, Apple Valley" ResStockArguments site_city=auto -City "MN, Blaine" ResStockArguments site_city=auto -City "MN, Bloomington" ResStockArguments site_city=auto -City "MN, Brooklyn Park" ResStockArguments site_city=auto -City "MN, Burnsville" ResStockArguments site_city=auto -City "MN, Coon Rapids" ResStockArguments site_city=auto -City "MN, Duluth" ResStockArguments site_city=auto -City "MN, Eagan" ResStockArguments site_city=auto -City "MN, Eden Prairie" ResStockArguments site_city=auto -City "MN, Edina" ResStockArguments site_city=auto -City "MN, Lakeville" ResStockArguments site_city=auto -City "MN, Mankato" ResStockArguments site_city=auto -City "MN, Maple Grove" ResStockArguments site_city=auto -City "MN, Maplewood" ResStockArguments site_city=auto -City "MN, Minneapolis" ResStockArguments site_city=auto -City "MN, Minnetonka" ResStockArguments site_city=auto -City "MN, Moorhead" ResStockArguments site_city=auto -City "MN, Plymouth" ResStockArguments site_city=auto -City "MN, Richfield" ResStockArguments site_city=auto -City "MN, Rochester" ResStockArguments site_city=auto -City "MN, Roseville" ResStockArguments site_city=auto -City "MN, St Cloud" ResStockArguments site_city=auto -City "MN, St Louis Park" ResStockArguments site_city=auto -City "MN, St Paul" ResStockArguments site_city=auto -City "MN, Woodbury" ResStockArguments site_city=auto -City "MO, Blue Springs" ResStockArguments site_city=auto -City "MO, Cape Girardeau" ResStockArguments site_city=auto -City "MO, Chesterfield" ResStockArguments site_city=auto -City "MO, Columbia" ResStockArguments site_city=auto -City "MO, Florissant" ResStockArguments site_city=auto -City "MO, Independence" ResStockArguments site_city=auto -City "MO, Jefferson City" ResStockArguments site_city=auto -City "MO, Joplin" ResStockArguments site_city=auto -City "MO, Kansas City" ResStockArguments site_city=auto -City "MO, Lees Summit" ResStockArguments site_city=auto -City "MO, Ofallon" ResStockArguments site_city=auto -City "MO, Springfield" ResStockArguments site_city=auto -City "MO, St Charles" ResStockArguments site_city=auto -City "MO, St Joseph" ResStockArguments site_city=auto -City "MO, St Louis" ResStockArguments site_city=auto -City "MO, St Peters" ResStockArguments site_city=auto -City "MO, University City" ResStockArguments site_city=auto -City "MS, Biloxi" ResStockArguments site_city=auto -City "MS, Gulfport" ResStockArguments site_city=auto -City "MS, Hattiesburg" ResStockArguments site_city=auto -City "MS, Jackson" ResStockArguments site_city=auto -City "MS, Meridian" ResStockArguments site_city=auto -City "MS, Southaven" ResStockArguments site_city=auto -City "MS, Tupelo" ResStockArguments site_city=auto -City "MT, Billings" ResStockArguments site_city=auto -City "MT, Bozeman" ResStockArguments site_city=auto -City "MT, Butte-Silver Bow Balance" ResStockArguments site_city=auto -City "MT, Great Falls" ResStockArguments site_city=auto -City "MT, Missoula" ResStockArguments site_city=auto -City "NC, Asheville" ResStockArguments site_city=auto -City "NC, Burlington" ResStockArguments site_city=auto -City "NC, Cary" ResStockArguments site_city=auto -City "NC, Chapel Hill" ResStockArguments site_city=auto -City "NC, Charlotte" ResStockArguments site_city=auto -City "NC, Concord" ResStockArguments site_city=auto -City "NC, Durham" ResStockArguments site_city=auto -City "NC, Fayetteville" ResStockArguments site_city=auto -City "NC, Gastonia" ResStockArguments site_city=auto -City "NC, Goldsboro" ResStockArguments site_city=auto -City "NC, Greensboro" ResStockArguments site_city=auto -City "NC, Greenville" ResStockArguments site_city=auto -City "NC, Hickory" ResStockArguments site_city=auto -City "NC, High Point" ResStockArguments site_city=auto -City "NC, Huntersville" ResStockArguments site_city=auto -City "NC, Jacksonville" ResStockArguments site_city=auto -City "NC, Kannapolis" ResStockArguments site_city=auto -City "NC, Raleigh" ResStockArguments site_city=auto -City "NC, Rocky Mount" ResStockArguments site_city=auto -City "NC, Wilmington" ResStockArguments site_city=auto -City "NC, Wilson" ResStockArguments site_city=auto -City "NC, Winston-Salem" ResStockArguments site_city=auto -City "ND, Bismarck" ResStockArguments site_city=auto -City "ND, Fargo" ResStockArguments site_city=auto -City "ND, Grand Forks" ResStockArguments site_city=auto -City "ND, Minot" ResStockArguments site_city=auto -City "NE, Bellevue" ResStockArguments site_city=auto -City "NE, Grand Island" ResStockArguments site_city=auto -City "NE, Lincoln" ResStockArguments site_city=auto -City "NE, Omaha" ResStockArguments site_city=auto -City "NH, Concord" ResStockArguments site_city=auto -City "NH, Manchester" ResStockArguments site_city=auto -City "NH, Nashua" ResStockArguments site_city=auto -City "NJ, Atlantic City" ResStockArguments site_city=auto -City "NJ, Bayonne" ResStockArguments site_city=auto -City "NJ, Camden" ResStockArguments site_city=auto -City "NJ, Clifton" ResStockArguments site_city=auto -City "NJ, East Orange" ResStockArguments site_city=auto -City "NJ, Elizabeth" ResStockArguments site_city=auto -City "NJ, Fort Lee" ResStockArguments site_city=auto -City "NJ, Hackensack" ResStockArguments site_city=auto -City "NJ, Hoboken" ResStockArguments site_city=auto -City "NJ, Jersey City" ResStockArguments site_city=auto -City "NJ, Linden" ResStockArguments site_city=auto -City "NJ, New Brunswick" ResStockArguments site_city=auto -City "NJ, Newark" ResStockArguments site_city=auto -City "NJ, Ocean City" ResStockArguments site_city=auto -City "NJ, Passaic" ResStockArguments site_city=auto -City "NJ, Paterson" ResStockArguments site_city=auto -City "NJ, Perth Amboy" ResStockArguments site_city=auto -City "NJ, Plainfield" ResStockArguments site_city=auto -City "NJ, Sayreville" ResStockArguments site_city=auto -City "NJ, Toms River" ResStockArguments site_city=auto -City "NJ, Trenton" ResStockArguments site_city=auto -City "NJ, Union City" ResStockArguments site_city=auto -City "NJ, Vineland" ResStockArguments site_city=auto -City "NJ, West New York" ResStockArguments site_city=auto -City "NM, Albuquerque" ResStockArguments site_city=auto -City "NM, Clovis" ResStockArguments site_city=auto -City "NM, Farmington" ResStockArguments site_city=auto -City "NM, Las Cruces" ResStockArguments site_city=auto -City "NM, Rio Rancho" ResStockArguments site_city=auto -City "NM, Roswell" ResStockArguments site_city=auto -City "NM, Santa Fe" ResStockArguments site_city=auto -City "NM, South Valley" ResStockArguments site_city=auto -City "NV, Carson City" ResStockArguments site_city=auto -City "NV, Enterprise" ResStockArguments site_city=auto -City "NV, Henderson" ResStockArguments site_city=auto -City "NV, Las Vegas" ResStockArguments site_city=auto -City "NV, North Las Vegas" ResStockArguments site_city=auto -City "NV, Pahrump" ResStockArguments site_city=auto -City "NV, Paradise" ResStockArguments site_city=auto -City "NV, Reno" ResStockArguments site_city=auto -City "NV, Sparks" ResStockArguments site_city=auto -City "NV, Spring Valley" ResStockArguments site_city=auto -City "NV, Sunrise Manor" ResStockArguments site_city=auto -City "NV, Whitney" ResStockArguments site_city=auto -City "NY, Albany" ResStockArguments site_city=auto -City "NY, Binghamton" ResStockArguments site_city=auto -City "NY, Brighton" ResStockArguments site_city=auto -City "NY, Buffalo" ResStockArguments site_city=auto -City "NY, Cheektowaga" ResStockArguments site_city=auto -City "NY, Coram" ResStockArguments site_city=auto -City "NY, Hempstead" ResStockArguments site_city=auto -City "NY, Irondequoit" ResStockArguments site_city=auto -City "NY, Levittown" ResStockArguments site_city=auto -City "NY, Long Beach" ResStockArguments site_city=auto -City "NY, Mount Vernon" ResStockArguments site_city=auto -City "NY, New Rochelle" ResStockArguments site_city=auto -City "NY, New York" ResStockArguments site_city=auto -City "NY, Niagara Falls" ResStockArguments site_city=auto -City "NY, Rochester" ResStockArguments site_city=auto -City "NY, Rome" ResStockArguments site_city=auto -City "NY, Schenectady" ResStockArguments site_city=auto -City "NY, Syracuse" ResStockArguments site_city=auto -City "NY, Tonawanda" ResStockArguments site_city=auto -City "NY, Troy" ResStockArguments site_city=auto -City "NY, Utica" ResStockArguments site_city=auto -City "NY, West Seneca" ResStockArguments site_city=auto -City "NY, White Plains" ResStockArguments site_city=auto -City "NY, Yonkers" ResStockArguments site_city=auto -City "OH, Akron" ResStockArguments site_city=auto -City "OH, Beavercreek" ResStockArguments site_city=auto -City "OH, Boardman" ResStockArguments site_city=auto -City "OH, Canton" ResStockArguments site_city=auto -City "OH, Cincinnati" ResStockArguments site_city=auto -City "OH, Cleveland Heights" ResStockArguments site_city=auto -City "OH, Cleveland" ResStockArguments site_city=auto -City "OH, Columbus" ResStockArguments site_city=auto -City "OH, Cuyahoga Falls" ResStockArguments site_city=auto -City "OH, Dayton" ResStockArguments site_city=auto -City "OH, Delaware" ResStockArguments site_city=auto -City "OH, Dublin" ResStockArguments site_city=auto -City "OH, Elyria" ResStockArguments site_city=auto -City "OH, Euclid" ResStockArguments site_city=auto -City "OH, Fairborn" ResStockArguments site_city=auto -City "OH, Fairfield" ResStockArguments site_city=auto -City "OH, Findlay" ResStockArguments site_city=auto -City "OH, Grove City" ResStockArguments site_city=auto -City "OH, Hamilton" ResStockArguments site_city=auto -City "OH, Huber Heights" ResStockArguments site_city=auto -City "OH, Kettering" ResStockArguments site_city=auto -City "OH, Lakewood" ResStockArguments site_city=auto -City "OH, Lancaster" ResStockArguments site_city=auto -City "OH, Lima" ResStockArguments site_city=auto -City "OH, Lorain" ResStockArguments site_city=auto -City "OH, Mansfield" ResStockArguments site_city=auto -City "OH, Marion" ResStockArguments site_city=auto -City "OH, Mentor" ResStockArguments site_city=auto -City "OH, Middletown" ResStockArguments site_city=auto -City "OH, Newark" ResStockArguments site_city=auto -City "OH, Parma" ResStockArguments site_city=auto -City "OH, Springfield" ResStockArguments site_city=auto -City "OH, Stow" ResStockArguments site_city=auto -City "OH, Strongsville" ResStockArguments site_city=auto -City "OH, Toledo" ResStockArguments site_city=auto -City "OH, Warren" ResStockArguments site_city=auto -City "OH, Youngstown" ResStockArguments site_city=auto -City "OK, Bartlesville" ResStockArguments site_city=auto -City "OK, Broken Arrow" ResStockArguments site_city=auto -City "OK, Edmond" ResStockArguments site_city=auto -City "OK, Enid" ResStockArguments site_city=auto -City "OK, Lawton" ResStockArguments site_city=auto -City "OK, Midwest City" ResStockArguments site_city=auto -City "OK, Moore" ResStockArguments site_city=auto -City "OK, Muskogee" ResStockArguments site_city=auto -City "OK, Norman" ResStockArguments site_city=auto -City "OK, Oklahoma City" ResStockArguments site_city=auto -City "OK, Stillwater" ResStockArguments site_city=auto -City "OK, Tulsa" ResStockArguments site_city=auto -City "OR, Albany" ResStockArguments site_city=auto -City "OR, Aloha" ResStockArguments site_city=auto -City "OR, Beaverton" ResStockArguments site_city=auto -City "OR, Bend" ResStockArguments site_city=auto -City "OR, Corvallis" ResStockArguments site_city=auto -City "OR, Eugene" ResStockArguments site_city=auto -City "OR, Grants Pass" ResStockArguments site_city=auto -City "OR, Gresham" ResStockArguments site_city=auto -City "OR, Hillsboro" ResStockArguments site_city=auto -City "OR, Lake Oswego" ResStockArguments site_city=auto -City "OR, Medford" ResStockArguments site_city=auto -City "OR, Portland" ResStockArguments site_city=auto -City "OR, Salem" ResStockArguments site_city=auto -City "OR, Springfield" ResStockArguments site_city=auto -City "OR, Tigard" ResStockArguments site_city=auto -City "PA, Allentown" ResStockArguments site_city=auto -City "PA, Altoona" ResStockArguments site_city=auto -City "PA, Bethlehem" ResStockArguments site_city=auto -City "PA, Erie" ResStockArguments site_city=auto -City "PA, Harrisburg" ResStockArguments site_city=auto -City "PA, Lancaster" ResStockArguments site_city=auto -City "PA, Levittown" ResStockArguments site_city=auto -City "PA, Philadelphia" ResStockArguments site_city=auto -City "PA, Pittsburgh" ResStockArguments site_city=auto -City "PA, Reading" ResStockArguments site_city=auto -City "PA, Scranton" ResStockArguments site_city=auto -City "PA, Wilkes-Barre" ResStockArguments site_city=auto -City "PA, York" ResStockArguments site_city=auto -City "RI, Cranston" ResStockArguments site_city=auto -City "RI, East Providence" ResStockArguments site_city=auto -City "RI, Pawtucket" ResStockArguments site_city=auto -City "RI, Providence" ResStockArguments site_city=auto -City "RI, Warwick" ResStockArguments site_city=auto -City "RI, Woonsocket" ResStockArguments site_city=auto -City "SC, Charleston" ResStockArguments site_city=auto -City "SC, Columbia" ResStockArguments site_city=auto -City "SC, Florence" ResStockArguments site_city=auto -City "SC, Goose Creek" ResStockArguments site_city=auto -City "SC, Greenville" ResStockArguments site_city=auto -City "SC, Hilton Head Island" ResStockArguments site_city=auto -City "SC, Mount Pleasant" ResStockArguments site_city=auto -City "SC, Myrtle Beach" ResStockArguments site_city=auto -City "SC, North Charleston" ResStockArguments site_city=auto -City "SC, North Myrtle Beach" ResStockArguments site_city=auto -City "SC, Rock Hill" ResStockArguments site_city=auto -City "SC, Spartanburg" ResStockArguments site_city=auto -City "SC, Summerville" ResStockArguments site_city=auto -City "SC, Sumter" ResStockArguments site_city=auto -City "SD, Rapid City" ResStockArguments site_city=auto -City "SD, Sioux Falls" ResStockArguments site_city=auto -City "TN, Bartlett" ResStockArguments site_city=auto -City "TN, Chattanooga" ResStockArguments site_city=auto -City "TN, Clarksville" ResStockArguments site_city=auto -City "TN, Cleveland" ResStockArguments site_city=auto -City "TN, Collierville" ResStockArguments site_city=auto -City "TN, Columbia" ResStockArguments site_city=auto -City "TN, Franklin" ResStockArguments site_city=auto -City "TN, Germantown" ResStockArguments site_city=auto -City "TN, Hendersonville" ResStockArguments site_city=auto -City "TN, Jackson" ResStockArguments site_city=auto -City "TN, Johnson City" ResStockArguments site_city=auto -City "TN, Kingsport" ResStockArguments site_city=auto -City "TN, Knoxville" ResStockArguments site_city=auto -City "TN, Memphis" ResStockArguments site_city=auto -City "TN, Murfreesboro" ResStockArguments site_city=auto -City "TN, Nashville-Davidson Metropolitan Government Balance" ResStockArguments site_city=auto -City "TN, Smyrna" ResStockArguments site_city=auto -City "TX, Abilene" ResStockArguments site_city=auto -City "TX, Allen" ResStockArguments site_city=auto -City "TX, Amarillo" ResStockArguments site_city=auto -City "TX, Arlington" ResStockArguments site_city=auto -City "TX, Atascocita" ResStockArguments site_city=auto -City "TX, Austin" ResStockArguments site_city=auto -City "TX, Baytown" ResStockArguments site_city=auto -City "TX, Beaumont" ResStockArguments site_city=auto -City "TX, Bedford" ResStockArguments site_city=auto -City "TX, Brownsville" ResStockArguments site_city=auto -City "TX, Bryan" ResStockArguments site_city=auto -City "TX, Burleson" ResStockArguments site_city=auto -City "TX, Carrollton" ResStockArguments site_city=auto -City "TX, Cedar Hill" ResStockArguments site_city=auto -City "TX, Cedar Park" ResStockArguments site_city=auto -City "TX, College Station" ResStockArguments site_city=auto -City "TX, Conroe" ResStockArguments site_city=auto -City "TX, Coppell" ResStockArguments site_city=auto -City "TX, Corpus Christi" ResStockArguments site_city=auto -City "TX, Dallas" ResStockArguments site_city=auto -City "TX, Denton" ResStockArguments site_city=auto -City "TX, Desoto" ResStockArguments site_city=auto -City "TX, Edinburg" ResStockArguments site_city=auto -City "TX, El Paso" ResStockArguments site_city=auto -City "TX, Euless" ResStockArguments site_city=auto -City "TX, Flower Mound" ResStockArguments site_city=auto -City "TX, Fort Worth" ResStockArguments site_city=auto -City "TX, Frisco" ResStockArguments site_city=auto -City "TX, Galveston" ResStockArguments site_city=auto -City "TX, Garland" ResStockArguments site_city=auto -City "TX, Georgetown" ResStockArguments site_city=auto -City "TX, Grand Prairie" ResStockArguments site_city=auto -City "TX, Grapevine" ResStockArguments site_city=auto -City "TX, Haltom City" ResStockArguments site_city=auto -City "TX, Harlingen" ResStockArguments site_city=auto -City "TX, Houston" ResStockArguments site_city=auto -City "TX, Hurst" ResStockArguments site_city=auto -City "TX, Irving" ResStockArguments site_city=auto -City "TX, Keller" ResStockArguments site_city=auto -City "TX, Killeen" ResStockArguments site_city=auto -City "TX, Laredo" ResStockArguments site_city=auto -City "TX, League City" ResStockArguments site_city=auto -City "TX, Lewisville" ResStockArguments site_city=auto -City "TX, Longview" ResStockArguments site_city=auto -City "TX, Lubbock" ResStockArguments site_city=auto -City "TX, Lufkin" ResStockArguments site_city=auto -City "TX, Mansfield" ResStockArguments site_city=auto -City "TX, Mcallen" ResStockArguments site_city=auto -City "TX, Mckinney" ResStockArguments site_city=auto -City "TX, Mesquite" ResStockArguments site_city=auto -City "TX, Midland" ResStockArguments site_city=auto -City "TX, Mission" ResStockArguments site_city=auto -City "TX, Missouri City" ResStockArguments site_city=auto -City "TX, New Braunfels" ResStockArguments site_city=auto -City "TX, North Richland Hills" ResStockArguments site_city=auto -City "TX, Odessa" ResStockArguments site_city=auto -City "TX, Pasadena" ResStockArguments site_city=auto -City "TX, Pearland" ResStockArguments site_city=auto -City "TX, Pflugerville" ResStockArguments site_city=auto -City "TX, Pharr" ResStockArguments site_city=auto -City "TX, Plano" ResStockArguments site_city=auto -City "TX, Port Arthur" ResStockArguments site_city=auto -City "TX, Richardson" ResStockArguments site_city=auto -City "TX, Round Rock" ResStockArguments site_city=auto -City "TX, Rowlett" ResStockArguments site_city=auto -City "TX, San Angelo" ResStockArguments site_city=auto -City "TX, San Antonio" ResStockArguments site_city=auto -City "TX, San Marcos" ResStockArguments site_city=auto -City "TX, Sherman" ResStockArguments site_city=auto -City "TX, Spring" ResStockArguments site_city=auto -City "TX, Sugar Land" ResStockArguments site_city=auto -City "TX, Temple" ResStockArguments site_city=auto -City "TX, Texarkana" ResStockArguments site_city=auto -City "TX, Texas City" ResStockArguments site_city=auto -City "TX, The Colony" ResStockArguments site_city=auto -City "TX, The Woodlands" ResStockArguments site_city=auto -City "TX, Tyler" ResStockArguments site_city=auto -City "TX, Victoria" ResStockArguments site_city=auto -City "TX, Waco" ResStockArguments site_city=auto -City "TX, Wichita Falls" ResStockArguments site_city=auto -City "TX, Wylie" ResStockArguments site_city=auto -City "UT, Layton" ResStockArguments site_city=auto -City "UT, Lehi" ResStockArguments site_city=auto -City "UT, Logan" ResStockArguments site_city=auto -City "UT, Millcreek" ResStockArguments site_city=auto -City "UT, Murray" ResStockArguments site_city=auto -City "UT, Ogden" ResStockArguments site_city=auto -City "UT, Orem" ResStockArguments site_city=auto -City "UT, Provo" ResStockArguments site_city=auto -City "UT, Salt Lake City" ResStockArguments site_city=auto -City "UT, Sandy" ResStockArguments site_city=auto -City "UT, South Jordan" ResStockArguments site_city=auto -City "UT, St George" ResStockArguments site_city=auto -City "UT, Taylorsville" ResStockArguments site_city=auto -City "UT, West Jordan" ResStockArguments site_city=auto -City "UT, West Valley City" ResStockArguments site_city=auto -City "VA, Alexandria" ResStockArguments site_city=auto -City "VA, Arlington" ResStockArguments site_city=auto -City "VA, Ashburn" ResStockArguments site_city=auto -City "VA, Blacksburg" ResStockArguments site_city=auto -City "VA, Centreville" ResStockArguments site_city=auto -City "VA, Charlottesville" ResStockArguments site_city=auto -City "VA, Chesapeake" ResStockArguments site_city=auto -City "VA, Dale City" ResStockArguments site_city=auto -City "VA, Danville" ResStockArguments site_city=auto -City "VA, Hampton" ResStockArguments site_city=auto -City "VA, Harrisonburg" ResStockArguments site_city=auto -City "VA, Lake Ridge" ResStockArguments site_city=auto -City "VA, Leesburg" ResStockArguments site_city=auto -City "VA, Lynchburg" ResStockArguments site_city=auto -City "VA, Mclean" ResStockArguments site_city=auto -City "VA, Mechanicsville" ResStockArguments site_city=auto -City "VA, Newport News" ResStockArguments site_city=auto -City "VA, Norfolk" ResStockArguments site_city=auto -City "VA, Petersburg" ResStockArguments site_city=auto -City "VA, Portsmouth" ResStockArguments site_city=auto -City "VA, Reston" ResStockArguments site_city=auto -City "VA, Richmond" ResStockArguments site_city=auto -City "VA, Roanoke" ResStockArguments site_city=auto -City "VA, Suffolk" ResStockArguments site_city=auto -City "VA, Tuckahoe" ResStockArguments site_city=auto -City "VA, Virginia Beach" ResStockArguments site_city=auto -City "VT, Burlington" ResStockArguments site_city=auto -City "WA, Auburn" ResStockArguments site_city=auto -City "WA, Bellevue" ResStockArguments site_city=auto -City "WA, Bellingham" ResStockArguments site_city=auto -City "WA, Bremerton" ResStockArguments site_city=auto -City "WA, Edmonds" ResStockArguments site_city=auto -City "WA, Everett" ResStockArguments site_city=auto -City "WA, Federal Way" ResStockArguments site_city=auto -City "WA, Kennewick" ResStockArguments site_city=auto -City "WA, Kent" ResStockArguments site_city=auto -City "WA, Kirkland" ResStockArguments site_city=auto -City "WA, Lacey" ResStockArguments site_city=auto -City "WA, Lakewood" ResStockArguments site_city=auto -City "WA, Longview" ResStockArguments site_city=auto -City "WA, Marysville" ResStockArguments site_city=auto -City "WA, Olympia" ResStockArguments site_city=auto -City "WA, Pasco" ResStockArguments site_city=auto -City "WA, Puyallup" ResStockArguments site_city=auto -City "WA, Redmond" ResStockArguments site_city=auto -City "WA, Renton" ResStockArguments site_city=auto -City "WA, Richland" ResStockArguments site_city=auto -City "WA, Sammamish" ResStockArguments site_city=auto -City "WA, Seattle" ResStockArguments site_city=auto -City "WA, Shoreline" ResStockArguments site_city=auto -City "WA, South Hill" ResStockArguments site_city=auto -City "WA, Spokane Valley" ResStockArguments site_city=auto -City "WA, Spokane" ResStockArguments site_city=auto -City "WA, Tacoma" ResStockArguments site_city=auto -City "WA, Vancouver" ResStockArguments site_city=auto -City "WA, Yakima" ResStockArguments site_city=auto -City "WI, Appleton" ResStockArguments site_city=auto -City "WI, Beloit" ResStockArguments site_city=auto -City "WI, Eau Claire" ResStockArguments site_city=auto -City "WI, Fond Du Lac" ResStockArguments site_city=auto -City "WI, Green Bay" ResStockArguments site_city=auto -City "WI, Greenfield" ResStockArguments site_city=auto -City "WI, Janesville" ResStockArguments site_city=auto -City "WI, Kenosha" ResStockArguments site_city=auto -City "WI, La Crosse" ResStockArguments site_city=auto -City "WI, Madison" ResStockArguments site_city=auto -City "WI, Manitowoc" ResStockArguments site_city=auto -City "WI, Menomonee Falls" ResStockArguments site_city=auto -City "WI, Milwaukee" ResStockArguments site_city=auto -City "WI, New Berlin" ResStockArguments site_city=auto -City "WI, Oshkosh" ResStockArguments site_city=auto -City "WI, Racine" ResStockArguments site_city=auto -City "WI, Sheboygan" ResStockArguments site_city=auto -City "WI, Waukesha" ResStockArguments site_city=auto -City "WI, Wausau" ResStockArguments site_city=auto -City "WI, Wauwatosa" ResStockArguments site_city=auto -City "WI, West Allis" ResStockArguments site_city=auto -City "WV, Charleston" ResStockArguments site_city=auto -City "WV, Huntington" ResStockArguments site_city=auto -City "WV, Parkersburg" ResStockArguments site_city=auto -City "WY, Casper" ResStockArguments site_city=auto -City "WY, Cheyenne" ResStockArguments site_city=auto -City In another census Place ResStockArguments site_city=auto -City Not in a census Place ResStockArguments site_city=auto -Clothes Dryer "Electric, Heat Pump, Ventless" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=4.5 clothes_dryer_vented_flow_rate=0 -Clothes Dryer "Electric, Premium" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.42 clothes_dryer_vented_flow_rate=auto -Clothes Dryer "Electric, Premium, EnergyStar" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.93 clothes_dryer_vented_flow_rate=auto -Clothes Dryer "Electric, Premium, Heat Pump, Ventless" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=5.2 clothes_dryer_vented_flow_rate=0 -Clothes Dryer "Gas, Premium" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.03 clothes_dryer_vented_flow_rate=auto -Clothes Dryer Electric ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.70 clothes_dryer_vented_flow_rate=auto -Clothes Dryer Gas ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.39 clothes_dryer_vented_flow_rate=auto -Clothes Dryer None ResStockArguments clothes_dryer_present=false clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.70 clothes_dryer_vented_flow_rate=auto -Clothes Dryer Propane ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=propane clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.39 clothes_dryer_vented_flow_rate=auto -Clothes Dryer Void -Clothes Dryer Usage Level 100% Usage ResStockArguments clothes_dryer_usage_multiplier=1.0 -Clothes Dryer Usage Level 120% Usage ResStockArguments clothes_dryer_usage_multiplier=1.2 -Clothes Dryer Usage Level 80% Usage ResStockArguments clothes_dryer_usage_multiplier=0.8 -Clothes Washer "EnergyStar, Cold Only" ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.07 clothes_washer_rated_annual_kwh=123 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=9 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.68 -Clothes Washer CEE Advanced Tier ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=3.1 clothes_washer_rated_annual_kwh=120 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=14 clothes_washer_label_usage=7.538462 clothes_washer_capacity=5.8 -Clothes Washer EnergyStar ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.07 clothes_washer_rated_annual_kwh=123 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=9 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.68 -Clothes Washer EnergyStar More Efficient ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.83 clothes_washer_rated_annual_kwh=90 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=8 clothes_washer_label_usage=7.538462 clothes_washer_capacity=4.5 -Clothes Washer EnergyStar Most Efficient ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.92 clothes_washer_rated_annual_kwh=75 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=7 clothes_washer_label_usage=7.538462 clothes_washer_capacity=4.5 -Clothes Washer None ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=0 clothes_washer_rated_annual_kwh=0 clothes_washer_label_electric_rate=0 clothes_washer_label_gas_rate=0 clothes_washer_label_annual_gas_cost=0 clothes_washer_label_usage=0 clothes_washer_capacity=0 -Clothes Washer Standard ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=0.95 clothes_washer_rated_annual_kwh=387 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=24 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.5 -Clothes Washer Void -Clothes Washer Presence None ResStockArguments clothes_washer_present=false -Clothes Washer Presence Void -Clothes Washer Presence Yes ResStockArguments clothes_washer_present=true -Clothes Washer Usage Level 100% Usage ResStockArguments clothes_washer_usage_multiplier=1.0 -Clothes Washer Usage Level 120% Usage ResStockArguments clothes_washer_usage_multiplier=1.2 -Clothes Washer Usage Level 80% Usage ResStockArguments clothes_washer_usage_multiplier=0.8 -Cooking Range Electric Induction ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=electricity cooking_range_oven_is_induction=true cooking_range_oven_is_convection=auto -Cooking Range Electric Resistance ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=electricity cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto -Cooking Range Gas ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=natural gas cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto -Cooking Range None ResStockArguments cooking_range_oven_present=false cooking_range_oven_location=auto cooking_range_oven_fuel_type=natural gas cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto -Cooking Range Propane ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=propane cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto -Cooking Range Void -Cooking Range Usage Level 100% Usage ResStockArguments cooking_range_oven_usage_multiplier=1.0 -Cooking Range Usage Level 120% Usage ResStockArguments cooking_range_oven_usage_multiplier=1.2 -Cooking Range Usage Level 80% Usage ResStockArguments cooking_range_oven_usage_multiplier=0.8 -Cooling Setpoint 60F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=60 hvac_control_cooling_weekend_setpoint_temp=60 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 62F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=62 hvac_control_cooling_weekend_setpoint_temp=62 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 64F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=64 hvac_control_cooling_weekend_setpoint_temp=64 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 65F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=65 hvac_control_cooling_weekend_setpoint_temp=65 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 66F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=66 hvac_control_cooling_weekend_setpoint_temp=66 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 67F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=67 hvac_control_cooling_weekend_setpoint_temp=67 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 68F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=68 hvac_control_cooling_weekend_setpoint_temp=68 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 69F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=69 hvac_control_cooling_weekend_setpoint_temp=69 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 70F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=70 hvac_control_cooling_weekend_setpoint_temp=70 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 72F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=72 hvac_control_cooling_weekend_setpoint_temp=72 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 73F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=73 hvac_control_cooling_weekend_setpoint_temp=73 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 74F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=74 hvac_control_cooling_weekend_setpoint_temp=74 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 75F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=75 hvac_control_cooling_weekend_setpoint_temp=75 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 76F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=76 hvac_control_cooling_weekend_setpoint_temp=76 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 76F w/ Building America season ResStockArguments hvac_control_cooling_weekday_setpoint_temp=76 hvac_control_cooling_weekend_setpoint_temp=76 use_auto_cooling_season=true hvac_control_cooling_season_period=auto -Cooling Setpoint 77F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=77 hvac_control_cooling_weekend_setpoint_temp=77 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 78F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=78 hvac_control_cooling_weekend_setpoint_temp=78 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 80F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=80 hvac_control_cooling_weekend_setpoint_temp=80 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint Void -Cooling Setpoint Has Offset No -Cooling Setpoint Has Offset Yes -Cooling Setpoint Offset Magnitude 0F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=0 hvac_control_cooling_weekend_setpoint_offset_magnitude=0 -Cooling Setpoint Offset Magnitude 2F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=2 hvac_control_cooling_weekend_setpoint_offset_magnitude=2 -Cooling Setpoint Offset Magnitude 5F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=5 hvac_control_cooling_weekend_setpoint_offset_magnitude=5 -Cooling Setpoint Offset Magnitude 9F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=9 hvac_control_cooling_weekend_setpoint_offset_magnitude=9 -Cooling Setpoint Offset Period Day Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup and Night Setback ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day Setup and Night Setback +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day Setup and Night Setback +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day Setup and Night Setback +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day Setup and Night Setback -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" -Cooling Setpoint Offset Period Day and Night Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1" -Cooling Setpoint Offset Period Day and Night Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1" -Cooling Setpoint Offset Period Day and Night Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day and Night Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day and Night Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day and Night Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day and Night Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1" -Cooling Setpoint Offset Period Day and Night Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1" -Cooling Setpoint Offset Period Day and Night Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1" -Cooling Setpoint Offset Period Day and Night Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1" -Cooling Setpoint Offset Period Day and Night Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1" -Cooling Setpoint Offset Period Night Setback ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" -Cooling Setpoint Offset Period Night Setback +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" -Cooling Setpoint Offset Period Night Setback +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setback +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setback +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setback +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setback -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" -Cooling Setpoint Offset Period Night Setback -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" -Cooling Setpoint Offset Period Night Setback -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" -Cooling Setpoint Offset Period Night Setback -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" -Cooling Setpoint Offset Period Night Setback -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" -Cooling Setpoint Offset Period Night Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1" -Cooling Setpoint Offset Period Night Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1" -Cooling Setpoint Offset Period Night Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1" -Cooling Setpoint Offset Period Night Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1" -Cooling Setpoint Offset Period Night Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1" -Cooling Setpoint Offset Period Night Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1" -Cooling Setpoint Offset Period Night Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1" -Cooling Setpoint Offset Period None ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Corridor Double Exterior ResStockArguments geometry_corridor_position=Double Exterior geometry_corridor_width=10 -Corridor Double-Loaded Interior ResStockArguments geometry_corridor_position=Double-Loaded Interior geometry_corridor_width=10 -Corridor None ResStockArguments geometry_corridor_position=None geometry_corridor_width=0 -Corridor Not Applicable ResStockArguments geometry_corridor_position=None geometry_corridor_width=0 -Corridor Single Exterior Front ResStockArguments geometry_corridor_position=Single Exterior (Front) geometry_corridor_width=10 -County "AK, Aleutians East Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200130.epw site_zip_code=99661 site_time_zone_utc_offset=-9 -County "AK, Aleutians West Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200160.epw site_zip_code=99685 site_time_zone_utc_offset=-9 -County "AK, Anchorage Municipality" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200200.epw site_zip_code=99501 site_time_zone_utc_offset=-9 -County "AK, Bethel Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200500.epw site_zip_code=99545 site_time_zone_utc_offset=-9 -County "AK, Bristol Bay Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200600.epw site_zip_code=99633 site_time_zone_utc_offset=-9 -County "AK, Denali Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200680.epw site_zip_code=99743 site_time_zone_utc_offset=-9 -County "AK, Dillingham Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200700.epw site_zip_code=99576 site_time_zone_utc_offset=-9 -County "AK, Fairbanks North Star Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200900.epw site_zip_code=99709 site_time_zone_utc_offset=-9 -County "AK, Haines Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201000.epw site_zip_code=99827 site_time_zone_utc_offset=-9 -County "AK, Hoonah-Angoon Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201050.epw site_zip_code=99829 site_time_zone_utc_offset=-9 -County "AK, Juneau City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201100.epw site_zip_code=99802 site_time_zone_utc_offset=-9 -County "AK, Kenai Peninsula Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201220.epw site_zip_code=99611 site_time_zone_utc_offset=-9 -County "AK, Ketchikan Gateway Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201300.epw site_zip_code=99901 site_time_zone_utc_offset=-9 -County "AK, Kodiak Island Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201500.epw site_zip_code=99615 site_time_zone_utc_offset=-9 -County "AK, Kusilvak Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202700.epw site_zip_code=99604 site_time_zone_utc_offset=-9 -County "AK, Lake and Peninsula Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201640.epw site_zip_code=99653 site_time_zone_utc_offset=-9 -County "AK, Matanuska-Susitna Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201700.epw site_zip_code=99645 site_time_zone_utc_offset=-9 -County "AK, Nome Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201800.epw site_zip_code=99762 site_time_zone_utc_offset=-9 -County "AK, North Slope Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201850.epw site_zip_code=99723 site_time_zone_utc_offset=-9 -County "AK, Northwest Arctic Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201880.epw site_zip_code=99752 site_time_zone_utc_offset=-9 -County "AK, Petersburg Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201950.epw site_zip_code=99833 site_time_zone_utc_offset=-9 -County "AK, Prince of Wales-Hyder Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201980.epw site_zip_code=99926 site_time_zone_utc_offset=-9 -County "AK, Sitka City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202200.epw site_zip_code=99835 site_time_zone_utc_offset=-9 -County "AK, Skagway Municipality" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202300.epw site_zip_code=99840 site_time_zone_utc_offset=-9 -County "AK, Southeast Fairbanks Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202400.epw site_zip_code=99731 site_time_zone_utc_offset=-9 -County "AK, Valdez-Cordova Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202610.epw site_zip_code=99686 site_time_zone_utc_offset=-9 -County "AK, Wrangell City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202750.epw site_zip_code=99903 site_time_zone_utc_offset=-9 -County "AK, Yakutat City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202820.epw site_zip_code=99689 site_time_zone_utc_offset=-9 -County "AK, Yukon-Koyukuk Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202900.epw site_zip_code=99740 site_time_zone_utc_offset=-9 -County "AL, Autauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100010.epw site_zip_code=36067 site_time_zone_utc_offset=-6 -County "AL, Baldwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100030.epw site_zip_code=36535 site_time_zone_utc_offset=-6 -County "AL, Barbour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100050.epw site_zip_code=36027 site_time_zone_utc_offset=-6 -County "AL, Bibb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100070.epw site_zip_code=35042 site_time_zone_utc_offset=-6 -County "AL, Blount County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100090.epw site_zip_code=35121 site_time_zone_utc_offset=-6 -County "AL, Bullock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100110.epw site_zip_code=36089 site_time_zone_utc_offset=-6 -County "AL, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100130.epw site_zip_code=36037 site_time_zone_utc_offset=-6 -County "AL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100150.epw site_zip_code=36201 site_time_zone_utc_offset=-6 -County "AL, Chambers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100170.epw site_zip_code=36863 site_time_zone_utc_offset=-6 -County "AL, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100190.epw site_zip_code=35960 site_time_zone_utc_offset=-6 -County "AL, Chilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100210.epw site_zip_code=35045 site_time_zone_utc_offset=-6 -County "AL, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100230.epw site_zip_code=36904 site_time_zone_utc_offset=-6 -County "AL, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100250.epw site_zip_code=36545 site_time_zone_utc_offset=-6 -County "AL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100270.epw site_zip_code=36251 site_time_zone_utc_offset=-6 -County "AL, Cleburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100290.epw site_zip_code=36264 site_time_zone_utc_offset=-6 -County "AL, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100310.epw site_zip_code=36330 site_time_zone_utc_offset=-6 -County "AL, Colbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100330.epw site_zip_code=35674 site_time_zone_utc_offset=-6 -County "AL, Conecuh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100350.epw site_zip_code=36401 site_time_zone_utc_offset=-6 -County "AL, Coosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100370.epw site_zip_code=35151 site_time_zone_utc_offset=-6 -County "AL, Covington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100390.epw site_zip_code=36420 site_time_zone_utc_offset=-6 -County "AL, Crenshaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100410.epw site_zip_code=36049 site_time_zone_utc_offset=-6 -County "AL, Cullman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100430.epw site_zip_code=35055 site_time_zone_utc_offset=-6 -County "AL, Dale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100450.epw site_zip_code=36360 site_time_zone_utc_offset=-6 -County "AL, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100470.epw site_zip_code=36701 site_time_zone_utc_offset=-6 -County "AL, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100490.epw site_zip_code=35967 site_time_zone_utc_offset=-6 -County "AL, Elmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100510.epw site_zip_code=36092 site_time_zone_utc_offset=-6 -County "AL, Escambia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100530.epw site_zip_code=36426 site_time_zone_utc_offset=-6 -County "AL, Etowah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100550.epw site_zip_code=35901 site_time_zone_utc_offset=-6 -County "AL, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100570.epw site_zip_code=35555 site_time_zone_utc_offset=-6 -County "AL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100590.epw site_zip_code=35653 site_time_zone_utc_offset=-6 -County "AL, Geneva County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100610.epw site_zip_code=36375 site_time_zone_utc_offset=-6 -County "AL, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100630.epw site_zip_code=35462 site_time_zone_utc_offset=-6 -County "AL, Hale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100650.epw site_zip_code=36744 site_time_zone_utc_offset=-6 -County "AL, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100670.epw site_zip_code=36310 site_time_zone_utc_offset=-6 -County "AL, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100690.epw site_zip_code=36301 site_time_zone_utc_offset=-6 -County "AL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100710.epw site_zip_code=35768 site_time_zone_utc_offset=-6 -County "AL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100730.epw site_zip_code=35215 site_time_zone_utc_offset=-6 -County "AL, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100750.epw site_zip_code=35586 site_time_zone_utc_offset=-6 -County "AL, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100770.epw site_zip_code=35630 site_time_zone_utc_offset=-6 -County "AL, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100790.epw site_zip_code=35650 site_time_zone_utc_offset=-6 -County "AL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100810.epw site_zip_code=36830 site_time_zone_utc_offset=-6 -County "AL, Limestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100830.epw site_zip_code=35611 site_time_zone_utc_offset=-6 -County "AL, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100850.epw site_zip_code=36040 site_time_zone_utc_offset=-6 -County "AL, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100870.epw site_zip_code=36083 site_time_zone_utc_offset=-6 -County "AL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100890.epw site_zip_code=35758 site_time_zone_utc_offset=-6 -County "AL, Marengo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100910.epw site_zip_code=36732 site_time_zone_utc_offset=-6 -County "AL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100930.epw site_zip_code=35570 site_time_zone_utc_offset=-6 -County "AL, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100950.epw site_zip_code=35976 site_time_zone_utc_offset=-6 -County "AL, Mobile County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100970.epw site_zip_code=36695 site_time_zone_utc_offset=-6 -County "AL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100990.epw site_zip_code=36460 site_time_zone_utc_offset=-6 -County "AL, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101010.epw site_zip_code=36117 site_time_zone_utc_offset=-6 -County "AL, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101030.epw site_zip_code=35601 site_time_zone_utc_offset=-6 -County "AL, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101050.epw site_zip_code=36756 site_time_zone_utc_offset=-6 -County "AL, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101070.epw site_zip_code=35466 site_time_zone_utc_offset=-6 -County "AL, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101090.epw site_zip_code=36081 site_time_zone_utc_offset=-6 -County "AL, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101110.epw site_zip_code=36274 site_time_zone_utc_offset=-6 -County "AL, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101130.epw site_zip_code=36869 site_time_zone_utc_offset=-6 -County "AL, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101170.epw site_zip_code=35242 site_time_zone_utc_offset=-6 -County "AL, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101150.epw site_zip_code=35120 site_time_zone_utc_offset=-6 -County "AL, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101190.epw site_zip_code=36925 site_time_zone_utc_offset=-6 -County "AL, Talladega County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101210.epw site_zip_code=35160 site_time_zone_utc_offset=-6 -County "AL, Tallapoosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101230.epw site_zip_code=35010 site_time_zone_utc_offset=-6 -County "AL, Tuscaloosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101250.epw site_zip_code=35401 site_time_zone_utc_offset=-6 -County "AL, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101270.epw site_zip_code=35504 site_time_zone_utc_offset=-6 -County "AL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101290.epw site_zip_code=36558 site_time_zone_utc_offset=-6 -County "AL, Wilcox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101310.epw site_zip_code=36726 site_time_zone_utc_offset=-6 -County "AL, Winston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101330.epw site_zip_code=35565 site_time_zone_utc_offset=-6 -County "AR, Arkansas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500010.epw site_zip_code=72160 site_time_zone_utc_offset=-6 -County "AR, Ashley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500030.epw site_zip_code=71635 site_time_zone_utc_offset=-6 -County "AR, Baxter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500050.epw site_zip_code=72653 site_time_zone_utc_offset=-6 -County "AR, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500070.epw site_zip_code=72712 site_time_zone_utc_offset=-6 -County "AR, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500090.epw site_zip_code=72601 site_time_zone_utc_offset=-6 -County "AR, Bradley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500110.epw site_zip_code=71671 site_time_zone_utc_offset=-6 -County "AR, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500130.epw site_zip_code=71744 site_time_zone_utc_offset=-6 -County "AR, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500150.epw site_zip_code=72616 site_time_zone_utc_offset=-6 -County "AR, Chicot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500170.epw site_zip_code=71653 site_time_zone_utc_offset=-6 -County "AR, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500190.epw site_zip_code=71923 site_time_zone_utc_offset=-6 -County "AR, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500210.epw site_zip_code=72454 site_time_zone_utc_offset=-6 -County "AR, Cleburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500230.epw site_zip_code=72543 site_time_zone_utc_offset=-6 -County "AR, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500250.epw site_zip_code=71665 site_time_zone_utc_offset=-6 -County "AR, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500270.epw site_zip_code=71753 site_time_zone_utc_offset=-6 -County "AR, Conway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500290.epw site_zip_code=72110 site_time_zone_utc_offset=-6 -County "AR, Craighead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500310.epw site_zip_code=72401 site_time_zone_utc_offset=-6 -County "AR, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500330.epw site_zip_code=72956 site_time_zone_utc_offset=-6 -County "AR, Crittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500350.epw site_zip_code=72301 site_time_zone_utc_offset=-6 -County "AR, Cross County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500370.epw site_zip_code=72396 site_time_zone_utc_offset=-6 -County "AR, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500390.epw site_zip_code=71742 site_time_zone_utc_offset=-6 -County "AR, Desha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500410.epw site_zip_code=71639 site_time_zone_utc_offset=-6 -County "AR, Drew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500430.epw site_zip_code=71655 site_time_zone_utc_offset=-6 -County "AR, Faulkner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500450.epw site_zip_code=72034 site_time_zone_utc_offset=-6 -County "AR, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500470.epw site_zip_code=72949 site_time_zone_utc_offset=-6 -County "AR, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500490.epw site_zip_code=72554 site_time_zone_utc_offset=-6 -County "AR, Garland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500510.epw site_zip_code=71913 site_time_zone_utc_offset=-6 -County "AR, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500530.epw site_zip_code=72150 site_time_zone_utc_offset=-6 -County "AR, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500550.epw site_zip_code=72450 site_time_zone_utc_offset=-6 -County "AR, Hempstead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500570.epw site_zip_code=71801 site_time_zone_utc_offset=-6 -County "AR, Hot Spring County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500590.epw site_zip_code=72104 site_time_zone_utc_offset=-6 -County "AR, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500610.epw site_zip_code=71852 site_time_zone_utc_offset=-6 -County "AR, Independence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500630.epw site_zip_code=72501 site_time_zone_utc_offset=-6 -County "AR, Izard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500650.epw site_zip_code=72556 site_time_zone_utc_offset=-6 -County "AR, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500670.epw site_zip_code=72112 site_time_zone_utc_offset=-6 -County "AR, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500690.epw site_zip_code=71603 site_time_zone_utc_offset=-6 -County "AR, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500710.epw site_zip_code=72830 site_time_zone_utc_offset=-6 -County "AR, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500730.epw site_zip_code=71860 site_time_zone_utc_offset=-6 -County "AR, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500750.epw site_zip_code=72476 site_time_zone_utc_offset=-6 -County "AR, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500770.epw site_zip_code=72360 site_time_zone_utc_offset=-6 -County "AR, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500790.epw site_zip_code=71667 site_time_zone_utc_offset=-6 -County "AR, Little River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500810.epw site_zip_code=71822 site_time_zone_utc_offset=-6 -County "AR, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500830.epw site_zip_code=72927 site_time_zone_utc_offset=-6 -County "AR, Lonoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500850.epw site_zip_code=72023 site_time_zone_utc_offset=-6 -County "AR, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500870.epw site_zip_code=72740 site_time_zone_utc_offset=-6 -County "AR, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500890.epw site_zip_code=72687 site_time_zone_utc_offset=-6 -County "AR, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500910.epw site_zip_code=71854 site_time_zone_utc_offset=-6 -County "AR, Mississippi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500930.epw site_zip_code=72315 site_time_zone_utc_offset=-6 -County "AR, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500950.epw site_zip_code=72021 site_time_zone_utc_offset=-6 -County "AR, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500970.epw site_zip_code=71957 site_time_zone_utc_offset=-6 -County "AR, Nevada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500990.epw site_zip_code=71857 site_time_zone_utc_offset=-6 -County "AR, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501010.epw site_zip_code=72641 site_time_zone_utc_offset=-6 -County "AR, Ouachita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501030.epw site_zip_code=71701 site_time_zone_utc_offset=-6 -County "AR, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501050.epw site_zip_code=72126 site_time_zone_utc_offset=-6 -County "AR, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501070.epw site_zip_code=72390 site_time_zone_utc_offset=-6 -County "AR, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501090.epw site_zip_code=71943 site_time_zone_utc_offset=-6 -County "AR, Poinsett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501110.epw site_zip_code=72472 site_time_zone_utc_offset=-6 -County "AR, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501130.epw site_zip_code=71953 site_time_zone_utc_offset=-6 -County "AR, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501150.epw site_zip_code=72802 site_time_zone_utc_offset=-6 -County "AR, Prairie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501170.epw site_zip_code=72040 site_time_zone_utc_offset=-6 -County "AR, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501190.epw site_zip_code=72076 site_time_zone_utc_offset=-6 -County "AR, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501210.epw site_zip_code=72455 site_time_zone_utc_offset=-6 -County "AR, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501250.epw site_zip_code=72019 site_time_zone_utc_offset=-6 -County "AR, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501270.epw site_zip_code=72958 site_time_zone_utc_offset=-6 -County "AR, Searcy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501290.epw site_zip_code=72650 site_time_zone_utc_offset=-6 -County "AR, Sebastian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501310.epw site_zip_code=72903 site_time_zone_utc_offset=-6 -County "AR, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501330.epw site_zip_code=71832 site_time_zone_utc_offset=-6 -County "AR, Sharp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501350.epw site_zip_code=72529 site_time_zone_utc_offset=-6 -County "AR, St. Francis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501230.epw site_zip_code=72335 site_time_zone_utc_offset=-6 -County "AR, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501370.epw site_zip_code=72560 site_time_zone_utc_offset=-6 -County "AR, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501390.epw site_zip_code=71730 site_time_zone_utc_offset=-6 -County "AR, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501410.epw site_zip_code=72031 site_time_zone_utc_offset=-6 -County "AR, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501430.epw site_zip_code=72701 site_time_zone_utc_offset=-6 -County "AR, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501450.epw site_zip_code=72143 site_time_zone_utc_offset=-6 -County "AR, Woodruff County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501470.epw site_zip_code=72006 site_time_zone_utc_offset=-6 -County "AR, Yell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501490.epw site_zip_code=72834 site_time_zone_utc_offset=-6 -County "AZ, Apache County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400010.epw site_zip_code=85936 site_time_zone_utc_offset=-7 -County "AZ, Cochise County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400030.epw site_zip_code=85635 site_time_zone_utc_offset=-7 -County "AZ, Coconino County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400050.epw site_zip_code=86001 site_time_zone_utc_offset=-7 -County "AZ, Gila County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400070.epw site_zip_code=85541 site_time_zone_utc_offset=-7 -County "AZ, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400090.epw site_zip_code=85546 site_time_zone_utc_offset=-7 -County "AZ, Greenlee County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400110.epw site_zip_code=85534 site_time_zone_utc_offset=-7 -County "AZ, La Paz County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400120.epw site_zip_code=85344 site_time_zone_utc_offset=-7 -County "AZ, Maricopa County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400130.epw site_zip_code=85281 site_time_zone_utc_offset=-7 -County "AZ, Mohave County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400150.epw site_zip_code=86442 site_time_zone_utc_offset=-7 -County "AZ, Navajo County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400170.epw site_zip_code=85901 site_time_zone_utc_offset=-7 -County "AZ, Pima County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400190.epw site_zip_code=85705 site_time_zone_utc_offset=-7 -County "AZ, Pinal County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400210.epw site_zip_code=85122 site_time_zone_utc_offset=-7 -County "AZ, Santa Cruz County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400230.epw site_zip_code=85621 site_time_zone_utc_offset=-7 -County "AZ, Yavapai County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400250.epw site_zip_code=86314 site_time_zone_utc_offset=-7 -County "AZ, Yuma County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400270.epw site_zip_code=85364 site_time_zone_utc_offset=-7 -County "CA, Alameda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600010.epw site_zip_code=94501 site_time_zone_utc_offset=-8 -County "CA, Alpine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600030.epw site_zip_code=96120 site_time_zone_utc_offset=-8 -County "CA, Amador County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600050.epw site_zip_code=95642 site_time_zone_utc_offset=-8 -County "CA, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600070.epw site_zip_code=95928 site_time_zone_utc_offset=-8 -County "CA, Calaveras County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600090.epw site_zip_code=95252 site_time_zone_utc_offset=-8 -County "CA, Colusa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600110.epw site_zip_code=95932 site_time_zone_utc_offset=-8 -County "CA, Contra Costa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600130.epw site_zip_code=94565 site_time_zone_utc_offset=-8 -County "CA, Del Norte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600150.epw site_zip_code=95531 site_time_zone_utc_offset=-8 -County "CA, El Dorado County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600170.epw site_zip_code=95762 site_time_zone_utc_offset=-8 -County "CA, Fresno County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600190.epw site_zip_code=93722 site_time_zone_utc_offset=-8 -County "CA, Glenn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600210.epw site_zip_code=95963 site_time_zone_utc_offset=-8 -County "CA, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600230.epw site_zip_code=95501 site_time_zone_utc_offset=-8 -County "CA, Imperial County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600250.epw site_zip_code=92243 site_time_zone_utc_offset=-8 -County "CA, Inyo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600270.epw site_zip_code=93514 site_time_zone_utc_offset=-8 -County "CA, Kern County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600290.epw site_zip_code=93306 site_time_zone_utc_offset=-8 -County "CA, Kings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600310.epw site_zip_code=93230 site_time_zone_utc_offset=-8 -County "CA, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600330.epw site_zip_code=95422 site_time_zone_utc_offset=-8 -County "CA, Lassen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600350.epw site_zip_code=96130 site_time_zone_utc_offset=-8 -County "CA, Los Angeles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600370.epw site_zip_code=90250 site_time_zone_utc_offset=-8 -County "CA, Madera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600390.epw site_zip_code=93637 site_time_zone_utc_offset=-8 -County "CA, Marin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600410.epw site_zip_code=94901 site_time_zone_utc_offset=-8 -County "CA, Mariposa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600430.epw site_zip_code=95338 site_time_zone_utc_offset=-8 -County "CA, Mendocino County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600450.epw site_zip_code=95482 site_time_zone_utc_offset=-8 -County "CA, Merced County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600470.epw site_zip_code=93635 site_time_zone_utc_offset=-8 -County "CA, Modoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600490.epw site_zip_code=96101 site_time_zone_utc_offset=-8 -County "CA, Mono County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600510.epw site_zip_code=93546 site_time_zone_utc_offset=-8 -County "CA, Monterey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600530.epw site_zip_code=93906 site_time_zone_utc_offset=-8 -County "CA, Napa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600550.epw site_zip_code=94558 site_time_zone_utc_offset=-8 -County "CA, Nevada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600570.epw site_zip_code=95945 site_time_zone_utc_offset=-8 -County "CA, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600590.epw site_zip_code=92683 site_time_zone_utc_offset=-8 -County "CA, Placer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600610.epw site_zip_code=95747 site_time_zone_utc_offset=-8 -County "CA, Plumas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600630.epw site_zip_code=96122 site_time_zone_utc_offset=-8 -County "CA, Riverside County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600650.epw site_zip_code=92503 site_time_zone_utc_offset=-8 -County "CA, Sacramento County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600670.epw site_zip_code=95630 site_time_zone_utc_offset=-8 -County "CA, San Benito County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600690.epw site_zip_code=95023 site_time_zone_utc_offset=-8 -County "CA, San Bernardino County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600710.epw site_zip_code=92336 site_time_zone_utc_offset=-8 -County "CA, San Diego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600730.epw site_zip_code=92101 site_time_zone_utc_offset=-8 -County "CA, San Francisco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600750.epw site_zip_code=94109 site_time_zone_utc_offset=-8 -County "CA, San Joaquin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600770.epw site_zip_code=95206 site_time_zone_utc_offset=-8 -County "CA, San Luis Obispo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600790.epw site_zip_code=93446 site_time_zone_utc_offset=-8 -County "CA, San Mateo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600810.epw site_zip_code=94080 site_time_zone_utc_offset=-8 -County "CA, Santa Barbara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600830.epw site_zip_code=93436 site_time_zone_utc_offset=-8 -County "CA, Santa Clara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600850.epw site_zip_code=95035 site_time_zone_utc_offset=-8 -County "CA, Santa Cruz County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600870.epw site_zip_code=95076 site_time_zone_utc_offset=-8 -County "CA, Shasta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600890.epw site_zip_code=96003 site_time_zone_utc_offset=-8 -County "CA, Sierra County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600910.epw site_zip_code=95960 site_time_zone_utc_offset=-8 -County "CA, Siskiyou County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600930.epw site_zip_code=96097 site_time_zone_utc_offset=-8 -County "CA, Solano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600950.epw site_zip_code=94533 site_time_zone_utc_offset=-8 -County "CA, Sonoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600970.epw site_zip_code=95403 site_time_zone_utc_offset=-8 -County "CA, Stanislaus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600990.epw site_zip_code=95355 site_time_zone_utc_offset=-8 -County "CA, Sutter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601010.epw site_zip_code=95991 site_time_zone_utc_offset=-8 -County "CA, Tehama County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601030.epw site_zip_code=96080 site_time_zone_utc_offset=-8 -County "CA, Trinity County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601050.epw site_zip_code=96091 site_time_zone_utc_offset=-8 -County "CA, Tulare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601070.epw site_zip_code=93274 site_time_zone_utc_offset=-8 -County "CA, Tuolumne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601090.epw site_zip_code=95370 site_time_zone_utc_offset=-8 -County "CA, Ventura County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601110.epw site_zip_code=93065 site_time_zone_utc_offset=-8 -County "CA, Yolo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601130.epw site_zip_code=95616 site_time_zone_utc_offset=-8 -County "CA, Yuba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601150.epw site_zip_code=95901 site_time_zone_utc_offset=-8 -County "CO, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800010.epw site_zip_code=80229 site_time_zone_utc_offset=-7 -County "CO, Alamosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800030.epw site_zip_code=81101 site_time_zone_utc_offset=-7 -County "CO, Arapahoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800050.epw site_zip_code=80013 site_time_zone_utc_offset=-7 -County "CO, Archuleta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800070.epw site_zip_code=81147 site_time_zone_utc_offset=-7 -County "CO, Baca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800090.epw site_zip_code=81073 site_time_zone_utc_offset=-7 -County "CO, Bent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800110.epw site_zip_code=81054 site_time_zone_utc_offset=-7 -County "CO, Boulder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800130.epw site_zip_code=80501 site_time_zone_utc_offset=-7 -County "CO, Broomfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800140.epw site_zip_code=80020 site_time_zone_utc_offset=-7 -County "CO, Chaffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800150.epw site_zip_code=81201 site_time_zone_utc_offset=-7 -County "CO, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800170.epw site_zip_code=80810 site_time_zone_utc_offset=-7 -County "CO, Clear Creek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800190.epw site_zip_code=80439 site_time_zone_utc_offset=-7 -County "CO, Conejos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800210.epw site_zip_code=81120 site_time_zone_utc_offset=-7 -County "CO, Costilla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800230.epw site_zip_code=81133 site_time_zone_utc_offset=-7 -County "CO, Crowley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800250.epw site_zip_code=81063 site_time_zone_utc_offset=-7 -County "CO, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800270.epw site_zip_code=81252 site_time_zone_utc_offset=-7 -County "CO, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800290.epw site_zip_code=81416 site_time_zone_utc_offset=-7 -County "CO, Denver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800310.epw site_zip_code=80211 site_time_zone_utc_offset=-7 -County "CO, Dolores County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800330.epw site_zip_code=81324 site_time_zone_utc_offset=-7 -County "CO, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800350.epw site_zip_code=80134 site_time_zone_utc_offset=-7 -County "CO, Eagle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800370.epw site_zip_code=81620 site_time_zone_utc_offset=-7 -County "CO, El Paso County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800410.epw site_zip_code=80918 site_time_zone_utc_offset=-7 -County "CO, Elbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800390.epw site_zip_code=80107 site_time_zone_utc_offset=-7 -County "CO, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800430.epw site_zip_code=81212 site_time_zone_utc_offset=-7 -County "CO, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800450.epw site_zip_code=81601 site_time_zone_utc_offset=-7 -County "CO, Gilpin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800470.epw site_zip_code=80422 site_time_zone_utc_offset=-7 -County "CO, Grand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800490.epw site_zip_code=80459 site_time_zone_utc_offset=-7 -County "CO, Gunnison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800510.epw site_zip_code=81230 site_time_zone_utc_offset=-7 -County "CO, Hinsdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800530.epw site_zip_code=81235 site_time_zone_utc_offset=-7 -County "CO, Huerfano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800550.epw site_zip_code=81089 site_time_zone_utc_offset=-7 -County "CO, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800570.epw site_zip_code=80480 site_time_zone_utc_offset=-7 -County "CO, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800590.epw site_zip_code=80127 site_time_zone_utc_offset=-7 -County "CO, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800610.epw site_zip_code=81036 site_time_zone_utc_offset=-7 -County "CO, Kit Carson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800630.epw site_zip_code=80807 site_time_zone_utc_offset=-7 -County "CO, La Plata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800670.epw site_zip_code=81301 site_time_zone_utc_offset=-7 -County "CO, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800650.epw site_zip_code=80461 site_time_zone_utc_offset=-7 -County "CO, Larimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800690.epw site_zip_code=80525 site_time_zone_utc_offset=-7 -County "CO, Las Animas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800710.epw site_zip_code=81082 site_time_zone_utc_offset=-7 -County "CO, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800730.epw site_zip_code=80828 site_time_zone_utc_offset=-7 -County "CO, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800750.epw site_zip_code=80751 site_time_zone_utc_offset=-7 -County "CO, Mesa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800770.epw site_zip_code=81504 site_time_zone_utc_offset=-7 -County "CO, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800790.epw site_zip_code=81130 site_time_zone_utc_offset=-7 -County "CO, Moffat County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800810.epw site_zip_code=81625 site_time_zone_utc_offset=-7 -County "CO, Montezuma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800830.epw site_zip_code=81321 site_time_zone_utc_offset=-7 -County "CO, Montrose County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800850.epw site_zip_code=81401 site_time_zone_utc_offset=-7 -County "CO, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800870.epw site_zip_code=80701 site_time_zone_utc_offset=-7 -County "CO, Otero County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800890.epw site_zip_code=81050 site_time_zone_utc_offset=-7 -County "CO, Ouray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800910.epw site_zip_code=81432 site_time_zone_utc_offset=-7 -County "CO, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800930.epw site_zip_code=80421 site_time_zone_utc_offset=-7 -County "CO, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800950.epw site_zip_code=80734 site_time_zone_utc_offset=-7 -County "CO, Pitkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800970.epw site_zip_code=81612 site_time_zone_utc_offset=-7 -County "CO, Prowers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800990.epw site_zip_code=81052 site_time_zone_utc_offset=-7 -County "CO, Pueblo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801010.epw site_zip_code=81001 site_time_zone_utc_offset=-7 -County "CO, Rio Blanco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801030.epw site_zip_code=81648 site_time_zone_utc_offset=-7 -County "CO, Rio Grande County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801050.epw site_zip_code=81144 site_time_zone_utc_offset=-7 -County "CO, Routt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801070.epw site_zip_code=80487 site_time_zone_utc_offset=-7 -County "CO, Saguache County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801090.epw site_zip_code=81125 site_time_zone_utc_offset=-7 -County "CO, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801110.epw site_zip_code=81433 site_time_zone_utc_offset=-7 -County "CO, San Miguel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801130.epw site_zip_code=81435 site_time_zone_utc_offset=-7 -County "CO, Sedgwick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801150.epw site_zip_code=80737 site_time_zone_utc_offset=-7 -County "CO, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801170.epw site_zip_code=80424 site_time_zone_utc_offset=-7 -County "CO, Teller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801190.epw site_zip_code=80863 site_time_zone_utc_offset=-7 -County "CO, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801210.epw site_zip_code=80720 site_time_zone_utc_offset=-7 -County "CO, Weld County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801230.epw site_zip_code=80634 site_time_zone_utc_offset=-7 -County "CO, Yuma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801250.epw site_zip_code=80759 site_time_zone_utc_offset=-7 -County "CT, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900010.epw site_zip_code=06902 site_time_zone_utc_offset=-5 -County "CT, Hartford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900030.epw site_zip_code=06010 site_time_zone_utc_offset=-5 -County "CT, Litchfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900050.epw site_zip_code=06790 site_time_zone_utc_offset=-5 -County "CT, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900070.epw site_zip_code=06457 site_time_zone_utc_offset=-5 -County "CT, New Haven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900090.epw site_zip_code=06516 site_time_zone_utc_offset=-5 -County "CT, New London County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900110.epw site_zip_code=06360 site_time_zone_utc_offset=-5 -County "CT, Tolland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900130.epw site_zip_code=06066 site_time_zone_utc_offset=-5 -County "CT, Windham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900150.epw site_zip_code=06226 site_time_zone_utc_offset=-5 -County "DC, District of Columbia" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1100010.epw site_zip_code=20002 site_time_zone_utc_offset=-5 -County "DE, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000010.epw site_zip_code=19904 site_time_zone_utc_offset=-5 -County "DE, New Castle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000030.epw site_zip_code=19720 site_time_zone_utc_offset=-5 -County "DE, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000050.epw site_zip_code=19966 site_time_zone_utc_offset=-5 -County "FL, Alachua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200010.epw site_zip_code=32608 site_time_zone_utc_offset=-5 -County "FL, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200030.epw site_zip_code=32063 site_time_zone_utc_offset=-5 -County "FL, Bay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200050.epw site_zip_code=32404 site_time_zone_utc_offset=-6 -County "FL, Bradford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200070.epw site_zip_code=32091 site_time_zone_utc_offset=-5 -County "FL, Brevard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200090.epw site_zip_code=32940 site_time_zone_utc_offset=-5 -County "FL, Broward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200110.epw site_zip_code=33027 site_time_zone_utc_offset=-5 -County "FL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200130.epw site_zip_code=32424 site_time_zone_utc_offset=-6 -County "FL, Charlotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200150.epw site_zip_code=33950 site_time_zone_utc_offset=-5 -County "FL, Citrus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200170.epw site_zip_code=34446 site_time_zone_utc_offset=-5 -County "FL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200190.epw site_zip_code=32068 site_time_zone_utc_offset=-5 -County "FL, Collier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200210.epw site_zip_code=34112 site_time_zone_utc_offset=-5 -County "FL, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200230.epw site_zip_code=32025 site_time_zone_utc_offset=-5 -County "FL, DeSoto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200270.epw site_zip_code=34266 site_time_zone_utc_offset=-5 -County "FL, Dixie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200290.epw site_zip_code=32680 site_time_zone_utc_offset=-5 -County "FL, Duval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200310.epw site_zip_code=32256 site_time_zone_utc_offset=-5 -County "FL, Escambia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200330.epw site_zip_code=32507 site_time_zone_utc_offset=-6 -County "FL, Flagler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200350.epw site_zip_code=32137 site_time_zone_utc_offset=-5 -County "FL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200370.epw site_zip_code=32328 site_time_zone_utc_offset=-5 -County "FL, Gadsden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200390.epw site_zip_code=32351 site_time_zone_utc_offset=-5 -County "FL, Gilchrist County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200410.epw site_zip_code=32693 site_time_zone_utc_offset=-5 -County "FL, Glades County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200430.epw site_zip_code=33471 site_time_zone_utc_offset=-5 -County "FL, Gulf County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200450.epw site_zip_code=32456 site_time_zone_utc_offset=-6 -County "FL, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200470.epw site_zip_code=32052 site_time_zone_utc_offset=-5 -County "FL, Hardee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200490.epw site_zip_code=33873 site_time_zone_utc_offset=-5 -County "FL, Hendry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200510.epw site_zip_code=33440 site_time_zone_utc_offset=-5 -County "FL, Hernando County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200530.epw site_zip_code=34609 site_time_zone_utc_offset=-5 -County "FL, Highlands County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200550.epw site_zip_code=33870 site_time_zone_utc_offset=-5 -County "FL, Hillsborough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200570.epw site_zip_code=33647 site_time_zone_utc_offset=-5 -County "FL, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200590.epw site_zip_code=32425 site_time_zone_utc_offset=-6 -County "FL, Indian River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200610.epw site_zip_code=32958 site_time_zone_utc_offset=-5 -County "FL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200630.epw site_zip_code=32446 site_time_zone_utc_offset=-6 -County "FL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200650.epw site_zip_code=32344 site_time_zone_utc_offset=-5 -County "FL, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200670.epw site_zip_code=32066 site_time_zone_utc_offset=-5 -County "FL, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200690.epw site_zip_code=34711 site_time_zone_utc_offset=-5 -County "FL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200710.epw site_zip_code=34135 site_time_zone_utc_offset=-5 -County "FL, Leon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200730.epw site_zip_code=32303 site_time_zone_utc_offset=-5 -County "FL, Levy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200750.epw site_zip_code=32696 site_time_zone_utc_offset=-5 -County "FL, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200770.epw site_zip_code=32321 site_time_zone_utc_offset=-5 -County "FL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200790.epw site_zip_code=32340 site_time_zone_utc_offset=-5 -County "FL, Manatee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200810.epw site_zip_code=34221 site_time_zone_utc_offset=-5 -County "FL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200830.epw site_zip_code=34491 site_time_zone_utc_offset=-5 -County "FL, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200850.epw site_zip_code=34997 site_time_zone_utc_offset=-5 -County "FL, Miami-Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200860.epw site_zip_code=33160 site_time_zone_utc_offset=-5 -County "FL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200870.epw site_zip_code=33040 site_time_zone_utc_offset=-5 -County "FL, Nassau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200890.epw site_zip_code=32034 site_time_zone_utc_offset=-5 -County "FL, Okaloosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200910.epw site_zip_code=32541 site_time_zone_utc_offset=-6 -County "FL, Okeechobee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200930.epw site_zip_code=34974 site_time_zone_utc_offset=-5 -County "FL, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200950.epw site_zip_code=34787 site_time_zone_utc_offset=-5 -County "FL, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200970.epw site_zip_code=34746 site_time_zone_utc_offset=-5 -County "FL, Palm Beach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200990.epw site_zip_code=33411 site_time_zone_utc_offset=-5 -County "FL, Pasco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201010.epw site_zip_code=34668 site_time_zone_utc_offset=-5 -County "FL, Pinellas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201030.epw site_zip_code=34698 site_time_zone_utc_offset=-5 -County "FL, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201050.epw site_zip_code=33810 site_time_zone_utc_offset=-5 -County "FL, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201070.epw site_zip_code=32177 site_time_zone_utc_offset=-5 -County "FL, Santa Rosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201130.epw site_zip_code=32566 site_time_zone_utc_offset=-6 -County "FL, Sarasota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201150.epw site_zip_code=34293 site_time_zone_utc_offset=-5 -County "FL, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201170.epw site_zip_code=32771 site_time_zone_utc_offset=-5 -County "FL, St. Johns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201090.epw site_zip_code=32259 site_time_zone_utc_offset=-5 -County "FL, St. Lucie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201110.epw site_zip_code=34953 site_time_zone_utc_offset=-5 -County "FL, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201190.epw site_zip_code=32162 site_time_zone_utc_offset=-5 -County "FL, Suwannee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201210.epw site_zip_code=32060 site_time_zone_utc_offset=-5 -County "FL, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201230.epw site_zip_code=32348 site_time_zone_utc_offset=-5 -County "FL, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201250.epw site_zip_code=32054 site_time_zone_utc_offset=-5 -County "FL, Volusia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201270.epw site_zip_code=32174 site_time_zone_utc_offset=-5 -County "FL, Wakulla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201290.epw site_zip_code=32327 site_time_zone_utc_offset=-5 -County "FL, Walton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201310.epw site_zip_code=32459 site_time_zone_utc_offset=-6 -County "FL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201330.epw site_zip_code=32428 site_time_zone_utc_offset=-6 -County "GA, Appling County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300010.epw site_zip_code=31513 site_time_zone_utc_offset=-5 -County "GA, Atkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300030.epw site_zip_code=31642 site_time_zone_utc_offset=-5 -County "GA, Bacon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300050.epw site_zip_code=31510 site_time_zone_utc_offset=-5 -County "GA, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300070.epw site_zip_code=39870 site_time_zone_utc_offset=-5 -County "GA, Baldwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300090.epw site_zip_code=31061 site_time_zone_utc_offset=-5 -County "GA, Banks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300110.epw site_zip_code=30547 site_time_zone_utc_offset=-5 -County "GA, Barrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300130.epw site_zip_code=30680 site_time_zone_utc_offset=-5 -County "GA, Bartow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300150.epw site_zip_code=30120 site_time_zone_utc_offset=-5 -County "GA, Ben Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300170.epw site_zip_code=31750 site_time_zone_utc_offset=-5 -County "GA, Berrien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300190.epw site_zip_code=31639 site_time_zone_utc_offset=-5 -County "GA, Bibb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300210.epw site_zip_code=31204 site_time_zone_utc_offset=-5 -County "GA, Bleckley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300230.epw site_zip_code=31014 site_time_zone_utc_offset=-5 -County "GA, Brantley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300250.epw site_zip_code=31553 site_time_zone_utc_offset=-5 -County "GA, Brooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300270.epw site_zip_code=31643 site_time_zone_utc_offset=-5 -County "GA, Bryan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300290.epw site_zip_code=31324 site_time_zone_utc_offset=-5 -County "GA, Bulloch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300310.epw site_zip_code=30458 site_time_zone_utc_offset=-5 -County "GA, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300330.epw site_zip_code=30830 site_time_zone_utc_offset=-5 -County "GA, Butts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300350.epw site_zip_code=30233 site_time_zone_utc_offset=-5 -County "GA, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300370.epw site_zip_code=39846 site_time_zone_utc_offset=-5 -County "GA, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300390.epw site_zip_code=31558 site_time_zone_utc_offset=-5 -County "GA, Candler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300430.epw site_zip_code=30439 site_time_zone_utc_offset=-5 -County "GA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300450.epw site_zip_code=30117 site_time_zone_utc_offset=-5 -County "GA, Catoosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300470.epw site_zip_code=30736 site_time_zone_utc_offset=-5 -County "GA, Charlton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300490.epw site_zip_code=31537 site_time_zone_utc_offset=-5 -County "GA, Chatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300510.epw site_zip_code=31419 site_time_zone_utc_offset=-5 -County "GA, Chattahoochee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300530.epw site_zip_code=31905 site_time_zone_utc_offset=-5 -County "GA, Chattooga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300550.epw site_zip_code=30747 site_time_zone_utc_offset=-5 -County "GA, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300570.epw site_zip_code=30188 site_time_zone_utc_offset=-5 -County "GA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300590.epw site_zip_code=30606 site_time_zone_utc_offset=-5 -County "GA, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300610.epw site_zip_code=39851 site_time_zone_utc_offset=-5 -County "GA, Clayton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300630.epw site_zip_code=30236 site_time_zone_utc_offset=-5 -County "GA, Clinch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300650.epw site_zip_code=31634 site_time_zone_utc_offset=-5 -County "GA, Cobb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300670.epw site_zip_code=30080 site_time_zone_utc_offset=-5 -County "GA, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300690.epw site_zip_code=31533 site_time_zone_utc_offset=-5 -County "GA, Colquitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300710.epw site_zip_code=31768 site_time_zone_utc_offset=-5 -County "GA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300730.epw site_zip_code=30809 site_time_zone_utc_offset=-5 -County "GA, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300750.epw site_zip_code=31620 site_time_zone_utc_offset=-5 -County "GA, Coweta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300770.epw site_zip_code=30263 site_time_zone_utc_offset=-5 -County "GA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300790.epw site_zip_code=31078 site_time_zone_utc_offset=-5 -County "GA, Crisp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300810.epw site_zip_code=31015 site_time_zone_utc_offset=-5 -County "GA, Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300830.epw site_zip_code=30752 site_time_zone_utc_offset=-5 -County "GA, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300850.epw site_zip_code=30534 site_time_zone_utc_offset=-5 -County "GA, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300890.epw site_zip_code=30058 site_time_zone_utc_offset=-5 -County "GA, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300870.epw site_zip_code=39819 site_time_zone_utc_offset=-5 -County "GA, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300910.epw site_zip_code=31023 site_time_zone_utc_offset=-5 -County "GA, Dooly County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300930.epw site_zip_code=31092 site_time_zone_utc_offset=-5 -County "GA, Dougherty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300950.epw site_zip_code=31705 site_time_zone_utc_offset=-5 -County "GA, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300970.epw site_zip_code=30135 site_time_zone_utc_offset=-5 -County "GA, Early County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300990.epw site_zip_code=39823 site_time_zone_utc_offset=-5 -County "GA, Echols County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301010.epw site_zip_code=31636 site_time_zone_utc_offset=-5 -County "GA, Effingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301030.epw site_zip_code=31326 site_time_zone_utc_offset=-5 -County "GA, Elbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301050.epw site_zip_code=30635 site_time_zone_utc_offset=-5 -County "GA, Emanuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301070.epw site_zip_code=30401 site_time_zone_utc_offset=-5 -County "GA, Evans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301090.epw site_zip_code=30417 site_time_zone_utc_offset=-5 -County "GA, Fannin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301110.epw site_zip_code=30513 site_time_zone_utc_offset=-5 -County "GA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301130.epw site_zip_code=30269 site_time_zone_utc_offset=-5 -County "GA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301150.epw site_zip_code=30165 site_time_zone_utc_offset=-5 -County "GA, Forsyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301170.epw site_zip_code=30040 site_time_zone_utc_offset=-5 -County "GA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301190.epw site_zip_code=30553 site_time_zone_utc_offset=-5 -County "GA, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301210.epw site_zip_code=30318 site_time_zone_utc_offset=-5 -County "GA, Gilmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301230.epw site_zip_code=30540 site_time_zone_utc_offset=-5 -County "GA, Glascock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301250.epw site_zip_code=30810 site_time_zone_utc_offset=-5 -County "GA, Glynn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301270.epw site_zip_code=31525 site_time_zone_utc_offset=-5 -County "GA, Gordon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301290.epw site_zip_code=30701 site_time_zone_utc_offset=-5 -County "GA, Grady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301310.epw site_zip_code=39828 site_time_zone_utc_offset=-5 -County "GA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301330.epw site_zip_code=30642 site_time_zone_utc_offset=-5 -County "GA, Gwinnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301350.epw site_zip_code=30044 site_time_zone_utc_offset=-5 -County "GA, Habersham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301370.epw site_zip_code=30531 site_time_zone_utc_offset=-5 -County "GA, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301390.epw site_zip_code=30542 site_time_zone_utc_offset=-5 -County "GA, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301410.epw site_zip_code=31087 site_time_zone_utc_offset=-5 -County "GA, Haralson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301430.epw site_zip_code=30110 site_time_zone_utc_offset=-5 -County "GA, Harris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301450.epw site_zip_code=31804 site_time_zone_utc_offset=-5 -County "GA, Hart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301470.epw site_zip_code=30643 site_time_zone_utc_offset=-5 -County "GA, Heard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301490.epw site_zip_code=30217 site_time_zone_utc_offset=-5 -County "GA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301510.epw site_zip_code=30253 site_time_zone_utc_offset=-5 -County "GA, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301530.epw site_zip_code=31088 site_time_zone_utc_offset=-5 -County "GA, Irwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301550.epw site_zip_code=31774 site_time_zone_utc_offset=-5 -County "GA, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301570.epw site_zip_code=30549 site_time_zone_utc_offset=-5 -County "GA, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301590.epw site_zip_code=31064 site_time_zone_utc_offset=-5 -County "GA, Jeff Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301610.epw site_zip_code=31539 site_time_zone_utc_offset=-5 -County "GA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301630.epw site_zip_code=30434 site_time_zone_utc_offset=-5 -County "GA, Jenkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301650.epw site_zip_code=30442 site_time_zone_utc_offset=-5 -County "GA, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301670.epw site_zip_code=31096 site_time_zone_utc_offset=-5 -County "GA, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301690.epw site_zip_code=31032 site_time_zone_utc_offset=-5 -County "GA, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301710.epw site_zip_code=30204 site_time_zone_utc_offset=-5 -County "GA, Lanier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301730.epw site_zip_code=31635 site_time_zone_utc_offset=-5 -County "GA, Laurens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301750.epw site_zip_code=31021 site_time_zone_utc_offset=-5 -County "GA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301770.epw site_zip_code=31763 site_time_zone_utc_offset=-5 -County "GA, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301790.epw site_zip_code=31313 site_time_zone_utc_offset=-5 -County "GA, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301810.epw site_zip_code=30817 site_time_zone_utc_offset=-5 -County "GA, Long County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301830.epw site_zip_code=31316 site_time_zone_utc_offset=-5 -County "GA, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301850.epw site_zip_code=31601 site_time_zone_utc_offset=-5 -County "GA, Lumpkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301870.epw site_zip_code=30533 site_time_zone_utc_offset=-5 -County "GA, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301930.epw site_zip_code=31063 site_time_zone_utc_offset=-5 -County "GA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301950.epw site_zip_code=30633 site_time_zone_utc_offset=-5 -County "GA, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301970.epw site_zip_code=31803 site_time_zone_utc_offset=-5 -County "GA, McDuffie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301890.epw site_zip_code=30824 site_time_zone_utc_offset=-5 -County "GA, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301910.epw site_zip_code=31331 site_time_zone_utc_offset=-5 -County "GA, Meriwether County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301990.epw site_zip_code=31816 site_time_zone_utc_offset=-5 -County "GA, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302010.epw site_zip_code=39837 site_time_zone_utc_offset=-5 -County "GA, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302050.epw site_zip_code=31730 site_time_zone_utc_offset=-5 -County "GA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302070.epw site_zip_code=31029 site_time_zone_utc_offset=-5 -County "GA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302090.epw site_zip_code=30445 site_time_zone_utc_offset=-5 -County "GA, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302110.epw site_zip_code=30650 site_time_zone_utc_offset=-5 -County "GA, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302130.epw site_zip_code=30705 site_time_zone_utc_offset=-5 -County "GA, Muscogee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302150.epw site_zip_code=31907 site_time_zone_utc_offset=-5 -County "GA, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302170.epw site_zip_code=30016 site_time_zone_utc_offset=-5 -County "GA, Oconee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302190.epw site_zip_code=30677 site_time_zone_utc_offset=-5 -County "GA, Oglethorpe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302210.epw site_zip_code=30683 site_time_zone_utc_offset=-5 -County "GA, Paulding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302230.epw site_zip_code=30132 site_time_zone_utc_offset=-5 -County "GA, Peach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302250.epw site_zip_code=31030 site_time_zone_utc_offset=-5 -County "GA, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302270.epw site_zip_code=30143 site_time_zone_utc_offset=-5 -County "GA, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302290.epw site_zip_code=31516 site_time_zone_utc_offset=-5 -County "GA, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302310.epw site_zip_code=30292 site_time_zone_utc_offset=-5 -County "GA, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302330.epw site_zip_code=30125 site_time_zone_utc_offset=-5 -County "GA, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302350.epw site_zip_code=31036 site_time_zone_utc_offset=-5 -County "GA, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302370.epw site_zip_code=31024 site_time_zone_utc_offset=-5 -County "GA, Quitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302390.epw site_zip_code=39854 site_time_zone_utc_offset=-5 -County "GA, Rabun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302410.epw site_zip_code=30525 site_time_zone_utc_offset=-5 -County "GA, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302430.epw site_zip_code=39840 site_time_zone_utc_offset=-5 -County "GA, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302450.epw site_zip_code=30909 site_time_zone_utc_offset=-5 -County "GA, Rockdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302470.epw site_zip_code=30094 site_time_zone_utc_offset=-5 -County "GA, Schley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302490.epw site_zip_code=31806 site_time_zone_utc_offset=-5 -County "GA, Screven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302510.epw site_zip_code=30467 site_time_zone_utc_offset=-5 -County "GA, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302530.epw site_zip_code=39845 site_time_zone_utc_offset=-5 -County "GA, Spalding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302550.epw site_zip_code=30223 site_time_zone_utc_offset=-5 -County "GA, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302570.epw site_zip_code=30577 site_time_zone_utc_offset=-5 -County "GA, Stewart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302590.epw site_zip_code=31825 site_time_zone_utc_offset=-5 -County "GA, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302610.epw site_zip_code=31709 site_time_zone_utc_offset=-5 -County "GA, Talbot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302630.epw site_zip_code=31827 site_time_zone_utc_offset=-5 -County "GA, Taliaferro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302650.epw site_zip_code=30631 site_time_zone_utc_offset=-5 -County "GA, Tattnall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302670.epw site_zip_code=30427 site_time_zone_utc_offset=-5 -County "GA, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302690.epw site_zip_code=31006 site_time_zone_utc_offset=-5 -County "GA, Telfair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302710.epw site_zip_code=31055 site_time_zone_utc_offset=-5 -County "GA, Terrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302730.epw site_zip_code=39842 site_time_zone_utc_offset=-5 -County "GA, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302750.epw site_zip_code=31792 site_time_zone_utc_offset=-5 -County "GA, Tift County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302770.epw site_zip_code=31794 site_time_zone_utc_offset=-5 -County "GA, Toombs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302790.epw site_zip_code=30474 site_time_zone_utc_offset=-5 -County "GA, Towns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302810.epw site_zip_code=30546 site_time_zone_utc_offset=-5 -County "GA, Treutlen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302830.epw site_zip_code=30457 site_time_zone_utc_offset=-5 -County "GA, Troup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302850.epw site_zip_code=30241 site_time_zone_utc_offset=-5 -County "GA, Turner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302870.epw site_zip_code=31714 site_time_zone_utc_offset=-5 -County "GA, Twiggs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302890.epw site_zip_code=31044 site_time_zone_utc_offset=-5 -County "GA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302910.epw site_zip_code=30512 site_time_zone_utc_offset=-5 -County "GA, Upson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302930.epw site_zip_code=30286 site_time_zone_utc_offset=-5 -County "GA, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302950.epw site_zip_code=30741 site_time_zone_utc_offset=-5 -County "GA, Walton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302970.epw site_zip_code=30052 site_time_zone_utc_offset=-5 -County "GA, Ware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302990.epw site_zip_code=31503 site_time_zone_utc_offset=-5 -County "GA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303010.epw site_zip_code=30828 site_time_zone_utc_offset=-5 -County "GA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303030.epw site_zip_code=31082 site_time_zone_utc_offset=-5 -County "GA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303050.epw site_zip_code=31545 site_time_zone_utc_offset=-5 -County "GA, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303070.epw site_zip_code=31824 site_time_zone_utc_offset=-5 -County "GA, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303090.epw site_zip_code=30428 site_time_zone_utc_offset=-5 -County "GA, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303110.epw site_zip_code=30528 site_time_zone_utc_offset=-5 -County "GA, Whitfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303130.epw site_zip_code=30721 site_time_zone_utc_offset=-5 -County "GA, Wilcox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303150.epw site_zip_code=31001 site_time_zone_utc_offset=-5 -County "GA, Wilkes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303170.epw site_zip_code=30673 site_time_zone_utc_offset=-5 -County "GA, Wilkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303190.epw site_zip_code=31031 site_time_zone_utc_offset=-5 -County "GA, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303210.epw site_zip_code=31791 site_time_zone_utc_offset=-5 -County "HI, Hawaii County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500010.epw site_zip_code=96721 site_time_zone_utc_offset=-10 -County "HI, Honolulu County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500030.epw site_zip_code=96813 site_time_zone_utc_offset=-10 -County "HI, Kalawao County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500050.epw site_zip_code=96742 site_time_zone_utc_offset=-10 -County "HI, Kauai County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500070.epw site_zip_code=96746 site_time_zone_utc_offset=-10 -County "HI, Maui County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500090.epw site_zip_code=96793 site_time_zone_utc_offset=-10 -County "IA, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900010.epw site_zip_code=50849 site_time_zone_utc_offset=-6 -County "IA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900030.epw site_zip_code=50841 site_time_zone_utc_offset=-6 -County "IA, Allamakee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900050.epw site_zip_code=52172 site_time_zone_utc_offset=-6 -County "IA, Appanoose County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900070.epw site_zip_code=52544 site_time_zone_utc_offset=-6 -County "IA, Audubon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900090.epw site_zip_code=50025 site_time_zone_utc_offset=-6 -County "IA, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900110.epw site_zip_code=52349 site_time_zone_utc_offset=-6 -County "IA, Black Hawk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900130.epw site_zip_code=50613 site_time_zone_utc_offset=-6 -County "IA, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900150.epw site_zip_code=50036 site_time_zone_utc_offset=-6 -County "IA, Bremer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900170.epw site_zip_code=50677 site_time_zone_utc_offset=-6 -County "IA, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900190.epw site_zip_code=50644 site_time_zone_utc_offset=-6 -County "IA, Buena Vista County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900210.epw site_zip_code=50588 site_time_zone_utc_offset=-6 -County "IA, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900230.epw site_zip_code=50665 site_time_zone_utc_offset=-6 -County "IA, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900250.epw site_zip_code=50563 site_time_zone_utc_offset=-6 -County "IA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900270.epw site_zip_code=51401 site_time_zone_utc_offset=-6 -County "IA, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900290.epw site_zip_code=50022 site_time_zone_utc_offset=-6 -County "IA, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900310.epw site_zip_code=52772 site_time_zone_utc_offset=-6 -County "IA, Cerro Gordo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900330.epw site_zip_code=50401 site_time_zone_utc_offset=-6 -County "IA, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900350.epw site_zip_code=51012 site_time_zone_utc_offset=-6 -County "IA, Chickasaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900370.epw site_zip_code=50659 site_time_zone_utc_offset=-6 -County "IA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900390.epw site_zip_code=50213 site_time_zone_utc_offset=-6 -County "IA, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900410.epw site_zip_code=51301 site_time_zone_utc_offset=-6 -County "IA, Clayton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900430.epw site_zip_code=52052 site_time_zone_utc_offset=-6 -County "IA, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900450.epw site_zip_code=52732 site_time_zone_utc_offset=-6 -County "IA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900470.epw site_zip_code=51442 site_time_zone_utc_offset=-6 -County "IA, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900490.epw site_zip_code=50263 site_time_zone_utc_offset=-6 -County "IA, Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900510.epw site_zip_code=52537 site_time_zone_utc_offset=-6 -County "IA, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900530.epw site_zip_code=50144 site_time_zone_utc_offset=-6 -County "IA, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900550.epw site_zip_code=52057 site_time_zone_utc_offset=-6 -County "IA, Des Moines County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900570.epw site_zip_code=52601 site_time_zone_utc_offset=-6 -County "IA, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900590.epw site_zip_code=51360 site_time_zone_utc_offset=-6 -County "IA, Dubuque County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900610.epw site_zip_code=52001 site_time_zone_utc_offset=-6 -County "IA, Emmet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900630.epw site_zip_code=51334 site_time_zone_utc_offset=-6 -County "IA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900650.epw site_zip_code=50662 site_time_zone_utc_offset=-6 -County "IA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900670.epw site_zip_code=50616 site_time_zone_utc_offset=-6 -County "IA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900690.epw site_zip_code=50441 site_time_zone_utc_offset=-6 -County "IA, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900710.epw site_zip_code=51652 site_time_zone_utc_offset=-6 -County "IA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900730.epw site_zip_code=50129 site_time_zone_utc_offset=-6 -County "IA, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900750.epw site_zip_code=50638 site_time_zone_utc_offset=-6 -County "IA, Guthrie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900770.epw site_zip_code=50216 site_time_zone_utc_offset=-6 -County "IA, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900790.epw site_zip_code=50595 site_time_zone_utc_offset=-6 -County "IA, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900810.epw site_zip_code=50438 site_time_zone_utc_offset=-6 -County "IA, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900830.epw site_zip_code=50126 site_time_zone_utc_offset=-6 -County "IA, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900850.epw site_zip_code=51555 site_time_zone_utc_offset=-6 -County "IA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900870.epw site_zip_code=52641 site_time_zone_utc_offset=-6 -County "IA, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900890.epw site_zip_code=52136 site_time_zone_utc_offset=-6 -County "IA, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900910.epw site_zip_code=50548 site_time_zone_utc_offset=-6 -County "IA, Ida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900930.epw site_zip_code=51445 site_time_zone_utc_offset=-6 -County "IA, Iowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900950.epw site_zip_code=52361 site_time_zone_utc_offset=-6 -County "IA, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900970.epw site_zip_code=52060 site_time_zone_utc_offset=-6 -County "IA, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900990.epw site_zip_code=50208 site_time_zone_utc_offset=-6 -County "IA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901010.epw site_zip_code=52556 site_time_zone_utc_offset=-6 -County "IA, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901030.epw site_zip_code=52240 site_time_zone_utc_offset=-6 -County "IA, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901050.epw site_zip_code=52205 site_time_zone_utc_offset=-6 -County "IA, Keokuk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901070.epw site_zip_code=52591 site_time_zone_utc_offset=-6 -County "IA, Kossuth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901090.epw site_zip_code=50511 site_time_zone_utc_offset=-6 -County "IA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901110.epw site_zip_code=52627 site_time_zone_utc_offset=-6 -County "IA, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901130.epw site_zip_code=52404 site_time_zone_utc_offset=-6 -County "IA, Louisa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901150.epw site_zip_code=52653 site_time_zone_utc_offset=-6 -County "IA, Lucas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901170.epw site_zip_code=50049 site_time_zone_utc_offset=-6 -County "IA, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901190.epw site_zip_code=51246 site_time_zone_utc_offset=-6 -County "IA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901210.epw site_zip_code=50273 site_time_zone_utc_offset=-6 -County "IA, Mahaska County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901230.epw site_zip_code=52577 site_time_zone_utc_offset=-6 -County "IA, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901250.epw site_zip_code=50219 site_time_zone_utc_offset=-6 -County "IA, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901270.epw site_zip_code=50158 site_time_zone_utc_offset=-6 -County "IA, Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901290.epw site_zip_code=51534 site_time_zone_utc_offset=-6 -County "IA, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901310.epw site_zip_code=50461 site_time_zone_utc_offset=-6 -County "IA, Monona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901330.epw site_zip_code=51040 site_time_zone_utc_offset=-6 -County "IA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901350.epw site_zip_code=52531 site_time_zone_utc_offset=-6 -County "IA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901370.epw site_zip_code=51566 site_time_zone_utc_offset=-6 -County "IA, Muscatine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901390.epw site_zip_code=52761 site_time_zone_utc_offset=-6 -County "IA, O'Brien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901410.epw site_zip_code=51201 site_time_zone_utc_offset=-6 -County "IA, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901430.epw site_zip_code=51249 site_time_zone_utc_offset=-6 -County "IA, Page County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901450.epw site_zip_code=51632 site_time_zone_utc_offset=-6 -County "IA, Palo Alto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901470.epw site_zip_code=50536 site_time_zone_utc_offset=-6 -County "IA, Plymouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901490.epw site_zip_code=51031 site_time_zone_utc_offset=-6 -County "IA, Pocahontas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901510.epw site_zip_code=50574 site_time_zone_utc_offset=-6 -County "IA, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901530.epw site_zip_code=50023 site_time_zone_utc_offset=-6 -County "IA, Pottawattamie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901550.epw site_zip_code=51503 site_time_zone_utc_offset=-6 -County "IA, Poweshiek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901570.epw site_zip_code=50112 site_time_zone_utc_offset=-6 -County "IA, Ringgold County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901590.epw site_zip_code=50854 site_time_zone_utc_offset=-6 -County "IA, Sac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901610.epw site_zip_code=50583 site_time_zone_utc_offset=-6 -County "IA, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901630.epw site_zip_code=52722 site_time_zone_utc_offset=-6 -County "IA, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901650.epw site_zip_code=51537 site_time_zone_utc_offset=-6 -County "IA, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901670.epw site_zip_code=51250 site_time_zone_utc_offset=-6 -County "IA, Story County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901690.epw site_zip_code=50010 site_time_zone_utc_offset=-6 -County "IA, Tama County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901710.epw site_zip_code=52339 site_time_zone_utc_offset=-6 -County "IA, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901730.epw site_zip_code=50833 site_time_zone_utc_offset=-6 -County "IA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901750.epw site_zip_code=50801 site_time_zone_utc_offset=-6 -County "IA, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901770.epw site_zip_code=52565 site_time_zone_utc_offset=-6 -County "IA, Wapello County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901790.epw site_zip_code=52501 site_time_zone_utc_offset=-6 -County "IA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901810.epw site_zip_code=50125 site_time_zone_utc_offset=-6 -County "IA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901830.epw site_zip_code=52353 site_time_zone_utc_offset=-6 -County "IA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901850.epw site_zip_code=50060 site_time_zone_utc_offset=-6 -County "IA, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901870.epw site_zip_code=50501 site_time_zone_utc_offset=-6 -County "IA, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901890.epw site_zip_code=50436 site_time_zone_utc_offset=-6 -County "IA, Winneshiek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901910.epw site_zip_code=52101 site_time_zone_utc_offset=-6 -County "IA, Woodbury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901930.epw site_zip_code=51106 site_time_zone_utc_offset=-6 -County "IA, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901950.epw site_zip_code=50459 site_time_zone_utc_offset=-6 -County "IA, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901970.epw site_zip_code=50533 site_time_zone_utc_offset=-6 -County "ID, Ada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600010.epw site_zip_code=83646 site_time_zone_utc_offset=-7 -County "ID, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600030.epw site_zip_code=83612 site_time_zone_utc_offset=-7 -County "ID, Bannock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600050.epw site_zip_code=83201 site_time_zone_utc_offset=-7 -County "ID, Bear Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600070.epw site_zip_code=83254 site_time_zone_utc_offset=-7 -County "ID, Benewah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600090.epw site_zip_code=83861 site_time_zone_utc_offset=-8 -County "ID, Bingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600110.epw site_zip_code=83221 site_time_zone_utc_offset=-7 -County "ID, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600130.epw site_zip_code=83333 site_time_zone_utc_offset=-7 -County "ID, Boise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600150.epw site_zip_code=83716 site_time_zone_utc_offset=-7 -County "ID, Bonner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600170.epw site_zip_code=83864 site_time_zone_utc_offset=-8 -County "ID, Bonneville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600190.epw site_zip_code=83401 site_time_zone_utc_offset=-7 -County "ID, Boundary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600210.epw site_zip_code=83805 site_time_zone_utc_offset=-8 -County "ID, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600230.epw site_zip_code=83213 site_time_zone_utc_offset=-7 -County "ID, Camas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600250.epw site_zip_code=83327 site_time_zone_utc_offset=-7 -County "ID, Canyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600270.epw site_zip_code=83686 site_time_zone_utc_offset=-7 -County "ID, Caribou County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600290.epw site_zip_code=83276 site_time_zone_utc_offset=-7 -County "ID, Cassia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600310.epw site_zip_code=83318 site_time_zone_utc_offset=-7 -County "ID, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600330.epw site_zip_code=83423 site_time_zone_utc_offset=-7 -County "ID, Clearwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600350.epw site_zip_code=83544 site_time_zone_utc_offset=-8 -County "ID, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600370.epw site_zip_code=83226 site_time_zone_utc_offset=-7 -County "ID, Elmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600390.epw site_zip_code=83647 site_time_zone_utc_offset=-7 -County "ID, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600410.epw site_zip_code=83263 site_time_zone_utc_offset=-7 -County "ID, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600430.epw site_zip_code=83445 site_time_zone_utc_offset=-7 -County "ID, Gem County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600450.epw site_zip_code=83617 site_time_zone_utc_offset=-7 -County "ID, Gooding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600470.epw site_zip_code=83330 site_time_zone_utc_offset=-7 -County "ID, Idaho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600490.epw site_zip_code=83530 site_time_zone_utc_offset=-8 -County "ID, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600510.epw site_zip_code=83442 site_time_zone_utc_offset=-7 -County "ID, Jerome County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600530.epw site_zip_code=83338 site_time_zone_utc_offset=-7 -County "ID, Kootenai County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600550.epw site_zip_code=83854 site_time_zone_utc_offset=-8 -County "ID, Latah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600570.epw site_zip_code=83843 site_time_zone_utc_offset=-8 -County "ID, Lemhi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600590.epw site_zip_code=83467 site_time_zone_utc_offset=-7 -County "ID, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600610.epw site_zip_code=83536 site_time_zone_utc_offset=-8 -County "ID, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600630.epw site_zip_code=83352 site_time_zone_utc_offset=-7 -County "ID, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600650.epw site_zip_code=83440 site_time_zone_utc_offset=-7 -County "ID, Minidoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600670.epw site_zip_code=83350 site_time_zone_utc_offset=-7 -County "ID, Nez Perce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600690.epw site_zip_code=83501 site_time_zone_utc_offset=-8 -County "ID, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600710.epw site_zip_code=83252 site_time_zone_utc_offset=-7 -County "ID, Owyhee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600730.epw site_zip_code=83628 site_time_zone_utc_offset=-7 -County "ID, Payette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600750.epw site_zip_code=83661 site_time_zone_utc_offset=-7 -County "ID, Power County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600770.epw site_zip_code=83211 site_time_zone_utc_offset=-7 -County "ID, Shoshone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600790.epw site_zip_code=83837 site_time_zone_utc_offset=-8 -County "ID, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600810.epw site_zip_code=83455 site_time_zone_utc_offset=-7 -County "ID, Twin Falls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600830.epw site_zip_code=83301 site_time_zone_utc_offset=-7 -County "ID, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600850.epw site_zip_code=83638 site_time_zone_utc_offset=-7 -County "ID, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600870.epw site_zip_code=83672 site_time_zone_utc_offset=-7 -County "IL, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700010.epw site_zip_code=62301 site_time_zone_utc_offset=-6 -County "IL, Alexander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700030.epw site_zip_code=62914 site_time_zone_utc_offset=-6 -County "IL, Bond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700050.epw site_zip_code=62246 site_time_zone_utc_offset=-6 -County "IL, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700070.epw site_zip_code=61008 site_time_zone_utc_offset=-6 -County "IL, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700090.epw site_zip_code=62353 site_time_zone_utc_offset=-6 -County "IL, Bureau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700110.epw site_zip_code=61356 site_time_zone_utc_offset=-6 -County "IL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700130.epw site_zip_code=62047 site_time_zone_utc_offset=-6 -County "IL, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700150.epw site_zip_code=61074 site_time_zone_utc_offset=-6 -County "IL, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700170.epw site_zip_code=62618 site_time_zone_utc_offset=-6 -County "IL, Champaign County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700190.epw site_zip_code=61820 site_time_zone_utc_offset=-6 -County "IL, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700210.epw site_zip_code=62568 site_time_zone_utc_offset=-6 -County "IL, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700230.epw site_zip_code=62441 site_time_zone_utc_offset=-6 -County "IL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700250.epw site_zip_code=62839 site_time_zone_utc_offset=-6 -County "IL, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700270.epw site_zip_code=62231 site_time_zone_utc_offset=-6 -County "IL, Coles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700290.epw site_zip_code=61938 site_time_zone_utc_offset=-6 -County "IL, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700310.epw site_zip_code=60657 site_time_zone_utc_offset=-6 -County "IL, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700330.epw site_zip_code=62454 site_time_zone_utc_offset=-6 -County "IL, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700350.epw site_zip_code=62428 site_time_zone_utc_offset=-6 -County "IL, De Witt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700390.epw site_zip_code=61727 site_time_zone_utc_offset=-6 -County "IL, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700370.epw site_zip_code=60115 site_time_zone_utc_offset=-6 -County "IL, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700410.epw site_zip_code=61953 site_time_zone_utc_offset=-6 -County "IL, DuPage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700430.epw site_zip_code=60148 site_time_zone_utc_offset=-6 -County "IL, Edgar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700450.epw site_zip_code=61944 site_time_zone_utc_offset=-6 -County "IL, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700470.epw site_zip_code=62806 site_time_zone_utc_offset=-6 -County "IL, Effingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700490.epw site_zip_code=62401 site_time_zone_utc_offset=-6 -County "IL, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700510.epw site_zip_code=62471 site_time_zone_utc_offset=-6 -County "IL, Ford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700530.epw site_zip_code=60957 site_time_zone_utc_offset=-6 -County "IL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700550.epw site_zip_code=62896 site_time_zone_utc_offset=-6 -County "IL, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700570.epw site_zip_code=61520 site_time_zone_utc_offset=-6 -County "IL, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700590.epw site_zip_code=62984 site_time_zone_utc_offset=-6 -County "IL, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700610.epw site_zip_code=62016 site_time_zone_utc_offset=-6 -County "IL, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700630.epw site_zip_code=60450 site_time_zone_utc_offset=-6 -County "IL, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700650.epw site_zip_code=62859 site_time_zone_utc_offset=-6 -County "IL, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700670.epw site_zip_code=62321 site_time_zone_utc_offset=-6 -County "IL, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700690.epw site_zip_code=62931 site_time_zone_utc_offset=-6 -County "IL, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700710.epw site_zip_code=61469 site_time_zone_utc_offset=-6 -County "IL, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700730.epw site_zip_code=61443 site_time_zone_utc_offset=-6 -County "IL, Iroquois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700750.epw site_zip_code=60970 site_time_zone_utc_offset=-6 -County "IL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700770.epw site_zip_code=62901 site_time_zone_utc_offset=-6 -County "IL, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700790.epw site_zip_code=62448 site_time_zone_utc_offset=-6 -County "IL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700810.epw site_zip_code=62864 site_time_zone_utc_offset=-6 -County "IL, Jersey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700830.epw site_zip_code=62052 site_time_zone_utc_offset=-6 -County "IL, Jo Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700850.epw site_zip_code=61036 site_time_zone_utc_offset=-6 -County "IL, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700870.epw site_zip_code=62995 site_time_zone_utc_offset=-6 -County "IL, Kane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700890.epw site_zip_code=60506 site_time_zone_utc_offset=-6 -County "IL, Kankakee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700910.epw site_zip_code=60901 site_time_zone_utc_offset=-6 -County "IL, Kendall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700930.epw site_zip_code=60543 site_time_zone_utc_offset=-6 -County "IL, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700950.epw site_zip_code=61401 site_time_zone_utc_offset=-6 -County "IL, LaSalle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700990.epw site_zip_code=61350 site_time_zone_utc_offset=-6 -County "IL, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700970.epw site_zip_code=60085 site_time_zone_utc_offset=-6 -County "IL, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701010.epw site_zip_code=62439 site_time_zone_utc_offset=-6 -County "IL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701030.epw site_zip_code=61021 site_time_zone_utc_offset=-6 -County "IL, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701050.epw site_zip_code=61764 site_time_zone_utc_offset=-6 -County "IL, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701070.epw site_zip_code=62656 site_time_zone_utc_offset=-6 -County "IL, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701150.epw site_zip_code=62521 site_time_zone_utc_offset=-6 -County "IL, Macoupin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701170.epw site_zip_code=62626 site_time_zone_utc_offset=-6 -County "IL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701190.epw site_zip_code=62040 site_time_zone_utc_offset=-6 -County "IL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701210.epw site_zip_code=62801 site_time_zone_utc_offset=-6 -County "IL, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701230.epw site_zip_code=61540 site_time_zone_utc_offset=-6 -County "IL, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701250.epw site_zip_code=62644 site_time_zone_utc_offset=-6 -County "IL, Massac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701270.epw site_zip_code=62960 site_time_zone_utc_offset=-6 -County "IL, McDonough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701090.epw site_zip_code=61455 site_time_zone_utc_offset=-6 -County "IL, McHenry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701110.epw site_zip_code=60014 site_time_zone_utc_offset=-6 -County "IL, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701130.epw site_zip_code=61761 site_time_zone_utc_offset=-6 -County "IL, Menard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701290.epw site_zip_code=62675 site_time_zone_utc_offset=-6 -County "IL, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701310.epw site_zip_code=61231 site_time_zone_utc_offset=-6 -County "IL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701330.epw site_zip_code=62298 site_time_zone_utc_offset=-6 -County "IL, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701350.epw site_zip_code=62056 site_time_zone_utc_offset=-6 -County "IL, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701370.epw site_zip_code=62650 site_time_zone_utc_offset=-6 -County "IL, Moultrie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701390.epw site_zip_code=61951 site_time_zone_utc_offset=-6 -County "IL, Ogle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701410.epw site_zip_code=61068 site_time_zone_utc_offset=-6 -County "IL, Peoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701430.epw site_zip_code=61604 site_time_zone_utc_offset=-6 -County "IL, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701450.epw site_zip_code=62832 site_time_zone_utc_offset=-6 -County "IL, Piatt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701470.epw site_zip_code=61856 site_time_zone_utc_offset=-6 -County "IL, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701490.epw site_zip_code=62363 site_time_zone_utc_offset=-6 -County "IL, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701510.epw site_zip_code=62938 site_time_zone_utc_offset=-6 -County "IL, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701530.epw site_zip_code=62964 site_time_zone_utc_offset=-6 -County "IL, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701550.epw site_zip_code=61326 site_time_zone_utc_offset=-6 -County "IL, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701570.epw site_zip_code=62286 site_time_zone_utc_offset=-6 -County "IL, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701590.epw site_zip_code=62450 site_time_zone_utc_offset=-6 -County "IL, Rock Island County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701610.epw site_zip_code=61265 site_time_zone_utc_offset=-6 -County "IL, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701650.epw site_zip_code=62946 site_time_zone_utc_offset=-6 -County "IL, Sangamon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701670.epw site_zip_code=62704 site_time_zone_utc_offset=-6 -County "IL, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701690.epw site_zip_code=62681 site_time_zone_utc_offset=-6 -County "IL, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701710.epw site_zip_code=62694 site_time_zone_utc_offset=-6 -County "IL, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701730.epw site_zip_code=62565 site_time_zone_utc_offset=-6 -County "IL, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701630.epw site_zip_code=62269 site_time_zone_utc_offset=-6 -County "IL, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701750.epw site_zip_code=61491 site_time_zone_utc_offset=-6 -County "IL, Stephenson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701770.epw site_zip_code=61032 site_time_zone_utc_offset=-6 -County "IL, Tazewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701790.epw site_zip_code=61554 site_time_zone_utc_offset=-6 -County "IL, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701810.epw site_zip_code=62906 site_time_zone_utc_offset=-6 -County "IL, Vermilion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701830.epw site_zip_code=61832 site_time_zone_utc_offset=-6 -County "IL, Wabash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701850.epw site_zip_code=62863 site_time_zone_utc_offset=-6 -County "IL, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701870.epw site_zip_code=61462 site_time_zone_utc_offset=-6 -County "IL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701890.epw site_zip_code=62263 site_time_zone_utc_offset=-6 -County "IL, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701910.epw site_zip_code=62837 site_time_zone_utc_offset=-6 -County "IL, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701930.epw site_zip_code=62821 site_time_zone_utc_offset=-6 -County "IL, Whiteside County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701950.epw site_zip_code=61081 site_time_zone_utc_offset=-6 -County "IL, Will County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701970.epw site_zip_code=60435 site_time_zone_utc_offset=-6 -County "IL, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701990.epw site_zip_code=62959 site_time_zone_utc_offset=-6 -County "IL, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1702010.epw site_zip_code=61107 site_time_zone_utc_offset=-6 -County "IL, Woodford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1702030.epw site_zip_code=61548 site_time_zone_utc_offset=-6 -County "IN, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800010.epw site_zip_code=46733 site_time_zone_utc_offset=-5 -County "IN, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800030.epw site_zip_code=46835 site_time_zone_utc_offset=-5 -County "IN, Bartholomew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800050.epw site_zip_code=47201 site_time_zone_utc_offset=-5 -County "IN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800070.epw site_zip_code=47944 site_time_zone_utc_offset=-5 -County "IN, Blackford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800090.epw site_zip_code=47348 site_time_zone_utc_offset=-5 -County "IN, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800110.epw site_zip_code=46077 site_time_zone_utc_offset=-5 -County "IN, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800130.epw site_zip_code=47448 site_time_zone_utc_offset=-5 -County "IN, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800150.epw site_zip_code=46923 site_time_zone_utc_offset=-5 -County "IN, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800170.epw site_zip_code=46947 site_time_zone_utc_offset=-5 -County "IN, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800190.epw site_zip_code=47130 site_time_zone_utc_offset=-5 -County "IN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800210.epw site_zip_code=47834 site_time_zone_utc_offset=-5 -County "IN, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800230.epw site_zip_code=46041 site_time_zone_utc_offset=-5 -County "IN, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800250.epw site_zip_code=47118 site_time_zone_utc_offset=-5 -County "IN, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800270.epw site_zip_code=47501 site_time_zone_utc_offset=-5 -County "IN, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800330.epw site_zip_code=46706 site_time_zone_utc_offset=-5 -County "IN, Dearborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800290.epw site_zip_code=47025 site_time_zone_utc_offset=-5 -County "IN, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800310.epw site_zip_code=47240 site_time_zone_utc_offset=-5 -County "IN, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800350.epw site_zip_code=47304 site_time_zone_utc_offset=-5 -County "IN, Dubois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800370.epw site_zip_code=47546 site_time_zone_utc_offset=-5 -County "IN, Elkhart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800390.epw site_zip_code=46514 site_time_zone_utc_offset=-5 -County "IN, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800410.epw site_zip_code=47331 site_time_zone_utc_offset=-5 -County "IN, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800430.epw site_zip_code=47150 site_time_zone_utc_offset=-5 -County "IN, Fountain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800450.epw site_zip_code=47918 site_time_zone_utc_offset=-5 -County "IN, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800470.epw site_zip_code=47012 site_time_zone_utc_offset=-5 -County "IN, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800490.epw site_zip_code=46975 site_time_zone_utc_offset=-5 -County "IN, Gibson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800510.epw site_zip_code=47670 site_time_zone_utc_offset=-6 -County "IN, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800530.epw site_zip_code=46953 site_time_zone_utc_offset=-5 -County "IN, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800550.epw site_zip_code=47441 site_time_zone_utc_offset=-5 -County "IN, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800570.epw site_zip_code=46032 site_time_zone_utc_offset=-5 -County "IN, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800590.epw site_zip_code=46140 site_time_zone_utc_offset=-5 -County "IN, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800610.epw site_zip_code=47112 site_time_zone_utc_offset=-5 -County "IN, Hendricks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800630.epw site_zip_code=46112 site_time_zone_utc_offset=-5 -County "IN, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800650.epw site_zip_code=47362 site_time_zone_utc_offset=-5 -County "IN, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800670.epw site_zip_code=46901 site_time_zone_utc_offset=-5 -County "IN, Huntington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800690.epw site_zip_code=46750 site_time_zone_utc_offset=-5 -County "IN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800710.epw site_zip_code=47274 site_time_zone_utc_offset=-5 -County "IN, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800730.epw site_zip_code=47978 site_time_zone_utc_offset=-6 -County "IN, Jay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800750.epw site_zip_code=47371 site_time_zone_utc_offset=-5 -County "IN, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800770.epw site_zip_code=47250 site_time_zone_utc_offset=-5 -County "IN, Jennings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800790.epw site_zip_code=47265 site_time_zone_utc_offset=-5 -County "IN, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800810.epw site_zip_code=46143 site_time_zone_utc_offset=-5 -County "IN, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800830.epw site_zip_code=47591 site_time_zone_utc_offset=-5 -County "IN, Kosciusko County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800850.epw site_zip_code=46580 site_time_zone_utc_offset=-5 -County "IN, LaGrange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800870.epw site_zip_code=46761 site_time_zone_utc_offset=-5 -County "IN, LaPorte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800910.epw site_zip_code=46360 site_time_zone_utc_offset=-6 -County "IN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800890.epw site_zip_code=46307 site_time_zone_utc_offset=-6 -County "IN, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800930.epw site_zip_code=47421 site_time_zone_utc_offset=-5 -County "IN, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800950.epw site_zip_code=46016 site_time_zone_utc_offset=-5 -County "IN, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800970.epw site_zip_code=46227 site_time_zone_utc_offset=-5 -County "IN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800990.epw site_zip_code=46563 site_time_zone_utc_offset=-5 -County "IN, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801010.epw site_zip_code=47581 site_time_zone_utc_offset=-5 -County "IN, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801030.epw site_zip_code=46970 site_time_zone_utc_offset=-5 -County "IN, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801050.epw site_zip_code=47401 site_time_zone_utc_offset=-5 -County "IN, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801070.epw site_zip_code=47933 site_time_zone_utc_offset=-5 -County "IN, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801090.epw site_zip_code=46151 site_time_zone_utc_offset=-5 -County "IN, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801110.epw site_zip_code=46349 site_time_zone_utc_offset=-6 -County "IN, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801130.epw site_zip_code=46755 site_time_zone_utc_offset=-5 -County "IN, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801150.epw site_zip_code=47040 site_time_zone_utc_offset=-5 -County "IN, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801170.epw site_zip_code=47454 site_time_zone_utc_offset=-5 -County "IN, Owen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801190.epw site_zip_code=47460 site_time_zone_utc_offset=-5 -County "IN, Parke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801210.epw site_zip_code=47872 site_time_zone_utc_offset=-5 -County "IN, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801230.epw site_zip_code=47586 site_time_zone_utc_offset=-6 -County "IN, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801250.epw site_zip_code=47567 site_time_zone_utc_offset=-5 -County "IN, Porter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801270.epw site_zip_code=46383 site_time_zone_utc_offset=-6 -County "IN, Posey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801290.epw site_zip_code=47620 site_time_zone_utc_offset=-6 -County "IN, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801310.epw site_zip_code=46996 site_time_zone_utc_offset=-5 -County "IN, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801330.epw site_zip_code=46135 site_time_zone_utc_offset=-5 -County "IN, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801350.epw site_zip_code=47394 site_time_zone_utc_offset=-5 -County "IN, Ripley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801370.epw site_zip_code=47006 site_time_zone_utc_offset=-5 -County "IN, Rush County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801390.epw site_zip_code=46173 site_time_zone_utc_offset=-5 -County "IN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801430.epw site_zip_code=47170 site_time_zone_utc_offset=-5 -County "IN, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801450.epw site_zip_code=46176 site_time_zone_utc_offset=-5 -County "IN, Spencer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801470.epw site_zip_code=47635 site_time_zone_utc_offset=-6 -County "IN, St. Joseph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801410.epw site_zip_code=46544 site_time_zone_utc_offset=-5 -County "IN, Starke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801490.epw site_zip_code=46534 site_time_zone_utc_offset=-6 -County "IN, Steuben County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801510.epw site_zip_code=46703 site_time_zone_utc_offset=-5 -County "IN, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801530.epw site_zip_code=47882 site_time_zone_utc_offset=-5 -County "IN, Switzerland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801550.epw site_zip_code=47043 site_time_zone_utc_offset=-5 -County "IN, Tippecanoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801570.epw site_zip_code=47906 site_time_zone_utc_offset=-5 -County "IN, Tipton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801590.epw site_zip_code=46072 site_time_zone_utc_offset=-5 -County "IN, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801610.epw site_zip_code=47353 site_time_zone_utc_offset=-5 -County "IN, Vanderburgh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801630.epw site_zip_code=47714 site_time_zone_utc_offset=-6 -County "IN, Vermillion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801650.epw site_zip_code=47842 site_time_zone_utc_offset=-5 -County "IN, Vigo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801670.epw site_zip_code=47802 site_time_zone_utc_offset=-5 -County "IN, Wabash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801690.epw site_zip_code=46992 site_time_zone_utc_offset=-5 -County "IN, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801710.epw site_zip_code=47993 site_time_zone_utc_offset=-5 -County "IN, Warrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801730.epw site_zip_code=47630 site_time_zone_utc_offset=-6 -County "IN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801750.epw site_zip_code=47167 site_time_zone_utc_offset=-5 -County "IN, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801770.epw site_zip_code=47374 site_time_zone_utc_offset=-5 -County "IN, Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801790.epw site_zip_code=46714 site_time_zone_utc_offset=-5 -County "IN, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801810.epw site_zip_code=47960 site_time_zone_utc_offset=-5 -County "IN, Whitley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801830.epw site_zip_code=46725 site_time_zone_utc_offset=-5 -County "KS, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000010.epw site_zip_code=66749 site_time_zone_utc_offset=-6 -County "KS, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000030.epw site_zip_code=66032 site_time_zone_utc_offset=-6 -County "KS, Atchison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000050.epw site_zip_code=66002 site_time_zone_utc_offset=-6 -County "KS, Barber County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000070.epw site_zip_code=67104 site_time_zone_utc_offset=-6 -County "KS, Barton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000090.epw site_zip_code=67530 site_time_zone_utc_offset=-6 -County "KS, Bourbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000110.epw site_zip_code=66701 site_time_zone_utc_offset=-6 -County "KS, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000130.epw site_zip_code=66434 site_time_zone_utc_offset=-6 -County "KS, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000150.epw site_zip_code=67042 site_time_zone_utc_offset=-6 -County "KS, Chase County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000170.epw site_zip_code=66845 site_time_zone_utc_offset=-6 -County "KS, Chautauqua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000190.epw site_zip_code=67361 site_time_zone_utc_offset=-6 -County "KS, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000210.epw site_zip_code=66713 site_time_zone_utc_offset=-6 -County "KS, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000230.epw site_zip_code=67756 site_time_zone_utc_offset=-6 -County "KS, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000250.epw site_zip_code=67865 site_time_zone_utc_offset=-6 -County "KS, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000270.epw site_zip_code=67432 site_time_zone_utc_offset=-6 -County "KS, Cloud County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000290.epw site_zip_code=66901 site_time_zone_utc_offset=-6 -County "KS, Coffey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000310.epw site_zip_code=66839 site_time_zone_utc_offset=-6 -County "KS, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000330.epw site_zip_code=67029 site_time_zone_utc_offset=-6 -County "KS, Cowley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000350.epw site_zip_code=67005 site_time_zone_utc_offset=-6 -County "KS, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000370.epw site_zip_code=66762 site_time_zone_utc_offset=-6 -County "KS, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000390.epw site_zip_code=67749 site_time_zone_utc_offset=-6 -County "KS, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000410.epw site_zip_code=67410 site_time_zone_utc_offset=-6 -County "KS, Doniphan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000430.epw site_zip_code=66090 site_time_zone_utc_offset=-6 -County "KS, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000450.epw site_zip_code=66049 site_time_zone_utc_offset=-6 -County "KS, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000470.epw site_zip_code=67547 site_time_zone_utc_offset=-6 -County "KS, Elk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000490.epw site_zip_code=67349 site_time_zone_utc_offset=-6 -County "KS, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000510.epw site_zip_code=67601 site_time_zone_utc_offset=-6 -County "KS, Ellsworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000530.epw site_zip_code=67439 site_time_zone_utc_offset=-6 -County "KS, Finney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000550.epw site_zip_code=67846 site_time_zone_utc_offset=-6 -County "KS, Ford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000570.epw site_zip_code=67801 site_time_zone_utc_offset=-6 -County "KS, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000590.epw site_zip_code=66067 site_time_zone_utc_offset=-6 -County "KS, Geary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000610.epw site_zip_code=66441 site_time_zone_utc_offset=-6 -County "KS, Gove County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000630.epw site_zip_code=67752 site_time_zone_utc_offset=-6 -County "KS, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000650.epw site_zip_code=67642 site_time_zone_utc_offset=-6 -County "KS, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000670.epw site_zip_code=67880 site_time_zone_utc_offset=-6 -County "KS, Gray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000690.epw site_zip_code=67867 site_time_zone_utc_offset=-6 -County "KS, Greeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000710.epw site_zip_code=67879 site_time_zone_utc_offset=-7 -County "KS, Greenwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000730.epw site_zip_code=67045 site_time_zone_utc_offset=-6 -County "KS, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000750.epw site_zip_code=67878 site_time_zone_utc_offset=-7 -County "KS, Harper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000770.epw site_zip_code=67003 site_time_zone_utc_offset=-6 -County "KS, Harvey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000790.epw site_zip_code=67114 site_time_zone_utc_offset=-6 -County "KS, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000810.epw site_zip_code=67877 site_time_zone_utc_offset=-6 -County "KS, Hodgeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000830.epw site_zip_code=67854 site_time_zone_utc_offset=-6 -County "KS, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000850.epw site_zip_code=66436 site_time_zone_utc_offset=-6 -County "KS, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000870.epw site_zip_code=66512 site_time_zone_utc_offset=-6 -County "KS, Jewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000890.epw site_zip_code=66956 site_time_zone_utc_offset=-6 -County "KS, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000910.epw site_zip_code=66062 site_time_zone_utc_offset=-6 -County "KS, Kearny County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000930.epw site_zip_code=67860 site_time_zone_utc_offset=-6 -County "KS, Kingman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000950.epw site_zip_code=67068 site_time_zone_utc_offset=-6 -County "KS, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000970.epw site_zip_code=67054 site_time_zone_utc_offset=-6 -County "KS, Labette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000990.epw site_zip_code=67357 site_time_zone_utc_offset=-6 -County "KS, Lane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001010.epw site_zip_code=67839 site_time_zone_utc_offset=-6 -County "KS, Leavenworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001030.epw site_zip_code=66048 site_time_zone_utc_offset=-6 -County "KS, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001050.epw site_zip_code=67455 site_time_zone_utc_offset=-6 -County "KS, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001070.epw site_zip_code=66040 site_time_zone_utc_offset=-6 -County "KS, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001090.epw site_zip_code=67748 site_time_zone_utc_offset=-6 -County "KS, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001110.epw site_zip_code=66801 site_time_zone_utc_offset=-6 -County "KS, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001150.epw site_zip_code=67063 site_time_zone_utc_offset=-6 -County "KS, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001170.epw site_zip_code=66508 site_time_zone_utc_offset=-6 -County "KS, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001130.epw site_zip_code=67460 site_time_zone_utc_offset=-6 -County "KS, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001190.epw site_zip_code=67864 site_time_zone_utc_offset=-6 -County "KS, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001210.epw site_zip_code=66071 site_time_zone_utc_offset=-6 -County "KS, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001230.epw site_zip_code=67420 site_time_zone_utc_offset=-6 -County "KS, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001250.epw site_zip_code=67301 site_time_zone_utc_offset=-6 -County "KS, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001270.epw site_zip_code=66846 site_time_zone_utc_offset=-6 -County "KS, Morton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001290.epw site_zip_code=67950 site_time_zone_utc_offset=-6 -County "KS, Nemaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001310.epw site_zip_code=66538 site_time_zone_utc_offset=-6 -County "KS, Neosho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001330.epw site_zip_code=66720 site_time_zone_utc_offset=-6 -County "KS, Ness County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001350.epw site_zip_code=67560 site_time_zone_utc_offset=-6 -County "KS, Norton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001370.epw site_zip_code=67654 site_time_zone_utc_offset=-6 -County "KS, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001390.epw site_zip_code=66523 site_time_zone_utc_offset=-6 -County "KS, Osborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001410.epw site_zip_code=67473 site_time_zone_utc_offset=-6 -County "KS, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001430.epw site_zip_code=67467 site_time_zone_utc_offset=-6 -County "KS, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001450.epw site_zip_code=67550 site_time_zone_utc_offset=-6 -County "KS, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001470.epw site_zip_code=67661 site_time_zone_utc_offset=-6 -County "KS, Pottawatomie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001490.epw site_zip_code=66547 site_time_zone_utc_offset=-6 -County "KS, Pratt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001510.epw site_zip_code=67124 site_time_zone_utc_offset=-6 -County "KS, Rawlins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001530.epw site_zip_code=67730 site_time_zone_utc_offset=-6 -County "KS, Reno County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001550.epw site_zip_code=67501 site_time_zone_utc_offset=-6 -County "KS, Republic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001570.epw site_zip_code=66935 site_time_zone_utc_offset=-6 -County "KS, Rice County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001590.epw site_zip_code=67554 site_time_zone_utc_offset=-6 -County "KS, Riley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001610.epw site_zip_code=66502 site_time_zone_utc_offset=-6 -County "KS, Rooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001630.epw site_zip_code=67663 site_time_zone_utc_offset=-6 -County "KS, Rush County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001650.epw site_zip_code=67548 site_time_zone_utc_offset=-6 -County "KS, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001670.epw site_zip_code=67665 site_time_zone_utc_offset=-6 -County "KS, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001690.epw site_zip_code=67401 site_time_zone_utc_offset=-6 -County "KS, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001710.epw site_zip_code=67871 site_time_zone_utc_offset=-6 -County "KS, Sedgwick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001730.epw site_zip_code=67212 site_time_zone_utc_offset=-6 -County "KS, Seward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001750.epw site_zip_code=67901 site_time_zone_utc_offset=-6 -County "KS, Shawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001770.epw site_zip_code=66614 site_time_zone_utc_offset=-6 -County "KS, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001790.epw site_zip_code=67740 site_time_zone_utc_offset=-6 -County "KS, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001810.epw site_zip_code=67735 site_time_zone_utc_offset=-7 -County "KS, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001830.epw site_zip_code=66967 site_time_zone_utc_offset=-6 -County "KS, Stafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001850.epw site_zip_code=67576 site_time_zone_utc_offset=-6 -County "KS, Stanton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001870.epw site_zip_code=67855 site_time_zone_utc_offset=-6 -County "KS, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001890.epw site_zip_code=67951 site_time_zone_utc_offset=-6 -County "KS, Sumner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001910.epw site_zip_code=67152 site_time_zone_utc_offset=-6 -County "KS, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001930.epw site_zip_code=67701 site_time_zone_utc_offset=-6 -County "KS, Trego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001950.epw site_zip_code=67672 site_time_zone_utc_offset=-6 -County "KS, Wabaunsee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001970.epw site_zip_code=66401 site_time_zone_utc_offset=-6 -County "KS, Wallace County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001990.epw site_zip_code=67758 site_time_zone_utc_offset=-7 -County "KS, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002010.epw site_zip_code=66968 site_time_zone_utc_offset=-6 -County "KS, Wichita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002030.epw site_zip_code=67861 site_time_zone_utc_offset=-6 -County "KS, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002050.epw site_zip_code=66736 site_time_zone_utc_offset=-6 -County "KS, Woodson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002070.epw site_zip_code=66783 site_time_zone_utc_offset=-6 -County "KS, Wyandotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002090.epw site_zip_code=66102 site_time_zone_utc_offset=-6 -County "KY, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100010.epw site_zip_code=42728 site_time_zone_utc_offset=-6 -County "KY, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100030.epw site_zip_code=42164 site_time_zone_utc_offset=-6 -County "KY, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100050.epw site_zip_code=40342 site_time_zone_utc_offset=-5 -County "KY, Ballard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100070.epw site_zip_code=42053 site_time_zone_utc_offset=-6 -County "KY, Barren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100090.epw site_zip_code=42141 site_time_zone_utc_offset=-6 -County "KY, Bath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100110.epw site_zip_code=40360 site_time_zone_utc_offset=-5 -County "KY, Bell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100130.epw site_zip_code=40965 site_time_zone_utc_offset=-5 -County "KY, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100150.epw site_zip_code=41042 site_time_zone_utc_offset=-5 -County "KY, Bourbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100170.epw site_zip_code=40361 site_time_zone_utc_offset=-5 -County "KY, Boyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100190.epw site_zip_code=41102 site_time_zone_utc_offset=-5 -County "KY, Boyle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100210.epw site_zip_code=40422 site_time_zone_utc_offset=-5 -County "KY, Bracken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100230.epw site_zip_code=41004 site_time_zone_utc_offset=-5 -County "KY, Breathitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100250.epw site_zip_code=41339 site_time_zone_utc_offset=-5 -County "KY, Breckinridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100270.epw site_zip_code=40143 site_time_zone_utc_offset=-6 -County "KY, Bullitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100290.epw site_zip_code=40165 site_time_zone_utc_offset=-5 -County "KY, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100310.epw site_zip_code=42261 site_time_zone_utc_offset=-6 -County "KY, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100330.epw site_zip_code=42445 site_time_zone_utc_offset=-6 -County "KY, Calloway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100350.epw site_zip_code=42071 site_time_zone_utc_offset=-6 -County "KY, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100370.epw site_zip_code=41071 site_time_zone_utc_offset=-5 -County "KY, Carlisle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100390.epw site_zip_code=42023 site_time_zone_utc_offset=-6 -County "KY, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100410.epw site_zip_code=41008 site_time_zone_utc_offset=-5 -County "KY, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100430.epw site_zip_code=41143 site_time_zone_utc_offset=-5 -County "KY, Casey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100450.epw site_zip_code=42539 site_time_zone_utc_offset=-5 -County "KY, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100470.epw site_zip_code=42240 site_time_zone_utc_offset=-6 -County "KY, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100490.epw site_zip_code=40391 site_time_zone_utc_offset=-5 -County "KY, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100510.epw site_zip_code=40962 site_time_zone_utc_offset=-5 -County "KY, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100530.epw site_zip_code=42602 site_time_zone_utc_offset=-6 -County "KY, Crittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100550.epw site_zip_code=42064 site_time_zone_utc_offset=-6 -County "KY, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100570.epw site_zip_code=42717 site_time_zone_utc_offset=-6 -County "KY, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100590.epw site_zip_code=42301 site_time_zone_utc_offset=-6 -County "KY, Edmonson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100610.epw site_zip_code=42210 site_time_zone_utc_offset=-6 -County "KY, Elliott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100630.epw site_zip_code=41171 site_time_zone_utc_offset=-5 -County "KY, Estill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100650.epw site_zip_code=40336 site_time_zone_utc_offset=-5 -County "KY, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100670.epw site_zip_code=40509 site_time_zone_utc_offset=-5 -County "KY, Fleming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100690.epw site_zip_code=41041 site_time_zone_utc_offset=-5 -County "KY, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100710.epw site_zip_code=41653 site_time_zone_utc_offset=-5 -County "KY, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100730.epw site_zip_code=40601 site_time_zone_utc_offset=-5 -County "KY, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100750.epw site_zip_code=42041 site_time_zone_utc_offset=-6 -County "KY, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100770.epw site_zip_code=41095 site_time_zone_utc_offset=-5 -County "KY, Garrard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100790.epw site_zip_code=40444 site_time_zone_utc_offset=-5 -County "KY, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100810.epw site_zip_code=41035 site_time_zone_utc_offset=-5 -County "KY, Graves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100830.epw site_zip_code=42066 site_time_zone_utc_offset=-6 -County "KY, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100850.epw site_zip_code=42754 site_time_zone_utc_offset=-6 -County "KY, Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100870.epw site_zip_code=42743 site_time_zone_utc_offset=-6 -County "KY, Greenup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100890.epw site_zip_code=41144 site_time_zone_utc_offset=-5 -County "KY, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100910.epw site_zip_code=42348 site_time_zone_utc_offset=-6 -County "KY, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100930.epw site_zip_code=42701 site_time_zone_utc_offset=-5 -County "KY, Harlan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100950.epw site_zip_code=40831 site_time_zone_utc_offset=-5 -County "KY, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100970.epw site_zip_code=41031 site_time_zone_utc_offset=-5 -County "KY, Hart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100990.epw site_zip_code=42765 site_time_zone_utc_offset=-6 -County "KY, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101010.epw site_zip_code=42420 site_time_zone_utc_offset=-6 -County "KY, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101030.epw site_zip_code=40019 site_time_zone_utc_offset=-5 -County "KY, Hickman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101050.epw site_zip_code=42031 site_time_zone_utc_offset=-6 -County "KY, Hopkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101070.epw site_zip_code=42431 site_time_zone_utc_offset=-6 -County "KY, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101090.epw site_zip_code=40447 site_time_zone_utc_offset=-5 -County "KY, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101110.epw site_zip_code=40214 site_time_zone_utc_offset=-5 -County "KY, Jessamine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101130.epw site_zip_code=40356 site_time_zone_utc_offset=-5 -County "KY, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101150.epw site_zip_code=41240 site_time_zone_utc_offset=-5 -County "KY, Kenton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101170.epw site_zip_code=41017 site_time_zone_utc_offset=-5 -County "KY, Knott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101190.epw site_zip_code=41822 site_time_zone_utc_offset=-5 -County "KY, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101210.epw site_zip_code=40906 site_time_zone_utc_offset=-5 -County "KY, Larue County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101230.epw site_zip_code=42748 site_time_zone_utc_offset=-5 -County "KY, Laurel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101250.epw site_zip_code=40741 site_time_zone_utc_offset=-5 -County "KY, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101270.epw site_zip_code=41230 site_time_zone_utc_offset=-5 -County "KY, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101290.epw site_zip_code=41311 site_time_zone_utc_offset=-5 -County "KY, Leslie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101310.epw site_zip_code=41749 site_time_zone_utc_offset=-5 -County "KY, Letcher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101330.epw site_zip_code=41858 site_time_zone_utc_offset=-5 -County "KY, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101350.epw site_zip_code=41179 site_time_zone_utc_offset=-5 -County "KY, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101370.epw site_zip_code=40484 site_time_zone_utc_offset=-5 -County "KY, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101390.epw site_zip_code=42045 site_time_zone_utc_offset=-6 -County "KY, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101410.epw site_zip_code=42276 site_time_zone_utc_offset=-6 -County "KY, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101430.epw site_zip_code=42038 site_time_zone_utc_offset=-6 -County "KY, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101510.epw site_zip_code=40475 site_time_zone_utc_offset=-5 -County "KY, Magoffin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101530.epw site_zip_code=41465 site_time_zone_utc_offset=-5 -County "KY, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101550.epw site_zip_code=40033 site_time_zone_utc_offset=-5 -County "KY, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101570.epw site_zip_code=42025 site_time_zone_utc_offset=-6 -County "KY, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101590.epw site_zip_code=41224 site_time_zone_utc_offset=-5 -County "KY, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101610.epw site_zip_code=41056 site_time_zone_utc_offset=-5 -County "KY, McCracken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101450.epw site_zip_code=42001 site_time_zone_utc_offset=-6 -County "KY, McCreary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101470.epw site_zip_code=42653 site_time_zone_utc_offset=-5 -County "KY, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101490.epw site_zip_code=42327 site_time_zone_utc_offset=-6 -County "KY, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101630.epw site_zip_code=40108 site_time_zone_utc_offset=-5 -County "KY, Menifee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101650.epw site_zip_code=40322 site_time_zone_utc_offset=-5 -County "KY, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101670.epw site_zip_code=40330 site_time_zone_utc_offset=-5 -County "KY, Metcalfe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101690.epw site_zip_code=42129 site_time_zone_utc_offset=-6 -County "KY, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101710.epw site_zip_code=42167 site_time_zone_utc_offset=-6 -County "KY, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101730.epw site_zip_code=40353 site_time_zone_utc_offset=-5 -County "KY, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101750.epw site_zip_code=41472 site_time_zone_utc_offset=-5 -County "KY, Muhlenberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101770.epw site_zip_code=42345 site_time_zone_utc_offset=-6 -County "KY, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101790.epw site_zip_code=40004 site_time_zone_utc_offset=-5 -County "KY, Nicholas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101810.epw site_zip_code=40311 site_time_zone_utc_offset=-5 -County "KY, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101830.epw site_zip_code=42320 site_time_zone_utc_offset=-6 -County "KY, Oldham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101850.epw site_zip_code=40014 site_time_zone_utc_offset=-5 -County "KY, Owen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101870.epw site_zip_code=40359 site_time_zone_utc_offset=-5 -County "KY, Owsley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101890.epw site_zip_code=41314 site_time_zone_utc_offset=-5 -County "KY, Pendleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101910.epw site_zip_code=41040 site_time_zone_utc_offset=-5 -County "KY, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101930.epw site_zip_code=41701 site_time_zone_utc_offset=-5 -County "KY, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101950.epw site_zip_code=41501 site_time_zone_utc_offset=-5 -County "KY, Powell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101970.epw site_zip_code=40380 site_time_zone_utc_offset=-5 -County "KY, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101990.epw site_zip_code=42503 site_time_zone_utc_offset=-5 -County "KY, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102010.epw site_zip_code=41064 site_time_zone_utc_offset=-5 -County "KY, Rockcastle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102030.epw site_zip_code=40456 site_time_zone_utc_offset=-5 -County "KY, Rowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102050.epw site_zip_code=40351 site_time_zone_utc_offset=-5 -County "KY, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102070.epw site_zip_code=42642 site_time_zone_utc_offset=-6 -County "KY, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102090.epw site_zip_code=40324 site_time_zone_utc_offset=-5 -County "KY, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102110.epw site_zip_code=40065 site_time_zone_utc_offset=-5 -County "KY, Simpson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102130.epw site_zip_code=42134 site_time_zone_utc_offset=-6 -County "KY, Spencer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102150.epw site_zip_code=40071 site_time_zone_utc_offset=-5 -County "KY, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102170.epw site_zip_code=42718 site_time_zone_utc_offset=-5 -County "KY, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102190.epw site_zip_code=42220 site_time_zone_utc_offset=-6 -County "KY, Trigg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102210.epw site_zip_code=42211 site_time_zone_utc_offset=-6 -County "KY, Trimble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102230.epw site_zip_code=40006 site_time_zone_utc_offset=-5 -County "KY, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102250.epw site_zip_code=42437 site_time_zone_utc_offset=-6 -County "KY, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102270.epw site_zip_code=42101 site_time_zone_utc_offset=-6 -County "KY, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102290.epw site_zip_code=40069 site_time_zone_utc_offset=-5 -County "KY, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102310.epw site_zip_code=42633 site_time_zone_utc_offset=-5 -County "KY, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102330.epw site_zip_code=42450 site_time_zone_utc_offset=-6 -County "KY, Whitley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102350.epw site_zip_code=40769 site_time_zone_utc_offset=-5 -County "KY, Wolfe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102370.epw site_zip_code=41301 site_time_zone_utc_offset=-5 -County "KY, Woodford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102390.epw site_zip_code=40383 site_time_zone_utc_offset=-5 -County "LA, Acadia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200010.epw site_zip_code=70526 site_time_zone_utc_offset=-6 -County "LA, Allen Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200030.epw site_zip_code=71463 site_time_zone_utc_offset=-6 -County "LA, Ascension Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200050.epw site_zip_code=70737 site_time_zone_utc_offset=-6 -County "LA, Assumption Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200070.epw site_zip_code=70339 site_time_zone_utc_offset=-6 -County "LA, Avoyelles Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200090.epw site_zip_code=71351 site_time_zone_utc_offset=-6 -County "LA, Beauregard Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200110.epw site_zip_code=70634 site_time_zone_utc_offset=-6 -County "LA, Bienville Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200130.epw site_zip_code=71001 site_time_zone_utc_offset=-6 -County "LA, Bossier Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200150.epw site_zip_code=71111 site_time_zone_utc_offset=-6 -County "LA, Caddo Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200170.epw site_zip_code=71106 site_time_zone_utc_offset=-6 -County "LA, Calcasieu Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200190.epw site_zip_code=70605 site_time_zone_utc_offset=-6 -County "LA, Caldwell Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200210.epw site_zip_code=71418 site_time_zone_utc_offset=-6 -County "LA, Cameron Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200230.epw site_zip_code=70607 site_time_zone_utc_offset=-6 -County "LA, Catahoula Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200250.epw site_zip_code=71343 site_time_zone_utc_offset=-6 -County "LA, Claiborne Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200270.epw site_zip_code=71040 site_time_zone_utc_offset=-6 -County "LA, Concordia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200290.epw site_zip_code=71334 site_time_zone_utc_offset=-6 -County "LA, De Soto Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200310.epw site_zip_code=71052 site_time_zone_utc_offset=-6 -County "LA, East Baton Rouge Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200330.epw site_zip_code=70816 site_time_zone_utc_offset=-6 -County "LA, East Carroll Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200350.epw site_zip_code=71254 site_time_zone_utc_offset=-6 -County "LA, East Feliciana Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200370.epw site_zip_code=70722 site_time_zone_utc_offset=-6 -County "LA, Evangeline Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200390.epw site_zip_code=70586 site_time_zone_utc_offset=-6 -County "LA, Franklin Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200410.epw site_zip_code=71295 site_time_zone_utc_offset=-6 -County "LA, Grant Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200430.epw site_zip_code=71467 site_time_zone_utc_offset=-6 -County "LA, Iberia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200450.epw site_zip_code=70560 site_time_zone_utc_offset=-6 -County "LA, Iberville Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200470.epw site_zip_code=70764 site_time_zone_utc_offset=-6 -County "LA, Jackson Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200490.epw site_zip_code=71251 site_time_zone_utc_offset=-6 -County "LA, Jefferson Davis Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200530.epw site_zip_code=70546 site_time_zone_utc_offset=-6 -County "LA, Jefferson Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200510.epw site_zip_code=70072 site_time_zone_utc_offset=-6 -County "LA, La Salle Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200590.epw site_zip_code=71342 site_time_zone_utc_offset=-6 -County "LA, Lafayette Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200550.epw site_zip_code=70506 site_time_zone_utc_offset=-6 -County "LA, Lafourche Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200570.epw site_zip_code=70301 site_time_zone_utc_offset=-6 -County "LA, Lincoln Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200610.epw site_zip_code=71270 site_time_zone_utc_offset=-6 -County "LA, Livingston Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200630.epw site_zip_code=70726 site_time_zone_utc_offset=-6 -County "LA, Madison Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200650.epw site_zip_code=71282 site_time_zone_utc_offset=-6 -County "LA, Morehouse Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200670.epw site_zip_code=71220 site_time_zone_utc_offset=-6 -County "LA, Natchitoches Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200690.epw site_zip_code=71457 site_time_zone_utc_offset=-6 -County "LA, Orleans Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200710.epw site_zip_code=70119 site_time_zone_utc_offset=-6 -County "LA, Ouachita Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200730.epw site_zip_code=71203 site_time_zone_utc_offset=-6 -County "LA, Plaquemines Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200750.epw site_zip_code=70037 site_time_zone_utc_offset=-6 -County "LA, Pointe Coupee Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200770.epw site_zip_code=70760 site_time_zone_utc_offset=-6 -County "LA, Rapides Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200790.epw site_zip_code=71360 site_time_zone_utc_offset=-6 -County "LA, Red River Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200810.epw site_zip_code=71019 site_time_zone_utc_offset=-6 -County "LA, Richland Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200830.epw site_zip_code=71269 site_time_zone_utc_offset=-6 -County "LA, Sabine Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200850.epw site_zip_code=71449 site_time_zone_utc_offset=-6 -County "LA, St. Bernard Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200870.epw site_zip_code=70043 site_time_zone_utc_offset=-6 -County "LA, St. Charles Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200890.epw site_zip_code=70070 site_time_zone_utc_offset=-6 -County "LA, St. Helena Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200910.epw site_zip_code=70441 site_time_zone_utc_offset=-6 -County "LA, St. James Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200930.epw site_zip_code=70090 site_time_zone_utc_offset=-6 -County "LA, St. John the Baptist Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200950.epw site_zip_code=70068 site_time_zone_utc_offset=-6 -County "LA, St. Landry Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200970.epw site_zip_code=70570 site_time_zone_utc_offset=-6 -County "LA, St. Martin Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200990.epw site_zip_code=70517 site_time_zone_utc_offset=-6 -County "LA, St. Mary Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201010.epw site_zip_code=70380 site_time_zone_utc_offset=-6 -County "LA, St. Tammany Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201030.epw site_zip_code=70433 site_time_zone_utc_offset=-6 -County "LA, Tangipahoa Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201050.epw site_zip_code=70454 site_time_zone_utc_offset=-6 -County "LA, Tensas Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201070.epw site_zip_code=71366 site_time_zone_utc_offset=-6 -County "LA, Terrebonne Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201090.epw site_zip_code=70360 site_time_zone_utc_offset=-6 -County "LA, Union Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201110.epw site_zip_code=71241 site_time_zone_utc_offset=-6 -County "LA, Vermilion Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201130.epw site_zip_code=70510 site_time_zone_utc_offset=-6 -County "LA, Vernon Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201150.epw site_zip_code=71446 site_time_zone_utc_offset=-6 -County "LA, Washington Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201170.epw site_zip_code=70427 site_time_zone_utc_offset=-6 -County "LA, Webster Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201190.epw site_zip_code=71055 site_time_zone_utc_offset=-6 -County "LA, West Baton Rouge Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201210.epw site_zip_code=70767 site_time_zone_utc_offset=-6 -County "LA, West Carroll Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201230.epw site_zip_code=71263 site_time_zone_utc_offset=-6 -County "LA, West Feliciana Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201250.epw site_zip_code=70775 site_time_zone_utc_offset=-6 -County "LA, Winn Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201270.epw site_zip_code=71483 site_time_zone_utc_offset=-6 -County "MA, Barnstable County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500010.epw site_zip_code=02536 site_time_zone_utc_offset=-5 -County "MA, Berkshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500030.epw site_zip_code=01201 site_time_zone_utc_offset=-5 -County "MA, Bristol County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500050.epw site_zip_code=02780 site_time_zone_utc_offset=-5 -County "MA, Dukes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500070.epw site_zip_code=02568 site_time_zone_utc_offset=-5 -County "MA, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500090.epw site_zip_code=01960 site_time_zone_utc_offset=-5 -County "MA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500110.epw site_zip_code=01301 site_time_zone_utc_offset=-5 -County "MA, Hampden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500130.epw site_zip_code=01085 site_time_zone_utc_offset=-5 -County "MA, Hampshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500150.epw site_zip_code=01002 site_time_zone_utc_offset=-5 -County "MA, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500170.epw site_zip_code=02148 site_time_zone_utc_offset=-5 -County "MA, Nantucket County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500190.epw site_zip_code=02554 site_time_zone_utc_offset=-5 -County "MA, Norfolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500210.epw site_zip_code=02169 site_time_zone_utc_offset=-5 -County "MA, Plymouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500230.epw site_zip_code=02360 site_time_zone_utc_offset=-5 -County "MA, Suffolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500250.epw site_zip_code=02151 site_time_zone_utc_offset=-5 -County "MA, Worcester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500270.epw site_zip_code=01453 site_time_zone_utc_offset=-5 -County "MD, Allegany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400010.epw site_zip_code=21502 site_time_zone_utc_offset=-5 -County "MD, Anne Arundel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400030.epw site_zip_code=21122 site_time_zone_utc_offset=-5 -County "MD, Baltimore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400050.epw site_zip_code=21117 site_time_zone_utc_offset=-5 -County "MD, Baltimore city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2405100.epw site_zip_code=21215 site_time_zone_utc_offset=-5 -County "MD, Calvert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400090.epw site_zip_code=20657 site_time_zone_utc_offset=-5 -County "MD, Caroline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400110.epw site_zip_code=21629 site_time_zone_utc_offset=-5 -County "MD, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400130.epw site_zip_code=21157 site_time_zone_utc_offset=-5 -County "MD, Cecil County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400150.epw site_zip_code=21921 site_time_zone_utc_offset=-5 -County "MD, Charles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400170.epw site_zip_code=20603 site_time_zone_utc_offset=-5 -County "MD, Dorchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400190.epw site_zip_code=21613 site_time_zone_utc_offset=-5 -County "MD, Frederick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400210.epw site_zip_code=21702 site_time_zone_utc_offset=-5 -County "MD, Garrett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400230.epw site_zip_code=21550 site_time_zone_utc_offset=-5 -County "MD, Harford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400250.epw site_zip_code=21014 site_time_zone_utc_offset=-5 -County "MD, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400270.epw site_zip_code=21044 site_time_zone_utc_offset=-5 -County "MD, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400290.epw site_zip_code=21620 site_time_zone_utc_offset=-5 -County "MD, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400310.epw site_zip_code=20906 site_time_zone_utc_offset=-5 -County "MD, Prince George's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400330.epw site_zip_code=20774 site_time_zone_utc_offset=-5 -County "MD, Queen Anne's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400350.epw site_zip_code=21666 site_time_zone_utc_offset=-5 -County "MD, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400390.epw site_zip_code=21853 site_time_zone_utc_offset=-5 -County "MD, St. Mary's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400370.epw site_zip_code=20653 site_time_zone_utc_offset=-5 -County "MD, Talbot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400410.epw site_zip_code=21601 site_time_zone_utc_offset=-5 -County "MD, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400430.epw site_zip_code=21740 site_time_zone_utc_offset=-5 -County "MD, Wicomico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400450.epw site_zip_code=21804 site_time_zone_utc_offset=-5 -County "MD, Worcester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400470.epw site_zip_code=21842 site_time_zone_utc_offset=-5 -County "ME, Androscoggin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300010.epw site_zip_code=04240 site_time_zone_utc_offset=-5 -County "ME, Aroostook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300030.epw site_zip_code=04769 site_time_zone_utc_offset=-5 -County "ME, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300050.epw site_zip_code=04103 site_time_zone_utc_offset=-5 -County "ME, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300070.epw site_zip_code=04938 site_time_zone_utc_offset=-5 -County "ME, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300090.epw site_zip_code=04605 site_time_zone_utc_offset=-5 -County "ME, Kennebec County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300110.epw site_zip_code=04901 site_time_zone_utc_offset=-5 -County "ME, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300130.epw site_zip_code=04841 site_time_zone_utc_offset=-5 -County "ME, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300150.epw site_zip_code=04572 site_time_zone_utc_offset=-5 -County "ME, Oxford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300170.epw site_zip_code=04276 site_time_zone_utc_offset=-5 -County "ME, Penobscot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300190.epw site_zip_code=04401 site_time_zone_utc_offset=-5 -County "ME, Piscataquis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300210.epw site_zip_code=04426 site_time_zone_utc_offset=-5 -County "ME, Sagadahoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300230.epw site_zip_code=04530 site_time_zone_utc_offset=-5 -County "ME, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300250.epw site_zip_code=04976 site_time_zone_utc_offset=-5 -County "ME, Waldo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300270.epw site_zip_code=04915 site_time_zone_utc_offset=-5 -County "ME, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300290.epw site_zip_code=04654 site_time_zone_utc_offset=-5 -County "ME, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300310.epw site_zip_code=04005 site_time_zone_utc_offset=-5 -County "MI, Alcona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600010.epw site_zip_code=48740 site_time_zone_utc_offset=-5 -County "MI, Alger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600030.epw site_zip_code=49862 site_time_zone_utc_offset=-5 -County "MI, Allegan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600050.epw site_zip_code=49010 site_time_zone_utc_offset=-5 -County "MI, Alpena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600070.epw site_zip_code=49707 site_time_zone_utc_offset=-5 -County "MI, Antrim County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600090.epw site_zip_code=49615 site_time_zone_utc_offset=-5 -County "MI, Arenac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600110.epw site_zip_code=48658 site_time_zone_utc_offset=-5 -County "MI, Baraga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600130.epw site_zip_code=49946 site_time_zone_utc_offset=-5 -County "MI, Barry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600150.epw site_zip_code=49058 site_time_zone_utc_offset=-5 -County "MI, Bay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600170.epw site_zip_code=48706 site_time_zone_utc_offset=-5 -County "MI, Benzie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600190.epw site_zip_code=49635 site_time_zone_utc_offset=-5 -County "MI, Berrien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600210.epw site_zip_code=49022 site_time_zone_utc_offset=-5 -County "MI, Branch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600230.epw site_zip_code=49036 site_time_zone_utc_offset=-5 -County "MI, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600250.epw site_zip_code=49015 site_time_zone_utc_offset=-5 -County "MI, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600270.epw site_zip_code=49047 site_time_zone_utc_offset=-5 -County "MI, Charlevoix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600290.epw site_zip_code=49720 site_time_zone_utc_offset=-5 -County "MI, Cheboygan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600310.epw site_zip_code=49721 site_time_zone_utc_offset=-5 -County "MI, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600330.epw site_zip_code=49783 site_time_zone_utc_offset=-5 -County "MI, Clare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600350.epw site_zip_code=48625 site_time_zone_utc_offset=-5 -County "MI, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600370.epw site_zip_code=48820 site_time_zone_utc_offset=-5 -County "MI, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600390.epw site_zip_code=49738 site_time_zone_utc_offset=-5 -County "MI, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600410.epw site_zip_code=49829 site_time_zone_utc_offset=-5 -County "MI, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600430.epw site_zip_code=49801 site_time_zone_utc_offset=-6 -County "MI, Eaton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600450.epw site_zip_code=48917 site_time_zone_utc_offset=-5 -County "MI, Emmet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600470.epw site_zip_code=49770 site_time_zone_utc_offset=-5 -County "MI, Genesee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600490.epw site_zip_code=48439 site_time_zone_utc_offset=-5 -County "MI, Gladwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600510.epw site_zip_code=48624 site_time_zone_utc_offset=-5 -County "MI, Gogebic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600530.epw site_zip_code=49938 site_time_zone_utc_offset=-6 -County "MI, Grand Traverse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600550.epw site_zip_code=49686 site_time_zone_utc_offset=-5 -County "MI, Gratiot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600570.epw site_zip_code=48801 site_time_zone_utc_offset=-5 -County "MI, Hillsdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600590.epw site_zip_code=49242 site_time_zone_utc_offset=-5 -County "MI, Houghton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600610.epw site_zip_code=49931 site_time_zone_utc_offset=-5 -County "MI, Huron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600630.epw site_zip_code=48413 site_time_zone_utc_offset=-5 -County "MI, Ingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600650.epw site_zip_code=48823 site_time_zone_utc_offset=-5 -County "MI, Ionia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600670.epw site_zip_code=48846 site_time_zone_utc_offset=-5 -County "MI, Iosco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600690.epw site_zip_code=48750 site_time_zone_utc_offset=-5 -County "MI, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600710.epw site_zip_code=49935 site_time_zone_utc_offset=-6 -County "MI, Isabella County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600730.epw site_zip_code=48858 site_time_zone_utc_offset=-5 -County "MI, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600750.epw site_zip_code=49201 site_time_zone_utc_offset=-5 -County "MI, Kalamazoo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600770.epw site_zip_code=49009 site_time_zone_utc_offset=-5 -County "MI, Kalkaska County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600790.epw site_zip_code=49646 site_time_zone_utc_offset=-5 -County "MI, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600810.epw site_zip_code=49503 site_time_zone_utc_offset=-5 -County "MI, Keweenaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600830.epw site_zip_code=49950 site_time_zone_utc_offset=-5 -County "MI, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600850.epw site_zip_code=49304 site_time_zone_utc_offset=-5 -County "MI, Lapeer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600870.epw site_zip_code=48446 site_time_zone_utc_offset=-5 -County "MI, Leelanau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600890.epw site_zip_code=49684 site_time_zone_utc_offset=-5 -County "MI, Lenawee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600910.epw site_zip_code=49221 site_time_zone_utc_offset=-5 -County "MI, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600930.epw site_zip_code=48843 site_time_zone_utc_offset=-5 -County "MI, Luce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600950.epw site_zip_code=49868 site_time_zone_utc_offset=-5 -County "MI, Mackinac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600970.epw site_zip_code=49781 site_time_zone_utc_offset=-5 -County "MI, Macomb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600990.epw site_zip_code=48038 site_time_zone_utc_offset=-5 -County "MI, Manistee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601010.epw site_zip_code=49660 site_time_zone_utc_offset=-5 -County "MI, Marquette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601030.epw site_zip_code=49855 site_time_zone_utc_offset=-5 -County "MI, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601050.epw site_zip_code=49431 site_time_zone_utc_offset=-5 -County "MI, Mecosta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601070.epw site_zip_code=49307 site_time_zone_utc_offset=-5 -County "MI, Menominee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601090.epw site_zip_code=49858 site_time_zone_utc_offset=-6 -County "MI, Midland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601110.epw site_zip_code=48642 site_time_zone_utc_offset=-5 -County "MI, Missaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601130.epw site_zip_code=49651 site_time_zone_utc_offset=-5 -County "MI, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601150.epw site_zip_code=48162 site_time_zone_utc_offset=-5 -County "MI, Montcalm County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601170.epw site_zip_code=48838 site_time_zone_utc_offset=-5 -County "MI, Montmorency County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601190.epw site_zip_code=49709 site_time_zone_utc_offset=-5 -County "MI, Muskegon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601210.epw site_zip_code=49442 site_time_zone_utc_offset=-5 -County "MI, Newaygo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601230.epw site_zip_code=49337 site_time_zone_utc_offset=-5 -County "MI, Oakland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601250.epw site_zip_code=48307 site_time_zone_utc_offset=-5 -County "MI, Oceana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601270.epw site_zip_code=49420 site_time_zone_utc_offset=-5 -County "MI, Ogemaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601290.epw site_zip_code=48661 site_time_zone_utc_offset=-5 -County "MI, Ontonagon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601310.epw site_zip_code=49953 site_time_zone_utc_offset=-5 -County "MI, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601330.epw site_zip_code=49631 site_time_zone_utc_offset=-5 -County "MI, Oscoda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601350.epw site_zip_code=48647 site_time_zone_utc_offset=-5 -County "MI, Otsego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601370.epw site_zip_code=49735 site_time_zone_utc_offset=-5 -County "MI, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601390.epw site_zip_code=49424 site_time_zone_utc_offset=-5 -County "MI, Presque Isle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601410.epw site_zip_code=49779 site_time_zone_utc_offset=-5 -County "MI, Roscommon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601430.epw site_zip_code=48629 site_time_zone_utc_offset=-5 -County "MI, Saginaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601450.epw site_zip_code=48601 site_time_zone_utc_offset=-5 -County "MI, Sanilac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601510.epw site_zip_code=48450 site_time_zone_utc_offset=-5 -County "MI, Schoolcraft County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601530.epw site_zip_code=49854 site_time_zone_utc_offset=-5 -County "MI, Shiawassee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601550.epw site_zip_code=48867 site_time_zone_utc_offset=-5 -County "MI, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601470.epw site_zip_code=48060 site_time_zone_utc_offset=-5 -County "MI, St. Joseph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601490.epw site_zip_code=49091 site_time_zone_utc_offset=-5 -County "MI, Tuscola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601570.epw site_zip_code=48723 site_time_zone_utc_offset=-5 -County "MI, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601590.epw site_zip_code=49090 site_time_zone_utc_offset=-5 -County "MI, Washtenaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601610.epw site_zip_code=48197 site_time_zone_utc_offset=-5 -County "MI, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601630.epw site_zip_code=48180 site_time_zone_utc_offset=-5 -County "MI, Wexford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601650.epw site_zip_code=49601 site_time_zone_utc_offset=-5 -County "MN, Aitkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700010.epw site_zip_code=56431 site_time_zone_utc_offset=-6 -County "MN, Anoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700030.epw site_zip_code=55303 site_time_zone_utc_offset=-6 -County "MN, Becker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700050.epw site_zip_code=56501 site_time_zone_utc_offset=-6 -County "MN, Beltrami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700070.epw site_zip_code=56601 site_time_zone_utc_offset=-6 -County "MN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700090.epw site_zip_code=56379 site_time_zone_utc_offset=-6 -County "MN, Big Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700110.epw site_zip_code=56278 site_time_zone_utc_offset=-6 -County "MN, Blue Earth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700130.epw site_zip_code=56001 site_time_zone_utc_offset=-6 -County "MN, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700150.epw site_zip_code=56073 site_time_zone_utc_offset=-6 -County "MN, Carlton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700170.epw site_zip_code=55720 site_time_zone_utc_offset=-6 -County "MN, Carver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700190.epw site_zip_code=55318 site_time_zone_utc_offset=-6 -County "MN, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700210.epw site_zip_code=56474 site_time_zone_utc_offset=-6 -County "MN, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700230.epw site_zip_code=56265 site_time_zone_utc_offset=-6 -County "MN, Chisago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700250.epw site_zip_code=55056 site_time_zone_utc_offset=-6 -County "MN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700270.epw site_zip_code=56560 site_time_zone_utc_offset=-6 -County "MN, Clearwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700290.epw site_zip_code=56621 site_time_zone_utc_offset=-6 -County "MN, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700310.epw site_zip_code=55604 site_time_zone_utc_offset=-6 -County "MN, Cottonwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700330.epw site_zip_code=56101 site_time_zone_utc_offset=-6 -County "MN, Crow Wing County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700350.epw site_zip_code=56401 site_time_zone_utc_offset=-6 -County "MN, Dakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700370.epw site_zip_code=55124 site_time_zone_utc_offset=-6 -County "MN, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700390.epw site_zip_code=55944 site_time_zone_utc_offset=-6 -County "MN, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700410.epw site_zip_code=56308 site_time_zone_utc_offset=-6 -County "MN, Faribault County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700430.epw site_zip_code=56013 site_time_zone_utc_offset=-6 -County "MN, Fillmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700450.epw site_zip_code=55975 site_time_zone_utc_offset=-6 -County "MN, Freeborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700470.epw site_zip_code=56007 site_time_zone_utc_offset=-6 -County "MN, Goodhue County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700490.epw site_zip_code=55066 site_time_zone_utc_offset=-6 -County "MN, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700510.epw site_zip_code=56531 site_time_zone_utc_offset=-6 -County "MN, Hennepin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700530.epw site_zip_code=55408 site_time_zone_utc_offset=-6 -County "MN, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700550.epw site_zip_code=55947 site_time_zone_utc_offset=-6 -County "MN, Hubbard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700570.epw site_zip_code=56470 site_time_zone_utc_offset=-6 -County "MN, Isanti County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700590.epw site_zip_code=55008 site_time_zone_utc_offset=-6 -County "MN, Itasca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700610.epw site_zip_code=55744 site_time_zone_utc_offset=-6 -County "MN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700630.epw site_zip_code=56143 site_time_zone_utc_offset=-6 -County "MN, Kanabec County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700650.epw site_zip_code=55051 site_time_zone_utc_offset=-6 -County "MN, Kandiyohi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700670.epw site_zip_code=56201 site_time_zone_utc_offset=-6 -County "MN, Kittson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700690.epw site_zip_code=56728 site_time_zone_utc_offset=-6 -County "MN, Koochiching County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700710.epw site_zip_code=56649 site_time_zone_utc_offset=-6 -County "MN, Lac qui Parle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700730.epw site_zip_code=56256 site_time_zone_utc_offset=-6 -County "MN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700750.epw site_zip_code=55616 site_time_zone_utc_offset=-6 -County "MN, Lake of the Woods County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700770.epw site_zip_code=56623 site_time_zone_utc_offset=-6 -County "MN, Le Sueur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700790.epw site_zip_code=56058 site_time_zone_utc_offset=-6 -County "MN, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700810.epw site_zip_code=56178 site_time_zone_utc_offset=-6 -County "MN, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700830.epw site_zip_code=56258 site_time_zone_utc_offset=-6 -County "MN, Mahnomen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700870.epw site_zip_code=56557 site_time_zone_utc_offset=-6 -County "MN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700890.epw site_zip_code=56762 site_time_zone_utc_offset=-6 -County "MN, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700910.epw site_zip_code=56031 site_time_zone_utc_offset=-6 -County "MN, McLeod County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700850.epw site_zip_code=55350 site_time_zone_utc_offset=-6 -County "MN, Meeker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700930.epw site_zip_code=55355 site_time_zone_utc_offset=-6 -County "MN, Mille Lacs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700950.epw site_zip_code=56353 site_time_zone_utc_offset=-6 -County "MN, Morrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700970.epw site_zip_code=56345 site_time_zone_utc_offset=-6 -County "MN, Mower County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700990.epw site_zip_code=55912 site_time_zone_utc_offset=-6 -County "MN, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701010.epw site_zip_code=56172 site_time_zone_utc_offset=-6 -County "MN, Nicollet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701030.epw site_zip_code=56003 site_time_zone_utc_offset=-6 -County "MN, Nobles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701050.epw site_zip_code=56187 site_time_zone_utc_offset=-6 -County "MN, Norman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701070.epw site_zip_code=56510 site_time_zone_utc_offset=-6 -County "MN, Olmsted County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701090.epw site_zip_code=55901 site_time_zone_utc_offset=-6 -County "MN, Otter Tail County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701110.epw site_zip_code=56537 site_time_zone_utc_offset=-6 -County "MN, Pennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701130.epw site_zip_code=56701 site_time_zone_utc_offset=-6 -County "MN, Pine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701150.epw site_zip_code=55063 site_time_zone_utc_offset=-6 -County "MN, Pipestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701170.epw site_zip_code=56164 site_time_zone_utc_offset=-6 -County "MN, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701190.epw site_zip_code=56721 site_time_zone_utc_offset=-6 -County "MN, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701210.epw site_zip_code=56334 site_time_zone_utc_offset=-6 -County "MN, Ramsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701230.epw site_zip_code=55106 site_time_zone_utc_offset=-6 -County "MN, Red Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701250.epw site_zip_code=56750 site_time_zone_utc_offset=-6 -County "MN, Redwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701270.epw site_zip_code=56283 site_time_zone_utc_offset=-6 -County "MN, Renville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701290.epw site_zip_code=56277 site_time_zone_utc_offset=-6 -County "MN, Rice County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701310.epw site_zip_code=55021 site_time_zone_utc_offset=-6 -County "MN, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701330.epw site_zip_code=56156 site_time_zone_utc_offset=-6 -County "MN, Roseau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701350.epw site_zip_code=56751 site_time_zone_utc_offset=-6 -County "MN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701390.epw site_zip_code=55379 site_time_zone_utc_offset=-6 -County "MN, Sherburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701410.epw site_zip_code=55330 site_time_zone_utc_offset=-6 -County "MN, Sibley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701430.epw site_zip_code=55334 site_time_zone_utc_offset=-6 -County "MN, St. Louis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701370.epw site_zip_code=55811 site_time_zone_utc_offset=-6 -County "MN, Stearns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701450.epw site_zip_code=56301 site_time_zone_utc_offset=-6 -County "MN, Steele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701470.epw site_zip_code=55060 site_time_zone_utc_offset=-6 -County "MN, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701490.epw site_zip_code=56267 site_time_zone_utc_offset=-6 -County "MN, Swift County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701510.epw site_zip_code=56215 site_time_zone_utc_offset=-6 -County "MN, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701530.epw site_zip_code=56347 site_time_zone_utc_offset=-6 -County "MN, Traverse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701550.epw site_zip_code=56296 site_time_zone_utc_offset=-6 -County "MN, Wabasha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701570.epw site_zip_code=55041 site_time_zone_utc_offset=-6 -County "MN, Wadena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701590.epw site_zip_code=56482 site_time_zone_utc_offset=-6 -County "MN, Waseca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701610.epw site_zip_code=56093 site_time_zone_utc_offset=-6 -County "MN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701630.epw site_zip_code=55125 site_time_zone_utc_offset=-6 -County "MN, Watonwan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701650.epw site_zip_code=56081 site_time_zone_utc_offset=-6 -County "MN, Wilkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701670.epw site_zip_code=56520 site_time_zone_utc_offset=-6 -County "MN, Winona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701690.epw site_zip_code=55987 site_time_zone_utc_offset=-6 -County "MN, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701710.epw site_zip_code=55313 site_time_zone_utc_offset=-6 -County "MN, Yellow Medicine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701730.epw site_zip_code=56220 site_time_zone_utc_offset=-6 -County "MO, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900010.epw site_zip_code=63501 site_time_zone_utc_offset=-6 -County "MO, Andrew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900030.epw site_zip_code=64485 site_time_zone_utc_offset=-6 -County "MO, Atchison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900050.epw site_zip_code=64491 site_time_zone_utc_offset=-6 -County "MO, Audrain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900070.epw site_zip_code=65265 site_time_zone_utc_offset=-6 -County "MO, Barry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900090.epw site_zip_code=65625 site_time_zone_utc_offset=-6 -County "MO, Barton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900110.epw site_zip_code=64759 site_time_zone_utc_offset=-6 -County "MO, Bates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900130.epw site_zip_code=64730 site_time_zone_utc_offset=-6 -County "MO, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900150.epw site_zip_code=65355 site_time_zone_utc_offset=-6 -County "MO, Bollinger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900170.epw site_zip_code=63764 site_time_zone_utc_offset=-6 -County "MO, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900190.epw site_zip_code=65203 site_time_zone_utc_offset=-6 -County "MO, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900210.epw site_zip_code=64506 site_time_zone_utc_offset=-6 -County "MO, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900230.epw site_zip_code=63901 site_time_zone_utc_offset=-6 -County "MO, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900250.epw site_zip_code=64644 site_time_zone_utc_offset=-6 -County "MO, Callaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900270.epw site_zip_code=65251 site_time_zone_utc_offset=-6 -County "MO, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900290.epw site_zip_code=65020 site_time_zone_utc_offset=-6 -County "MO, Cape Girardeau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900310.epw site_zip_code=63701 site_time_zone_utc_offset=-6 -County "MO, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900330.epw site_zip_code=64633 site_time_zone_utc_offset=-6 -County "MO, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900350.epw site_zip_code=63965 site_time_zone_utc_offset=-6 -County "MO, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900370.epw site_zip_code=64012 site_time_zone_utc_offset=-6 -County "MO, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900390.epw site_zip_code=64744 site_time_zone_utc_offset=-6 -County "MO, Chariton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900410.epw site_zip_code=65281 site_time_zone_utc_offset=-6 -County "MO, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900430.epw site_zip_code=65714 site_time_zone_utc_offset=-6 -County "MO, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900450.epw site_zip_code=63445 site_time_zone_utc_offset=-6 -County "MO, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900470.epw site_zip_code=64118 site_time_zone_utc_offset=-6 -County "MO, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900490.epw site_zip_code=64429 site_time_zone_utc_offset=-6 -County "MO, Cole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900510.epw site_zip_code=65109 site_time_zone_utc_offset=-6 -County "MO, Cooper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900530.epw site_zip_code=65233 site_time_zone_utc_offset=-6 -County "MO, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900550.epw site_zip_code=65453 site_time_zone_utc_offset=-6 -County "MO, Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900570.epw site_zip_code=65661 site_time_zone_utc_offset=-6 -County "MO, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900590.epw site_zip_code=65622 site_time_zone_utc_offset=-6 -County "MO, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900610.epw site_zip_code=64640 site_time_zone_utc_offset=-6 -County "MO, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900630.epw site_zip_code=64429 site_time_zone_utc_offset=-6 -County "MO, Dent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900650.epw site_zip_code=65560 site_time_zone_utc_offset=-6 -County "MO, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900670.epw site_zip_code=65608 site_time_zone_utc_offset=-6 -County "MO, Dunklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900690.epw site_zip_code=63857 site_time_zone_utc_offset=-6 -County "MO, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900710.epw site_zip_code=63090 site_time_zone_utc_offset=-6 -County "MO, Gasconade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900730.epw site_zip_code=65066 site_time_zone_utc_offset=-6 -County "MO, Gentry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900750.epw site_zip_code=64402 site_time_zone_utc_offset=-6 -County "MO, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900770.epw site_zip_code=65807 site_time_zone_utc_offset=-6 -County "MO, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900790.epw site_zip_code=64683 site_time_zone_utc_offset=-6 -County "MO, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900810.epw site_zip_code=64424 site_time_zone_utc_offset=-6 -County "MO, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900830.epw site_zip_code=64735 site_time_zone_utc_offset=-6 -County "MO, Hickory County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900850.epw site_zip_code=65779 site_time_zone_utc_offset=-6 -County "MO, Holt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900870.epw site_zip_code=64470 site_time_zone_utc_offset=-6 -County "MO, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900890.epw site_zip_code=65248 site_time_zone_utc_offset=-6 -County "MO, Howell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900910.epw site_zip_code=65775 site_time_zone_utc_offset=-6 -County "MO, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900930.epw site_zip_code=63650 site_time_zone_utc_offset=-6 -County "MO, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900950.epw site_zip_code=64055 site_time_zone_utc_offset=-6 -County "MO, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900970.epw site_zip_code=64801 site_time_zone_utc_offset=-6 -County "MO, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900990.epw site_zip_code=63010 site_time_zone_utc_offset=-6 -County "MO, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901010.epw site_zip_code=64093 site_time_zone_utc_offset=-6 -County "MO, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901030.epw site_zip_code=63537 site_time_zone_utc_offset=-6 -County "MO, Laclede County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901050.epw site_zip_code=65536 site_time_zone_utc_offset=-6 -County "MO, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901070.epw site_zip_code=64076 site_time_zone_utc_offset=-6 -County "MO, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901090.epw site_zip_code=65605 site_time_zone_utc_offset=-6 -County "MO, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901110.epw site_zip_code=63435 site_time_zone_utc_offset=-6 -County "MO, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901130.epw site_zip_code=63379 site_time_zone_utc_offset=-6 -County "MO, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901150.epw site_zip_code=64628 site_time_zone_utc_offset=-6 -County "MO, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901170.epw site_zip_code=64601 site_time_zone_utc_offset=-6 -County "MO, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901210.epw site_zip_code=63552 site_time_zone_utc_offset=-6 -County "MO, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901230.epw site_zip_code=63645 site_time_zone_utc_offset=-6 -County "MO, Maries County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901250.epw site_zip_code=65582 site_time_zone_utc_offset=-6 -County "MO, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901270.epw site_zip_code=63401 site_time_zone_utc_offset=-6 -County "MO, McDonald County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901190.epw site_zip_code=64831 site_time_zone_utc_offset=-6 -County "MO, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901290.epw site_zip_code=64673 site_time_zone_utc_offset=-6 -County "MO, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901310.epw site_zip_code=65026 site_time_zone_utc_offset=-6 -County "MO, Mississippi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901330.epw site_zip_code=63845 site_time_zone_utc_offset=-6 -County "MO, Moniteau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901350.epw site_zip_code=65018 site_time_zone_utc_offset=-6 -County "MO, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901370.epw site_zip_code=65275 site_time_zone_utc_offset=-6 -County "MO, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901390.epw site_zip_code=63361 site_time_zone_utc_offset=-6 -County "MO, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901410.epw site_zip_code=65037 site_time_zone_utc_offset=-6 -County "MO, New Madrid County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901430.epw site_zip_code=63873 site_time_zone_utc_offset=-6 -County "MO, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901450.epw site_zip_code=64850 site_time_zone_utc_offset=-6 -County "MO, Nodaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901470.epw site_zip_code=64468 site_time_zone_utc_offset=-6 -County "MO, Oregon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901490.epw site_zip_code=65606 site_time_zone_utc_offset=-6 -County "MO, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901510.epw site_zip_code=65051 site_time_zone_utc_offset=-6 -County "MO, Ozark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901530.epw site_zip_code=65655 site_time_zone_utc_offset=-6 -County "MO, Pemiscot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901550.epw site_zip_code=63830 site_time_zone_utc_offset=-6 -County "MO, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901570.epw site_zip_code=63775 site_time_zone_utc_offset=-6 -County "MO, Pettis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901590.epw site_zip_code=65301 site_time_zone_utc_offset=-6 -County "MO, Phelps County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901610.epw site_zip_code=65401 site_time_zone_utc_offset=-6 -County "MO, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901630.epw site_zip_code=63334 site_time_zone_utc_offset=-6 -County "MO, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901650.epw site_zip_code=64151 site_time_zone_utc_offset=-6 -County "MO, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901670.epw site_zip_code=65613 site_time_zone_utc_offset=-6 -County "MO, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901690.epw site_zip_code=65473 site_time_zone_utc_offset=-6 -County "MO, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901710.epw site_zip_code=63565 site_time_zone_utc_offset=-6 -County "MO, Ralls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901730.epw site_zip_code=63459 site_time_zone_utc_offset=-6 -County "MO, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901750.epw site_zip_code=65270 site_time_zone_utc_offset=-6 -County "MO, Ray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901770.epw site_zip_code=64085 site_time_zone_utc_offset=-6 -County "MO, Reynolds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901790.epw site_zip_code=63638 site_time_zone_utc_offset=-6 -County "MO, Ripley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901810.epw site_zip_code=63935 site_time_zone_utc_offset=-6 -County "MO, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901950.epw site_zip_code=65340 site_time_zone_utc_offset=-6 -County "MO, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901970.epw site_zip_code=63548 site_time_zone_utc_offset=-6 -County "MO, Scotland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901990.epw site_zip_code=63555 site_time_zone_utc_offset=-6 -County "MO, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902010.epw site_zip_code=63801 site_time_zone_utc_offset=-6 -County "MO, Shannon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902030.epw site_zip_code=65588 site_time_zone_utc_offset=-6 -County "MO, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902050.epw site_zip_code=63468 site_time_zone_utc_offset=-6 -County "MO, St. Charles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901830.epw site_zip_code=63376 site_time_zone_utc_offset=-6 -County "MO, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901850.epw site_zip_code=64776 site_time_zone_utc_offset=-6 -County "MO, St. Francois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901870.epw site_zip_code=63640 site_time_zone_utc_offset=-6 -County "MO, St. Louis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901890.epw site_zip_code=63021 site_time_zone_utc_offset=-6 -County "MO, St. Louis city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2905100.epw site_zip_code=63116 site_time_zone_utc_offset=-6 -County "MO, Ste. Genevieve County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901860.epw site_zip_code=63670 site_time_zone_utc_offset=-6 -County "MO, Stoddard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902070.epw site_zip_code=63841 site_time_zone_utc_offset=-6 -County "MO, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902090.epw site_zip_code=65737 site_time_zone_utc_offset=-6 -County "MO, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902110.epw site_zip_code=63556 site_time_zone_utc_offset=-6 -County "MO, Taney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902130.epw site_zip_code=65616 site_time_zone_utc_offset=-6 -County "MO, Texas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902150.epw site_zip_code=65483 site_time_zone_utc_offset=-6 -County "MO, Vernon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902170.epw site_zip_code=64772 site_time_zone_utc_offset=-6 -County "MO, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902190.epw site_zip_code=63383 site_time_zone_utc_offset=-6 -County "MO, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902210.epw site_zip_code=63664 site_time_zone_utc_offset=-6 -County "MO, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902230.epw site_zip_code=63957 site_time_zone_utc_offset=-6 -County "MO, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902250.epw site_zip_code=65706 site_time_zone_utc_offset=-6 -County "MO, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902270.epw site_zip_code=64456 site_time_zone_utc_offset=-6 -County "MO, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902290.epw site_zip_code=65711 site_time_zone_utc_offset=-6 -County "MS, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800010.epw site_zip_code=39120 site_time_zone_utc_offset=-6 -County "MS, Alcorn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800030.epw site_zip_code=38834 site_time_zone_utc_offset=-6 -County "MS, Amite County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800050.epw site_zip_code=39645 site_time_zone_utc_offset=-6 -County "MS, Attala County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800070.epw site_zip_code=39090 site_time_zone_utc_offset=-6 -County "MS, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800090.epw site_zip_code=38603 site_time_zone_utc_offset=-6 -County "MS, Bolivar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800110.epw site_zip_code=38732 site_time_zone_utc_offset=-6 -County "MS, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800130.epw site_zip_code=38916 site_time_zone_utc_offset=-6 -County "MS, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800150.epw site_zip_code=38917 site_time_zone_utc_offset=-6 -County "MS, Chickasaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800170.epw site_zip_code=38851 site_time_zone_utc_offset=-6 -County "MS, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800190.epw site_zip_code=39735 site_time_zone_utc_offset=-6 -County "MS, Claiborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800210.epw site_zip_code=39150 site_time_zone_utc_offset=-6 -County "MS, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800230.epw site_zip_code=39355 site_time_zone_utc_offset=-6 -County "MS, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800250.epw site_zip_code=39773 site_time_zone_utc_offset=-6 -County "MS, Coahoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800270.epw site_zip_code=38614 site_time_zone_utc_offset=-6 -County "MS, Copiah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800290.epw site_zip_code=39059 site_time_zone_utc_offset=-6 -County "MS, Covington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800310.epw site_zip_code=39428 site_time_zone_utc_offset=-6 -County "MS, DeSoto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800330.epw site_zip_code=38654 site_time_zone_utc_offset=-6 -County "MS, Forrest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800350.epw site_zip_code=39401 site_time_zone_utc_offset=-6 -County "MS, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800370.epw site_zip_code=39653 site_time_zone_utc_offset=-6 -County "MS, George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800390.epw site_zip_code=39452 site_time_zone_utc_offset=-6 -County "MS, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800410.epw site_zip_code=39451 site_time_zone_utc_offset=-6 -County "MS, Grenada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800430.epw site_zip_code=38901 site_time_zone_utc_offset=-6 -County "MS, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800450.epw site_zip_code=39520 site_time_zone_utc_offset=-6 -County "MS, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800470.epw site_zip_code=39503 site_time_zone_utc_offset=-6 -County "MS, Hinds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800490.epw site_zip_code=39209 site_time_zone_utc_offset=-6 -County "MS, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800510.epw site_zip_code=39095 site_time_zone_utc_offset=-6 -County "MS, Humphreys County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800530.epw site_zip_code=39038 site_time_zone_utc_offset=-6 -County "MS, Issaquena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800550.epw site_zip_code=39159 site_time_zone_utc_offset=-6 -County "MS, Itawamba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800570.epw site_zip_code=38843 site_time_zone_utc_offset=-6 -County "MS, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800590.epw site_zip_code=39564 site_time_zone_utc_offset=-6 -County "MS, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800610.epw site_zip_code=39422 site_time_zone_utc_offset=-6 -County "MS, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800630.epw site_zip_code=39069 site_time_zone_utc_offset=-6 -County "MS, Jefferson Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800650.epw site_zip_code=39474 site_time_zone_utc_offset=-6 -County "MS, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800670.epw site_zip_code=39443 site_time_zone_utc_offset=-6 -County "MS, Kemper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800690.epw site_zip_code=39328 site_time_zone_utc_offset=-6 -County "MS, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800710.epw site_zip_code=38655 site_time_zone_utc_offset=-6 -County "MS, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800730.epw site_zip_code=39402 site_time_zone_utc_offset=-6 -County "MS, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800750.epw site_zip_code=39301 site_time_zone_utc_offset=-6 -County "MS, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800770.epw site_zip_code=39654 site_time_zone_utc_offset=-6 -County "MS, Leake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800790.epw site_zip_code=39051 site_time_zone_utc_offset=-6 -County "MS, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800810.epw site_zip_code=38801 site_time_zone_utc_offset=-6 -County "MS, Leflore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800830.epw site_zip_code=38930 site_time_zone_utc_offset=-6 -County "MS, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800850.epw site_zip_code=39601 site_time_zone_utc_offset=-6 -County "MS, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800870.epw site_zip_code=39702 site_time_zone_utc_offset=-6 -County "MS, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800890.epw site_zip_code=39110 site_time_zone_utc_offset=-6 -County "MS, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800910.epw site_zip_code=39429 site_time_zone_utc_offset=-6 -County "MS, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800930.epw site_zip_code=38611 site_time_zone_utc_offset=-6 -County "MS, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800950.epw site_zip_code=38821 site_time_zone_utc_offset=-6 -County "MS, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800970.epw site_zip_code=38967 site_time_zone_utc_offset=-6 -County "MS, Neshoba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800990.epw site_zip_code=39350 site_time_zone_utc_offset=-6 -County "MS, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801010.epw site_zip_code=39345 site_time_zone_utc_offset=-6 -County "MS, Noxubee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801030.epw site_zip_code=39341 site_time_zone_utc_offset=-6 -County "MS, Oktibbeha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801050.epw site_zip_code=39759 site_time_zone_utc_offset=-6 -County "MS, Panola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801070.epw site_zip_code=38606 site_time_zone_utc_offset=-6 -County "MS, Pearl River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801090.epw site_zip_code=39466 site_time_zone_utc_offset=-6 -County "MS, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801110.epw site_zip_code=39476 site_time_zone_utc_offset=-6 -County "MS, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801130.epw site_zip_code=39648 site_time_zone_utc_offset=-6 -County "MS, Pontotoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801150.epw site_zip_code=38863 site_time_zone_utc_offset=-6 -County "MS, Prentiss County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801170.epw site_zip_code=38829 site_time_zone_utc_offset=-6 -County "MS, Quitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801190.epw site_zip_code=38646 site_time_zone_utc_offset=-6 -County "MS, Rankin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801210.epw site_zip_code=39047 site_time_zone_utc_offset=-6 -County "MS, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801230.epw site_zip_code=39074 site_time_zone_utc_offset=-6 -County "MS, Sharkey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801250.epw site_zip_code=39159 site_time_zone_utc_offset=-6 -County "MS, Simpson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801270.epw site_zip_code=39111 site_time_zone_utc_offset=-6 -County "MS, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801290.epw site_zip_code=39168 site_time_zone_utc_offset=-6 -County "MS, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801310.epw site_zip_code=39577 site_time_zone_utc_offset=-6 -County "MS, Sunflower County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801330.epw site_zip_code=38751 site_time_zone_utc_offset=-6 -County "MS, Tallahatchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801350.epw site_zip_code=38921 site_time_zone_utc_offset=-6 -County "MS, Tate County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801370.epw site_zip_code=38668 site_time_zone_utc_offset=-6 -County "MS, Tippah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801390.epw site_zip_code=38663 site_time_zone_utc_offset=-6 -County "MS, Tishomingo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801410.epw site_zip_code=38852 site_time_zone_utc_offset=-6 -County "MS, Tunica County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801430.epw site_zip_code=38676 site_time_zone_utc_offset=-6 -County "MS, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801450.epw site_zip_code=38652 site_time_zone_utc_offset=-6 -County "MS, Walthall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801470.epw site_zip_code=39667 site_time_zone_utc_offset=-6 -County "MS, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801490.epw site_zip_code=39180 site_time_zone_utc_offset=-6 -County "MS, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801510.epw site_zip_code=38701 site_time_zone_utc_offset=-6 -County "MS, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801530.epw site_zip_code=39367 site_time_zone_utc_offset=-6 -County "MS, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801550.epw site_zip_code=39744 site_time_zone_utc_offset=-6 -County "MS, Wilkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801570.epw site_zip_code=39669 site_time_zone_utc_offset=-6 -County "MS, Winston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801590.epw site_zip_code=39339 site_time_zone_utc_offset=-6 -County "MS, Yalobusha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801610.epw site_zip_code=38965 site_time_zone_utc_offset=-6 -County "MS, Yazoo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801630.epw site_zip_code=39194 site_time_zone_utc_offset=-6 -County "MT, Beaverhead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000010.epw site_zip_code=59725 site_time_zone_utc_offset=-7 -County "MT, Big Horn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000030.epw site_zip_code=59034 site_time_zone_utc_offset=-7 -County "MT, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000050.epw site_zip_code=59526 site_time_zone_utc_offset=-7 -County "MT, Broadwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000070.epw site_zip_code=59644 site_time_zone_utc_offset=-7 -County "MT, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000090.epw site_zip_code=59068 site_time_zone_utc_offset=-7 -County "MT, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000110.epw site_zip_code=59324 site_time_zone_utc_offset=-7 -County "MT, Cascade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000130.epw site_zip_code=59405 site_time_zone_utc_offset=-7 -County "MT, Chouteau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000150.epw site_zip_code=59442 site_time_zone_utc_offset=-7 -County "MT, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000170.epw site_zip_code=59301 site_time_zone_utc_offset=-7 -County "MT, Daniels County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000190.epw site_zip_code=59263 site_time_zone_utc_offset=-7 -County "MT, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000210.epw site_zip_code=59330 site_time_zone_utc_offset=-7 -County "MT, Deer Lodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000230.epw site_zip_code=59711 site_time_zone_utc_offset=-7 -County "MT, Fallon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000250.epw site_zip_code=59313 site_time_zone_utc_offset=-7 -County "MT, Fergus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000270.epw site_zip_code=59457 site_time_zone_utc_offset=-7 -County "MT, Flathead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000290.epw site_zip_code=59901 site_time_zone_utc_offset=-7 -County "MT, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000310.epw site_zip_code=59718 site_time_zone_utc_offset=-7 -County "MT, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000330.epw site_zip_code=59337 site_time_zone_utc_offset=-7 -County "MT, Glacier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000350.epw site_zip_code=59427 site_time_zone_utc_offset=-7 -County "MT, Golden Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000370.epw site_zip_code=59074 site_time_zone_utc_offset=-7 -County "MT, Granite County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000390.epw site_zip_code=59858 site_time_zone_utc_offset=-7 -County "MT, Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000410.epw site_zip_code=59501 site_time_zone_utc_offset=-7 -County "MT, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000430.epw site_zip_code=59634 site_time_zone_utc_offset=-7 -County "MT, Judith Basin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000450.epw site_zip_code=59479 site_time_zone_utc_offset=-7 -County "MT, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000470.epw site_zip_code=59860 site_time_zone_utc_offset=-7 -County "MT, Lewis and Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000490.epw site_zip_code=59601 site_time_zone_utc_offset=-7 -County "MT, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000510.epw site_zip_code=59522 site_time_zone_utc_offset=-7 -County "MT, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000530.epw site_zip_code=59923 site_time_zone_utc_offset=-7 -County "MT, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000570.epw site_zip_code=59729 site_time_zone_utc_offset=-7 -County "MT, McCone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000550.epw site_zip_code=59215 site_time_zone_utc_offset=-7 -County "MT, Meagher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000590.epw site_zip_code=59645 site_time_zone_utc_offset=-7 -County "MT, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000610.epw site_zip_code=59872 site_time_zone_utc_offset=-7 -County "MT, Missoula County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000630.epw site_zip_code=59801 site_time_zone_utc_offset=-7 -County "MT, Musselshell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000650.epw site_zip_code=59072 site_time_zone_utc_offset=-7 -County "MT, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000670.epw site_zip_code=59047 site_time_zone_utc_offset=-7 -County "MT, Petroleum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000690.epw site_zip_code=59087 site_time_zone_utc_offset=-7 -County "MT, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000710.epw site_zip_code=59538 site_time_zone_utc_offset=-7 -County "MT, Pondera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000730.epw site_zip_code=59425 site_time_zone_utc_offset=-7 -County "MT, Powder River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000750.epw site_zip_code=59317 site_time_zone_utc_offset=-7 -County "MT, Powell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000770.epw site_zip_code=59722 site_time_zone_utc_offset=-7 -County "MT, Prairie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000790.epw site_zip_code=59349 site_time_zone_utc_offset=-7 -County "MT, Ravalli County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000810.epw site_zip_code=59840 site_time_zone_utc_offset=-7 -County "MT, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000830.epw site_zip_code=59270 site_time_zone_utc_offset=-7 -County "MT, Roosevelt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000850.epw site_zip_code=59201 site_time_zone_utc_offset=-7 -County "MT, Rosebud County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000870.epw site_zip_code=59327 site_time_zone_utc_offset=-7 -County "MT, Sanders County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000890.epw site_zip_code=59859 site_time_zone_utc_offset=-7 -County "MT, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000910.epw site_zip_code=59254 site_time_zone_utc_offset=-7 -County "MT, Silver Bow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000930.epw site_zip_code=59701 site_time_zone_utc_offset=-7 -County "MT, Stillwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000950.epw site_zip_code=59019 site_time_zone_utc_offset=-7 -County "MT, Sweet Grass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000970.epw site_zip_code=59011 site_time_zone_utc_offset=-7 -County "MT, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000990.epw site_zip_code=59422 site_time_zone_utc_offset=-7 -County "MT, Toole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001010.epw site_zip_code=59474 site_time_zone_utc_offset=-7 -County "MT, Treasure County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001030.epw site_zip_code=59038 site_time_zone_utc_offset=-7 -County "MT, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001050.epw site_zip_code=59230 site_time_zone_utc_offset=-7 -County "MT, Wheatland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001070.epw site_zip_code=59036 site_time_zone_utc_offset=-7 -County "MT, Wibaux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001090.epw site_zip_code=59353 site_time_zone_utc_offset=-7 -County "MT, Yellowstone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001110.epw site_zip_code=59102 site_time_zone_utc_offset=-7 -County "NC, Alamance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700010.epw site_zip_code=27215 site_time_zone_utc_offset=-5 -County "NC, Alexander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700030.epw site_zip_code=28681 site_time_zone_utc_offset=-5 -County "NC, Alleghany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700050.epw site_zip_code=28675 site_time_zone_utc_offset=-5 -County "NC, Anson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700070.epw site_zip_code=28170 site_time_zone_utc_offset=-5 -County "NC, Ashe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700090.epw site_zip_code=28694 site_time_zone_utc_offset=-5 -County "NC, Avery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700110.epw site_zip_code=28657 site_time_zone_utc_offset=-5 -County "NC, Beaufort County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700130.epw site_zip_code=27889 site_time_zone_utc_offset=-5 -County "NC, Bertie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700150.epw site_zip_code=27983 site_time_zone_utc_offset=-5 -County "NC, Bladen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700170.epw site_zip_code=28337 site_time_zone_utc_offset=-5 -County "NC, Brunswick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700190.epw site_zip_code=28451 site_time_zone_utc_offset=-5 -County "NC, Buncombe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700210.epw site_zip_code=28806 site_time_zone_utc_offset=-5 -County "NC, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700230.epw site_zip_code=28655 site_time_zone_utc_offset=-5 -County "NC, Cabarrus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700250.epw site_zip_code=28027 site_time_zone_utc_offset=-5 -County "NC, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700270.epw site_zip_code=28645 site_time_zone_utc_offset=-5 -County "NC, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700290.epw site_zip_code=27921 site_time_zone_utc_offset=-5 -County "NC, Carteret County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700310.epw site_zip_code=28570 site_time_zone_utc_offset=-5 -County "NC, Caswell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700330.epw site_zip_code=27379 site_time_zone_utc_offset=-5 -County "NC, Catawba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700350.epw site_zip_code=28601 site_time_zone_utc_offset=-5 -County "NC, Chatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700370.epw site_zip_code=27312 site_time_zone_utc_offset=-5 -County "NC, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700390.epw site_zip_code=28906 site_time_zone_utc_offset=-5 -County "NC, Chowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700410.epw site_zip_code=27932 site_time_zone_utc_offset=-5 -County "NC, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700430.epw site_zip_code=28904 site_time_zone_utc_offset=-5 -County "NC, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700450.epw site_zip_code=28150 site_time_zone_utc_offset=-5 -County "NC, Columbus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700470.epw site_zip_code=28472 site_time_zone_utc_offset=-5 -County "NC, Craven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700490.epw site_zip_code=28562 site_time_zone_utc_offset=-5 -County "NC, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700510.epw site_zip_code=28314 site_time_zone_utc_offset=-5 -County "NC, Currituck County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700530.epw site_zip_code=27958 site_time_zone_utc_offset=-5 -County "NC, Dare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700550.epw site_zip_code=27949 site_time_zone_utc_offset=-5 -County "NC, Davidson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700570.epw site_zip_code=27360 site_time_zone_utc_offset=-5 -County "NC, Davie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700590.epw site_zip_code=27028 site_time_zone_utc_offset=-5 -County "NC, Duplin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700610.epw site_zip_code=28466 site_time_zone_utc_offset=-5 -County "NC, Durham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700630.epw site_zip_code=27703 site_time_zone_utc_offset=-5 -County "NC, Edgecombe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700650.epw site_zip_code=27801 site_time_zone_utc_offset=-5 -County "NC, Forsyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700670.epw site_zip_code=27284 site_time_zone_utc_offset=-5 -County "NC, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700690.epw site_zip_code=27549 site_time_zone_utc_offset=-5 -County "NC, Gaston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700710.epw site_zip_code=28054 site_time_zone_utc_offset=-5 -County "NC, Gates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700730.epw site_zip_code=27937 site_time_zone_utc_offset=-5 -County "NC, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700750.epw site_zip_code=28771 site_time_zone_utc_offset=-5 -County "NC, Granville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700770.epw site_zip_code=27565 site_time_zone_utc_offset=-5 -County "NC, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700790.epw site_zip_code=28580 site_time_zone_utc_offset=-5 -County "NC, Guilford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700810.epw site_zip_code=27406 site_time_zone_utc_offset=-5 -County "NC, Halifax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700830.epw site_zip_code=27870 site_time_zone_utc_offset=-5 -County "NC, Harnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700850.epw site_zip_code=27546 site_time_zone_utc_offset=-5 -County "NC, Haywood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700870.epw site_zip_code=28786 site_time_zone_utc_offset=-5 -County "NC, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700890.epw site_zip_code=28792 site_time_zone_utc_offset=-5 -County "NC, Hertford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700910.epw site_zip_code=27910 site_time_zone_utc_offset=-5 -County "NC, Hoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700930.epw site_zip_code=28376 site_time_zone_utc_offset=-5 -County "NC, Hyde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700950.epw site_zip_code=27824 site_time_zone_utc_offset=-5 -County "NC, Iredell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700970.epw site_zip_code=28117 site_time_zone_utc_offset=-5 -County "NC, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700990.epw site_zip_code=28779 site_time_zone_utc_offset=-5 -County "NC, Johnston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701010.epw site_zip_code=27520 site_time_zone_utc_offset=-5 -County "NC, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701030.epw site_zip_code=28585 site_time_zone_utc_offset=-5 -County "NC, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701050.epw site_zip_code=27330 site_time_zone_utc_offset=-5 -County "NC, Lenoir County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701070.epw site_zip_code=28501 site_time_zone_utc_offset=-5 -County "NC, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701090.epw site_zip_code=28092 site_time_zone_utc_offset=-5 -County "NC, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701130.epw site_zip_code=28734 site_time_zone_utc_offset=-5 -County "NC, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701150.epw site_zip_code=28753 site_time_zone_utc_offset=-5 -County "NC, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701170.epw site_zip_code=27892 site_time_zone_utc_offset=-5 -County "NC, McDowell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701110.epw site_zip_code=28752 site_time_zone_utc_offset=-5 -County "NC, Mecklenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701190.epw site_zip_code=28269 site_time_zone_utc_offset=-5 -County "NC, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701210.epw site_zip_code=28777 site_time_zone_utc_offset=-5 -County "NC, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701230.epw site_zip_code=27371 site_time_zone_utc_offset=-5 -County "NC, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701250.epw site_zip_code=28374 site_time_zone_utc_offset=-5 -County "NC, Nash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701270.epw site_zip_code=27804 site_time_zone_utc_offset=-5 -County "NC, New Hanover County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701290.epw site_zip_code=28412 site_time_zone_utc_offset=-5 -County "NC, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701310.epw site_zip_code=27831 site_time_zone_utc_offset=-5 -County "NC, Onslow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701330.epw site_zip_code=28540 site_time_zone_utc_offset=-5 -County "NC, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701350.epw site_zip_code=27514 site_time_zone_utc_offset=-5 -County "NC, Pamlico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701370.epw site_zip_code=28571 site_time_zone_utc_offset=-5 -County "NC, Pasquotank County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701390.epw site_zip_code=27909 site_time_zone_utc_offset=-5 -County "NC, Pender County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701410.epw site_zip_code=28443 site_time_zone_utc_offset=-5 -County "NC, Perquimans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701430.epw site_zip_code=27944 site_time_zone_utc_offset=-5 -County "NC, Person County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701450.epw site_zip_code=27574 site_time_zone_utc_offset=-5 -County "NC, Pitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701470.epw site_zip_code=27858 site_time_zone_utc_offset=-5 -County "NC, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701490.epw site_zip_code=28782 site_time_zone_utc_offset=-5 -County "NC, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701510.epw site_zip_code=27205 site_time_zone_utc_offset=-5 -County "NC, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701530.epw site_zip_code=28379 site_time_zone_utc_offset=-5 -County "NC, Robeson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701550.epw site_zip_code=28358 site_time_zone_utc_offset=-5 -County "NC, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701570.epw site_zip_code=27320 site_time_zone_utc_offset=-5 -County "NC, Rowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701590.epw site_zip_code=28146 site_time_zone_utc_offset=-5 -County "NC, Rutherford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701610.epw site_zip_code=28043 site_time_zone_utc_offset=-5 -County "NC, Sampson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701630.epw site_zip_code=28328 site_time_zone_utc_offset=-5 -County "NC, Scotland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701650.epw site_zip_code=28352 site_time_zone_utc_offset=-5 -County "NC, Stanly County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701670.epw site_zip_code=28001 site_time_zone_utc_offset=-5 -County "NC, Stokes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701690.epw site_zip_code=27021 site_time_zone_utc_offset=-5 -County "NC, Surry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701710.epw site_zip_code=27030 site_time_zone_utc_offset=-5 -County "NC, Swain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701730.epw site_zip_code=28713 site_time_zone_utc_offset=-5 -County "NC, Transylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701750.epw site_zip_code=28712 site_time_zone_utc_offset=-5 -County "NC, Tyrrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701770.epw site_zip_code=27925 site_time_zone_utc_offset=-5 -County "NC, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701790.epw site_zip_code=28173 site_time_zone_utc_offset=-5 -County "NC, Vance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701810.epw site_zip_code=27537 site_time_zone_utc_offset=-5 -County "NC, Wake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701830.epw site_zip_code=27610 site_time_zone_utc_offset=-5 -County "NC, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701850.epw site_zip_code=27589 site_time_zone_utc_offset=-5 -County "NC, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701870.epw site_zip_code=27962 site_time_zone_utc_offset=-5 -County "NC, Watauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701890.epw site_zip_code=28607 site_time_zone_utc_offset=-5 -County "NC, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701910.epw site_zip_code=27530 site_time_zone_utc_offset=-5 -County "NC, Wilkes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701930.epw site_zip_code=28659 site_time_zone_utc_offset=-5 -County "NC, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701950.epw site_zip_code=27893 site_time_zone_utc_offset=-5 -County "NC, Yadkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701970.epw site_zip_code=27055 site_time_zone_utc_offset=-5 -County "NC, Yancey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701990.epw site_zip_code=28714 site_time_zone_utc_offset=-5 -County "ND, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800010.epw site_zip_code=58639 site_time_zone_utc_offset=-7 -County "ND, Barnes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800030.epw site_zip_code=58072 site_time_zone_utc_offset=-6 -County "ND, Benson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800050.epw site_zip_code=58348 site_time_zone_utc_offset=-6 -County "ND, Billings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800070.epw site_zip_code=58622 site_time_zone_utc_offset=-7 -County "ND, Bottineau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800090.epw site_zip_code=58318 site_time_zone_utc_offset=-6 -County "ND, Bowman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800110.epw site_zip_code=58623 site_time_zone_utc_offset=-7 -County "ND, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800130.epw site_zip_code=58773 site_time_zone_utc_offset=-6 -County "ND, Burleigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800150.epw site_zip_code=58503 site_time_zone_utc_offset=-6 -County "ND, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800170.epw site_zip_code=58103 site_time_zone_utc_offset=-6 -County "ND, Cavalier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800190.epw site_zip_code=58249 site_time_zone_utc_offset=-6 -County "ND, Dickey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800210.epw site_zip_code=58474 site_time_zone_utc_offset=-6 -County "ND, Divide County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800230.epw site_zip_code=58730 site_time_zone_utc_offset=-6 -County "ND, Dunn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800250.epw site_zip_code=58640 site_time_zone_utc_offset=-7 -County "ND, Eddy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800270.epw site_zip_code=58356 site_time_zone_utc_offset=-6 -County "ND, Emmons County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800290.epw site_zip_code=58552 site_time_zone_utc_offset=-6 -County "ND, Foster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800310.epw site_zip_code=58421 site_time_zone_utc_offset=-6 -County "ND, Golden Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800330.epw site_zip_code=58621 site_time_zone_utc_offset=-7 -County "ND, Grand Forks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800350.epw site_zip_code=58201 site_time_zone_utc_offset=-6 -County "ND, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800370.epw site_zip_code=58533 site_time_zone_utc_offset=-7 -County "ND, Griggs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800390.epw site_zip_code=58425 site_time_zone_utc_offset=-6 -County "ND, Hettinger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800410.epw site_zip_code=58646 site_time_zone_utc_offset=-7 -County "ND, Kidder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800430.epw site_zip_code=58482 site_time_zone_utc_offset=-6 -County "ND, LaMoure County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800450.epw site_zip_code=58458 site_time_zone_utc_offset=-6 -County "ND, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800470.epw site_zip_code=58561 site_time_zone_utc_offset=-6 -County "ND, McHenry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800490.epw site_zip_code=58790 site_time_zone_utc_offset=-6 -County "ND, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800510.epw site_zip_code=58495 site_time_zone_utc_offset=-6 -County "ND, McKenzie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800530.epw site_zip_code=58854 site_time_zone_utc_offset=-7 -County "ND, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800550.epw site_zip_code=58540 site_time_zone_utc_offset=-6 -County "ND, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800570.epw site_zip_code=58545 site_time_zone_utc_offset=-6 -County "ND, Morton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800590.epw site_zip_code=58554 site_time_zone_utc_offset=-6 -County "ND, Mountrail County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800610.epw site_zip_code=58763 site_time_zone_utc_offset=-6 -County "ND, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800630.epw site_zip_code=58344 site_time_zone_utc_offset=-6 -County "ND, Oliver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800650.epw site_zip_code=58530 site_time_zone_utc_offset=-6 -County "ND, Pembina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800670.epw site_zip_code=58220 site_time_zone_utc_offset=-6 -County "ND, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800690.epw site_zip_code=58368 site_time_zone_utc_offset=-6 -County "ND, Ramsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800710.epw site_zip_code=58301 site_time_zone_utc_offset=-6 -County "ND, Ransom County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800730.epw site_zip_code=58054 site_time_zone_utc_offset=-6 -County "ND, Renville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800750.epw site_zip_code=58761 site_time_zone_utc_offset=-6 -County "ND, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800770.epw site_zip_code=58075 site_time_zone_utc_offset=-6 -County "ND, Rolette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800790.epw site_zip_code=58367 site_time_zone_utc_offset=-6 -County "ND, Sargent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800810.epw site_zip_code=58060 site_time_zone_utc_offset=-6 -County "ND, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800830.epw site_zip_code=58463 site_time_zone_utc_offset=-6 -County "ND, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800850.epw site_zip_code=58538 site_time_zone_utc_offset=-6 -County "ND, Slope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800870.epw site_zip_code=58620 site_time_zone_utc_offset=-7 -County "ND, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800890.epw site_zip_code=58601 site_time_zone_utc_offset=-7 -County "ND, Steele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800910.epw site_zip_code=58230 site_time_zone_utc_offset=-6 -County "ND, Stutsman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800930.epw site_zip_code=58401 site_time_zone_utc_offset=-6 -County "ND, Towner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800950.epw site_zip_code=58324 site_time_zone_utc_offset=-6 -County "ND, Traill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800970.epw site_zip_code=58257 site_time_zone_utc_offset=-6 -County "ND, Walsh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800990.epw site_zip_code=58237 site_time_zone_utc_offset=-6 -County "ND, Ward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801010.epw site_zip_code=58701 site_time_zone_utc_offset=-6 -County "ND, Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801030.epw site_zip_code=58341 site_time_zone_utc_offset=-6 -County "ND, Williams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801050.epw site_zip_code=58801 site_time_zone_utc_offset=-6 -County "NE, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100010.epw site_zip_code=68901 site_time_zone_utc_offset=-6 -County "NE, Antelope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100030.epw site_zip_code=68756 site_time_zone_utc_offset=-6 -County "NE, Arthur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100050.epw site_zip_code=69121 site_time_zone_utc_offset=-7 -County "NE, Banner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100070.epw site_zip_code=69345 site_time_zone_utc_offset=-7 -County "NE, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100090.epw site_zip_code=68833 site_time_zone_utc_offset=-6 -County "NE, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100110.epw site_zip_code=68620 site_time_zone_utc_offset=-6 -County "NE, Box Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100130.epw site_zip_code=69301 site_time_zone_utc_offset=-7 -County "NE, Boyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100150.epw site_zip_code=68777 site_time_zone_utc_offset=-6 -County "NE, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100170.epw site_zip_code=69210 site_time_zone_utc_offset=-6 -County "NE, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100190.epw site_zip_code=68845 site_time_zone_utc_offset=-6 -County "NE, Burt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100210.epw site_zip_code=68061 site_time_zone_utc_offset=-6 -County "NE, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100230.epw site_zip_code=68632 site_time_zone_utc_offset=-6 -County "NE, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100250.epw site_zip_code=68048 site_time_zone_utc_offset=-6 -County "NE, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100270.epw site_zip_code=68739 site_time_zone_utc_offset=-6 -County "NE, Chase County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100290.epw site_zip_code=69033 site_time_zone_utc_offset=-7 -County "NE, Cherry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100310.epw site_zip_code=69201 site_time_zone_utc_offset=-6 -County "NE, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100330.epw site_zip_code=69162 site_time_zone_utc_offset=-7 -County "NE, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100350.epw site_zip_code=68979 site_time_zone_utc_offset=-6 -County "NE, Colfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100370.epw site_zip_code=68661 site_time_zone_utc_offset=-6 -County "NE, Cuming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100390.epw site_zip_code=68788 site_time_zone_utc_offset=-6 -County "NE, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100410.epw site_zip_code=68822 site_time_zone_utc_offset=-6 -County "NE, Dakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100430.epw site_zip_code=68776 site_time_zone_utc_offset=-6 -County "NE, Dawes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100450.epw site_zip_code=69337 site_time_zone_utc_offset=-7 -County "NE, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100470.epw site_zip_code=68850 site_time_zone_utc_offset=-6 -County "NE, Deuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100490.epw site_zip_code=69129 site_time_zone_utc_offset=-7 -County "NE, Dixon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100510.epw site_zip_code=68770 site_time_zone_utc_offset=-6 -County "NE, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100530.epw site_zip_code=68025 site_time_zone_utc_offset=-6 -County "NE, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100550.epw site_zip_code=68022 site_time_zone_utc_offset=-6 -County "NE, Dundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100570.epw site_zip_code=69021 site_time_zone_utc_offset=-7 -County "NE, Fillmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100590.epw site_zip_code=68361 site_time_zone_utc_offset=-6 -County "NE, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100610.epw site_zip_code=68939 site_time_zone_utc_offset=-6 -County "NE, Frontier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100630.epw site_zip_code=69025 site_time_zone_utc_offset=-6 -County "NE, Furnas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100650.epw site_zip_code=69022 site_time_zone_utc_offset=-6 -County "NE, Gage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100670.epw site_zip_code=68310 site_time_zone_utc_offset=-6 -County "NE, Garden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100690.epw site_zip_code=69154 site_time_zone_utc_offset=-7 -County "NE, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100710.epw site_zip_code=68823 site_time_zone_utc_offset=-6 -County "NE, Gosper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100730.epw site_zip_code=68937 site_time_zone_utc_offset=-6 -County "NE, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100750.epw site_zip_code=69350 site_time_zone_utc_offset=-7 -County "NE, Greeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100770.epw site_zip_code=68665 site_time_zone_utc_offset=-6 -County "NE, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100790.epw site_zip_code=68801 site_time_zone_utc_offset=-6 -County "NE, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100810.epw site_zip_code=68818 site_time_zone_utc_offset=-6 -County "NE, Harlan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100830.epw site_zip_code=68920 site_time_zone_utc_offset=-6 -County "NE, Hayes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100850.epw site_zip_code=69032 site_time_zone_utc_offset=-6 -County "NE, Hitchcock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100870.epw site_zip_code=69024 site_time_zone_utc_offset=-6 -County "NE, Holt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100890.epw site_zip_code=68763 site_time_zone_utc_offset=-6 -County "NE, Hooker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100910.epw site_zip_code=69152 site_time_zone_utc_offset=-7 -County "NE, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100930.epw site_zip_code=68873 site_time_zone_utc_offset=-6 -County "NE, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100950.epw site_zip_code=68352 site_time_zone_utc_offset=-6 -County "NE, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100970.epw site_zip_code=68450 site_time_zone_utc_offset=-6 -County "NE, Kearney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100990.epw site_zip_code=68959 site_time_zone_utc_offset=-6 -County "NE, Keith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101010.epw site_zip_code=69153 site_time_zone_utc_offset=-7 -County "NE, Keya Paha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101030.epw site_zip_code=68778 site_time_zone_utc_offset=-6 -County "NE, Kimball County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101050.epw site_zip_code=69145 site_time_zone_utc_offset=-7 -County "NE, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101070.epw site_zip_code=68718 site_time_zone_utc_offset=-6 -County "NE, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101090.epw site_zip_code=68516 site_time_zone_utc_offset=-6 -County "NE, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101110.epw site_zip_code=69101 site_time_zone_utc_offset=-6 -County "NE, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101130.epw site_zip_code=69163 site_time_zone_utc_offset=-6 -County "NE, Loup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101150.epw site_zip_code=68823 site_time_zone_utc_offset=-6 -County "NE, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101190.epw site_zip_code=68701 site_time_zone_utc_offset=-6 -County "NE, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101170.epw site_zip_code=69167 site_time_zone_utc_offset=-6 -County "NE, Merrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101210.epw site_zip_code=68826 site_time_zone_utc_offset=-6 -County "NE, Morrill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101230.epw site_zip_code=69336 site_time_zone_utc_offset=-7 -County "NE, Nance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101250.epw site_zip_code=68638 site_time_zone_utc_offset=-6 -County "NE, Nemaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101270.epw site_zip_code=68305 site_time_zone_utc_offset=-6 -County "NE, Nuckolls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101290.epw site_zip_code=68978 site_time_zone_utc_offset=-6 -County "NE, Otoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101310.epw site_zip_code=68410 site_time_zone_utc_offset=-6 -County "NE, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101330.epw site_zip_code=68420 site_time_zone_utc_offset=-6 -County "NE, Perkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101350.epw site_zip_code=69140 site_time_zone_utc_offset=-7 -County "NE, Phelps County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101370.epw site_zip_code=68949 site_time_zone_utc_offset=-6 -County "NE, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101390.epw site_zip_code=68767 site_time_zone_utc_offset=-6 -County "NE, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101410.epw site_zip_code=68601 site_time_zone_utc_offset=-6 -County "NE, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101430.epw site_zip_code=68666 site_time_zone_utc_offset=-6 -County "NE, Red Willow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101450.epw site_zip_code=69001 site_time_zone_utc_offset=-6 -County "NE, Richardson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101470.epw site_zip_code=68355 site_time_zone_utc_offset=-6 -County "NE, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101490.epw site_zip_code=68714 site_time_zone_utc_offset=-6 -County "NE, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101510.epw site_zip_code=68333 site_time_zone_utc_offset=-6 -County "NE, Sarpy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101530.epw site_zip_code=68046 site_time_zone_utc_offset=-6 -County "NE, Saunders County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101550.epw site_zip_code=68066 site_time_zone_utc_offset=-6 -County "NE, Scotts Bluff County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101570.epw site_zip_code=69361 site_time_zone_utc_offset=-7 -County "NE, Seward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101590.epw site_zip_code=68434 site_time_zone_utc_offset=-6 -County "NE, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101610.epw site_zip_code=69343 site_time_zone_utc_offset=-7 -County "NE, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101630.epw site_zip_code=68853 site_time_zone_utc_offset=-6 -County "NE, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101650.epw site_zip_code=69346 site_time_zone_utc_offset=-7 -County "NE, Stanton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101670.epw site_zip_code=68779 site_time_zone_utc_offset=-6 -County "NE, Thayer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101690.epw site_zip_code=68370 site_time_zone_utc_offset=-6 -County "NE, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101710.epw site_zip_code=69166 site_time_zone_utc_offset=-6 -County "NE, Thurston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101730.epw site_zip_code=68071 site_time_zone_utc_offset=-6 -County "NE, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101750.epw site_zip_code=68862 site_time_zone_utc_offset=-6 -County "NE, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101770.epw site_zip_code=68008 site_time_zone_utc_offset=-6 -County "NE, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101790.epw site_zip_code=68787 site_time_zone_utc_offset=-6 -County "NE, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101810.epw site_zip_code=68970 site_time_zone_utc_offset=-6 -County "NE, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101830.epw site_zip_code=68637 site_time_zone_utc_offset=-6 -County "NE, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101850.epw site_zip_code=68467 site_time_zone_utc_offset=-6 -County "NH, Belknap County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300010.epw site_zip_code=03246 site_time_zone_utc_offset=-5 -County "NH, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300030.epw site_zip_code=03894 site_time_zone_utc_offset=-5 -County "NH, Cheshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300050.epw site_zip_code=03431 site_time_zone_utc_offset=-5 -County "NH, Coos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300070.epw site_zip_code=03570 site_time_zone_utc_offset=-5 -County "NH, Grafton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300090.epw site_zip_code=03766 site_time_zone_utc_offset=-5 -County "NH, Hillsborough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300110.epw site_zip_code=03103 site_time_zone_utc_offset=-5 -County "NH, Merrimack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300130.epw site_zip_code=03301 site_time_zone_utc_offset=-5 -County "NH, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300150.epw site_zip_code=03038 site_time_zone_utc_offset=-5 -County "NH, Strafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300170.epw site_zip_code=03820 site_time_zone_utc_offset=-5 -County "NH, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300190.epw site_zip_code=03743 site_time_zone_utc_offset=-5 -County "NJ, Atlantic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400010.epw site_zip_code=08401 site_time_zone_utc_offset=-5 -County "NJ, Bergen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400030.epw site_zip_code=07410 site_time_zone_utc_offset=-5 -County "NJ, Burlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400050.epw site_zip_code=08054 site_time_zone_utc_offset=-5 -County "NJ, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400070.epw site_zip_code=08021 site_time_zone_utc_offset=-5 -County "NJ, Cape May County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400090.epw site_zip_code=08260 site_time_zone_utc_offset=-5 -County "NJ, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400110.epw site_zip_code=08332 site_time_zone_utc_offset=-5 -County "NJ, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400130.epw site_zip_code=07111 site_time_zone_utc_offset=-5 -County "NJ, Gloucester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400150.epw site_zip_code=08096 site_time_zone_utc_offset=-5 -County "NJ, Hudson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400170.epw site_zip_code=07302 site_time_zone_utc_offset=-5 -County "NJ, Hunterdon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400190.epw site_zip_code=08822 site_time_zone_utc_offset=-5 -County "NJ, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400210.epw site_zip_code=08618 site_time_zone_utc_offset=-5 -County "NJ, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400230.epw site_zip_code=08831 site_time_zone_utc_offset=-5 -County "NJ, Monmouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400250.epw site_zip_code=07728 site_time_zone_utc_offset=-5 -County "NJ, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400270.epw site_zip_code=07960 site_time_zone_utc_offset=-5 -County "NJ, Ocean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400290.epw site_zip_code=08701 site_time_zone_utc_offset=-5 -County "NJ, Passaic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400310.epw site_zip_code=07055 site_time_zone_utc_offset=-5 -County "NJ, Salem County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400330.epw site_zip_code=08069 site_time_zone_utc_offset=-5 -County "NJ, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400350.epw site_zip_code=08873 site_time_zone_utc_offset=-5 -County "NJ, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400370.epw site_zip_code=07860 site_time_zone_utc_offset=-5 -County "NJ, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400390.epw site_zip_code=07083 site_time_zone_utc_offset=-5 -County "NJ, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400410.epw site_zip_code=08865 site_time_zone_utc_offset=-5 -County "NM, Bernalillo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500010.epw site_zip_code=87111 site_time_zone_utc_offset=-7 -County "NM, Catron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500030.epw site_zip_code=87829 site_time_zone_utc_offset=-7 -County "NM, Chaves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500050.epw site_zip_code=88203 site_time_zone_utc_offset=-7 -County "NM, Cibola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500060.epw site_zip_code=87020 site_time_zone_utc_offset=-7 -County "NM, Colfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500070.epw site_zip_code=87740 site_time_zone_utc_offset=-7 -County "NM, Curry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500090.epw site_zip_code=88101 site_time_zone_utc_offset=-7 -County "NM, De Baca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500110.epw site_zip_code=88119 site_time_zone_utc_offset=-7 -County "NM, Dona Ana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500130.epw site_zip_code=88001 site_time_zone_utc_offset=-7 -County "NM, Eddy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500150.epw site_zip_code=88220 site_time_zone_utc_offset=-7 -County "NM, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500170.epw site_zip_code=88061 site_time_zone_utc_offset=-7 -County "NM, Guadalupe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500190.epw site_zip_code=88435 site_time_zone_utc_offset=-7 -County "NM, Harding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500210.epw site_zip_code=87743 site_time_zone_utc_offset=-7 -County "NM, Hidalgo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500230.epw site_zip_code=88045 site_time_zone_utc_offset=-7 -County "NM, Lea County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500250.epw site_zip_code=88240 site_time_zone_utc_offset=-7 -County "NM, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500270.epw site_zip_code=88355 site_time_zone_utc_offset=-7 -County "NM, Los Alamos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500280.epw site_zip_code=87544 site_time_zone_utc_offset=-7 -County "NM, Luna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500290.epw site_zip_code=88030 site_time_zone_utc_offset=-7 -County "NM, McKinley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500310.epw site_zip_code=87301 site_time_zone_utc_offset=-7 -County "NM, Mora County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500330.epw site_zip_code=87722 site_time_zone_utc_offset=-7 -County "NM, Otero County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500350.epw site_zip_code=88310 site_time_zone_utc_offset=-7 -County "NM, Quay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500370.epw site_zip_code=88401 site_time_zone_utc_offset=-7 -County "NM, Rio Arriba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500390.epw site_zip_code=87532 site_time_zone_utc_offset=-7 -County "NM, Roosevelt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500410.epw site_zip_code=88130 site_time_zone_utc_offset=-7 -County "NM, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500450.epw site_zip_code=87401 site_time_zone_utc_offset=-7 -County "NM, San Miguel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500470.epw site_zip_code=87701 site_time_zone_utc_offset=-7 -County "NM, Sandoval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500430.epw site_zip_code=87124 site_time_zone_utc_offset=-7 -County "NM, Santa Fe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500490.epw site_zip_code=87507 site_time_zone_utc_offset=-7 -County "NM, Sierra County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500510.epw site_zip_code=87901 site_time_zone_utc_offset=-7 -County "NM, Socorro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500530.epw site_zip_code=87801 site_time_zone_utc_offset=-7 -County "NM, Taos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500550.epw site_zip_code=87571 site_time_zone_utc_offset=-7 -County "NM, Torrance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500570.epw site_zip_code=87035 site_time_zone_utc_offset=-7 -County "NM, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500590.epw site_zip_code=88415 site_time_zone_utc_offset=-7 -County "NM, Valencia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500610.epw site_zip_code=87031 site_time_zone_utc_offset=-7 -County "NV, Carson City" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3205100.epw site_zip_code=89701 site_time_zone_utc_offset=-8 -County "NV, Churchill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200010.epw site_zip_code=89406 site_time_zone_utc_offset=-8 -County "NV, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200030.epw site_zip_code=89052 site_time_zone_utc_offset=-8 -County "NV, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200050.epw site_zip_code=89460 site_time_zone_utc_offset=-8 -County "NV, Elko County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200070.epw site_zip_code=89801 site_time_zone_utc_offset=-8 -County "NV, Esmeralda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200090.epw site_zip_code=89010 site_time_zone_utc_offset=-8 -County "NV, Eureka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200110.epw site_zip_code=89316 site_time_zone_utc_offset=-8 -County "NV, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200130.epw site_zip_code=89445 site_time_zone_utc_offset=-8 -County "NV, Lander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200150.epw site_zip_code=89820 site_time_zone_utc_offset=-8 -County "NV, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200170.epw site_zip_code=89017 site_time_zone_utc_offset=-8 -County "NV, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200190.epw site_zip_code=89408 site_time_zone_utc_offset=-8 -County "NV, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200210.epw site_zip_code=89415 site_time_zone_utc_offset=-8 -County "NV, Nye County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200230.epw site_zip_code=89048 site_time_zone_utc_offset=-8 -County "NV, Pershing County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200270.epw site_zip_code=89419 site_time_zone_utc_offset=-8 -County "NV, Storey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200290.epw site_zip_code=89521 site_time_zone_utc_offset=-8 -County "NV, Washoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200310.epw site_zip_code=89502 site_time_zone_utc_offset=-8 -County "NV, White Pine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200330.epw site_zip_code=89301 site_time_zone_utc_offset=-8 -County "NY, Albany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600010.epw site_zip_code=12203 site_time_zone_utc_offset=-5 -County "NY, Allegany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600030.epw site_zip_code=14895 site_time_zone_utc_offset=-5 -County "NY, Bronx County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600050.epw site_zip_code=10467 site_time_zone_utc_offset=-5 -County "NY, Broome County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600070.epw site_zip_code=13760 site_time_zone_utc_offset=-5 -County "NY, Cattaraugus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600090.epw site_zip_code=14760 site_time_zone_utc_offset=-5 -County "NY, Cayuga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600110.epw site_zip_code=13021 site_time_zone_utc_offset=-5 -County "NY, Chautauqua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600130.epw site_zip_code=14701 site_time_zone_utc_offset=-5 -County "NY, Chemung County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600150.epw site_zip_code=14845 site_time_zone_utc_offset=-5 -County "NY, Chenango County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600170.epw site_zip_code=13815 site_time_zone_utc_offset=-5 -County "NY, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600190.epw site_zip_code=12901 site_time_zone_utc_offset=-5 -County "NY, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600210.epw site_zip_code=12534 site_time_zone_utc_offset=-5 -County "NY, Cortland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600230.epw site_zip_code=13045 site_time_zone_utc_offset=-5 -County "NY, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600250.epw site_zip_code=13856 site_time_zone_utc_offset=-5 -County "NY, Dutchess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600270.epw site_zip_code=12601 site_time_zone_utc_offset=-5 -County "NY, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600290.epw site_zip_code=14221 site_time_zone_utc_offset=-5 -County "NY, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600310.epw site_zip_code=12946 site_time_zone_utc_offset=-5 -County "NY, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600330.epw site_zip_code=12953 site_time_zone_utc_offset=-5 -County "NY, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600350.epw site_zip_code=12078 site_time_zone_utc_offset=-5 -County "NY, Genesee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600370.epw site_zip_code=14020 site_time_zone_utc_offset=-5 -County "NY, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600390.epw site_zip_code=12414 site_time_zone_utc_offset=-5 -County "NY, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600410.epw site_zip_code=12842 site_time_zone_utc_offset=-5 -County "NY, Herkimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600430.epw site_zip_code=13357 site_time_zone_utc_offset=-5 -County "NY, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600450.epw site_zip_code=13601 site_time_zone_utc_offset=-5 -County "NY, Kings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600470.epw site_zip_code=11226 site_time_zone_utc_offset=-5 -County "NY, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600490.epw site_zip_code=13367 site_time_zone_utc_offset=-5 -County "NY, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600510.epw site_zip_code=14454 site_time_zone_utc_offset=-5 -County "NY, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600530.epw site_zip_code=13032 site_time_zone_utc_offset=-5 -County "NY, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600550.epw site_zip_code=14580 site_time_zone_utc_offset=-5 -County "NY, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600570.epw site_zip_code=12010 site_time_zone_utc_offset=-5 -County "NY, Nassau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600590.epw site_zip_code=11758 site_time_zone_utc_offset=-5 -County "NY, New York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600610.epw site_zip_code=10025 site_time_zone_utc_offset=-5 -County "NY, Niagara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600630.epw site_zip_code=14094 site_time_zone_utc_offset=-5 -County "NY, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600650.epw site_zip_code=13440 site_time_zone_utc_offset=-5 -County "NY, Onondaga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600670.epw site_zip_code=13027 site_time_zone_utc_offset=-5 -County "NY, Ontario County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600690.epw site_zip_code=14424 site_time_zone_utc_offset=-5 -County "NY, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600710.epw site_zip_code=12550 site_time_zone_utc_offset=-5 -County "NY, Orleans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600730.epw site_zip_code=14411 site_time_zone_utc_offset=-5 -County "NY, Oswego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600750.epw site_zip_code=13126 site_time_zone_utc_offset=-5 -County "NY, Otsego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600770.epw site_zip_code=13820 site_time_zone_utc_offset=-5 -County "NY, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600790.epw site_zip_code=10512 site_time_zone_utc_offset=-5 -County "NY, Queens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600810.epw site_zip_code=11375 site_time_zone_utc_offset=-5 -County "NY, Rensselaer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600830.epw site_zip_code=12180 site_time_zone_utc_offset=-5 -County "NY, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600850.epw site_zip_code=10314 site_time_zone_utc_offset=-5 -County "NY, Rockland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600870.epw site_zip_code=10977 site_time_zone_utc_offset=-5 -County "NY, Saratoga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600910.epw site_zip_code=12866 site_time_zone_utc_offset=-5 -County "NY, Schenectady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600930.epw site_zip_code=12306 site_time_zone_utc_offset=-5 -County "NY, Schoharie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600950.epw site_zip_code=12043 site_time_zone_utc_offset=-5 -County "NY, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600970.epw site_zip_code=14891 site_time_zone_utc_offset=-5 -County "NY, Seneca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600990.epw site_zip_code=13148 site_time_zone_utc_offset=-5 -County "NY, St. Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600890.epw site_zip_code=13676 site_time_zone_utc_offset=-5 -County "NY, Steuben County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601010.epw site_zip_code=14830 site_time_zone_utc_offset=-5 -County "NY, Suffolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601030.epw site_zip_code=11746 site_time_zone_utc_offset=-5 -County "NY, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601050.epw site_zip_code=12701 site_time_zone_utc_offset=-5 -County "NY, Tioga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601070.epw site_zip_code=13827 site_time_zone_utc_offset=-5 -County "NY, Tompkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601090.epw site_zip_code=14850 site_time_zone_utc_offset=-5 -County "NY, Ulster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601110.epw site_zip_code=12401 site_time_zone_utc_offset=-5 -County "NY, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601130.epw site_zip_code=12804 site_time_zone_utc_offset=-5 -County "NY, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601150.epw site_zip_code=12839 site_time_zone_utc_offset=-5 -County "NY, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601170.epw site_zip_code=14513 site_time_zone_utc_offset=-5 -County "NY, Westchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601190.epw site_zip_code=10701 site_time_zone_utc_offset=-5 -County "NY, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601210.epw site_zip_code=14569 site_time_zone_utc_offset=-5 -County "NY, Yates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601230.epw site_zip_code=14527 site_time_zone_utc_offset=-5 -County "OH, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900010.epw site_zip_code=45693 site_time_zone_utc_offset=-5 -County "OH, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900030.epw site_zip_code=45805 site_time_zone_utc_offset=-5 -County "OH, Ashland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900050.epw site_zip_code=44805 site_time_zone_utc_offset=-5 -County "OH, Ashtabula County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900070.epw site_zip_code=44004 site_time_zone_utc_offset=-5 -County "OH, Athens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900090.epw site_zip_code=45701 site_time_zone_utc_offset=-5 -County "OH, Auglaize County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900110.epw site_zip_code=45895 site_time_zone_utc_offset=-5 -County "OH, Belmont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900130.epw site_zip_code=43950 site_time_zone_utc_offset=-5 -County "OH, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900150.epw site_zip_code=45121 site_time_zone_utc_offset=-5 -County "OH, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900170.epw site_zip_code=45011 site_time_zone_utc_offset=-5 -County "OH, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900190.epw site_zip_code=44615 site_time_zone_utc_offset=-5 -County "OH, Champaign County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900210.epw site_zip_code=43078 site_time_zone_utc_offset=-5 -County "OH, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900230.epw site_zip_code=45503 site_time_zone_utc_offset=-5 -County "OH, Clermont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900250.epw site_zip_code=45103 site_time_zone_utc_offset=-5 -County "OH, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900270.epw site_zip_code=45177 site_time_zone_utc_offset=-5 -County "OH, Columbiana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900290.epw site_zip_code=43920 site_time_zone_utc_offset=-5 -County "OH, Coshocton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900310.epw site_zip_code=43812 site_time_zone_utc_offset=-5 -County "OH, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900330.epw site_zip_code=44820 site_time_zone_utc_offset=-5 -County "OH, Cuyahoga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900350.epw site_zip_code=44107 site_time_zone_utc_offset=-5 -County "OH, Darke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900370.epw site_zip_code=45331 site_time_zone_utc_offset=-5 -County "OH, Defiance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900390.epw site_zip_code=43512 site_time_zone_utc_offset=-5 -County "OH, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900410.epw site_zip_code=43015 site_time_zone_utc_offset=-5 -County "OH, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900430.epw site_zip_code=44870 site_time_zone_utc_offset=-5 -County "OH, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900450.epw site_zip_code=43130 site_time_zone_utc_offset=-5 -County "OH, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900470.epw site_zip_code=43160 site_time_zone_utc_offset=-5 -County "OH, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900490.epw site_zip_code=43081 site_time_zone_utc_offset=-5 -County "OH, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900510.epw site_zip_code=43567 site_time_zone_utc_offset=-5 -County "OH, Gallia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900530.epw site_zip_code=45631 site_time_zone_utc_offset=-5 -County "OH, Geauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900550.epw site_zip_code=44024 site_time_zone_utc_offset=-5 -County "OH, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900570.epw site_zip_code=45324 site_time_zone_utc_offset=-5 -County "OH, Guernsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900590.epw site_zip_code=43725 site_time_zone_utc_offset=-5 -County "OH, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900610.epw site_zip_code=45238 site_time_zone_utc_offset=-5 -County "OH, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900630.epw site_zip_code=45840 site_time_zone_utc_offset=-5 -County "OH, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900650.epw site_zip_code=43326 site_time_zone_utc_offset=-5 -County "OH, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900670.epw site_zip_code=43907 site_time_zone_utc_offset=-5 -County "OH, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900690.epw site_zip_code=43545 site_time_zone_utc_offset=-5 -County "OH, Highland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900710.epw site_zip_code=45133 site_time_zone_utc_offset=-5 -County "OH, Hocking County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900730.epw site_zip_code=43138 site_time_zone_utc_offset=-5 -County "OH, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900750.epw site_zip_code=44654 site_time_zone_utc_offset=-5 -County "OH, Huron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900770.epw site_zip_code=44857 site_time_zone_utc_offset=-5 -County "OH, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900790.epw site_zip_code=45640 site_time_zone_utc_offset=-5 -County "OH, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900810.epw site_zip_code=43952 site_time_zone_utc_offset=-5 -County "OH, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900830.epw site_zip_code=43050 site_time_zone_utc_offset=-5 -County "OH, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900850.epw site_zip_code=44060 site_time_zone_utc_offset=-5 -County "OH, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900870.epw site_zip_code=45638 site_time_zone_utc_offset=-5 -County "OH, Licking County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900890.epw site_zip_code=43055 site_time_zone_utc_offset=-5 -County "OH, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900910.epw site_zip_code=43311 site_time_zone_utc_offset=-5 -County "OH, Lorain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900930.epw site_zip_code=44035 site_time_zone_utc_offset=-5 -County "OH, Lucas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900950.epw site_zip_code=43615 site_time_zone_utc_offset=-5 -County "OH, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900970.epw site_zip_code=43140 site_time_zone_utc_offset=-5 -County "OH, Mahoning County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900990.epw site_zip_code=44512 site_time_zone_utc_offset=-5 -County "OH, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901010.epw site_zip_code=43302 site_time_zone_utc_offset=-5 -County "OH, Medina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901030.epw site_zip_code=44256 site_time_zone_utc_offset=-5 -County "OH, Meigs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901050.epw site_zip_code=45769 site_time_zone_utc_offset=-5 -County "OH, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901070.epw site_zip_code=45822 site_time_zone_utc_offset=-5 -County "OH, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901090.epw site_zip_code=45373 site_time_zone_utc_offset=-5 -County "OH, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901110.epw site_zip_code=43793 site_time_zone_utc_offset=-5 -County "OH, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901130.epw site_zip_code=45424 site_time_zone_utc_offset=-5 -County "OH, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901150.epw site_zip_code=43756 site_time_zone_utc_offset=-5 -County "OH, Morrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901170.epw site_zip_code=43338 site_time_zone_utc_offset=-5 -County "OH, Muskingum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901190.epw site_zip_code=43701 site_time_zone_utc_offset=-5 -County "OH, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901210.epw site_zip_code=43724 site_time_zone_utc_offset=-5 -County "OH, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901230.epw site_zip_code=43452 site_time_zone_utc_offset=-5 -County "OH, Paulding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901250.epw site_zip_code=45879 site_time_zone_utc_offset=-5 -County "OH, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901270.epw site_zip_code=43764 site_time_zone_utc_offset=-5 -County "OH, Pickaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901290.epw site_zip_code=43113 site_time_zone_utc_offset=-5 -County "OH, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901310.epw site_zip_code=45690 site_time_zone_utc_offset=-5 -County "OH, Portage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901330.epw site_zip_code=44240 site_time_zone_utc_offset=-5 -County "OH, Preble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901350.epw site_zip_code=45320 site_time_zone_utc_offset=-5 -County "OH, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901370.epw site_zip_code=45875 site_time_zone_utc_offset=-5 -County "OH, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901390.epw site_zip_code=44903 site_time_zone_utc_offset=-5 -County "OH, Ross County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901410.epw site_zip_code=45601 site_time_zone_utc_offset=-5 -County "OH, Sandusky County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901430.epw site_zip_code=43420 site_time_zone_utc_offset=-5 -County "OH, Scioto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901450.epw site_zip_code=45662 site_time_zone_utc_offset=-5 -County "OH, Seneca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901470.epw site_zip_code=44883 site_time_zone_utc_offset=-5 -County "OH, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901490.epw site_zip_code=45365 site_time_zone_utc_offset=-5 -County "OH, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901510.epw site_zip_code=44646 site_time_zone_utc_offset=-5 -County "OH, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901530.epw site_zip_code=44224 site_time_zone_utc_offset=-5 -County "OH, Trumbull County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901550.epw site_zip_code=44483 site_time_zone_utc_offset=-5 -County "OH, Tuscarawas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901570.epw site_zip_code=44663 site_time_zone_utc_offset=-5 -County "OH, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901590.epw site_zip_code=43040 site_time_zone_utc_offset=-5 -County "OH, Van Wert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901610.epw site_zip_code=45891 site_time_zone_utc_offset=-5 -County "OH, Vinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901630.epw site_zip_code=45651 site_time_zone_utc_offset=-5 -County "OH, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901650.epw site_zip_code=45040 site_time_zone_utc_offset=-5 -County "OH, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901670.epw site_zip_code=45750 site_time_zone_utc_offset=-5 -County "OH, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901690.epw site_zip_code=44691 site_time_zone_utc_offset=-5 -County "OH, Williams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901710.epw site_zip_code=43506 site_time_zone_utc_offset=-5 -County "OH, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901730.epw site_zip_code=43551 site_time_zone_utc_offset=-5 -County "OH, Wyandot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901750.epw site_zip_code=43351 site_time_zone_utc_offset=-5 -County "OK, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000010.epw site_zip_code=74960 site_time_zone_utc_offset=-6 -County "OK, Alfalfa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000030.epw site_zip_code=73728 site_time_zone_utc_offset=-6 -County "OK, Atoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000050.epw site_zip_code=74525 site_time_zone_utc_offset=-6 -County "OK, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000070.epw site_zip_code=73932 site_time_zone_utc_offset=-6 -County "OK, Beckham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000090.epw site_zip_code=73644 site_time_zone_utc_offset=-6 -County "OK, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000110.epw site_zip_code=73772 site_time_zone_utc_offset=-6 -County "OK, Bryan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000130.epw site_zip_code=74701 site_time_zone_utc_offset=-6 -County "OK, Caddo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000150.epw site_zip_code=73005 site_time_zone_utc_offset=-6 -County "OK, Canadian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000170.epw site_zip_code=73099 site_time_zone_utc_offset=-6 -County "OK, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000190.epw site_zip_code=73401 site_time_zone_utc_offset=-6 -County "OK, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000210.epw site_zip_code=74464 site_time_zone_utc_offset=-6 -County "OK, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000230.epw site_zip_code=74743 site_time_zone_utc_offset=-6 -County "OK, Cimarron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000250.epw site_zip_code=73933 site_time_zone_utc_offset=-6 -County "OK, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000270.epw site_zip_code=73160 site_time_zone_utc_offset=-6 -County "OK, Coal County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000290.epw site_zip_code=74538 site_time_zone_utc_offset=-6 -County "OK, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000310.epw site_zip_code=73505 site_time_zone_utc_offset=-6 -County "OK, Cotton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000330.epw site_zip_code=73572 site_time_zone_utc_offset=-6 -County "OK, Craig County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000350.epw site_zip_code=74301 site_time_zone_utc_offset=-6 -County "OK, Creek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000370.epw site_zip_code=74066 site_time_zone_utc_offset=-6 -County "OK, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000390.epw site_zip_code=73096 site_time_zone_utc_offset=-6 -County "OK, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000410.epw site_zip_code=74344 site_time_zone_utc_offset=-6 -County "OK, Dewey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000430.epw site_zip_code=73859 site_time_zone_utc_offset=-6 -County "OK, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000450.epw site_zip_code=73858 site_time_zone_utc_offset=-6 -County "OK, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000470.epw site_zip_code=73703 site_time_zone_utc_offset=-6 -County "OK, Garvin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000490.epw site_zip_code=73075 site_time_zone_utc_offset=-6 -County "OK, Grady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000510.epw site_zip_code=73018 site_time_zone_utc_offset=-6 -County "OK, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000530.epw site_zip_code=73759 site_time_zone_utc_offset=-6 -County "OK, Greer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000550.epw site_zip_code=73554 site_time_zone_utc_offset=-6 -County "OK, Harmon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000570.epw site_zip_code=73550 site_time_zone_utc_offset=-6 -County "OK, Harper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000590.epw site_zip_code=73848 site_time_zone_utc_offset=-6 -County "OK, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000610.epw site_zip_code=74462 site_time_zone_utc_offset=-6 -County "OK, Hughes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000630.epw site_zip_code=74848 site_time_zone_utc_offset=-6 -County "OK, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000650.epw site_zip_code=73521 site_time_zone_utc_offset=-6 -County "OK, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000670.epw site_zip_code=73573 site_time_zone_utc_offset=-6 -County "OK, Johnston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000690.epw site_zip_code=73460 site_time_zone_utc_offset=-6 -County "OK, Kay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000710.epw site_zip_code=74601 site_time_zone_utc_offset=-6 -County "OK, Kingfisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000730.epw site_zip_code=73750 site_time_zone_utc_offset=-6 -County "OK, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000750.epw site_zip_code=73651 site_time_zone_utc_offset=-6 -County "OK, Latimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000770.epw site_zip_code=74578 site_time_zone_utc_offset=-6 -County "OK, Le Flore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000790.epw site_zip_code=74953 site_time_zone_utc_offset=-6 -County "OK, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000810.epw site_zip_code=74834 site_time_zone_utc_offset=-6 -County "OK, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000830.epw site_zip_code=73044 site_time_zone_utc_offset=-6 -County "OK, Love County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000850.epw site_zip_code=73448 site_time_zone_utc_offset=-6 -County "OK, Major County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000930.epw site_zip_code=73737 site_time_zone_utc_offset=-6 -County "OK, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000950.epw site_zip_code=73439 site_time_zone_utc_offset=-6 -County "OK, Mayes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000970.epw site_zip_code=74361 site_time_zone_utc_offset=-6 -County "OK, McClain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000870.epw site_zip_code=73080 site_time_zone_utc_offset=-6 -County "OK, McCurtain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000890.epw site_zip_code=74728 site_time_zone_utc_offset=-6 -County "OK, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000910.epw site_zip_code=74432 site_time_zone_utc_offset=-6 -County "OK, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000990.epw site_zip_code=73086 site_time_zone_utc_offset=-6 -County "OK, Muskogee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001010.epw site_zip_code=74403 site_time_zone_utc_offset=-6 -County "OK, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001030.epw site_zip_code=73077 site_time_zone_utc_offset=-6 -County "OK, Nowata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001050.epw site_zip_code=74048 site_time_zone_utc_offset=-6 -County "OK, Okfuskee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001070.epw site_zip_code=74859 site_time_zone_utc_offset=-6 -County "OK, Oklahoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001090.epw site_zip_code=73013 site_time_zone_utc_offset=-6 -County "OK, Okmulgee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001110.epw site_zip_code=74447 site_time_zone_utc_offset=-6 -County "OK, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001130.epw site_zip_code=74070 site_time_zone_utc_offset=-6 -County "OK, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001150.epw site_zip_code=74354 site_time_zone_utc_offset=-6 -County "OK, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001170.epw site_zip_code=74020 site_time_zone_utc_offset=-6 -County "OK, Payne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001190.epw site_zip_code=74074 site_time_zone_utc_offset=-6 -County "OK, Pittsburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001210.epw site_zip_code=74501 site_time_zone_utc_offset=-6 -County "OK, Pontotoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001230.epw site_zip_code=74820 site_time_zone_utc_offset=-6 -County "OK, Pottawatomie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001250.epw site_zip_code=74801 site_time_zone_utc_offset=-6 -County "OK, Pushmataha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001270.epw site_zip_code=74523 site_time_zone_utc_offset=-6 -County "OK, Roger Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001290.epw site_zip_code=73628 site_time_zone_utc_offset=-6 -County "OK, Rogers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001310.epw site_zip_code=74017 site_time_zone_utc_offset=-6 -County "OK, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001330.epw site_zip_code=74868 site_time_zone_utc_offset=-6 -County "OK, Sequoyah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001350.epw site_zip_code=74955 site_time_zone_utc_offset=-6 -County "OK, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001370.epw site_zip_code=73533 site_time_zone_utc_offset=-6 -County "OK, Texas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001390.epw site_zip_code=73942 site_time_zone_utc_offset=-6 -County "OK, Tillman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001410.epw site_zip_code=73542 site_time_zone_utc_offset=-6 -County "OK, Tulsa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001430.epw site_zip_code=74012 site_time_zone_utc_offset=-6 -County "OK, Wagoner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001450.epw site_zip_code=74014 site_time_zone_utc_offset=-6 -County "OK, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001470.epw site_zip_code=74006 site_time_zone_utc_offset=-6 -County "OK, Washita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001490.epw site_zip_code=73632 site_time_zone_utc_offset=-6 -County "OK, Woods County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001510.epw site_zip_code=73717 site_time_zone_utc_offset=-6 -County "OK, Woodward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001530.epw site_zip_code=73801 site_time_zone_utc_offset=-6 -County "OR, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100010.epw site_zip_code=97814 site_time_zone_utc_offset=-8 -County "OR, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100030.epw site_zip_code=97330 site_time_zone_utc_offset=-8 -County "OR, Clackamas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100050.epw site_zip_code=97045 site_time_zone_utc_offset=-8 -County "OR, Clatsop County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100070.epw site_zip_code=97103 site_time_zone_utc_offset=-8 -County "OR, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100090.epw site_zip_code=97051 site_time_zone_utc_offset=-8 -County "OR, Coos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100110.epw site_zip_code=97420 site_time_zone_utc_offset=-8 -County "OR, Crook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100130.epw site_zip_code=97754 site_time_zone_utc_offset=-8 -County "OR, Curry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100150.epw site_zip_code=97415 site_time_zone_utc_offset=-8 -County "OR, Deschutes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100170.epw site_zip_code=97702 site_time_zone_utc_offset=-8 -County "OR, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100190.epw site_zip_code=97471 site_time_zone_utc_offset=-8 -County "OR, Gilliam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100210.epw site_zip_code=97823 site_time_zone_utc_offset=-8 -County "OR, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100230.epw site_zip_code=97845 site_time_zone_utc_offset=-8 -County "OR, Harney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100250.epw site_zip_code=97720 site_time_zone_utc_offset=-8 -County "OR, Hood River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100270.epw site_zip_code=97031 site_time_zone_utc_offset=-8 -County "OR, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100290.epw site_zip_code=97504 site_time_zone_utc_offset=-8 -County "OR, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100310.epw site_zip_code=97741 site_time_zone_utc_offset=-8 -County "OR, Josephine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100330.epw site_zip_code=97526 site_time_zone_utc_offset=-8 -County "OR, Klamath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100350.epw site_zip_code=97603 site_time_zone_utc_offset=-8 -County "OR, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100370.epw site_zip_code=97630 site_time_zone_utc_offset=-8 -County "OR, Lane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100390.epw site_zip_code=97402 site_time_zone_utc_offset=-8 -County "OR, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100410.epw site_zip_code=97367 site_time_zone_utc_offset=-8 -County "OR, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100430.epw site_zip_code=97322 site_time_zone_utc_offset=-8 -County "OR, Malheur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100450.epw site_zip_code=97914 site_time_zone_utc_offset=-7 -County "OR, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100470.epw site_zip_code=97301 site_time_zone_utc_offset=-8 -County "OR, Morrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100490.epw site_zip_code=97818 site_time_zone_utc_offset=-8 -County "OR, Multnomah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100510.epw site_zip_code=97206 site_time_zone_utc_offset=-8 -County "OR, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100530.epw site_zip_code=97304 site_time_zone_utc_offset=-8 -County "OR, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100550.epw site_zip_code=97065 site_time_zone_utc_offset=-8 -County "OR, Tillamook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100570.epw site_zip_code=97141 site_time_zone_utc_offset=-8 -County "OR, Umatilla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100590.epw site_zip_code=97838 site_time_zone_utc_offset=-8 -County "OR, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100610.epw site_zip_code=97850 site_time_zone_utc_offset=-8 -County "OR, Wallowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100630.epw site_zip_code=97828 site_time_zone_utc_offset=-8 -County "OR, Wasco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100650.epw site_zip_code=97058 site_time_zone_utc_offset=-8 -County "OR, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100670.epw site_zip_code=97229 site_time_zone_utc_offset=-8 -County "OR, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100690.epw site_zip_code=97830 site_time_zone_utc_offset=-8 -County "OR, Yamhill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100710.epw site_zip_code=97128 site_time_zone_utc_offset=-8 -County "PA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200010.epw site_zip_code=17325 site_time_zone_utc_offset=-5 -County "PA, Allegheny County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200030.epw site_zip_code=15237 site_time_zone_utc_offset=-5 -County "PA, Armstrong County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200050.epw site_zip_code=16201 site_time_zone_utc_offset=-5 -County "PA, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200070.epw site_zip_code=15001 site_time_zone_utc_offset=-5 -County "PA, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200090.epw site_zip_code=15522 site_time_zone_utc_offset=-5 -County "PA, Berks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200110.epw site_zip_code=19606 site_time_zone_utc_offset=-5 -County "PA, Blair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200130.epw site_zip_code=16601 site_time_zone_utc_offset=-5 -County "PA, Bradford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200150.epw site_zip_code=18840 site_time_zone_utc_offset=-5 -County "PA, Bucks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200170.epw site_zip_code=19020 site_time_zone_utc_offset=-5 -County "PA, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200190.epw site_zip_code=16001 site_time_zone_utc_offset=-5 -County "PA, Cambria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200210.epw site_zip_code=15905 site_time_zone_utc_offset=-5 -County "PA, Cameron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200230.epw site_zip_code=15834 site_time_zone_utc_offset=-5 -County "PA, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200250.epw site_zip_code=18235 site_time_zone_utc_offset=-5 -County "PA, Centre County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200270.epw site_zip_code=16801 site_time_zone_utc_offset=-5 -County "PA, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200290.epw site_zip_code=19380 site_time_zone_utc_offset=-5 -County "PA, Clarion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200310.epw site_zip_code=16214 site_time_zone_utc_offset=-5 -County "PA, Clearfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200330.epw site_zip_code=15801 site_time_zone_utc_offset=-5 -County "PA, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200350.epw site_zip_code=17745 site_time_zone_utc_offset=-5 -County "PA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200370.epw site_zip_code=17815 site_time_zone_utc_offset=-5 -County "PA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200390.epw site_zip_code=16335 site_time_zone_utc_offset=-5 -County "PA, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200410.epw site_zip_code=17055 site_time_zone_utc_offset=-5 -County "PA, Dauphin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200430.epw site_zip_code=17112 site_time_zone_utc_offset=-5 -County "PA, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200450.epw site_zip_code=19063 site_time_zone_utc_offset=-5 -County "PA, Elk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200470.epw site_zip_code=15857 site_time_zone_utc_offset=-5 -County "PA, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200490.epw site_zip_code=16509 site_time_zone_utc_offset=-5 -County "PA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200510.epw site_zip_code=15401 site_time_zone_utc_offset=-5 -County "PA, Forest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200530.epw site_zip_code=16353 site_time_zone_utc_offset=-5 -County "PA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200550.epw site_zip_code=17268 site_time_zone_utc_offset=-5 -County "PA, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200570.epw site_zip_code=17233 site_time_zone_utc_offset=-5 -County "PA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200590.epw site_zip_code=15370 site_time_zone_utc_offset=-5 -County "PA, Huntingdon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200610.epw site_zip_code=16652 site_time_zone_utc_offset=-5 -County "PA, Indiana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200630.epw site_zip_code=15701 site_time_zone_utc_offset=-5 -County "PA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200650.epw site_zip_code=15767 site_time_zone_utc_offset=-5 -County "PA, Juniata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200670.epw site_zip_code=17059 site_time_zone_utc_offset=-5 -County "PA, Lackawanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200690.epw site_zip_code=18505 site_time_zone_utc_offset=-5 -County "PA, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200710.epw site_zip_code=17603 site_time_zone_utc_offset=-5 -County "PA, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200730.epw site_zip_code=16101 site_time_zone_utc_offset=-5 -County "PA, Lebanon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200750.epw site_zip_code=17042 site_time_zone_utc_offset=-5 -County "PA, Lehigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200770.epw site_zip_code=18103 site_time_zone_utc_offset=-5 -County "PA, Luzerne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200790.epw site_zip_code=18702 site_time_zone_utc_offset=-5 -County "PA, Lycoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200810.epw site_zip_code=17701 site_time_zone_utc_offset=-5 -County "PA, McKean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200830.epw site_zip_code=16701 site_time_zone_utc_offset=-5 -County "PA, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200850.epw site_zip_code=16148 site_time_zone_utc_offset=-5 -County "PA, Mifflin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200870.epw site_zip_code=17044 site_time_zone_utc_offset=-5 -County "PA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200890.epw site_zip_code=18301 site_time_zone_utc_offset=-5 -County "PA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200910.epw site_zip_code=19446 site_time_zone_utc_offset=-5 -County "PA, Montour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200930.epw site_zip_code=17821 site_time_zone_utc_offset=-5 -County "PA, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200950.epw site_zip_code=18042 site_time_zone_utc_offset=-5 -County "PA, Northumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200970.epw site_zip_code=17801 site_time_zone_utc_offset=-5 -County "PA, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200990.epw site_zip_code=17020 site_time_zone_utc_offset=-5 -County "PA, Philadelphia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201010.epw site_zip_code=19143 site_time_zone_utc_offset=-5 -County "PA, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201030.epw site_zip_code=18337 site_time_zone_utc_offset=-5 -County "PA, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201050.epw site_zip_code=16915 site_time_zone_utc_offset=-5 -County "PA, Schuylkill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201070.epw site_zip_code=17901 site_time_zone_utc_offset=-5 -County "PA, Snyder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201090.epw site_zip_code=17870 site_time_zone_utc_offset=-5 -County "PA, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201110.epw site_zip_code=15501 site_time_zone_utc_offset=-5 -County "PA, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201130.epw site_zip_code=18614 site_time_zone_utc_offset=-5 -County "PA, Susquehanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201150.epw site_zip_code=18801 site_time_zone_utc_offset=-5 -County "PA, Tioga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201170.epw site_zip_code=16901 site_time_zone_utc_offset=-5 -County "PA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201190.epw site_zip_code=17837 site_time_zone_utc_offset=-5 -County "PA, Venango County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201210.epw site_zip_code=16301 site_time_zone_utc_offset=-5 -County "PA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201230.epw site_zip_code=16365 site_time_zone_utc_offset=-5 -County "PA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201250.epw site_zip_code=15301 site_time_zone_utc_offset=-5 -County "PA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201270.epw site_zip_code=18431 site_time_zone_utc_offset=-5 -County "PA, Westmoreland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201290.epw site_zip_code=15601 site_time_zone_utc_offset=-5 -County "PA, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201310.epw site_zip_code=18657 site_time_zone_utc_offset=-5 -County "PA, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201330.epw site_zip_code=17331 site_time_zone_utc_offset=-5 -County "RI, Bristol County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400010.epw site_zip_code=02809 site_time_zone_utc_offset=-5 -County "RI, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400030.epw site_zip_code=02893 site_time_zone_utc_offset=-5 -County "RI, Newport County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400050.epw site_zip_code=02840 site_time_zone_utc_offset=-5 -County "RI, Providence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400070.epw site_zip_code=02860 site_time_zone_utc_offset=-5 -County "RI, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400090.epw site_zip_code=02891 site_time_zone_utc_offset=-5 -County "SC, Abbeville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500010.epw site_zip_code=29620 site_time_zone_utc_offset=-5 -County "SC, Aiken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500030.epw site_zip_code=29803 site_time_zone_utc_offset=-5 -County "SC, Allendale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500050.epw site_zip_code=29810 site_time_zone_utc_offset=-5 -County "SC, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500070.epw site_zip_code=29621 site_time_zone_utc_offset=-5 -County "SC, Bamberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500090.epw site_zip_code=29003 site_time_zone_utc_offset=-5 -County "SC, Barnwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500110.epw site_zip_code=29812 site_time_zone_utc_offset=-5 -County "SC, Beaufort County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500130.epw site_zip_code=29910 site_time_zone_utc_offset=-5 -County "SC, Berkeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500150.epw site_zip_code=29445 site_time_zone_utc_offset=-5 -County "SC, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500170.epw site_zip_code=29135 site_time_zone_utc_offset=-5 -County "SC, Charleston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500190.epw site_zip_code=29464 site_time_zone_utc_offset=-5 -County "SC, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500210.epw site_zip_code=29340 site_time_zone_utc_offset=-5 -County "SC, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500230.epw site_zip_code=29706 site_time_zone_utc_offset=-5 -County "SC, Chesterfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500250.epw site_zip_code=29520 site_time_zone_utc_offset=-5 -County "SC, Clarendon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500270.epw site_zip_code=29102 site_time_zone_utc_offset=-5 -County "SC, Colleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500290.epw site_zip_code=29488 site_time_zone_utc_offset=-5 -County "SC, Darlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500310.epw site_zip_code=29550 site_time_zone_utc_offset=-5 -County "SC, Dillon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500330.epw site_zip_code=29536 site_time_zone_utc_offset=-5 -County "SC, Dorchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500350.epw site_zip_code=29485 site_time_zone_utc_offset=-5 -County "SC, Edgefield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500370.epw site_zip_code=29860 site_time_zone_utc_offset=-5 -County "SC, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500390.epw site_zip_code=29180 site_time_zone_utc_offset=-5 -County "SC, Florence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500410.epw site_zip_code=29501 site_time_zone_utc_offset=-5 -County "SC, Georgetown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500430.epw site_zip_code=29440 site_time_zone_utc_offset=-5 -County "SC, Greenville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500450.epw site_zip_code=29681 site_time_zone_utc_offset=-5 -County "SC, Greenwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500470.epw site_zip_code=29649 site_time_zone_utc_offset=-5 -County "SC, Hampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500490.epw site_zip_code=29918 site_time_zone_utc_offset=-5 -County "SC, Horry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500510.epw site_zip_code=29579 site_time_zone_utc_offset=-5 -County "SC, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500530.epw site_zip_code=29936 site_time_zone_utc_offset=-5 -County "SC, Kershaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500550.epw site_zip_code=29020 site_time_zone_utc_offset=-5 -County "SC, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500570.epw site_zip_code=29720 site_time_zone_utc_offset=-5 -County "SC, Laurens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500590.epw site_zip_code=29360 site_time_zone_utc_offset=-5 -County "SC, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500610.epw site_zip_code=29010 site_time_zone_utc_offset=-5 -County "SC, Lexington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500630.epw site_zip_code=29072 site_time_zone_utc_offset=-5 -County "SC, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500670.epw site_zip_code=29571 site_time_zone_utc_offset=-5 -County "SC, Marlboro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500690.epw site_zip_code=29512 site_time_zone_utc_offset=-5 -County "SC, McCormick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500650.epw site_zip_code=29835 site_time_zone_utc_offset=-5 -County "SC, Newberry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500710.epw site_zip_code=29108 site_time_zone_utc_offset=-5 -County "SC, Oconee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500730.epw site_zip_code=29678 site_time_zone_utc_offset=-5 -County "SC, Orangeburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500750.epw site_zip_code=29115 site_time_zone_utc_offset=-5 -County "SC, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500770.epw site_zip_code=29640 site_time_zone_utc_offset=-5 -County "SC, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500790.epw site_zip_code=29223 site_time_zone_utc_offset=-5 -County "SC, Saluda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500810.epw site_zip_code=29138 site_time_zone_utc_offset=-5 -County "SC, Spartanburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500830.epw site_zip_code=29301 site_time_zone_utc_offset=-5 -County "SC, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500850.epw site_zip_code=29150 site_time_zone_utc_offset=-5 -County "SC, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500870.epw site_zip_code=29379 site_time_zone_utc_offset=-5 -County "SC, Williamsburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500890.epw site_zip_code=29556 site_time_zone_utc_offset=-5 -County "SC, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500910.epw site_zip_code=29732 site_time_zone_utc_offset=-5 -County "SD, Aurora County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600030.epw site_zip_code=57368 site_time_zone_utc_offset=-6 -County "SD, Beadle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600050.epw site_zip_code=57350 site_time_zone_utc_offset=-6 -County "SD, Bennett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600070.epw site_zip_code=57551 site_time_zone_utc_offset=-7 -County "SD, Bon Homme County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600090.epw site_zip_code=57066 site_time_zone_utc_offset=-6 -County "SD, Brookings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600110.epw site_zip_code=57006 site_time_zone_utc_offset=-6 -County "SD, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600130.epw site_zip_code=57401 site_time_zone_utc_offset=-6 -County "SD, Brule County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600150.epw site_zip_code=57325 site_time_zone_utc_offset=-6 -County "SD, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600170.epw site_zip_code=57341 site_time_zone_utc_offset=-6 -County "SD, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600190.epw site_zip_code=57717 site_time_zone_utc_offset=-7 -County "SD, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600210.epw site_zip_code=57632 site_time_zone_utc_offset=-6 -County "SD, Charles Mix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600230.epw site_zip_code=57380 site_time_zone_utc_offset=-6 -County "SD, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600250.epw site_zip_code=57225 site_time_zone_utc_offset=-6 -County "SD, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600270.epw site_zip_code=57069 site_time_zone_utc_offset=-6 -County "SD, Codington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600290.epw site_zip_code=57201 site_time_zone_utc_offset=-6 -County "SD, Corson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600310.epw site_zip_code=57642 site_time_zone_utc_offset=-7 -County "SD, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600330.epw site_zip_code=57730 site_time_zone_utc_offset=-7 -County "SD, Davison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600350.epw site_zip_code=57301 site_time_zone_utc_offset=-6 -County "SD, Day County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600370.epw site_zip_code=57274 site_time_zone_utc_offset=-6 -County "SD, Deuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600390.epw site_zip_code=57226 site_time_zone_utc_offset=-6 -County "SD, Dewey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600410.epw site_zip_code=57625 site_time_zone_utc_offset=-7 -County "SD, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600430.epw site_zip_code=57328 site_time_zone_utc_offset=-6 -County "SD, Edmunds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600450.epw site_zip_code=57451 site_time_zone_utc_offset=-6 -County "SD, Fall River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600470.epw site_zip_code=57747 site_time_zone_utc_offset=-7 -County "SD, Faulk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600490.epw site_zip_code=57438 site_time_zone_utc_offset=-6 -County "SD, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600510.epw site_zip_code=57252 site_time_zone_utc_offset=-6 -County "SD, Gregory County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600530.epw site_zip_code=57533 site_time_zone_utc_offset=-6 -County "SD, Haakon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600550.epw site_zip_code=57552 site_time_zone_utc_offset=-7 -County "SD, Hamlin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600570.epw site_zip_code=57223 site_time_zone_utc_offset=-6 -County "SD, Hand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600590.epw site_zip_code=57362 site_time_zone_utc_offset=-6 -County "SD, Hanson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600610.epw site_zip_code=57311 site_time_zone_utc_offset=-6 -County "SD, Harding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600630.epw site_zip_code=57720 site_time_zone_utc_offset=-7 -County "SD, Hughes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600650.epw site_zip_code=57501 site_time_zone_utc_offset=-6 -County "SD, Hutchinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600670.epw site_zip_code=57366 site_time_zone_utc_offset=-6 -County "SD, Hyde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600690.epw site_zip_code=57345 site_time_zone_utc_offset=-6 -County "SD, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600710.epw site_zip_code=57543 site_time_zone_utc_offset=-7 -County "SD, Jerauld County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600730.epw site_zip_code=57382 site_time_zone_utc_offset=-6 -County "SD, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600750.epw site_zip_code=57559 site_time_zone_utc_offset=-6 -County "SD, Kingsbury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600770.epw site_zip_code=57231 site_time_zone_utc_offset=-6 -County "SD, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600790.epw site_zip_code=57042 site_time_zone_utc_offset=-6 -County "SD, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600810.epw site_zip_code=57783 site_time_zone_utc_offset=-7 -County "SD, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600830.epw site_zip_code=57108 site_time_zone_utc_offset=-6 -County "SD, Lyman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600850.epw site_zip_code=57569 site_time_zone_utc_offset=-6 -County "SD, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600910.epw site_zip_code=57430 site_time_zone_utc_offset=-6 -County "SD, McCook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600870.epw site_zip_code=57058 site_time_zone_utc_offset=-6 -County "SD, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600890.epw site_zip_code=57437 site_time_zone_utc_offset=-6 -County "SD, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600930.epw site_zip_code=57785 site_time_zone_utc_offset=-7 -County "SD, Mellette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600950.epw site_zip_code=57579 site_time_zone_utc_offset=-6 -County "SD, Miner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600970.epw site_zip_code=57349 site_time_zone_utc_offset=-6 -County "SD, Minnehaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600990.epw site_zip_code=57106 site_time_zone_utc_offset=-6 -County "SD, Moody County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601010.epw site_zip_code=57028 site_time_zone_utc_offset=-6 -County "SD, Oglala Lakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601020.epw site_zip_code=57770 site_time_zone_utc_offset=-7 -County "SD, Pennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601030.epw site_zip_code=57701 site_time_zone_utc_offset=-7 -County "SD, Perkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601050.epw site_zip_code=57638 site_time_zone_utc_offset=-7 -County "SD, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601070.epw site_zip_code=57442 site_time_zone_utc_offset=-6 -County "SD, Roberts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601090.epw site_zip_code=57262 site_time_zone_utc_offset=-6 -County "SD, Sanborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601110.epw site_zip_code=57385 site_time_zone_utc_offset=-6 -County "SD, Spink County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601150.epw site_zip_code=57469 site_time_zone_utc_offset=-6 -County "SD, Stanley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601170.epw site_zip_code=57532 site_time_zone_utc_offset=-7 -County "SD, Sully County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601190.epw site_zip_code=57564 site_time_zone_utc_offset=-6 -County "SD, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601210.epw site_zip_code=57555 site_time_zone_utc_offset=-6 -County "SD, Tripp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601230.epw site_zip_code=57580 site_time_zone_utc_offset=-6 -County "SD, Turner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601250.epw site_zip_code=57053 site_time_zone_utc_offset=-6 -County "SD, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601270.epw site_zip_code=57049 site_time_zone_utc_offset=-6 -County "SD, Walworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601290.epw site_zip_code=57601 site_time_zone_utc_offset=-6 -County "SD, Yankton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601350.epw site_zip_code=57078 site_time_zone_utc_offset=-6 -County "SD, Ziebach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601370.epw site_zip_code=57623 site_time_zone_utc_offset=-7 -County "TN, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700010.epw site_zip_code=37830 site_time_zone_utc_offset=-5 -County "TN, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700030.epw site_zip_code=37160 site_time_zone_utc_offset=-6 -County "TN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700050.epw site_zip_code=38320 site_time_zone_utc_offset=-6 -County "TN, Bledsoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700070.epw site_zip_code=37367 site_time_zone_utc_offset=-6 -County "TN, Blount County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700090.epw site_zip_code=37803 site_time_zone_utc_offset=-5 -County "TN, Bradley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700110.epw site_zip_code=37312 site_time_zone_utc_offset=-5 -County "TN, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700130.epw site_zip_code=37766 site_time_zone_utc_offset=-5 -County "TN, Cannon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700150.epw site_zip_code=37190 site_time_zone_utc_offset=-6 -County "TN, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700170.epw site_zip_code=38344 site_time_zone_utc_offset=-6 -County "TN, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700190.epw site_zip_code=37643 site_time_zone_utc_offset=-5 -County "TN, Cheatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700210.epw site_zip_code=37015 site_time_zone_utc_offset=-6 -County "TN, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700230.epw site_zip_code=38340 site_time_zone_utc_offset=-6 -County "TN, Claiborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700250.epw site_zip_code=37879 site_time_zone_utc_offset=-5 -County "TN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700270.epw site_zip_code=38551 site_time_zone_utc_offset=-6 -County "TN, Cocke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700290.epw site_zip_code=37821 site_time_zone_utc_offset=-5 -County "TN, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700310.epw site_zip_code=37355 site_time_zone_utc_offset=-6 -County "TN, Crockett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700330.epw site_zip_code=38006 site_time_zone_utc_offset=-6 -County "TN, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700350.epw site_zip_code=38555 site_time_zone_utc_offset=-6 -County "TN, Davidson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700370.epw site_zip_code=37013 site_time_zone_utc_offset=-6 -County "TN, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700410.epw site_zip_code=37166 site_time_zone_utc_offset=-6 -County "TN, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700390.epw site_zip_code=38363 site_time_zone_utc_offset=-6 -County "TN, Dickson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700430.epw site_zip_code=37055 site_time_zone_utc_offset=-6 -County "TN, Dyer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700450.epw site_zip_code=38024 site_time_zone_utc_offset=-6 -County "TN, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700470.epw site_zip_code=38060 site_time_zone_utc_offset=-6 -County "TN, Fentress County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700490.epw site_zip_code=38556 site_time_zone_utc_offset=-6 -County "TN, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700510.epw site_zip_code=37398 site_time_zone_utc_offset=-6 -County "TN, Gibson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700530.epw site_zip_code=38343 site_time_zone_utc_offset=-6 -County "TN, Giles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700550.epw site_zip_code=38478 site_time_zone_utc_offset=-6 -County "TN, Grainger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700570.epw site_zip_code=37861 site_time_zone_utc_offset=-5 -County "TN, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700590.epw site_zip_code=37743 site_time_zone_utc_offset=-5 -County "TN, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700610.epw site_zip_code=37387 site_time_zone_utc_offset=-6 -County "TN, Hamblen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700630.epw site_zip_code=37814 site_time_zone_utc_offset=-5 -County "TN, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700650.epw site_zip_code=37421 site_time_zone_utc_offset=-5 -County "TN, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700670.epw site_zip_code=37869 site_time_zone_utc_offset=-5 -County "TN, Hardeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700690.epw site_zip_code=38008 site_time_zone_utc_offset=-6 -County "TN, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700710.epw site_zip_code=38372 site_time_zone_utc_offset=-6 -County "TN, Hawkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700730.epw site_zip_code=37857 site_time_zone_utc_offset=-5 -County "TN, Haywood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700750.epw site_zip_code=38012 site_time_zone_utc_offset=-6 -County "TN, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700770.epw site_zip_code=38351 site_time_zone_utc_offset=-6 -County "TN, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700790.epw site_zip_code=38242 site_time_zone_utc_offset=-6 -County "TN, Hickman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700810.epw site_zip_code=37033 site_time_zone_utc_offset=-6 -County "TN, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700830.epw site_zip_code=37061 site_time_zone_utc_offset=-6 -County "TN, Humphreys County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700850.epw site_zip_code=37185 site_time_zone_utc_offset=-6 -County "TN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700870.epw site_zip_code=38562 site_time_zone_utc_offset=-6 -County "TN, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700890.epw site_zip_code=37725 site_time_zone_utc_offset=-5 -County "TN, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700910.epw site_zip_code=37683 site_time_zone_utc_offset=-5 -County "TN, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700930.epw site_zip_code=37920 site_time_zone_utc_offset=-5 -County "TN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700950.epw site_zip_code=38079 site_time_zone_utc_offset=-6 -County "TN, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700970.epw site_zip_code=38063 site_time_zone_utc_offset=-6 -County "TN, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700990.epw site_zip_code=38464 site_time_zone_utc_offset=-6 -County "TN, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701010.epw site_zip_code=38462 site_time_zone_utc_offset=-6 -County "TN, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701030.epw site_zip_code=37334 site_time_zone_utc_offset=-6 -County "TN, Loudon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701050.epw site_zip_code=37774 site_time_zone_utc_offset=-5 -County "TN, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701110.epw site_zip_code=37083 site_time_zone_utc_offset=-6 -County "TN, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701130.epw site_zip_code=38305 site_time_zone_utc_offset=-6 -County "TN, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701150.epw site_zip_code=37397 site_time_zone_utc_offset=-6 -County "TN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701170.epw site_zip_code=37091 site_time_zone_utc_offset=-6 -County "TN, Maury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701190.epw site_zip_code=38401 site_time_zone_utc_offset=-6 -County "TN, McMinn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701070.epw site_zip_code=37303 site_time_zone_utc_offset=-5 -County "TN, McNairy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701090.epw site_zip_code=38375 site_time_zone_utc_offset=-6 -County "TN, Meigs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701210.epw site_zip_code=37322 site_time_zone_utc_offset=-5 -County "TN, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701230.epw site_zip_code=37354 site_time_zone_utc_offset=-5 -County "TN, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701250.epw site_zip_code=37042 site_time_zone_utc_offset=-6 -County "TN, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701270.epw site_zip_code=37352 site_time_zone_utc_offset=-6 -County "TN, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701290.epw site_zip_code=37887 site_time_zone_utc_offset=-5 -County "TN, Obion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701310.epw site_zip_code=38261 site_time_zone_utc_offset=-6 -County "TN, Overton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701330.epw site_zip_code=38570 site_time_zone_utc_offset=-6 -County "TN, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701350.epw site_zip_code=37096 site_time_zone_utc_offset=-6 -County "TN, Pickett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701370.epw site_zip_code=38549 site_time_zone_utc_offset=-6 -County "TN, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701390.epw site_zip_code=37307 site_time_zone_utc_offset=-5 -County "TN, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701410.epw site_zip_code=38501 site_time_zone_utc_offset=-6 -County "TN, Rhea County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701430.epw site_zip_code=37321 site_time_zone_utc_offset=-5 -County "TN, Roane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701450.epw site_zip_code=37748 site_time_zone_utc_offset=-5 -County "TN, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701470.epw site_zip_code=37172 site_time_zone_utc_offset=-6 -County "TN, Rutherford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701490.epw site_zip_code=37128 site_time_zone_utc_offset=-6 -County "TN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701510.epw site_zip_code=37841 site_time_zone_utc_offset=-5 -County "TN, Sequatchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701530.epw site_zip_code=37327 site_time_zone_utc_offset=-6 -County "TN, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701550.epw site_zip_code=37876 site_time_zone_utc_offset=-5 -County "TN, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701570.epw site_zip_code=38111 site_time_zone_utc_offset=-6 -County "TN, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701590.epw site_zip_code=37030 site_time_zone_utc_offset=-6 -County "TN, Stewart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701610.epw site_zip_code=37058 site_time_zone_utc_offset=-6 -County "TN, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701630.epw site_zip_code=37660 site_time_zone_utc_offset=-5 -County "TN, Sumner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701650.epw site_zip_code=37075 site_time_zone_utc_offset=-6 -County "TN, Tipton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701670.epw site_zip_code=38019 site_time_zone_utc_offset=-6 -County "TN, Trousdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701690.epw site_zip_code=37074 site_time_zone_utc_offset=-6 -County "TN, Unicoi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701710.epw site_zip_code=37650 site_time_zone_utc_offset=-5 -County "TN, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701730.epw site_zip_code=37807 site_time_zone_utc_offset=-5 -County "TN, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701750.epw site_zip_code=38585 site_time_zone_utc_offset=-6 -County "TN, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701770.epw site_zip_code=37110 site_time_zone_utc_offset=-6 -County "TN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701790.epw site_zip_code=37604 site_time_zone_utc_offset=-5 -County "TN, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701810.epw site_zip_code=38485 site_time_zone_utc_offset=-6 -County "TN, Weakley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701830.epw site_zip_code=38237 site_time_zone_utc_offset=-6 -County "TN, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701850.epw site_zip_code=38583 site_time_zone_utc_offset=-6 -County "TN, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701870.epw site_zip_code=37064 site_time_zone_utc_offset=-6 -County "TN, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701890.epw site_zip_code=37122 site_time_zone_utc_offset=-6 -County "TX, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800010.epw site_zip_code=75803 site_time_zone_utc_offset=-6 -County "TX, Andrews County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800030.epw site_zip_code=79714 site_time_zone_utc_offset=-6 -County "TX, Angelina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800050.epw site_zip_code=75904 site_time_zone_utc_offset=-6 -County "TX, Aransas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800070.epw site_zip_code=78382 site_time_zone_utc_offset=-6 -County "TX, Archer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800090.epw site_zip_code=76310 site_time_zone_utc_offset=-6 -County "TX, Armstrong County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800110.epw site_zip_code=79019 site_time_zone_utc_offset=-6 -County "TX, Atascosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800130.epw site_zip_code=78064 site_time_zone_utc_offset=-6 -County "TX, Austin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800150.epw site_zip_code=77474 site_time_zone_utc_offset=-6 -County "TX, Bailey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800170.epw site_zip_code=79347 site_time_zone_utc_offset=-6 -County "TX, Bandera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800190.epw site_zip_code=78003 site_time_zone_utc_offset=-6 -County "TX, Bastrop County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800210.epw site_zip_code=78602 site_time_zone_utc_offset=-6 -County "TX, Baylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800230.epw site_zip_code=76380 site_time_zone_utc_offset=-6 -County "TX, Bee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800250.epw site_zip_code=78102 site_time_zone_utc_offset=-6 -County "TX, Bell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800270.epw site_zip_code=76502 site_time_zone_utc_offset=-6 -County "TX, Bexar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800290.epw site_zip_code=78245 site_time_zone_utc_offset=-6 -County "TX, Blanco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800310.epw site_zip_code=78606 site_time_zone_utc_offset=-6 -County "TX, Borden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800330.epw site_zip_code=79351 site_time_zone_utc_offset=-6 -County "TX, Bosque County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800350.epw site_zip_code=76634 site_time_zone_utc_offset=-6 -County "TX, Bowie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800370.epw site_zip_code=75501 site_time_zone_utc_offset=-6 -County "TX, Brazoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800390.epw site_zip_code=77584 site_time_zone_utc_offset=-6 -County "TX, Brazos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800410.epw site_zip_code=77845 site_time_zone_utc_offset=-6 -County "TX, Brewster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800430.epw site_zip_code=79830 site_time_zone_utc_offset=-6 -County "TX, Briscoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800450.epw site_zip_code=79257 site_time_zone_utc_offset=-6 -County "TX, Brooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800470.epw site_zip_code=78355 site_time_zone_utc_offset=-6 -County "TX, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800490.epw site_zip_code=76801 site_time_zone_utc_offset=-6 -County "TX, Burleson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800510.epw site_zip_code=77836 site_time_zone_utc_offset=-6 -County "TX, Burnet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800530.epw site_zip_code=78654 site_time_zone_utc_offset=-6 -County "TX, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800550.epw site_zip_code=78644 site_time_zone_utc_offset=-6 -County "TX, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800570.epw site_zip_code=77979 site_time_zone_utc_offset=-6 -County "TX, Callahan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800590.epw site_zip_code=79510 site_time_zone_utc_offset=-6 -County "TX, Cameron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800610.epw site_zip_code=78521 site_time_zone_utc_offset=-6 -County "TX, Camp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800630.epw site_zip_code=75686 site_time_zone_utc_offset=-6 -County "TX, Carson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800650.epw site_zip_code=79068 site_time_zone_utc_offset=-6 -County "TX, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800670.epw site_zip_code=75551 site_time_zone_utc_offset=-6 -County "TX, Castro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800690.epw site_zip_code=79027 site_time_zone_utc_offset=-6 -County "TX, Chambers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800710.epw site_zip_code=77523 site_time_zone_utc_offset=-6 -County "TX, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800730.epw site_zip_code=75766 site_time_zone_utc_offset=-6 -County "TX, Childress County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800750.epw site_zip_code=79201 site_time_zone_utc_offset=-6 -County "TX, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800770.epw site_zip_code=76365 site_time_zone_utc_offset=-6 -County "TX, Cochran County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800790.epw site_zip_code=79346 site_time_zone_utc_offset=-6 -County "TX, Coke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800810.epw site_zip_code=76945 site_time_zone_utc_offset=-6 -County "TX, Coleman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800830.epw site_zip_code=76834 site_time_zone_utc_offset=-6 -County "TX, Collin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800850.epw site_zip_code=75035 site_time_zone_utc_offset=-6 -County "TX, Collingsworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800870.epw site_zip_code=79095 site_time_zone_utc_offset=-6 -County "TX, Colorado County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800890.epw site_zip_code=78934 site_time_zone_utc_offset=-6 -County "TX, Comal County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800910.epw site_zip_code=78130 site_time_zone_utc_offset=-6 -County "TX, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800930.epw site_zip_code=76442 site_time_zone_utc_offset=-6 -County "TX, Concho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800950.epw site_zip_code=76837 site_time_zone_utc_offset=-6 -County "TX, Cooke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800970.epw site_zip_code=76240 site_time_zone_utc_offset=-6 -County "TX, Coryell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800990.epw site_zip_code=76522 site_time_zone_utc_offset=-6 -County "TX, Cottle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801010.epw site_zip_code=79248 site_time_zone_utc_offset=-6 -County "TX, Crane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801030.epw site_zip_code=79731 site_time_zone_utc_offset=-6 -County "TX, Crockett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801050.epw site_zip_code=76943 site_time_zone_utc_offset=-6 -County "TX, Crosby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801070.epw site_zip_code=79322 site_time_zone_utc_offset=-6 -County "TX, Culberson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801090.epw site_zip_code=79847 site_time_zone_utc_offset=-6 -County "TX, Dallam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801110.epw site_zip_code=79022 site_time_zone_utc_offset=-6 -County "TX, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801130.epw site_zip_code=75243 site_time_zone_utc_offset=-6 -County "TX, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801150.epw site_zip_code=79331 site_time_zone_utc_offset=-6 -County "TX, DeWitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801230.epw site_zip_code=77954 site_time_zone_utc_offset=-6 -County "TX, Deaf Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801170.epw site_zip_code=79045 site_time_zone_utc_offset=-6 -County "TX, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801190.epw site_zip_code=75432 site_time_zone_utc_offset=-6 -County "TX, Denton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801210.epw site_zip_code=75056 site_time_zone_utc_offset=-6 -County "TX, Dickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801250.epw site_zip_code=79370 site_time_zone_utc_offset=-6 -County "TX, Dimmit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801270.epw site_zip_code=78834 site_time_zone_utc_offset=-6 -County "TX, Donley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801290.epw site_zip_code=79226 site_time_zone_utc_offset=-6 -County "TX, Duval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801310.epw site_zip_code=78384 site_time_zone_utc_offset=-6 -County "TX, Eastland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801330.epw site_zip_code=76437 site_time_zone_utc_offset=-6 -County "TX, Ector County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801350.epw site_zip_code=79762 site_time_zone_utc_offset=-6 -County "TX, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801370.epw site_zip_code=78880 site_time_zone_utc_offset=-6 -County "TX, El Paso County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801410.epw site_zip_code=79936 site_time_zone_utc_offset=-7 -County "TX, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801390.epw site_zip_code=75165 site_time_zone_utc_offset=-6 -County "TX, Erath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801430.epw site_zip_code=76401 site_time_zone_utc_offset=-6 -County "TX, Falls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801450.epw site_zip_code=76661 site_time_zone_utc_offset=-6 -County "TX, Fannin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801470.epw site_zip_code=75418 site_time_zone_utc_offset=-6 -County "TX, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801490.epw site_zip_code=78945 site_time_zone_utc_offset=-6 -County "TX, Fisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801510.epw site_zip_code=79546 site_time_zone_utc_offset=-6 -County "TX, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801530.epw site_zip_code=79235 site_time_zone_utc_offset=-6 -County "TX, Foard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801550.epw site_zip_code=79227 site_time_zone_utc_offset=-6 -County "TX, Fort Bend County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801570.epw site_zip_code=77494 site_time_zone_utc_offset=-6 -County "TX, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801590.epw site_zip_code=75457 site_time_zone_utc_offset=-6 -County "TX, Freestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801610.epw site_zip_code=75860 site_time_zone_utc_offset=-6 -County "TX, Frio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801630.epw site_zip_code=78061 site_time_zone_utc_offset=-6 -County "TX, Gaines County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801650.epw site_zip_code=79360 site_time_zone_utc_offset=-6 -County "TX, Galveston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801670.epw site_zip_code=77573 site_time_zone_utc_offset=-6 -County "TX, Garza County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801690.epw site_zip_code=79356 site_time_zone_utc_offset=-6 -County "TX, Gillespie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801710.epw site_zip_code=78624 site_time_zone_utc_offset=-6 -County "TX, Glasscock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801730.epw site_zip_code=79739 site_time_zone_utc_offset=-6 -County "TX, Goliad County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801750.epw site_zip_code=77963 site_time_zone_utc_offset=-6 -County "TX, Gonzales County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801770.epw site_zip_code=78629 site_time_zone_utc_offset=-6 -County "TX, Gray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801790.epw site_zip_code=79065 site_time_zone_utc_offset=-6 -County "TX, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801810.epw site_zip_code=75092 site_time_zone_utc_offset=-6 -County "TX, Gregg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801830.epw site_zip_code=75605 site_time_zone_utc_offset=-6 -County "TX, Grimes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801850.epw site_zip_code=77868 site_time_zone_utc_offset=-6 -County "TX, Guadalupe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801870.epw site_zip_code=78155 site_time_zone_utc_offset=-6 -County "TX, Hale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801890.epw site_zip_code=79072 site_time_zone_utc_offset=-6 -County "TX, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801910.epw site_zip_code=79245 site_time_zone_utc_offset=-6 -County "TX, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801930.epw site_zip_code=76531 site_time_zone_utc_offset=-6 -County "TX, Hansford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801950.epw site_zip_code=79081 site_time_zone_utc_offset=-6 -County "TX, Hardeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801970.epw site_zip_code=79252 site_time_zone_utc_offset=-6 -County "TX, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801990.epw site_zip_code=77657 site_time_zone_utc_offset=-6 -County "TX, Harris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802010.epw site_zip_code=77449 site_time_zone_utc_offset=-6 -County "TX, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802030.epw site_zip_code=75672 site_time_zone_utc_offset=-6 -County "TX, Hartley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802050.epw site_zip_code=79022 site_time_zone_utc_offset=-6 -County "TX, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802070.epw site_zip_code=79521 site_time_zone_utc_offset=-6 -County "TX, Hays County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802090.epw site_zip_code=78666 site_time_zone_utc_offset=-6 -County "TX, Hemphill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802110.epw site_zip_code=79014 site_time_zone_utc_offset=-6 -County "TX, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802130.epw site_zip_code=75156 site_time_zone_utc_offset=-6 -County "TX, Hidalgo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802150.epw site_zip_code=78572 site_time_zone_utc_offset=-6 -County "TX, Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802170.epw site_zip_code=76692 site_time_zone_utc_offset=-6 -County "TX, Hockley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802190.epw site_zip_code=79336 site_time_zone_utc_offset=-6 -County "TX, Hood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802210.epw site_zip_code=76048 site_time_zone_utc_offset=-6 -County "TX, Hopkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802230.epw site_zip_code=75482 site_time_zone_utc_offset=-6 -County "TX, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802250.epw site_zip_code=75835 site_time_zone_utc_offset=-6 -County "TX, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802270.epw site_zip_code=79720 site_time_zone_utc_offset=-6 -County "TX, Hudspeth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802290.epw site_zip_code=79839 site_time_zone_utc_offset=-7 -County "TX, Hunt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802310.epw site_zip_code=75401 site_time_zone_utc_offset=-6 -County "TX, Hutchinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802330.epw site_zip_code=79007 site_time_zone_utc_offset=-6 -County "TX, Irion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802350.epw site_zip_code=76941 site_time_zone_utc_offset=-6 -County "TX, Jack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802370.epw site_zip_code=76458 site_time_zone_utc_offset=-6 -County "TX, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802390.epw site_zip_code=77957 site_time_zone_utc_offset=-6 -County "TX, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802410.epw site_zip_code=75951 site_time_zone_utc_offset=-6 -County "TX, Jeff Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802430.epw site_zip_code=79734 site_time_zone_utc_offset=-6 -County "TX, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802450.epw site_zip_code=77642 site_time_zone_utc_offset=-6 -County "TX, Jim Hogg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802470.epw site_zip_code=78361 site_time_zone_utc_offset=-6 -County "TX, Jim Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802490.epw site_zip_code=78332 site_time_zone_utc_offset=-6 -County "TX, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802510.epw site_zip_code=76028 site_time_zone_utc_offset=-6 -County "TX, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802530.epw site_zip_code=79501 site_time_zone_utc_offset=-6 -County "TX, Karnes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802550.epw site_zip_code=78119 site_time_zone_utc_offset=-6 -County "TX, Kaufman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802570.epw site_zip_code=75126 site_time_zone_utc_offset=-6 -County "TX, Kendall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802590.epw site_zip_code=78006 site_time_zone_utc_offset=-6 -County "TX, Kenedy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802610.epw site_zip_code=78385 site_time_zone_utc_offset=-6 -County "TX, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802630.epw site_zip_code=79549 site_time_zone_utc_offset=-6 -County "TX, Kerr County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802650.epw site_zip_code=78028 site_time_zone_utc_offset=-6 -County "TX, Kimble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802670.epw site_zip_code=76849 site_time_zone_utc_offset=-6 -County "TX, King County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802690.epw site_zip_code=79248 site_time_zone_utc_offset=-6 -County "TX, Kinney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802710.epw site_zip_code=78832 site_time_zone_utc_offset=-6 -County "TX, Kleberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802730.epw site_zip_code=78363 site_time_zone_utc_offset=-6 -County "TX, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802750.epw site_zip_code=76371 site_time_zone_utc_offset=-6 -County "TX, La Salle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802830.epw site_zip_code=78014 site_time_zone_utc_offset=-6 -County "TX, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802770.epw site_zip_code=75460 site_time_zone_utc_offset=-6 -County "TX, Lamb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802790.epw site_zip_code=79339 site_time_zone_utc_offset=-6 -County "TX, Lampasas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802810.epw site_zip_code=76550 site_time_zone_utc_offset=-6 -County "TX, Lavaca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802850.epw site_zip_code=77964 site_time_zone_utc_offset=-6 -County "TX, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802870.epw site_zip_code=78942 site_time_zone_utc_offset=-6 -County "TX, Leon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802890.epw site_zip_code=75831 site_time_zone_utc_offset=-6 -County "TX, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802910.epw site_zip_code=77327 site_time_zone_utc_offset=-6 -County "TX, Limestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802930.epw site_zip_code=76667 site_time_zone_utc_offset=-6 -County "TX, Lipscomb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802950.epw site_zip_code=79005 site_time_zone_utc_offset=-6 -County "TX, Live Oak County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802970.epw site_zip_code=78022 site_time_zone_utc_offset=-6 -County "TX, Llano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802990.epw site_zip_code=78657 site_time_zone_utc_offset=-6 -County "TX, Loving County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803010.epw site_zip_code=79754 site_time_zone_utc_offset=-6 -County "TX, Lubbock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803030.epw site_zip_code=79424 site_time_zone_utc_offset=-6 -County "TX, Lynn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803050.epw site_zip_code=79373 site_time_zone_utc_offset=-6 -County "TX, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803130.epw site_zip_code=77864 site_time_zone_utc_offset=-6 -County "TX, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803150.epw site_zip_code=75657 site_time_zone_utc_offset=-6 -County "TX, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803170.epw site_zip_code=79782 site_time_zone_utc_offset=-6 -County "TX, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803190.epw site_zip_code=76856 site_time_zone_utc_offset=-6 -County "TX, Matagorda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803210.epw site_zip_code=77414 site_time_zone_utc_offset=-6 -County "TX, Maverick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803230.epw site_zip_code=78852 site_time_zone_utc_offset=-6 -County "TX, McCulloch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803070.epw site_zip_code=76825 site_time_zone_utc_offset=-6 -County "TX, McLennan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803090.epw site_zip_code=76706 site_time_zone_utc_offset=-6 -County "TX, McMullen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803110.epw site_zip_code=78072 site_time_zone_utc_offset=-6 -County "TX, Medina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803250.epw site_zip_code=78861 site_time_zone_utc_offset=-6 -County "TX, Menard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803270.epw site_zip_code=76859 site_time_zone_utc_offset=-6 -County "TX, Midland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803290.epw site_zip_code=79705 site_time_zone_utc_offset=-6 -County "TX, Milam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803310.epw site_zip_code=76567 site_time_zone_utc_offset=-6 -County "TX, Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803330.epw site_zip_code=76844 site_time_zone_utc_offset=-6 -County "TX, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803350.epw site_zip_code=79512 site_time_zone_utc_offset=-6 -County "TX, Montague County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803370.epw site_zip_code=76230 site_time_zone_utc_offset=-6 -County "TX, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803390.epw site_zip_code=77386 site_time_zone_utc_offset=-6 -County "TX, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803410.epw site_zip_code=79029 site_time_zone_utc_offset=-6 -County "TX, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803430.epw site_zip_code=75638 site_time_zone_utc_offset=-6 -County "TX, Motley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803450.epw site_zip_code=79234 site_time_zone_utc_offset=-6 -County "TX, Nacogdoches County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803470.epw site_zip_code=75964 site_time_zone_utc_offset=-6 -County "TX, Navarro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803490.epw site_zip_code=75110 site_time_zone_utc_offset=-6 -County "TX, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803510.epw site_zip_code=75966 site_time_zone_utc_offset=-6 -County "TX, Nolan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803530.epw site_zip_code=79556 site_time_zone_utc_offset=-6 -County "TX, Nueces County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803550.epw site_zip_code=78414 site_time_zone_utc_offset=-6 -County "TX, Ochiltree County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803570.epw site_zip_code=79070 site_time_zone_utc_offset=-6 -County "TX, Oldham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803590.epw site_zip_code=79092 site_time_zone_utc_offset=-6 -County "TX, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803610.epw site_zip_code=77630 site_time_zone_utc_offset=-6 -County "TX, Palo Pinto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803630.epw site_zip_code=76067 site_time_zone_utc_offset=-6 -County "TX, Panola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803650.epw site_zip_code=75633 site_time_zone_utc_offset=-6 -County "TX, Parker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803670.epw site_zip_code=76087 site_time_zone_utc_offset=-6 -County "TX, Parmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803690.epw site_zip_code=79035 site_time_zone_utc_offset=-6 -County "TX, Pecos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803710.epw site_zip_code=79735 site_time_zone_utc_offset=-6 -County "TX, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803730.epw site_zip_code=77351 site_time_zone_utc_offset=-6 -County "TX, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803750.epw site_zip_code=79107 site_time_zone_utc_offset=-6 -County "TX, Presidio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803770.epw site_zip_code=79845 site_time_zone_utc_offset=-6 -County "TX, Rains County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803790.epw site_zip_code=75440 site_time_zone_utc_offset=-6 -County "TX, Randall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803810.epw site_zip_code=79109 site_time_zone_utc_offset=-6 -County "TX, Reagan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803830.epw site_zip_code=76932 site_time_zone_utc_offset=-6 -County "TX, Real County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803850.epw site_zip_code=78873 site_time_zone_utc_offset=-6 -County "TX, Red River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803870.epw site_zip_code=75426 site_time_zone_utc_offset=-6 -County "TX, Reeves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803890.epw site_zip_code=79772 site_time_zone_utc_offset=-6 -County "TX, Refugio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803910.epw site_zip_code=78377 site_time_zone_utc_offset=-6 -County "TX, Roberts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803930.epw site_zip_code=79059 site_time_zone_utc_offset=-6 -County "TX, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803950.epw site_zip_code=77859 site_time_zone_utc_offset=-6 -County "TX, Rockwall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803970.epw site_zip_code=75087 site_time_zone_utc_offset=-6 -County "TX, Runnels County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803990.epw site_zip_code=76821 site_time_zone_utc_offset=-6 -County "TX, Rusk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804010.epw site_zip_code=75652 site_time_zone_utc_offset=-6 -County "TX, Sabine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804030.epw site_zip_code=75948 site_time_zone_utc_offset=-6 -County "TX, San Augustine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804050.epw site_zip_code=75972 site_time_zone_utc_offset=-6 -County "TX, San Jacinto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804070.epw site_zip_code=77331 site_time_zone_utc_offset=-6 -County "TX, San Patricio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804090.epw site_zip_code=78374 site_time_zone_utc_offset=-6 -County "TX, San Saba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804110.epw site_zip_code=76877 site_time_zone_utc_offset=-6 -County "TX, Schleicher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804130.epw site_zip_code=76936 site_time_zone_utc_offset=-6 -County "TX, Scurry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804150.epw site_zip_code=79549 site_time_zone_utc_offset=-6 -County "TX, Shackelford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804170.epw site_zip_code=76430 site_time_zone_utc_offset=-6 -County "TX, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804190.epw site_zip_code=75935 site_time_zone_utc_offset=-6 -County "TX, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804210.epw site_zip_code=79084 site_time_zone_utc_offset=-6 -County "TX, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804230.epw site_zip_code=75703 site_time_zone_utc_offset=-6 -County "TX, Somervell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804250.epw site_zip_code=76043 site_time_zone_utc_offset=-6 -County "TX, Starr County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804270.epw site_zip_code=78582 site_time_zone_utc_offset=-6 -County "TX, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804290.epw site_zip_code=76424 site_time_zone_utc_offset=-6 -County "TX, Sterling County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804310.epw site_zip_code=76951 site_time_zone_utc_offset=-6 -County "TX, Stonewall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804330.epw site_zip_code=79502 site_time_zone_utc_offset=-6 -County "TX, Sutton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804350.epw site_zip_code=76950 site_time_zone_utc_offset=-6 -County "TX, Swisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804370.epw site_zip_code=79088 site_time_zone_utc_offset=-6 -County "TX, Tarrant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804390.epw site_zip_code=76244 site_time_zone_utc_offset=-6 -County "TX, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804410.epw site_zip_code=79605 site_time_zone_utc_offset=-6 -County "TX, Terrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804430.epw site_zip_code=78851 site_time_zone_utc_offset=-6 -County "TX, Terry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804450.epw site_zip_code=79316 site_time_zone_utc_offset=-6 -County "TX, Throckmorton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804470.epw site_zip_code=76483 site_time_zone_utc_offset=-6 -County "TX, Titus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804490.epw site_zip_code=75455 site_time_zone_utc_offset=-6 -County "TX, Tom Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804510.epw site_zip_code=76904 site_time_zone_utc_offset=-6 -County "TX, Travis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804530.epw site_zip_code=78660 site_time_zone_utc_offset=-6 -County "TX, Trinity County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804550.epw site_zip_code=75862 site_time_zone_utc_offset=-6 -County "TX, Tyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804570.epw site_zip_code=75979 site_time_zone_utc_offset=-6 -County "TX, Upshur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804590.epw site_zip_code=75644 site_time_zone_utc_offset=-6 -County "TX, Upton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804610.epw site_zip_code=79778 site_time_zone_utc_offset=-6 -County "TX, Uvalde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804630.epw site_zip_code=78801 site_time_zone_utc_offset=-6 -County "TX, Val Verde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804650.epw site_zip_code=78840 site_time_zone_utc_offset=-6 -County "TX, Van Zandt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804670.epw site_zip_code=75103 site_time_zone_utc_offset=-6 -County "TX, Victoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804690.epw site_zip_code=77901 site_time_zone_utc_offset=-6 -County "TX, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804710.epw site_zip_code=77340 site_time_zone_utc_offset=-6 -County "TX, Waller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804730.epw site_zip_code=77423 site_time_zone_utc_offset=-6 -County "TX, Ward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804750.epw site_zip_code=79756 site_time_zone_utc_offset=-6 -County "TX, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804770.epw site_zip_code=77833 site_time_zone_utc_offset=-6 -County "TX, Webb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804790.epw site_zip_code=78045 site_time_zone_utc_offset=-6 -County "TX, Wharton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804810.epw site_zip_code=77437 site_time_zone_utc_offset=-6 -County "TX, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804830.epw site_zip_code=79079 site_time_zone_utc_offset=-6 -County "TX, Wichita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804850.epw site_zip_code=76311 site_time_zone_utc_offset=-6 -County "TX, Wilbarger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804870.epw site_zip_code=76384 site_time_zone_utc_offset=-6 -County "TX, Willacy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804890.epw site_zip_code=78580 site_time_zone_utc_offset=-6 -County "TX, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804910.epw site_zip_code=78641 site_time_zone_utc_offset=-6 -County "TX, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804930.epw site_zip_code=78114 site_time_zone_utc_offset=-6 -County "TX, Winkler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804950.epw site_zip_code=79745 site_time_zone_utc_offset=-6 -County "TX, Wise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804970.epw site_zip_code=76234 site_time_zone_utc_offset=-6 -County "TX, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804990.epw site_zip_code=75773 site_time_zone_utc_offset=-6 -County "TX, Yoakum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805010.epw site_zip_code=79323 site_time_zone_utc_offset=-6 -County "TX, Young County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805030.epw site_zip_code=76450 site_time_zone_utc_offset=-6 -County "TX, Zapata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805050.epw site_zip_code=78076 site_time_zone_utc_offset=-6 -County "TX, Zavala County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805070.epw site_zip_code=78839 site_time_zone_utc_offset=-6 -County "UT, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900010.epw site_zip_code=84713 site_time_zone_utc_offset=-7 -County "UT, Box Elder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900030.epw site_zip_code=84302 site_time_zone_utc_offset=-7 -County "UT, Cache County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900050.epw site_zip_code=84321 site_time_zone_utc_offset=-7 -County "UT, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900070.epw site_zip_code=84501 site_time_zone_utc_offset=-7 -County "UT, Daggett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900090.epw site_zip_code=84046 site_time_zone_utc_offset=-7 -County "UT, Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900110.epw site_zip_code=84015 site_time_zone_utc_offset=-7 -County "UT, Duchesne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900130.epw site_zip_code=84066 site_time_zone_utc_offset=-7 -County "UT, Emery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900150.epw site_zip_code=84528 site_time_zone_utc_offset=-7 -County "UT, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900170.epw site_zip_code=84726 site_time_zone_utc_offset=-7 -County "UT, Grand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900190.epw site_zip_code=84532 site_time_zone_utc_offset=-7 -County "UT, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900210.epw site_zip_code=84721 site_time_zone_utc_offset=-7 -County "UT, Juab County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900230.epw site_zip_code=84648 site_time_zone_utc_offset=-7 -County "UT, Kane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900250.epw site_zip_code=84741 site_time_zone_utc_offset=-7 -County "UT, Millard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900270.epw site_zip_code=84624 site_time_zone_utc_offset=-7 -County "UT, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900290.epw site_zip_code=84050 site_time_zone_utc_offset=-7 -County "UT, Piute County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900310.epw site_zip_code=84750 site_time_zone_utc_offset=-7 -County "UT, Rich County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900330.epw site_zip_code=84028 site_time_zone_utc_offset=-7 -County "UT, Salt Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900350.epw site_zip_code=84096 site_time_zone_utc_offset=-7 -County "UT, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900370.epw site_zip_code=84511 site_time_zone_utc_offset=-7 -County "UT, Sanpete County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900390.epw site_zip_code=84627 site_time_zone_utc_offset=-7 -County "UT, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900410.epw site_zip_code=84701 site_time_zone_utc_offset=-7 -County "UT, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900430.epw site_zip_code=84098 site_time_zone_utc_offset=-7 -County "UT, Tooele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900450.epw site_zip_code=84074 site_time_zone_utc_offset=-7 -County "UT, Uintah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900470.epw site_zip_code=84078 site_time_zone_utc_offset=-7 -County "UT, Utah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900490.epw site_zip_code=84043 site_time_zone_utc_offset=-7 -County "UT, Wasatch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900510.epw site_zip_code=84032 site_time_zone_utc_offset=-7 -County "UT, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900530.epw site_zip_code=84770 site_time_zone_utc_offset=-7 -County "UT, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900550.epw site_zip_code=84775 site_time_zone_utc_offset=-7 -County "UT, Weber County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900570.epw site_zip_code=84404 site_time_zone_utc_offset=-7 -County "VA, Accomack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100010.epw site_zip_code=23336 site_time_zone_utc_offset=-5 -County "VA, Albemarle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100030.epw site_zip_code=22901 site_time_zone_utc_offset=-5 -County "VA, Alexandria city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105100.epw site_zip_code=22304 site_time_zone_utc_offset=-5 -County "VA, Alleghany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100050.epw site_zip_code=24426 site_time_zone_utc_offset=-5 -County "VA, Amelia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100070.epw site_zip_code=23002 site_time_zone_utc_offset=-5 -County "VA, Amherst County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100090.epw site_zip_code=24572 site_time_zone_utc_offset=-5 -County "VA, Appomattox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100110.epw site_zip_code=24522 site_time_zone_utc_offset=-5 -County "VA, Arlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100130.epw site_zip_code=22204 site_time_zone_utc_offset=-5 -County "VA, Augusta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100150.epw site_zip_code=24401 site_time_zone_utc_offset=-5 -County "VA, Bath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100170.epw site_zip_code=24460 site_time_zone_utc_offset=-5 -County "VA, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100190.epw site_zip_code=24551 site_time_zone_utc_offset=-5 -County "VA, Bland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100210.epw site_zip_code=24315 site_time_zone_utc_offset=-5 -County "VA, Botetourt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100230.epw site_zip_code=24175 site_time_zone_utc_offset=-5 -County "VA, Bristol city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105200.epw site_zip_code=24201 site_time_zone_utc_offset=-5 -County "VA, Brunswick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100250.epw site_zip_code=23868 site_time_zone_utc_offset=-5 -County "VA, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100270.epw site_zip_code=24614 site_time_zone_utc_offset=-5 -County "VA, Buckingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100290.epw site_zip_code=23936 site_time_zone_utc_offset=-5 -County "VA, Buena Vista city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105300.epw site_zip_code=24416 site_time_zone_utc_offset=-5 -County "VA, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100310.epw site_zip_code=24502 site_time_zone_utc_offset=-5 -County "VA, Caroline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100330.epw site_zip_code=22546 site_time_zone_utc_offset=-5 -County "VA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100350.epw site_zip_code=24343 site_time_zone_utc_offset=-5 -County "VA, Charles City County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100360.epw site_zip_code=23030 site_time_zone_utc_offset=-5 -County "VA, Charlotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100370.epw site_zip_code=23923 site_time_zone_utc_offset=-5 -County "VA, Charlottesville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105400.epw site_zip_code=22903 site_time_zone_utc_offset=-5 -County "VA, Chesapeake city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105500.epw site_zip_code=23320 site_time_zone_utc_offset=-5 -County "VA, Chesterfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100410.epw site_zip_code=23112 site_time_zone_utc_offset=-5 -County "VA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100430.epw site_zip_code=22611 site_time_zone_utc_offset=-5 -County "VA, Colonial Heights city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105700.epw site_zip_code=23834 site_time_zone_utc_offset=-5 -County "VA, Covington city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105800.epw site_zip_code=24426 site_time_zone_utc_offset=-5 -County "VA, Craig County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100450.epw site_zip_code=24127 site_time_zone_utc_offset=-5 -County "VA, Culpeper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100470.epw site_zip_code=22701 site_time_zone_utc_offset=-5 -County "VA, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100490.epw site_zip_code=23040 site_time_zone_utc_offset=-5 -County "VA, Danville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105900.epw site_zip_code=24541 site_time_zone_utc_offset=-5 -County "VA, Dickenson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100510.epw site_zip_code=24228 site_time_zone_utc_offset=-5 -County "VA, Dinwiddie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100530.epw site_zip_code=23803 site_time_zone_utc_offset=-5 -County "VA, Emporia city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105950.epw site_zip_code=23847 site_time_zone_utc_offset=-5 -County "VA, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100570.epw site_zip_code=22560 site_time_zone_utc_offset=-5 -County "VA, Fairfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100590.epw site_zip_code=20171 site_time_zone_utc_offset=-5 -County "VA, Fairfax city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106000.epw site_zip_code=22030 site_time_zone_utc_offset=-5 -County "VA, Falls Church city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106100.epw site_zip_code=22046 site_time_zone_utc_offset=-5 -County "VA, Fauquier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100610.epw site_zip_code=20187 site_time_zone_utc_offset=-5 -County "VA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100630.epw site_zip_code=24091 site_time_zone_utc_offset=-5 -County "VA, Fluvanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100650.epw site_zip_code=22963 site_time_zone_utc_offset=-5 -County "VA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100670.epw site_zip_code=24151 site_time_zone_utc_offset=-5 -County "VA, Franklin city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106200.epw site_zip_code=23851 site_time_zone_utc_offset=-5 -County "VA, Frederick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100690.epw site_zip_code=22602 site_time_zone_utc_offset=-5 -County "VA, Fredericksburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106300.epw site_zip_code=22401 site_time_zone_utc_offset=-5 -County "VA, Galax city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106400.epw site_zip_code=24333 site_time_zone_utc_offset=-5 -County "VA, Giles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100710.epw site_zip_code=24134 site_time_zone_utc_offset=-5 -County "VA, Gloucester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100730.epw site_zip_code=23061 site_time_zone_utc_offset=-5 -County "VA, Goochland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100750.epw site_zip_code=23103 site_time_zone_utc_offset=-5 -County "VA, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100770.epw site_zip_code=24333 site_time_zone_utc_offset=-5 -County "VA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100790.epw site_zip_code=22968 site_time_zone_utc_offset=-5 -County "VA, Greensville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100810.epw site_zip_code=23847 site_time_zone_utc_offset=-5 -County "VA, Halifax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100830.epw site_zip_code=24592 site_time_zone_utc_offset=-5 -County "VA, Hampton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106500.epw site_zip_code=23666 site_time_zone_utc_offset=-5 -County "VA, Hanover County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100850.epw site_zip_code=23111 site_time_zone_utc_offset=-5 -County "VA, Harrisonburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106600.epw site_zip_code=22801 site_time_zone_utc_offset=-5 -County "VA, Henrico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100870.epw site_zip_code=23228 site_time_zone_utc_offset=-5 -County "VA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100890.epw site_zip_code=24112 site_time_zone_utc_offset=-5 -County "VA, Highland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100910.epw site_zip_code=24465 site_time_zone_utc_offset=-5 -County "VA, Hopewell city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106700.epw site_zip_code=23860 site_time_zone_utc_offset=-5 -County "VA, Isle of Wight County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100930.epw site_zip_code=23430 site_time_zone_utc_offset=-5 -County "VA, James City County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100950.epw site_zip_code=23188 site_time_zone_utc_offset=-5 -County "VA, King George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100990.epw site_zip_code=22485 site_time_zone_utc_offset=-5 -County "VA, King William County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101010.epw site_zip_code=23009 site_time_zone_utc_offset=-5 -County "VA, King and Queen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100970.epw site_zip_code=23156 site_time_zone_utc_offset=-5 -County "VA, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101030.epw site_zip_code=22503 site_time_zone_utc_offset=-5 -County "VA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101050.epw site_zip_code=24263 site_time_zone_utc_offset=-5 -County "VA, Lexington city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106780.epw site_zip_code=24450 site_time_zone_utc_offset=-5 -County "VA, Loudoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101070.epw site_zip_code=20189 site_time_zone_utc_offset=-5 -County "VA, Louisa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101090.epw site_zip_code=23093 site_time_zone_utc_offset=-5 -County "VA, Lunenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101110.epw site_zip_code=23974 site_time_zone_utc_offset=-5 -County "VA, Lynchburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106800.epw site_zip_code=24502 site_time_zone_utc_offset=-5 -County "VA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101130.epw site_zip_code=22727 site_time_zone_utc_offset=-5 -County "VA, Manassas Park city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106850.epw site_zip_code=20111 site_time_zone_utc_offset=-5 -County "VA, Manassas city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106830.epw site_zip_code=20110 site_time_zone_utc_offset=-5 -County "VA, Martinsville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106900.epw site_zip_code=24112 site_time_zone_utc_offset=-5 -County "VA, Mathews County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101150.epw site_zip_code=23109 site_time_zone_utc_offset=-5 -County "VA, Mecklenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101170.epw site_zip_code=23970 site_time_zone_utc_offset=-5 -County "VA, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101190.epw site_zip_code=23043 site_time_zone_utc_offset=-5 -County "VA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101210.epw site_zip_code=24060 site_time_zone_utc_offset=-5 -County "VA, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101250.epw site_zip_code=22967 site_time_zone_utc_offset=-5 -County "VA, New Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101270.epw site_zip_code=23141 site_time_zone_utc_offset=-5 -County "VA, Newport News city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107000.epw site_zip_code=23608 site_time_zone_utc_offset=-5 -County "VA, Norfolk city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107100.epw site_zip_code=23503 site_time_zone_utc_offset=-5 -County "VA, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101310.epw site_zip_code=23310 site_time_zone_utc_offset=-5 -County "VA, Northumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101330.epw site_zip_code=22473 site_time_zone_utc_offset=-5 -County "VA, Norton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107200.epw site_zip_code=24273 site_time_zone_utc_offset=-5 -County "VA, Nottoway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101350.epw site_zip_code=23824 site_time_zone_utc_offset=-5 -County "VA, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101370.epw site_zip_code=22508 site_time_zone_utc_offset=-5 -County "VA, Page County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101390.epw site_zip_code=22835 site_time_zone_utc_offset=-5 -County "VA, Patrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101410.epw site_zip_code=24171 site_time_zone_utc_offset=-5 -County "VA, Petersburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107300.epw site_zip_code=23803 site_time_zone_utc_offset=-5 -County "VA, Pittsylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101430.epw site_zip_code=24540 site_time_zone_utc_offset=-5 -County "VA, Poquoson city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107350.epw site_zip_code=23662 site_time_zone_utc_offset=-5 -County "VA, Portsmouth city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107400.epw site_zip_code=23703 site_time_zone_utc_offset=-5 -County "VA, Powhatan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101450.epw site_zip_code=23139 site_time_zone_utc_offset=-5 -County "VA, Prince Edward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101470.epw site_zip_code=23901 site_time_zone_utc_offset=-5 -County "VA, Prince George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101490.epw site_zip_code=23875 site_time_zone_utc_offset=-5 -County "VA, Prince William County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101530.epw site_zip_code=22191 site_time_zone_utc_offset=-5 -County "VA, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101550.epw site_zip_code=24301 site_time_zone_utc_offset=-5 -County "VA, Radford city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107500.epw site_zip_code=24141 site_time_zone_utc_offset=-5 -County "VA, Rappahannock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101570.epw site_zip_code=20106 site_time_zone_utc_offset=-5 -County "VA, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101590.epw site_zip_code=22572 site_time_zone_utc_offset=-5 -County "VA, Richmond city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107600.epw site_zip_code=23220 site_time_zone_utc_offset=-5 -County "VA, Roanoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101610.epw site_zip_code=24018 site_time_zone_utc_offset=-5 -County "VA, Roanoke city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107700.epw site_zip_code=24017 site_time_zone_utc_offset=-5 -County "VA, Rockbridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101630.epw site_zip_code=24450 site_time_zone_utc_offset=-5 -County "VA, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101650.epw site_zip_code=22801 site_time_zone_utc_offset=-5 -County "VA, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101670.epw site_zip_code=24266 site_time_zone_utc_offset=-5 -County "VA, Salem city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107750.epw site_zip_code=24153 site_time_zone_utc_offset=-5 -County "VA, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101690.epw site_zip_code=24251 site_time_zone_utc_offset=-5 -County "VA, Shenandoah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101710.epw site_zip_code=22657 site_time_zone_utc_offset=-5 -County "VA, Smyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101730.epw site_zip_code=24354 site_time_zone_utc_offset=-5 -County "VA, Southampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101750.epw site_zip_code=23851 site_time_zone_utc_offset=-5 -County "VA, Spotsylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101770.epw site_zip_code=22407 site_time_zone_utc_offset=-5 -County "VA, Stafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101790.epw site_zip_code=22554 site_time_zone_utc_offset=-5 -County "VA, Staunton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107900.epw site_zip_code=24401 site_time_zone_utc_offset=-5 -County "VA, Suffolk city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108000.epw site_zip_code=23434 site_time_zone_utc_offset=-5 -County "VA, Surry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101810.epw site_zip_code=23883 site_time_zone_utc_offset=-5 -County "VA, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101830.epw site_zip_code=23890 site_time_zone_utc_offset=-5 -County "VA, Tazewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101850.epw site_zip_code=24605 site_time_zone_utc_offset=-5 -County "VA, Virginia Beach city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108100.epw site_zip_code=23462 site_time_zone_utc_offset=-5 -County "VA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101870.epw site_zip_code=22630 site_time_zone_utc_offset=-5 -County "VA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101910.epw site_zip_code=24210 site_time_zone_utc_offset=-5 -County "VA, Waynesboro city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108200.epw site_zip_code=22980 site_time_zone_utc_offset=-5 -County "VA, Westmoreland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101930.epw site_zip_code=22443 site_time_zone_utc_offset=-5 -County "VA, Williamsburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108300.epw site_zip_code=23185 site_time_zone_utc_offset=-5 -County "VA, Winchester city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108400.epw site_zip_code=22601 site_time_zone_utc_offset=-5 -County "VA, Wise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101950.epw site_zip_code=24219 site_time_zone_utc_offset=-5 -County "VA, Wythe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101970.epw site_zip_code=24382 site_time_zone_utc_offset=-5 -County "VA, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101990.epw site_zip_code=23692 site_time_zone_utc_offset=-5 -County "VT, Addison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000010.epw site_zip_code=05753 site_time_zone_utc_offset=-5 -County "VT, Bennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000030.epw site_zip_code=05201 site_time_zone_utc_offset=-5 -County "VT, Caledonia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000050.epw site_zip_code=05819 site_time_zone_utc_offset=-5 -County "VT, Chittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000070.epw site_zip_code=05401 site_time_zone_utc_offset=-5 -County "VT, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000090.epw site_zip_code=05906 site_time_zone_utc_offset=-5 -County "VT, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000110.epw site_zip_code=05478 site_time_zone_utc_offset=-5 -County "VT, Grand Isle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000130.epw site_zip_code=05440 site_time_zone_utc_offset=-5 -County "VT, Lamoille County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000150.epw site_zip_code=05672 site_time_zone_utc_offset=-5 -County "VT, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000170.epw site_zip_code=05060 site_time_zone_utc_offset=-5 -County "VT, Orleans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000190.epw site_zip_code=05855 site_time_zone_utc_offset=-5 -County "VT, Rutland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000210.epw site_zip_code=05701 site_time_zone_utc_offset=-5 -County "VT, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000230.epw site_zip_code=05641 site_time_zone_utc_offset=-5 -County "VT, Windham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000250.epw site_zip_code=05301 site_time_zone_utc_offset=-5 -County "VT, Windsor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000270.epw site_zip_code=05156 site_time_zone_utc_offset=-5 -County "WA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300010.epw site_zip_code=99344 site_time_zone_utc_offset=-8 -County "WA, Asotin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300030.epw site_zip_code=99403 site_time_zone_utc_offset=-8 -County "WA, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300050.epw site_zip_code=99336 site_time_zone_utc_offset=-8 -County "WA, Chelan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300070.epw site_zip_code=98801 site_time_zone_utc_offset=-8 -County "WA, Clallam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300090.epw site_zip_code=98382 site_time_zone_utc_offset=-8 -County "WA, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300110.epw site_zip_code=98682 site_time_zone_utc_offset=-8 -County "WA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300130.epw site_zip_code=99328 site_time_zone_utc_offset=-8 -County "WA, Cowlitz County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300150.epw site_zip_code=98632 site_time_zone_utc_offset=-8 -County "WA, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300170.epw site_zip_code=98802 site_time_zone_utc_offset=-8 -County "WA, Ferry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300190.epw site_zip_code=99166 site_time_zone_utc_offset=-8 -County "WA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300210.epw site_zip_code=99301 site_time_zone_utc_offset=-8 -County "WA, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300230.epw site_zip_code=99347 site_time_zone_utc_offset=-8 -County "WA, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300250.epw site_zip_code=98837 site_time_zone_utc_offset=-8 -County "WA, Grays Harbor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300270.epw site_zip_code=98520 site_time_zone_utc_offset=-8 -County "WA, Island County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300290.epw site_zip_code=98277 site_time_zone_utc_offset=-8 -County "WA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300310.epw site_zip_code=98368 site_time_zone_utc_offset=-8 -County "WA, King County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300330.epw site_zip_code=98052 site_time_zone_utc_offset=-8 -County "WA, Kitsap County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300350.epw site_zip_code=98312 site_time_zone_utc_offset=-8 -County "WA, Kittitas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300370.epw site_zip_code=98926 site_time_zone_utc_offset=-8 -County "WA, Klickitat County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300390.epw site_zip_code=98672 site_time_zone_utc_offset=-8 -County "WA, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300410.epw site_zip_code=98531 site_time_zone_utc_offset=-8 -County "WA, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300430.epw site_zip_code=99122 site_time_zone_utc_offset=-8 -County "WA, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300450.epw site_zip_code=98584 site_time_zone_utc_offset=-8 -County "WA, Okanogan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300470.epw site_zip_code=98841 site_time_zone_utc_offset=-8 -County "WA, Pacific County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300490.epw site_zip_code=98640 site_time_zone_utc_offset=-8 -County "WA, Pend Oreille County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300510.epw site_zip_code=99156 site_time_zone_utc_offset=-8 -County "WA, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300530.epw site_zip_code=98391 site_time_zone_utc_offset=-8 -County "WA, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300550.epw site_zip_code=98250 site_time_zone_utc_offset=-8 -County "WA, Skagit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300570.epw site_zip_code=98273 site_time_zone_utc_offset=-8 -County "WA, Skamania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300590.epw site_zip_code=98648 site_time_zone_utc_offset=-8 -County "WA, Snohomish County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300610.epw site_zip_code=98012 site_time_zone_utc_offset=-8 -County "WA, Spokane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300630.epw site_zip_code=99208 site_time_zone_utc_offset=-8 -County "WA, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300650.epw site_zip_code=99114 site_time_zone_utc_offset=-8 -County "WA, Thurston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300670.epw site_zip_code=98501 site_time_zone_utc_offset=-8 -County "WA, Wahkiakum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300690.epw site_zip_code=98612 site_time_zone_utc_offset=-8 -County "WA, Walla Walla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300710.epw site_zip_code=99362 site_time_zone_utc_offset=-8 -County "WA, Whatcom County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300730.epw site_zip_code=98225 site_time_zone_utc_offset=-8 -County "WA, Whitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300750.epw site_zip_code=99163 site_time_zone_utc_offset=-8 -County "WA, Yakima County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300770.epw site_zip_code=98902 site_time_zone_utc_offset=-8 -County "WI, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500010.epw site_zip_code=53934 site_time_zone_utc_offset=-6 -County "WI, Ashland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500030.epw site_zip_code=54806 site_time_zone_utc_offset=-6 -County "WI, Barron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500050.epw site_zip_code=54868 site_time_zone_utc_offset=-6 -County "WI, Bayfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500070.epw site_zip_code=54891 site_time_zone_utc_offset=-6 -County "WI, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500090.epw site_zip_code=54115 site_time_zone_utc_offset=-6 -County "WI, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500110.epw site_zip_code=54755 site_time_zone_utc_offset=-6 -County "WI, Burnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500130.epw site_zip_code=54830 site_time_zone_utc_offset=-6 -County "WI, Calumet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500150.epw site_zip_code=54915 site_time_zone_utc_offset=-6 -County "WI, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500170.epw site_zip_code=54729 site_time_zone_utc_offset=-6 -County "WI, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500190.epw site_zip_code=54456 site_time_zone_utc_offset=-6 -County "WI, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500210.epw site_zip_code=53901 site_time_zone_utc_offset=-6 -County "WI, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500230.epw site_zip_code=53821 site_time_zone_utc_offset=-6 -County "WI, Dane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500250.epw site_zip_code=53711 site_time_zone_utc_offset=-6 -County "WI, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500270.epw site_zip_code=53916 site_time_zone_utc_offset=-6 -County "WI, Door County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500290.epw site_zip_code=54235 site_time_zone_utc_offset=-6 -County "WI, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500310.epw site_zip_code=54880 site_time_zone_utc_offset=-6 -County "WI, Dunn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500330.epw site_zip_code=54751 site_time_zone_utc_offset=-6 -County "WI, Eau Claire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500350.epw site_zip_code=54703 site_time_zone_utc_offset=-6 -County "WI, Florence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500370.epw site_zip_code=54121 site_time_zone_utc_offset=-6 -County "WI, Fond du Lac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500390.epw site_zip_code=54935 site_time_zone_utc_offset=-6 -County "WI, Forest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500410.epw site_zip_code=54520 site_time_zone_utc_offset=-6 -County "WI, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500430.epw site_zip_code=53818 site_time_zone_utc_offset=-6 -County "WI, Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500450.epw site_zip_code=53566 site_time_zone_utc_offset=-6 -County "WI, Green Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500470.epw site_zip_code=54923 site_time_zone_utc_offset=-6 -County "WI, Iowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500490.epw site_zip_code=53533 site_time_zone_utc_offset=-6 -County "WI, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500510.epw site_zip_code=54547 site_time_zone_utc_offset=-6 -County "WI, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500530.epw site_zip_code=54615 site_time_zone_utc_offset=-6 -County "WI, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500550.epw site_zip_code=53538 site_time_zone_utc_offset=-6 -County "WI, Juneau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500570.epw site_zip_code=53948 site_time_zone_utc_offset=-6 -County "WI, Kenosha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500590.epw site_zip_code=53142 site_time_zone_utc_offset=-6 -County "WI, Kewaunee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500610.epw site_zip_code=54216 site_time_zone_utc_offset=-6 -County "WI, La Crosse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500630.epw site_zip_code=54601 site_time_zone_utc_offset=-6 -County "WI, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500650.epw site_zip_code=53530 site_time_zone_utc_offset=-6 -County "WI, Langlade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500670.epw site_zip_code=54409 site_time_zone_utc_offset=-6 -County "WI, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500690.epw site_zip_code=54452 site_time_zone_utc_offset=-6 -County "WI, Manitowoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500710.epw site_zip_code=54220 site_time_zone_utc_offset=-6 -County "WI, Marathon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500730.epw site_zip_code=54401 site_time_zone_utc_offset=-6 -County "WI, Marinette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500750.epw site_zip_code=54143 site_time_zone_utc_offset=-6 -County "WI, Marquette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500770.epw site_zip_code=53949 site_time_zone_utc_offset=-6 -County "WI, Menominee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500780.epw site_zip_code=54135 site_time_zone_utc_offset=-6 -County "WI, Milwaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500790.epw site_zip_code=53209 site_time_zone_utc_offset=-6 -County "WI, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500810.epw site_zip_code=54656 site_time_zone_utc_offset=-6 -County "WI, Oconto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500830.epw site_zip_code=54153 site_time_zone_utc_offset=-6 -County "WI, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500850.epw site_zip_code=54501 site_time_zone_utc_offset=-6 -County "WI, Outagamie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500870.epw site_zip_code=54911 site_time_zone_utc_offset=-6 -County "WI, Ozaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500890.epw site_zip_code=53092 site_time_zone_utc_offset=-6 -County "WI, Pepin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500910.epw site_zip_code=54736 site_time_zone_utc_offset=-6 -County "WI, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500930.epw site_zip_code=54022 site_time_zone_utc_offset=-6 -County "WI, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500950.epw site_zip_code=54001 site_time_zone_utc_offset=-6 -County "WI, Portage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500970.epw site_zip_code=54481 site_time_zone_utc_offset=-6 -County "WI, Price County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500990.epw site_zip_code=54555 site_time_zone_utc_offset=-6 -County "WI, Racine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501010.epw site_zip_code=53402 site_time_zone_utc_offset=-6 -County "WI, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501030.epw site_zip_code=53581 site_time_zone_utc_offset=-6 -County "WI, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501050.epw site_zip_code=53511 site_time_zone_utc_offset=-6 -County "WI, Rusk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501070.epw site_zip_code=54848 site_time_zone_utc_offset=-6 -County "WI, Sauk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501110.epw site_zip_code=53913 site_time_zone_utc_offset=-6 -County "WI, Sawyer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501130.epw site_zip_code=54843 site_time_zone_utc_offset=-6 -County "WI, Shawano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501150.epw site_zip_code=54166 site_time_zone_utc_offset=-6 -County "WI, Sheboygan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501170.epw site_zip_code=53081 site_time_zone_utc_offset=-6 -County "WI, St. Croix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501090.epw site_zip_code=54016 site_time_zone_utc_offset=-6 -County "WI, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501190.epw site_zip_code=54451 site_time_zone_utc_offset=-6 -County "WI, Trempealeau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501210.epw site_zip_code=54612 site_time_zone_utc_offset=-6 -County "WI, Vernon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501230.epw site_zip_code=54665 site_time_zone_utc_offset=-6 -County "WI, Vilas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501250.epw site_zip_code=54521 site_time_zone_utc_offset=-6 -County "WI, Walworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501270.epw site_zip_code=53147 site_time_zone_utc_offset=-6 -County "WI, Washburn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501290.epw site_zip_code=54801 site_time_zone_utc_offset=-6 -County "WI, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501310.epw site_zip_code=53022 site_time_zone_utc_offset=-6 -County "WI, Waukesha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501330.epw site_zip_code=53051 site_time_zone_utc_offset=-6 -County "WI, Waupaca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501350.epw site_zip_code=54981 site_time_zone_utc_offset=-6 -County "WI, Waushara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501370.epw site_zip_code=54982 site_time_zone_utc_offset=-6 -County "WI, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501390.epw site_zip_code=54956 site_time_zone_utc_offset=-6 -County "WI, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501410.epw site_zip_code=54449 site_time_zone_utc_offset=-6 -County "WV, Barbour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400010.epw site_zip_code=26416 site_time_zone_utc_offset=-5 -County "WV, Berkeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400030.epw site_zip_code=25404 site_time_zone_utc_offset=-5 -County "WV, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400050.epw site_zip_code=25130 site_time_zone_utc_offset=-5 -County "WV, Braxton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400070.epw site_zip_code=26601 site_time_zone_utc_offset=-5 -County "WV, Brooke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400090.epw site_zip_code=26070 site_time_zone_utc_offset=-5 -County "WV, Cabell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400110.epw site_zip_code=25701 site_time_zone_utc_offset=-5 -County "WV, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400130.epw site_zip_code=26147 site_time_zone_utc_offset=-5 -County "WV, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400150.epw site_zip_code=25043 site_time_zone_utc_offset=-5 -County "WV, Doddridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400170.epw site_zip_code=26456 site_time_zone_utc_offset=-5 -County "WV, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400190.epw site_zip_code=25901 site_time_zone_utc_offset=-5 -County "WV, Gilmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400210.epw site_zip_code=26351 site_time_zone_utc_offset=-5 -County "WV, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400230.epw site_zip_code=26847 site_time_zone_utc_offset=-5 -County "WV, Greenbrier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400250.epw site_zip_code=24901 site_time_zone_utc_offset=-5 -County "WV, Hampshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400270.epw site_zip_code=26757 site_time_zone_utc_offset=-5 -County "WV, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400290.epw site_zip_code=26062 site_time_zone_utc_offset=-5 -County "WV, Hardy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400310.epw site_zip_code=26836 site_time_zone_utc_offset=-5 -County "WV, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400330.epw site_zip_code=26301 site_time_zone_utc_offset=-5 -County "WV, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400350.epw site_zip_code=25271 site_time_zone_utc_offset=-5 -County "WV, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400370.epw site_zip_code=25414 site_time_zone_utc_offset=-5 -County "WV, Kanawha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400390.epw site_zip_code=25177 site_time_zone_utc_offset=-5 -County "WV, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400410.epw site_zip_code=26452 site_time_zone_utc_offset=-5 -County "WV, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400430.epw site_zip_code=25506 site_time_zone_utc_offset=-5 -County "WV, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400450.epw site_zip_code=25601 site_time_zone_utc_offset=-5 -County "WV, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400490.epw site_zip_code=26554 site_time_zone_utc_offset=-5 -County "WV, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400510.epw site_zip_code=26041 site_time_zone_utc_offset=-5 -County "WV, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400530.epw site_zip_code=25550 site_time_zone_utc_offset=-5 -County "WV, McDowell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400470.epw site_zip_code=24801 site_time_zone_utc_offset=-5 -County "WV, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400550.epw site_zip_code=24701 site_time_zone_utc_offset=-5 -County "WV, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400570.epw site_zip_code=26726 site_time_zone_utc_offset=-5 -County "WV, Mingo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400590.epw site_zip_code=25661 site_time_zone_utc_offset=-5 -County "WV, Monongalia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400610.epw site_zip_code=26505 site_time_zone_utc_offset=-5 -County "WV, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400630.epw site_zip_code=24963 site_time_zone_utc_offset=-5 -County "WV, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400650.epw site_zip_code=25411 site_time_zone_utc_offset=-5 -County "WV, Nicholas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400670.epw site_zip_code=26651 site_time_zone_utc_offset=-5 -County "WV, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400690.epw site_zip_code=26003 site_time_zone_utc_offset=-5 -County "WV, Pendleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400710.epw site_zip_code=26807 site_time_zone_utc_offset=-5 -County "WV, Pleasants County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400730.epw site_zip_code=26170 site_time_zone_utc_offset=-5 -County "WV, Pocahontas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400750.epw site_zip_code=24954 site_time_zone_utc_offset=-5 -County "WV, Preston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400770.epw site_zip_code=26537 site_time_zone_utc_offset=-5 -County "WV, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400790.epw site_zip_code=25526 site_time_zone_utc_offset=-5 -County "WV, Raleigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400810.epw site_zip_code=25801 site_time_zone_utc_offset=-5 -County "WV, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400830.epw site_zip_code=26241 site_time_zone_utc_offset=-5 -County "WV, Ritchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400850.epw site_zip_code=26362 site_time_zone_utc_offset=-5 -County "WV, Roane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400870.epw site_zip_code=25276 site_time_zone_utc_offset=-5 -County "WV, Summers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400890.epw site_zip_code=25951 site_time_zone_utc_offset=-5 -County "WV, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400910.epw site_zip_code=26354 site_time_zone_utc_offset=-5 -County "WV, Tucker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400930.epw site_zip_code=26287 site_time_zone_utc_offset=-5 -County "WV, Tyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400950.epw site_zip_code=26175 site_time_zone_utc_offset=-5 -County "WV, Upshur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400970.epw site_zip_code=26201 site_time_zone_utc_offset=-5 -County "WV, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400990.epw site_zip_code=25704 site_time_zone_utc_offset=-5 -County "WV, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401010.epw site_zip_code=26288 site_time_zone_utc_offset=-5 -County "WV, Wetzel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401030.epw site_zip_code=26155 site_time_zone_utc_offset=-5 -County "WV, Wirt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401050.epw site_zip_code=26143 site_time_zone_utc_offset=-5 -County "WV, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401070.epw site_zip_code=26101 site_time_zone_utc_offset=-5 -County "WV, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401090.epw site_zip_code=25882 site_time_zone_utc_offset=-5 -County "WY, Albany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600010.epw site_zip_code=82070 site_time_zone_utc_offset=-7 -County "WY, Big Horn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600030.epw site_zip_code=82431 site_time_zone_utc_offset=-7 -County "WY, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600050.epw site_zip_code=82718 site_time_zone_utc_offset=-7 -County "WY, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600070.epw site_zip_code=82301 site_time_zone_utc_offset=-7 -County "WY, Converse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600090.epw site_zip_code=82633 site_time_zone_utc_offset=-7 -County "WY, Crook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600110.epw site_zip_code=82729 site_time_zone_utc_offset=-7 -County "WY, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600130.epw site_zip_code=82501 site_time_zone_utc_offset=-7 -County "WY, Goshen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600150.epw site_zip_code=82240 site_time_zone_utc_offset=-7 -County "WY, Hot Springs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600170.epw site_zip_code=82443 site_time_zone_utc_offset=-7 -County "WY, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600190.epw site_zip_code=82834 site_time_zone_utc_offset=-7 -County "WY, Laramie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600210.epw site_zip_code=82001 site_time_zone_utc_offset=-7 -County "WY, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600230.epw site_zip_code=83127 site_time_zone_utc_offset=-7 -County "WY, Natrona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600250.epw site_zip_code=82601 site_time_zone_utc_offset=-7 -County "WY, Niobrara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600270.epw site_zip_code=82225 site_time_zone_utc_offset=-7 -County "WY, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600290.epw site_zip_code=82414 site_time_zone_utc_offset=-7 -County "WY, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600310.epw site_zip_code=82201 site_time_zone_utc_offset=-7 -County "WY, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600330.epw site_zip_code=82801 site_time_zone_utc_offset=-7 -County "WY, Sublette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600350.epw site_zip_code=82941 site_time_zone_utc_offset=-7 -County "WY, Sweetwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600370.epw site_zip_code=82901 site_time_zone_utc_offset=-7 -County "WY, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600390.epw site_zip_code=83001 site_time_zone_utc_offset=-7 -County "WY, Uinta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600410.epw site_zip_code=82930 site_time_zone_utc_offset=-7 -County "WY, Washakie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600430.epw site_zip_code=82401 site_time_zone_utc_offset=-7 -County "WY, Weston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600450.epw site_zip_code=82701 site_time_zone_utc_offset=-7 -County Metro Status Metropolitan -County Metro Status Non-Metropolitan -County and PUMA "G0100010, G01002100" -County and PUMA "G0100030, G01002600" -County and PUMA "G0100050, G01002400" -County and PUMA "G0100070, G01001700" -County and PUMA "G0100090, G01000800" -County and PUMA "G0100110, G01002400" -County and PUMA "G0100130, G01002300" -County and PUMA "G0100150, G01001100" -County and PUMA "G0100170, G01001800" -County and PUMA "G0100190, G01001000" -County and PUMA "G0100210, G01001800" -County and PUMA "G0100230, G01002200" -County and PUMA "G0100250, G01002200" -County and PUMA "G0100270, G01001000" -County and PUMA "G0100290, G01001000" -County and PUMA "G0100310, G01002300" -County and PUMA "G0100330, G01000100" -County and PUMA "G0100350, G01002200" -County and PUMA "G0100370, G01001800" -County and PUMA "G0100390, G01002300" -County and PUMA "G0100410, G01002300" -County and PUMA "G0100430, G01000700" -County and PUMA "G0100450, G01002500" -County and PUMA "G0100470, G01001700" -County and PUMA "G0100490, G01000400" -County and PUMA "G0100510, G01002100" -County and PUMA "G0100530, G01002200" -County and PUMA "G0100550, G01000900" -County and PUMA "G0100570, G01001400" -County and PUMA "G0100590, G01000100" -County and PUMA "G0100610, G01002500" -County and PUMA "G0100630, G01001700" -County and PUMA "G0100650, G01001700" -County and PUMA "G0100670, G01002500" -County and PUMA "G0100690, G01002500" -County and PUMA "G0100710, G01000400" -County and PUMA "G0100730, G01001301" -County and PUMA "G0100730, G01001302" -County and PUMA "G0100730, G01001303" -County and PUMA "G0100730, G01001304" -County and PUMA "G0100730, G01001305" -County and PUMA "G0100750, G01001400" -County and PUMA "G0100770, G01000100" -County and PUMA "G0100790, G01000600" -County and PUMA "G0100810, G01001900" -County and PUMA "G0100830, G01000200" -County and PUMA "G0100850, G01002100" -County and PUMA "G0100870, G01002400" -County and PUMA "G0100890, G01000200" -County and PUMA "G0100890, G01000301" -County and PUMA "G0100890, G01000302" -County and PUMA "G0100890, G01000500" -County and PUMA "G0100910, G01001700" -County and PUMA "G0100930, G01000100" -County and PUMA "G0100930, G01001400" -County and PUMA "G0100950, G01000500" -County and PUMA "G0100970, G01002701" -County and PUMA "G0100970, G01002702" -County and PUMA "G0100970, G01002703" -County and PUMA "G0100990, G01002200" -County and PUMA "G0101010, G01002000" -County and PUMA "G0101010, G01002100" -County and PUMA "G0101030, G01000600" -County and PUMA "G0101050, G01001700" -County and PUMA "G0101070, G01001500" -County and PUMA "G0101090, G01002400" -County and PUMA "G0101110, G01001000" -County and PUMA "G0101130, G01002400" -County and PUMA "G0101150, G01000800" -County and PUMA "G0101170, G01001200" -County and PUMA "G0101190, G01001700" -County and PUMA "G0101210, G01001000" -County and PUMA "G0101230, G01001800" -County and PUMA "G0101250, G01001500" -County and PUMA "G0101250, G01001600" -County and PUMA "G0101270, G01001400" -County and PUMA "G0101290, G01002200" -County and PUMA "G0101310, G01002200" -County and PUMA "G0101330, G01000700" -County and PUMA "G0200130, G02000400" -County and PUMA "G0200160, G02000400" -County and PUMA "G0200200, G02000101" -County and PUMA "G0200200, G02000102" -County and PUMA "G0200500, G02000400" -County and PUMA "G0200600, G02000400" -County and PUMA "G0200680, G02000300" -County and PUMA "G0200700, G02000400" -County and PUMA "G0200900, G02000300" -County and PUMA "G0201000, G02000300" -County and PUMA "G0201050, G02000400" -County and PUMA "G0201100, G02000300" -County and PUMA "G0201220, G02000200" -County and PUMA "G0201300, G02000300" -County and PUMA "G0201500, G02000400" -County and PUMA "G0201580, G02000400" -County and PUMA "G0201640, G02000400" -County and PUMA "G0201700, G02000200" -County and PUMA "G0201800, G02000400" -County and PUMA "G0201850, G02000400" -County and PUMA "G0201880, G02000400" -County and PUMA "G0201950, G02000400" -County and PUMA "G0201980, G02000400" -County and PUMA "G0202200, G02000400" -County and PUMA "G0202300, G02000300" -County and PUMA "G0202400, G02000300" -County and PUMA "G0202610, G02000300" -County and PUMA "G0202750, G02000400" -County and PUMA "G0202820, G02000400" -County and PUMA "G0202900, G02000400" -County and PUMA "G0400010, G04000300" -County and PUMA "G0400030, G04000900" -County and PUMA "G0400050, G04000400" -County and PUMA "G0400070, G04000800" -County and PUMA "G0400090, G04000800" -County and PUMA "G0400110, G04000800" -County and PUMA "G0400120, G04000600" -County and PUMA "G0400130, G04000100" -County and PUMA "G0400130, G04000101" -County and PUMA "G0400130, G04000102" -County and PUMA "G0400130, G04000103" -County and PUMA "G0400130, G04000104" -County and PUMA "G0400130, G04000105" -County and PUMA "G0400130, G04000106" -County and PUMA "G0400130, G04000107" -County and PUMA "G0400130, G04000108" -County and PUMA "G0400130, G04000109" -County and PUMA "G0400130, G04000110" -County and PUMA "G0400130, G04000111" -County and PUMA "G0400130, G04000112" -County and PUMA "G0400130, G04000113" -County and PUMA "G0400130, G04000114" -County and PUMA "G0400130, G04000115" -County and PUMA "G0400130, G04000116" -County and PUMA "G0400130, G04000117" -County and PUMA "G0400130, G04000118" -County and PUMA "G0400130, G04000119" -County and PUMA "G0400130, G04000120" -County and PUMA "G0400130, G04000121" -County and PUMA "G0400130, G04000122" -County and PUMA "G0400130, G04000123" -County and PUMA "G0400130, G04000124" -County and PUMA "G0400130, G04000125" -County and PUMA "G0400130, G04000126" -County and PUMA "G0400130, G04000127" -County and PUMA "G0400130, G04000128" -County and PUMA "G0400130, G04000129" -County and PUMA "G0400130, G04000130" -County and PUMA "G0400130, G04000131" -County and PUMA "G0400130, G04000132" -County and PUMA "G0400130, G04000133" -County and PUMA "G0400130, G04000134" -County and PUMA "G0400150, G04000600" -County and PUMA "G0400170, G04000300" -County and PUMA "G0400190, G04000201" -County and PUMA "G0400190, G04000202" -County and PUMA "G0400190, G04000203" -County and PUMA "G0400190, G04000204" -County and PUMA "G0400190, G04000205" -County and PUMA "G0400190, G04000206" -County and PUMA "G0400190, G04000207" -County and PUMA "G0400190, G04000208" -County and PUMA "G0400190, G04000209" -County and PUMA "G0400210, G04000800" -County and PUMA "G0400210, G04000803" -County and PUMA "G0400210, G04000805" -County and PUMA "G0400210, G04000807" -County and PUMA "G0400230, G04000900" -County and PUMA "G0400250, G04000500" -County and PUMA "G0400270, G04000700" -County and PUMA "G0500010, G05001700" -County and PUMA "G0500010, G05001800" -County and PUMA "G0500030, G05001800" -County and PUMA "G0500050, G05000300" -County and PUMA "G0500070, G05000100" -County and PUMA "G0500090, G05000300" -County and PUMA "G0500110, G05001800" -County and PUMA "G0500130, G05001900" -County and PUMA "G0500150, G05000300" -County and PUMA "G0500170, G05001800" -County and PUMA "G0500190, G05001600" -County and PUMA "G0500210, G05000500" -County and PUMA "G0500230, G05000400" -County and PUMA "G0500250, G05001800" -County and PUMA "G0500270, G05001900" -County and PUMA "G0500290, G05001300" -County and PUMA "G0500310, G05000500" -County and PUMA "G0500310, G05000600" -County and PUMA "G0500330, G05001400" -County and PUMA "G0500350, G05000600" -County and PUMA "G0500370, G05000700" -County and PUMA "G0500390, G05001900" -County and PUMA "G0500410, G05001800" -County and PUMA "G0500430, G05001800" -County and PUMA "G0500450, G05001100" -County and PUMA "G0500470, G05001500" -County and PUMA "G0500490, G05000400" -County and PUMA "G0500510, G05001600" -County and PUMA "G0500530, G05001700" -County and PUMA "G0500550, G05000500" -County and PUMA "G0500570, G05002000" -County and PUMA "G0500590, G05001600" -County and PUMA "G0500610, G05001500" -County and PUMA "G0500630, G05000400" -County and PUMA "G0500650, G05000400" -County and PUMA "G0500670, G05000800" -County and PUMA "G0500690, G05001700" -County and PUMA "G0500710, G05001300" -County and PUMA "G0500730, G05002000" -County and PUMA "G0500750, G05000500" -County and PUMA "G0500770, G05000700" -County and PUMA "G0500790, G05001800" -County and PUMA "G0500810, G05002000" -County and PUMA "G0500830, G05001500" -County and PUMA "G0500850, G05001100" -County and PUMA "G0500870, G05000300" -County and PUMA "G0500890, G05000300" -County and PUMA "G0500910, G05002000" -County and PUMA "G0500930, G05000600" -County and PUMA "G0500950, G05000700" -County and PUMA "G0500970, G05001600" -County and PUMA "G0500990, G05002000" -County and PUMA "G0501010, G05000300" -County and PUMA "G0501030, G05001900" -County and PUMA "G0501050, G05001300" -County and PUMA "G0501070, G05000700" -County and PUMA "G0501090, G05002000" -County and PUMA "G0501110, G05000700" -County and PUMA "G0501130, G05001500" -County and PUMA "G0501150, G05001300" -County and PUMA "G0501170, G05000800" -County and PUMA "G0501190, G05000900" -County and PUMA "G0501190, G05001000" -County and PUMA "G0501210, G05000500" -County and PUMA "G0501230, G05000700" -County and PUMA "G0501250, G05001200" -County and PUMA "G0501270, G05001500" -County and PUMA "G0501290, G05000300" -County and PUMA "G0501310, G05001400" -County and PUMA "G0501330, G05001500" -County and PUMA "G0501350, G05000400" -County and PUMA "G0501370, G05000400" -County and PUMA "G0501390, G05001900" -County and PUMA "G0501410, G05000400" -County and PUMA "G0501430, G05000200" -County and PUMA "G0501450, G05000800" -County and PUMA "G0501470, G05000800" -County and PUMA "G0501490, G05001300" -County and PUMA "G0600010, G06000101" -County and PUMA "G0600010, G06000102" -County and PUMA "G0600010, G06000103" -County and PUMA "G0600010, G06000104" -County and PUMA "G0600010, G06000105" -County and PUMA "G0600010, G06000106" -County and PUMA "G0600010, G06000107" -County and PUMA "G0600010, G06000108" -County and PUMA "G0600010, G06000109" -County and PUMA "G0600010, G06000110" -County and PUMA "G0600030, G06000300" -County and PUMA "G0600050, G06000300" -County and PUMA "G0600070, G06000701" -County and PUMA "G0600070, G06000702" -County and PUMA "G0600090, G06000300" -County and PUMA "G0600110, G06001100" -County and PUMA "G0600130, G06001301" -County and PUMA "G0600130, G06001302" -County and PUMA "G0600130, G06001303" -County and PUMA "G0600130, G06001304" -County and PUMA "G0600130, G06001305" -County and PUMA "G0600130, G06001306" -County and PUMA "G0600130, G06001307" -County and PUMA "G0600130, G06001308" -County and PUMA "G0600130, G06001309" -County and PUMA "G0600150, G06001500" -County and PUMA "G0600170, G06001700" -County and PUMA "G0600190, G06001901" -County and PUMA "G0600190, G06001902" -County and PUMA "G0600190, G06001903" -County and PUMA "G0600190, G06001904" -County and PUMA "G0600190, G06001905" -County and PUMA "G0600190, G06001906" -County and PUMA "G0600190, G06001907" -County and PUMA "G0600210, G06001100" -County and PUMA "G0600230, G06002300" -County and PUMA "G0600250, G06002500" -County and PUMA "G0600270, G06000300" -County and PUMA "G0600290, G06002901" -County and PUMA "G0600290, G06002902" -County and PUMA "G0600290, G06002903" -County and PUMA "G0600290, G06002904" -County and PUMA "G0600290, G06002905" -County and PUMA "G0600310, G06003100" -County and PUMA "G0600330, G06003300" -County and PUMA "G0600350, G06001500" -County and PUMA "G0600370, G06003701" -County and PUMA "G0600370, G06003702" -County and PUMA "G0600370, G06003703" -County and PUMA "G0600370, G06003704" -County and PUMA "G0600370, G06003705" -County and PUMA "G0600370, G06003706" -County and PUMA "G0600370, G06003707" -County and PUMA "G0600370, G06003708" -County and PUMA "G0600370, G06003709" -County and PUMA "G0600370, G06003710" -County and PUMA "G0600370, G06003711" -County and PUMA "G0600370, G06003712" -County and PUMA "G0600370, G06003713" -County and PUMA "G0600370, G06003714" -County and PUMA "G0600370, G06003715" -County and PUMA "G0600370, G06003716" -County and PUMA "G0600370, G06003717" -County and PUMA "G0600370, G06003718" -County and PUMA "G0600370, G06003719" -County and PUMA "G0600370, G06003720" -County and PUMA "G0600370, G06003721" -County and PUMA "G0600370, G06003722" -County and PUMA "G0600370, G06003723" -County and PUMA "G0600370, G06003724" -County and PUMA "G0600370, G06003725" -County and PUMA "G0600370, G06003726" -County and PUMA "G0600370, G06003727" -County and PUMA "G0600370, G06003728" -County and PUMA "G0600370, G06003729" -County and PUMA "G0600370, G06003730" -County and PUMA "G0600370, G06003731" -County and PUMA "G0600370, G06003732" -County and PUMA "G0600370, G06003733" -County and PUMA "G0600370, G06003734" -County and PUMA "G0600370, G06003735" -County and PUMA "G0600370, G06003736" -County and PUMA "G0600370, G06003737" -County and PUMA "G0600370, G06003738" -County and PUMA "G0600370, G06003739" -County and PUMA "G0600370, G06003740" -County and PUMA "G0600370, G06003741" -County and PUMA "G0600370, G06003742" -County and PUMA "G0600370, G06003743" -County and PUMA "G0600370, G06003744" -County and PUMA "G0600370, G06003745" -County and PUMA "G0600370, G06003746" -County and PUMA "G0600370, G06003747" -County and PUMA "G0600370, G06003748" -County and PUMA "G0600370, G06003749" -County and PUMA "G0600370, G06003750" -County and PUMA "G0600370, G06003751" -County and PUMA "G0600370, G06003752" -County and PUMA "G0600370, G06003753" -County and PUMA "G0600370, G06003754" -County and PUMA "G0600370, G06003755" -County and PUMA "G0600370, G06003756" -County and PUMA "G0600370, G06003757" -County and PUMA "G0600370, G06003758" -County and PUMA "G0600370, G06003759" -County and PUMA "G0600370, G06003760" -County and PUMA "G0600370, G06003761" -County and PUMA "G0600370, G06003762" -County and PUMA "G0600370, G06003763" -County and PUMA "G0600370, G06003764" -County and PUMA "G0600370, G06003765" -County and PUMA "G0600370, G06003766" -County and PUMA "G0600370, G06003767" -County and PUMA "G0600370, G06003768" -County and PUMA "G0600370, G06003769" -County and PUMA "G0600390, G06003900" -County and PUMA "G0600410, G06004101" -County and PUMA "G0600410, G06004102" -County and PUMA "G0600430, G06000300" -County and PUMA "G0600450, G06003300" -County and PUMA "G0600470, G06004701" -County and PUMA "G0600470, G06004702" -County and PUMA "G0600490, G06001500" -County and PUMA "G0600510, G06000300" -County and PUMA "G0600530, G06005301" -County and PUMA "G0600530, G06005302" -County and PUMA "G0600530, G06005303" -County and PUMA "G0600550, G06005500" -County and PUMA "G0600570, G06005700" -County and PUMA "G0600590, G06005901" -County and PUMA "G0600590, G06005902" -County and PUMA "G0600590, G06005903" -County and PUMA "G0600590, G06005904" -County and PUMA "G0600590, G06005905" -County and PUMA "G0600590, G06005906" -County and PUMA "G0600590, G06005907" -County and PUMA "G0600590, G06005908" -County and PUMA "G0600590, G06005909" -County and PUMA "G0600590, G06005910" -County and PUMA "G0600590, G06005911" -County and PUMA "G0600590, G06005912" -County and PUMA "G0600590, G06005913" -County and PUMA "G0600590, G06005914" -County and PUMA "G0600590, G06005915" -County and PUMA "G0600590, G06005916" -County and PUMA "G0600590, G06005917" -County and PUMA "G0600590, G06005918" -County and PUMA "G0600610, G06006101" -County and PUMA "G0600610, G06006102" -County and PUMA "G0600610, G06006103" -County and PUMA "G0600630, G06001500" -County and PUMA "G0600650, G06006501" -County and PUMA "G0600650, G06006502" -County and PUMA "G0600650, G06006503" -County and PUMA "G0600650, G06006504" -County and PUMA "G0600650, G06006505" -County and PUMA "G0600650, G06006506" -County and PUMA "G0600650, G06006507" -County and PUMA "G0600650, G06006508" -County and PUMA "G0600650, G06006509" -County and PUMA "G0600650, G06006510" -County and PUMA "G0600650, G06006511" -County and PUMA "G0600650, G06006512" -County and PUMA "G0600650, G06006513" -County and PUMA "G0600650, G06006514" -County and PUMA "G0600650, G06006515" -County and PUMA "G0600670, G06006701" -County and PUMA "G0600670, G06006702" -County and PUMA "G0600670, G06006703" -County and PUMA "G0600670, G06006704" -County and PUMA "G0600670, G06006705" -County and PUMA "G0600670, G06006706" -County and PUMA "G0600670, G06006707" -County and PUMA "G0600670, G06006708" -County and PUMA "G0600670, G06006709" -County and PUMA "G0600670, G06006710" -County and PUMA "G0600670, G06006711" -County and PUMA "G0600670, G06006712" -County and PUMA "G0600690, G06005303" -County and PUMA "G0600710, G06007101" -County and PUMA "G0600710, G06007102" -County and PUMA "G0600710, G06007103" -County and PUMA "G0600710, G06007104" -County and PUMA "G0600710, G06007105" -County and PUMA "G0600710, G06007106" -County and PUMA "G0600710, G06007107" -County and PUMA "G0600710, G06007108" -County and PUMA "G0600710, G06007109" -County and PUMA "G0600710, G06007110" -County and PUMA "G0600710, G06007111" -County and PUMA "G0600710, G06007112" -County and PUMA "G0600710, G06007113" -County and PUMA "G0600710, G06007114" -County and PUMA "G0600710, G06007115" -County and PUMA "G0600730, G06007301" -County and PUMA "G0600730, G06007302" -County and PUMA "G0600730, G06007303" -County and PUMA "G0600730, G06007304" -County and PUMA "G0600730, G06007305" -County and PUMA "G0600730, G06007306" -County and PUMA "G0600730, G06007307" -County and PUMA "G0600730, G06007308" -County and PUMA "G0600730, G06007309" -County and PUMA "G0600730, G06007310" -County and PUMA "G0600730, G06007311" -County and PUMA "G0600730, G06007312" -County and PUMA "G0600730, G06007313" -County and PUMA "G0600730, G06007314" -County and PUMA "G0600730, G06007315" -County and PUMA "G0600730, G06007316" -County and PUMA "G0600730, G06007317" -County and PUMA "G0600730, G06007318" -County and PUMA "G0600730, G06007319" -County and PUMA "G0600730, G06007320" -County and PUMA "G0600730, G06007321" -County and PUMA "G0600730, G06007322" -County and PUMA "G0600750, G06007501" -County and PUMA "G0600750, G06007502" -County and PUMA "G0600750, G06007503" -County and PUMA "G0600750, G06007504" -County and PUMA "G0600750, G06007505" -County and PUMA "G0600750, G06007506" -County and PUMA "G0600750, G06007507" -County and PUMA "G0600770, G06007701" -County and PUMA "G0600770, G06007702" -County and PUMA "G0600770, G06007703" -County and PUMA "G0600770, G06007704" -County and PUMA "G0600790, G06007901" -County and PUMA "G0600790, G06007902" -County and PUMA "G0600810, G06008101" -County and PUMA "G0600810, G06008102" -County and PUMA "G0600810, G06008103" -County and PUMA "G0600810, G06008104" -County and PUMA "G0600810, G06008105" -County and PUMA "G0600810, G06008106" -County and PUMA "G0600830, G06008301" -County and PUMA "G0600830, G06008302" -County and PUMA "G0600830, G06008303" -County and PUMA "G0600850, G06008501" -County and PUMA "G0600850, G06008502" -County and PUMA "G0600850, G06008503" -County and PUMA "G0600850, G06008504" -County and PUMA "G0600850, G06008505" -County and PUMA "G0600850, G06008506" -County and PUMA "G0600850, G06008507" -County and PUMA "G0600850, G06008508" -County and PUMA "G0600850, G06008509" -County and PUMA "G0600850, G06008510" -County and PUMA "G0600850, G06008511" -County and PUMA "G0600850, G06008512" -County and PUMA "G0600850, G06008513" -County and PUMA "G0600850, G06008514" -County and PUMA "G0600870, G06008701" -County and PUMA "G0600870, G06008702" -County and PUMA "G0600890, G06008900" -County and PUMA "G0600910, G06005700" -County and PUMA "G0600930, G06001500" -County and PUMA "G0600950, G06009501" -County and PUMA "G0600950, G06009502" -County and PUMA "G0600950, G06009503" -County and PUMA "G0600970, G06009701" -County and PUMA "G0600970, G06009702" -County and PUMA "G0600970, G06009703" -County and PUMA "G0600990, G06009901" -County and PUMA "G0600990, G06009902" -County and PUMA "G0600990, G06009903" -County and PUMA "G0600990, G06009904" -County and PUMA "G0601010, G06010100" -County and PUMA "G0601030, G06001100" -County and PUMA "G0601050, G06001100" -County and PUMA "G0601070, G06010701" -County and PUMA "G0601070, G06010702" -County and PUMA "G0601070, G06010703" -County and PUMA "G0601090, G06000300" -County and PUMA "G0601110, G06011101" -County and PUMA "G0601110, G06011102" -County and PUMA "G0601110, G06011103" -County and PUMA "G0601110, G06011104" -County and PUMA "G0601110, G06011105" -County and PUMA "G0601110, G06011106" -County and PUMA "G0601130, G06011300" -County and PUMA "G0601150, G06010100" -County and PUMA "G0800010, G08000804" -County and PUMA "G0800010, G08000805" -County and PUMA "G0800010, G08000806" -County and PUMA "G0800010, G08000807" -County and PUMA "G0800010, G08000809" -County and PUMA "G0800010, G08000810" -County and PUMA "G0800010, G08000817" -County and PUMA "G0800010, G08000824" -County and PUMA "G0800030, G08000800" -County and PUMA "G0800050, G08000808" -County and PUMA "G0800050, G08000809" -County and PUMA "G0800050, G08000810" -County and PUMA "G0800050, G08000811" -County and PUMA "G0800050, G08000815" -County and PUMA "G0800050, G08000820" -County and PUMA "G0800050, G08000824" -County and PUMA "G0800070, G08000900" -County and PUMA "G0800090, G08000800" -County and PUMA "G0800110, G08000100" -County and PUMA "G0800130, G08000801" -County and PUMA "G0800130, G08000802" -County and PUMA "G0800130, G08000803" -County and PUMA "G0800130, G08000804" -County and PUMA "G0800140, G08000804" -County and PUMA "G0800140, G08000805" -County and PUMA "G0800150, G08000600" -County and PUMA "G0800170, G08000100" -County and PUMA "G0800190, G08000801" -County and PUMA "G0800210, G08000800" -County and PUMA "G0800230, G08000800" -County and PUMA "G0800250, G08000100" -County and PUMA "G0800270, G08000600" -County and PUMA "G0800290, G08001002" -County and PUMA "G0800310, G08000812" -County and PUMA "G0800310, G08000813" -County and PUMA "G0800310, G08000814" -County and PUMA "G0800310, G08000815" -County and PUMA "G0800310, G08000816" -County and PUMA "G0800330, G08000900" -County and PUMA "G0800350, G08000821" -County and PUMA "G0800350, G08000822" -County and PUMA "G0800350, G08000823" -County and PUMA "G0800370, G08000400" -County and PUMA "G0800390, G08000100" -County and PUMA "G0800390, G08000823" -County and PUMA "G0800410, G08004101" -County and PUMA "G0800410, G08004102" -County and PUMA "G0800410, G08004103" -County and PUMA "G0800410, G08004104" -County and PUMA "G0800410, G08004105" -County and PUMA "G0800410, G08004106" -County and PUMA "G0800430, G08000600" -County and PUMA "G0800450, G08000200" -County and PUMA "G0800470, G08000801" -County and PUMA "G0800490, G08000400" -County and PUMA "G0800510, G08000900" -County and PUMA "G0800530, G08000900" -County and PUMA "G0800550, G08000600" -County and PUMA "G0800570, G08000400" -County and PUMA "G0800590, G08000801" -County and PUMA "G0800590, G08000804" -County and PUMA "G0800590, G08000805" -County and PUMA "G0800590, G08000817" -County and PUMA "G0800590, G08000818" -County and PUMA "G0800590, G08000819" -County and PUMA "G0800590, G08000820" -County and PUMA "G0800590, G08000821" -County and PUMA "G0800610, G08000100" -County and PUMA "G0800630, G08000100" -County and PUMA "G0800650, G08000600" -County and PUMA "G0800670, G08000900" -County and PUMA "G0800690, G08000102" -County and PUMA "G0800690, G08000103" -County and PUMA "G0800710, G08000800" -County and PUMA "G0800730, G08000100" -County and PUMA "G0800750, G08000100" -County and PUMA "G0800770, G08001001" -County and PUMA "G0800770, G08001002" -County and PUMA "G0800790, G08000800" -County and PUMA "G0800810, G08000200" -County and PUMA "G0800830, G08000900" -County and PUMA "G0800850, G08001002" -County and PUMA "G0800870, G08000100" -County and PUMA "G0800890, G08000800" -County and PUMA "G0800910, G08001002" -County and PUMA "G0800930, G08000600" -County and PUMA "G0800950, G08000100" -County and PUMA "G0800970, G08000400" -County and PUMA "G0800990, G08000800" -County and PUMA "G0801010, G08000600" -County and PUMA "G0801010, G08000700" -County and PUMA "G0801010, G08000800" -County and PUMA "G0801030, G08000200" -County and PUMA "G0801050, G08000800" -County and PUMA "G0801070, G08000200" -County and PUMA "G0801090, G08000800" -County and PUMA "G0801110, G08000900" -County and PUMA "G0801130, G08001002" -County and PUMA "G0801150, G08000100" -County and PUMA "G0801170, G08000400" -County and PUMA "G0801190, G08004101" -County and PUMA "G0801210, G08000100" -County and PUMA "G0801230, G08000100" -County and PUMA "G0801230, G08000300" -County and PUMA "G0801230, G08000802" -County and PUMA "G0801230, G08000824" -County and PUMA "G0801250, G08000100" -County and PUMA "G0900010, G09000100" -County and PUMA "G0900010, G09000101" -County and PUMA "G0900010, G09000102" -County and PUMA "G0900010, G09000103" -County and PUMA "G0900010, G09000104" -County and PUMA "G0900010, G09000105" -County and PUMA "G0900030, G09000300" -County and PUMA "G0900030, G09000301" -County and PUMA "G0900030, G09000302" -County and PUMA "G0900030, G09000303" -County and PUMA "G0900030, G09000304" -County and PUMA "G0900030, G09000305" -County and PUMA "G0900030, G09000306" -County and PUMA "G0900050, G09000500" -County and PUMA "G0900070, G09000700" -County and PUMA "G0900090, G09000900" -County and PUMA "G0900090, G09000901" -County and PUMA "G0900090, G09000902" -County and PUMA "G0900090, G09000903" -County and PUMA "G0900090, G09000904" -County and PUMA "G0900090, G09000905" -County and PUMA "G0900090, G09000906" -County and PUMA "G0900110, G09001100" -County and PUMA "G0900110, G09001101" -County and PUMA "G0900130, G09001300" -County and PUMA "G0900150, G09001500" -County and PUMA "G1000010, G10000200" -County and PUMA "G1000030, G10000101" -County and PUMA "G1000030, G10000102" -County and PUMA "G1000030, G10000103" -County and PUMA "G1000030, G10000104" -County and PUMA "G1000050, G10000300" -County and PUMA "G1100010, G11000101" -County and PUMA "G1100010, G11000102" -County and PUMA "G1100010, G11000103" -County and PUMA "G1100010, G11000104" -County and PUMA "G1100010, G11000105" -County and PUMA "G1200010, G12000101" -County and PUMA "G1200010, G12000102" -County and PUMA "G1200030, G12008900" -County and PUMA "G1200050, G12000500" -County and PUMA "G1200070, G12002300" -County and PUMA "G1200090, G12000901" -County and PUMA "G1200090, G12000902" -County and PUMA "G1200090, G12000903" -County and PUMA "G1200090, G12000904" -County and PUMA "G1200110, G12001101" -County and PUMA "G1200110, G12001102" -County and PUMA "G1200110, G12001103" -County and PUMA "G1200110, G12001104" -County and PUMA "G1200110, G12001105" -County and PUMA "G1200110, G12001106" -County and PUMA "G1200110, G12001107" -County and PUMA "G1200110, G12001108" -County and PUMA "G1200110, G12001109" -County and PUMA "G1200110, G12001110" -County and PUMA "G1200110, G12001111" -County and PUMA "G1200110, G12001112" -County and PUMA "G1200110, G12001113" -County and PUMA "G1200110, G12001114" -County and PUMA "G1200130, G12006300" -County and PUMA "G1200150, G12001500" -County and PUMA "G1200170, G12001701" -County and PUMA "G1200190, G12001900" -County and PUMA "G1200210, G12002101" -County and PUMA "G1200210, G12002102" -County and PUMA "G1200210, G12002103" -County and PUMA "G1200230, G12002300" -County and PUMA "G1200270, G12002700" -County and PUMA "G1200290, G12002300" -County and PUMA "G1200310, G12003101" -County and PUMA "G1200310, G12003102" -County and PUMA "G1200310, G12003103" -County and PUMA "G1200310, G12003104" -County and PUMA "G1200310, G12003105" -County and PUMA "G1200310, G12003106" -County and PUMA "G1200310, G12003107" -County and PUMA "G1200330, G12003301" -County and PUMA "G1200330, G12003302" -County and PUMA "G1200350, G12003500" -County and PUMA "G1200370, G12006300" -County and PUMA "G1200390, G12006300" -County and PUMA "G1200410, G12002300" -County and PUMA "G1200430, G12009300" -County and PUMA "G1200450, G12006300" -County and PUMA "G1200470, G12012100" -County and PUMA "G1200490, G12002700" -County and PUMA "G1200510, G12009300" -County and PUMA "G1200530, G12005301" -County and PUMA "G1200550, G12002700" -County and PUMA "G1200550, G12009300" -County and PUMA "G1200570, G12005701" -County and PUMA "G1200570, G12005702" -County and PUMA "G1200570, G12005703" -County and PUMA "G1200570, G12005704" -County and PUMA "G1200570, G12005705" -County and PUMA "G1200570, G12005706" -County and PUMA "G1200570, G12005707" -County and PUMA "G1200570, G12005708" -County and PUMA "G1200590, G12000500" -County and PUMA "G1200610, G12006100" -County and PUMA "G1200630, G12006300" -County and PUMA "G1200650, G12006300" -County and PUMA "G1200670, G12012100" -County and PUMA "G1200690, G12006901" -County and PUMA "G1200690, G12006902" -County and PUMA "G1200690, G12006903" -County and PUMA "G1200710, G12007101" -County and PUMA "G1200710, G12007102" -County and PUMA "G1200710, G12007103" -County and PUMA "G1200710, G12007104" -County and PUMA "G1200710, G12007105" -County and PUMA "G1200730, G12007300" -County and PUMA "G1200730, G12007301" -County and PUMA "G1200750, G12002300" -County and PUMA "G1200770, G12006300" -County and PUMA "G1200790, G12012100" -County and PUMA "G1200810, G12008101" -County and PUMA "G1200810, G12008102" -County and PUMA "G1200810, G12008103" -County and PUMA "G1200830, G12008301" -County and PUMA "G1200830, G12008302" -County and PUMA "G1200830, G12008303" -County and PUMA "G1200850, G12008500" -County and PUMA "G1200860, G12008601" -County and PUMA "G1200860, G12008602" -County and PUMA "G1200860, G12008603" -County and PUMA "G1200860, G12008604" -County and PUMA "G1200860, G12008605" -County and PUMA "G1200860, G12008606" -County and PUMA "G1200860, G12008607" -County and PUMA "G1200860, G12008608" -County and PUMA "G1200860, G12008609" -County and PUMA "G1200860, G12008610" -County and PUMA "G1200860, G12008611" -County and PUMA "G1200860, G12008612" -County and PUMA "G1200860, G12008613" -County and PUMA "G1200860, G12008614" -County and PUMA "G1200860, G12008615" -County and PUMA "G1200860, G12008616" -County and PUMA "G1200860, G12008617" -County and PUMA "G1200860, G12008618" -County and PUMA "G1200860, G12008619" -County and PUMA "G1200860, G12008620" -County and PUMA "G1200860, G12008621" -County and PUMA "G1200860, G12008622" -County and PUMA "G1200860, G12008623" -County and PUMA "G1200860, G12008624" -County and PUMA "G1200860, G12008700" -County and PUMA "G1200870, G12008700" -County and PUMA "G1200890, G12008900" -County and PUMA "G1200910, G12009100" -County and PUMA "G1200930, G12009300" -County and PUMA "G1200950, G12009501" -County and PUMA "G1200950, G12009502" -County and PUMA "G1200950, G12009503" -County and PUMA "G1200950, G12009504" -County and PUMA "G1200950, G12009505" -County and PUMA "G1200950, G12009506" -County and PUMA "G1200950, G12009507" -County and PUMA "G1200950, G12009508" -County and PUMA "G1200950, G12009509" -County and PUMA "G1200950, G12009510" -County and PUMA "G1200970, G12009701" -County and PUMA "G1200970, G12009702" -County and PUMA "G1200990, G12009901" -County and PUMA "G1200990, G12009902" -County and PUMA "G1200990, G12009903" -County and PUMA "G1200990, G12009904" -County and PUMA "G1200990, G12009905" -County and PUMA "G1200990, G12009906" -County and PUMA "G1200990, G12009907" -County and PUMA "G1200990, G12009908" -County and PUMA "G1200990, G12009909" -County and PUMA "G1200990, G12009910" -County and PUMA "G1200990, G12009911" -County and PUMA "G1201010, G12010101" -County and PUMA "G1201010, G12010102" -County and PUMA "G1201010, G12010103" -County and PUMA "G1201010, G12010104" -County and PUMA "G1201030, G12010301" -County and PUMA "G1201030, G12010302" -County and PUMA "G1201030, G12010303" -County and PUMA "G1201030, G12010304" -County and PUMA "G1201030, G12010305" -County and PUMA "G1201030, G12010306" -County and PUMA "G1201030, G12010307" -County and PUMA "G1201030, G12010308" -County and PUMA "G1201050, G12010501" -County and PUMA "G1201050, G12010502" -County and PUMA "G1201050, G12010503" -County and PUMA "G1201050, G12010504" -County and PUMA "G1201070, G12010700" -County and PUMA "G1201090, G12010700" -County and PUMA "G1201090, G12010900" -County and PUMA "G1201110, G12011101" -County and PUMA "G1201110, G12011102" -County and PUMA "G1201130, G12011300" -County and PUMA "G1201150, G12011501" -County and PUMA "G1201150, G12011502" -County and PUMA "G1201150, G12011503" -County and PUMA "G1201170, G12011701" -County and PUMA "G1201170, G12011702" -County and PUMA "G1201170, G12011703" -County and PUMA "G1201170, G12011704" -County and PUMA "G1201190, G12006902" -County and PUMA "G1201190, G12006903" -County and PUMA "G1201210, G12012100" -County and PUMA "G1201230, G12012100" -County and PUMA "G1201250, G12002300" -County and PUMA "G1201270, G12003500" -County and PUMA "G1201270, G12012701" -County and PUMA "G1201270, G12012702" -County and PUMA "G1201270, G12012703" -County and PUMA "G1201270, G12012704" -County and PUMA "G1201290, G12006300" -County and PUMA "G1201310, G12000500" -County and PUMA "G1201330, G12000500" -County and PUMA "G1300010, G13001200" -County and PUMA "G1300030, G13000500" -County and PUMA "G1300050, G13000500" -County and PUMA "G1300070, G13001100" -County and PUMA "G1300090, G13001600" -County and PUMA "G1300110, G13003500" -County and PUMA "G1300130, G13003800" -County and PUMA "G1300150, G13002900" -County and PUMA "G1300170, G13000700" -County and PUMA "G1300190, G13000700" -County and PUMA "G1300210, G13001400" -County and PUMA "G1300230, G13001300" -County and PUMA "G1300250, G13000500" -County and PUMA "G1300270, G13000700" -County and PUMA "G1300290, G13000200" -County and PUMA "G1300310, G13000300" -County and PUMA "G1300330, G13004200" -County and PUMA "G1300350, G13001900" -County and PUMA "G1300370, G13001100" -County and PUMA "G1300390, G13000100" -County and PUMA "G1300430, G13001300" -County and PUMA "G1300450, G13002300" -County and PUMA "G1300470, G13002600" -County and PUMA "G1300490, G13000500" -County and PUMA "G1300510, G13000401" -County and PUMA "G1300510, G13000402" -County and PUMA "G1300530, G13001700" -County and PUMA "G1300550, G13002600" -County and PUMA "G1300570, G13003101" -County and PUMA "G1300570, G13003102" -County and PUMA "G1300590, G13003600" -County and PUMA "G1300610, G13001800" -County and PUMA "G1300630, G13005001" -County and PUMA "G1300630, G13005002" -County and PUMA "G1300650, G13000500" -County and PUMA "G1300670, G13003001" -County and PUMA "G1300670, G13003002" -County and PUMA "G1300670, G13003003" -County and PUMA "G1300670, G13003004" -County and PUMA "G1300670, G13003005" -County and PUMA "G1300690, G13000500" -County and PUMA "G1300710, G13000800" -County and PUMA "G1300730, G13004100" -County and PUMA "G1300750, G13000700" -County and PUMA "G1300770, G13002100" -County and PUMA "G1300790, G13001600" -County and PUMA "G1300810, G13001800" -County and PUMA "G1300830, G13002600" -County and PUMA "G1300850, G13003200" -County and PUMA "G1300870, G13001100" -County and PUMA "G1300890, G13001007" -County and PUMA "G1300890, G13001008" -County and PUMA "G1300890, G13002001" -County and PUMA "G1300890, G13002002" -County and PUMA "G1300890, G13002003" -County and PUMA "G1300890, G13002004" -County and PUMA "G1300910, G13001300" -County and PUMA "G1300930, G13001800" -County and PUMA "G1300950, G13000900" -County and PUMA "G1300970, G13004400" -County and PUMA "G1300990, G13001100" -County and PUMA "G1301010, G13000500" -County and PUMA "G1301030, G13000300" -County and PUMA "G1301050, G13003700" -County and PUMA "G1301070, G13001300" -County and PUMA "G1301090, G13001200" -County and PUMA "G1301110, G13002800" -County and PUMA "G1301130, G13002400" -County and PUMA "G1301150, G13002500" -County and PUMA "G1301170, G13003300" -County and PUMA "G1301190, G13003500" -County and PUMA "G1301210, G13001001" -County and PUMA "G1301210, G13001002" -County and PUMA "G1301210, G13001003" -County and PUMA "G1301210, G13001004" -County and PUMA "G1301210, G13001005" -County and PUMA "G1301210, G13001006" -County and PUMA "G1301210, G13001007" -County and PUMA "G1301210, G13004600" -County and PUMA "G1301230, G13002800" -County and PUMA "G1301250, G13004200" -County and PUMA "G1301270, G13000100" -County and PUMA "G1301290, G13002800" -County and PUMA "G1301310, G13001100" -County and PUMA "G1301330, G13003700" -County and PUMA "G1301350, G13004001" -County and PUMA "G1301350, G13004002" -County and PUMA "G1301350, G13004003" -County and PUMA "G1301350, G13004004" -County and PUMA "G1301350, G13004005" -County and PUMA "G1301350, G13004006" -County and PUMA "G1301370, G13003500" -County and PUMA "G1301390, G13003400" -County and PUMA "G1301410, G13004200" -County and PUMA "G1301430, G13002500" -County and PUMA "G1301450, G13001800" -County and PUMA "G1301470, G13003500" -County and PUMA "G1301490, G13002200" -County and PUMA "G1301510, G13006001" -County and PUMA "G1301510, G13006002" -County and PUMA "G1301530, G13001500" -County and PUMA "G1301550, G13000700" -County and PUMA "G1301570, G13003800" -County and PUMA "G1301590, G13003900" -County and PUMA "G1301610, G13001200" -County and PUMA "G1301630, G13004200" -County and PUMA "G1301650, G13004200" -County and PUMA "G1301670, G13001300" -County and PUMA "G1301690, G13001600" -County and PUMA "G1301710, G13001900" -County and PUMA "G1301730, G13000500" -County and PUMA "G1301750, G13001300" -County and PUMA "G1301770, G13000900" -County and PUMA "G1301790, G13000200" -County and PUMA "G1301810, G13004200" -County and PUMA "G1301830, G13000200" -County and PUMA "G1301850, G13000600" -County and PUMA "G1301870, G13003200" -County and PUMA "G1301890, G13004200" -County and PUMA "G1301910, G13000100" -County and PUMA "G1301930, G13001800" -County and PUMA "G1301950, G13003700" -County and PUMA "G1301970, G13001800" -County and PUMA "G1301990, G13002200" -County and PUMA "G1302010, G13001100" -County and PUMA "G1302050, G13001100" -County and PUMA "G1302070, G13001600" -County and PUMA "G1302090, G13001200" -County and PUMA "G1302110, G13003900" -County and PUMA "G1302130, G13002800" -County and PUMA "G1302150, G13001700" -County and PUMA "G1302170, G13004300" -County and PUMA "G1302190, G13003700" -County and PUMA "G1302210, G13003700" -County and PUMA "G1302230, G13004500" -County and PUMA "G1302250, G13001600" -County and PUMA "G1302270, G13002800" -County and PUMA "G1302290, G13000500" -County and PUMA "G1302310, G13001900" -County and PUMA "G1302330, G13002500" -County and PUMA "G1302350, G13001500" -County and PUMA "G1302370, G13001600" -County and PUMA "G1302390, G13001800" -County and PUMA "G1302410, G13003200" -County and PUMA "G1302430, G13001800" -County and PUMA "G1302450, G13004000" -County and PUMA "G1302470, G13004300" -County and PUMA "G1302490, G13001800" -County and PUMA "G1302510, G13000300" -County and PUMA "G1302530, G13001100" -County and PUMA "G1302550, G13001900" -County and PUMA "G1302570, G13003500" -County and PUMA "G1302590, G13001800" -County and PUMA "G1302610, G13001800" -County and PUMA "G1302630, G13001800" -County and PUMA "G1302650, G13004200" -County and PUMA "G1302670, G13001200" -County and PUMA "G1302690, G13001800" -County and PUMA "G1302710, G13001200" -County and PUMA "G1302730, G13001100" -County and PUMA "G1302750, G13000800" -County and PUMA "G1302770, G13000700" -County and PUMA "G1302790, G13001200" -County and PUMA "G1302810, G13003200" -County and PUMA "G1302830, G13001300" -County and PUMA "G1302850, G13002200" -County and PUMA "G1302870, G13000700" -County and PUMA "G1302890, G13001600" -County and PUMA "G1302910, G13003200" -County and PUMA "G1302930, G13001900" -County and PUMA "G1302950, G13002600" -County and PUMA "G1302970, G13003900" -County and PUMA "G1302990, G13000500" -County and PUMA "G1303010, G13004200" -County and PUMA "G1303030, G13004200" -County and PUMA "G1303050, G13001200" -County and PUMA "G1303070, G13001800" -County and PUMA "G1303090, G13001200" -County and PUMA "G1303110, G13003200" -County and PUMA "G1303130, G13002700" -County and PUMA "G1303150, G13001300" -County and PUMA "G1303170, G13004200" -County and PUMA "G1303190, G13001600" -County and PUMA "G1303210, G13000800" -County and PUMA "G1500010, G15000200" -County and PUMA "G1500030, G15000301" -County and PUMA "G1500030, G15000302" -County and PUMA "G1500030, G15000303" -County and PUMA "G1500030, G15000304" -County and PUMA "G1500030, G15000305" -County and PUMA "G1500030, G15000306" -County and PUMA "G1500030, G15000307" -County and PUMA "G1500030, G15000308" -County and PUMA "G1500050, G15000100" -County and PUMA "G1500070, G15000100" -County and PUMA "G1500090, G15000100" -County and PUMA "G1600010, G16000400" -County and PUMA "G1600010, G16000600" -County and PUMA "G1600010, G16000701" -County and PUMA "G1600010, G16000702" -County and PUMA "G1600010, G16000800" -County and PUMA "G1600030, G16000300" -County and PUMA "G1600050, G16001300" -County and PUMA "G1600070, G16001300" -County and PUMA "G1600090, G16000100" -County and PUMA "G1600110, G16001100" -County and PUMA "G1600110, G16001300" -County and PUMA "G1600130, G16001000" -County and PUMA "G1600150, G16000300" -County and PUMA "G1600170, G16000100" -County and PUMA "G1600190, G16001200" -County and PUMA "G1600210, G16000100" -County and PUMA "G1600230, G16000300" -County and PUMA "G1600250, G16001000" -County and PUMA "G1600270, G16000400" -County and PUMA "G1600270, G16000500" -County and PUMA "G1600270, G16000600" -County and PUMA "G1600290, G16001300" -County and PUMA "G1600310, G16000900" -County and PUMA "G1600330, G16000300" -County and PUMA "G1600350, G16000300" -County and PUMA "G1600370, G16000300" -County and PUMA "G1600390, G16001000" -County and PUMA "G1600410, G16001300" -County and PUMA "G1600430, G16001100" -County and PUMA "G1600450, G16000400" -County and PUMA "G1600470, G16001000" -County and PUMA "G1600490, G16000300" -County and PUMA "G1600510, G16001100" -County and PUMA "G1600530, G16001000" -County and PUMA "G1600550, G16000100" -County and PUMA "G1600550, G16000200" -County and PUMA "G1600570, G16000100" -County and PUMA "G1600590, G16000300" -County and PUMA "G1600610, G16000300" -County and PUMA "G1600630, G16001000" -County and PUMA "G1600650, G16001100" -County and PUMA "G1600670, G16001000" -County and PUMA "G1600690, G16000300" -County and PUMA "G1600710, G16001300" -County and PUMA "G1600730, G16000500" -County and PUMA "G1600750, G16000400" -County and PUMA "G1600770, G16001300" -County and PUMA "G1600790, G16000100" -County and PUMA "G1600810, G16001100" -County and PUMA "G1600830, G16000900" -County and PUMA "G1600850, G16000300" -County and PUMA "G1600870, G16000400" -County and PUMA "G1700010, G17000300" -County and PUMA "G1700030, G17000800" -County and PUMA "G1700050, G17000501" -County and PUMA "G1700070, G17002901" -County and PUMA "G1700090, G17000300" -County and PUMA "G1700110, G17002501" -County and PUMA "G1700130, G17000401" -County and PUMA "G1700150, G17000104" -County and PUMA "G1700170, G17000401" -County and PUMA "G1700190, G17002100" -County and PUMA "G1700210, G17001602" -County and PUMA "G1700230, G17000700" -County and PUMA "G1700250, G17000700" -County and PUMA "G1700270, G17000501" -County and PUMA "G1700290, G17000600" -County and PUMA "G1700310, G17003401" -County and PUMA "G1700310, G17003407" -County and PUMA "G1700310, G17003408" -County and PUMA "G1700310, G17003409" -County and PUMA "G1700310, G17003410" -County and PUMA "G1700310, G17003411" -County and PUMA "G1700310, G17003412" -County and PUMA "G1700310, G17003413" -County and PUMA "G1700310, G17003414" -County and PUMA "G1700310, G17003415" -County and PUMA "G1700310, G17003416" -County and PUMA "G1700310, G17003417" -County and PUMA "G1700310, G17003418" -County and PUMA "G1700310, G17003419" -County and PUMA "G1700310, G17003420" -County and PUMA "G1700310, G17003421" -County and PUMA "G1700310, G17003422" -County and PUMA "G1700310, G17003501" -County and PUMA "G1700310, G17003502" -County and PUMA "G1700310, G17003503" -County and PUMA "G1700310, G17003504" -County and PUMA "G1700310, G17003520" -County and PUMA "G1700310, G17003521" -County and PUMA "G1700310, G17003522" -County and PUMA "G1700310, G17003523" -County and PUMA "G1700310, G17003524" -County and PUMA "G1700310, G17003525" -County and PUMA "G1700310, G17003526" -County and PUMA "G1700310, G17003527" -County and PUMA "G1700310, G17003528" -County and PUMA "G1700310, G17003529" -County and PUMA "G1700310, G17003530" -County and PUMA "G1700310, G17003531" -County and PUMA "G1700310, G17003532" -County and PUMA "G1700330, G17000700" -County and PUMA "G1700350, G17000600" -County and PUMA "G1700370, G17002601" -County and PUMA "G1700390, G17001602" -County and PUMA "G1700410, G17000600" -County and PUMA "G1700430, G17003202" -County and PUMA "G1700430, G17003203" -County and PUMA "G1700430, G17003204" -County and PUMA "G1700430, G17003205" -County and PUMA "G1700430, G17003207" -County and PUMA "G1700430, G17003208" -County and PUMA "G1700430, G17003209" -County and PUMA "G1700450, G17000600" -County and PUMA "G1700470, G17000800" -County and PUMA "G1700490, G17000501" -County and PUMA "G1700510, G17000501" -County and PUMA "G1700530, G17002200" -County and PUMA "G1700550, G17000900" -County and PUMA "G1700570, G17000202" -County and PUMA "G1700590, G17000800" -County and PUMA "G1700610, G17000401" -County and PUMA "G1700630, G17003700" -County and PUMA "G1700650, G17000800" -County and PUMA "G1700670, G17000202" -County and PUMA "G1700690, G17000800" -County and PUMA "G1700710, G17000202" -County and PUMA "G1700730, G17000202" -County and PUMA "G1700750, G17002200" -County and PUMA "G1700770, G17000900" -County and PUMA "G1700790, G17000700" -County and PUMA "G1700810, G17001001" -County and PUMA "G1700830, G17000401" -County and PUMA "G1700850, G17000104" -County and PUMA "G1700870, G17000800" -County and PUMA "G1700890, G17003005" -County and PUMA "G1700890, G17003007" -County and PUMA "G1700890, G17003008" -County and PUMA "G1700890, G17003009" -County and PUMA "G1700910, G17002300" -County and PUMA "G1700930, G17003700" -County and PUMA "G1700950, G17002501" -County and PUMA "G1700970, G17003306" -County and PUMA "G1700970, G17003307" -County and PUMA "G1700970, G17003308" -County and PUMA "G1700970, G17003309" -County and PUMA "G1700970, G17003310" -County and PUMA "G1700990, G17002400" -County and PUMA "G1701010, G17000700" -County and PUMA "G1701030, G17000104" -County and PUMA "G1701050, G17002200" -County and PUMA "G1701070, G17001602" -County and PUMA "G1701090, G17000202" -County and PUMA "G1701110, G17003601" -County and PUMA "G1701110, G17003602" -County and PUMA "G1701130, G17002000" -County and PUMA "G1701150, G17001500" -County and PUMA "G1701170, G17000401" -County and PUMA "G1701190, G17001204" -County and PUMA "G1701190, G17001205" -County and PUMA "G1701210, G17001001" -County and PUMA "G1701230, G17002501" -County and PUMA "G1701250, G17000300" -County and PUMA "G1701270, G17000800" -County and PUMA "G1701290, G17001602" -County and PUMA "G1701310, G17000202" -County and PUMA "G1701330, G17001001" -County and PUMA "G1701350, G17000501" -County and PUMA "G1701370, G17000401" -County and PUMA "G1701390, G17001602" -County and PUMA "G1701410, G17002700" -County and PUMA "G1701430, G17001701" -County and PUMA "G1701450, G17000900" -County and PUMA "G1701470, G17001602" -County and PUMA "G1701490, G17000300" -County and PUMA "G1701510, G17000800" -County and PUMA "G1701530, G17000800" -County and PUMA "G1701550, G17002501" -County and PUMA "G1701570, G17001001" -County and PUMA "G1701590, G17000700" -County and PUMA "G1701610, G17000105" -County and PUMA "G1701630, G17001104" -County and PUMA "G1701630, G17001105" -County and PUMA "G1701650, G17000800" -County and PUMA "G1701670, G17001300" -County and PUMA "G1701690, G17000300" -County and PUMA "G1701710, G17000401" -County and PUMA "G1701730, G17001602" -County and PUMA "G1701750, G17002501" -County and PUMA "G1701770, G17002700" -County and PUMA "G1701790, G17001900" -County and PUMA "G1701810, G17000800" -County and PUMA "G1701830, G17002200" -County and PUMA "G1701850, G17000800" -County and PUMA "G1701870, G17000202" -County and PUMA "G1701890, G17001001" -County and PUMA "G1701910, G17000700" -County and PUMA "G1701930, G17000800" -County and PUMA "G1701950, G17000104" -County and PUMA "G1701970, G17003102" -County and PUMA "G1701970, G17003105" -County and PUMA "G1701970, G17003106" -County and PUMA "G1701970, G17003107" -County and PUMA "G1701970, G17003108" -County and PUMA "G1701990, G17000900" -County and PUMA "G1702010, G17002801" -County and PUMA "G1702010, G17002901" -County and PUMA "G1702030, G17002501" -County and PUMA "G1800010, G18000900" -County and PUMA "G1800030, G18001001" -County and PUMA "G1800030, G18001002" -County and PUMA "G1800030, G18001003" -County and PUMA "G1800050, G18002900" -County and PUMA "G1800070, G18001100" -County and PUMA "G1800090, G18001500" -County and PUMA "G1800110, G18001801" -County and PUMA "G1800130, G18002100" -County and PUMA "G1800150, G18001100" -County and PUMA "G1800170, G18001300" -County and PUMA "G1800190, G18003600" -County and PUMA "G1800210, G18001600" -County and PUMA "G1800230, G18001100" -County and PUMA "G1800250, G18003400" -County and PUMA "G1800270, G18002700" -County and PUMA "G1800290, G18003100" -County and PUMA "G1800310, G18003000" -County and PUMA "G1800330, G18000600" -County and PUMA "G1800350, G18002000" -County and PUMA "G1800370, G18003400" -County and PUMA "G1800390, G18000500" -County and PUMA "G1800410, G18002600" -County and PUMA "G1800430, G18003500" -County and PUMA "G1800450, G18001600" -County and PUMA "G1800470, G18003100" -County and PUMA "G1800490, G18000700" -County and PUMA "G1800510, G18003200" -County and PUMA "G1800530, G18001400" -County and PUMA "G1800550, G18002700" -County and PUMA "G1800570, G18001801" -County and PUMA "G1800570, G18001802" -County and PUMA "G1800570, G18001803" -County and PUMA "G1800590, G18002500" -County and PUMA "G1800610, G18003500" -County and PUMA "G1800630, G18002200" -County and PUMA "G1800650, G18001500" -County and PUMA "G1800670, G18001300" -County and PUMA "G1800690, G18000900" -County and PUMA "G1800710, G18002900" -County and PUMA "G1800730, G18000700" -County and PUMA "G1800750, G18001500" -County and PUMA "G1800770, G18003000" -County and PUMA "G1800790, G18003000" -County and PUMA "G1800810, G18002400" -County and PUMA "G1800830, G18003400" -County and PUMA "G1800850, G18000800" -County and PUMA "G1800870, G18000600" -County and PUMA "G1800890, G18000101" -County and PUMA "G1800890, G18000102" -County and PUMA "G1800890, G18000103" -County and PUMA "G1800890, G18000104" -County and PUMA "G1800910, G18000300" -County and PUMA "G1800930, G18002700" -County and PUMA "G1800950, G18001900" -County and PUMA "G1800970, G18002301" -County and PUMA "G1800970, G18002302" -County and PUMA "G1800970, G18002303" -County and PUMA "G1800970, G18002304" -County and PUMA "G1800970, G18002305" -County and PUMA "G1800970, G18002306" -County and PUMA "G1800970, G18002307" -County and PUMA "G1800990, G18000800" -County and PUMA "G1801010, G18002700" -County and PUMA "G1801030, G18001400" -County and PUMA "G1801050, G18002800" -County and PUMA "G1801070, G18001100" -County and PUMA "G1801090, G18002100" -County and PUMA "G1801110, G18000700" -County and PUMA "G1801130, G18000600" -County and PUMA "G1801150, G18003100" -County and PUMA "G1801170, G18002700" -County and PUMA "G1801190, G18002700" -County and PUMA "G1801210, G18001600" -County and PUMA "G1801230, G18003400" -County and PUMA "G1801250, G18003400" -County and PUMA "G1801270, G18000200" -County and PUMA "G1801290, G18003200" -County and PUMA "G1801310, G18000700" -County and PUMA "G1801330, G18002100" -County and PUMA "G1801350, G18001500" -County and PUMA "G1801370, G18003100" -County and PUMA "G1801390, G18002600" -County and PUMA "G1801410, G18000401" -County and PUMA "G1801410, G18000402" -County and PUMA "G1801430, G18003000" -County and PUMA "G1801450, G18002500" -County and PUMA "G1801470, G18003400" -County and PUMA "G1801490, G18000700" -County and PUMA "G1801510, G18000600" -County and PUMA "G1801530, G18001600" -County and PUMA "G1801550, G18003100" -County and PUMA "G1801570, G18001200" -County and PUMA "G1801590, G18001300" -County and PUMA "G1801610, G18002600" -County and PUMA "G1801630, G18003300" -County and PUMA "G1801650, G18001600" -County and PUMA "G1801670, G18001700" -County and PUMA "G1801690, G18001400" -County and PUMA "G1801710, G18001600" -County and PUMA "G1801730, G18003200" -County and PUMA "G1801750, G18003500" -County and PUMA "G1801770, G18002600" -County and PUMA "G1801790, G18000900" -County and PUMA "G1801810, G18001100" -County and PUMA "G1801830, G18000900" -County and PUMA "G1900010, G19001800" -County and PUMA "G1900030, G19001800" -County and PUMA "G1900050, G19000400" -County and PUMA "G1900070, G19001800" -County and PUMA "G1900090, G19001800" -County and PUMA "G1900110, G19001200" -County and PUMA "G1900130, G19000500" -County and PUMA "G1900150, G19001300" -County and PUMA "G1900170, G19000400" -County and PUMA "G1900190, G19000700" -County and PUMA "G1900210, G19001900" -County and PUMA "G1900230, G19000600" -County and PUMA "G1900250, G19001900" -County and PUMA "G1900270, G19001900" -County and PUMA "G1900290, G19002100" -County and PUMA "G1900310, G19000800" -County and PUMA "G1900330, G19000200" -County and PUMA "G1900350, G19001900" -County and PUMA "G1900370, G19000400" -County and PUMA "G1900390, G19001800" -County and PUMA "G1900410, G19000100" -County and PUMA "G1900430, G19000400" -County and PUMA "G1900450, G19000800" -County and PUMA "G1900470, G19001900" -County and PUMA "G1900490, G19001400" -County and PUMA "G1900490, G19001500" -County and PUMA "G1900510, G19002200" -County and PUMA "G1900530, G19001800" -County and PUMA "G1900550, G19000700" -County and PUMA "G1900570, G19002300" -County and PUMA "G1900590, G19000100" -County and PUMA "G1900610, G19000700" -County and PUMA "G1900630, G19000100" -County and PUMA "G1900650, G19000400" -County and PUMA "G1900670, G19000200" -County and PUMA "G1900690, G19000600" -County and PUMA "G1900710, G19002100" -County and PUMA "G1900730, G19001900" -County and PUMA "G1900750, G19000600" -County and PUMA "G1900770, G19001800" -County and PUMA "G1900790, G19000600" -County and PUMA "G1900810, G19000200" -County and PUMA "G1900830, G19000600" -County and PUMA "G1900850, G19002100" -County and PUMA "G1900870, G19002300" -County and PUMA "G1900890, G19000400" -County and PUMA "G1900910, G19000600" -County and PUMA "G1900930, G19001900" -County and PUMA "G1900950, G19001200" -County and PUMA "G1900970, G19000700" -County and PUMA "G1900990, G19001400" -County and PUMA "G1901010, G19002200" -County and PUMA "G1901030, G19001100" -County and PUMA "G1901050, G19000800" -County and PUMA "G1901070, G19002200" -County and PUMA "G1901090, G19000200" -County and PUMA "G1901110, G19002300" -County and PUMA "G1901130, G19001000" -County and PUMA "G1901150, G19002300" -County and PUMA "G1901170, G19001800" -County and PUMA "G1901190, G19000100" -County and PUMA "G1901210, G19001400" -County and PUMA "G1901230, G19002200" -County and PUMA "G1901250, G19001400" -County and PUMA "G1901270, G19001200" -County and PUMA "G1901290, G19002100" -County and PUMA "G1901310, G19000200" -County and PUMA "G1901330, G19001900" -County and PUMA "G1901350, G19001800" -County and PUMA "G1901370, G19002100" -County and PUMA "G1901390, G19000800" -County and PUMA "G1901410, G19000100" -County and PUMA "G1901430, G19000100" -County and PUMA "G1901450, G19002100" -County and PUMA "G1901470, G19000100" -County and PUMA "G1901490, G19002000" -County and PUMA "G1901510, G19001900" -County and PUMA "G1901530, G19001500" -County and PUMA "G1901530, G19001600" -County and PUMA "G1901530, G19001700" -County and PUMA "G1901550, G19002100" -County and PUMA "G1901570, G19001200" -County and PUMA "G1901590, G19001800" -County and PUMA "G1901610, G19001900" -County and PUMA "G1901630, G19000900" -County and PUMA "G1901650, G19002100" -County and PUMA "G1901670, G19000100" -County and PUMA "G1901690, G19001300" -County and PUMA "G1901710, G19001200" -County and PUMA "G1901730, G19001800" -County and PUMA "G1901750, G19001800" -County and PUMA "G1901770, G19002200" -County and PUMA "G1901790, G19002200" -County and PUMA "G1901810, G19001400" -County and PUMA "G1901830, G19002200" -County and PUMA "G1901850, G19001800" -County and PUMA "G1901870, G19000600" -County and PUMA "G1901890, G19000200" -County and PUMA "G1901910, G19000400" -County and PUMA "G1901930, G19002000" -County and PUMA "G1901950, G19000200" -County and PUMA "G1901970, G19000600" -County and PUMA "G2000010, G20001400" -County and PUMA "G2000030, G20001400" -County and PUMA "G2000050, G20000400" -County and PUMA "G2000070, G20001100" -County and PUMA "G2000090, G20001100" -County and PUMA "G2000110, G20001400" -County and PUMA "G2000130, G20000802" -County and PUMA "G2000150, G20001302" -County and PUMA "G2000150, G20001304" -County and PUMA "G2000170, G20000900" -County and PUMA "G2000190, G20000900" -County and PUMA "G2000210, G20001500" -County and PUMA "G2000230, G20000100" -County and PUMA "G2000250, G20001200" -County and PUMA "G2000270, G20000200" -County and PUMA "G2000290, G20000200" -County and PUMA "G2000310, G20000900" -County and PUMA "G2000330, G20001100" -County and PUMA "G2000350, G20000900" -County and PUMA "G2000350, G20001100" -County and PUMA "G2000370, G20001500" -County and PUMA "G2000390, G20000100" -County and PUMA "G2000410, G20000200" -County and PUMA "G2000430, G20000400" -County and PUMA "G2000450, G20000700" -County and PUMA "G2000470, G20001100" -County and PUMA "G2000490, G20000900" -County and PUMA "G2000510, G20000100" -County and PUMA "G2000530, G20000200" -County and PUMA "G2000550, G20001200" -County and PUMA "G2000570, G20001200" -County and PUMA "G2000590, G20001400" -County and PUMA "G2000610, G20000300" -County and PUMA "G2000630, G20000100" -County and PUMA "G2000650, G20000100" -County and PUMA "G2000670, G20001200" -County and PUMA "G2000690, G20001200" -County and PUMA "G2000710, G20000100" -County and PUMA "G2000730, G20000900" -County and PUMA "G2000750, G20001200" -County and PUMA "G2000770, G20001100" -County and PUMA "G2000790, G20001301" -County and PUMA "G2000810, G20001200" -County and PUMA "G2000830, G20001200" -County and PUMA "G2000850, G20000802" -County and PUMA "G2000870, G20000400" -County and PUMA "G2000890, G20000200" -County and PUMA "G2000910, G20000601" -County and PUMA "G2000910, G20000602" -County and PUMA "G2000910, G20000603" -County and PUMA "G2000910, G20000604" -County and PUMA "G2000930, G20001200" -County and PUMA "G2000950, G20001100" -County and PUMA "G2000970, G20001100" -County and PUMA "G2000990, G20001500" -County and PUMA "G2001010, G20000100" -County and PUMA "G2001030, G20000400" -County and PUMA "G2001050, G20000200" -County and PUMA "G2001070, G20001400" -County and PUMA "G2001090, G20000100" -County and PUMA "G2001110, G20000900" -County and PUMA "G2001130, G20001000" -County and PUMA "G2001150, G20000900" -County and PUMA "G2001170, G20000200" -County and PUMA "G2001190, G20001200" -County and PUMA "G2001210, G20001400" -County and PUMA "G2001230, G20000200" -County and PUMA "G2001250, G20001500" -County and PUMA "G2001270, G20000900" -County and PUMA "G2001290, G20001200" -County and PUMA "G2001310, G20000200" -County and PUMA "G2001330, G20001500" -County and PUMA "G2001350, G20000100" -County and PUMA "G2001370, G20000100" -County and PUMA "G2001390, G20000802" -County and PUMA "G2001410, G20000100" -County and PUMA "G2001430, G20000200" -County and PUMA "G2001450, G20001100" -County and PUMA "G2001470, G20000100" -County and PUMA "G2001490, G20000300" -County and PUMA "G2001510, G20001100" -County and PUMA "G2001530, G20000100" -County and PUMA "G2001550, G20001000" -County and PUMA "G2001570, G20000200" -County and PUMA "G2001590, G20001000" -County and PUMA "G2001610, G20000300" -County and PUMA "G2001630, G20000100" -County and PUMA "G2001650, G20001100" -County and PUMA "G2001670, G20000100" -County and PUMA "G2001690, G20000200" -County and PUMA "G2001710, G20000100" -County and PUMA "G2001730, G20001301" -County and PUMA "G2001730, G20001302" -County and PUMA "G2001730, G20001303" -County and PUMA "G2001730, G20001304" -County and PUMA "G2001750, G20001200" -County and PUMA "G2001770, G20000801" -County and PUMA "G2001770, G20000802" -County and PUMA "G2001790, G20000100" -County and PUMA "G2001810, G20000100" -County and PUMA "G2001830, G20000100" -County and PUMA "G2001850, G20001100" -County and PUMA "G2001870, G20001200" -County and PUMA "G2001890, G20001200" -County and PUMA "G2001910, G20001100" -County and PUMA "G2001930, G20000100" -County and PUMA "G2001950, G20000100" -County and PUMA "G2001970, G20000802" -County and PUMA "G2001990, G20000100" -County and PUMA "G2002010, G20000200" -County and PUMA "G2002030, G20000100" -County and PUMA "G2002050, G20000900" -County and PUMA "G2002070, G20000900" -County and PUMA "G2002090, G20000500" -County and PUMA "G2100010, G21000600" -County and PUMA "G2100030, G21000400" -County and PUMA "G2100050, G21002000" -County and PUMA "G2100070, G21000100" -County and PUMA "G2100090, G21000400" -County and PUMA "G2100110, G21002700" -County and PUMA "G2100130, G21000900" -County and PUMA "G2100150, G21002500" -County and PUMA "G2100170, G21002300" -County and PUMA "G2100190, G21002800" -County and PUMA "G2100210, G21002100" -County and PUMA "G2100230, G21002700" -County and PUMA "G2100250, G21001000" -County and PUMA "G2100270, G21001300" -County and PUMA "G2100290, G21001600" -County and PUMA "G2100310, G21000400" -County and PUMA "G2100330, G21000200" -County and PUMA "G2100350, G21000100" -County and PUMA "G2100370, G21002600" -County and PUMA "G2100390, G21000100" -County and PUMA "G2100410, G21002600" -County and PUMA "G2100430, G21002800" -County and PUMA "G2100450, G21000600" -County and PUMA "G2100470, G21000300" -County and PUMA "G2100490, G21002300" -County and PUMA "G2100510, G21000800" -County and PUMA "G2100530, G21000600" -County and PUMA "G2100550, G21000200" -County and PUMA "G2100570, G21000600" -County and PUMA "G2100590, G21001500" -County and PUMA "G2100610, G21000400" -County and PUMA "G2100630, G21002800" -County and PUMA "G2100650, G21002200" -County and PUMA "G2100670, G21001901" -County and PUMA "G2100670, G21001902" -County and PUMA "G2100690, G21002700" -County and PUMA "G2100710, G21001100" -County and PUMA "G2100730, G21002000" -County and PUMA "G2100750, G21000100" -County and PUMA "G2100770, G21002600" -County and PUMA "G2100790, G21002100" -County and PUMA "G2100810, G21002600" -County and PUMA "G2100830, G21000100" -County and PUMA "G2100850, G21001300" -County and PUMA "G2100870, G21000600" -County and PUMA "G2100890, G21002800" -County and PUMA "G2100910, G21001500" -County and PUMA "G2100930, G21001200" -County and PUMA "G2100930, G21001300" -County and PUMA "G2100950, G21000900" -County and PUMA "G2100970, G21002300" -County and PUMA "G2100990, G21000400" -County and PUMA "G2101010, G21001400" -County and PUMA "G2101030, G21001800" -County and PUMA "G2101050, G21000100" -County and PUMA "G2101070, G21000200" -County and PUMA "G2101090, G21000800" -County and PUMA "G2101110, G21001701" -County and PUMA "G2101110, G21001702" -County and PUMA "G2101110, G21001703" -County and PUMA "G2101110, G21001704" -County and PUMA "G2101110, G21001705" -County and PUMA "G2101110, G21001706" -County and PUMA "G2101130, G21002100" -County and PUMA "G2101150, G21001100" -County and PUMA "G2101170, G21002400" -County and PUMA "G2101190, G21001000" -County and PUMA "G2101210, G21000900" -County and PUMA "G2101230, G21001200" -County and PUMA "G2101250, G21000800" -County and PUMA "G2101270, G21002800" -County and PUMA "G2101290, G21001000" -County and PUMA "G2101310, G21001000" -County and PUMA "G2101330, G21001000" -County and PUMA "G2101350, G21002700" -County and PUMA "G2101370, G21002100" -County and PUMA "G2101390, G21000200" -County and PUMA "G2101410, G21000400" -County and PUMA "G2101430, G21000300" -County and PUMA "G2101450, G21000100" -County and PUMA "G2101470, G21000700" -County and PUMA "G2101490, G21001400" -County and PUMA "G2101510, G21002200" -County and PUMA "G2101530, G21001100" -County and PUMA "G2101550, G21001200" -County and PUMA "G2101570, G21000100" -County and PUMA "G2101590, G21001100" -County and PUMA "G2101610, G21002700" -County and PUMA "G2101630, G21001300" -County and PUMA "G2101650, G21002700" -County and PUMA "G2101670, G21002000" -County and PUMA "G2101690, G21000400" -County and PUMA "G2101710, G21000400" -County and PUMA "G2101730, G21002700" -County and PUMA "G2101750, G21002700" -County and PUMA "G2101770, G21000200" -County and PUMA "G2101790, G21001200" -County and PUMA "G2101810, G21002300" -County and PUMA "G2101830, G21001400" -County and PUMA "G2101850, G21001800" -County and PUMA "G2101870, G21002600" -County and PUMA "G2101890, G21001000" -County and PUMA "G2101910, G21002600" -County and PUMA "G2101930, G21001000" -County and PUMA "G2101950, G21001100" -County and PUMA "G2101970, G21002200" -County and PUMA "G2101990, G21000700" -County and PUMA "G2102010, G21002700" -County and PUMA "G2102030, G21000800" -County and PUMA "G2102050, G21002700" -County and PUMA "G2102070, G21000600" -County and PUMA "G2102090, G21002300" -County and PUMA "G2102110, G21001600" -County and PUMA "G2102110, G21001800" -County and PUMA "G2102130, G21000400" -County and PUMA "G2102150, G21001600" -County and PUMA "G2102170, G21000600" -County and PUMA "G2102190, G21000300" -County and PUMA "G2102210, G21000300" -County and PUMA "G2102230, G21001800" -County and PUMA "G2102250, G21001400" -County and PUMA "G2102270, G21000500" -County and PUMA "G2102290, G21001200" -County and PUMA "G2102310, G21000700" -County and PUMA "G2102330, G21001400" -County and PUMA "G2102350, G21000900" -County and PUMA "G2102370, G21001000" -County and PUMA "G2102390, G21002000" -County and PUMA "G2200010, G22001100" -County and PUMA "G2200030, G22000800" -County and PUMA "G2200050, G22001600" -County and PUMA "G2200070, G22002000" -County and PUMA "G2200090, G22000600" -County and PUMA "G2200110, G22000800" -County and PUMA "G2200130, G22000300" -County and PUMA "G2200150, G22000200" -County and PUMA "G2200170, G22000100" -County and PUMA "G2200170, G22000101" -County and PUMA "G2200190, G22000800" -County and PUMA "G2200190, G22000900" -County and PUMA "G2200210, G22000500" -County and PUMA "G2200230, G22000900" -County and PUMA "G2200250, G22000600" -County and PUMA "G2200270, G22000300" -County and PUMA "G2200290, G22000600" -County and PUMA "G2200310, G22000300" -County and PUMA "G2200330, G22001500" -County and PUMA "G2200330, G22001501" -County and PUMA "G2200330, G22001502" -County and PUMA "G2200350, G22000500" -County and PUMA "G2200370, G22001400" -County and PUMA "G2200390, G22001000" -County and PUMA "G2200410, G22000500" -County and PUMA "G2200430, G22000600" -County and PUMA "G2200450, G22001300" -County and PUMA "G2200470, G22001400" -County and PUMA "G2200490, G22000500" -County and PUMA "G2200510, G22002300" -County and PUMA "G2200510, G22002301" -County and PUMA "G2200510, G22002302" -County and PUMA "G2200510, G22002500" -County and PUMA "G2200530, G22000900" -County and PUMA "G2200550, G22001200" -County and PUMA "G2200550, G22001201" -County and PUMA "G2200570, G22002000" -County and PUMA "G2200590, G22000600" -County and PUMA "G2200610, G22000300" -County and PUMA "G2200630, G22001700" -County and PUMA "G2200650, G22000500" -County and PUMA "G2200670, G22000500" -County and PUMA "G2200690, G22000300" -County and PUMA "G2200710, G22002400" -County and PUMA "G2200710, G22002401" -County and PUMA "G2200710, G22002402" -County and PUMA "G2200730, G22000400" -County and PUMA "G2200750, G22002500" -County and PUMA "G2200770, G22001400" -County and PUMA "G2200790, G22000700" -County and PUMA "G2200810, G22000300" -County and PUMA "G2200830, G22000500" -County and PUMA "G2200850, G22000300" -County and PUMA "G2200870, G22002500" -County and PUMA "G2200890, G22001900" -County and PUMA "G2200910, G22001700" -County and PUMA "G2200930, G22001900" -County and PUMA "G2200950, G22001900" -County and PUMA "G2200970, G22001000" -County and PUMA "G2200990, G22001300" -County and PUMA "G2201010, G22001300" -County and PUMA "G2201030, G22002200" -County and PUMA "G2201030, G22002201" -County and PUMA "G2201050, G22001800" -County and PUMA "G2201070, G22000500" -County and PUMA "G2201090, G22002100" -County and PUMA "G2201110, G22000500" -County and PUMA "G2201130, G22001100" -County and PUMA "G2201150, G22000700" -County and PUMA "G2201170, G22001800" -County and PUMA "G2201190, G22000200" -County and PUMA "G2201210, G22001400" -County and PUMA "G2201230, G22000500" -County and PUMA "G2201250, G22001400" -County and PUMA "G2201270, G22000600" -County and PUMA "G2300010, G23000600" -County and PUMA "G2300030, G23000100" -County and PUMA "G2300050, G23000700" -County and PUMA "G2300050, G23000800" -County and PUMA "G2300050, G23000900" -County and PUMA "G2300050, G23001000" -County and PUMA "G2300070, G23000200" -County and PUMA "G2300090, G23000500" -County and PUMA "G2300110, G23000400" -County and PUMA "G2300130, G23000500" -County and PUMA "G2300150, G23000500" -County and PUMA "G2300170, G23000200" -County and PUMA "G2300190, G23000300" -County and PUMA "G2300210, G23000200" -County and PUMA "G2300230, G23000700" -County and PUMA "G2300250, G23000200" -County and PUMA "G2300270, G23000500" -County and PUMA "G2300290, G23000100" -County and PUMA "G2300310, G23000800" -County and PUMA "G2300310, G23000900" -County and PUMA "G2400010, G24000100" -County and PUMA "G2400030, G24001201" -County and PUMA "G2400030, G24001202" -County and PUMA "G2400030, G24001203" -County and PUMA "G2400030, G24001204" -County and PUMA "G2400050, G24000501" -County and PUMA "G2400050, G24000502" -County and PUMA "G2400050, G24000503" -County and PUMA "G2400050, G24000504" -County and PUMA "G2400050, G24000505" -County and PUMA "G2400050, G24000506" -County and PUMA "G2400050, G24000507" -County and PUMA "G2400090, G24001500" -County and PUMA "G2400110, G24001300" -County and PUMA "G2400130, G24000400" -County and PUMA "G2400150, G24000700" -County and PUMA "G2400170, G24001600" -County and PUMA "G2400190, G24001300" -County and PUMA "G2400210, G24000301" -County and PUMA "G2400210, G24000302" -County and PUMA "G2400230, G24000100" -County and PUMA "G2400250, G24000601" -County and PUMA "G2400250, G24000602" -County and PUMA "G2400270, G24000901" -County and PUMA "G2400270, G24000902" -County and PUMA "G2400290, G24001300" -County and PUMA "G2400310, G24001001" -County and PUMA "G2400310, G24001002" -County and PUMA "G2400310, G24001003" -County and PUMA "G2400310, G24001004" -County and PUMA "G2400310, G24001005" -County and PUMA "G2400310, G24001006" -County and PUMA "G2400310, G24001007" -County and PUMA "G2400330, G24001101" -County and PUMA "G2400330, G24001102" -County and PUMA "G2400330, G24001103" -County and PUMA "G2400330, G24001104" -County and PUMA "G2400330, G24001105" -County and PUMA "G2400330, G24001106" -County and PUMA "G2400330, G24001107" -County and PUMA "G2400350, G24001300" -County and PUMA "G2400370, G24001500" -County and PUMA "G2400390, G24001400" -County and PUMA "G2400410, G24001300" -County and PUMA "G2400430, G24000200" -County and PUMA "G2400450, G24001400" -County and PUMA "G2400470, G24001400" -County and PUMA "G2405100, G24000801" -County and PUMA "G2405100, G24000802" -County and PUMA "G2405100, G24000803" -County and PUMA "G2405100, G24000804" -County and PUMA "G2405100, G24000805" -County and PUMA "G2500010, G25004700" -County and PUMA "G2500010, G25004800" -County and PUMA "G2500030, G25000100" -County and PUMA "G2500050, G25004200" -County and PUMA "G2500050, G25004301" -County and PUMA "G2500050, G25004302" -County and PUMA "G2500050, G25004303" -County and PUMA "G2500050, G25004500" -County and PUMA "G2500050, G25004901" -County and PUMA "G2500070, G25004800" -County and PUMA "G2500090, G25000701" -County and PUMA "G2500090, G25000702" -County and PUMA "G2500090, G25000703" -County and PUMA "G2500090, G25000704" -County and PUMA "G2500090, G25001000" -County and PUMA "G2500090, G25001300" -County and PUMA "G2500090, G25002800" -County and PUMA "G2500110, G25000200" -County and PUMA "G2500130, G25001600" -County and PUMA "G2500130, G25001900" -County and PUMA "G2500130, G25001901" -County and PUMA "G2500130, G25001902" -County and PUMA "G2500150, G25000200" -County and PUMA "G2500150, G25001600" -County and PUMA "G2500170, G25000400" -County and PUMA "G2500170, G25000501" -County and PUMA "G2500170, G25000502" -County and PUMA "G2500170, G25000503" -County and PUMA "G2500170, G25000504" -County and PUMA "G2500170, G25000505" -County and PUMA "G2500170, G25000506" -County and PUMA "G2500170, G25000507" -County and PUMA "G2500170, G25000508" -County and PUMA "G2500170, G25001000" -County and PUMA "G2500170, G25001300" -County and PUMA "G2500170, G25001400" -County and PUMA "G2500170, G25002400" -County and PUMA "G2500170, G25002800" -County and PUMA "G2500170, G25003400" -County and PUMA "G2500170, G25003500" -County and PUMA "G2500190, G25004800" -County and PUMA "G2500210, G25002400" -County and PUMA "G2500210, G25003400" -County and PUMA "G2500210, G25003500" -County and PUMA "G2500210, G25003601" -County and PUMA "G2500210, G25003602" -County and PUMA "G2500210, G25003603" -County and PUMA "G2500210, G25003900" -County and PUMA "G2500210, G25004000" -County and PUMA "G2500210, G25004200" -County and PUMA "G2500230, G25003900" -County and PUMA "G2500230, G25004000" -County and PUMA "G2500230, G25004301" -County and PUMA "G2500230, G25004901" -County and PUMA "G2500230, G25004902" -County and PUMA "G2500230, G25004903" -County and PUMA "G2500250, G25003301" -County and PUMA "G2500250, G25003302" -County and PUMA "G2500250, G25003303" -County and PUMA "G2500250, G25003304" -County and PUMA "G2500250, G25003305" -County and PUMA "G2500250, G25003306" -County and PUMA "G2500270, G25000300" -County and PUMA "G2500270, G25000301" -County and PUMA "G2500270, G25000302" -County and PUMA "G2500270, G25000303" -County and PUMA "G2500270, G25000304" -County and PUMA "G2500270, G25000400" -County and PUMA "G2500270, G25001400" -County and PUMA "G2500270, G25002400" -County and PUMA "G2600010, G26000300" -County and PUMA "G2600030, G26000200" -County and PUMA "G2600050, G26000900" -County and PUMA "G2600070, G26000300" -County and PUMA "G2600090, G26000400" -County and PUMA "G2600110, G26001300" -County and PUMA "G2600130, G26000100" -County and PUMA "G2600150, G26002000" -County and PUMA "G2600170, G26001400" -County and PUMA "G2600190, G26000500" -County and PUMA "G2600210, G26002400" -County and PUMA "G2600230, G26002200" -County and PUMA "G2600250, G26002000" -County and PUMA "G2600270, G26002300" -County and PUMA "G2600290, G26000400" -County and PUMA "G2600310, G26000300" -County and PUMA "G2600330, G26000200" -County and PUMA "G2600350, G26001200" -County and PUMA "G2600370, G26001900" -County and PUMA "G2600390, G26000300" -County and PUMA "G2600410, G26000200" -County and PUMA "G2600430, G26000100" -County and PUMA "G2600450, G26001900" -County and PUMA "G2600470, G26000400" -County and PUMA "G2600490, G26001701" -County and PUMA "G2600490, G26001702" -County and PUMA "G2600490, G26001703" -County and PUMA "G2600490, G26001704" -County and PUMA "G2600510, G26001300" -County and PUMA "G2600530, G26000100" -County and PUMA "G2600550, G26000500" -County and PUMA "G2600570, G26001200" -County and PUMA "G2600590, G26002500" -County and PUMA "G2600610, G26000100" -County and PUMA "G2600630, G26001600" -County and PUMA "G2600650, G26001801" -County and PUMA "G2600650, G26001802" -County and PUMA "G2600670, G26001100" -County and PUMA "G2600690, G26001300" -County and PUMA "G2600710, G26000100" -County and PUMA "G2600730, G26001200" -County and PUMA "G2600750, G26002600" -County and PUMA "G2600770, G26002101" -County and PUMA "G2600770, G26002102" -County and PUMA "G2600790, G26000400" -County and PUMA "G2600810, G26001001" -County and PUMA "G2600810, G26001002" -County and PUMA "G2600810, G26001003" -County and PUMA "G2600810, G26001004" -County and PUMA "G2600830, G26000100" -County and PUMA "G2600850, G26000600" -County and PUMA "G2600870, G26001701" -County and PUMA "G2600890, G26000500" -County and PUMA "G2600910, G26002500" -County and PUMA "G2600930, G26002800" -County and PUMA "G2600950, G26000200" -County and PUMA "G2600970, G26000200" -County and PUMA "G2600990, G26003001" -County and PUMA "G2600990, G26003002" -County and PUMA "G2600990, G26003003" -County and PUMA "G2600990, G26003004" -County and PUMA "G2600990, G26003005" -County and PUMA "G2600990, G26003006" -County and PUMA "G2601010, G26000500" -County and PUMA "G2601030, G26000100" -County and PUMA "G2601050, G26000600" -County and PUMA "G2601070, G26001100" -County and PUMA "G2601090, G26000200" -County and PUMA "G2601110, G26001400" -County and PUMA "G2601130, G26000400" -County and PUMA "G2601150, G26003300" -County and PUMA "G2601170, G26001100" -County and PUMA "G2601190, G26000300" -County and PUMA "G2601210, G26000700" -County and PUMA "G2601230, G26000600" -County and PUMA "G2601250, G26002901" -County and PUMA "G2601250, G26002902" -County and PUMA "G2601250, G26002903" -County and PUMA "G2601250, G26002904" -County and PUMA "G2601250, G26002905" -County and PUMA "G2601250, G26002906" -County and PUMA "G2601250, G26002907" -County and PUMA "G2601250, G26002908" -County and PUMA "G2601270, G26000600" -County and PUMA "G2601290, G26001300" -County and PUMA "G2601310, G26000100" -County and PUMA "G2601330, G26001100" -County and PUMA "G2601350, G26000300" -County and PUMA "G2601370, G26000300" -County and PUMA "G2601390, G26000801" -County and PUMA "G2601390, G26000802" -County and PUMA "G2601410, G26000300" -County and PUMA "G2601430, G26001300" -County and PUMA "G2601450, G26001500" -County and PUMA "G2601470, G26003100" -County and PUMA "G2601490, G26002200" -County and PUMA "G2601510, G26001600" -County and PUMA "G2601530, G26000200" -County and PUMA "G2601550, G26001704" -County and PUMA "G2601570, G26001600" -County and PUMA "G2601590, G26002300" -County and PUMA "G2601610, G26002701" -County and PUMA "G2601610, G26002702" -County and PUMA "G2601610, G26002703" -County and PUMA "G2601630, G26003201" -County and PUMA "G2601630, G26003202" -County and PUMA "G2601630, G26003203" -County and PUMA "G2601630, G26003204" -County and PUMA "G2601630, G26003205" -County and PUMA "G2601630, G26003206" -County and PUMA "G2601630, G26003207" -County and PUMA "G2601630, G26003208" -County and PUMA "G2601630, G26003209" -County and PUMA "G2601630, G26003210" -County and PUMA "G2601630, G26003211" -County and PUMA "G2601630, G26003212" -County and PUMA "G2601630, G26003213" -County and PUMA "G2601650, G26000400" -County and PUMA "G2700010, G27000300" -County and PUMA "G2700030, G27001101" -County and PUMA "G2700030, G27001102" -County and PUMA "G2700030, G27001103" -County and PUMA "G2700050, G27000200" -County and PUMA "G2700070, G27000200" -County and PUMA "G2700090, G27001000" -County and PUMA "G2700110, G27000800" -County and PUMA "G2700130, G27002200" -County and PUMA "G2700150, G27002000" -County and PUMA "G2700170, G27000300" -County and PUMA "G2700170, G27000400" -County and PUMA "G2700190, G27001700" -County and PUMA "G2700210, G27000300" -County and PUMA "G2700230, G27002000" -County and PUMA "G2700250, G27000600" -County and PUMA "G2700270, G27000100" -County and PUMA "G2700290, G27000200" -County and PUMA "G2700310, G27000400" -County and PUMA "G2700330, G27002100" -County and PUMA "G2700350, G27000700" -County and PUMA "G2700370, G27001501" -County and PUMA "G2700370, G27001502" -County and PUMA "G2700370, G27001503" -County and PUMA "G2700390, G27002400" -County and PUMA "G2700410, G27000800" -County and PUMA "G2700430, G27002100" -County and PUMA "G2700450, G27002600" -County and PUMA "G2700470, G27002400" -County and PUMA "G2700490, G27002300" -County and PUMA "G2700510, G27000800" -County and PUMA "G2700530, G27001401" -County and PUMA "G2700530, G27001402" -County and PUMA "G2700530, G27001403" -County and PUMA "G2700530, G27001404" -County and PUMA "G2700530, G27001405" -County and PUMA "G2700530, G27001406" -County and PUMA "G2700530, G27001407" -County and PUMA "G2700530, G27001408" -County and PUMA "G2700530, G27001409" -County and PUMA "G2700530, G27001410" -County and PUMA "G2700550, G27002600" -County and PUMA "G2700570, G27000200" -County and PUMA "G2700590, G27000600" -County and PUMA "G2700610, G27000300" -County and PUMA "G2700630, G27002100" -County and PUMA "G2700650, G27000600" -County and PUMA "G2700670, G27001900" -County and PUMA "G2700690, G27000100" -County and PUMA "G2700710, G27000400" -County and PUMA "G2700730, G27002000" -County and PUMA "G2700750, G27000400" -County and PUMA "G2700770, G27000200" -County and PUMA "G2700790, G27002300" -County and PUMA "G2700810, G27002000" -County and PUMA "G2700830, G27002000" -County and PUMA "G2700850, G27001900" -County and PUMA "G2700870, G27000200" -County and PUMA "G2700890, G27000100" -County and PUMA "G2700910, G27002100" -County and PUMA "G2700930, G27001900" -County and PUMA "G2700950, G27000600" -County and PUMA "G2700970, G27000700" -County and PUMA "G2700990, G27002400" -County and PUMA "G2701010, G27002100" -County and PUMA "G2701030, G27002200" -County and PUMA "G2701050, G27002100" -County and PUMA "G2701070, G27000100" -County and PUMA "G2701090, G27002500" -County and PUMA "G2701110, G27000800" -County and PUMA "G2701130, G27000100" -County and PUMA "G2701150, G27000600" -County and PUMA "G2701170, G27002100" -County and PUMA "G2701190, G27000100" -County and PUMA "G2701210, G27000800" -County and PUMA "G2701230, G27001301" -County and PUMA "G2701230, G27001302" -County and PUMA "G2701230, G27001303" -County and PUMA "G2701230, G27001304" -County and PUMA "G2701250, G27000100" -County and PUMA "G2701270, G27002000" -County and PUMA "G2701290, G27001900" -County and PUMA "G2701310, G27002300" -County and PUMA "G2701330, G27002100" -County and PUMA "G2701350, G27000100" -County and PUMA "G2701370, G27000400" -County and PUMA "G2701370, G27000500" -County and PUMA "G2701390, G27001600" -County and PUMA "G2701390, G27001700" -County and PUMA "G2701410, G27001000" -County and PUMA "G2701430, G27001900" -County and PUMA "G2701450, G27000900" -County and PUMA "G2701470, G27002400" -County and PUMA "G2701490, G27000800" -County and PUMA "G2701510, G27000800" -County and PUMA "G2701530, G27000700" -County and PUMA "G2701550, G27000800" -County and PUMA "G2701570, G27002600" -County and PUMA "G2701590, G27000700" -County and PUMA "G2701610, G27002200" -County and PUMA "G2701630, G27001201" -County and PUMA "G2701630, G27001202" -County and PUMA "G2701650, G27002100" -County and PUMA "G2701670, G27000800" -County and PUMA "G2701690, G27002600" -County and PUMA "G2701710, G27001800" -County and PUMA "G2701730, G27002000" -County and PUMA "G2800010, G28001600" -County and PUMA "G2800030, G28000200" -County and PUMA "G2800050, G28001600" -County and PUMA "G2800070, G28000700" -County and PUMA "G2800090, G28000200" -County and PUMA "G2800110, G28000800" -County and PUMA "G2800130, G28000400" -County and PUMA "G2800150, G28000700" -County and PUMA "G2800170, G28000400" -County and PUMA "G2800190, G28000600" -County and PUMA "G2800210, G28001600" -County and PUMA "G2800230, G28001500" -County and PUMA "G2800250, G28000600" -County and PUMA "G2800270, G28000300" -County and PUMA "G2800290, G28001200" -County and PUMA "G2800310, G28001700" -County and PUMA "G2800330, G28000100" -County and PUMA "G2800350, G28001800" -County and PUMA "G2800370, G28001600" -County and PUMA "G2800390, G28001900" -County and PUMA "G2800410, G28001700" -County and PUMA "G2800430, G28000700" -County and PUMA "G2800450, G28001900" -County and PUMA "G2800470, G28002000" -County and PUMA "G2800490, G28001000" -County and PUMA "G2800490, G28001100" -County and PUMA "G2800490, G28001200" -County and PUMA "G2800510, G28000700" -County and PUMA "G2800530, G28000800" -County and PUMA "G2800550, G28000800" -County and PUMA "G2800570, G28000400" -County and PUMA "G2800590, G28002100" -County and PUMA "G2800610, G28001400" -County and PUMA "G2800630, G28001600" -County and PUMA "G2800650, G28001700" -County and PUMA "G2800670, G28001700" -County and PUMA "G2800690, G28001400" -County and PUMA "G2800710, G28000400" -County and PUMA "G2800730, G28001800" -County and PUMA "G2800750, G28001500" -County and PUMA "G2800770, G28001600" -County and PUMA "G2800790, G28001400" -County and PUMA "G2800810, G28000500" -County and PUMA "G2800830, G28000700" -County and PUMA "G2800850, G28001600" -County and PUMA "G2800870, G28000600" -County and PUMA "G2800890, G28000900" -County and PUMA "G2800890, G28001000" -County and PUMA "G2800910, G28001800" -County and PUMA "G2800930, G28000200" -County and PUMA "G2800950, G28000400" -County and PUMA "G2800970, G28000700" -County and PUMA "G2800990, G28001400" -County and PUMA "G2801010, G28001500" -County and PUMA "G2801030, G28000600" -County and PUMA "G2801050, G28000600" -County and PUMA "G2801070, G28000300" -County and PUMA "G2801090, G28001900" -County and PUMA "G2801110, G28001800" -County and PUMA "G2801130, G28001600" -County and PUMA "G2801150, G28000500" -County and PUMA "G2801170, G28000200" -County and PUMA "G2801190, G28000300" -County and PUMA "G2801210, G28001300" -County and PUMA "G2801230, G28001400" -County and PUMA "G2801250, G28000800" -County and PUMA "G2801270, G28001300" -County and PUMA "G2801290, G28001400" -County and PUMA "G2801310, G28001900" -County and PUMA "G2801330, G28000800" -County and PUMA "G2801350, G28000300" -County and PUMA "G2801370, G28000300" -County and PUMA "G2801390, G28000200" -County and PUMA "G2801410, G28000200" -County and PUMA "G2801430, G28000300" -County and PUMA "G2801450, G28000500" -County and PUMA "G2801470, G28001600" -County and PUMA "G2801490, G28001200" -County and PUMA "G2801510, G28000800" -County and PUMA "G2801530, G28001700" -County and PUMA "G2801550, G28000600" -County and PUMA "G2801570, G28001600" -County and PUMA "G2801590, G28000600" -County and PUMA "G2801610, G28000700" -County and PUMA "G2801630, G28000900" -County and PUMA "G2900010, G29000300" -County and PUMA "G2900030, G29000200" -County and PUMA "G2900050, G29000100" -County and PUMA "G2900070, G29000400" -County and PUMA "G2900090, G29002700" -County and PUMA "G2900110, G29001200" -County and PUMA "G2900130, G29001100" -County and PUMA "G2900150, G29001300" -County and PUMA "G2900170, G29002200" -County and PUMA "G2900190, G29000600" -County and PUMA "G2900210, G29000200" -County and PUMA "G2900230, G29002400" -County and PUMA "G2900250, G29000800" -County and PUMA "G2900270, G29000500" -County and PUMA "G2900290, G29001400" -County and PUMA "G2900310, G29002200" -County and PUMA "G2900330, G29000700" -County and PUMA "G2900350, G29002400" -County and PUMA "G2900370, G29001100" -County and PUMA "G2900390, G29001200" -County and PUMA "G2900410, G29000700" -County and PUMA "G2900430, G29002601" -County and PUMA "G2900450, G29000300" -County and PUMA "G2900470, G29000901" -County and PUMA "G2900470, G29000902" -County and PUMA "G2900470, G29000903" -County and PUMA "G2900490, G29000800" -County and PUMA "G2900510, G29000500" -County and PUMA "G2900530, G29000700" -County and PUMA "G2900550, G29001500" -County and PUMA "G2900570, G29001200" -County and PUMA "G2900590, G29001300" -County and PUMA "G2900610, G29000100" -County and PUMA "G2900630, G29000200" -County and PUMA "G2900650, G29001500" -County and PUMA "G2900670, G29002500" -County and PUMA "G2900690, G29002300" -County and PUMA "G2900710, G29001600" -County and PUMA "G2900730, G29001500" -County and PUMA "G2900750, G29000100" -County and PUMA "G2900770, G29002601" -County and PUMA "G2900770, G29002602" -County and PUMA "G2900770, G29002603" -County and PUMA "G2900790, G29000100" -County and PUMA "G2900810, G29000100" -County and PUMA "G2900830, G29001200" -County and PUMA "G2900850, G29001300" -County and PUMA "G2900870, G29000100" -County and PUMA "G2900890, G29000700" -County and PUMA "G2900910, G29002500" -County and PUMA "G2900930, G29002400" -County and PUMA "G2900950, G29001001" -County and PUMA "G2900950, G29001002" -County and PUMA "G2900950, G29001003" -County and PUMA "G2900950, G29001004" -County and PUMA "G2900950, G29001005" -County and PUMA "G2900970, G29002800" -County and PUMA "G2900990, G29002001" -County and PUMA "G2900990, G29002002" -County and PUMA "G2901010, G29000800" -County and PUMA "G2901030, G29000300" -County and PUMA "G2901050, G29001300" -County and PUMA "G2901070, G29000800" -County and PUMA "G2901090, G29001200" -County and PUMA "G2901110, G29000300" -County and PUMA "G2901130, G29000400" -County and PUMA "G2901150, G29000100" -County and PUMA "G2901170, G29000100" -County and PUMA "G2901190, G29002700" -County and PUMA "G2901210, G29000300" -County and PUMA "G2901230, G29002400" -County and PUMA "G2901250, G29001500" -County and PUMA "G2901270, G29000300" -County and PUMA "G2901290, G29000100" -County and PUMA "G2901310, G29001400" -County and PUMA "G2901330, G29002300" -County and PUMA "G2901350, G29000500" -County and PUMA "G2901370, G29000300" -County and PUMA "G2901390, G29000400" -County and PUMA "G2901410, G29001400" -County and PUMA "G2901430, G29002300" -County and PUMA "G2901450, G29002800" -County and PUMA "G2901470, G29000100" -County and PUMA "G2901490, G29002500" -County and PUMA "G2901510, G29000500" -County and PUMA "G2901530, G29002500" -County and PUMA "G2901550, G29002300" -County and PUMA "G2901570, G29002100" -County and PUMA "G2901590, G29000700" -County and PUMA "G2901610, G29001500" -County and PUMA "G2901630, G29000400" -County and PUMA "G2901650, G29000903" -County and PUMA "G2901670, G29001300" -County and PUMA "G2901690, G29001400" -County and PUMA "G2901710, G29000100" -County and PUMA "G2901730, G29000300" -County and PUMA "G2901750, G29000700" -County and PUMA "G2901770, G29000800" -County and PUMA "G2901790, G29002400" -County and PUMA "G2901810, G29002400" -County and PUMA "G2901830, G29001701" -County and PUMA "G2901830, G29001702" -County and PUMA "G2901830, G29001703" -County and PUMA "G2901850, G29001200" -County and PUMA "G2901860, G29002100" -County and PUMA "G2901870, G29002100" -County and PUMA "G2901890, G29001801" -County and PUMA "G2901890, G29001802" -County and PUMA "G2901890, G29001803" -County and PUMA "G2901890, G29001804" -County and PUMA "G2901890, G29001805" -County and PUMA "G2901890, G29001806" -County and PUMA "G2901890, G29001807" -County and PUMA "G2901890, G29001808" -County and PUMA "G2901950, G29000700" -County and PUMA "G2901970, G29000300" -County and PUMA "G2901990, G29000300" -County and PUMA "G2902010, G29002200" -County and PUMA "G2902030, G29002500" -County and PUMA "G2902050, G29000300" -County and PUMA "G2902070, G29002300" -County and PUMA "G2902090, G29002700" -County and PUMA "G2902110, G29000100" -County and PUMA "G2902130, G29002700" -County and PUMA "G2902150, G29002500" -County and PUMA "G2902170, G29001200" -County and PUMA "G2902190, G29000400" -County and PUMA "G2902210, G29002100" -County and PUMA "G2902230, G29002400" -County and PUMA "G2902250, G29002601" -County and PUMA "G2902270, G29000100" -County and PUMA "G2902290, G29002500" -County and PUMA "G2905100, G29001901" -County and PUMA "G2905100, G29001902" -County and PUMA "G3000010, G30000300" -County and PUMA "G3000030, G30000600" -County and PUMA "G3000050, G30000400" -County and PUMA "G3000070, G30000300" -County and PUMA "G3000090, G30000500" -County and PUMA "G3000110, G30000600" -County and PUMA "G3000130, G30000400" -County and PUMA "G3000150, G30000400" -County and PUMA "G3000170, G30000600" -County and PUMA "G3000190, G30000600" -County and PUMA "G3000210, G30000600" -County and PUMA "G3000230, G30000300" -County and PUMA "G3000250, G30000600" -County and PUMA "G3000270, G30000400" -County and PUMA "G3000290, G30000100" -County and PUMA "G3000310, G30000500" -County and PUMA "G3000330, G30000600" -County and PUMA "G3000350, G30000100" -County and PUMA "G3000370, G30000600" -County and PUMA "G3000390, G30000300" -County and PUMA "G3000410, G30000400" -County and PUMA "G3000430, G30000300" -County and PUMA "G3000450, G30000400" -County and PUMA "G3000470, G30000200" -County and PUMA "G3000490, G30000300" -County and PUMA "G3000510, G30000400" -County and PUMA "G3000530, G30000100" -County and PUMA "G3000550, G30000600" -County and PUMA "G3000570, G30000300" -County and PUMA "G3000590, G30000400" -County and PUMA "G3000610, G30000200" -County and PUMA "G3000630, G30000200" -County and PUMA "G3000650, G30000600" -County and PUMA "G3000670, G30000500" -County and PUMA "G3000690, G30000400" -County and PUMA "G3000710, G30000600" -County and PUMA "G3000730, G30000400" -County and PUMA "G3000750, G30000600" -County and PUMA "G3000770, G30000300" -County and PUMA "G3000790, G30000600" -County and PUMA "G3000810, G30000200" -County and PUMA "G3000830, G30000600" -County and PUMA "G3000850, G30000600" -County and PUMA "G3000870, G30000600" -County and PUMA "G3000890, G30000200" -County and PUMA "G3000910, G30000600" -County and PUMA "G3000930, G30000300" -County and PUMA "G3000950, G30000500" -County and PUMA "G3000970, G30000500" -County and PUMA "G3000990, G30000400" -County and PUMA "G3001010, G30000400" -County and PUMA "G3001030, G30000600" -County and PUMA "G3001050, G30000600" -County and PUMA "G3001070, G30000400" -County and PUMA "G3001090, G30000600" -County and PUMA "G3001110, G30000600" -County and PUMA "G3001110, G30000700" -County and PUMA "G3100010, G31000500" -County and PUMA "G3100030, G31000200" -County and PUMA "G3100050, G31000400" -County and PUMA "G3100070, G31000100" -County and PUMA "G3100090, G31000300" -County and PUMA "G3100110, G31000200" -County and PUMA "G3100130, G31000100" -County and PUMA "G3100150, G31000100" -County and PUMA "G3100170, G31000100" -County and PUMA "G3100190, G31000500" -County and PUMA "G3100210, G31000200" -County and PUMA "G3100230, G31000600" -County and PUMA "G3100250, G31000701" -County and PUMA "G3100270, G31000200" -County and PUMA "G3100290, G31000400" -County and PUMA "G3100310, G31000100" -County and PUMA "G3100330, G31000100" -County and PUMA "G3100350, G31000500" -County and PUMA "G3100370, G31000200" -County and PUMA "G3100390, G31000200" -County and PUMA "G3100410, G31000300" -County and PUMA "G3100430, G31000200" -County and PUMA "G3100450, G31000100" -County and PUMA "G3100470, G31000400" -County and PUMA "G3100490, G31000100" -County and PUMA "G3100510, G31000200" -County and PUMA "G3100530, G31000701" -County and PUMA "G3100550, G31000901" -County and PUMA "G3100550, G31000902" -County and PUMA "G3100550, G31000903" -County and PUMA "G3100550, G31000904" -County and PUMA "G3100570, G31000400" -County and PUMA "G3100590, G31000600" -County and PUMA "G3100610, G31000500" -County and PUMA "G3100630, G31000400" -County and PUMA "G3100650, G31000400" -County and PUMA "G3100670, G31000600" -County and PUMA "G3100690, G31000100" -County and PUMA "G3100710, G31000300" -County and PUMA "G3100730, G31000400" -County and PUMA "G3100750, G31000400" -County and PUMA "G3100770, G31000300" -County and PUMA "G3100790, G31000300" -County and PUMA "G3100810, G31000300" -County and PUMA "G3100830, G31000500" -County and PUMA "G3100850, G31000400" -County and PUMA "G3100870, G31000400" -County and PUMA "G3100890, G31000100" -County and PUMA "G3100910, G31000400" -County and PUMA "G3100930, G31000300" -County and PUMA "G3100950, G31000600" -County and PUMA "G3100970, G31000600" -County and PUMA "G3100990, G31000500" -County and PUMA "G3101010, G31000400" -County and PUMA "G3101030, G31000100" -County and PUMA "G3101050, G31000100" -County and PUMA "G3101070, G31000200" -County and PUMA "G3101090, G31000801" -County and PUMA "G3101090, G31000802" -County and PUMA "G3101110, G31000400" -County and PUMA "G3101130, G31000400" -County and PUMA "G3101150, G31000300" -County and PUMA "G3101170, G31000400" -County and PUMA "G3101190, G31000200" -County and PUMA "G3101210, G31000300" -County and PUMA "G3101230, G31000100" -County and PUMA "G3101250, G31000200" -County and PUMA "G3101270, G31000600" -County and PUMA "G3101290, G31000500" -County and PUMA "G3101310, G31000600" -County and PUMA "G3101330, G31000600" -County and PUMA "G3101350, G31000400" -County and PUMA "G3101370, G31000500" -County and PUMA "G3101390, G31000200" -County and PUMA "G3101410, G31000200" -County and PUMA "G3101430, G31000600" -County and PUMA "G3101450, G31000400" -County and PUMA "G3101470, G31000600" -County and PUMA "G3101490, G31000100" -County and PUMA "G3101510, G31000600" -County and PUMA "G3101530, G31000702" -County and PUMA "G3101550, G31000701" -County and PUMA "G3101570, G31000100" -County and PUMA "G3101590, G31000600" -County and PUMA "G3101610, G31000100" -County and PUMA "G3101630, G31000300" -County and PUMA "G3101650, G31000100" -County and PUMA "G3101670, G31000200" -County and PUMA "G3101690, G31000600" -County and PUMA "G3101710, G31000400" -County and PUMA "G3101730, G31000200" -County and PUMA "G3101750, G31000300" -County and PUMA "G3101770, G31000701" -County and PUMA "G3101790, G31000200" -County and PUMA "G3101810, G31000500" -County and PUMA "G3101830, G31000300" -County and PUMA "G3101850, G31000600" -County and PUMA "G3200010, G32000300" -County and PUMA "G3200030, G32000401" -County and PUMA "G3200030, G32000402" -County and PUMA "G3200030, G32000403" -County and PUMA "G3200030, G32000404" -County and PUMA "G3200030, G32000405" -County and PUMA "G3200030, G32000406" -County and PUMA "G3200030, G32000407" -County and PUMA "G3200030, G32000408" -County and PUMA "G3200030, G32000409" -County and PUMA "G3200030, G32000410" -County and PUMA "G3200030, G32000411" -County and PUMA "G3200030, G32000412" -County and PUMA "G3200030, G32000413" -County and PUMA "G3200050, G32000200" -County and PUMA "G3200070, G32000300" -County and PUMA "G3200090, G32000300" -County and PUMA "G3200110, G32000300" -County and PUMA "G3200130, G32000300" -County and PUMA "G3200150, G32000300" -County and PUMA "G3200170, G32000300" -County and PUMA "G3200190, G32000200" -County and PUMA "G3200210, G32000300" -County and PUMA "G3200230, G32000300" -County and PUMA "G3200270, G32000300" -County and PUMA "G3200290, G32000200" -County and PUMA "G3200310, G32000101" -County and PUMA "G3200310, G32000102" -County and PUMA "G3200310, G32000103" -County and PUMA "G3200330, G32000300" -County and PUMA "G3205100, G32000200" -County and PUMA "G3300010, G33000200" -County and PUMA "G3300030, G33000200" -County and PUMA "G3300030, G33000300" -County and PUMA "G3300050, G33000500" -County and PUMA "G3300070, G33000100" -County and PUMA "G3300090, G33000100" -County and PUMA "G3300110, G33000600" -County and PUMA "G3300110, G33000700" -County and PUMA "G3300110, G33000800" -County and PUMA "G3300110, G33000900" -County and PUMA "G3300130, G33000200" -County and PUMA "G3300130, G33000400" -County and PUMA "G3300130, G33000700" -County and PUMA "G3300150, G33000300" -County and PUMA "G3300150, G33000700" -County and PUMA "G3300150, G33001000" -County and PUMA "G3300170, G33000300" -County and PUMA "G3300190, G33000500" -County and PUMA "G3400010, G34000101" -County and PUMA "G3400010, G34000102" -County and PUMA "G3400010, G34002600" -County and PUMA "G3400030, G34000301" -County and PUMA "G3400030, G34000302" -County and PUMA "G3400030, G34000303" -County and PUMA "G3400030, G34000304" -County and PUMA "G3400030, G34000305" -County and PUMA "G3400030, G34000306" -County and PUMA "G3400030, G34000307" -County and PUMA "G3400030, G34000308" -County and PUMA "G3400050, G34002001" -County and PUMA "G3400050, G34002002" -County and PUMA "G3400050, G34002003" -County and PUMA "G3400070, G34002101" -County and PUMA "G3400070, G34002102" -County and PUMA "G3400070, G34002103" -County and PUMA "G3400070, G34002104" -County and PUMA "G3400090, G34002600" -County and PUMA "G3400110, G34002400" -County and PUMA "G3400110, G34002500" -County and PUMA "G3400130, G34001301" -County and PUMA "G3400130, G34001302" -County and PUMA "G3400130, G34001401" -County and PUMA "G3400130, G34001402" -County and PUMA "G3400130, G34001403" -County and PUMA "G3400130, G34001404" -County and PUMA "G3400150, G34002201" -County and PUMA "G3400150, G34002202" -County and PUMA "G3400170, G34000601" -County and PUMA "G3400170, G34000602" -County and PUMA "G3400170, G34000701" -County and PUMA "G3400170, G34000702" -County and PUMA "G3400170, G34000703" -County and PUMA "G3400190, G34000800" -County and PUMA "G3400210, G34002301" -County and PUMA "G3400210, G34002302" -County and PUMA "G3400210, G34002303" -County and PUMA "G3400230, G34000901" -County and PUMA "G3400230, G34000902" -County and PUMA "G3400230, G34000903" -County and PUMA "G3400230, G34000904" -County and PUMA "G3400230, G34000905" -County and PUMA "G3400230, G34000906" -County and PUMA "G3400230, G34000907" -County and PUMA "G3400250, G34001101" -County and PUMA "G3400250, G34001102" -County and PUMA "G3400250, G34001103" -County and PUMA "G3400250, G34001104" -County and PUMA "G3400250, G34001105" -County and PUMA "G3400250, G34001106" -County and PUMA "G3400270, G34001501" -County and PUMA "G3400270, G34001502" -County and PUMA "G3400270, G34001503" -County and PUMA "G3400270, G34001504" -County and PUMA "G3400290, G34001201" -County and PUMA "G3400290, G34001202" -County and PUMA "G3400290, G34001203" -County and PUMA "G3400290, G34001204" -County and PUMA "G3400290, G34001205" -County and PUMA "G3400310, G34000400" -County and PUMA "G3400310, G34000501" -County and PUMA "G3400310, G34000502" -County and PUMA "G3400310, G34000503" -County and PUMA "G3400330, G34002500" -County and PUMA "G3400350, G34001001" -County and PUMA "G3400350, G34001002" -County and PUMA "G3400350, G34001003" -County and PUMA "G3400370, G34001600" -County and PUMA "G3400390, G34001800" -County and PUMA "G3400390, G34001901" -County and PUMA "G3400390, G34001902" -County and PUMA "G3400390, G34001903" -County and PUMA "G3400390, G34001904" -County and PUMA "G3400410, G34001700" -County and PUMA "G3500010, G35000700" -County and PUMA "G3500010, G35000801" -County and PUMA "G3500010, G35000802" -County and PUMA "G3500010, G35000803" -County and PUMA "G3500010, G35000804" -County and PUMA "G3500010, G35000805" -County and PUMA "G3500010, G35000806" -County and PUMA "G3500030, G35000900" -County and PUMA "G3500050, G35001100" -County and PUMA "G3500060, G35000100" -County and PUMA "G3500070, G35000400" -County and PUMA "G3500090, G35000400" -County and PUMA "G3500110, G35000400" -County and PUMA "G3500130, G35001001" -County and PUMA "G3500130, G35001002" -County and PUMA "G3500150, G35001200" -County and PUMA "G3500170, G35000900" -County and PUMA "G3500190, G35000400" -County and PUMA "G3500210, G35000400" -County and PUMA "G3500230, G35000900" -County and PUMA "G3500250, G35001200" -County and PUMA "G3500270, G35001100" -County and PUMA "G3500280, G35000300" -County and PUMA "G3500290, G35000900" -County and PUMA "G3500310, G35000100" -County and PUMA "G3500330, G35000300" -County and PUMA "G3500350, G35001100" -County and PUMA "G3500370, G35000400" -County and PUMA "G3500390, G35000300" -County and PUMA "G3500410, G35000400" -County and PUMA "G3500430, G35000600" -County and PUMA "G3500450, G35000100" -County and PUMA "G3500450, G35000200" -County and PUMA "G3500470, G35000300" -County and PUMA "G3500490, G35000500" -County and PUMA "G3500510, G35000900" -County and PUMA "G3500530, G35000900" -County and PUMA "G3500550, G35000300" -County and PUMA "G3500570, G35000900" -County and PUMA "G3500590, G35000400" -County and PUMA "G3500610, G35000700" -County and PUMA "G3600010, G36002001" -County and PUMA "G3600010, G36002002" -County and PUMA "G3600030, G36002500" -County and PUMA "G3600050, G36003701" -County and PUMA "G3600050, G36003702" -County and PUMA "G3600050, G36003703" -County and PUMA "G3600050, G36003704" -County and PUMA "G3600050, G36003705" -County and PUMA "G3600050, G36003706" -County and PUMA "G3600050, G36003707" -County and PUMA "G3600050, G36003708" -County and PUMA "G3600050, G36003709" -County and PUMA "G3600050, G36003710" -County and PUMA "G3600070, G36002201" -County and PUMA "G3600070, G36002202" -County and PUMA "G3600070, G36002203" -County and PUMA "G3600090, G36002500" -County and PUMA "G3600110, G36000704" -County and PUMA "G3600130, G36002600" -County and PUMA "G3600150, G36002401" -County and PUMA "G3600150, G36002402" -County and PUMA "G3600170, G36002203" -County and PUMA "G3600190, G36000200" -County and PUMA "G3600210, G36002100" -County and PUMA "G3600230, G36001500" -County and PUMA "G3600250, G36002203" -County and PUMA "G3600270, G36002801" -County and PUMA "G3600270, G36002802" -County and PUMA "G3600290, G36001201" -County and PUMA "G3600290, G36001202" -County and PUMA "G3600290, G36001203" -County and PUMA "G3600290, G36001204" -County and PUMA "G3600290, G36001205" -County and PUMA "G3600290, G36001206" -County and PUMA "G3600290, G36001207" -County and PUMA "G3600310, G36000200" -County and PUMA "G3600330, G36000200" -County and PUMA "G3600350, G36001600" -County and PUMA "G3600370, G36001000" -County and PUMA "G3600390, G36002100" -County and PUMA "G3600410, G36000200" -County and PUMA "G3600430, G36000401" -County and PUMA "G3600430, G36000403" -County and PUMA "G3600450, G36000500" -County and PUMA "G3600470, G36004001" -County and PUMA "G3600470, G36004002" -County and PUMA "G3600470, G36004003" -County and PUMA "G3600470, G36004004" -County and PUMA "G3600470, G36004005" -County and PUMA "G3600470, G36004006" -County and PUMA "G3600470, G36004007" -County and PUMA "G3600470, G36004008" -County and PUMA "G3600470, G36004009" -County and PUMA "G3600470, G36004010" -County and PUMA "G3600470, G36004011" -County and PUMA "G3600470, G36004012" -County and PUMA "G3600470, G36004013" -County and PUMA "G3600470, G36004014" -County and PUMA "G3600470, G36004015" -County and PUMA "G3600470, G36004016" -County and PUMA "G3600470, G36004017" -County and PUMA "G3600470, G36004018" -County and PUMA "G3600490, G36000500" -County and PUMA "G3600510, G36001300" -County and PUMA "G3600530, G36001500" -County and PUMA "G3600550, G36000901" -County and PUMA "G3600550, G36000902" -County and PUMA "G3600550, G36000903" -County and PUMA "G3600550, G36000904" -County and PUMA "G3600550, G36000905" -County and PUMA "G3600550, G36000906" -County and PUMA "G3600570, G36001600" -County and PUMA "G3600590, G36003201" -County and PUMA "G3600590, G36003202" -County and PUMA "G3600590, G36003203" -County and PUMA "G3600590, G36003204" -County and PUMA "G3600590, G36003205" -County and PUMA "G3600590, G36003206" -County and PUMA "G3600590, G36003207" -County and PUMA "G3600590, G36003208" -County and PUMA "G3600590, G36003209" -County and PUMA "G3600590, G36003210" -County and PUMA "G3600590, G36003211" -County and PUMA "G3600590, G36003212" -County and PUMA "G3600610, G36003801" -County and PUMA "G3600610, G36003802" -County and PUMA "G3600610, G36003803" -County and PUMA "G3600610, G36003804" -County and PUMA "G3600610, G36003805" -County and PUMA "G3600610, G36003806" -County and PUMA "G3600610, G36003807" -County and PUMA "G3600610, G36003808" -County and PUMA "G3600610, G36003809" -County and PUMA "G3600610, G36003810" -County and PUMA "G3600630, G36001101" -County and PUMA "G3600630, G36001102" -County and PUMA "G3600650, G36000401" -County and PUMA "G3600650, G36000402" -County and PUMA "G3600650, G36000403" -County and PUMA "G3600670, G36000701" -County and PUMA "G3600670, G36000702" -County and PUMA "G3600670, G36000703" -County and PUMA "G3600670, G36000704" -County and PUMA "G3600690, G36001400" -County and PUMA "G3600710, G36002901" -County and PUMA "G3600710, G36002902" -County and PUMA "G3600710, G36002903" -County and PUMA "G3600730, G36001000" -County and PUMA "G3600750, G36000600" -County and PUMA "G3600770, G36000403" -County and PUMA "G3600790, G36003101" -County and PUMA "G3600810, G36004101" -County and PUMA "G3600810, G36004102" -County and PUMA "G3600810, G36004103" -County and PUMA "G3600810, G36004104" -County and PUMA "G3600810, G36004105" -County and PUMA "G3600810, G36004106" -County and PUMA "G3600810, G36004107" -County and PUMA "G3600810, G36004108" -County and PUMA "G3600810, G36004109" -County and PUMA "G3600810, G36004110" -County and PUMA "G3600810, G36004111" -County and PUMA "G3600810, G36004112" -County and PUMA "G3600810, G36004113" -County and PUMA "G3600810, G36004114" -County and PUMA "G3600830, G36001900" -County and PUMA "G3600850, G36003901" -County and PUMA "G3600850, G36003902" -County and PUMA "G3600850, G36003903" -County and PUMA "G3600870, G36003001" -County and PUMA "G3600870, G36003002" -County and PUMA "G3600870, G36003003" -County and PUMA "G3600890, G36000100" -County and PUMA "G3600910, G36001801" -County and PUMA "G3600910, G36001802" -County and PUMA "G3600930, G36001700" -County and PUMA "G3600950, G36000403" -County and PUMA "G3600970, G36002402" -County and PUMA "G3600990, G36000800" -County and PUMA "G3601010, G36002401" -County and PUMA "G3601010, G36002402" -County and PUMA "G3601030, G36003301" -County and PUMA "G3601030, G36003302" -County and PUMA "G3601030, G36003303" -County and PUMA "G3601030, G36003304" -County and PUMA "G3601030, G36003305" -County and PUMA "G3601030, G36003306" -County and PUMA "G3601030, G36003307" -County and PUMA "G3601030, G36003308" -County and PUMA "G3601030, G36003309" -County and PUMA "G3601030, G36003310" -County and PUMA "G3601030, G36003311" -County and PUMA "G3601030, G36003312" -County and PUMA "G3601030, G36003313" -County and PUMA "G3601050, G36002701" -County and PUMA "G3601070, G36002202" -County and PUMA "G3601090, G36002300" -County and PUMA "G3601110, G36002701" -County and PUMA "G3601110, G36002702" -County and PUMA "G3601130, G36000300" -County and PUMA "G3601150, G36000300" -County and PUMA "G3601170, G36000800" -County and PUMA "G3601190, G36003101" -County and PUMA "G3601190, G36003102" -County and PUMA "G3601190, G36003103" -County and PUMA "G3601190, G36003104" -County and PUMA "G3601190, G36003105" -County and PUMA "G3601190, G36003106" -County and PUMA "G3601190, G36003107" -County and PUMA "G3601210, G36001300" -County and PUMA "G3601230, G36001400" -County and PUMA "G3700010, G37001600" -County and PUMA "G3700030, G37002000" -County and PUMA "G3700050, G37000200" -County and PUMA "G3700070, G37005300" -County and PUMA "G3700090, G37000100" -County and PUMA "G3700110, G37000100" -County and PUMA "G3700130, G37004400" -County and PUMA "G3700150, G37000800" -County and PUMA "G3700170, G37004900" -County and PUMA "G3700190, G37004800" -County and PUMA "G3700210, G37002201" -County and PUMA "G3700210, G37002202" -County and PUMA "G3700230, G37002100" -County and PUMA "G3700250, G37003200" -County and PUMA "G3700250, G37003300" -County and PUMA "G3700270, G37002000" -County and PUMA "G3700290, G37000700" -County and PUMA "G3700310, G37004400" -County and PUMA "G3700330, G37000400" -County and PUMA "G3700350, G37002800" -County and PUMA "G3700370, G37001500" -County and PUMA "G3700390, G37002400" -County and PUMA "G3700410, G37000700" -County and PUMA "G3700430, G37002400" -County and PUMA "G3700450, G37002600" -County and PUMA "G3700450, G37002700" -County and PUMA "G3700470, G37004900" -County and PUMA "G3700490, G37004300" -County and PUMA "G3700510, G37005001" -County and PUMA "G3700510, G37005002" -County and PUMA "G3700510, G37005003" -County and PUMA "G3700530, G37000700" -County and PUMA "G3700550, G37000800" -County and PUMA "G3700570, G37003500" -County and PUMA "G3700590, G37001900" -County and PUMA "G3700610, G37003900" -County and PUMA "G3700630, G37001301" -County and PUMA "G3700630, G37001302" -County and PUMA "G3700650, G37000900" -County and PUMA "G3700670, G37001801" -County and PUMA "G3700670, G37001802" -County and PUMA "G3700670, G37001803" -County and PUMA "G3700690, G37000500" -County and PUMA "G3700710, G37003001" -County and PUMA "G3700710, G37003002" -County and PUMA "G3700730, G37000700" -County and PUMA "G3700750, G37002300" -County and PUMA "G3700770, G37000400" -County and PUMA "G3700790, G37001000" -County and PUMA "G3700810, G37001701" -County and PUMA "G3700810, G37001702" -County and PUMA "G3700810, G37001703" -County and PUMA "G3700810, G37001704" -County and PUMA "G3700830, G37000600" -County and PUMA "G3700850, G37003800" -County and PUMA "G3700870, G37002300" -County and PUMA "G3700890, G37002500" -County and PUMA "G3700910, G37000600" -County and PUMA "G3700930, G37005200" -County and PUMA "G3700950, G37000800" -County and PUMA "G3700970, G37001900" -County and PUMA "G3700970, G37002900" -County and PUMA "G3700990, G37002300" -County and PUMA "G3700990, G37002400" -County and PUMA "G3701010, G37001100" -County and PUMA "G3701030, G37004100" -County and PUMA "G3701050, G37001500" -County and PUMA "G3701070, G37004100" -County and PUMA "G3701090, G37002700" -County and PUMA "G3701110, G37002100" -County and PUMA "G3701130, G37002400" -County and PUMA "G3701150, G37002300" -County and PUMA "G3701170, G37000800" -County and PUMA "G3701190, G37003101" -County and PUMA "G3701190, G37003102" -County and PUMA "G3701190, G37003103" -County and PUMA "G3701190, G37003104" -County and PUMA "G3701190, G37003105" -County and PUMA "G3701190, G37003106" -County and PUMA "G3701190, G37003107" -County and PUMA "G3701190, G37003108" -County and PUMA "G3701210, G37000100" -County and PUMA "G3701230, G37003700" -County and PUMA "G3701250, G37003700" -County and PUMA "G3701270, G37000900" -County and PUMA "G3701290, G37004600" -County and PUMA "G3701290, G37004700" -County and PUMA "G3701310, G37000600" -County and PUMA "G3701330, G37004100" -County and PUMA "G3701330, G37004500" -County and PUMA "G3701350, G37001400" -County and PUMA "G3701370, G37004400" -County and PUMA "G3701390, G37000700" -County and PUMA "G3701410, G37004600" -County and PUMA "G3701430, G37000700" -County and PUMA "G3701450, G37000400" -County and PUMA "G3701470, G37004200" -County and PUMA "G3701490, G37002600" -County and PUMA "G3701510, G37003600" -County and PUMA "G3701530, G37005200" -County and PUMA "G3701550, G37004900" -County and PUMA "G3701550, G37005100" -County and PUMA "G3701570, G37000300" -County and PUMA "G3701590, G37003400" -County and PUMA "G3701610, G37002600" -County and PUMA "G3701630, G37003900" -County and PUMA "G3701650, G37005200" -County and PUMA "G3701670, G37003300" -County and PUMA "G3701690, G37000300" -County and PUMA "G3701710, G37000200" -County and PUMA "G3701730, G37002300" -County and PUMA "G3701750, G37002500" -County and PUMA "G3701770, G37000800" -County and PUMA "G3701790, G37005300" -County and PUMA "G3701790, G37005400" -County and PUMA "G3701810, G37000500" -County and PUMA "G3701830, G37001201" -County and PUMA "G3701830, G37001202" -County and PUMA "G3701830, G37001203" -County and PUMA "G3701830, G37001204" -County and PUMA "G3701830, G37001205" -County and PUMA "G3701830, G37001206" -County and PUMA "G3701830, G37001207" -County and PUMA "G3701830, G37001208" -County and PUMA "G3701850, G37000500" -County and PUMA "G3701850, G37000600" -County and PUMA "G3701870, G37000800" -County and PUMA "G3701890, G37000100" -County and PUMA "G3701910, G37004000" -County and PUMA "G3701930, G37000200" -County and PUMA "G3701950, G37001000" -County and PUMA "G3701970, G37001900" -County and PUMA "G3701990, G37000100" -County and PUMA "G3800010, G38000100" -County and PUMA "G3800030, G38000200" -County and PUMA "G3800050, G38000200" -County and PUMA "G3800070, G38000100" -County and PUMA "G3800090, G38000200" -County and PUMA "G3800110, G38000100" -County and PUMA "G3800130, G38000100" -County and PUMA "G3800150, G38000300" -County and PUMA "G3800170, G38000500" -County and PUMA "G3800190, G38000400" -County and PUMA "G3800210, G38000200" -County and PUMA "G3800230, G38000100" -County and PUMA "G3800250, G38000100" -County and PUMA "G3800270, G38000200" -County and PUMA "G3800290, G38000300" -County and PUMA "G3800310, G38000200" -County and PUMA "G3800330, G38000100" -County and PUMA "G3800350, G38000400" -County and PUMA "G3800370, G38000100" -County and PUMA "G3800390, G38000400" -County and PUMA "G3800410, G38000100" -County and PUMA "G3800430, G38000300" -County and PUMA "G3800450, G38000200" -County and PUMA "G3800470, G38000300" -County and PUMA "G3800490, G38000100" -County and PUMA "G3800510, G38000300" -County and PUMA "G3800530, G38000100" -County and PUMA "G3800550, G38000100" -County and PUMA "G3800570, G38000100" -County and PUMA "G3800590, G38000300" -County and PUMA "G3800610, G38000100" -County and PUMA "G3800630, G38000200" -County and PUMA "G3800650, G38000100" -County and PUMA "G3800670, G38000400" -County and PUMA "G3800690, G38000200" -County and PUMA "G3800710, G38000200" -County and PUMA "G3800730, G38000200" -County and PUMA "G3800750, G38000100" -County and PUMA "G3800770, G38000200" -County and PUMA "G3800790, G38000200" -County and PUMA "G3800810, G38000200" -County and PUMA "G3800830, G38000200" -County and PUMA "G3800850, G38000100" -County and PUMA "G3800870, G38000100" -County and PUMA "G3800890, G38000100" -County and PUMA "G3800910, G38000400" -County and PUMA "G3800930, G38000200" -County and PUMA "G3800950, G38000400" -County and PUMA "G3800970, G38000400" -County and PUMA "G3800990, G38000400" -County and PUMA "G3801010, G38000100" -County and PUMA "G3801030, G38000200" -County and PUMA "G3801050, G38000100" -County and PUMA "G3900010, G39005200" -County and PUMA "G3900030, G39002500" -County and PUMA "G3900050, G39002100" -County and PUMA "G3900070, G39001300" -County and PUMA "G3900090, G39005000" -County and PUMA "G3900110, G39002600" -County and PUMA "G3900130, G39003500" -County and PUMA "G3900150, G39005700" -County and PUMA "G3900170, G39005401" -County and PUMA "G3900170, G39005402" -County and PUMA "G3900170, G39005403" -County and PUMA "G3900190, G39003300" -County and PUMA "G3900210, G39002700" -County and PUMA "G3900230, G39004300" -County and PUMA "G3900250, G39005600" -County and PUMA "G3900250, G39005700" -County and PUMA "G3900270, G39005200" -County and PUMA "G3900290, G39003400" -County and PUMA "G3900310, G39002900" -County and PUMA "G3900330, G39002300" -County and PUMA "G3900350, G39000901" -County and PUMA "G3900350, G39000902" -County and PUMA "G3900350, G39000903" -County and PUMA "G3900350, G39000904" -County and PUMA "G3900350, G39000905" -County and PUMA "G3900350, G39000906" -County and PUMA "G3900350, G39000907" -County and PUMA "G3900350, G39000908" -County and PUMA "G3900350, G39000909" -County and PUMA "G3900350, G39000910" -County and PUMA "G3900370, G39004500" -County and PUMA "G3900390, G39000100" -County and PUMA "G3900410, G39004000" -County and PUMA "G3900430, G39000700" -County and PUMA "G3900450, G39003900" -County and PUMA "G3900470, G39004800" -County and PUMA "G3900490, G39004101" -County and PUMA "G3900490, G39004102" -County and PUMA "G3900490, G39004103" -County and PUMA "G3900490, G39004104" -County and PUMA "G3900490, G39004105" -County and PUMA "G3900490, G39004106" -County and PUMA "G3900490, G39004107" -County and PUMA "G3900490, G39004108" -County and PUMA "G3900490, G39004109" -County and PUMA "G3900490, G39004110" -County and PUMA "G3900490, G39004111" -County and PUMA "G3900510, G39000200" -County and PUMA "G3900530, G39005000" -County and PUMA "G3900550, G39001200" -County and PUMA "G3900570, G39004700" -County and PUMA "G3900590, G39002900" -County and PUMA "G3900610, G39005501" -County and PUMA "G3900610, G39005502" -County and PUMA "G3900610, G39005503" -County and PUMA "G3900610, G39005504" -County and PUMA "G3900610, G39005505" -County and PUMA "G3900610, G39005506" -County and PUMA "G3900610, G39005507" -County and PUMA "G3900630, G39002400" -County and PUMA "G3900650, G39002700" -County and PUMA "G3900670, G39003000" -County and PUMA "G3900690, G39000100" -County and PUMA "G3900710, G39005200" -County and PUMA "G3900730, G39004900" -County and PUMA "G3900750, G39002900" -County and PUMA "G3900770, G39002100" -County and PUMA "G3900790, G39004900" -County and PUMA "G3900810, G39003500" -County and PUMA "G3900830, G39002800" -County and PUMA "G3900850, G39001000" -County and PUMA "G3900850, G39001100" -County and PUMA "G3900850, G39001200" -County and PUMA "G3900870, G39005100" -County and PUMA "G3900890, G39003800" -County and PUMA "G3900910, G39002700" -County and PUMA "G3900930, G39000801" -County and PUMA "G3900930, G39000802" -County and PUMA "G3900950, G39000200" -County and PUMA "G3900950, G39000300" -County and PUMA "G3900950, G39000400" -County and PUMA "G3900950, G39000500" -County and PUMA "G3900950, G39000600" -County and PUMA "G3900970, G39004200" -County and PUMA "G3900990, G39001400" -County and PUMA "G3900990, G39001500" -County and PUMA "G3901010, G39002800" -County and PUMA "G3901030, G39001900" -County and PUMA "G3901050, G39005000" -County and PUMA "G3901070, G39002600" -County and PUMA "G3901090, G39004400" -County and PUMA "G3901110, G39003600" -County and PUMA "G3901130, G39004601" -County and PUMA "G3901130, G39004602" -County and PUMA "G3901130, G39004603" -County and PUMA "G3901130, G39004604" -County and PUMA "G3901150, G39003600" -County and PUMA "G3901170, G39002800" -County and PUMA "G3901190, G39003700" -County and PUMA "G3901210, G39003600" -County and PUMA "G3901230, G39000600" -County and PUMA "G3901250, G39000100" -County and PUMA "G3901270, G39003700" -County and PUMA "G3901290, G39004200" -County and PUMA "G3901310, G39004900" -County and PUMA "G3901330, G39001700" -County and PUMA "G3901350, G39004500" -County and PUMA "G3901370, G39002400" -County and PUMA "G3901390, G39002200" -County and PUMA "G3901410, G39004800" -County and PUMA "G3901430, G39000700" -County and PUMA "G3901450, G39005100" -County and PUMA "G3901470, G39002300" -County and PUMA "G3901490, G39004500" -County and PUMA "G3901510, G39003100" -County and PUMA "G3901510, G39003200" -County and PUMA "G3901510, G39003300" -County and PUMA "G3901530, G39001801" -County and PUMA "G3901530, G39001802" -County and PUMA "G3901530, G39001803" -County and PUMA "G3901530, G39001804" -County and PUMA "G3901530, G39001805" -County and PUMA "G3901550, G39001400" -County and PUMA "G3901550, G39001600" -County and PUMA "G3901570, G39003000" -County and PUMA "G3901590, G39004200" -County and PUMA "G3901610, G39002600" -County and PUMA "G3901630, G39004900" -County and PUMA "G3901650, G39005301" -County and PUMA "G3901650, G39005302" -County and PUMA "G3901670, G39003600" -County and PUMA "G3901690, G39002000" -County and PUMA "G3901710, G39000100" -County and PUMA "G3901730, G39000200" -County and PUMA "G3901730, G39000300" -County and PUMA "G3901730, G39000600" -County and PUMA "G3901750, G39002300" -County and PUMA "G4000010, G40000200" -County and PUMA "G4000030, G40000500" -County and PUMA "G4000050, G40000702" -County and PUMA "G4000070, G40000500" -County and PUMA "G4000090, G40000400" -County and PUMA "G4000110, G40000500" -County and PUMA "G4000130, G40000702" -County and PUMA "G4000150, G40000602" -County and PUMA "G4000170, G40000800" -County and PUMA "G4000190, G40000701" -County and PUMA "G4000210, G40000200" -County and PUMA "G4000230, G40000300" -County and PUMA "G4000250, G40000500" -County and PUMA "G4000270, G40000900" -County and PUMA "G4000290, G40000702" -County and PUMA "G4000310, G40000601" -County and PUMA "G4000310, G40000602" -County and PUMA "G4000330, G40000602" -County and PUMA "G4000350, G40000100" -County and PUMA "G4000370, G40001204" -County and PUMA "G4000370, G40001501" -County and PUMA "G4000370, G40001601" -County and PUMA "G4000390, G40000400" -County and PUMA "G4000410, G40000100" -County and PUMA "G4000430, G40000500" -County and PUMA "G4000450, G40000500" -County and PUMA "G4000470, G40001400" -County and PUMA "G4000490, G40000701" -County and PUMA "G4000510, G40001101" -County and PUMA "G4000530, G40000500" -County and PUMA "G4000550, G40000400" -County and PUMA "G4000570, G40000400" -County and PUMA "G4000590, G40000500" -County and PUMA "G4000610, G40000300" -County and PUMA "G4000630, G40001501" -County and PUMA "G4000650, G40000400" -County and PUMA "G4000670, G40000602" -County and PUMA "G4000690, G40000702" -County and PUMA "G4000710, G40001400" -County and PUMA "G4000730, G40000500" -County and PUMA "G4000750, G40000400" -County and PUMA "G4000770, G40000300" -County and PUMA "G4000790, G40000300" -County and PUMA "G4000810, G40001102" -County and PUMA "G4000830, G40001102" -County and PUMA "G4000850, G40000701" -County and PUMA "G4000870, G40001101" -County and PUMA "G4000890, G40000300" -County and PUMA "G4000910, G40001302" -County and PUMA "G4000930, G40000500" -County and PUMA "G4000950, G40000702" -County and PUMA "G4000970, G40000100" -County and PUMA "G4000990, G40000701" -County and PUMA "G4001010, G40001302" -County and PUMA "G4001030, G40001400" -County and PUMA "G4001050, G40000100" -County and PUMA "G4001070, G40001501" -County and PUMA "G4001090, G40001001" -County and PUMA "G4001090, G40001002" -County and PUMA "G4001090, G40001003" -County and PUMA "G4001090, G40001004" -County and PUMA "G4001090, G40001005" -County and PUMA "G4001090, G40001006" -County and PUMA "G4001110, G40001302" -County and PUMA "G4001130, G40001204" -County and PUMA "G4001130, G40001601" -County and PUMA "G4001150, G40000100" -County and PUMA "G4001170, G40001601" -County and PUMA "G4001190, G40001501" -County and PUMA "G4001210, G40000300" -County and PUMA "G4001230, G40000701" -County and PUMA "G4001230, G40000702" -County and PUMA "G4001250, G40001101" -County and PUMA "G4001250, G40001102" -County and PUMA "G4001270, G40000300" -County and PUMA "G4001290, G40000400" -County and PUMA "G4001310, G40000100" -County and PUMA "G4001310, G40001301" -County and PUMA "G4001330, G40001501" -County and PUMA "G4001350, G40000200" -County and PUMA "G4001370, G40000602" -County and PUMA "G4001390, G40000500" -County and PUMA "G4001410, G40000602" -County and PUMA "G4001430, G40001201" -County and PUMA "G4001430, G40001202" -County and PUMA "G4001430, G40001203" -County and PUMA "G4001430, G40001204" -County and PUMA "G4001450, G40001301" -County and PUMA "G4001450, G40001302" -County and PUMA "G4001470, G40001601" -County and PUMA "G4001490, G40000400" -County and PUMA "G4001510, G40000500" -County and PUMA "G4001530, G40000500" -County and PUMA "G4100010, G41000100" -County and PUMA "G4100030, G41000600" -County and PUMA "G4100050, G41001317" -County and PUMA "G4100050, G41001318" -County and PUMA "G4100050, G41001319" -County and PUMA "G4100070, G41000500" -County and PUMA "G4100090, G41000500" -County and PUMA "G4100110, G41000800" -County and PUMA "G4100130, G41000200" -County and PUMA "G4100150, G41000800" -County and PUMA "G4100170, G41000400" -County and PUMA "G4100190, G41001000" -County and PUMA "G4100210, G41000200" -County and PUMA "G4100230, G41000200" -County and PUMA "G4100250, G41000300" -County and PUMA "G4100270, G41000200" -County and PUMA "G4100290, G41000901" -County and PUMA "G4100290, G41000902" -County and PUMA "G4100310, G41000200" -County and PUMA "G4100330, G41000800" -County and PUMA "G4100350, G41000300" -County and PUMA "G4100370, G41000300" -County and PUMA "G4100390, G41000703" -County and PUMA "G4100390, G41000704" -County and PUMA "G4100390, G41000705" -County and PUMA "G4100410, G41000500" -County and PUMA "G4100430, G41000600" -County and PUMA "G4100450, G41000300" -County and PUMA "G4100470, G41001103" -County and PUMA "G4100470, G41001104" -County and PUMA "G4100470, G41001105" -County and PUMA "G4100490, G41000200" -County and PUMA "G4100510, G41001301" -County and PUMA "G4100510, G41001302" -County and PUMA "G4100510, G41001303" -County and PUMA "G4100510, G41001305" -County and PUMA "G4100510, G41001314" -County and PUMA "G4100510, G41001316" -County and PUMA "G4100530, G41001200" -County and PUMA "G4100550, G41000200" -County and PUMA "G4100570, G41000500" -County and PUMA "G4100590, G41000100" -County and PUMA "G4100610, G41000100" -County and PUMA "G4100630, G41000100" -County and PUMA "G4100650, G41000200" -County and PUMA "G4100670, G41001320" -County and PUMA "G4100670, G41001321" -County and PUMA "G4100670, G41001322" -County and PUMA "G4100670, G41001323" -County and PUMA "G4100670, G41001324" -County and PUMA "G4100690, G41000200" -County and PUMA "G4100710, G41001200" -County and PUMA "G4200010, G42003701" -County and PUMA "G4200030, G42001701" -County and PUMA "G4200030, G42001702" -County and PUMA "G4200030, G42001801" -County and PUMA "G4200030, G42001802" -County and PUMA "G4200030, G42001803" -County and PUMA "G4200030, G42001804" -County and PUMA "G4200030, G42001805" -County and PUMA "G4200030, G42001806" -County and PUMA "G4200030, G42001807" -County and PUMA "G4200050, G42001900" -County and PUMA "G4200070, G42001501" -County and PUMA "G4200070, G42001502" -County and PUMA "G4200090, G42003800" -County and PUMA "G4200110, G42002701" -County and PUMA "G4200110, G42002702" -County and PUMA "G4200110, G42002703" -County and PUMA "G4200130, G42002200" -County and PUMA "G4200150, G42000400" -County and PUMA "G4200170, G42003001" -County and PUMA "G4200170, G42003002" -County and PUMA "G4200170, G42003003" -County and PUMA "G4200170, G42003004" -County and PUMA "G4200190, G42001600" -County and PUMA "G4200210, G42002100" -County and PUMA "G4200230, G42000300" -County and PUMA "G4200250, G42002801" -County and PUMA "G4200270, G42001200" -County and PUMA "G4200290, G42003401" -County and PUMA "G4200290, G42003402" -County and PUMA "G4200290, G42003403" -County and PUMA "G4200290, G42003404" -County and PUMA "G4200310, G42001300" -County and PUMA "G4200330, G42000300" -County and PUMA "G4200350, G42000900" -County and PUMA "G4200370, G42000803" -County and PUMA "G4200390, G42000200" -County and PUMA "G4200410, G42002301" -County and PUMA "G4200410, G42002302" -County and PUMA "G4200430, G42002401" -County and PUMA "G4200430, G42002402" -County and PUMA "G4200450, G42003301" -County and PUMA "G4200450, G42003302" -County and PUMA "G4200450, G42003303" -County and PUMA "G4200450, G42003304" -County and PUMA "G4200470, G42000300" -County and PUMA "G4200490, G42000101" -County and PUMA "G4200490, G42000102" -County and PUMA "G4200510, G42003900" -County and PUMA "G4200530, G42001300" -County and PUMA "G4200550, G42003701" -County and PUMA "G4200550, G42003702" -County and PUMA "G4200570, G42003800" -County and PUMA "G4200590, G42004002" -County and PUMA "G4200610, G42002200" -County and PUMA "G4200630, G42001900" -County and PUMA "G4200650, G42001300" -County and PUMA "G4200670, G42001100" -County and PUMA "G4200690, G42000701" -County and PUMA "G4200690, G42000702" -County and PUMA "G4200710, G42003501" -County and PUMA "G4200710, G42003502" -County and PUMA "G4200710, G42003503" -County and PUMA "G4200710, G42003504" -County and PUMA "G4200730, G42001501" -County and PUMA "G4200750, G42002500" -County and PUMA "G4200770, G42002801" -County and PUMA "G4200770, G42002802" -County and PUMA "G4200770, G42002803" -County and PUMA "G4200770, G42002901" -County and PUMA "G4200790, G42000801" -County and PUMA "G4200790, G42000802" -County and PUMA "G4200790, G42000803" -County and PUMA "G4200810, G42000900" -County and PUMA "G4200830, G42000300" -County and PUMA "G4200850, G42001400" -County and PUMA "G4200870, G42001100" -County and PUMA "G4200890, G42000600" -County and PUMA "G4200910, G42003101" -County and PUMA "G4200910, G42003102" -County and PUMA "G4200910, G42003103" -County and PUMA "G4200910, G42003104" -County and PUMA "G4200910, G42003105" -County and PUMA "G4200910, G42003106" -County and PUMA "G4200930, G42001000" -County and PUMA "G4200950, G42002901" -County and PUMA "G4200950, G42002902" -County and PUMA "G4200970, G42001000" -County and PUMA "G4200990, G42002301" -County and PUMA "G4201010, G42003201" -County and PUMA "G4201010, G42003202" -County and PUMA "G4201010, G42003203" -County and PUMA "G4201010, G42003204" -County and PUMA "G4201010, G42003205" -County and PUMA "G4201010, G42003206" -County and PUMA "G4201010, G42003207" -County and PUMA "G4201010, G42003208" -County and PUMA "G4201010, G42003209" -County and PUMA "G4201010, G42003210" -County and PUMA "G4201010, G42003211" -County and PUMA "G4201030, G42000500" -County and PUMA "G4201050, G42000300" -County and PUMA "G4201070, G42002600" -County and PUMA "G4201090, G42001100" -County and PUMA "G4201110, G42003800" -County and PUMA "G4201130, G42000400" -County and PUMA "G4201150, G42000500" -County and PUMA "G4201170, G42000400" -County and PUMA "G4201190, G42001100" -County and PUMA "G4201210, G42001300" -County and PUMA "G4201230, G42000200" -County and PUMA "G4201250, G42004001" -County and PUMA "G4201250, G42004002" -County and PUMA "G4201270, G42000500" -County and PUMA "G4201290, G42002001" -County and PUMA "G4201290, G42002002" -County and PUMA "G4201290, G42002003" -County and PUMA "G4201310, G42000702" -County and PUMA "G4201330, G42003601" -County and PUMA "G4201330, G42003602" -County and PUMA "G4201330, G42003603" -County and PUMA "G4400010, G44000300" -County and PUMA "G4400030, G44000201" -County and PUMA "G4400050, G44000300" -County and PUMA "G4400070, G44000101" -County and PUMA "G4400070, G44000102" -County and PUMA "G4400070, G44000103" -County and PUMA "G4400070, G44000104" -County and PUMA "G4400090, G44000400" -County and PUMA "G4500010, G45001600" -County and PUMA "G4500030, G45001500" -County and PUMA "G4500050, G45001300" -County and PUMA "G4500070, G45000200" -County and PUMA "G4500090, G45001300" -County and PUMA "G4500110, G45001300" -County and PUMA "G4500130, G45001400" -County and PUMA "G4500150, G45001201" -County and PUMA "G4500150, G45001202" -County and PUMA "G4500150, G45001203" -County and PUMA "G4500150, G45001204" -County and PUMA "G4500170, G45000605" -County and PUMA "G4500190, G45001201" -County and PUMA "G4500190, G45001202" -County and PUMA "G4500190, G45001203" -County and PUMA "G4500190, G45001204" -County and PUMA "G4500210, G45000400" -County and PUMA "G4500230, G45000400" -County and PUMA "G4500250, G45000700" -County and PUMA "G4500270, G45000800" -County and PUMA "G4500290, G45001300" -County and PUMA "G4500310, G45000900" -County and PUMA "G4500330, G45001000" -County and PUMA "G4500350, G45001201" -County and PUMA "G4500350, G45001204" -County and PUMA "G4500370, G45001500" -County and PUMA "G4500390, G45000603" -County and PUMA "G4500410, G45000900" -County and PUMA "G4500430, G45001000" -County and PUMA "G4500450, G45000102" -County and PUMA "G4500450, G45000103" -County and PUMA "G4500450, G45000104" -County and PUMA "G4500450, G45000105" -County and PUMA "G4500470, G45001600" -County and PUMA "G4500490, G45001300" -County and PUMA "G4500510, G45001101" -County and PUMA "G4500510, G45001102" -County and PUMA "G4500530, G45001400" -County and PUMA "G4500550, G45000605" -County and PUMA "G4500570, G45000700" -County and PUMA "G4500590, G45000105" -County and PUMA "G4500610, G45000800" -County and PUMA "G4500630, G45000601" -County and PUMA "G4500630, G45000602" -County and PUMA "G4500650, G45001600" -County and PUMA "G4500670, G45001000" -County and PUMA "G4500690, G45000700" -County and PUMA "G4500710, G45000400" -County and PUMA "G4500730, G45000101" -County and PUMA "G4500750, G45001300" -County and PUMA "G4500770, G45000101" -County and PUMA "G4500790, G45000603" -County and PUMA "G4500790, G45000604" -County and PUMA "G4500790, G45000605" -County and PUMA "G4500810, G45000601" -County and PUMA "G4500830, G45000301" -County and PUMA "G4500830, G45000302" -County and PUMA "G4500850, G45000800" -County and PUMA "G4500870, G45000400" -County and PUMA "G4500890, G45000800" -County and PUMA "G4500910, G45000501" -County and PUMA "G4500910, G45000502" -County and PUMA "G4600030, G46000400" -County and PUMA "G4600050, G46000400" -County and PUMA "G4600070, G46000200" -County and PUMA "G4600090, G46000400" -County and PUMA "G4600110, G46000400" -County and PUMA "G4600130, G46000300" -County and PUMA "G4600150, G46000400" -County and PUMA "G4600170, G46000200" -County and PUMA "G4600190, G46000100" -County and PUMA "G4600210, G46000300" -County and PUMA "G4600230, G46000200" -County and PUMA "G4600250, G46000300" -County and PUMA "G4600270, G46000500" -County and PUMA "G4600290, G46000300" -County and PUMA "G4600310, G46000200" -County and PUMA "G4600330, G46000100" -County and PUMA "G4600350, G46000400" -County and PUMA "G4600370, G46000300" -County and PUMA "G4600390, G46000300" -County and PUMA "G4600410, G46000200" -County and PUMA "G4600430, G46000400" -County and PUMA "G4600450, G46000300" -County and PUMA "G4600470, G46000200" -County and PUMA "G4600490, G46000300" -County and PUMA "G4600510, G46000300" -County and PUMA "G4600530, G46000200" -County and PUMA "G4600550, G46000200" -County and PUMA "G4600570, G46000300" -County and PUMA "G4600590, G46000400" -County and PUMA "G4600610, G46000400" -County and PUMA "G4600630, G46000100" -County and PUMA "G4600650, G46000200" -County and PUMA "G4600670, G46000400" -County and PUMA "G4600690, G46000200" -County and PUMA "G4600710, G46000200" -County and PUMA "G4600730, G46000400" -County and PUMA "G4600750, G46000200" -County and PUMA "G4600770, G46000400" -County and PUMA "G4600790, G46000400" -County and PUMA "G4600810, G46000100" -County and PUMA "G4600830, G46000500" -County and PUMA "G4600830, G46000600" -County and PUMA "G4600850, G46000200" -County and PUMA "G4600870, G46000500" -County and PUMA "G4600890, G46000300" -County and PUMA "G4600910, G46000300" -County and PUMA "G4600930, G46000100" -County and PUMA "G4600950, G46000200" -County and PUMA "G4600970, G46000400" -County and PUMA "G4600990, G46000500" -County and PUMA "G4600990, G46000600" -County and PUMA "G4601010, G46000400" -County and PUMA "G4601020, G46000200" -County and PUMA "G4601030, G46000100" -County and PUMA "G4601050, G46000100" -County and PUMA "G4601070, G46000300" -County and PUMA "G4601090, G46000300" -County and PUMA "G4601110, G46000400" -County and PUMA "G4601150, G46000300" -County and PUMA "G4601170, G46000200" -County and PUMA "G4601190, G46000200" -County and PUMA "G4601210, G46000200" -County and PUMA "G4601230, G46000200" -County and PUMA "G4601250, G46000500" -County and PUMA "G4601270, G46000500" -County and PUMA "G4601290, G46000300" -County and PUMA "G4601350, G46000500" -County and PUMA "G4601370, G46000200" -County and PUMA "G4700010, G47001601" -County and PUMA "G4700030, G47002700" -County and PUMA "G4700050, G47000200" -County and PUMA "G4700070, G47002100" -County and PUMA "G4700090, G47001700" -County and PUMA "G4700110, G47001900" -County and PUMA "G4700130, G47000900" -County and PUMA "G4700150, G47000600" -County and PUMA "G4700170, G47000200" -County and PUMA "G4700190, G47001200" -County and PUMA "G4700210, G47000400" -County and PUMA "G4700230, G47003000" -County and PUMA "G4700250, G47000900" -County and PUMA "G4700270, G47000700" -County and PUMA "G4700290, G47001400" -County and PUMA "G4700310, G47002200" -County and PUMA "G4700330, G47000100" -County and PUMA "G4700350, G47000800" -County and PUMA "G4700370, G47002501" -County and PUMA "G4700370, G47002502" -County and PUMA "G4700370, G47002503" -County and PUMA "G4700370, G47002504" -County and PUMA "G4700370, G47002505" -County and PUMA "G4700390, G47002900" -County and PUMA "G4700410, G47000600" -County and PUMA "G4700430, G47000400" -County and PUMA "G4700450, G47000100" -County and PUMA "G4700470, G47003100" -County and PUMA "G4700490, G47000800" -County and PUMA "G4700510, G47002200" -County and PUMA "G4700530, G47000100" -County and PUMA "G4700550, G47002800" -County and PUMA "G4700570, G47001400" -County and PUMA "G4700590, G47001200" -County and PUMA "G4700610, G47002100" -County and PUMA "G4700630, G47001400" -County and PUMA "G4700650, G47002001" -County and PUMA "G4700650, G47002002" -County and PUMA "G4700650, G47002003" -County and PUMA "G4700670, G47000900" -County and PUMA "G4700690, G47002900" -County and PUMA "G4700710, G47002900" -County and PUMA "G4700730, G47001000" -County and PUMA "G4700750, G47002900" -County and PUMA "G4700770, G47002900" -County and PUMA "G4700790, G47000200" -County and PUMA "G4700810, G47000400" -County and PUMA "G4700830, G47000200" -County and PUMA "G4700850, G47000200" -County and PUMA "G4700870, G47000700" -County and PUMA "G4700890, G47001500" -County and PUMA "G4700910, G47001200" -County and PUMA "G4700930, G47001601" -County and PUMA "G4700930, G47001602" -County and PUMA "G4700930, G47001603" -County and PUMA "G4700930, G47001604" -County and PUMA "G4700950, G47000100" -County and PUMA "G4700970, G47003100" -County and PUMA "G4700990, G47002800" -County and PUMA "G4701010, G47002800" -County and PUMA "G4701030, G47002200" -County and PUMA "G4701050, G47001800" -County and PUMA "G4701070, G47001900" -County and PUMA "G4701090, G47002900" -County and PUMA "G4701110, G47000600" -County and PUMA "G4701130, G47003000" -County and PUMA "G4701150, G47002100" -County and PUMA "G4701170, G47002700" -County and PUMA "G4701190, G47002700" -County and PUMA "G4701210, G47002100" -County and PUMA "G4701230, G47001800" -County and PUMA "G4701250, G47000300" -County and PUMA "G4701270, G47002200" -County and PUMA "G4701290, G47000900" -County and PUMA "G4701310, G47000100" -County and PUMA "G4701330, G47000700" -County and PUMA "G4701350, G47002800" -County and PUMA "G4701370, G47000700" -County and PUMA "G4701390, G47001900" -County and PUMA "G4701410, G47000700" -County and PUMA "G4701430, G47002100" -County and PUMA "G4701450, G47001800" -County and PUMA "G4701470, G47000400" -County and PUMA "G4701490, G47002401" -County and PUMA "G4701490, G47002402" -County and PUMA "G4701510, G47000900" -County and PUMA "G4701530, G47002100" -County and PUMA "G4701550, G47001500" -County and PUMA "G4701570, G47003201" -County and PUMA "G4701570, G47003202" -County and PUMA "G4701570, G47003203" -County and PUMA "G4701570, G47003204" -County and PUMA "G4701570, G47003205" -County and PUMA "G4701570, G47003206" -County and PUMA "G4701570, G47003207" -County and PUMA "G4701570, G47003208" -County and PUMA "G4701590, G47000600" -County and PUMA "G4701610, G47000300" -County and PUMA "G4701630, G47001000" -County and PUMA "G4701630, G47001100" -County and PUMA "G4701650, G47000500" -County and PUMA "G4701670, G47003100" -County and PUMA "G4701690, G47000600" -County and PUMA "G4701710, G47001200" -County and PUMA "G4701730, G47001601" -County and PUMA "G4701750, G47000800" -County and PUMA "G4701770, G47000600" -County and PUMA "G4701790, G47001300" -County and PUMA "G4701810, G47002800" -County and PUMA "G4701830, G47000200" -County and PUMA "G4701850, G47000800" -County and PUMA "G4701870, G47002600" -County and PUMA "G4701890, G47002300" -County and PUMA "G4800010, G48001800" -County and PUMA "G4800030, G48003200" -County and PUMA "G4800050, G48004000" -County and PUMA "G4800070, G48006500" -County and PUMA "G4800090, G48000600" -County and PUMA "G4800110, G48000100" -County and PUMA "G4800130, G48006100" -County and PUMA "G4800150, G48005000" -County and PUMA "G4800170, G48000400" -County and PUMA "G4800190, G48006100" -County and PUMA "G4800210, G48005100" -County and PUMA "G4800230, G48000600" -County and PUMA "G4800250, G48006500" -County and PUMA "G4800270, G48003501" -County and PUMA "G4800270, G48003502" -County and PUMA "G4800290, G48005901" -County and PUMA "G4800290, G48005902" -County and PUMA "G4800290, G48005903" -County and PUMA "G4800290, G48005904" -County and PUMA "G4800290, G48005905" -County and PUMA "G4800290, G48005906" -County and PUMA "G4800290, G48005907" -County and PUMA "G4800290, G48005908" -County and PUMA "G4800290, G48005909" -County and PUMA "G4800290, G48005910" -County and PUMA "G4800290, G48005911" -County and PUMA "G4800290, G48005912" -County and PUMA "G4800290, G48005913" -County and PUMA "G4800290, G48005914" -County and PUMA "G4800290, G48005915" -County and PUMA "G4800290, G48005916" -County and PUMA "G4800310, G48006000" -County and PUMA "G4800330, G48002800" -County and PUMA "G4800350, G48003700" -County and PUMA "G4800370, G48001100" -County and PUMA "G4800390, G48004801" -County and PUMA "G4800390, G48004802" -County and PUMA "G4800390, G48004803" -County and PUMA "G4800410, G48003602" -County and PUMA "G4800430, G48003200" -County and PUMA "G4800450, G48000100" -County and PUMA "G4800470, G48006900" -County and PUMA "G4800490, G48002600" -County and PUMA "G4800510, G48003601" -County and PUMA "G4800530, G48003400" -County and PUMA "G4800550, G48005100" -County and PUMA "G4800570, G48005600" -County and PUMA "G4800590, G48002600" -County and PUMA "G4800610, G48006701" -County and PUMA "G4800610, G48006702" -County and PUMA "G4800610, G48006703" -County and PUMA "G4800630, G48001300" -County and PUMA "G4800650, G48000100" -County and PUMA "G4800670, G48001100" -County and PUMA "G4800690, G48000100" -County and PUMA "G4800710, G48004400" -County and PUMA "G4800730, G48001700" -County and PUMA "G4800750, G48000100" -County and PUMA "G4800770, G48000600" -County and PUMA "G4800790, G48000400" -County and PUMA "G4800810, G48002800" -County and PUMA "G4800830, G48002600" -County and PUMA "G4800850, G48001901" -County and PUMA "G4800850, G48001902" -County and PUMA "G4800850, G48001903" -County and PUMA "G4800850, G48001904" -County and PUMA "G4800850, G48001905" -County and PUMA "G4800850, G48001906" -County and PUMA "G4800850, G48001907" -County and PUMA "G4800870, G48000100" -County and PUMA "G4800890, G48005000" -County and PUMA "G4800910, G48005800" -County and PUMA "G4800930, G48002600" -County and PUMA "G4800950, G48002800" -County and PUMA "G4800970, G48000800" -County and PUMA "G4800990, G48003400" -County and PUMA "G4801010, G48000600" -County and PUMA "G4801030, G48003200" -County and PUMA "G4801050, G48002800" -County and PUMA "G4801070, G48000400" -County and PUMA "G4801090, G48003200" -County and PUMA "G4801110, G48000100" -County and PUMA "G4801130, G48002301" -County and PUMA "G4801130, G48002302" -County and PUMA "G4801130, G48002303" -County and PUMA "G4801130, G48002304" -County and PUMA "G4801130, G48002305" -County and PUMA "G4801130, G48002306" -County and PUMA "G4801130, G48002307" -County and PUMA "G4801130, G48002308" -County and PUMA "G4801130, G48002309" -County and PUMA "G4801130, G48002310" -County and PUMA "G4801130, G48002311" -County and PUMA "G4801130, G48002312" -County and PUMA "G4801130, G48002313" -County and PUMA "G4801130, G48002314" -County and PUMA "G4801130, G48002315" -County and PUMA "G4801130, G48002316" -County and PUMA "G4801130, G48002317" -County and PUMA "G4801130, G48002318" -County and PUMA "G4801130, G48002319" -County and PUMA "G4801130, G48002320" -County and PUMA "G4801130, G48002321" -County and PUMA "G4801130, G48002322" -County and PUMA "G4801150, G48002800" -County and PUMA "G4801170, G48000100" -County and PUMA "G4801190, G48001000" -County and PUMA "G4801210, G48002001" -County and PUMA "G4801210, G48002002" -County and PUMA "G4801210, G48002003" -County and PUMA "G4801210, G48002004" -County and PUMA "G4801210, G48002005" -County and PUMA "G4801210, G48002006" -County and PUMA "G4801230, G48005500" -County and PUMA "G4801250, G48000400" -County and PUMA "G4801270, G48006200" -County and PUMA "G4801290, G48000100" -County and PUMA "G4801310, G48006400" -County and PUMA "G4801330, G48002600" -County and PUMA "G4801350, G48003100" -County and PUMA "G4801370, G48006200" -County and PUMA "G4801390, G48002101" -County and PUMA "G4801410, G48003301" -County and PUMA "G4801410, G48003302" -County and PUMA "G4801410, G48003303" -County and PUMA "G4801410, G48003304" -County and PUMA "G4801410, G48003305" -County and PUMA "G4801410, G48003306" -County and PUMA "G4801430, G48002200" -County and PUMA "G4801450, G48003700" -County and PUMA "G4801470, G48000800" -County and PUMA "G4801490, G48005100" -County and PUMA "G4801510, G48002600" -County and PUMA "G4801530, G48000400" -County and PUMA "G4801550, G48000600" -County and PUMA "G4801570, G48004901" -County and PUMA "G4801570, G48004902" -County and PUMA "G4801570, G48004903" -County and PUMA "G4801570, G48004904" -County and PUMA "G4801570, G48004905" -County and PUMA "G4801590, G48001000" -County and PUMA "G4801610, G48003700" -County and PUMA "G4801630, G48006100" -County and PUMA "G4801650, G48003200" -County and PUMA "G4801670, G48004701" -County and PUMA "G4801670, G48004702" -County and PUMA "G4801690, G48000400" -County and PUMA "G4801710, G48006000" -County and PUMA "G4801730, G48002800" -County and PUMA "G4801750, G48005500" -County and PUMA "G4801770, G48005500" -County and PUMA "G4801790, G48000100" -County and PUMA "G4801810, G48000800" -County and PUMA "G4801830, G48001600" -County and PUMA "G4801850, G48003601" -County and PUMA "G4801870, G48005700" -County and PUMA "G4801890, G48000400" -County and PUMA "G4801910, G48000100" -County and PUMA "G4801930, G48003400" -County and PUMA "G4801950, G48000100" -County and PUMA "G4801970, G48000600" -County and PUMA "G4801990, G48004200" -County and PUMA "G4802010, G48004601" -County and PUMA "G4802010, G48004602" -County and PUMA "G4802010, G48004603" -County and PUMA "G4802010, G48004604" -County and PUMA "G4802010, G48004605" -County and PUMA "G4802010, G48004606" -County and PUMA "G4802010, G48004607" -County and PUMA "G4802010, G48004608" -County and PUMA "G4802010, G48004609" -County and PUMA "G4802010, G48004610" -County and PUMA "G4802010, G48004611" -County and PUMA "G4802010, G48004612" -County and PUMA "G4802010, G48004613" -County and PUMA "G4802010, G48004614" -County and PUMA "G4802010, G48004615" -County and PUMA "G4802010, G48004616" -County and PUMA "G4802010, G48004617" -County and PUMA "G4802010, G48004618" -County and PUMA "G4802010, G48004619" -County and PUMA "G4802010, G48004620" -County and PUMA "G4802010, G48004621" -County and PUMA "G4802010, G48004622" -County and PUMA "G4802010, G48004623" -County and PUMA "G4802010, G48004624" -County and PUMA "G4802010, G48004625" -County and PUMA "G4802010, G48004626" -County and PUMA "G4802010, G48004627" -County and PUMA "G4802010, G48004628" -County and PUMA "G4802010, G48004629" -County and PUMA "G4802010, G48004630" -County and PUMA "G4802010, G48004631" -County and PUMA "G4802010, G48004632" -County and PUMA "G4802010, G48004633" -County and PUMA "G4802010, G48004634" -County and PUMA "G4802010, G48004635" -County and PUMA "G4802010, G48004636" -County and PUMA "G4802010, G48004637" -County and PUMA "G4802010, G48004638" -County and PUMA "G4802030, G48001200" -County and PUMA "G4802050, G48000100" -County and PUMA "G4802070, G48002600" -County and PUMA "G4802090, G48005400" -County and PUMA "G4802110, G48000100" -County and PUMA "G4802130, G48001800" -County and PUMA "G4802150, G48006801" -County and PUMA "G4802150, G48006802" -County and PUMA "G4802150, G48006803" -County and PUMA "G4802150, G48006804" -County and PUMA "G4802150, G48006805" -County and PUMA "G4802150, G48006806" -County and PUMA "G4802150, G48006807" -County and PUMA "G4802170, G48003700" -County and PUMA "G4802190, G48000400" -County and PUMA "G4802210, G48002200" -County and PUMA "G4802230, G48001000" -County and PUMA "G4802250, G48003900" -County and PUMA "G4802270, G48002800" -County and PUMA "G4802290, G48003200" -County and PUMA "G4802310, G48000900" -County and PUMA "G4802330, G48000100" -County and PUMA "G4802350, G48002800" -County and PUMA "G4802370, G48000600" -County and PUMA "G4802390, G48005500" -County and PUMA "G4802410, G48004100" -County and PUMA "G4802430, G48003200" -County and PUMA "G4802450, G48004301" -County and PUMA "G4802450, G48004302" -County and PUMA "G4802470, G48006400" -County and PUMA "G4802490, G48006900" -County and PUMA "G4802510, G48002102" -County and PUMA "G4802530, G48002600" -County and PUMA "G4802550, G48005500" -County and PUMA "G4802570, G48001400" -County and PUMA "G4802590, G48006000" -County and PUMA "G4802610, G48006900" -County and PUMA "G4802630, G48002600" -County and PUMA "G4802650, G48006000" -County and PUMA "G4802670, G48002800" -County and PUMA "G4802690, G48000400" -County and PUMA "G4802710, G48006200" -County and PUMA "G4802730, G48006900" -County and PUMA "G4802750, G48002600" -County and PUMA "G4802770, G48001000" -County and PUMA "G4802790, G48000400" -County and PUMA "G4802810, G48003400" -County and PUMA "G4802830, G48006200" -County and PUMA "G4802850, G48005500" -County and PUMA "G4802870, G48005100" -County and PUMA "G4802890, G48003601" -County and PUMA "G4802910, G48004400" -County and PUMA "G4802930, G48003700" -County and PUMA "G4802950, G48000100" -County and PUMA "G4802970, G48006400" -County and PUMA "G4802990, G48003400" -County and PUMA "G4803010, G48003200" -County and PUMA "G4803030, G48000501" -County and PUMA "G4803030, G48000502" -County and PUMA "G4803050, G48000400" -County and PUMA "G4803070, G48002800" -County and PUMA "G4803090, G48003801" -County and PUMA "G4803090, G48003802" -County and PUMA "G4803110, G48006400" -County and PUMA "G4803130, G48003601" -County and PUMA "G4803150, G48001200" -County and PUMA "G4803170, G48002800" -County and PUMA "G4803190, G48002800" -County and PUMA "G4803210, G48005000" -County and PUMA "G4803230, G48006200" -County and PUMA "G4803250, G48006100" -County and PUMA "G4803270, G48002800" -County and PUMA "G4803290, G48003000" -County and PUMA "G4803310, G48003601" -County and PUMA "G4803330, G48003400" -County and PUMA "G4803350, G48002600" -County and PUMA "G4803370, G48000600" -County and PUMA "G4803390, G48004501" -County and PUMA "G4803390, G48004502" -County and PUMA "G4803390, G48004503" -County and PUMA "G4803390, G48004504" -County and PUMA "G4803410, G48000100" -County and PUMA "G4803430, G48001000" -County and PUMA "G4803450, G48000400" -County and PUMA "G4803470, G48004000" -County and PUMA "G4803490, G48003700" -County and PUMA "G4803510, G48004100" -County and PUMA "G4803530, G48002600" -County and PUMA "G4803550, G48006601" -County and PUMA "G4803550, G48006602" -County and PUMA "G4803550, G48006603" -County and PUMA "G4803570, G48000100" -County and PUMA "G4803590, G48000100" -County and PUMA "G4803610, G48004200" -County and PUMA "G4803630, G48002200" -County and PUMA "G4803650, G48001700" -County and PUMA "G4803670, G48002400" -County and PUMA "G4803690, G48000100" -County and PUMA "G4803710, G48003200" -County and PUMA "G4803730, G48003900" -County and PUMA "G4803750, G48000200" -County and PUMA "G4803770, G48003200" -County and PUMA "G4803790, G48001300" -County and PUMA "G4803810, G48000300" -County and PUMA "G4803830, G48002800" -County and PUMA "G4803850, G48006200" -County and PUMA "G4803870, G48001000" -County and PUMA "G4803890, G48003200" -County and PUMA "G4803910, G48006500" -County and PUMA "G4803930, G48000100" -County and PUMA "G4803950, G48003601" -County and PUMA "G4803970, G48000900" -County and PUMA "G4803990, G48002600" -County and PUMA "G4804010, G48001700" -County and PUMA "G4804030, G48004100" -County and PUMA "G4804050, G48004100" -County and PUMA "G4804070, G48003900" -County and PUMA "G4804090, G48006500" -County and PUMA "G4804110, G48003400" -County and PUMA "G4804130, G48002800" -County and PUMA "G4804150, G48002600" -County and PUMA "G4804170, G48002600" -County and PUMA "G4804190, G48004100" -County and PUMA "G4804210, G48000100" -County and PUMA "G4804230, G48001501" -County and PUMA "G4804230, G48001502" -County and PUMA "G4804250, G48002200" -County and PUMA "G4804270, G48006400" -County and PUMA "G4804290, G48002600" -County and PUMA "G4804310, G48002800" -County and PUMA "G4804330, G48002600" -County and PUMA "G4804350, G48002800" -County and PUMA "G4804370, G48000100" -County and PUMA "G4804390, G48002501" -County and PUMA "G4804390, G48002502" -County and PUMA "G4804390, G48002503" -County and PUMA "G4804390, G48002504" -County and PUMA "G4804390, G48002505" -County and PUMA "G4804390, G48002506" -County and PUMA "G4804390, G48002507" -County and PUMA "G4804390, G48002508" -County and PUMA "G4804390, G48002509" -County and PUMA "G4804390, G48002510" -County and PUMA "G4804390, G48002511" -County and PUMA "G4804390, G48002512" -County and PUMA "G4804390, G48002513" -County and PUMA "G4804390, G48002514" -County and PUMA "G4804390, G48002515" -County and PUMA "G4804390, G48002516" -County and PUMA "G4804410, G48002700" -County and PUMA "G4804430, G48003200" -County and PUMA "G4804450, G48000400" -County and PUMA "G4804470, G48002600" -County and PUMA "G4804490, G48001000" -County and PUMA "G4804510, G48002900" -County and PUMA "G4804530, G48005301" -County and PUMA "G4804530, G48005302" -County and PUMA "G4804530, G48005303" -County and PUMA "G4804530, G48005304" -County and PUMA "G4804530, G48005305" -County and PUMA "G4804530, G48005306" -County and PUMA "G4804530, G48005307" -County and PUMA "G4804530, G48005308" -County and PUMA "G4804530, G48005309" -County and PUMA "G4804550, G48003900" -County and PUMA "G4804570, G48004100" -County and PUMA "G4804590, G48001200" -County and PUMA "G4804610, G48002800" -County and PUMA "G4804630, G48006200" -County and PUMA "G4804650, G48006200" -County and PUMA "G4804670, G48001300" -County and PUMA "G4804690, G48005600" -County and PUMA "G4804710, G48003900" -County and PUMA "G4804730, G48005000" -County and PUMA "G4804750, G48003200" -County and PUMA "G4804770, G48003601" -County and PUMA "G4804790, G48006301" -County and PUMA "G4804790, G48006302" -County and PUMA "G4804810, G48005000" -County and PUMA "G4804830, G48000100" -County and PUMA "G4804850, G48000700" -County and PUMA "G4804870, G48000600" -County and PUMA "G4804890, G48006900" -County and PUMA "G4804910, G48005201" -County and PUMA "G4804910, G48005202" -County and PUMA "G4804910, G48005203" -County and PUMA "G4804910, G48005204" -County and PUMA "G4804930, G48005500" -County and PUMA "G4804950, G48003200" -County and PUMA "G4804970, G48000600" -County and PUMA "G4804990, G48001300" -County and PUMA "G4805010, G48000400" -County and PUMA "G4805030, G48000600" -County and PUMA "G4805050, G48006400" -County and PUMA "G4805070, G48006200" -County and PUMA "G4900010, G49021001" -County and PUMA "G4900030, G49003001" -County and PUMA "G4900050, G49005001" -County and PUMA "G4900070, G49013001" -County and PUMA "G4900090, G49013001" -County and PUMA "G4900110, G49011001" -County and PUMA "G4900110, G49011002" -County and PUMA "G4900130, G49013001" -County and PUMA "G4900150, G49013001" -County and PUMA "G4900170, G49021001" -County and PUMA "G4900190, G49013001" -County and PUMA "G4900210, G49021001" -County and PUMA "G4900230, G49021001" -County and PUMA "G4900250, G49021001" -County and PUMA "G4900270, G49021001" -County and PUMA "G4900290, G49005001" -County and PUMA "G4900310, G49021001" -County and PUMA "G4900330, G49005001" -County and PUMA "G4900350, G49035001" -County and PUMA "G4900350, G49035002" -County and PUMA "G4900350, G49035003" -County and PUMA "G4900350, G49035004" -County and PUMA "G4900350, G49035005" -County and PUMA "G4900350, G49035006" -County and PUMA "G4900350, G49035007" -County and PUMA "G4900350, G49035008" -County and PUMA "G4900350, G49035009" -County and PUMA "G4900370, G49013001" -County and PUMA "G4900390, G49021001" -County and PUMA "G4900410, G49021001" -County and PUMA "G4900430, G49005001" -County and PUMA "G4900450, G49003001" -County and PUMA "G4900470, G49013001" -County and PUMA "G4900490, G49049001" -County and PUMA "G4900490, G49049002" -County and PUMA "G4900490, G49049003" -County and PUMA "G4900490, G49049004" -County and PUMA "G4900510, G49013001" -County and PUMA "G4900530, G49053001" -County and PUMA "G4900550, G49021001" -County and PUMA "G4900570, G49057001" -County and PUMA "G4900570, G49057002" -County and PUMA "G5000010, G50000400" -County and PUMA "G5000030, G50000400" -County and PUMA "G5000050, G50000200" -County and PUMA "G5000070, G50000100" -County and PUMA "G5000090, G50000200" -County and PUMA "G5000110, G50000100" -County and PUMA "G5000130, G50000100" -County and PUMA "G5000150, G50000200" -County and PUMA "G5000170, G50000300" -County and PUMA "G5000190, G50000200" -County and PUMA "G5000210, G50000400" -County and PUMA "G5000230, G50000200" -County and PUMA "G5000250, G50000300" -County and PUMA "G5000270, G50000300" -County and PUMA "G5100010, G51051125" -County and PUMA "G5100030, G51051089" -County and PUMA "G5100030, G51051090" -County and PUMA "G5100050, G51051045" -County and PUMA "G5100070, G51051105" -County and PUMA "G5100090, G51051095" -County and PUMA "G5100110, G51051095" -County and PUMA "G5100130, G51001301" -County and PUMA "G5100130, G51001302" -County and PUMA "G5100150, G51051080" -County and PUMA "G5100170, G51051080" -County and PUMA "G5100190, G51051095" -County and PUMA "G5100210, G51051020" -County and PUMA "G5100230, G51051045" -County and PUMA "G5100250, G51051105" -County and PUMA "G5100270, G51051010" -County and PUMA "G5100290, G51051105" -County and PUMA "G5100310, G51051096" -County and PUMA "G5100330, G51051120" -County and PUMA "G5100350, G51051020" -County and PUMA "G5100360, G51051215" -County and PUMA "G5100370, G51051105" -County and PUMA "G5100410, G51004101" -County and PUMA "G5100410, G51004102" -County and PUMA "G5100410, G51004103" -County and PUMA "G5100430, G51051084" -County and PUMA "G5100450, G51051045" -County and PUMA "G5100470, G51051087" -County and PUMA "G5100490, G51051105" -County and PUMA "G5100510, G51051010" -County and PUMA "G5100530, G51051135" -County and PUMA "G5100570, G51051125" -County and PUMA "G5100590, G51059301" -County and PUMA "G5100590, G51059302" -County and PUMA "G5100590, G51059303" -County and PUMA "G5100590, G51059304" -County and PUMA "G5100590, G51059305" -County and PUMA "G5100590, G51059306" -County and PUMA "G5100590, G51059307" -County and PUMA "G5100590, G51059308" -County and PUMA "G5100590, G51059309" -County and PUMA "G5100610, G51051087" -County and PUMA "G5100630, G51051040" -County and PUMA "G5100650, G51051089" -County and PUMA "G5100670, G51051045" -County and PUMA "G5100690, G51051084" -County and PUMA "G5100710, G51051040" -County and PUMA "G5100730, G51051125" -County and PUMA "G5100750, G51051215" -County and PUMA "G5100770, G51051020" -County and PUMA "G5100790, G51051090" -County and PUMA "G5100810, G51051135" -County and PUMA "G5100830, G51051105" -County and PUMA "G5100850, G51051215" -County and PUMA "G5100870, G51051224" -County and PUMA "G5100870, G51051225" -County and PUMA "G5100890, G51051097" -County and PUMA "G5100910, G51051080" -County and PUMA "G5100930, G51051145" -County and PUMA "G5100950, G51051206" -County and PUMA "G5100970, G51051125" -County and PUMA "G5100990, G51051120" -County and PUMA "G5101010, G51051215" -County and PUMA "G5101030, G51051125" -County and PUMA "G5101050, G51051010" -County and PUMA "G5101070, G51010701" -County and PUMA "G5101070, G51010702" -County and PUMA "G5101070, G51010703" -County and PUMA "G5101090, G51051089" -County and PUMA "G5101110, G51051105" -County and PUMA "G5101130, G51051087" -County and PUMA "G5101150, G51051125" -County and PUMA "G5101170, G51051105" -County and PUMA "G5101190, G51051125" -County and PUMA "G5101210, G51051040" -County and PUMA "G5101250, G51051089" -County and PUMA "G5101270, G51051215" -County and PUMA "G5101310, G51051125" -County and PUMA "G5101330, G51051125" -County and PUMA "G5101350, G51051105" -County and PUMA "G5101370, G51051087" -County and PUMA "G5101390, G51051085" -County and PUMA "G5101410, G51051097" -County and PUMA "G5101430, G51051097" -County and PUMA "G5101450, G51051215" -County and PUMA "G5101470, G51051105" -County and PUMA "G5101490, G51051135" -County and PUMA "G5101530, G51051244" -County and PUMA "G5101530, G51051245" -County and PUMA "G5101530, G51051246" -County and PUMA "G5101550, G51051040" -County and PUMA "G5101570, G51051087" -County and PUMA "G5101590, G51051125" -County and PUMA "G5101610, G51051044" -County and PUMA "G5101610, G51051045" -County and PUMA "G5101630, G51051080" -County and PUMA "G5101650, G51051110" -County and PUMA "G5101670, G51051010" -County and PUMA "G5101690, G51051010" -County and PUMA "G5101710, G51051085" -County and PUMA "G5101730, G51051020" -County and PUMA "G5101750, G51051145" -County and PUMA "G5101770, G51051120" -County and PUMA "G5101790, G51051115" -County and PUMA "G5101810, G51051135" -County and PUMA "G5101830, G51051135" -County and PUMA "G5101850, G51051010" -County and PUMA "G5101870, G51051085" -County and PUMA "G5101910, G51051020" -County and PUMA "G5101930, G51051125" -County and PUMA "G5101950, G51051010" -County and PUMA "G5101970, G51051020" -County and PUMA "G5101990, G51051206" -County and PUMA "G5105100, G51051255" -County and PUMA "G5105200, G51051020" -County and PUMA "G5105300, G51051080" -County and PUMA "G5105400, G51051090" -County and PUMA "G5105500, G51055001" -County and PUMA "G5105500, G51055002" -County and PUMA "G5105700, G51051135" -County and PUMA "G5105800, G51051045" -County and PUMA "G5105900, G51051097" -County and PUMA "G5105950, G51051135" -County and PUMA "G5106000, G51059303" -County and PUMA "G5106100, G51059308" -County and PUMA "G5106200, G51051145" -County and PUMA "G5106300, G51051115" -County and PUMA "G5106400, G51051020" -County and PUMA "G5106500, G51051186" -County and PUMA "G5106600, G51051110" -County and PUMA "G5106700, G51051135" -County and PUMA "G5106780, G51051080" -County and PUMA "G5106800, G51051096" -County and PUMA "G5106830, G51051245" -County and PUMA "G5106850, G51051245" -County and PUMA "G5106900, G51051097" -County and PUMA "G5107000, G51051175" -County and PUMA "G5107100, G51051154" -County and PUMA "G5107100, G51051155" -County and PUMA "G5107200, G51051010" -County and PUMA "G5107300, G51051135" -County and PUMA "G5107350, G51051206" -County and PUMA "G5107400, G51051155" -County and PUMA "G5107500, G51051040" -County and PUMA "G5107600, G51051235" -County and PUMA "G5107700, G51051044" -County and PUMA "G5107750, G51051044" -County and PUMA "G5107900, G51051080" -County and PUMA "G5108000, G51051145" -County and PUMA "G5108100, G51051164" -County and PUMA "G5108100, G51051165" -County and PUMA "G5108100, G51051167" -County and PUMA "G5108200, G51051080" -County and PUMA "G5108300, G51051206" -County and PUMA "G5108400, G51051084" -County and PUMA "G5300010, G53010600" -County and PUMA "G5300030, G53010600" -County and PUMA "G5300050, G53010701" -County and PUMA "G5300050, G53010702" -County and PUMA "G5300050, G53010703" -County and PUMA "G5300070, G53010300" -County and PUMA "G5300090, G53011900" -County and PUMA "G5300110, G53011101" -County and PUMA "G5300110, G53011102" -County and PUMA "G5300110, G53011103" -County and PUMA "G5300110, G53011104" -County and PUMA "G5300130, G53010600" -County and PUMA "G5300150, G53011200" -County and PUMA "G5300170, G53010300" -County and PUMA "G5300190, G53010400" -County and PUMA "G5300210, G53010701" -County and PUMA "G5300210, G53010703" -County and PUMA "G5300230, G53010600" -County and PUMA "G5300250, G53010800" -County and PUMA "G5300270, G53011300" -County and PUMA "G5300290, G53010200" -County and PUMA "G5300310, G53011900" -County and PUMA "G5300330, G53011601" -County and PUMA "G5300330, G53011602" -County and PUMA "G5300330, G53011603" -County and PUMA "G5300330, G53011604" -County and PUMA "G5300330, G53011605" -County and PUMA "G5300330, G53011606" -County and PUMA "G5300330, G53011607" -County and PUMA "G5300330, G53011608" -County and PUMA "G5300330, G53011609" -County and PUMA "G5300330, G53011610" -County and PUMA "G5300330, G53011611" -County and PUMA "G5300330, G53011612" -County and PUMA "G5300330, G53011613" -County and PUMA "G5300330, G53011614" -County and PUMA "G5300330, G53011615" -County and PUMA "G5300330, G53011616" -County and PUMA "G5300350, G53011801" -County and PUMA "G5300350, G53011802" -County and PUMA "G5300370, G53010800" -County and PUMA "G5300390, G53011000" -County and PUMA "G5300410, G53011000" -County and PUMA "G5300430, G53010600" -County and PUMA "G5300450, G53011300" -County and PUMA "G5300470, G53010400" -County and PUMA "G5300490, G53011200" -County and PUMA "G5300510, G53010400" -County and PUMA "G5300530, G53011501" -County and PUMA "G5300530, G53011502" -County and PUMA "G5300530, G53011503" -County and PUMA "G5300530, G53011504" -County and PUMA "G5300530, G53011505" -County and PUMA "G5300530, G53011506" -County and PUMA "G5300530, G53011507" -County and PUMA "G5300550, G53010200" -County and PUMA "G5300570, G53010200" -County and PUMA "G5300590, G53011000" -County and PUMA "G5300610, G53011701" -County and PUMA "G5300610, G53011702" -County and PUMA "G5300610, G53011703" -County and PUMA "G5300610, G53011704" -County and PUMA "G5300610, G53011705" -County and PUMA "G5300610, G53011706" -County and PUMA "G5300630, G53010501" -County and PUMA "G5300630, G53010502" -County and PUMA "G5300630, G53010503" -County and PUMA "G5300630, G53010504" -County and PUMA "G5300650, G53010400" -County and PUMA "G5300670, G53011401" -County and PUMA "G5300670, G53011402" -County and PUMA "G5300690, G53011200" -County and PUMA "G5300710, G53010703" -County and PUMA "G5300730, G53010100" -County and PUMA "G5300750, G53010600" -County and PUMA "G5300770, G53010901" -County and PUMA "G5300770, G53010902" -County and PUMA "G5400010, G54000500" -County and PUMA "G5400030, G54000400" -County and PUMA "G5400050, G54000900" -County and PUMA "G5400070, G54000600" -County and PUMA "G5400090, G54000100" -County and PUMA "G5400110, G54000800" -County and PUMA "G5400130, G54000600" -County and PUMA "G5400150, G54001000" -County and PUMA "G5400170, G54000200" -County and PUMA "G5400190, G54001200" -County and PUMA "G5400210, G54000600" -County and PUMA "G5400230, G54000500" -County and PUMA "G5400250, G54001100" -County and PUMA "G5400270, G54000400" -County and PUMA "G5400290, G54000100" -County and PUMA "G5400310, G54000500" -County and PUMA "G5400330, G54000200" -County and PUMA "G5400350, G54000600" -County and PUMA "G5400370, G54000400" -County and PUMA "G5400390, G54001000" -County and PUMA "G5400410, G54000500" -County and PUMA "G5400430, G54000900" -County and PUMA "G5400450, G54001300" -County and PUMA "G5400470, G54001300" -County and PUMA "G5400490, G54000200" -County and PUMA "G5400510, G54000100" -County and PUMA "G5400530, G54000800" -County and PUMA "G5400550, G54001200" -County and PUMA "G5400570, G54000400" -County and PUMA "G5400590, G54001300" -County and PUMA "G5400610, G54000300" -County and PUMA "G5400630, G54001100" -County and PUMA "G5400650, G54000400" -County and PUMA "G5400670, G54001100" -County and PUMA "G5400690, G54000100" -County and PUMA "G5400710, G54000500" -County and PUMA "G5400730, G54000700" -County and PUMA "G5400750, G54001100" -County and PUMA "G5400770, G54000300" -County and PUMA "G5400790, G54000900" -County and PUMA "G5400810, G54001200" -County and PUMA "G5400830, G54000500" -County and PUMA "G5400850, G54000600" -County and PUMA "G5400870, G54000600" -County and PUMA "G5400890, G54001100" -County and PUMA "G5400910, G54000200" -County and PUMA "G5400930, G54000500" -County and PUMA "G5400950, G54000600" -County and PUMA "G5400970, G54000500" -County and PUMA "G5400990, G54000800" -County and PUMA "G5401010, G54001100" -County and PUMA "G5401030, G54000600" -County and PUMA "G5401050, G54000700" -County and PUMA "G5401070, G54000700" -County and PUMA "G5401090, G54001300" -County and PUMA "G5500010, G55001601" -County and PUMA "G5500030, G55000100" -County and PUMA "G5500050, G55055101" -County and PUMA "G5500070, G55000100" -County and PUMA "G5500090, G55000200" -County and PUMA "G5500090, G55000300" -County and PUMA "G5500110, G55000700" -County and PUMA "G5500130, G55000100" -County and PUMA "G5500150, G55001401" -County and PUMA "G5500170, G55055101" -County and PUMA "G5500170, G55055103" -County and PUMA "G5500190, G55055101" -County and PUMA "G5500210, G55001000" -County and PUMA "G5500230, G55000700" -County and PUMA "G5500250, G55000101" -County and PUMA "G5500250, G55000102" -County and PUMA "G5500250, G55000103" -County and PUMA "G5500270, G55001001" -County and PUMA "G5500290, G55001300" -County and PUMA "G5500310, G55000100" -County and PUMA "G5500330, G55055102" -County and PUMA "G5500350, G55055103" -County and PUMA "G5500370, G55001300" -County and PUMA "G5500390, G55001401" -County and PUMA "G5500410, G55000600" -County and PUMA "G5500430, G55000800" -County and PUMA "G5500450, G55000800" -County and PUMA "G5500470, G55001400" -County and PUMA "G5500490, G55000800" -County and PUMA "G5500510, G55000100" -County and PUMA "G5500530, G55000700" -County and PUMA "G5500550, G55001001" -County and PUMA "G5500570, G55001601" -County and PUMA "G5500590, G55010000" -County and PUMA "G5500610, G55001301" -County and PUMA "G5500630, G55000900" -County and PUMA "G5500650, G55000800" -County and PUMA "G5500670, G55000600" -County and PUMA "G5500690, G55000600" -County and PUMA "G5500710, G55001301" -County and PUMA "G5500730, G55001600" -County and PUMA "G5500750, G55001300" -County and PUMA "G5500770, G55001400" -County and PUMA "G5500780, G55001400" -County and PUMA "G5500790, G55040101" -County and PUMA "G5500790, G55040301" -County and PUMA "G5500790, G55040701" -County and PUMA "G5500790, G55041001" -County and PUMA "G5500790, G55041002" -County and PUMA "G5500790, G55041003" -County and PUMA "G5500790, G55041004" -County and PUMA "G5500790, G55041005" -County and PUMA "G5500810, G55000700" -County and PUMA "G5500830, G55001300" -County and PUMA "G5500850, G55000600" -County and PUMA "G5500870, G55001500" -County and PUMA "G5500890, G55020000" -County and PUMA "G5500910, G55000700" -County and PUMA "G5500930, G55000700" -County and PUMA "G5500950, G55055101" -County and PUMA "G5500970, G55001601" -County and PUMA "G5500990, G55000100" -County and PUMA "G5501010, G55030000" -County and PUMA "G5501030, G55000800" -County and PUMA "G5501050, G55002400" -County and PUMA "G5501070, G55000100" -County and PUMA "G5501090, G55055102" -County and PUMA "G5501110, G55001000" -County and PUMA "G5501130, G55000100" -County and PUMA "G5501150, G55001400" -County and PUMA "G5501170, G55002500" -County and PUMA "G5501190, G55000100" -County and PUMA "G5501210, G55000700" -County and PUMA "G5501230, G55000700" -County and PUMA "G5501250, G55000600" -County and PUMA "G5501270, G55050000" -County and PUMA "G5501290, G55000100" -County and PUMA "G5501310, G55020000" -County and PUMA "G5501330, G55070101" -County and PUMA "G5501330, G55070201" -County and PUMA "G5501330, G55070301" -County and PUMA "G5501350, G55001400" -County and PUMA "G5501370, G55001400" -County and PUMA "G5501390, G55001501" -County and PUMA "G5501410, G55001601" -County and PUMA "G5600010, G56000300" -County and PUMA "G5600030, G56000100" -County and PUMA "G5600050, G56000200" -County and PUMA "G5600070, G56000400" -County and PUMA "G5600090, G56000400" -County and PUMA "G5600110, G56000200" -County and PUMA "G5600130, G56000500" -County and PUMA "G5600150, G56000200" -County and PUMA "G5600170, G56000500" -County and PUMA "G5600190, G56000200" -County and PUMA "G5600210, G56000300" -County and PUMA "G5600230, G56000100" -County and PUMA "G5600250, G56000400" -County and PUMA "G5600270, G56000200" -County and PUMA "G5600290, G56000100" -County and PUMA "G5600310, G56000200" -County and PUMA "G5600330, G56000100" -County and PUMA "G5600350, G56000500" -County and PUMA "G5600370, G56000500" -County and PUMA "G5600390, G56000100" -County and PUMA "G5600410, G56000500" -County and PUMA "G5600430, G56000200" -County and PUMA "G5600450, G56000200" -County and PUMA "G7200010, G72000401" -County and PUMA "G7200030, G72000101" -County and PUMA "G7200050, G72000102" -County and PUMA "G7200070, G72000602" -County and PUMA "G7200090, G72000602" -County and PUMA "G7200110, G72000101" -County and PUMA "G7200130, G72000301" -County and PUMA "G7200150, G72000701" -County and PUMA "G7200170, G72000301" -County and PUMA "G7200190, G72000601" -County and PUMA "G7200210, G72000801" -County and PUMA "G7200210, G72000802" -County and PUMA "G7200230, G72000201" -County and PUMA "G7200250, G72001001" -County and PUMA "G7200270, G72000302" -County and PUMA "G7200290, G72000902" -County and PUMA "G7200310, G72000901" -County and PUMA "G7200310, G72000902" -County and PUMA "G7200330, G72000803" -County and PUMA "G7200350, G72000602" -County and PUMA "G7200370, G72001101" -County and PUMA "G7200390, G72000501" -County and PUMA "G7200410, G72000602" -County and PUMA "G7200430, G72000403" -County and PUMA "G7200450, G72000601" -County and PUMA "G7200470, G72000601" -County and PUMA "G7200490, G72001101" -County and PUMA "G7200510, G72000502" -County and PUMA "G7200530, G72001101" -County and PUMA "G7200540, G72000301" -County and PUMA "G7200550, G72000401" -County and PUMA "G7200570, G72000701" -County and PUMA "G7200590, G72000401" -County and PUMA "G7200610, G72000803" -County and PUMA "G7200630, G72001002" -County and PUMA "G7200650, G72000302" -County and PUMA "G7200670, G72000202" -County and PUMA "G7200690, G72001102" -County and PUMA "G7200710, G72000102" -County and PUMA "G7200730, G72000402" -County and PUMA "G7200750, G72000403" -County and PUMA "G7200770, G72001002" -County and PUMA "G7200790, G72000201" -County and PUMA "G7200810, G72000302" -County and PUMA "G7200830, G72000202" -County and PUMA "G7200850, G72001002" -County and PUMA "G7200870, G72000902" -County and PUMA "G7200890, G72001101" -County and PUMA "G7200910, G72000501" -County and PUMA "G7200930, G72000202" -County and PUMA "G7200950, G72000701" -County and PUMA "G7200970, G72000202" -County and PUMA "G7200990, G72000101" -County and PUMA "G7201010, G72000501" -County and PUMA "G7201030, G72001102" -County and PUMA "G7201050, G72000601" -County and PUMA "G7201070, G72000601" -County and PUMA "G7201090, G72000701" -County and PUMA "G7201110, G72000401" -County and PUMA "G7201130, G72000402" -County and PUMA "G7201150, G72000102" -County and PUMA "G7201170, G72000101" -County and PUMA "G7201190, G72001101" -County and PUMA "G7201210, G72000201" -County and PUMA "G7201230, G72000701" -County and PUMA "G7201250, G72000201" -County and PUMA "G7201270, G72000804" -County and PUMA "G7201270, G72000805" -County and PUMA "G7201270, G72000806" -County and PUMA "G7201290, G72001002" -County and PUMA "G7201310, G72000101" -County and PUMA "G7201330, G72000403" -County and PUMA "G7201350, G72000503" -County and PUMA "G7201370, G72000502" -County and PUMA "G7201390, G72000902" -County and PUMA "G7201410, G72000302" -County and PUMA "G7201430, G72000503" -County and PUMA "G7201450, G72000501" -County and PUMA "G7201470, G72001101" -County and PUMA "G7201490, G72000403" -County and PUMA "G7201510, G72001102" -County and PUMA "G7201530, G72000401" -Custom State AK -Custom State Others -Dehumidifier "65 pints/day, 50% RH" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=1.8 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 -Dehumidifier "65 pints/day, 50% RH, 2.0 EF" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=2 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 -Dehumidifier "65 pints/day, 60% RH" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=1.8 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.6 dehumidifier_fraction_dehumidification_load_served=1 -Dehumidifier None ResStockArguments dehumidifier_type=none dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=0 dehumidifier_capacity=40 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 -Dishwasher 144 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=144 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=13 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 199 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=199 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=18 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 220 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=220 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=19 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 255 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=255 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=21 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 270 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=270 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=22 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 290 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=290 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=23 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 318 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=318 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=25 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher None ResStockArguments dishwasher_present=false dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=0 dishwasher_label_electric_rate=0 dishwasher_label_gas_rate=0 dishwasher_label_annual_gas_cost=0 dishwasher_label_usage=0 dishwasher_place_setting_capacity=0 -Dishwasher Void -Dishwasher Usage Level 100% Usage ResStockArguments dishwasher_usage_multiplier=1.0 -Dishwasher Usage Level 120% Usage ResStockArguments dishwasher_usage_multiplier=1.2 -Dishwasher Usage Level 80% Usage ResStockArguments dishwasher_usage_multiplier=0.8 -Door Area 20 ft^2 ResStockArguments door_area=20 -Door Area 30 ft^2 ResStockArguments door_area=30 -Door Area 40 ft^2 ResStockArguments door_area=40 -Doors Fiberglass ResStockArguments door_rvalue=5 -Doors Steel ResStockArguments door_rvalue=5 -Doors Wood ResStockArguments door_rvalue=2.1 -Duct Leakage and Insulation "0% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0 ducts_return_leakage_to_outside_value=0 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "10% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "10% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "10% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "10% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "14% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "14% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "14% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "14% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "15% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "15% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "15% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "15% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "20% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "20% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "20% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "20% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "22.5% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "22.5% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "22.5% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "22.5% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "24% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "24% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "24% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "24% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "30% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "30% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "30% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "30% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "34% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "34% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "34% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "34% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "53% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "53% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "53% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "53% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "6% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "6% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "6% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "6% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "7.5% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "7.5% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "7.5% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "7.5% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "85% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "85% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "85% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "85% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation None ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0 ducts_return_leakage_to_outside_value=0 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Location Attic ResStockArguments ducts_supply_location=attic ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=attic ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location Crawlspace ResStockArguments ducts_supply_location=crawlspace ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=crawlspace ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location Garage ResStockArguments ducts_supply_location=garage ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=garage ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location Heated Basement ResStockArguments ducts_supply_location=basement - conditioned ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=basement - conditioned ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location Living Space ResStockArguments ducts_supply_location=conditioned space ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=conditioned space ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location None ResStockArguments ducts_supply_location=conditioned space ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=conditioned space ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=0 -Duct Location Unheated Basement ResStockArguments ducts_supply_location=basement - unconditioned ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=basement - unconditioned ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Eaves 1 ft ResStockArguments geometry_eaves_depth=1 -Eaves 2 ft ResStockArguments geometry_eaves_depth=2 -Eaves 3 ft ResStockArguments geometry_eaves_depth=3 -Eaves None ResStockArguments geometry_eaves_depth=0 -Electric Vehicle "EV, 4000 miles, 0.3 kWh/mi" ResStockArguments misc_plug_loads_vehicle_present=true misc_plug_loads_vehicle_annual_kwh=1481 misc_plug_loads_vehicle_usage_multiplier=1.0 misc_plug_loads_vehicle_2_usage_multiplier=1.0 -Electric Vehicle "EV, 5000 miles, 0.3 kWh/mi" ResStockArguments misc_plug_loads_vehicle_present=true misc_plug_loads_vehicle_annual_kwh=1852 misc_plug_loads_vehicle_usage_multiplier=1.0 misc_plug_loads_vehicle_2_usage_multiplier=1.0 -Electric Vehicle None ResStockArguments misc_plug_loads_vehicle_present=false misc_plug_loads_vehicle_annual_kwh=0 misc_plug_loads_vehicle_usage_multiplier=0 misc_plug_loads_vehicle_2_usage_multiplier=0 -Energystar Climate Zone 2023 North-Central -Energystar Climate Zone 2023 Northern -Energystar Climate Zone 2023 South-Central -Energystar Climate Zone 2023 Southern -Energystar Climate Zone 2023 Void -Federal Poverty Level 0-100% -Federal Poverty Level 100-150% -Federal Poverty Level 150-200% -Federal Poverty Level 200-300% -Federal Poverty Level 300-400% -Federal Poverty Level 400%+ -Federal Poverty Level Not Available -Generation And Emissions Assessment Region AZNMc -Generation And Emissions Assessment Region CAMXc -Generation And Emissions Assessment Region ERCTc -Generation And Emissions Assessment Region FRCCc -Generation And Emissions Assessment Region MROEc -Generation And Emissions Assessment Region MROWc -Generation And Emissions Assessment Region NEWEc -Generation And Emissions Assessment Region NWPPc -Generation And Emissions Assessment Region NYSTc -Generation And Emissions Assessment Region None -Generation And Emissions Assessment Region RFCEc -Generation And Emissions Assessment Region RFCMc -Generation And Emissions Assessment Region RFCWc -Generation And Emissions Assessment Region RMPAc -Generation And Emissions Assessment Region SPNOc -Generation And Emissions Assessment Region SPSOc -Generation And Emissions Assessment Region SRMVc -Generation And Emissions Assessment Region SRMWc -Generation And Emissions Assessment Region SRSOc -Generation And Emissions Assessment Region SRTVc -Generation And Emissions Assessment Region SRVCc -Geometry Attic Type Finished Attic or Cathedral Ceilings ResStockArguments geometry_attic_type=ConditionedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 -Geometry Attic Type None ResStockArguments geometry_attic_type=FlatRoof geometry_roof_type=gable geometry_roof_pitch=6:12 -Geometry Attic Type Unvented Attic ResStockArguments geometry_attic_type=UnventedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 -Geometry Attic Type Vented Attic ResStockArguments geometry_attic_type=VentedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 -Geometry Building Horizontal Location MF Left ResStockArguments geometry_unit_horizontal_location=Left -Geometry Building Horizontal Location MF Middle ResStockArguments geometry_unit_horizontal_location=Middle -Geometry Building Horizontal Location MF None -Geometry Building Horizontal Location MF Not Applicable ResStockArguments geometry_unit_horizontal_location=None -Geometry Building Horizontal Location MF Right ResStockArguments geometry_unit_horizontal_location=Right -Geometry Building Horizontal Location SFA Left ResStockArguments geometry_unit_horizontal_location=Left -Geometry Building Horizontal Location SFA Middle ResStockArguments geometry_unit_horizontal_location=Middle -Geometry Building Horizontal Location SFA None -Geometry Building Horizontal Location SFA Right ResStockArguments geometry_unit_horizontal_location=Right -Geometry Building Level MF Bottom ResStockArguments geometry_unit_level=Bottom -Geometry Building Level MF Middle ResStockArguments geometry_unit_level=Middle -Geometry Building Level MF None -Geometry Building Level MF Top ResStockArguments geometry_unit_level=Top -Geometry Building Number Units MF 10 ResStockArguments geometry_building_num_units=10 -Geometry Building Number Units MF 102 ResStockArguments geometry_building_num_units=102 -Geometry Building Number Units MF 11 ResStockArguments geometry_building_num_units=11 -Geometry Building Number Units MF 116 ResStockArguments geometry_building_num_units=116 -Geometry Building Number Units MF 12 ResStockArguments geometry_building_num_units=12 -Geometry Building Number Units MF 13 ResStockArguments geometry_building_num_units=13 -Geometry Building Number Units MF 14 ResStockArguments geometry_building_num_units=14 -Geometry Building Number Units MF 15 ResStockArguments geometry_building_num_units=15 -Geometry Building Number Units MF 16 ResStockArguments geometry_building_num_units=16 -Geometry Building Number Units MF 17 ResStockArguments geometry_building_num_units=17 -Geometry Building Number Units MF 18 ResStockArguments geometry_building_num_units=18 -Geometry Building Number Units MF 183 ResStockArguments geometry_building_num_units=183 -Geometry Building Number Units MF 19 ResStockArguments geometry_building_num_units=19 -Geometry Building Number Units MF 2 ResStockArguments geometry_building_num_units=2 -Geometry Building Number Units MF 20 ResStockArguments geometry_building_num_units=20 -Geometry Building Number Units MF 21 ResStockArguments geometry_building_num_units=21 -Geometry Building Number Units MF 24 ResStockArguments geometry_building_num_units=24 -Geometry Building Number Units MF 3 ResStockArguments geometry_building_num_units=3 -Geometry Building Number Units MF 30 ResStockArguments geometry_building_num_units=30 -Geometry Building Number Units MF 323 ResStockArguments geometry_building_num_units=323 -Geometry Building Number Units MF 326 ResStockArguments geometry_building_num_units=326 -Geometry Building Number Units MF 36 ResStockArguments geometry_building_num_units=36 -Geometry Building Number Units MF 4 ResStockArguments geometry_building_num_units=4 -Geometry Building Number Units MF 43 ResStockArguments geometry_building_num_units=43 -Geometry Building Number Units MF 5 ResStockArguments geometry_building_num_units=5 -Geometry Building Number Units MF 6 ResStockArguments geometry_building_num_units=6 -Geometry Building Number Units MF 67 ResStockArguments geometry_building_num_units=67 -Geometry Building Number Units MF 7 ResStockArguments geometry_building_num_units=7 -Geometry Building Number Units MF 8 ResStockArguments geometry_building_num_units=8 -Geometry Building Number Units MF 9 ResStockArguments geometry_building_num_units=9 -Geometry Building Number Units MF None -Geometry Building Number Units SFA 10 ResStockArguments geometry_building_num_units=10 -Geometry Building Number Units SFA 12 ResStockArguments geometry_building_num_units=12 -Geometry Building Number Units SFA 144 ResStockArguments geometry_building_num_units=144 -Geometry Building Number Units SFA 15 ResStockArguments geometry_building_num_units=15 -Geometry Building Number Units SFA 16 ResStockArguments geometry_building_num_units=16 -Geometry Building Number Units SFA 2 ResStockArguments geometry_building_num_units=2 -Geometry Building Number Units SFA 20 ResStockArguments geometry_building_num_units=20 -Geometry Building Number Units SFA 24 ResStockArguments geometry_building_num_units=24 -Geometry Building Number Units SFA 3 ResStockArguments geometry_building_num_units=3 -Geometry Building Number Units SFA 30 ResStockArguments geometry_building_num_units=30 -Geometry Building Number Units SFA 36 ResStockArguments geometry_building_num_units=36 -Geometry Building Number Units SFA 4 ResStockArguments geometry_building_num_units=4 -Geometry Building Number Units SFA 5 ResStockArguments geometry_building_num_units=5 -Geometry Building Number Units SFA 50 ResStockArguments geometry_building_num_units=50 -Geometry Building Number Units SFA 6 ResStockArguments geometry_building_num_units=6 -Geometry Building Number Units SFA 60 ResStockArguments geometry_building_num_units=60 -Geometry Building Number Units SFA 7 ResStockArguments geometry_building_num_units=7 -Geometry Building Number Units SFA 8 ResStockArguments geometry_building_num_units=8 -Geometry Building Number Units SFA 9 ResStockArguments geometry_building_num_units=9 -Geometry Building Number Units SFA 90 ResStockArguments geometry_building_num_units=90 -Geometry Building Number Units SFA None -Geometry Building Type ACS 10 to 19 Unit -Geometry Building Type ACS 2 Unit -Geometry Building Type ACS 20 to 49 Unit -Geometry Building Type ACS 3 or 4 Unit -Geometry Building Type ACS 5 to 9 Unit -Geometry Building Type ACS 50 or more Unit -Geometry Building Type ACS Mobile Home -Geometry Building Type ACS Single-Family Attached -Geometry Building Type ACS Single-Family Detached -Geometry Building Type Height "Multifamily with 5+ units, 1-3 stories" -Geometry Building Type Height "Multifamily with 5+ units, 4-7 stories" -Geometry Building Type Height "Multifamily with 5+ units, 8+ stories" -Geometry Building Type Height Mobile Home -Geometry Building Type Height Multifamily with 2-4 Units -Geometry Building Type Height Single-Family Attached -Geometry Building Type Height Single-Family Detached -Geometry Building Type RECS Mobile Home ResStockArguments geometry_unit_type=manufactured home geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=1.8 -Geometry Building Type RECS Multi-Family with 2 - 4 Units ResStockArguments geometry_unit_type=apartment unit geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 -Geometry Building Type RECS Multi-Family with 5+ Units ResStockArguments geometry_unit_type=apartment unit geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 -Geometry Building Type RECS Single-Family Attached ResStockArguments geometry_unit_type=single-family attached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 -Geometry Building Type RECS Single-Family Detached ResStockArguments geometry_unit_type=single-family detached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=1.8 -Geometry Floor Area 0-499 ResStockArguments geometry_unit_cfa_bin=0-499 geometry_unit_cfa=auto geometry_garage_protrusion=0.72 -Geometry Floor Area 1000-1499 ResStockArguments geometry_unit_cfa_bin=1000-1499 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 1500-1999 ResStockArguments geometry_unit_cfa_bin=1500-1999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 2000-2499 ResStockArguments geometry_unit_cfa_bin=2000-2499 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 2500-2999 ResStockArguments geometry_unit_cfa_bin=2500-2999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 3000-3999 ResStockArguments geometry_unit_cfa_bin=3000-3999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 4000+ ResStockArguments geometry_unit_cfa_bin=4000+ geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 500-749 ResStockArguments geometry_unit_cfa_bin=500-749 geometry_unit_cfa=auto geometry_garage_protrusion=0.75 -Geometry Floor Area 750-999 ResStockArguments geometry_unit_cfa_bin=750-999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area Bin 0-1499 -Geometry Floor Area Bin 1500-2499 -Geometry Floor Area Bin 2500-3999 -Geometry Floor Area Bin 4000+ -Geometry Foundation Type Ambient ResStockArguments geometry_foundation_type=Ambient geometry_foundation_height=4 geometry_foundation_height_above_grade=4 geometry_rim_joist_height=0 -Geometry Foundation Type Conditioned Crawlspace ResStockArguments geometry_foundation_type=ConditionedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Foundation Type Heated Basement ResStockArguments geometry_foundation_type=ConditionedBasement geometry_foundation_height=8 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Foundation Type Slab ResStockArguments geometry_foundation_type=SlabOnGrade geometry_foundation_height=0 geometry_foundation_height_above_grade=0 geometry_rim_joist_height=0 -Geometry Foundation Type Unheated Basement ResStockArguments geometry_foundation_type=UnconditionedBasement geometry_foundation_height=8 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Foundation Type Unvented Crawlspace ResStockArguments geometry_foundation_type=UnventedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Foundation Type Vented Crawlspace ResStockArguments geometry_foundation_type=VentedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Garage 1 Car ResStockArguments geometry_garage_width=12 geometry_garage_depth=24 geometry_garage_position=Right -Geometry Garage 2 Car ResStockArguments geometry_garage_width=24 geometry_garage_depth=24 geometry_garage_position=Right -Geometry Garage 3 Car ResStockArguments geometry_garage_width=36 geometry_garage_depth=24 geometry_garage_position=Right -Geometry Garage None ResStockArguments geometry_garage_width=0 geometry_garage_depth=24 geometry_garage_position=Right -Geometry Heated Basement No -Geometry Heated Basement Yes -Geometry Number Units ACS bins 10 to 19 Units -Geometry Number Units ACS bins 20 to 49 Units -Geometry Number Units ACS bins 5 to 9 Units -Geometry Number Units ACS bins 50 or more -Geometry Number Units ACS bins <5 -Geometry Space Combination "Mobile Home, Ambient, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Slab, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Slab, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage" -Geometry Space Combination Void -Geometry Stories 1 ResStockArguments geometry_num_floors_above_grade=1 -Geometry Stories 10 ResStockArguments geometry_num_floors_above_grade=10 -Geometry Stories 11 ResStockArguments geometry_num_floors_above_grade=11 -Geometry Stories 12 ResStockArguments geometry_num_floors_above_grade=12 -Geometry Stories 13 ResStockArguments geometry_num_floors_above_grade=13 -Geometry Stories 14 ResStockArguments geometry_num_floors_above_grade=14 -Geometry Stories 15 ResStockArguments geometry_num_floors_above_grade=15 -Geometry Stories 2 ResStockArguments geometry_num_floors_above_grade=2 -Geometry Stories 20 ResStockArguments geometry_num_floors_above_grade=20 -Geometry Stories 21 ResStockArguments geometry_num_floors_above_grade=21 -Geometry Stories 3 ResStockArguments geometry_num_floors_above_grade=3 -Geometry Stories 35 ResStockArguments geometry_num_floors_above_grade=35 -Geometry Stories 4 ResStockArguments geometry_num_floors_above_grade=4 -Geometry Stories 5 ResStockArguments geometry_num_floors_above_grade=5 -Geometry Stories 6 ResStockArguments geometry_num_floors_above_grade=6 -Geometry Stories 7 ResStockArguments geometry_num_floors_above_grade=7 -Geometry Stories 8 ResStockArguments geometry_num_floors_above_grade=8 -Geometry Stories 9 ResStockArguments geometry_num_floors_above_grade=9 -Geometry Stories Low Rise 1 -Geometry Stories Low Rise 2 -Geometry Stories Low Rise 3 -Geometry Stories Low Rise 4+ -Geometry Story Bin 8+ -Geometry Story Bin <8 -Geometry Wall Exterior Finish "Aluminum, Light" ResStockArguments wall_siding_type=aluminum siding wall_color=light exterior_finish_r=0.6 -Geometry Wall Exterior Finish "Brick, Light" ResStockArguments wall_siding_type=brick veneer wall_color=light exterior_finish_r=0.7 -Geometry Wall Exterior Finish "Brick, Medium/Dark" ResStockArguments wall_siding_type=brick veneer wall_color=medium dark exterior_finish_r=0.7 -Geometry Wall Exterior Finish "Fiber-Cement, Light" ResStockArguments wall_siding_type=fiber cement siding wall_color=light exterior_finish_r=0.2 -Geometry Wall Exterior Finish "Shingle, Asbestos, Medium" ResStockArguments wall_siding_type=asbestos siding wall_color=medium exterior_finish_r=0.6 -Geometry Wall Exterior Finish "Shingle, Composition, Medium" ResStockArguments wall_siding_type=composite shingle siding wall_color=medium exterior_finish_r=0.6 -Geometry Wall Exterior Finish "Stucco, Light" ResStockArguments wall_siding_type=stucco wall_color=light exterior_finish_r=0.2 -Geometry Wall Exterior Finish "Stucco, Medium/Dark" ResStockArguments wall_siding_type=stucco wall_color=medium dark exterior_finish_r=0.2 -Geometry Wall Exterior Finish "Vinyl, Light" ResStockArguments wall_siding_type=vinyl siding wall_color=light exterior_finish_r=0.6 -Geometry Wall Exterior Finish "Wood, Medium/Dark" ResStockArguments wall_siding_type=wood siding wall_color=medium dark exterior_finish_r=1.4 -Geometry Wall Exterior Finish None ResStockArguments wall_siding_type=none wall_color=medium exterior_finish_r=0 -Geometry Wall Type Brick -Geometry Wall Type Concrete -Geometry Wall Type Steel Frame -Geometry Wall Type Void -Geometry Wall Type Wood Frame -Ground Thermal Conductivity 0.5 ResStockArguments site_ground_conductivity=0.5 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 0.8 ResStockArguments site_ground_conductivity=0.8 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 1.1 ResStockArguments site_ground_conductivity=1.1 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 1.4 ResStockArguments site_ground_conductivity=1.4 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 1.7 ResStockArguments site_ground_conductivity=1.7 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 2.0 ResStockArguments site_ground_conductivity=2.0 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 2.3 ResStockArguments site_ground_conductivity=2.3 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 2.6 ResStockArguments site_ground_conductivity=2.6 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -HVAC Cooling Autosizing Factor 40% Oversized ResStockArguments cooling_system_cooling_autosizing_factor=1.4 heat_pump_cooling_autosizing_factor=auto -HVAC Cooling Autosizing Factor None -HVAC Cooling Efficiency "AC, SEER 10" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=10 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 13" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 14" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=14 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 15" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=15 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 18" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=18 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 24.5" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=24.5 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 8" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=8 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "Room AC, EER 10.7" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=10.7 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "Room AC, EER 12.0" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=12 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "Room AC, EER 8.5" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=8.5 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "Room AC, EER 9.8" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=9.8 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency Ducted Heat Pump ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency Evaporative Cooler ResStockArguments cooling_system_type=evaporative cooler cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency Non-Ducted Heat Pump ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency None ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency Shared Cooling -HVAC Cooling Partial Space Conditioning 100% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=1 -HVAC Cooling Partial Space Conditioning 20% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.2 -HVAC Cooling Partial Space Conditioning 40% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.4 -HVAC Cooling Partial Space Conditioning 60% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.6 -HVAC Cooling Partial Space Conditioning 80% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.8 -HVAC Cooling Partial Space Conditioning <10% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.1 -HVAC Cooling Partial Space Conditioning None ResStockArguments cooling_system_fraction_cool_load_served=0 -HVAC Cooling Partial Space Conditioning Void -HVAC Cooling Type Central AC -HVAC Cooling Type Ducted Heat Pump -HVAC Cooling Type Evaporative or Swamp Cooler -HVAC Cooling Type Non-Ducted Heat Pump -HVAC Cooling Type None -HVAC Cooling Type Room AC -HVAC Detailed Performance Data Default ResStockArguments hvac_perf_data_capacity_type=auto hvac_perf_data_heating_outdoor_temperatures=auto hvac_perf_data_heating_min_speed_capacities=auto hvac_perf_data_heating_max_speed_capacities=auto hvac_perf_data_heating_min_speed_cops=auto hvac_perf_data_heating_max_speed_cops=auto hvac_perf_data_cooling_outdoor_temperatures=auto hvac_perf_data_cooling_min_speed_capacities=auto hvac_perf_data_cooling_max_speed_capacities=auto hvac_perf_data_cooling_min_speed_cops=auto hvac_perf_data_cooling_max_speed_cops=auto -HVAC Has Ducts No ResStockArguments hvac_blower_fan_watts_per_cfm=auto -HVAC Has Ducts Void -HVAC Has Ducts Yes ResStockArguments hvac_blower_fan_watts_per_cfm=auto -HVAC Has Shared System Cooling Only -HVAC Has Shared System Heating Only -HVAC Has Shared System Heating and Cooling -HVAC Has Shared System None -HVAC Has Shared System Void -HVAC Has Zonal Electric Heating No -HVAC Has Zonal Electric Heating Yes -HVAC Heating Autosizing Factor 40% Oversized ResStockArguments heating_system_heating_autosizing_factor=1.4 heating_system_2_heating_autosizing_factor=auto heat_pump_heating_autosizing_factor=auto heat_pump_backup_heating_autosizing_factor=auto -HVAC Heating Autosizing Factor None -HVAC Heating Efficiency "ASHP, SEER 10, 6.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=6.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 10.3, 7.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 11.5, 7.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=11.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 13, 7.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=13 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 13, 8.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=13 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 14, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 14.3, 8.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 15, 8.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 15, 9.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 16, 9.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 17, 8.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 18, 9.3 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 22, 10 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=10 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=22 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 14, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Electric Baseboard, 100% Efficiency" ResStockArguments heating_system_type=ElectricResistance heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Electric Boiler, 100% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Electric Furnace, 100% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Electric Wall Furnace, 100% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 72% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.72 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.76 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.8 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 82% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.82 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 85% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.85 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.9 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 95% AFUE, OAT Reset" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.95 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 96% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.96 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 60% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.6 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 68% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.68 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 72% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.72 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 76% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.76 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 80% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.8 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 85% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.85 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 90% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.9 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 92.5% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.925 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 96% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.96 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Wall/Floor Furnace, 60% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=0.6 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Wall/Floor Furnace, 68% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=0.68 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "GSHP, EER 16.6, COP 3.6" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=3.6 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=16.6 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=vertical geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "GSHP, EER 20.2, COP 4.2" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=4.2 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=20.2 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=vertical geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 14.5, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 14.5, 8.2 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 17, 9.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 17, 9.5 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 18.0, 9.6 HSPF, 60% Conditioned" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.6 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=0.6 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=0.6 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 18.0, 9.6 HSPF, 60% Conditioned, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.6 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=0.6 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=0.6 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 25, 12.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=12.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=25.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 25, 12.7 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=12.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=25.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 29.3, 14 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=14 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=29.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 29.3, 14 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=14 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=29.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 33, 13.3 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=13.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=33.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 33, 13.3 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=13.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=33.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency None ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=6.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency Shared Heating -HVAC Heating Efficiency Void -HVAC Heating Type Ducted Heat Pump -HVAC Heating Type Ducted Heating -HVAC Heating Type Non-Ducted Heat Pump -HVAC Heating Type Non-Ducted Heating -HVAC Heating Type None -HVAC Heating Type And Fuel Electricity ASHP -HVAC Heating Type And Fuel Electricity Baseboard -HVAC Heating Type And Fuel Electricity Electric Boiler -HVAC Heating Type And Fuel Electricity Electric Furnace -HVAC Heating Type And Fuel Electricity Electric Wall Furnace -HVAC Heating Type And Fuel Electricity MSHP -HVAC Heating Type And Fuel Electricity Other -HVAC Heating Type And Fuel Electricity Shared Heating -HVAC Heating Type And Fuel Fuel Oil Fuel Boiler -HVAC Heating Type And Fuel Fuel Oil Fuel Furnace -HVAC Heating Type And Fuel Fuel Oil Fuel Wall/Floor Furnace -HVAC Heating Type And Fuel Fuel Oil Shared Heating -HVAC Heating Type And Fuel Natural Gas Fuel Boiler -HVAC Heating Type And Fuel Natural Gas Fuel Furnace -HVAC Heating Type And Fuel Natural Gas Fuel Wall/Floor Furnace -HVAC Heating Type And Fuel Natural Gas Shared Heating -HVAC Heating Type And Fuel None -HVAC Heating Type And Fuel Other Fuel Fuel Boiler -HVAC Heating Type And Fuel Other Fuel Fuel Furnace -HVAC Heating Type And Fuel Other Fuel Fuel Wall/Floor Furnace -HVAC Heating Type And Fuel Other Fuel Shared Heating -HVAC Heating Type And Fuel Propane Fuel Boiler -HVAC Heating Type And Fuel Propane Fuel Furnace -HVAC Heating Type And Fuel Propane Fuel Wall/Floor Furnace -HVAC Heating Type And Fuel Propane Shared Heating -HVAC Heating Type And Fuel Void -HVAC Secondary Heating Efficiency "Electric Baseboard, 100% Efficiency" ResStockArguments heating_system_2_type=ElectricResistance heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Electric Portable Heater, 100% Efficiency" ResStockArguments heating_system_2_type=SpaceHeater heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Boiler, 60% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.76 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.8 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.90 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Boiler, 92.5% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.925 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Fireplace, 60% AFUE" ResStockArguments heating_system_2_type=Fireplace heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Furnace, 60% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Furnace, 76% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.76 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Furnace, 80% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.8 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Furnace, 92.5% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.925 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency None ResStockArguments heating_system_2_type=none heating_system_2_heating_efficiency=0 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency Shared Heating ResStockArguments heating_system_2_type=none heating_system_2_heating_efficiency=0 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency Void -HVAC Secondary Heating Fuel Electricity ResStockArguments heating_system_2_fuel=electricity -HVAC Secondary Heating Fuel Fuel Oil ResStockArguments heating_system_2_fuel=fuel oil -HVAC Secondary Heating Fuel Natural Gas ResStockArguments heating_system_2_fuel=natural gas -HVAC Secondary Heating Fuel None ResStockArguments heating_system_2_fuel=electricity -HVAC Secondary Heating Fuel Other Fuel ResStockArguments heating_system_2_fuel=wood -HVAC Secondary Heating Fuel Propane ResStockArguments heating_system_2_fuel=propane -HVAC Secondary Heating Fuel Wood ResStockArguments heating_system_2_fuel=wood -HVAC Secondary Heating Partial Space Conditioning 0% ResStockArguments heating_system_2_fraction_heat_load_served=0 -HVAC Secondary Heating Partial Space Conditioning 10% ResStockArguments heating_system_2_fraction_heat_load_served=0.1 -HVAC Secondary Heating Partial Space Conditioning 20% ResStockArguments heating_system_2_fraction_heat_load_served=0.2 -HVAC Secondary Heating Partial Space Conditioning 30% ResStockArguments heating_system_2_fraction_heat_load_served=0.3 -HVAC Secondary Heating Partial Space Conditioning 40% ResStockArguments heating_system_2_fraction_heat_load_served=0.4 -HVAC Secondary Heating Partial Space Conditioning 49% ResStockArguments heating_system_2_fraction_heat_load_served=0.49 -HVAC Secondary Heating Partial Space Conditioning None ResStockArguments heating_system_2_fraction_heat_load_served=0 -HVAC Secondary Heating Partial Space Conditioning Void -HVAC Secondary Heating Type Ducted Heating -HVAC Secondary Heating Type Non-Ducted Heating -HVAC Secondary Heating Type None -HVAC Shared Efficiencies "Boiler Baseboards Heating Only, Electricity" ResStockArguments heating_system_type=Shared Boiler w/ Baseboard heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Shared Efficiencies "Boiler Baseboards Heating Only, Fuel" ResStockArguments heating_system_type=Shared Boiler w/ Baseboard heating_system_heating_efficiency=0.78 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Shared Efficiencies "Fan Coil Heating and Cooling, Electricity" ResStockArguments heating_system_type=Shared Boiler w/ Ductless Fan Coil heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Shared Efficiencies "Fan Coil Heating and Cooling, Fuel" ResStockArguments heating_system_type=Shared Boiler w/ Ductless Fan Coil heating_system_heating_efficiency=0.78 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Shared Efficiencies Fan Coil Cooling Only ResStockArguments cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false -HVAC Shared Efficiencies None -HVAC Shared Efficiencies Void -HVAC System Is Faulted No -HVAC System Is Faulted Yes -HVAC System Is Scaled No -HVAC System Is Scaled Yes -HVAC System Single Speed AC Airflow 154.8 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=154.8 -HVAC System Single Speed AC Airflow 204.4 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=204.4 -HVAC System Single Speed AC Airflow 254.0 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=254.0 -HVAC System Single Speed AC Airflow 303.5 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=303.5 -HVAC System Single Speed AC Airflow 353.1 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=353.1 -HVAC System Single Speed AC Airflow 402.7 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=402.7 -HVAC System Single Speed AC Airflow 452.3 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=452.3 -HVAC System Single Speed AC Airflow 501.9 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=501.9 -HVAC System Single Speed AC Airflow 551.5 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=551.5 -HVAC System Single Speed AC Airflow 601.0 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=601.0 -HVAC System Single Speed AC Airflow 650.6 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=650.6 -HVAC System Single Speed AC Airflow 700.2 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=700.2 -HVAC System Single Speed AC Airflow None -HVAC System Single Speed AC Charge 0.570 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.570 -HVAC System Single Speed AC Charge 0.709 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.709 -HVAC System Single Speed AC Charge 0.848 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.848 -HVAC System Single Speed AC Charge 0.988 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.988 -HVAC System Single Speed AC Charge 1.127 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.127 -HVAC System Single Speed AC Charge 1.266 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.266 -HVAC System Single Speed AC Charge 1.405 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.405 -HVAC System Single Speed AC Charge None -HVAC System Single Speed ASHP Airflow 154.8 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=154.8 -HVAC System Single Speed ASHP Airflow 204.4 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=204.4 -HVAC System Single Speed ASHP Airflow 254.0 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=254.0 -HVAC System Single Speed ASHP Airflow 303.5 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=303.5 -HVAC System Single Speed ASHP Airflow 353.1 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=353.1 -HVAC System Single Speed ASHP Airflow 402.7 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=402.7 -HVAC System Single Speed ASHP Airflow 452.3 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=452.3 -HVAC System Single Speed ASHP Airflow 501.9 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=501.9 -HVAC System Single Speed ASHP Airflow 551.5 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=551.5 -HVAC System Single Speed ASHP Airflow 601.0 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=601.0 -HVAC System Single Speed ASHP Airflow 650.6 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=650.6 -HVAC System Single Speed ASHP Airflow 700.2 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=700.2 -HVAC System Single Speed ASHP Airflow None -HVAC System Single Speed ASHP Charge 0.570 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.570 -HVAC System Single Speed ASHP Charge 0.709 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.709 -HVAC System Single Speed ASHP Charge 0.848 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.848 -HVAC System Single Speed ASHP Charge 0.988 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.988 -HVAC System Single Speed ASHP Charge 1.127 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.127 -HVAC System Single Speed ASHP Charge 1.266 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.266 -HVAC System Single Speed ASHP Charge 1.405 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.405 -HVAC System Single Speed ASHP Charge None -Has PV No -Has PV Yes -Heat Pump Backup Use Existing System ResStockArguments heat_pump_backup_use_existing_system=true -Heating Fuel Electricity ResStockArguments heating_system_fuel=electricity -Heating Fuel Fuel Oil ResStockArguments heating_system_fuel=fuel oil -Heating Fuel Natural Gas ResStockArguments heating_system_fuel=natural gas -Heating Fuel None ResStockArguments heating_system_fuel=natural gas -Heating Fuel Other Fuel ResStockArguments heating_system_fuel=wood -Heating Fuel Propane ResStockArguments heating_system_fuel=propane -Heating Fuel Wood ResStockArguments heating_system_fuel=wood -Heating Setpoint 55F ResStockArguments hvac_control_heating_weekday_setpoint_temp=55 hvac_control_heating_weekend_setpoint_temp=55 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 60F ResStockArguments hvac_control_heating_weekday_setpoint_temp=60 hvac_control_heating_weekend_setpoint_temp=60 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 62F ResStockArguments hvac_control_heating_weekday_setpoint_temp=62 hvac_control_heating_weekend_setpoint_temp=62 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 63F ResStockArguments hvac_control_heating_weekday_setpoint_temp=63 hvac_control_heating_weekend_setpoint_temp=63 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 64F ResStockArguments hvac_control_heating_weekday_setpoint_temp=64 hvac_control_heating_weekend_setpoint_temp=64 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 65F ResStockArguments hvac_control_heating_weekday_setpoint_temp=65 hvac_control_heating_weekend_setpoint_temp=65 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 66F ResStockArguments hvac_control_heating_weekday_setpoint_temp=66 hvac_control_heating_weekend_setpoint_temp=66 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 67F ResStockArguments hvac_control_heating_weekday_setpoint_temp=67 hvac_control_heating_weekend_setpoint_temp=67 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 68F ResStockArguments hvac_control_heating_weekday_setpoint_temp=68 hvac_control_heating_weekend_setpoint_temp=68 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 69F ResStockArguments hvac_control_heating_weekday_setpoint_temp=69 hvac_control_heating_weekend_setpoint_temp=69 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 70F ResStockArguments hvac_control_heating_weekday_setpoint_temp=70 hvac_control_heating_weekend_setpoint_temp=70 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 71F ResStockArguments hvac_control_heating_weekday_setpoint_temp=71 hvac_control_heating_weekend_setpoint_temp=71 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 71F w/ Building America season ResStockArguments hvac_control_heating_weekday_setpoint_temp=71 hvac_control_heating_weekend_setpoint_temp=71 use_auto_heating_season=true hvac_control_heating_season_period=auto -Heating Setpoint 72F ResStockArguments hvac_control_heating_weekday_setpoint_temp=72 hvac_control_heating_weekend_setpoint_temp=72 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 73F ResStockArguments hvac_control_heating_weekday_setpoint_temp=73 hvac_control_heating_weekend_setpoint_temp=73 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 74F ResStockArguments hvac_control_heating_weekday_setpoint_temp=74 hvac_control_heating_weekend_setpoint_temp=74 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 75F ResStockArguments hvac_control_heating_weekday_setpoint_temp=75 hvac_control_heating_weekend_setpoint_temp=75 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 76F ResStockArguments hvac_control_heating_weekday_setpoint_temp=76 hvac_control_heating_weekend_setpoint_temp=76 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 78F ResStockArguments hvac_control_heating_weekday_setpoint_temp=78 hvac_control_heating_weekend_setpoint_temp=78 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 80F ResStockArguments hvac_control_heating_weekday_setpoint_temp=80 hvac_control_heating_weekend_setpoint_temp=80 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint Has Offset No -Heating Setpoint Has Offset Yes -Heating Setpoint Offset Magnitude 0F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=0 hvac_control_heating_weekend_setpoint_offset_magnitude=0 -Heating Setpoint Offset Magnitude 12F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=12 hvac_control_heating_weekend_setpoint_offset_magnitude=12 -Heating Setpoint Offset Magnitude 3F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=3 hvac_control_heating_weekend_setpoint_offset_magnitude=3 -Heating Setpoint Offset Magnitude 6F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=6 hvac_control_heating_weekend_setpoint_offset_magnitude=6 -Heating Setpoint Offset Period Day ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day and Night ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1" -Heating Setpoint Offset Period Day and Night +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1" -Heating Setpoint Offset Period Day and Night +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Heating Setpoint Offset Period Day and Night +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Heating Setpoint Offset Period Day and Night +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0" -Heating Setpoint Offset Period Day and Night +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0" -Heating Setpoint Offset Period Day and Night -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1" -Heating Setpoint Offset Period Day and Night -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1" -Heating Setpoint Offset Period Day and Night -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1" -Heating Setpoint Offset Period Day and Night -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1" -Heating Setpoint Offset Period Day and Night -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" -Heating Setpoint Offset Period Night ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" -Heating Setpoint Offset Period Night +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" -Heating Setpoint Offset Period Night +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Night +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Night +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Night +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Night -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" -Heating Setpoint Offset Period Night -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" -Heating Setpoint Offset Period Night -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" -Heating Setpoint Offset Period Night -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" -Heating Setpoint Offset Period Night -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" -Heating Setpoint Offset Period None ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Holiday Lighting No Exterior Use ResStockArguments holiday_lighting_present=false holiday_lighting_daily_kwh=0 holiday_lighting_period=auto -Holiday Lighting None ResStockArguments holiday_lighting_present=false holiday_lighting_daily_kwh=0 holiday_lighting_period=auto -Hot Water Distribution "R-2, Demand" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=presence sensor demand control hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Distribution "R-2, Timer" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=timer hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Distribution "R-5, Timer" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=timer hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=5 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Distribution R-2 ResStockArguments hot_water_distribution_system_type=Standard hot_water_distribution_standard_piping_length=auto hot_water_distribution_recirc_control_type=no control hot_water_distribution_recirc_piping_length=0 hot_water_distribution_recirc_branch_piping_length=0 hot_water_distribution_recirc_pump_power=0 hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Distribution Uninsulated ResStockArguments hot_water_distribution_system_type=Standard hot_water_distribution_standard_piping_length=auto hot_water_distribution_recirc_control_type=no control hot_water_distribution_recirc_piping_length=0 hot_water_distribution_recirc_branch_piping_length=0 hot_water_distribution_recirc_pump_power=0 hot_water_distribution_pipe_r=0 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Fixtures "100% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=1.0 -Hot Water Fixtures "200% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=2.0 -Hot Water Fixtures "50% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=0.5 -Hot Water Fixtures 100% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.0 -Hot Water Fixtures 110% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.1 -Hot Water Fixtures 120% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.2 -Hot Water Fixtures 130% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.3 -Hot Water Fixtures 140% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.4 -Hot Water Fixtures 150% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.5 -Hot Water Fixtures 160% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.6 -Hot Water Fixtures 170% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.7 -Hot Water Fixtures 180% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.8 -Hot Water Fixtures 190% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.9 -Hot Water Fixtures 200% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=2.0 -Hot Water Fixtures 40% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.4 -Hot Water Fixtures 50% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.5 -Hot Water Fixtures 60% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.6 -Hot Water Fixtures 70% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.7 -Hot Water Fixtures 80% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.8 -Hot Water Fixtures 90% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.9 -Household Has Tribal Persons No -Household Has Tribal Persons Not Available -Household Has Tribal Persons Yes -ISO RTO Region CAISO -ISO RTO Region ERCOT -ISO RTO Region MISO -ISO RTO Region NEISO -ISO RTO Region NYISO -ISO RTO Region None -ISO RTO Region PJM -ISO RTO Region SPP -Income 10000-14999 -Income 100000-119999 -Income 120000-139999 -Income 140000-159999 -Income 15000-19999 -Income 160000-179999 -Income 180000-199999 -Income 20000-24999 -Income 200000+ -Income 25000-29999 -Income 30000-34999 -Income 35000-39999 -Income 40000-44999 -Income 45000-49999 -Income 50000-59999 -Income 60000-69999 -Income 70000-79999 -Income 80000-99999 -Income <10000 -Income Not Available -Income RECS2015 100000-119999 -Income RECS2015 120000-139999 -Income RECS2015 140000+ -Income RECS2015 20000-39999 -Income RECS2015 40000-59999 -Income RECS2015 60000-79999 -Income RECS2015 80000-99999 -Income RECS2015 <20000 -Income RECS2015 Not Available -Income RECS2020 100000-149999 -Income RECS2020 150000+ -Income RECS2020 20000-39999 -Income RECS2020 40000-59999 -Income RECS2020 60000-99999 -Income RECS2020 <20000 -Income RECS2020 Not Available -Infiltration "7 ACH50, 0.5 Shelter Coefficient" ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 0.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 0.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 0.75 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.75 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 1 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=1 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 1.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=1.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 10 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=10 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 11.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=11.25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 15 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=15 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 18.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=18.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 2 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=2 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 2.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=2.25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 20 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=20 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 3 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=3 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 3.75 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=3.75 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 30 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=30 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 4 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=4 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 4.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=4.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 40 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=40 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 5.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=5.25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 50 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=50 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 6 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=6 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 7 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 7.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 8 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=8 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration Reduction 15% ResStockArguments air_leakage_percent_reduction=15 -Infiltration Reduction 20% ResStockArguments air_leakage_percent_reduction=20 -Infiltration Reduction 25% ResStockArguments air_leakage_percent_reduction=25 -Insulation Ceiling None ResStockArguments ceiling_assembly_r=0 ceiling_insulation_r=0 -Insulation Ceiling R-13 ResStockArguments ceiling_assembly_r=14.6 ceiling_insulation_r=13 -Insulation Ceiling R-19 ResStockArguments ceiling_assembly_r=20.6 ceiling_insulation_r=19 -Insulation Ceiling R-30 ResStockArguments ceiling_assembly_r=31.6 ceiling_insulation_r=30 -Insulation Ceiling R-38 ResStockArguments ceiling_assembly_r=39.6 ceiling_insulation_r=38 -Insulation Ceiling R-49 ResStockArguments ceiling_assembly_r=50.6 ceiling_insulation_r=49 -Insulation Ceiling R-60 ResStockArguments ceiling_assembly_r=61.6 ceiling_insulation_r=60 -Insulation Ceiling R-7 ResStockArguments ceiling_assembly_r=8.7 ceiling_insulation_r=7 -Insulation Ceiling Uninsulated ResStockArguments ceiling_assembly_r=2.1 ceiling_insulation_r=0 -Insulation Floor Ceiling R-13 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=17.8 floor_over_garage_assembly_r=17.8 -Insulation Floor Ceiling R-19 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=22.6 floor_over_garage_assembly_r=22.6 -Insulation Floor Ceiling R-30 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=30.3 floor_over_garage_assembly_r=30.3 -Insulation Floor Ceiling R-38 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=35.1 floor_over_garage_assembly_r=35.1 -Insulation Floor None ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=0 floor_over_garage_assembly_r=5.3 -Insulation Floor Uninsulated ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=5.3 floor_over_garage_assembly_r=5.3 -Insulation Foundation Wall "Wall R-10, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=10 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto -Insulation Foundation Wall "Wall R-13, Interior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=13 foundation_wall_insulation_location=interior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto -Insulation Foundation Wall "Wall R-15, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=15 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto -Insulation Foundation Wall "Wall R-5, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=5 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto -Insulation Foundation Wall None ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=0 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=0 foundation_wall_assembly_r=auto -Insulation Foundation Wall Uninsulated ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=0 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=0 foundation_wall_assembly_r=auto -Insulation Rim Joist "R-10, Exterior" ResStockArguments rim_joist_continuous_exterior_r=10 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Rim Joist "R-13, Interior" ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=13 rim_joist_assembly_interior_r=10.4 rim_joist_assembly_r=auto -Insulation Rim Joist "R-15, Exterior" ResStockArguments rim_joist_continuous_exterior_r=15 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Rim Joist "R-5, Exterior" ResStockArguments rim_joist_continuous_exterior_r=5 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Rim Joist None ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Rim Joist Uninsulated ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Roof "Finished, R-13" ResStockArguments roof_assembly_r=14.3 -Insulation Roof "Finished, R-19" ResStockArguments roof_assembly_r=21.2 -Insulation Roof "Finished, R-30" ResStockArguments roof_assembly_r=29.7 -Insulation Roof "Finished, R-38" ResStockArguments roof_assembly_r=36.5 -Insulation Roof "Finished, R-49" ResStockArguments roof_assembly_r=47.0 -Insulation Roof "Finished, R-7" ResStockArguments roof_assembly_r=10.2 -Insulation Roof "Finished, Uninsulated" ResStockArguments roof_assembly_r=3.7 -Insulation Roof "Unfinished, Uninsulated" ResStockArguments roof_assembly_r=2.3 -Insulation Sheathing R-10 ResStockArguments wall_continuous_exterior_r=10 -Insulation Sheathing R-15 ResStockArguments wall_continuous_exterior_r=15 -Insulation Sheathing R-5 ResStockArguments wall_continuous_exterior_r=5 -Insulation Slab "2ft R10 Perimeter, Vertical" ResStockArguments slab_perimeter_insulation_r=10 slab_perimeter_depth=2 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "2ft R10 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=10 slab_under_width=2 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "2ft R5 Perimeter, Vertical" ResStockArguments slab_perimeter_insulation_r=5 slab_perimeter_depth=2 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "2ft R5 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=5 slab_under_width=2 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "4ft R5 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=5 slab_under_width=4 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "R10 Whole Slab, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=10 slab_under_width=999 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab None ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab Uninsulated ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Wall "Brick, 12-in, 3-wythe, R-11" ResStockArguments wall_type=StructuralBrick wall_assembly_r=13.3 -Insulation Wall "Brick, 12-in, 3-wythe, R-15" ResStockArguments wall_type=StructuralBrick wall_assembly_r=15.9 -Insulation Wall "Brick, 12-in, 3-wythe, R-19" ResStockArguments wall_type=StructuralBrick wall_assembly_r=18.3 -Insulation Wall "Brick, 12-in, 3-wythe, R-7" ResStockArguments wall_type=StructuralBrick wall_assembly_r=10.3 -Insulation Wall "Brick, 12-in, 3-wythe, Uninsulated" ResStockArguments wall_type=StructuralBrick wall_assembly_r=4.9 -Insulation Wall "CMU, 12-in Hollow" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=4.9 -Insulation Wall "CMU, 12-in Hollow, R-10" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=12.9 -Insulation Wall "CMU, 6-in Concrete Filled" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=3.7 -Insulation Wall "CMU, 6-in Concrete-Filled, R-10" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=11.4 -Insulation Wall "CMU, 6-in Hollow, R-11" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=12.4 -Insulation Wall "CMU, 6-in Hollow, R-15" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=15 -Insulation Wall "CMU, 6-in Hollow, R-19" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=17.4 -Insulation Wall "CMU, 6-in Hollow, R-7" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=9.4 -Insulation Wall "CMU, 6-in Hollow, Uninsulated" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=4 -Insulation Wall "Double Wood Stud, R-33" ResStockArguments wall_type=DoubleWoodStud wall_assembly_r=28.1 -Insulation Wall "Double Wood Stud, R-45, Grade 3" ResStockArguments wall_type=DoubleWoodStud wall_assembly_r=25.1 -Insulation Wall "Generic, 10-in Grid ICF" ResStockArguments wall_type=WoodStud wall_assembly_r=12.4 -Insulation Wall "Generic, T-Mass Wall w/Metal Ties" ResStockArguments wall_type=WoodStud wall_assembly_r=9 -Insulation Wall "ICF, 2-in EPS, 12-in Concrete, 2-in EPS" ResStockArguments wall_type=InsulatedConcreteForms wall_assembly_r=22.5 -Insulation Wall "ICF, 2-in EPS, 4-in Concrete, 2-in EPS" ResStockArguments wall_type=InsulatedConcreteForms wall_assembly_r=20.4 -Insulation Wall "SIP, 3.6 in EPS Core, OSB int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=15.5 -Insulation Wall "SIP, 9.4 in EPS Core, Gypsum int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=35.8 -Insulation Wall "SIP, 9.4 in EPS Core, OSB int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=36 -Insulation Wall "Steel Stud, R-13" ResStockArguments wall_type=SteelFrame wall_assembly_r=7.9 -Insulation Wall "Steel Stud, R-25, Grade 3" ResStockArguments wall_type=SteelFrame wall_assembly_r=10.4 -Insulation Wall "Steel Stud, Uninsulated" ResStockArguments wall_type=SteelFrame wall_assembly_r=3 -Insulation Wall "Wood Stud, R-11" ResStockArguments wall_type=WoodStud wall_assembly_r=10.3 -Insulation Wall "Wood Stud, R-11, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=15.3 -Insulation Wall "Wood Stud, R-13" ResStockArguments wall_type=WoodStud wall_assembly_r=11.3 -Insulation Wall "Wood Stud, R-13, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=16.3 -Insulation Wall "Wood Stud, R-15" ResStockArguments wall_type=WoodStud wall_assembly_r=12.1 -Insulation Wall "Wood Stud, R-15, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=17.1 -Insulation Wall "Wood Stud, R-19" ResStockArguments wall_type=WoodStud wall_assembly_r=15.4 -Insulation Wall "Wood Stud, R-19, Grade 2" ResStockArguments wall_type=WoodStud wall_assembly_r=14.5 -Insulation Wall "Wood Stud, R-19, Grade 2, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=19.5 -Insulation Wall "Wood Stud, R-19, Grade 3" ResStockArguments wall_type=WoodStud wall_assembly_r=13.4 -Insulation Wall "Wood Stud, R-19, Grade 3, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=18.4 -Insulation Wall "Wood Stud, R-19, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=20.4 -Insulation Wall "Wood Stud, R-23 Closed Cell Spray Foam, 2x4, 16 in o.c." ResStockArguments wall_type=WoodStud wall_assembly_r=14.7 -Insulation Wall "Wood Stud, R-23 Closed Cell Spray Foam, 2x4, 16 in o.c., R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=19.7 -Insulation Wall "Wood Stud, R-36" ResStockArguments wall_type=WoodStud wall_assembly_r=22.3 -Insulation Wall "Wood Stud, R-36, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=27.3 -Insulation Wall "Wood Stud, R-7" ResStockArguments wall_type=WoodStud wall_assembly_r=8.7 -Insulation Wall "Wood Stud, R-7, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=13.7 -Insulation Wall "Wood Stud, Uninsulated" ResStockArguments wall_type=WoodStud wall_assembly_r=3.4 -Insulation Wall "Wood Stud, Uninsulated, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=8.4 -Insulation Wall Void -Interior Shading "Summer = 0.5, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.5 window_interior_shading_winter=0.7 -Interior Shading "Summer = 0.5, Winter = 0.95" ResStockArguments window_interior_shading_summer=0.5 window_interior_shading_winter=0.95 -Interior Shading "Summer = 0.6, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.6 window_interior_shading_winter=0.7 -Interior Shading "Summer = 0.7, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.7 -Interior Shading "Summer = 0.7, Winter = 0.85" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.85 -Interior Shading "Summer = 0.7, Winter = 0.95" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.95 -Lighting 100% CFL ResStockArguments lighting_present=true lighting_interior_fraction_cfl=1 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=1 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=1 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 -Lighting 100% Incandescent ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 -Lighting 100% LED ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=1 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=1 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=1 -Lighting 20% LED ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0.2 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0.2 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0.2 -Lighting 60% CFL ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0.6 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0.6 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0.6 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 -Lighting None ResStockArguments lighting_present=false lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 -Lighting Interior Use 100% Usage ResStockArguments lighting_interior_usage_multiplier=1.0 -Lighting Interior Use 95% Usage ResStockArguments lighting_interior_usage_multiplier=0.95 -Lighting Interior Use None ResStockArguments lighting_interior_usage_multiplier=0.0 -Lighting Other Use 100% Usage ResStockArguments lighting_exterior_usage_multiplier=1.0 lighting_garage_usage_multiplier=1.0 -Lighting Other Use 95% Usage ResStockArguments lighting_exterior_usage_multiplier=0.95 lighting_garage_usage_multiplier=0.95 -Lighting Other Use None ResStockArguments lighting_exterior_usage_multiplier=0.0 lighting_garage_usage_multiplier=0.0 -Location Region CR02 -Location Region CR03 -Location Region CR04 -Location Region CR05 -Location Region CR06 -Location Region CR07 -Location Region CR08 -Location Region CR09 -Location Region CR10 -Location Region CR11 -Location Region CRAK -Location Region CRHI -Mechanical Ventilation "ERV, 72%" ResStockArguments mech_vent_fan_type=energy recovery ventilator mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0.48 mech_vent_sensible_recovery_efficiency=0.72 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Mechanical Ventilation "HRV, 60%" ResStockArguments mech_vent_fan_type=heat recovery ventilator mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0.6 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Mechanical Ventilation Exhaust ResStockArguments mech_vent_fan_type=exhaust only mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Mechanical Ventilation None ResStockArguments mech_vent_fan_type=none mech_vent_flow_rate=0 mech_vent_hours_in_operation=0 mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=0 mech_vent_num_units_served=0 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Mechanical Ventilation Supply ResStockArguments mech_vent_fan_type=supply only mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Metropolitan and Micropolitan Statistical Area "Aberdeen, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Aberdeen, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Abilene, TX MSA" -Metropolitan and Micropolitan Statistical Area "Ada, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Adrian, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Akron, OH MSA" -Metropolitan and Micropolitan Statistical Area "Alamogordo, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Albany, GA MSA" -Metropolitan and Micropolitan Statistical Area "Albany, OR MSA" -Metropolitan and Micropolitan Statistical Area "Albany-Schenectady-Troy, NY MSA" -Metropolitan and Micropolitan Statistical Area "Albemarle, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Albert Lea, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Albertville, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Albuquerque, NM MSA" -Metropolitan and Micropolitan Statistical Area "Alexandria, LA MSA" -Metropolitan and Micropolitan Statistical Area "Alexandria, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Alice, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Allentown-Bethlehem-Easton, PA-NJ MSA" -Metropolitan and Micropolitan Statistical Area "Alma, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Alpena, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Altoona, PA MSA" -Metropolitan and Micropolitan Statistical Area "Altus, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Amarillo, TX MSA" -Metropolitan and Micropolitan Statistical Area "Americus, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Ames, IA MSA" -Metropolitan and Micropolitan Statistical Area "Amsterdam, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Anchorage, AK MSA" -Metropolitan and Micropolitan Statistical Area "Andrews, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Angola, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Ann Arbor, MI MSA" -Metropolitan and Micropolitan Statistical Area "Anniston-Oxford-Jacksonville, AL MSA" -Metropolitan and Micropolitan Statistical Area "Appleton, WI MSA" -Metropolitan and Micropolitan Statistical Area "Arcadia, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Ardmore, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Arkadelphia, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Arkansas City-Winfield, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Asheville, NC MSA" -Metropolitan and Micropolitan Statistical Area "Ashland, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Ashtabula, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Astoria, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Atchison, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Athens, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Athens, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Athens, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Athens-Clarke County, GA MSA" -Metropolitan and Micropolitan Statistical Area "Atlanta-Sandy Springs-Roswell, GA MSA" -Metropolitan and Micropolitan Statistical Area "Atlantic City-Hammonton, NJ MSA" -Metropolitan and Micropolitan Statistical Area "Auburn, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Auburn, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Auburn-Opelika, AL MSA" -Metropolitan and Micropolitan Statistical Area "Augusta-Richmond County, GA-SC MSA" -Metropolitan and Micropolitan Statistical Area "Augusta-Waterville, ME MicroSA" -Metropolitan and Micropolitan Statistical Area "Austin, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Austin-Round Rock, TX MSA" -Metropolitan and Micropolitan Statistical Area "Bainbridge, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Bakersfield, CA MSA" -Metropolitan and Micropolitan Statistical Area "Baltimore-Columbia-Towson, MD MSA" -Metropolitan and Micropolitan Statistical Area "Bangor, ME MSA" -Metropolitan and Micropolitan Statistical Area "Baraboo, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Bardstown, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Barnstable Town, MA MSA" -Metropolitan and Micropolitan Statistical Area "Barre, VT MicroSA" -Metropolitan and Micropolitan Statistical Area "Bartlesville, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Bastrop, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Batavia, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Batesville, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Baton Rouge, LA MSA" -Metropolitan and Micropolitan Statistical Area "Battle Creek, MI MSA" -Metropolitan and Micropolitan Statistical Area "Bay City, MI MSA" -Metropolitan and Micropolitan Statistical Area "Bay City, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Beatrice, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Beaumont-Port Arthur, TX MSA" -Metropolitan and Micropolitan Statistical Area "Beaver Dam, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Beckley, WV MSA" -Metropolitan and Micropolitan Statistical Area "Bedford, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Beeville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Bellefontaine, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Bellingham, WA MSA" -Metropolitan and Micropolitan Statistical Area "Bemidji, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Bend-Redmond, OR MSA" -Metropolitan and Micropolitan Statistical Area "Bennettsville, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Bennington, VT MicroSA" -Metropolitan and Micropolitan Statistical Area "Berlin, NH-VT MicroSA" -Metropolitan and Micropolitan Statistical Area "Big Rapids, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Big Spring, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Big Stone Gap, VA MicroSA" -Metropolitan and Micropolitan Statistical Area "Billings, MT MSA" -Metropolitan and Micropolitan Statistical Area "Binghamton, NY MSA" -Metropolitan and Micropolitan Statistical Area "Birmingham-Hoover, AL MSA" -Metropolitan and Micropolitan Statistical Area "Bismarck, ND MSA" -Metropolitan and Micropolitan Statistical Area "Blackfoot, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Blacksburg-Christiansburg-Radford, VA MSA" -Metropolitan and Micropolitan Statistical Area "Bloomington, IL MSA" -Metropolitan and Micropolitan Statistical Area "Bloomington, IN MSA" -Metropolitan and Micropolitan Statistical Area "Bloomsburg-Berwick, PA MSA" -Metropolitan and Micropolitan Statistical Area "Bluefield, WV-VA MicroSA" -Metropolitan and Micropolitan Statistical Area "Blytheville, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Bogalusa, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Boise City, ID MSA" -Metropolitan and Micropolitan Statistical Area "Boone, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Boone, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Borger, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Boston-Cambridge-Newton, MA-NH MSA" -Metropolitan and Micropolitan Statistical Area "Boulder, CO MSA" -Metropolitan and Micropolitan Statistical Area "Bowling Green, KY MSA" -Metropolitan and Micropolitan Statistical Area "Bozeman, MT MicroSA" -Metropolitan and Micropolitan Statistical Area "Bradford, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Brainerd, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Branson, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Breckenridge, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Bremerton-Silverdale, WA MSA" -Metropolitan and Micropolitan Statistical Area "Brenham, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Brevard, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Bridgeport-Stamford-Norwalk, CT MSA" -Metropolitan and Micropolitan Statistical Area "Brookhaven, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Brookings, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Brookings, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Brownsville-Harlingen, TX MSA" -Metropolitan and Micropolitan Statistical Area "Brownwood, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Brunswick, GA MSA" -Metropolitan and Micropolitan Statistical Area "Bucyrus, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Buffalo-Cheektowaga-Niagara Falls, NY MSA" -Metropolitan and Micropolitan Statistical Area "Burley, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Burlington, IA-IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Burlington, NC MSA" -Metropolitan and Micropolitan Statistical Area "Burlington-South Burlington, VT MSA" -Metropolitan and Micropolitan Statistical Area "Butte-Silver Bow, MT MicroSA" -Metropolitan and Micropolitan Statistical Area "Cadillac, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Calhoun, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "California-Lexington Park, MD MSA" -Metropolitan and Micropolitan Statistical Area "Cambridge, MD MicroSA" -Metropolitan and Micropolitan Statistical Area "Cambridge, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Camden, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Campbellsville, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Canon City, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Canton, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Canton-Massillon, OH MSA" -Metropolitan and Micropolitan Statistical Area "Cape Coral-Fort Myers, FL MSA" -Metropolitan and Micropolitan Statistical Area "Cape Girardeau, MO-IL MSA" -Metropolitan and Micropolitan Statistical Area "Carbondale-Marion, IL MSA" -Metropolitan and Micropolitan Statistical Area "Carlsbad-Artesia, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Carson City, NV MSA" -Metropolitan and Micropolitan Statistical Area "Casper, WY MSA" -Metropolitan and Micropolitan Statistical Area "Cedar City, UT MicroSA" -Metropolitan and Micropolitan Statistical Area "Cedar Rapids, IA MSA" -Metropolitan and Micropolitan Statistical Area "Cedartown, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Celina, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Centralia, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Centralia, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Chambersburg-Waynesboro, PA MSA" -Metropolitan and Micropolitan Statistical Area "Champaign-Urbana, IL MSA" -Metropolitan and Micropolitan Statistical Area "Charleston, WV MSA" -Metropolitan and Micropolitan Statistical Area "Charleston-Mattoon, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Charleston-North Charleston, SC MSA" -Metropolitan and Micropolitan Statistical Area "Charlotte-Concord-Gastonia, NC-SC MSA" -Metropolitan and Micropolitan Statistical Area "Charlottesville, VA MSA" -Metropolitan and Micropolitan Statistical Area "Chattanooga, TN-GA MSA" -Metropolitan and Micropolitan Statistical Area "Cheyenne, WY MSA" -Metropolitan and Micropolitan Statistical Area "Chicago-Naperville-Elgin, IL-IN-WI MSA" -Metropolitan and Micropolitan Statistical Area "Chico, CA MSA" -Metropolitan and Micropolitan Statistical Area "Chillicothe, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Cincinnati, OH-KY-IN MSA" -Metropolitan and Micropolitan Statistical Area "Claremont-Lebanon, NH-VT MicroSA" -Metropolitan and Micropolitan Statistical Area "Clarksburg, WV MicroSA" -Metropolitan and Micropolitan Statistical Area "Clarksdale, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Clarksville, TN-KY MSA" -Metropolitan and Micropolitan Statistical Area "Clearlake, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Cleveland, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Cleveland, TN MSA" -Metropolitan and Micropolitan Statistical Area "Cleveland-Elyria, OH MSA" -Metropolitan and Micropolitan Statistical Area "Clewiston, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Clinton, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Clovis, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Coeur d'Alene, ID MSA" -Metropolitan and Micropolitan Statistical Area "Coffeyville, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Coldwater, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "College Station-Bryan, TX MSA" -Metropolitan and Micropolitan Statistical Area "Colorado Springs, CO MSA" -Metropolitan and Micropolitan Statistical Area "Columbia, MO MSA" -Metropolitan and Micropolitan Statistical Area "Columbia, SC MSA" -Metropolitan and Micropolitan Statistical Area "Columbus, GA-AL MSA" -Metropolitan and Micropolitan Statistical Area "Columbus, IN MSA" -Metropolitan and Micropolitan Statistical Area "Columbus, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Columbus, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Columbus, OH MSA" -Metropolitan and Micropolitan Statistical Area "Concord, NH MicroSA" -Metropolitan and Micropolitan Statistical Area "Connersville, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Cookeville, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Coos Bay, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Cordele, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Corinth, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Cornelia, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Corning, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Corpus Christi, TX MSA" -Metropolitan and Micropolitan Statistical Area "Corsicana, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Cortland, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Corvallis, OR MSA" -Metropolitan and Micropolitan Statistical Area "Coshocton, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Craig, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Crawfordsville, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Crescent City, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Crestview-Fort Walton Beach-Destin, FL MSA" -Metropolitan and Micropolitan Statistical Area "Crossville, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Cullman, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Cullowhee, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Cumberland, MD-WV MSA" -Metropolitan and Micropolitan Statistical Area "Dallas-Fort Worth-Arlington, TX MSA" -Metropolitan and Micropolitan Statistical Area "Dalton, GA MSA" -Metropolitan and Micropolitan Statistical Area "Danville, IL MSA" -Metropolitan and Micropolitan Statistical Area "Danville, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Danville, VA MicroSA" -Metropolitan and Micropolitan Statistical Area "Daphne-Fairhope-Foley, AL MSA" -Metropolitan and Micropolitan Statistical Area "Davenport-Moline-Rock Island, IA-IL MSA" -Metropolitan and Micropolitan Statistical Area "Dayton, OH MSA" -Metropolitan and Micropolitan Statistical Area "Dayton, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "DeRidder, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Decatur, AL MSA" -Metropolitan and Micropolitan Statistical Area "Decatur, IL MSA" -Metropolitan and Micropolitan Statistical Area "Decatur, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Defiance, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Del Rio, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Deltona-Daytona Beach-Ormond Beach, FL MSA" -Metropolitan and Micropolitan Statistical Area "Deming, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Denver-Aurora-Lakewood, CO MSA" -Metropolitan and Micropolitan Statistical Area "Des Moines-West Des Moines, IA MSA" -Metropolitan and Micropolitan Statistical Area "Detroit-Warren-Dearborn, MI MSA" -Metropolitan and Micropolitan Statistical Area "Dickinson, ND MicroSA" -Metropolitan and Micropolitan Statistical Area "Dixon, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Dodge City, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Dothan, AL MSA" -Metropolitan and Micropolitan Statistical Area "Douglas, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Dover, DE MSA" -Metropolitan and Micropolitan Statistical Area "DuBois, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Dublin, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Dubuque, IA MSA" -Metropolitan and Micropolitan Statistical Area "Duluth, MN-WI MSA" -Metropolitan and Micropolitan Statistical Area "Dumas, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Duncan, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Dunn, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Durango, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Durant, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Durham-Chapel Hill, NC MSA" -Metropolitan and Micropolitan Statistical Area "Dyersburg, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Eagle Pass, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "East Stroudsburg, PA MSA" -Metropolitan and Micropolitan Statistical Area "Easton, MD MicroSA" -Metropolitan and Micropolitan Statistical Area "Eau Claire, WI MSA" -Metropolitan and Micropolitan Statistical Area "Edwards, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Effingham, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "El Campo, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "El Centro, CA MSA" -Metropolitan and Micropolitan Statistical Area "El Dorado, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "El Paso, TX MSA" -Metropolitan and Micropolitan Statistical Area "Elizabeth City, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Elizabethtown-Fort Knox, KY MSA" -Metropolitan and Micropolitan Statistical Area "Elk City, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Elkhart-Goshen, IN MSA" -Metropolitan and Micropolitan Statistical Area "Elkins, WV MicroSA" -Metropolitan and Micropolitan Statistical Area "Elko, NV MicroSA" -Metropolitan and Micropolitan Statistical Area "Ellensburg, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Elmira, NY MSA" -Metropolitan and Micropolitan Statistical Area "Emporia, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Enid, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Enterprise, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Erie, PA MSA" -Metropolitan and Micropolitan Statistical Area "Escanaba, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Espanola, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Eugene, OR MSA" -Metropolitan and Micropolitan Statistical Area "Eureka-Arcata-Fortuna, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Evanston, WY MicroSA" -Metropolitan and Micropolitan Statistical Area "Evansville, IN-KY MSA" -Metropolitan and Micropolitan Statistical Area "Fairbanks, AK MSA" -Metropolitan and Micropolitan Statistical Area "Fairfield, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Fairmont, WV MicroSA" -Metropolitan and Micropolitan Statistical Area "Fallon, NV MicroSA" -Metropolitan and Micropolitan Statistical Area "Fargo, ND-MN MSA" -Metropolitan and Micropolitan Statistical Area "Faribault-Northfield, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Farmington, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Farmington, NM MSA" -Metropolitan and Micropolitan Statistical Area "Fayetteville, NC MSA" -Metropolitan and Micropolitan Statistical Area "Fayetteville-Springdale-Rogers, AR-MO MSA" -Metropolitan and Micropolitan Statistical Area "Fergus Falls, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Fernley, NV MicroSA" -Metropolitan and Micropolitan Statistical Area "Findlay, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Fitzgerald, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Flagstaff, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Flint, MI MSA" -Metropolitan and Micropolitan Statistical Area "Florence, SC MSA" -Metropolitan and Micropolitan Statistical Area "Florence-Muscle Shoals, AL MSA" -Metropolitan and Micropolitan Statistical Area "Fond du Lac, WI MSA" -Metropolitan and Micropolitan Statistical Area "Forest City, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Forrest City, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Fort Collins, CO MSA" -Metropolitan and Micropolitan Statistical Area "Fort Dodge, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Fort Leonard Wood, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Fort Madison-Keokuk, IA-IL-MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Fort Morgan, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Fort Polk South, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Fort Smith, AR-OK MSA" -Metropolitan and Micropolitan Statistical Area "Fort Wayne, IN MSA" -Metropolitan and Micropolitan Statistical Area "Frankfort, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Frankfort, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Fredericksburg, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Freeport, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Fremont, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Fremont, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Fresno, CA MSA" -Metropolitan and Micropolitan Statistical Area "Gadsden, AL MSA" -Metropolitan and Micropolitan Statistical Area "Gaffney, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Gainesville, FL MSA" -Metropolitan and Micropolitan Statistical Area "Gainesville, GA MSA" -Metropolitan and Micropolitan Statistical Area "Gainesville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Galesburg, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Gallup, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Garden City, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Gardnerville Ranchos, NV MicroSA" -Metropolitan and Micropolitan Statistical Area "Georgetown, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Gettysburg, PA MSA" -Metropolitan and Micropolitan Statistical Area "Gillette, WY MicroSA" -Metropolitan and Micropolitan Statistical Area "Glasgow, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Glens Falls, NY MSA" -Metropolitan and Micropolitan Statistical Area "Glenwood Springs, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Gloversville, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Goldsboro, NC MSA" -Metropolitan and Micropolitan Statistical Area "Grand Forks, ND-MN MSA" -Metropolitan and Micropolitan Statistical Area "Grand Island, NE MSA" -Metropolitan and Micropolitan Statistical Area "Grand Junction, CO MSA" -Metropolitan and Micropolitan Statistical Area "Grand Rapids-Wyoming, MI MSA" -Metropolitan and Micropolitan Statistical Area "Grants Pass, OR MSA" -Metropolitan and Micropolitan Statistical Area "Grants, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Great Bend, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Great Falls, MT MSA" -Metropolitan and Micropolitan Statistical Area "Greeley, CO MSA" -Metropolitan and Micropolitan Statistical Area "Green Bay, WI MSA" -Metropolitan and Micropolitan Statistical Area "Greeneville, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Greenfield Town, MA MicroSA" -Metropolitan and Micropolitan Statistical Area "Greensboro-High Point, NC MSA" -Metropolitan and Micropolitan Statistical Area "Greensburg, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Greenville, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Greenville, NC MSA" -Metropolitan and Micropolitan Statistical Area "Greenville, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Greenville-Anderson-Mauldin, SC MSA" -Metropolitan and Micropolitan Statistical Area "Greenwood, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Greenwood, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Grenada, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Gulfport-Biloxi-Pascagoula, MS MSA" -Metropolitan and Micropolitan Statistical Area "Guymon, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Hagerstown-Martinsburg, MD-WV MSA" -Metropolitan and Micropolitan Statistical Area "Hailey, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Hammond, LA MSA" -Metropolitan and Micropolitan Statistical Area "Hanford-Corcoran, CA MSA" -Metropolitan and Micropolitan Statistical Area "Hannibal, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Harrisburg-Carlisle, PA MSA" -Metropolitan and Micropolitan Statistical Area "Harrison, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Harrisonburg, VA MSA" -Metropolitan and Micropolitan Statistical Area "Hartford-West Hartford-East Hartford, CT MSA" -Metropolitan and Micropolitan Statistical Area "Hastings, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Hattiesburg, MS MSA" -Metropolitan and Micropolitan Statistical Area "Hays, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Heber, UT MicroSA" -Metropolitan and Micropolitan Statistical Area "Helena, MT MicroSA" -Metropolitan and Micropolitan Statistical Area "Helena-West Helena, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Henderson, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Hereford, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Hermiston-Pendleton, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Hickory-Lenoir-Morganton, NC MSA" -Metropolitan and Micropolitan Statistical Area "Hillsdale, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Hilo, HI MicroSA" -Metropolitan and Micropolitan Statistical Area "Hilton Head Island-Bluffton-Beaufort, SC MSA" -Metropolitan and Micropolitan Statistical Area "Hinesville, GA MSA" -Metropolitan and Micropolitan Statistical Area "Hobbs, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Holland, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Homosassa Springs, FL MSA" -Metropolitan and Micropolitan Statistical Area "Hood River, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Hot Springs, AR MSA" -Metropolitan and Micropolitan Statistical Area "Houghton, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Houma-Thibodaux, LA MSA" -Metropolitan and Micropolitan Statistical Area "Houston-The Woodlands-Sugar Land, TX MSA" -Metropolitan and Micropolitan Statistical Area "Hudson, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Huntingdon, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Huntington, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Huntington-Ashland, WV-KY-OH MSA" -Metropolitan and Micropolitan Statistical Area "Huntsville, AL MSA" -Metropolitan and Micropolitan Statistical Area "Huntsville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Huron, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Hutchinson, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Hutchinson, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Idaho Falls, ID MSA" -Metropolitan and Micropolitan Statistical Area "Indiana, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Indianapolis-Carmel-Anderson, IN MSA" -Metropolitan and Micropolitan Statistical Area "Indianola, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Ionia, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Iowa City, IA MSA" -Metropolitan and Micropolitan Statistical Area "Iron Mountain, MI-WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Ithaca, NY MSA" -Metropolitan and Micropolitan Statistical Area "Jackson, MI MSA" -Metropolitan and Micropolitan Statistical Area "Jackson, MS MSA" -Metropolitan and Micropolitan Statistical Area "Jackson, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Jackson, TN MSA" -Metropolitan and Micropolitan Statistical Area "Jackson, WY-ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Jacksonville, FL MSA" -Metropolitan and Micropolitan Statistical Area "Jacksonville, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Jacksonville, NC MSA" -Metropolitan and Micropolitan Statistical Area "Jacksonville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Jamestown, ND MicroSA" -Metropolitan and Micropolitan Statistical Area "Jamestown-Dunkirk-Fredonia, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Janesville-Beloit, WI MSA" -Metropolitan and Micropolitan Statistical Area "Jasper, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Jefferson City, MO MSA" -Metropolitan and Micropolitan Statistical Area "Jefferson, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Jesup, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Johnson City, TN MSA" -Metropolitan and Micropolitan Statistical Area "Johnstown, PA MSA" -Metropolitan and Micropolitan Statistical Area "Jonesboro, AR MSA" -Metropolitan and Micropolitan Statistical Area "Joplin, MO MSA" -Metropolitan and Micropolitan Statistical Area "Junction City, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Juneau, AK MicroSA" -Metropolitan and Micropolitan Statistical Area "Kahului-Wailuku-Lahaina, HI MSA" -Metropolitan and Micropolitan Statistical Area "Kalamazoo-Portage, MI MSA" -Metropolitan and Micropolitan Statistical Area "Kalispell, MT MicroSA" -Metropolitan and Micropolitan Statistical Area "Kankakee, IL MSA" -Metropolitan and Micropolitan Statistical Area "Kansas City, MO-KS MSA" -Metropolitan and Micropolitan Statistical Area "Kapaa, HI MicroSA" -Metropolitan and Micropolitan Statistical Area "Kearney, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Keene, NH MicroSA" -Metropolitan and Micropolitan Statistical Area "Kendallville, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Kennett, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Kennewick-Richland, WA MSA" -Metropolitan and Micropolitan Statistical Area "Kerrville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Ketchikan, AK MicroSA" -Metropolitan and Micropolitan Statistical Area "Key West, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Kill Devil Hills, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Killeen-Temple, TX MSA" -Metropolitan and Micropolitan Statistical Area "Kingsport-Bristol-Bristol, TN-VA MSA" -Metropolitan and Micropolitan Statistical Area "Kingston, NY MSA" -Metropolitan and Micropolitan Statistical Area "Kingsville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Kinston, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Kirksville, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Klamath Falls, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Knoxville, TN MSA" -Metropolitan and Micropolitan Statistical Area "Kokomo, IN MSA" -Metropolitan and Micropolitan Statistical Area "La Crosse-Onalaska, WI-MN MSA" -Metropolitan and Micropolitan Statistical Area "La Grande, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "LaGrange, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Laconia, NH MicroSA" -Metropolitan and Micropolitan Statistical Area "Lafayette, LA MSA" -Metropolitan and Micropolitan Statistical Area "Lafayette-West Lafayette, IN MSA" -Metropolitan and Micropolitan Statistical Area "Lake Charles, LA MSA" -Metropolitan and Micropolitan Statistical Area "Lake City, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Lake Havasu City-Kingman, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Lakeland-Winter Haven, FL MSA" -Metropolitan and Micropolitan Statistical Area "Lamesa, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Lancaster, PA MSA" -Metropolitan and Micropolitan Statistical Area "Lansing-East Lansing, MI MSA" -Metropolitan and Micropolitan Statistical Area "Laramie, WY MicroSA" -Metropolitan and Micropolitan Statistical Area "Laredo, TX MSA" -Metropolitan and Micropolitan Statistical Area "Las Cruces, NM MSA" -Metropolitan and Micropolitan Statistical Area "Las Vegas, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Las Vegas-Henderson-Paradise, NV MSA" -Metropolitan and Micropolitan Statistical Area "Laurel, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Laurinburg, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Lawrence, KS MSA" -Metropolitan and Micropolitan Statistical Area "Lawrenceburg, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Lawton, OK MSA" -Metropolitan and Micropolitan Statistical Area "Lebanon, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Lebanon, PA MSA" -Metropolitan and Micropolitan Statistical Area "Levelland, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Lewisburg, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Lewisburg, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Lewiston, ID-WA MSA" -Metropolitan and Micropolitan Statistical Area "Lewiston-Auburn, ME MSA" -Metropolitan and Micropolitan Statistical Area "Lewistown, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Lexington, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Lexington-Fayette, KY MSA" -Metropolitan and Micropolitan Statistical Area "Liberal, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Lima, OH MSA" -Metropolitan and Micropolitan Statistical Area "Lincoln, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Lincoln, NE MSA" -Metropolitan and Micropolitan Statistical Area "Little Rock-North Little Rock-Conway, AR MSA" -Metropolitan and Micropolitan Statistical Area "Lock Haven, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Logan, UT-ID MSA" -Metropolitan and Micropolitan Statistical Area "Logan, WV MicroSA" -Metropolitan and Micropolitan Statistical Area "Logansport, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "London, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Longview, TX MSA" -Metropolitan and Micropolitan Statistical Area "Longview, WA MSA" -Metropolitan and Micropolitan Statistical Area "Los Alamos, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Los Angeles-Long Beach-Anaheim, CA MSA" -Metropolitan and Micropolitan Statistical Area "Louisville/Jefferson County, KY-IN MSA" -Metropolitan and Micropolitan Statistical Area "Lubbock, TX MSA" -Metropolitan and Micropolitan Statistical Area "Ludington, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Lufkin, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Lumberton, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Lynchburg, VA MSA" -Metropolitan and Micropolitan Statistical Area "Macomb, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Macon, GA MSA" -Metropolitan and Micropolitan Statistical Area "Madera, CA MSA" -Metropolitan and Micropolitan Statistical Area "Madison, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Madison, WI MSA" -Metropolitan and Micropolitan Statistical Area "Madisonville, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Magnolia, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Malone, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Malvern, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Manchester-Nashua, NH MSA" -Metropolitan and Micropolitan Statistical Area "Manhattan, KS MSA" -Metropolitan and Micropolitan Statistical Area "Manitowoc, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Mankato-North Mankato, MN MSA" -Metropolitan and Micropolitan Statistical Area "Mansfield, OH MSA" -Metropolitan and Micropolitan Statistical Area "Marietta, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Marinette, WI-MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Marion, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Marion, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Marion, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Marquette, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Marshall, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Marshall, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Marshall, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Marshalltown, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Martin, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Martinsville, VA MicroSA" -Metropolitan and Micropolitan Statistical Area "Maryville, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Mason City, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Mayfield, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Maysville, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "McAlester, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "McAllen-Edinburg-Mission, TX MSA" -Metropolitan and Micropolitan Statistical Area "McComb, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "McMinnville, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "McPherson, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Meadville, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Medford, OR MSA" -Metropolitan and Micropolitan Statistical Area "Memphis, TN-MS-AR MSA" -Metropolitan and Micropolitan Statistical Area "Menomonie, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Merced, CA MSA" -Metropolitan and Micropolitan Statistical Area "Meridian, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Merrill, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Mexico, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Miami, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Miami-Fort Lauderdale-West Palm Beach, FL MSA" -Metropolitan and Micropolitan Statistical Area "Michigan City-La Porte, IN MSA" -Metropolitan and Micropolitan Statistical Area "Middlesborough, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Midland, MI MSA" -Metropolitan and Micropolitan Statistical Area "Midland, TX MSA" -Metropolitan and Micropolitan Statistical Area "Milledgeville, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Milwaukee-Waukesha-West Allis, WI MSA" -Metropolitan and Micropolitan Statistical Area "Mineral Wells, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Minneapolis-St. Paul-Bloomington, MN-WI MSA" -Metropolitan and Micropolitan Statistical Area "Minot, ND MicroSA" -Metropolitan and Micropolitan Statistical Area "Missoula, MT MSA" -Metropolitan and Micropolitan Statistical Area "Mitchell, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Moberly, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Mobile, AL MSA" -Metropolitan and Micropolitan Statistical Area "Modesto, CA MSA" -Metropolitan and Micropolitan Statistical Area "Monroe, LA MSA" -Metropolitan and Micropolitan Statistical Area "Monroe, MI MSA" -Metropolitan and Micropolitan Statistical Area "Montgomery, AL MSA" -Metropolitan and Micropolitan Statistical Area "Montrose, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Morehead City, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Morgan City, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Morgantown, WV MSA" -Metropolitan and Micropolitan Statistical Area "Morristown, TN MSA" -Metropolitan and Micropolitan Statistical Area "Moscow, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Moses Lake, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Moultrie, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Airy, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Pleasant, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Pleasant, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Sterling, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Vernon, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Vernon, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Vernon-Anacortes, WA MSA" -Metropolitan and Micropolitan Statistical Area "Mountain Home, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Mountain Home, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Muncie, IN MSA" -Metropolitan and Micropolitan Statistical Area "Murray, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Muscatine, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Muskegon, MI MSA" -Metropolitan and Micropolitan Statistical Area "Muskogee, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Myrtle Beach-Conway-North Myrtle Beach, SC-NC MSA" -Metropolitan and Micropolitan Statistical Area "Nacogdoches, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Napa, CA MSA" -Metropolitan and Micropolitan Statistical Area "Naples-Immokalee-Marco Island, FL MSA" -Metropolitan and Micropolitan Statistical Area "Nashville-Davidson--Murfreesboro--Franklin, TN MSA" -Metropolitan and Micropolitan Statistical Area "Natchez, MS-LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Natchitoches, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "New Bern, NC MSA" -Metropolitan and Micropolitan Statistical Area "New Castle, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "New Castle, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "New Haven-Milford, CT MSA" -Metropolitan and Micropolitan Statistical Area "New Orleans-Metairie, LA MSA" -Metropolitan and Micropolitan Statistical Area "New Philadelphia-Dover, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "New Ulm, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "New York-Newark-Jersey City, NY-NJ-PA MSA" -Metropolitan and Micropolitan Statistical Area "Newberry, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Newport, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Newport, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Newton, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Niles-Benton Harbor, MI MSA" -Metropolitan and Micropolitan Statistical Area "Nogales, AZ MicroSA" -Metropolitan and Micropolitan Statistical Area "Norfolk, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "North Platte, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "North Port-Sarasota-Bradenton, FL MSA" -Metropolitan and Micropolitan Statistical Area "North Vernon, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "North Wilkesboro, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Norwalk, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Norwich-New London, CT MSA" -Metropolitan and Micropolitan Statistical Area "Oak Harbor, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Ocala, FL MSA" -Metropolitan and Micropolitan Statistical Area "Ocean City, NJ MSA" -Metropolitan and Micropolitan Statistical Area "Odessa, TX MSA" -Metropolitan and Micropolitan Statistical Area "Ogden-Clearfield, UT MSA" -Metropolitan and Micropolitan Statistical Area "Ogdensburg-Massena, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Oil City, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Okeechobee, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Oklahoma City, OK MSA" -Metropolitan and Micropolitan Statistical Area "Olean, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Olympia-Tumwater, WA MSA" -Metropolitan and Micropolitan Statistical Area "Omaha-Council Bluffs, NE-IA MSA" -Metropolitan and Micropolitan Statistical Area "Oneonta, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Ontario, OR-ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Opelousas, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Orangeburg, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Orlando-Kissimmee-Sanford, FL MSA" -Metropolitan and Micropolitan Statistical Area "Oshkosh-Neenah, WI MSA" -Metropolitan and Micropolitan Statistical Area "Oskaloosa, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Othello, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Ottawa, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Ottawa-Peru, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Ottumwa, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Owatonna, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Owensboro, KY MSA" -Metropolitan and Micropolitan Statistical Area "Owosso, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Oxford, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Oxford, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Oxnard-Thousand Oaks-Ventura, CA MSA" -Metropolitan and Micropolitan Statistical Area "Ozark, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Paducah, KY-IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Pahrump, NV MicroSA" -Metropolitan and Micropolitan Statistical Area "Palatka, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Palestine, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Palm Bay-Melbourne-Titusville, FL MSA" -Metropolitan and Micropolitan Statistical Area "Pampa, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Panama City, FL MSA" -Metropolitan and Micropolitan Statistical Area "Paragould, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Paris, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Paris, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Parkersburg-Vienna, WV MSA" -Metropolitan and Micropolitan Statistical Area "Parsons, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Payson, AZ MicroSA" -Metropolitan and Micropolitan Statistical Area "Pecos, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Pensacola-Ferry Pass-Brent, FL MSA" -Metropolitan and Micropolitan Statistical Area "Peoria, IL MSA" -Metropolitan and Micropolitan Statistical Area "Peru, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Philadelphia-Camden-Wilmington, PA-NJ-DE-MD MSA" -Metropolitan and Micropolitan Statistical Area "Phoenix-Mesa-Scottsdale, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Picayune, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Pierre, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Pine Bluff, AR MSA" -Metropolitan and Micropolitan Statistical Area "Pinehurst-Southern Pines, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Pittsburg, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Pittsburgh, PA MSA" -Metropolitan and Micropolitan Statistical Area "Pittsfield, MA MSA" -Metropolitan and Micropolitan Statistical Area "Plainview, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Platteville, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Plattsburgh, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Plymouth, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Pocatello, ID MSA" -Metropolitan and Micropolitan Statistical Area "Point Pleasant, WV-OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Ponca City, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Pontiac, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Poplar Bluff, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Port Angeles, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Port Clinton, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Port Lavaca, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Port St. Lucie, FL MSA" -Metropolitan and Micropolitan Statistical Area "Portales, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Portland-South Portland, ME MSA" -Metropolitan and Micropolitan Statistical Area "Portland-Vancouver-Hillsboro, OR-WA MSA" -Metropolitan and Micropolitan Statistical Area "Portsmouth, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Pottsville, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Prescott, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Price, UT MicroSA" -Metropolitan and Micropolitan Statistical Area "Prineville, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Providence-Warwick, RI-MA MSA" -Metropolitan and Micropolitan Statistical Area "Provo-Orem, UT MSA" -Metropolitan and Micropolitan Statistical Area "Pueblo, CO MSA" -Metropolitan and Micropolitan Statistical Area "Pullman, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Punta Gorda, FL MSA" -Metropolitan and Micropolitan Statistical Area "Quincy, IL-MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Racine, WI MSA" -Metropolitan and Micropolitan Statistical Area "Raleigh, NC MSA" -Metropolitan and Micropolitan Statistical Area "Rapid City, SD MSA" -Metropolitan and Micropolitan Statistical Area "Raymondville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Reading, PA MSA" -Metropolitan and Micropolitan Statistical Area "Red Bluff, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Red Wing, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Redding, CA MSA" -Metropolitan and Micropolitan Statistical Area "Reno, NV MSA" -Metropolitan and Micropolitan Statistical Area "Rexburg, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Richmond, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Richmond, VA MSA" -Metropolitan and Micropolitan Statistical Area "Richmond-Berea, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Rio Grande City, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Riverside-San Bernardino-Ontario, CA MSA" -Metropolitan and Micropolitan Statistical Area "Riverton, WY MicroSA" -Metropolitan and Micropolitan Statistical Area "Roanoke Rapids, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Roanoke, VA MSA" -Metropolitan and Micropolitan Statistical Area "Rochelle, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Rochester, MN MSA" -Metropolitan and Micropolitan Statistical Area "Rochester, NY MSA" -Metropolitan and Micropolitan Statistical Area "Rock Springs, WY MicroSA" -Metropolitan and Micropolitan Statistical Area "Rockford, IL MSA" -Metropolitan and Micropolitan Statistical Area "Rockingham, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Rocky Mount, NC MSA" -Metropolitan and Micropolitan Statistical Area "Rolla, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Rome, GA MSA" -Metropolitan and Micropolitan Statistical Area "Roseburg, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Roswell, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Russellville, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Ruston, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Rutland, VT MicroSA" -Metropolitan and Micropolitan Statistical Area "Sacramento--Roseville--Arden-Arcade, CA MSA" -Metropolitan and Micropolitan Statistical Area "Safford, AZ MicroSA" -Metropolitan and Micropolitan Statistical Area "Saginaw, MI MSA" -Metropolitan and Micropolitan Statistical Area "Salem, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Salem, OR MSA" -Metropolitan and Micropolitan Statistical Area "Salina, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Salinas, CA MSA" -Metropolitan and Micropolitan Statistical Area "Salisbury, MD-DE MSA" -Metropolitan and Micropolitan Statistical Area "Salt Lake City, UT MSA" -Metropolitan and Micropolitan Statistical Area "San Angelo, TX MSA" -Metropolitan and Micropolitan Statistical Area "San Antonio-New Braunfels, TX MSA" -Metropolitan and Micropolitan Statistical Area "San Diego-Carlsbad, CA MSA" -Metropolitan and Micropolitan Statistical Area "San Francisco-Oakland-Hayward, CA MSA" -Metropolitan and Micropolitan Statistical Area "San Jose-Sunnyvale-Santa Clara, CA MSA" -Metropolitan and Micropolitan Statistical Area "San Luis Obispo-Paso Robles-Arroyo Grande, CA MSA" -Metropolitan and Micropolitan Statistical Area "Sandpoint, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Sandusky, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Sanford, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Santa Cruz-Watsonville, CA MSA" -Metropolitan and Micropolitan Statistical Area "Santa Fe, NM MSA" -Metropolitan and Micropolitan Statistical Area "Santa Maria-Santa Barbara, CA MSA" -Metropolitan and Micropolitan Statistical Area "Santa Rosa, CA MSA" -Metropolitan and Micropolitan Statistical Area "Sault Ste. Marie, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Savannah, GA MSA" -Metropolitan and Micropolitan Statistical Area "Sayre, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Scottsbluff, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Scottsboro, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Scranton--Wilkes-Barre--Hazleton, PA MSA" -Metropolitan and Micropolitan Statistical Area "Searcy, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Seattle-Tacoma-Bellevue, WA MSA" -Metropolitan and Micropolitan Statistical Area "Sebastian-Vero Beach, FL MSA" -Metropolitan and Micropolitan Statistical Area "Sebring, FL MSA" -Metropolitan and Micropolitan Statistical Area "Sedalia, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Selinsgrove, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Selma, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Seneca Falls, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Seneca, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Sevierville, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Seymour, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Shawano, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Shawnee, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Sheboygan, WI MSA" -Metropolitan and Micropolitan Statistical Area "Shelby, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Shelbyville, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Shelton, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Sheridan, WY MicroSA" -Metropolitan and Micropolitan Statistical Area "Sherman-Denison, TX MSA" -Metropolitan and Micropolitan Statistical Area "Show Low, AZ MicroSA" -Metropolitan and Micropolitan Statistical Area "Shreveport-Bossier City, LA MSA" -Metropolitan and Micropolitan Statistical Area "Sidney, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Sierra Vista-Douglas, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Sikeston, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Silver City, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Sioux City, IA-NE-SD MSA" -Metropolitan and Micropolitan Statistical Area "Sioux Falls, SD MSA" -Metropolitan and Micropolitan Statistical Area "Snyder, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Somerset, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Somerset, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Sonora, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "South Bend-Mishawaka, IN-MI MSA" -Metropolitan and Micropolitan Statistical Area "Spartanburg, SC MSA" -Metropolitan and Micropolitan Statistical Area "Spearfish, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Spencer, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Spirit Lake, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Spokane-Spokane Valley, WA MSA" -Metropolitan and Micropolitan Statistical Area "Springfield, IL MSA" -Metropolitan and Micropolitan Statistical Area "Springfield, MA MSA" -Metropolitan and Micropolitan Statistical Area "Springfield, MO MSA" -Metropolitan and Micropolitan Statistical Area "Springfield, OH MSA" -Metropolitan and Micropolitan Statistical Area "St. Cloud, MN MSA" -Metropolitan and Micropolitan Statistical Area "St. George, UT MSA" -Metropolitan and Micropolitan Statistical Area "St. Joseph, MO-KS MSA" -Metropolitan and Micropolitan Statistical Area "St. Louis, MO-IL MSA" -Metropolitan and Micropolitan Statistical Area "St. Marys, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Starkville, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "State College, PA MSA" -Metropolitan and Micropolitan Statistical Area "Statesboro, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Staunton-Waynesboro, VA MSA" -Metropolitan and Micropolitan Statistical Area "Steamboat Springs, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Stephenville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Sterling, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Sterling, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Stevens Point, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Stillwater, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Stockton-Lodi, CA MSA" -Metropolitan and Micropolitan Statistical Area "Storm Lake, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Sturgis, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Sulphur Springs, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Summerville, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Summit Park, UT MicroSA" -Metropolitan and Micropolitan Statistical Area "Sumter, SC MSA" -Metropolitan and Micropolitan Statistical Area "Sunbury, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Susanville, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Sweetwater, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Syracuse, NY MSA" -Metropolitan and Micropolitan Statistical Area "Tahlequah, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Talladega-Sylacauga, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Tallahassee, FL MSA" -Metropolitan and Micropolitan Statistical Area "Tampa-St. Petersburg-Clearwater, FL MSA" -Metropolitan and Micropolitan Statistical Area "Taos, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Taylorville, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Terre Haute, IN MSA" -Metropolitan and Micropolitan Statistical Area "Texarkana, TX-AR MSA" -Metropolitan and Micropolitan Statistical Area "The Dalles, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "The Villages, FL MSA" -Metropolitan and Micropolitan Statistical Area "Thomaston, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Thomasville, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Tiffin, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Tifton, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Toccoa, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Toledo, OH MSA" -Metropolitan and Micropolitan Statistical Area "Topeka, KS MSA" -Metropolitan and Micropolitan Statistical Area "Torrington, CT MicroSA" -Metropolitan and Micropolitan Statistical Area "Traverse City, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Trenton, NJ MSA" -Metropolitan and Micropolitan Statistical Area "Troy, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Truckee-Grass Valley, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Tucson, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Tullahoma-Manchester, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Tulsa, OK MSA" -Metropolitan and Micropolitan Statistical Area "Tupelo, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Tuscaloosa, AL MSA" -Metropolitan and Micropolitan Statistical Area "Twin Falls, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Tyler, TX MSA" -Metropolitan and Micropolitan Statistical Area "Ukiah, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Union City, TN-KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Urban Honolulu, HI MSA" -Metropolitan and Micropolitan Statistical Area "Urbana, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Utica-Rome, NY MSA" -Metropolitan and Micropolitan Statistical Area "Uvalde, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Valdosta, GA MSA" -Metropolitan and Micropolitan Statistical Area "Vallejo-Fairfield, CA MSA" -Metropolitan and Micropolitan Statistical Area "Valley, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Van Wert, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Vermillion, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Vernal, UT MicroSA" -Metropolitan and Micropolitan Statistical Area "Vernon, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Vicksburg, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Victoria, TX MSA" -Metropolitan and Micropolitan Statistical Area "Vidalia, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Vincennes, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Vineland-Bridgeton, NJ MSA" -Metropolitan and Micropolitan Statistical Area "Vineyard Haven, MA MicroSA" -Metropolitan and Micropolitan Statistical Area "Virginia Beach-Norfolk-Newport News, VA-NC MSA" -Metropolitan and Micropolitan Statistical Area "Visalia-Porterville, CA MSA" -Metropolitan and Micropolitan Statistical Area "Wabash, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Waco, TX MSA" -Metropolitan and Micropolitan Statistical Area "Wahpeton, ND-MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Walla Walla, WA MSA" -Metropolitan and Micropolitan Statistical Area "Wapakoneta, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Warner Robins, GA MSA" -Metropolitan and Micropolitan Statistical Area "Warren, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Warrensburg, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Warsaw, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Washington Court House, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Washington, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Washington, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Washington-Arlington-Alexandria, DC-VA-MD-WV MSA" -Metropolitan and Micropolitan Statistical Area "Waterloo-Cedar Falls, IA MSA" -Metropolitan and Micropolitan Statistical Area "Watertown, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Watertown-Fort Atkinson, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Watertown-Fort Drum, NY MSA" -Metropolitan and Micropolitan Statistical Area "Wauchula, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Wausau, WI MSA" -Metropolitan and Micropolitan Statistical Area "Waycross, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Weatherford, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Weirton-Steubenville, WV-OH MSA" -Metropolitan and Micropolitan Statistical Area "Wenatchee, WA MSA" -Metropolitan and Micropolitan Statistical Area "West Plains, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Wheeling, WV-OH MSA" -Metropolitan and Micropolitan Statistical Area "Whitewater-Elkhorn, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Wichita Falls, TX MSA" -Metropolitan and Micropolitan Statistical Area "Wichita, KS MSA" -Metropolitan and Micropolitan Statistical Area "Williamsport, PA MSA" -Metropolitan and Micropolitan Statistical Area "Williston, ND MicroSA" -Metropolitan and Micropolitan Statistical Area "Willmar, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Wilmington, NC MSA" -Metropolitan and Micropolitan Statistical Area "Wilmington, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Wilson, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Winchester, VA-WV MSA" -Metropolitan and Micropolitan Statistical Area "Winnemucca, NV MicroSA" -Metropolitan and Micropolitan Statistical Area "Winona, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Winston-Salem, NC MSA" -Metropolitan and Micropolitan Statistical Area "Wisconsin Rapids-Marshfield, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Woodward, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Wooster, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Worcester, MA-CT MSA" -Metropolitan and Micropolitan Statistical Area "Worthington, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Yakima, WA MSA" -Metropolitan and Micropolitan Statistical Area "Yankton, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "York-Hanover, PA MSA" -Metropolitan and Micropolitan Statistical Area "Youngstown-Warren-Boardman, OH-PA MSA" -Metropolitan and Micropolitan Statistical Area "Yuba City, CA MSA" -Metropolitan and Micropolitan Statistical Area "Yuma, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Zanesville, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Zapata, TX MicroSA" -Metropolitan and Micropolitan Statistical Area None -Misc Extra Refrigerator "EF 15.9, Fed Standard, bottom freezer-reference fridge" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=573 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator "EF 19.8, bottom freezer" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=458 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator "EF 6.9, Average Installed" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1102 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator "EF 6.9, National Average" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1102 extra_refrigerator_usage_multiplier=0.221 -Misc Extra Refrigerator EF 10.2 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=748 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 10.5 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=727 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 15.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=480 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 17.6 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=433 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 19.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=383 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 21.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=348 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 6.7 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1139 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator None ResStockArguments extra_refrigerator_present=false extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=0 extra_refrigerator_usage_multiplier=0 -Misc Extra Refrigerator Void -Misc Freezer "EF 12, Average Installed" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=935 freezer_usage_multiplier=1.0 -Misc Freezer "EF 12, National Average" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=935 freezer_usage_multiplier=0.342 -Misc Freezer "EF 16, 2001 Fed Standard-reference freezer" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=712 freezer_usage_multiplier=1.0 -Misc Freezer "EF 18, 2008 Energy Star" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=641 freezer_usage_multiplier=1.0 -Misc Freezer "EF 20, 2008 Energy Star Most Efficient" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=568 freezer_usage_multiplier=1.0 -Misc Freezer None ResStockArguments freezer_present=false freezer_location=auto freezer_rated_annual_kwh=0 freezer_usage_multiplier=0 -Misc Freezer Void -Misc Gas Fireplace Gas Fireplace ResStockArguments misc_fuel_loads_fireplace_present=true misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=auto misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=1.0 -Misc Gas Fireplace National Average ResStockArguments misc_fuel_loads_fireplace_present=true misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=auto misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=0.032 -Misc Gas Fireplace None ResStockArguments misc_fuel_loads_fireplace_present=false misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=0 misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=0 -Misc Gas Grill Gas Grill ResStockArguments misc_fuel_loads_grill_present=true misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=auto misc_fuel_loads_grill_usage_multiplier=1.0 -Misc Gas Grill National Average ResStockArguments misc_fuel_loads_grill_present=true misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=auto misc_fuel_loads_grill_usage_multiplier=0.029 -Misc Gas Grill None ResStockArguments misc_fuel_loads_grill_present=false misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=0 misc_fuel_loads_grill_usage_multiplier=0 -Misc Gas Lighting Gas Lighting ResStockArguments misc_fuel_loads_lighting_present=true misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=auto misc_fuel_loads_lighting_usage_multiplier=1.0 -Misc Gas Lighting National Average ResStockArguments misc_fuel_loads_lighting_present=true misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=auto misc_fuel_loads_lighting_usage_multiplier=0.012 -Misc Gas Lighting None ResStockArguments misc_fuel_loads_lighting_present=false misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=0 misc_fuel_loads_lighting_usage_multiplier=0 -Misc Hot Tub Spa Electricity ResStockArguments permanent_spa_present=true permanent_spa_pump_annual_kwh=auto permanent_spa_pump_usage_multiplier=1.0 permanent_spa_heater_type=electric resistance permanent_spa_heater_annual_kwh=auto permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=1.0 -Misc Hot Tub Spa Natural Gas ResStockArguments permanent_spa_present=true permanent_spa_pump_annual_kwh=auto permanent_spa_pump_usage_multiplier=1.0 permanent_spa_heater_type=gas fired permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=auto permanent_spa_heater_usage_multiplier=1.0 -Misc Hot Tub Spa None ResStockArguments permanent_spa_present=false permanent_spa_pump_annual_kwh=0 permanent_spa_pump_usage_multiplier=0 permanent_spa_heater_type=none permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=0 -Misc Hot Tub Spa Other Fuel ResStockArguments permanent_spa_present=false permanent_spa_pump_annual_kwh=0 permanent_spa_pump_usage_multiplier=0 permanent_spa_heater_type=none permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=0 -Misc Hot Tub Spa Void -Misc Pool Has Pool ResStockArguments pool_present=true -Misc Pool None ResStockArguments pool_present=false -Misc Pool Void -Misc Pool Heater "Electric, 78F" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.8 -Misc Pool Heater "Electric, Covered" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.3 -Misc Pool Heater "Electric, Covered, 78F" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.2 -Misc Pool Heater "Gas, 78F" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.8 -Misc Pool Heater "Gas, Covered" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.3 -Misc Pool Heater "Gas, Covered, 78F" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.2 -Misc Pool Heater Electricity ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=1.0 -Misc Pool Heater Natural Gas ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=1.0 -Misc Pool Heater None ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 -Misc Pool Heater Other Fuel ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 -Misc Pool Heater Solar ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 -Misc Pool Heater Unheated ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 -Misc Pool Pump 0.75 HP Pump ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=0.75 -Misc Pool Pump 1.0 HP Pump ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=1.0 -Misc Pool Pump National Average ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=0.075 -Misc Pool Pump None ResStockArguments pool_pump_annual_kwh=0 pool_pump_usage_multiplier=0 -Misc Well Pump High Efficiency ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=0.67 misc_plug_loads_well_pump_2_usage_multiplier=1.0 -Misc Well Pump National Average ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=0.127 misc_plug_loads_well_pump_2_usage_multiplier=1.0 -Misc Well Pump None ResStockArguments misc_plug_loads_well_pump_present=false misc_plug_loads_well_pump_annual_kwh=0 misc_plug_loads_well_pump_usage_multiplier=0 misc_plug_loads_well_pump_2_usage_multiplier=0 -Misc Well Pump Typical Efficiency ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=1.0 misc_plug_loads_well_pump_2_usage_multiplier=1.0 -Natural Ventilation "Cooling Season, 7 days/wk" ResStockArguments window_fraction_operable=0.67 -Natural Ventilation None ResStockArguments window_fraction_operable=0 -Neighbors "Left/Right at 15ft, Front/Back at 80ft" ResStockArguments neighbor_front_distance=80 neighbor_back_distance=80 neighbor_left_distance=15 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 12 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=12 neighbor_right_distance=12 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 2 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=2 neighbor_right_distance=2 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 27 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=27 neighbor_right_distance=27 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 4 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=4 neighbor_right_distance=4 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 7 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=7 neighbor_right_distance=7 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Back at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=15 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Front at 15ft ResStockArguments neighbor_front_distance=15 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Left at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=15 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Left/Right at 10ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=10 neighbor_right_distance=10 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Left/Right at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=15 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Left/Right at 20ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=20 neighbor_right_distance=20 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors None ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Right at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Occupants 0 ResStockArguments geometry_unit_num_occupants=0 general_water_use_usage_multiplier=auto -Occupants 1 ResStockArguments geometry_unit_num_occupants=1 general_water_use_usage_multiplier=auto -Occupants 10+ ResStockArguments geometry_unit_num_occupants=11 general_water_use_usage_multiplier=auto -Occupants 2 ResStockArguments geometry_unit_num_occupants=2 general_water_use_usage_multiplier=auto -Occupants 3 ResStockArguments geometry_unit_num_occupants=3 general_water_use_usage_multiplier=auto -Occupants 4 ResStockArguments geometry_unit_num_occupants=4 general_water_use_usage_multiplier=auto -Occupants 5 ResStockArguments geometry_unit_num_occupants=5 general_water_use_usage_multiplier=auto -Occupants 6 ResStockArguments geometry_unit_num_occupants=6 general_water_use_usage_multiplier=auto -Occupants 7 ResStockArguments geometry_unit_num_occupants=7 general_water_use_usage_multiplier=auto -Occupants 8 ResStockArguments geometry_unit_num_occupants=8 general_water_use_usage_multiplier=auto -Occupants 9 ResStockArguments geometry_unit_num_occupants=9 general_water_use_usage_multiplier=auto -Orientation ENE ResStockArguments geometry_unit_orientation=68 -Orientation ESE ResStockArguments geometry_unit_orientation=113 -Orientation East ResStockArguments geometry_unit_orientation=90 -Orientation NNE ResStockArguments geometry_unit_orientation=23 -Orientation NNW ResStockArguments geometry_unit_orientation=338 -Orientation North ResStockArguments geometry_unit_orientation=0 -Orientation Northeast ResStockArguments geometry_unit_orientation=45 -Orientation Northwest ResStockArguments geometry_unit_orientation=315 -Orientation SSE ResStockArguments geometry_unit_orientation=158 -Orientation SSW ResStockArguments geometry_unit_orientation=203 -Orientation South ResStockArguments geometry_unit_orientation=180 -Orientation Southeast ResStockArguments geometry_unit_orientation=135 -Orientation Southwest ResStockArguments geometry_unit_orientation=225 -Orientation WNW ResStockArguments geometry_unit_orientation=293 -Orientation WSW ResStockArguments geometry_unit_orientation=248 -Orientation West ResStockArguments geometry_unit_orientation=270 -Overhangs "2ft, All Windows" ResStockArguments overhangs_front_depth=2 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=2 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=2 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=2 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs "2ft, Back Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=2 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs "2ft, Front Windows" ResStockArguments overhangs_front_depth=2 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs "2ft, Left Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=2 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs "2ft, Right Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=2 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs None ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -PUMA "AK, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AK, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AK, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AK, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AK, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00115" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00116" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00117" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00118" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00119" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00120" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00121" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00122" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00123" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00124" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00125" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00126" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00127" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00128" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00129" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00130" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00131" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00132" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00133" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00134" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03709" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03710" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03711" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03712" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03713" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03714" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03715" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03716" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03717" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03718" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03719" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03720" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03721" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03722" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03723" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03724" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03725" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03726" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03727" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03728" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03729" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03730" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03731" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03732" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03733" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03734" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03735" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03736" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03737" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03738" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03739" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03740" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03741" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03742" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03743" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03744" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03745" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03746" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03747" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03748" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03749" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03750" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03751" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03752" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03753" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03754" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03755" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03756" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03757" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03758" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03759" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03760" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03761" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03762" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03763" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03764" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03765" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03766" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03767" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03768" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03769" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 04701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 04702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05911" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05912" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05913" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05914" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05915" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05916" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05917" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05918" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06511" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06512" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06513" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06514" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06515" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06709" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06710" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06711" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06712" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07115" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07311" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07312" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07313" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07314" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07315" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07316" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07317" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07318" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07319" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07320" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07321" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07322" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08511" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08512" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08513" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08514" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 10100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 10701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 10702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 10703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00808" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00809" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00810" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00811" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00812" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00813" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00814" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00815" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00816" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00817" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00818" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00819" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00820" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00821" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00822" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00823" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00824" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 04104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 04105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 04106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DC, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DC, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DC, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DC, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DC, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DE, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DE, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DE, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DE, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DE, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DE, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 02103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 06100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 06300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 06901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 06902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 06903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08606" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08607" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08608" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08609" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08610" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08611" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08612" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08613" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08614" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08615" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08616" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08617" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08618" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08619" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08620" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08621" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08622" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08623" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08624" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09911" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 12100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 12701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 12702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 12703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 12704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 05001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 05002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 06001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 06002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03009" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03407" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03408" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03409" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03410" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03411" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03412" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03413" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03414" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03415" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03416" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03417" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03418" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03419" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03420" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03421" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03422" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03520" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03521" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03522" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03523" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03524" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03525" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03526" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03527" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03528" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03529" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03530" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03531" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03532" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03210" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03211" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03212" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03213" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01405" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01406" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01407" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01408" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01409" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01410" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01808" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ND, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ND, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ND, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ND, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ND, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00405" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00406" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00407" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00408" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00409" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00410" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00411" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00412" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00413" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03210" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03211" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03212" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03311" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03312" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03313" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03709" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03710" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03808" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03809" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03810" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04009" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04010" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04011" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04012" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04013" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04014" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04015" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04016" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04017" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04018" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01314" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01316" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01317" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01318" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01319" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01320" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01321" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01322" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01323" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01324" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03210" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03211" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 04001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 04002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SD, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SD, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SD, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SD, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SD, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SD, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02311" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02312" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02313" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02314" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02315" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02316" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02317" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02318" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02319" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02320" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02321" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02322" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02511" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02512" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02513" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02514" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02515" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02516" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04606" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04607" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04608" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04609" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04610" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04611" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04612" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04613" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04614" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04615" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04616" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04617" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04618" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04619" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04620" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04621" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04622" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04623" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04624" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04625" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04626" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04627" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04628" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04629" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04630" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04631" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04632" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04633" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04634" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04635" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04636" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04637" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04638" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05911" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05912" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05913" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05914" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05915" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05916" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 05001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 11001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 11002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 13001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 21001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35009" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 49001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 49002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 49003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 49004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 53001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 57001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 57002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 10701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 10702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 10703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51010" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51020" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51040" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51044" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51045" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51080" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51084" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51085" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51087" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51089" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51090" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51095" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51096" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51097" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51115" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51120" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51125" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51135" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51145" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51154" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51155" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51164" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51165" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51167" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51175" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51186" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51215" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51224" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51225" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51235" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51244" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51245" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51246" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51255" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 55001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 55002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VT, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VT, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VT, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VT, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11606" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11607" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11608" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11609" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11610" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11611" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11612" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11613" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11614" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11615" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11616" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 10000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 20000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 30000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 40101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 40301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 40701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 41001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 41002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 41003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 41004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 41005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 50000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 55101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 55102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 55103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 70101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 70201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 70301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WY, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WY, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WY, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WY, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WY, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA Metro Status "In metro area, not/partially in principal city" -PUMA Metro Status "In metro area, principal city" -PUMA Metro Status Not/partially in metro area -PV Orientation East ResStockArguments pv_system_array_azimuth=90 pv_system_2_array_azimuth=0 -PV Orientation None ResStockArguments pv_system_array_azimuth=180 pv_system_2_array_azimuth=0 -PV Orientation North ResStockArguments pv_system_array_azimuth=0 pv_system_2_array_azimuth=0 -PV Orientation Northeast ResStockArguments pv_system_array_azimuth=45 pv_system_2_array_azimuth=0 -PV Orientation Northwest ResStockArguments pv_system_array_azimuth=315 pv_system_2_array_azimuth=0 -PV Orientation South ResStockArguments pv_system_array_azimuth=180 pv_system_2_array_azimuth=0 -PV Orientation Southeast ResStockArguments pv_system_array_azimuth=135 pv_system_2_array_azimuth=0 -PV Orientation Southwest ResStockArguments pv_system_array_azimuth=225 pv_system_2_array_azimuth=0 -PV Orientation West ResStockArguments pv_system_array_azimuth=270 pv_system_2_array_azimuth=0 -PV System Size 1.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=1000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 11.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=11000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 13.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=13000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 3.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=3000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 5.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=5000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 7.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=7000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 9.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=9000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size None ResStockArguments pv_system_present=false pv_system_module_type=auto pv_system_max_power_output=0 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -Plug Load Diversity 100% ResStockArguments misc_plug_loads_other_2_usage_multiplier=1.0 misc_plug_loads_television_2_usage_multiplier=1.0 -Plug Load Diversity 150% ResStockArguments misc_plug_loads_other_2_usage_multiplier=1.5 misc_plug_loads_television_2_usage_multiplier=1.5 -Plug Load Diversity 200% ResStockArguments misc_plug_loads_other_2_usage_multiplier=2.0 misc_plug_loads_television_2_usage_multiplier=2.0 -Plug Load Diversity 25% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.25 misc_plug_loads_television_2_usage_multiplier=0.25 -Plug Load Diversity 400% ResStockArguments misc_plug_loads_other_2_usage_multiplier=4.0 misc_plug_loads_television_2_usage_multiplier=4.0 -Plug Load Diversity 50% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.5 misc_plug_loads_television_2_usage_multiplier=0.5 -Plug Load Diversity 75% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.75 misc_plug_loads_television_2_usage_multiplier=0.75 -Plug Loads 100% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.0 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.0 -Plug Loads 101% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.01 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.01 -Plug Loads 102% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.02 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.02 -Plug Loads 103% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.03 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.03 -Plug Loads 104% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.04 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.04 -Plug Loads 105% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.05 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.05 -Plug Loads 106% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.06 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.06 -Plug Loads 108% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.08 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.08 -Plug Loads 110% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.1 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.1 -Plug Loads 113% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.13 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.13 -Plug Loads 119% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.19 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.19 -Plug Loads 121% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.21 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.21 -Plug Loads 123% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.23 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.23 -Plug Loads 134% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.34 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.34 -Plug Loads 137% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.37 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.37 -Plug Loads 140% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.4 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.4 -Plug Loads 144% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.44 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.44 -Plug Loads 166% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.66 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.66 -Plug Loads 78% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.78 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.78 -Plug Loads 79% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.79 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.79 -Plug Loads 82% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.82 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.82 -Plug Loads 84% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.84 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.84 -Plug Loads 85% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.85 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.85 -Plug Loads 86% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.86 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.86 -Plug Loads 89% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.89 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.89 -Plug Loads 91% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.91 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.91 -Plug Loads 93% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.93 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.93 -Plug Loads 94% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.94 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.94 -Plug Loads 95% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.95 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.95 -Plug Loads 96% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.96 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.96 -Plug Loads 97% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.97 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.97 -Plug Loads 99% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.99 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.99 -Power Outage Summer ResStockArguments schedules_power_outage_periods=Jul 1 5 - Jul 31 14 schedules_power_outage_periods_window_natvent_availability=always available -REEDS Balancing Area 1 -REEDS Balancing Area 10 -REEDS Balancing Area 100 -REEDS Balancing Area 101 -REEDS Balancing Area 102 -REEDS Balancing Area 103 -REEDS Balancing Area 104 -REEDS Balancing Area 105 -REEDS Balancing Area 106 -REEDS Balancing Area 107 -REEDS Balancing Area 108 -REEDS Balancing Area 109 -REEDS Balancing Area 11 -REEDS Balancing Area 110 -REEDS Balancing Area 111 -REEDS Balancing Area 112 -REEDS Balancing Area 113 -REEDS Balancing Area 114 -REEDS Balancing Area 115 -REEDS Balancing Area 116 -REEDS Balancing Area 117 -REEDS Balancing Area 118 -REEDS Balancing Area 119 -REEDS Balancing Area 12 -REEDS Balancing Area 120 -REEDS Balancing Area 121 -REEDS Balancing Area 122 -REEDS Balancing Area 123 -REEDS Balancing Area 124 -REEDS Balancing Area 125 -REEDS Balancing Area 126 -REEDS Balancing Area 127 -REEDS Balancing Area 128 -REEDS Balancing Area 129 -REEDS Balancing Area 13 -REEDS Balancing Area 130 -REEDS Balancing Area 131 -REEDS Balancing Area 132 -REEDS Balancing Area 133 -REEDS Balancing Area 134 -REEDS Balancing Area 14 -REEDS Balancing Area 15 -REEDS Balancing Area 16 -REEDS Balancing Area 17 -REEDS Balancing Area 18 -REEDS Balancing Area 19 -REEDS Balancing Area 2 -REEDS Balancing Area 20 -REEDS Balancing Area 21 -REEDS Balancing Area 22 -REEDS Balancing Area 23 -REEDS Balancing Area 24 -REEDS Balancing Area 25 -REEDS Balancing Area 26 -REEDS Balancing Area 27 -REEDS Balancing Area 28 -REEDS Balancing Area 29 -REEDS Balancing Area 3 -REEDS Balancing Area 30 -REEDS Balancing Area 31 -REEDS Balancing Area 32 -REEDS Balancing Area 33 -REEDS Balancing Area 34 -REEDS Balancing Area 35 -REEDS Balancing Area 36 -REEDS Balancing Area 37 -REEDS Balancing Area 38 -REEDS Balancing Area 39 -REEDS Balancing Area 4 -REEDS Balancing Area 40 -REEDS Balancing Area 41 -REEDS Balancing Area 42 -REEDS Balancing Area 43 -REEDS Balancing Area 44 -REEDS Balancing Area 45 -REEDS Balancing Area 46 -REEDS Balancing Area 47 -REEDS Balancing Area 48 -REEDS Balancing Area 49 -REEDS Balancing Area 5 -REEDS Balancing Area 50 -REEDS Balancing Area 51 -REEDS Balancing Area 52 -REEDS Balancing Area 53 -REEDS Balancing Area 54 -REEDS Balancing Area 55 -REEDS Balancing Area 56 -REEDS Balancing Area 57 -REEDS Balancing Area 58 -REEDS Balancing Area 59 -REEDS Balancing Area 6 -REEDS Balancing Area 60 -REEDS Balancing Area 61 -REEDS Balancing Area 62 -REEDS Balancing Area 63 -REEDS Balancing Area 64 -REEDS Balancing Area 65 -REEDS Balancing Area 66 -REEDS Balancing Area 67 -REEDS Balancing Area 68 -REEDS Balancing Area 69 -REEDS Balancing Area 7 -REEDS Balancing Area 70 -REEDS Balancing Area 71 -REEDS Balancing Area 72 -REEDS Balancing Area 73 -REEDS Balancing Area 74 -REEDS Balancing Area 75 -REEDS Balancing Area 76 -REEDS Balancing Area 77 -REEDS Balancing Area 78 -REEDS Balancing Area 79 -REEDS Balancing Area 8 -REEDS Balancing Area 80 -REEDS Balancing Area 81 -REEDS Balancing Area 82 -REEDS Balancing Area 83 -REEDS Balancing Area 84 -REEDS Balancing Area 85 -REEDS Balancing Area 86 -REEDS Balancing Area 87 -REEDS Balancing Area 88 -REEDS Balancing Area 89 -REEDS Balancing Area 9 -REEDS Balancing Area 90 -REEDS Balancing Area 91 -REEDS Balancing Area 92 -REEDS Balancing Area 93 -REEDS Balancing Area 94 -REEDS Balancing Area 95 -REEDS Balancing Area 96 -REEDS Balancing Area 97 -REEDS Balancing Area 98 -REEDS Balancing Area 99 -REEDS Balancing Area None -Radiant Barrier No ResStockArguments radiant_barrier_attic_location=none radiant_barrier_grade=1 -Radiant Barrier None ResStockArguments radiant_barrier_attic_location=none radiant_barrier_grade=1 -Radiant Barrier Yes ResStockArguments radiant_barrier_attic_location=Attic roof only radiant_barrier_grade=1 -Range Spot Vent Hour Hour0 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=0 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour1 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=1 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour10 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=10 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour11 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=11 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour12 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=12 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour13 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=13 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour14 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=14 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour15 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=15 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour16 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=16 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour17 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=17 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour18 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=18 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour19 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=19 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour2 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=2 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour20 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=20 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour21 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=21 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour22 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=22 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour23 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=23 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour3 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=3 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour4 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=4 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour5 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=5 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour6 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=6 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour7 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=7 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour8 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=8 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour9 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=9 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Refrigerator EF 10.2 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=748 -Refrigerator EF 10.5 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=727 -Refrigerator EF 15.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=480 -Refrigerator EF 17.6 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=433 -Refrigerator EF 19.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=383 -Refrigerator EF 21.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=348 -Refrigerator EF 6.7 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=1139 -Refrigerator None ResStockArguments refrigerator_present=false refrigerator_location=auto refrigerator_rated_annual_kwh=0 -Refrigerator Void -Refrigerator Usage Level 100% Usage ResStockArguments refrigerator_usage_multiplier=1.0 -Refrigerator Usage Level 105% Usage ResStockArguments refrigerator_usage_multiplier=1.05 -Refrigerator Usage Level 95% Usage ResStockArguments refrigerator_usage_multiplier=0.95 -Roof Material "Asphalt Shingles, Dark" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=dark -Roof Material "Asphalt Shingles, Light" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=light -Roof Material "Asphalt Shingles, Medium" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=medium -Roof Material "Asphalt Shingles, White or cool colors" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=reflective -Roof Material "Composition Shingles, White or Cool Colors" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=reflective -Roof Material "Metal, Cool Colors" ResStockArguments roof_material_type=metal surfacing roof_color=reflective -Roof Material "Metal, Dark" ResStockArguments roof_material_type=metal surfacing roof_color=dark -Roof Material "Metal, Light" ResStockArguments roof_material_type=metal surfacing roof_color=light -Roof Material "Metal, Medium" ResStockArguments roof_material_type=metal surfacing roof_color=medium -Roof Material "Metal, White" ResStockArguments roof_material_type=metal surfacing roof_color=reflective -Roof Material "Tile, Clay or Ceramic" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium -Roof Material "Tile, Clay or Ceramic, White or Cool Colors" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective -Roof Material "Tile, Concrete" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium -Roof Material "Tile, Concrete, White or Cool Colors" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective -Roof Material "Tile, Dark" ResStockArguments roof_material_type=slate or tile shingles roof_color=dark -Roof Material "Tile, Light" ResStockArguments roof_material_type=slate or tile shingles roof_color=light -Roof Material "Tile, Medium" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium -Roof Material "Tile, White" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective -Roof Material Composition Shingles ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=medium -Roof Material Galvanized Steel ResStockArguments roof_material_type=metal surfacing roof_color=medium -Roof Material Slate ResStockArguments roof_material_type=slate or tile shingles roof_color=medium -Roof Material Wood Shingles ResStockArguments roof_material_type=wood shingles or shakes roof_color=medium -Solar Hot Water "40 sqft, South, 10 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=10 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, South, Latitude - 15 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=latitude-15 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, South, Roof Pitch" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, West, 70 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=70 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, West, Latitude + 15 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=latitude+15 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, West, Roof Pitch" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water None ResStockArguments solar_thermal_system_type=none solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -State AK ResStockArguments site_state_code=AK -State AL ResStockArguments site_state_code=AL -State AR ResStockArguments site_state_code=AR -State AZ ResStockArguments site_state_code=AZ -State CA ResStockArguments site_state_code=CA -State CO ResStockArguments site_state_code=CO -State CT ResStockArguments site_state_code=CT -State DC ResStockArguments site_state_code=DC -State DE ResStockArguments site_state_code=DE -State FL ResStockArguments site_state_code=FL -State GA ResStockArguments site_state_code=GA -State HI ResStockArguments site_state_code=HI -State IA ResStockArguments site_state_code=IA -State ID ResStockArguments site_state_code=ID -State IL ResStockArguments site_state_code=IL -State IN ResStockArguments site_state_code=IN -State KS ResStockArguments site_state_code=KS -State KY ResStockArguments site_state_code=KY -State LA ResStockArguments site_state_code=LA -State MA ResStockArguments site_state_code=MA -State MD ResStockArguments site_state_code=MD -State ME ResStockArguments site_state_code=ME -State MI ResStockArguments site_state_code=MI -State MN ResStockArguments site_state_code=MN -State MO ResStockArguments site_state_code=MO -State MS ResStockArguments site_state_code=MS -State MT ResStockArguments site_state_code=MT -State NC ResStockArguments site_state_code=NC -State ND ResStockArguments site_state_code=ND -State NE ResStockArguments site_state_code=NE -State NH ResStockArguments site_state_code=NH -State NJ ResStockArguments site_state_code=NJ -State NM ResStockArguments site_state_code=NM -State NV ResStockArguments site_state_code=NV -State NY ResStockArguments site_state_code=NY -State OH ResStockArguments site_state_code=OH -State OK ResStockArguments site_state_code=OK -State OR ResStockArguments site_state_code=OR -State PA ResStockArguments site_state_code=PA -State RI ResStockArguments site_state_code=RI -State SC ResStockArguments site_state_code=SC -State SD ResStockArguments site_state_code=SD -State TN ResStockArguments site_state_code=TN -State TX ResStockArguments site_state_code=TX -State UT ResStockArguments site_state_code=UT -State VA ResStockArguments site_state_code=VA -State VT ResStockArguments site_state_code=VT -State WA ResStockArguments site_state_code=WA -State WI ResStockArguments site_state_code=WI -State WV ResStockArguments site_state_code=WV -State WY ResStockArguments site_state_code=WY -State Metro Median Income 0-30% -State Metro Median Income 100-120% -State Metro Median Income 120-150% -State Metro Median Income 150%+ -State Metro Median Income 30-60% -State Metro Median Income 60-80% -State Metro Median Income 80-100% -State Metro Median Income Not Available -Storm Windows Clear ResStockArguments window_storm_type=clear -Storm Windows Low-E ResStockArguments window_storm_type=low-e -Tenure Not Available -Tenure Owner -Tenure Renter -Usage Level Average -Usage Level High -Usage Level Low -Usage Level Medium -Vacancy Status Occupied -Vacancy Status Vacant ResStockArguments schedules_vacancy_periods=Jan 1 - Dec 31 -Vintage 1940s ResStockArguments vintage=1940s year_built=auto -Vintage 1950s ResStockArguments vintage=1950s year_built=auto -Vintage 1960s ResStockArguments vintage=1960s year_built=auto -Vintage 1970s ResStockArguments vintage=1970s year_built=auto -Vintage 1980s ResStockArguments vintage=1980s year_built=auto -Vintage 1990s ResStockArguments vintage=1990s year_built=auto -Vintage 2000s ResStockArguments vintage=2000s year_built=auto -Vintage 2010s ResStockArguments vintage=2010s year_built=auto -Vintage <1940 ResStockArguments vintage=<1940 year_built=auto -Vintage <1950 ResStockArguments vintage=<1950 year_built=auto -Vintage ACS 1940-59 -Vintage ACS 1960-79 -Vintage ACS 1980-99 -Vintage ACS 2000-09 -Vintage ACS 2010s -Vintage ACS <1940 -Water Heater Efficiency "Electric Heat Pump, 50 gal, 3.45 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Electric Heat Pump, 50 gal, 3.45 UEF, 140F" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=140 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Electric Heat Pump, 66 gal, 3.35 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=66 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.35 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Electric Heat Pump, 80 gal, 3.45 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=80 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Natural Gas Premium, Condensing" ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Natural Gas Tankless, Condensing" ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=natural gas water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.96 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Propane Premium, Condensing" ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Electric Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=electricity water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.95 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Electric Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=electricity water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.92 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Electric Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=electricity water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.99 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency FIXME Fuel Oil Indirect ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.62 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Fuel Oil Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.68 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Fuel Oil Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.62 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Natural Gas Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.67 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Natural Gas Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Natural Gas Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=natural gas water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Other Fuel ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=wood water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Propane Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.67 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Propane Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Propane Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=propane water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Fuel Electricity -Water Heater Fuel Fuel Oil -Water Heater Fuel Natural Gas -Water Heater Fuel Other Fuel -Water Heater Fuel Propane -Water Heater In Unit No -Water Heater In Unit Yes -Water Heater Location Attic ResStockArguments water_heater_location=attic -Water Heater Location Conditioned Mechanical Room ResStockArguments water_heater_location=other heated space -Water Heater Location Crawlspace ResStockArguments water_heater_location=crawlspace -Water Heater Location Garage ResStockArguments water_heater_location=garage -Water Heater Location Heated Basement ResStockArguments water_heater_location=basement - conditioned -Water Heater Location Living Space ResStockArguments water_heater_location=conditioned space -Water Heater Location Outside ResStockArguments water_heater_location=other exterior -Water Heater Location Unheated Basement ResStockArguments water_heater_location=basement - unconditioned -Window Areas F10 B30 L10 R10 ResStockArguments window_front_wwr=0.1 window_back_wwr=0.3 window_left_wwr=0.1 window_right_wwr=0.1 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F12 B12 L12 R12 ResStockArguments window_front_wwr=0.12 window_back_wwr=0.12 window_left_wwr=0.12 window_right_wwr=0.12 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F15 B15 L0 R0 ResStockArguments window_front_wwr=0.15 window_back_wwr=0.15 window_left_wwr=0 window_right_wwr=0 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F15 B15 L15 R15 ResStockArguments window_front_wwr=0.15 window_back_wwr=0.15 window_left_wwr=0.15 window_right_wwr=0.15 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F18 B18 L18 R18 ResStockArguments window_front_wwr=0.18 window_back_wwr=0.18 window_left_wwr=0.18 window_right_wwr=0.18 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F30 B30 L30 R30 ResStockArguments window_front_wwr=0.30 window_back_wwr=0.30 window_left_wwr=0.30 window_right_wwr=0.30 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F6 B6 L6 R6 ResStockArguments window_front_wwr=0.06 window_back_wwr=0.06 window_left_wwr=0.06 window_right_wwr=0.06 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F9 B9 L9 R9 ResStockArguments window_front_wwr=0.09 window_back_wwr=0.09 window_left_wwr=0.09 window_right_wwr=0.09 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas None ResStockArguments window_front_wwr=0.0 window_back_wwr=0.0 window_left_wwr=0.0 window_right_wwr=0.0 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Windows "Double, Clear, Metal, Air" ResStockArguments window_ufactor=0.76 window_shgc=0.67 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Metal, Air, Exterior Clear Storm" ResStockArguments window_ufactor=0.55 window_shgc=0.51 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.49 window_shgc=0.44 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Non-metal, Air" ResStockArguments window_ufactor=0.49 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Non-metal, Air, Exterior Clear Storm" ResStockArguments window_ufactor=0.34 window_shgc=0.49 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Non-metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.28 window_shgc=0.42 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Thermal-Break, Air" ResStockArguments window_ufactor=0.63 window_shgc=0.62 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Low-E, H-Gain" ResStockArguments window_ufactor=0.29 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Low-E, L-Gain" ResStockArguments window_ufactor=0.26 window_shgc=0.31 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Low-E, Non-metal, Air, L-Gain" ResStockArguments window_ufactor=0.37 window_shgc=0.3 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Low-E, Non-metal, Air, M-Gain" ResStockArguments window_ufactor=0.38 window_shgc=0.44 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Metal" ResStockArguments window_ufactor=1.16 window_shgc=0.76 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Metal, Exterior Clear Storm" ResStockArguments window_ufactor=0.67 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.57 window_shgc=0.47 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Non-metal" ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Non-metal, Exterior Clear Storm" ResStockArguments window_ufactor=0.47 window_shgc=0.54 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Non-metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.36 window_shgc=0.46 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Triple, Low-E, Insulated, Argon, H-Gain" ResStockArguments window_ufactor=0.18 window_shgc=0.40 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Triple, Low-E, Insulated, Argon, L-Gain" ResStockArguments window_ufactor=0.17 window_shgc=0.27 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Triple, Low-E, Non-metal, Air, L-Gain" ResStockArguments window_ufactor=0.29 window_shgc=0.26 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows No Windows ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows Void +Parameter Name Option Name Measure Dir Measure Arg 1 Measure Arg 2 ... +AHS Region "CBSA Atlanta-Sandy Springs-Roswell, GA" +AHS Region "CBSA Boston-Cambridge-Newton, MA-NH" +AHS Region "CBSA Chicago-Naperville-Elgin, IL-IN-WI" +AHS Region "CBSA Dallas-Fort Worth-Arlington, TX" +AHS Region "CBSA Detroit-Warren-Dearborn, MI" +AHS Region "CBSA Houston-The Woodlands-Sugar Land, TX" +AHS Region "CBSA Los Angeles-Long Beach-Anaheim, CA" +AHS Region "CBSA Miami-Fort Lauderdale-West Palm Beach, FL" +AHS Region "CBSA New York-Newark-Jersey City, NY-NJ-PA" +AHS Region "CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD" +AHS Region "CBSA Phoenix-Mesa-Scottsdale, AZ" +AHS Region "CBSA Riverside-San Bernardino-Ontario, CA" +AHS Region "CBSA San Francisco-Oakland-Hayward, CA" +AHS Region "CBSA Seattle-Tacoma-Bellevue, WA" +AHS Region "CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV" +AHS Region Non-CBSA East North Central +AHS Region Non-CBSA East South Central +AHS Region Non-CBSA Middle Atlantic +AHS Region Non-CBSA Mountain +AHS Region Non-CBSA New England +AHS Region Non-CBSA Pacific +AHS Region Non-CBSA South Atlantic +AHS Region Non-CBSA West North Central +AHS Region Non-CBSA West South Central +AIANNH Area No +AIANNH Area Yes +ASHRAE IECC Climate Zone 2004 1A ResStockArguments site_iecc_zone=1A site_type=auto +ASHRAE IECC Climate Zone 2004 2A ResStockArguments site_iecc_zone=2A site_type=auto +ASHRAE IECC Climate Zone 2004 2B ResStockArguments site_iecc_zone=2B site_type=auto +ASHRAE IECC Climate Zone 2004 3A ResStockArguments site_iecc_zone=3A site_type=auto +ASHRAE IECC Climate Zone 2004 3B ResStockArguments site_iecc_zone=3B site_type=auto +ASHRAE IECC Climate Zone 2004 3C ResStockArguments site_iecc_zone=3C site_type=auto +ASHRAE IECC Climate Zone 2004 4A ResStockArguments site_iecc_zone=4A site_type=auto +ASHRAE IECC Climate Zone 2004 4B ResStockArguments site_iecc_zone=4B site_type=auto +ASHRAE IECC Climate Zone 2004 4C ResStockArguments site_iecc_zone=4C site_type=auto +ASHRAE IECC Climate Zone 2004 5A ResStockArguments site_iecc_zone=5A site_type=auto +ASHRAE IECC Climate Zone 2004 5B ResStockArguments site_iecc_zone=5B site_type=auto +ASHRAE IECC Climate Zone 2004 6A ResStockArguments site_iecc_zone=6A site_type=auto +ASHRAE IECC Climate Zone 2004 6B ResStockArguments site_iecc_zone=6B site_type=auto +ASHRAE IECC Climate Zone 2004 7A ResStockArguments site_iecc_zone=7 site_type=auto +ASHRAE IECC Climate Zone 2004 7AK ResStockArguments site_iecc_zone=7 site_type=auto +ASHRAE IECC Climate Zone 2004 7B ResStockArguments site_iecc_zone=7 site_type=auto +ASHRAE IECC Climate Zone 2004 8AK ResStockArguments site_iecc_zone=8 site_type=auto +ASHRAE IECC Climate Zone 2004 - 2A Split "2A - FL, GA, AL, MS" +ASHRAE IECC Climate Zone 2004 - 2A Split "2A - TX, LA" +ASHRAE IECC Climate Zone 2004 - 2A Split 1A +ASHRAE IECC Climate Zone 2004 - 2A Split 2B +ASHRAE IECC Climate Zone 2004 - 2A Split 3A +ASHRAE IECC Climate Zone 2004 - 2A Split 3B +ASHRAE IECC Climate Zone 2004 - 2A Split 3C +ASHRAE IECC Climate Zone 2004 - 2A Split 4A +ASHRAE IECC Climate Zone 2004 - 2A Split 4B +ASHRAE IECC Climate Zone 2004 - 2A Split 4C +ASHRAE IECC Climate Zone 2004 - 2A Split 5A +ASHRAE IECC Climate Zone 2004 - 2A Split 5B +ASHRAE IECC Climate Zone 2004 - 2A Split 6A +ASHRAE IECC Climate Zone 2004 - 2A Split 6B +ASHRAE IECC Climate Zone 2004 - 2A Split 7A +ASHRAE IECC Climate Zone 2004 - 2A Split 7AK +ASHRAE IECC Climate Zone 2004 - 2A Split 7B +ASHRAE IECC Climate Zone 2004 - 2A Split 8AK +Area Median Income 0-30% +Area Median Income 100-120% +Area Median Income 120-150% +Area Median Income 150%+ +Area Median Income 30-60% +Area Median Income 60-80% +Area Median Income 80-100% +Area Median Income Not Available +Bathroom Spot Vent Hour Hour0 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=0 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour1 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=1 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour10 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=10 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour11 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=11 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour12 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=12 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour13 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=13 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour14 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=14 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour15 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=15 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour16 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=16 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour17 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=17 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour18 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=18 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour19 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=19 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour2 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=2 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour20 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=20 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour21 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=21 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour22 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=22 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour23 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=23 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour3 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=3 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour4 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=4 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour5 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=5 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour6 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=6 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour7 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=7 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour8 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=8 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour9 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=9 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Battery "20 kWh, 80% Round Trip Efficiency" ResStockArguments battery_present=true battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=0.8 +Battery "20 kWh, Garage" ResStockArguments battery_present=true battery_location=garage battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto +Battery "20 kWh, Outside" ResStockArguments battery_present=true battery_location=outside battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto +Battery 10 kWh ResStockArguments battery_present=true battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto +Battery None ResStockArguments battery_present=false battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto +Bedrooms 1 ResStockArguments geometry_unit_num_bedrooms=1 geometry_unit_num_bathrooms=auto +Bedrooms 2 ResStockArguments geometry_unit_num_bedrooms=2 geometry_unit_num_bathrooms=auto +Bedrooms 3 ResStockArguments geometry_unit_num_bedrooms=3 geometry_unit_num_bathrooms=auto +Bedrooms 4 ResStockArguments geometry_unit_num_bedrooms=4 geometry_unit_num_bathrooms=auto +Bedrooms 5 ResStockArguments geometry_unit_num_bedrooms=5 geometry_unit_num_bathrooms=auto +Building America Climate Zone Cold +Building America Climate Zone Hot-Dry +Building America Climate Zone Hot-Humid +Building America Climate Zone Marine +Building America Climate Zone Mixed-Dry +Building America Climate Zone Mixed-Humid +Building America Climate Zone Subarctic +Building America Climate Zone Very Cold +CEC Climate Zone 1 +CEC Climate Zone 10 +CEC Climate Zone 11 +CEC Climate Zone 12 +CEC Climate Zone 13 +CEC Climate Zone 14 +CEC Climate Zone 15 +CEC Climate Zone 16 +CEC Climate Zone 2 +CEC Climate Zone 3 +CEC Climate Zone 4 +CEC Climate Zone 5 +CEC Climate Zone 6 +CEC Climate Zone 7 +CEC Climate Zone 8 +CEC Climate Zone 9 +CEC Climate Zone None +Ceiling Fan "Premium Efficiency, 0.5F Offset" ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=140.8 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0.5 +Ceiling Fan "Standard Efficiency, 0.5F Offset" ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=70.4 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0.5 +Ceiling Fan "Standard Efficiency, No usage" ResStockArguments ceiling_fan_present=false ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=0 ceiling_fan_quantity=0 ceiling_fan_cooling_setpoint_temp_offset=0 +Ceiling Fan None ResStockArguments ceiling_fan_present=false ceiling_fan_label_energy_use=0 ceiling_fan_efficiency=0 ceiling_fan_quantity=0 ceiling_fan_cooling_setpoint_temp_offset=0 +Ceiling Fan Premium Efficiency ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=140.8 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0 +Ceiling Fan Standard Efficiency ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=70.4 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0 +Census Division East North Central +Census Division East South Central +Census Division Middle Atlantic +Census Division Mountain +Census Division New England +Census Division Pacific +Census Division South Atlantic +Census Division West North Central +Census Division West South Central +Census Division RECS East North Central +Census Division RECS East South Central +Census Division RECS Middle Atlantic +Census Division RECS Mountain North +Census Division RECS Mountain South +Census Division RECS New England +Census Division RECS Pacific +Census Division RECS South Atlantic +Census Division RECS West North Central +Census Division RECS West South Central +Census Region Midwest +Census Region Northeast +Census Region South +Census Region West +City "AK, Anchorage" ResStockArguments site_city=auto +City "AL, Auburn" ResStockArguments site_city=auto +City "AL, Birmingham" ResStockArguments site_city=auto +City "AL, Decatur" ResStockArguments site_city=auto +City "AL, Dothan" ResStockArguments site_city=auto +City "AL, Florence" ResStockArguments site_city=auto +City "AL, Gadsden" ResStockArguments site_city=auto +City "AL, Hoover" ResStockArguments site_city=auto +City "AL, Huntsville" ResStockArguments site_city=auto +City "AL, Madison" ResStockArguments site_city=auto +City "AL, Mobile" ResStockArguments site_city=auto +City "AL, Montgomery" ResStockArguments site_city=auto +City "AL, Phenix City" ResStockArguments site_city=auto +City "AL, Tuscaloosa" ResStockArguments site_city=auto +City "AR, Bentonville" ResStockArguments site_city=auto +City "AR, Conway" ResStockArguments site_city=auto +City "AR, Fayetteville" ResStockArguments site_city=auto +City "AR, Fort Smith" ResStockArguments site_city=auto +City "AR, Hot Springs" ResStockArguments site_city=auto +City "AR, Jonesboro" ResStockArguments site_city=auto +City "AR, Little Rock" ResStockArguments site_city=auto +City "AR, North Little Rock" ResStockArguments site_city=auto +City "AR, Pine Bluff" ResStockArguments site_city=auto +City "AR, Rogers" ResStockArguments site_city=auto +City "AR, Springdale" ResStockArguments site_city=auto +City "AZ, Apache Junction" ResStockArguments site_city=auto +City "AZ, Avondale" ResStockArguments site_city=auto +City "AZ, Buckeye" ResStockArguments site_city=auto +City "AZ, Bullhead City" ResStockArguments site_city=auto +City "AZ, Casa Grande" ResStockArguments site_city=auto +City "AZ, Casas Adobes" ResStockArguments site_city=auto +City "AZ, Catalina Foothills" ResStockArguments site_city=auto +City "AZ, Chandler" ResStockArguments site_city=auto +City "AZ, Flagstaff" ResStockArguments site_city=auto +City "AZ, Fortuna Foothills" ResStockArguments site_city=auto +City "AZ, Gilbert" ResStockArguments site_city=auto +City "AZ, Glendale" ResStockArguments site_city=auto +City "AZ, Goodyear" ResStockArguments site_city=auto +City "AZ, Green Valley" ResStockArguments site_city=auto +City "AZ, Lake Havasu City" ResStockArguments site_city=auto +City "AZ, Marana" ResStockArguments site_city=auto +City "AZ, Maricopa" ResStockArguments site_city=auto +City "AZ, Mesa" ResStockArguments site_city=auto +City "AZ, Oro Valley" ResStockArguments site_city=auto +City "AZ, Peoria" ResStockArguments site_city=auto +City "AZ, Phoenix" ResStockArguments site_city=auto +City "AZ, Prescott Valley" ResStockArguments site_city=auto +City "AZ, Prescott" ResStockArguments site_city=auto +City "AZ, San Tan Valley" ResStockArguments site_city=auto +City "AZ, Scottsdale" ResStockArguments site_city=auto +City "AZ, Sierra Vista" ResStockArguments site_city=auto +City "AZ, Sun City West" ResStockArguments site_city=auto +City "AZ, Sun City" ResStockArguments site_city=auto +City "AZ, Surprise" ResStockArguments site_city=auto +City "AZ, Tempe" ResStockArguments site_city=auto +City "AZ, Tucson" ResStockArguments site_city=auto +City "AZ, Yuma" ResStockArguments site_city=auto +City "CA, Alameda" ResStockArguments site_city=auto +City "CA, Alhambra" ResStockArguments site_city=auto +City "CA, Aliso Viejo" ResStockArguments site_city=auto +City "CA, Altadena" ResStockArguments site_city=auto +City "CA, Anaheim" ResStockArguments site_city=auto +City "CA, Antioch" ResStockArguments site_city=auto +City "CA, Apple Valley" ResStockArguments site_city=auto +City "CA, Arcadia" ResStockArguments site_city=auto +City "CA, Arden-Arcade" ResStockArguments site_city=auto +City "CA, Bakersfield" ResStockArguments site_city=auto +City "CA, Baldwin Park" ResStockArguments site_city=auto +City "CA, Bellflower" ResStockArguments site_city=auto +City "CA, Berkeley" ResStockArguments site_city=auto +City "CA, Beverly Hills" ResStockArguments site_city=auto +City "CA, Brea" ResStockArguments site_city=auto +City "CA, Brentwood" ResStockArguments site_city=auto +City "CA, Buena Park" ResStockArguments site_city=auto +City "CA, Burbank" ResStockArguments site_city=auto +City "CA, Camarillo" ResStockArguments site_city=auto +City "CA, Campbell" ResStockArguments site_city=auto +City "CA, Carlsbad" ResStockArguments site_city=auto +City "CA, Carmichael" ResStockArguments site_city=auto +City "CA, Carson" ResStockArguments site_city=auto +City "CA, Castro Valley" ResStockArguments site_city=auto +City "CA, Cathedral City" ResStockArguments site_city=auto +City "CA, Cerritos" ResStockArguments site_city=auto +City "CA, Chico" ResStockArguments site_city=auto +City "CA, Chino Hills" ResStockArguments site_city=auto +City "CA, Chino" ResStockArguments site_city=auto +City "CA, Chula Vista" ResStockArguments site_city=auto +City "CA, Citrus Heights" ResStockArguments site_city=auto +City "CA, Clovis" ResStockArguments site_city=auto +City "CA, Colton" ResStockArguments site_city=auto +City "CA, Compton" ResStockArguments site_city=auto +City "CA, Concord" ResStockArguments site_city=auto +City "CA, Corona" ResStockArguments site_city=auto +City "CA, Costa Mesa" ResStockArguments site_city=auto +City "CA, Covina" ResStockArguments site_city=auto +City "CA, Culver City" ResStockArguments site_city=auto +City "CA, Cupertino" ResStockArguments site_city=auto +City "CA, Cypress" ResStockArguments site_city=auto +City "CA, Daly City" ResStockArguments site_city=auto +City "CA, Dana Point" ResStockArguments site_city=auto +City "CA, Danville" ResStockArguments site_city=auto +City "CA, Davis" ResStockArguments site_city=auto +City "CA, Diamond Bar" ResStockArguments site_city=auto +City "CA, Downey" ResStockArguments site_city=auto +City "CA, Dublin" ResStockArguments site_city=auto +City "CA, East Los Angeles" ResStockArguments site_city=auto +City "CA, El Cajon" ResStockArguments site_city=auto +City "CA, El Dorado Hills" ResStockArguments site_city=auto +City "CA, El Monte" ResStockArguments site_city=auto +City "CA, Elk Grove" ResStockArguments site_city=auto +City "CA, Encinitas" ResStockArguments site_city=auto +City "CA, Escondido" ResStockArguments site_city=auto +City "CA, Fairfield" ResStockArguments site_city=auto +City "CA, Florence-Graham" ResStockArguments site_city=auto +City "CA, Florin" ResStockArguments site_city=auto +City "CA, Folsom" ResStockArguments site_city=auto +City "CA, Fontana" ResStockArguments site_city=auto +City "CA, Fountain Valley" ResStockArguments site_city=auto +City "CA, Fremont" ResStockArguments site_city=auto +City "CA, Fresno" ResStockArguments site_city=auto +City "CA, Fullerton" ResStockArguments site_city=auto +City "CA, Garden Grove" ResStockArguments site_city=auto +City "CA, Gardena" ResStockArguments site_city=auto +City "CA, Gilroy" ResStockArguments site_city=auto +City "CA, Glendale" ResStockArguments site_city=auto +City "CA, Glendora" ResStockArguments site_city=auto +City "CA, Hacienda Heights" ResStockArguments site_city=auto +City "CA, Hanford" ResStockArguments site_city=auto +City "CA, Hawthorne" ResStockArguments site_city=auto +City "CA, Hayward" ResStockArguments site_city=auto +City "CA, Hemet" ResStockArguments site_city=auto +City "CA, Hesperia" ResStockArguments site_city=auto +City "CA, Highland" ResStockArguments site_city=auto +City "CA, Huntington Beach" ResStockArguments site_city=auto +City "CA, Huntington Park" ResStockArguments site_city=auto +City "CA, Indio" ResStockArguments site_city=auto +City "CA, Inglewood" ResStockArguments site_city=auto +City "CA, Irvine" ResStockArguments site_city=auto +City "CA, La Habra" ResStockArguments site_city=auto +City "CA, La Mesa" ResStockArguments site_city=auto +City "CA, La Quinta" ResStockArguments site_city=auto +City "CA, Laguna Niguel" ResStockArguments site_city=auto +City "CA, Lake Elsinore" ResStockArguments site_city=auto +City "CA, Lake Forest" ResStockArguments site_city=auto +City "CA, Lakewood" ResStockArguments site_city=auto +City "CA, Lancaster" ResStockArguments site_city=auto +City "CA, Lincoln" ResStockArguments site_city=auto +City "CA, Livermore" ResStockArguments site_city=auto +City "CA, Lodi" ResStockArguments site_city=auto +City "CA, Long Beach" ResStockArguments site_city=auto +City "CA, Los Angeles" ResStockArguments site_city=auto +City "CA, Lynwood" ResStockArguments site_city=auto +City "CA, Madera" ResStockArguments site_city=auto +City "CA, Manhattan Beach" ResStockArguments site_city=auto +City "CA, Manteca" ResStockArguments site_city=auto +City "CA, Martinez" ResStockArguments site_city=auto +City "CA, Menifee" ResStockArguments site_city=auto +City "CA, Merced" ResStockArguments site_city=auto +City "CA, Milpitas" ResStockArguments site_city=auto +City "CA, Mission Viejo" ResStockArguments site_city=auto +City "CA, Modesto" ResStockArguments site_city=auto +City "CA, Montebello" ResStockArguments site_city=auto +City "CA, Monterey Park" ResStockArguments site_city=auto +City "CA, Moreno Valley" ResStockArguments site_city=auto +City "CA, Mountain View" ResStockArguments site_city=auto +City "CA, Murrieta" ResStockArguments site_city=auto +City "CA, Napa" ResStockArguments site_city=auto +City "CA, National City" ResStockArguments site_city=auto +City "CA, Newport Beach" ResStockArguments site_city=auto +City "CA, North Highlands" ResStockArguments site_city=auto +City "CA, Norwalk" ResStockArguments site_city=auto +City "CA, Novato" ResStockArguments site_city=auto +City "CA, Oakland" ResStockArguments site_city=auto +City "CA, Oceanside" ResStockArguments site_city=auto +City "CA, Ontario" ResStockArguments site_city=auto +City "CA, Orange" ResStockArguments site_city=auto +City "CA, Oxnard" ResStockArguments site_city=auto +City "CA, Palm Desert" ResStockArguments site_city=auto +City "CA, Palm Springs" ResStockArguments site_city=auto +City "CA, Palmdale" ResStockArguments site_city=auto +City "CA, Palo Alto" ResStockArguments site_city=auto +City "CA, Pasadena" ResStockArguments site_city=auto +City "CA, Perris" ResStockArguments site_city=auto +City "CA, Petaluma" ResStockArguments site_city=auto +City "CA, Pico Rivera" ResStockArguments site_city=auto +City "CA, Pittsburg" ResStockArguments site_city=auto +City "CA, Placentia" ResStockArguments site_city=auto +City "CA, Pleasanton" ResStockArguments site_city=auto +City "CA, Pomona" ResStockArguments site_city=auto +City "CA, Porterville" ResStockArguments site_city=auto +City "CA, Poway" ResStockArguments site_city=auto +City "CA, Rancho Cordova" ResStockArguments site_city=auto +City "CA, Rancho Cucamonga" ResStockArguments site_city=auto +City "CA, Rancho Palos Verdes" ResStockArguments site_city=auto +City "CA, Rancho Santa Margarita" ResStockArguments site_city=auto +City "CA, Redding" ResStockArguments site_city=auto +City "CA, Redlands" ResStockArguments site_city=auto +City "CA, Redondo Beach" ResStockArguments site_city=auto +City "CA, Redwood City" ResStockArguments site_city=auto +City "CA, Rialto" ResStockArguments site_city=auto +City "CA, Richmond" ResStockArguments site_city=auto +City "CA, Riverside" ResStockArguments site_city=auto +City "CA, Rocklin" ResStockArguments site_city=auto +City "CA, Rohnert Park" ResStockArguments site_city=auto +City "CA, Rosemead" ResStockArguments site_city=auto +City "CA, Roseville" ResStockArguments site_city=auto +City "CA, Rowland Heights" ResStockArguments site_city=auto +City "CA, Sacramento" ResStockArguments site_city=auto +City "CA, Salinas" ResStockArguments site_city=auto +City "CA, San Bernardino" ResStockArguments site_city=auto +City "CA, San Bruno" ResStockArguments site_city=auto +City "CA, San Buenaventura Ventura" ResStockArguments site_city=auto +City "CA, San Clemente" ResStockArguments site_city=auto +City "CA, San Diego" ResStockArguments site_city=auto +City "CA, San Francisco" ResStockArguments site_city=auto +City "CA, San Jose" ResStockArguments site_city=auto +City "CA, San Leandro" ResStockArguments site_city=auto +City "CA, San Luis Obispo" ResStockArguments site_city=auto +City "CA, San Marcos" ResStockArguments site_city=auto +City "CA, San Mateo" ResStockArguments site_city=auto +City "CA, San Rafael" ResStockArguments site_city=auto +City "CA, San Ramon" ResStockArguments site_city=auto +City "CA, Santa Ana" ResStockArguments site_city=auto +City "CA, Santa Barbara" ResStockArguments site_city=auto +City "CA, Santa Clara" ResStockArguments site_city=auto +City "CA, Santa Clarita" ResStockArguments site_city=auto +City "CA, Santa Cruz" ResStockArguments site_city=auto +City "CA, Santa Maria" ResStockArguments site_city=auto +City "CA, Santa Monica" ResStockArguments site_city=auto +City "CA, Santa Rosa" ResStockArguments site_city=auto +City "CA, Santee" ResStockArguments site_city=auto +City "CA, Simi Valley" ResStockArguments site_city=auto +City "CA, South Gate" ResStockArguments site_city=auto +City "CA, South Lake Tahoe" ResStockArguments site_city=auto +City "CA, South San Francisco" ResStockArguments site_city=auto +City "CA, South Whittier" ResStockArguments site_city=auto +City "CA, Stockton" ResStockArguments site_city=auto +City "CA, Sunnyvale" ResStockArguments site_city=auto +City "CA, Temecula" ResStockArguments site_city=auto +City "CA, Thousand Oaks" ResStockArguments site_city=auto +City "CA, Torrance" ResStockArguments site_city=auto +City "CA, Tracy" ResStockArguments site_city=auto +City "CA, Tulare" ResStockArguments site_city=auto +City "CA, Turlock" ResStockArguments site_city=auto +City "CA, Tustin" ResStockArguments site_city=auto +City "CA, Union City" ResStockArguments site_city=auto +City "CA, Upland" ResStockArguments site_city=auto +City "CA, Vacaville" ResStockArguments site_city=auto +City "CA, Vallejo" ResStockArguments site_city=auto +City "CA, Victorville" ResStockArguments site_city=auto +City "CA, Visalia" ResStockArguments site_city=auto +City "CA, Vista" ResStockArguments site_city=auto +City "CA, Walnut Creek" ResStockArguments site_city=auto +City "CA, West Covina" ResStockArguments site_city=auto +City "CA, West Hollywood" ResStockArguments site_city=auto +City "CA, West Sacramento" ResStockArguments site_city=auto +City "CA, Westminster" ResStockArguments site_city=auto +City "CA, Whittier" ResStockArguments site_city=auto +City "CA, Woodland" ResStockArguments site_city=auto +City "CA, Yorba Linda" ResStockArguments site_city=auto +City "CA, Yuba City" ResStockArguments site_city=auto +City "CA, Yucaipa" ResStockArguments site_city=auto +City "CO, Arvada" ResStockArguments site_city=auto +City "CO, Aurora" ResStockArguments site_city=auto +City "CO, Boulder" ResStockArguments site_city=auto +City "CO, Broomfield" ResStockArguments site_city=auto +City "CO, Castle Rock" ResStockArguments site_city=auto +City "CO, Centennial" ResStockArguments site_city=auto +City "CO, Colorado Springs" ResStockArguments site_city=auto +City "CO, Commerce City" ResStockArguments site_city=auto +City "CO, Denver" ResStockArguments site_city=auto +City "CO, Englewood" ResStockArguments site_city=auto +City "CO, Fort Collins" ResStockArguments site_city=auto +City "CO, Grand Junction" ResStockArguments site_city=auto +City "CO, Greeley" ResStockArguments site_city=auto +City "CO, Highlands Ranch" ResStockArguments site_city=auto +City "CO, Lakewood" ResStockArguments site_city=auto +City "CO, Littleton" ResStockArguments site_city=auto +City "CO, Longmont" ResStockArguments site_city=auto +City "CO, Loveland" ResStockArguments site_city=auto +City "CO, Parker" ResStockArguments site_city=auto +City "CO, Pueblo" ResStockArguments site_city=auto +City "CO, Thornton" ResStockArguments site_city=auto +City "CO, Westminster" ResStockArguments site_city=auto +City "CT, Bridgeport" ResStockArguments site_city=auto +City "CT, Bristol" ResStockArguments site_city=auto +City "CT, Danbury" ResStockArguments site_city=auto +City "CT, East Hartford" ResStockArguments site_city=auto +City "CT, Hartford" ResStockArguments site_city=auto +City "CT, Meriden" ResStockArguments site_city=auto +City "CT, Middletown" ResStockArguments site_city=auto +City "CT, Milford City Balance" ResStockArguments site_city=auto +City "CT, New Britain" ResStockArguments site_city=auto +City "CT, New Haven" ResStockArguments site_city=auto +City "CT, Norwalk" ResStockArguments site_city=auto +City "CT, Norwich" ResStockArguments site_city=auto +City "CT, Shelton" ResStockArguments site_city=auto +City "CT, Stamford" ResStockArguments site_city=auto +City "CT, Stratford" ResStockArguments site_city=auto +City "CT, Torrington" ResStockArguments site_city=auto +City "CT, Waterbury" ResStockArguments site_city=auto +City "CT, West Hartford" ResStockArguments site_city=auto +City "CT, West Haven" ResStockArguments site_city=auto +City "DC, Washington" ResStockArguments site_city=auto +City "DE, Dover" ResStockArguments site_city=auto +City "DE, Wilmington" ResStockArguments site_city=auto +City "FL, Alafaya" ResStockArguments site_city=auto +City "FL, Altamonte Springs" ResStockArguments site_city=auto +City "FL, Apopka" ResStockArguments site_city=auto +City "FL, Aventura" ResStockArguments site_city=auto +City "FL, Boca Raton" ResStockArguments site_city=auto +City "FL, Bonita Springs" ResStockArguments site_city=auto +City "FL, Boynton Beach" ResStockArguments site_city=auto +City "FL, Bradenton" ResStockArguments site_city=auto +City "FL, Brandon" ResStockArguments site_city=auto +City "FL, Cape Coral" ResStockArguments site_city=auto +City "FL, Carrollwood" ResStockArguments site_city=auto +City "FL, Clearwater" ResStockArguments site_city=auto +City "FL, Coconut Creek" ResStockArguments site_city=auto +City "FL, Coral Gables" ResStockArguments site_city=auto +City "FL, Coral Springs" ResStockArguments site_city=auto +City "FL, Country Club" ResStockArguments site_city=auto +City "FL, Dania Beach" ResStockArguments site_city=auto +City "FL, Davie" ResStockArguments site_city=auto +City "FL, Daytona Beach" ResStockArguments site_city=auto +City "FL, Deerfield Beach" ResStockArguments site_city=auto +City "FL, Delray Beach" ResStockArguments site_city=auto +City "FL, Deltona" ResStockArguments site_city=auto +City "FL, Doral" ResStockArguments site_city=auto +City "FL, Dunedin" ResStockArguments site_city=auto +City "FL, East Lake" ResStockArguments site_city=auto +City "FL, Estero" ResStockArguments site_city=auto +City "FL, Fort Lauderdale" ResStockArguments site_city=auto +City "FL, Fort Myers" ResStockArguments site_city=auto +City "FL, Fort Pierce" ResStockArguments site_city=auto +City "FL, Fountainebleau" ResStockArguments site_city=auto +City "FL, Four Corners" ResStockArguments site_city=auto +City "FL, Gainesville" ResStockArguments site_city=auto +City "FL, Greenacres" ResStockArguments site_city=auto +City "FL, Hallandale Beach" ResStockArguments site_city=auto +City "FL, Hialeah" ResStockArguments site_city=auto +City "FL, Hollywood" ResStockArguments site_city=auto +City "FL, Homestead" ResStockArguments site_city=auto +City "FL, Jacksonville" ResStockArguments site_city=auto +City "FL, Jupiter" ResStockArguments site_city=auto +City "FL, Kendale Lakes" ResStockArguments site_city=auto +City "FL, Kendall" ResStockArguments site_city=auto +City "FL, Kissimmee" ResStockArguments site_city=auto +City "FL, Lake Worth" ResStockArguments site_city=auto +City "FL, Lakeland" ResStockArguments site_city=auto +City "FL, Largo" ResStockArguments site_city=auto +City "FL, Lauderhill" ResStockArguments site_city=auto +City "FL, Lehigh Acres" ResStockArguments site_city=auto +City "FL, Marco Island" ResStockArguments site_city=auto +City "FL, Margate" ResStockArguments site_city=auto +City "FL, Melbourne" ResStockArguments site_city=auto +City "FL, Merritt Island" ResStockArguments site_city=auto +City "FL, Miami Beach" ResStockArguments site_city=auto +City "FL, Miami Gardens" ResStockArguments site_city=auto +City "FL, Miami" ResStockArguments site_city=auto +City "FL, Miramar" ResStockArguments site_city=auto +City "FL, Naples" ResStockArguments site_city=auto +City "FL, New Smyrna Beach" ResStockArguments site_city=auto +City "FL, North Fort Myers" ResStockArguments site_city=auto +City "FL, North Miami Beach" ResStockArguments site_city=auto +City "FL, North Miami" ResStockArguments site_city=auto +City "FL, North Port" ResStockArguments site_city=auto +City "FL, Oakland Park" ResStockArguments site_city=auto +City "FL, Ocala" ResStockArguments site_city=auto +City "FL, Orlando" ResStockArguments site_city=auto +City "FL, Ormond Beach" ResStockArguments site_city=auto +City "FL, Palm Bay" ResStockArguments site_city=auto +City "FL, Palm Beach Gardens" ResStockArguments site_city=auto +City "FL, Palm Coast" ResStockArguments site_city=auto +City "FL, Palm Harbor" ResStockArguments site_city=auto +City "FL, Panama City Beach" ResStockArguments site_city=auto +City "FL, Panama City" ResStockArguments site_city=auto +City "FL, Pembroke Pines" ResStockArguments site_city=auto +City "FL, Pensacola" ResStockArguments site_city=auto +City "FL, Pine Hills" ResStockArguments site_city=auto +City "FL, Pinellas Park" ResStockArguments site_city=auto +City "FL, Plantation" ResStockArguments site_city=auto +City "FL, Poinciana" ResStockArguments site_city=auto +City "FL, Pompano Beach" ResStockArguments site_city=auto +City "FL, Port Charlotte" ResStockArguments site_city=auto +City "FL, Port Orange" ResStockArguments site_city=auto +City "FL, Port St Lucie" ResStockArguments site_city=auto +City "FL, Riverview" ResStockArguments site_city=auto +City "FL, Riviera Beach" ResStockArguments site_city=auto +City "FL, Sanford" ResStockArguments site_city=auto +City "FL, Sarasota" ResStockArguments site_city=auto +City "FL, Spring Hill" ResStockArguments site_city=auto +City "FL, St Cloud" ResStockArguments site_city=auto +City "FL, St Petersburg" ResStockArguments site_city=auto +City "FL, Sun City Center" ResStockArguments site_city=auto +City "FL, Sunny Isles Beach" ResStockArguments site_city=auto +City "FL, Sunrise" ResStockArguments site_city=auto +City "FL, Tallahassee" ResStockArguments site_city=auto +City "FL, Tamarac" ResStockArguments site_city=auto +City "FL, Tamiami" ResStockArguments site_city=auto +City "FL, Tampa" ResStockArguments site_city=auto +City "FL, The Hammocks" ResStockArguments site_city=auto +City "FL, The Villages" ResStockArguments site_city=auto +City "FL, Titusville" ResStockArguments site_city=auto +City "FL, Town N Country" ResStockArguments site_city=auto +City "FL, University" ResStockArguments site_city=auto +City "FL, Venice" ResStockArguments site_city=auto +City "FL, Wellington" ResStockArguments site_city=auto +City "FL, Wesley Chapel" ResStockArguments site_city=auto +City "FL, West Palm Beach" ResStockArguments site_city=auto +City "FL, Weston" ResStockArguments site_city=auto +City "FL, Winter Haven" ResStockArguments site_city=auto +City "GA, Albany" ResStockArguments site_city=auto +City "GA, Alpharetta" ResStockArguments site_city=auto +City "GA, Athens-Clarke County Unified Government Balance" ResStockArguments site_city=auto +City "GA, Atlanta" ResStockArguments site_city=auto +City "GA, Augusta-Richmond County Consolidated Government Balance" ResStockArguments site_city=auto +City "GA, Columbus" ResStockArguments site_city=auto +City "GA, Dunwoody" ResStockArguments site_city=auto +City "GA, East Point" ResStockArguments site_city=auto +City "GA, Hinesville" ResStockArguments site_city=auto +City "GA, Johns Creek" ResStockArguments site_city=auto +City "GA, Mableton" ResStockArguments site_city=auto +City "GA, Macon" ResStockArguments site_city=auto +City "GA, Marietta" ResStockArguments site_city=auto +City "GA, Newnan" ResStockArguments site_city=auto +City "GA, North Atlanta" ResStockArguments site_city=auto +City "GA, Rome" ResStockArguments site_city=auto +City "GA, Roswell" ResStockArguments site_city=auto +City "GA, Sandy Springs" ResStockArguments site_city=auto +City "GA, Savannah" ResStockArguments site_city=auto +City "GA, Smyrna" ResStockArguments site_city=auto +City "GA, Valdosta" ResStockArguments site_city=auto +City "GA, Warner Robins" ResStockArguments site_city=auto +City "HI, East Honolulu" ResStockArguments site_city=auto +City "HI, Hilo" ResStockArguments site_city=auto +City "HI, Kailua" ResStockArguments site_city=auto +City "HI, Urban Honolulu" ResStockArguments site_city=auto +City "IA, Ames" ResStockArguments site_city=auto +City "IA, Ankeny" ResStockArguments site_city=auto +City "IA, Cedar Falls" ResStockArguments site_city=auto +City "IA, Cedar Rapids" ResStockArguments site_city=auto +City "IA, Council Bluffs" ResStockArguments site_city=auto +City "IA, Davenport" ResStockArguments site_city=auto +City "IA, Des Moines" ResStockArguments site_city=auto +City "IA, Dubuque" ResStockArguments site_city=auto +City "IA, Iowa City" ResStockArguments site_city=auto +City "IA, Marion" ResStockArguments site_city=auto +City "IA, Sioux City" ResStockArguments site_city=auto +City "IA, Urbandale" ResStockArguments site_city=auto +City "IA, Waterloo" ResStockArguments site_city=auto +City "IA, West Des Moines" ResStockArguments site_city=auto +City "ID, Boise City" ResStockArguments site_city=auto +City "ID, Caldwell" ResStockArguments site_city=auto +City "ID, Coeur Dalene" ResStockArguments site_city=auto +City "ID, Idaho Falls" ResStockArguments site_city=auto +City "ID, Meridian" ResStockArguments site_city=auto +City "ID, Nampa" ResStockArguments site_city=auto +City "ID, Pocatello" ResStockArguments site_city=auto +City "ID, Twin Falls" ResStockArguments site_city=auto +City "IL, Arlington Heights" ResStockArguments site_city=auto +City "IL, Aurora" ResStockArguments site_city=auto +City "IL, Belleville" ResStockArguments site_city=auto +City "IL, Berwyn" ResStockArguments site_city=auto +City "IL, Bloomington" ResStockArguments site_city=auto +City "IL, Bolingbrook" ResStockArguments site_city=auto +City "IL, Buffalo Grove" ResStockArguments site_city=auto +City "IL, Calumet City" ResStockArguments site_city=auto +City "IL, Carol Stream" ResStockArguments site_city=auto +City "IL, Champaign" ResStockArguments site_city=auto +City "IL, Chicago" ResStockArguments site_city=auto +City "IL, Cicero" ResStockArguments site_city=auto +City "IL, Crystal Lake" ResStockArguments site_city=auto +City "IL, Decatur" ResStockArguments site_city=auto +City "IL, Dekalb" ResStockArguments site_city=auto +City "IL, Des Plaines" ResStockArguments site_city=auto +City "IL, Downers Grove" ResStockArguments site_city=auto +City "IL, Elgin" ResStockArguments site_city=auto +City "IL, Elmhurst" ResStockArguments site_city=auto +City "IL, Evanston" ResStockArguments site_city=auto +City "IL, Glenview" ResStockArguments site_city=auto +City "IL, Hoffman Estates" ResStockArguments site_city=auto +City "IL, Joliet" ResStockArguments site_city=auto +City "IL, Lombard" ResStockArguments site_city=auto +City "IL, Moline" ResStockArguments site_city=auto +City "IL, Mount Prospect" ResStockArguments site_city=auto +City "IL, Naperville" ResStockArguments site_city=auto +City "IL, Normal" ResStockArguments site_city=auto +City "IL, Oak Lawn" ResStockArguments site_city=auto +City "IL, Oak Park" ResStockArguments site_city=auto +City "IL, Orland Park" ResStockArguments site_city=auto +City "IL, Palatine" ResStockArguments site_city=auto +City "IL, Peoria" ResStockArguments site_city=auto +City "IL, Quincy" ResStockArguments site_city=auto +City "IL, Rock Island" ResStockArguments site_city=auto +City "IL, Rockford" ResStockArguments site_city=auto +City "IL, Schaumburg" ResStockArguments site_city=auto +City "IL, Skokie" ResStockArguments site_city=auto +City "IL, Springfield" ResStockArguments site_city=auto +City "IL, Tinley Park" ResStockArguments site_city=auto +City "IL, Urbana" ResStockArguments site_city=auto +City "IL, Waukegan" ResStockArguments site_city=auto +City "IL, Wheaton" ResStockArguments site_city=auto +City "IL, Wheeling" ResStockArguments site_city=auto +City "IN, Anderson" ResStockArguments site_city=auto +City "IN, Bloomington" ResStockArguments site_city=auto +City "IN, Carmel" ResStockArguments site_city=auto +City "IN, Columbus" ResStockArguments site_city=auto +City "IN, Elkhart" ResStockArguments site_city=auto +City "IN, Evansville" ResStockArguments site_city=auto +City "IN, Fishers" ResStockArguments site_city=auto +City "IN, Fort Wayne" ResStockArguments site_city=auto +City "IN, Gary" ResStockArguments site_city=auto +City "IN, Greenwood" ResStockArguments site_city=auto +City "IN, Hammond" ResStockArguments site_city=auto +City "IN, Indianapolis City Balance" ResStockArguments site_city=auto +City "IN, Jeffersonville" ResStockArguments site_city=auto +City "IN, Kokomo" ResStockArguments site_city=auto +City "IN, Lafayette" ResStockArguments site_city=auto +City "IN, Lawrence" ResStockArguments site_city=auto +City "IN, Mishawaka" ResStockArguments site_city=auto +City "IN, Muncie" ResStockArguments site_city=auto +City "IN, New Albany" ResStockArguments site_city=auto +City "IN, Noblesville" ResStockArguments site_city=auto +City "IN, Portage" ResStockArguments site_city=auto +City "IN, Richmond" ResStockArguments site_city=auto +City "IN, South Bend" ResStockArguments site_city=auto +City "IN, Terre Haute" ResStockArguments site_city=auto +City "KS, Hutchinson" ResStockArguments site_city=auto +City "KS, Kansas City" ResStockArguments site_city=auto +City "KS, Lawrence" ResStockArguments site_city=auto +City "KS, Lenexa" ResStockArguments site_city=auto +City "KS, Manhattan" ResStockArguments site_city=auto +City "KS, Olathe" ResStockArguments site_city=auto +City "KS, Overland Park" ResStockArguments site_city=auto +City "KS, Salina" ResStockArguments site_city=auto +City "KS, Shawnee" ResStockArguments site_city=auto +City "KS, Topeka" ResStockArguments site_city=auto +City "KS, Wichita" ResStockArguments site_city=auto +City "KY, Bowling Green" ResStockArguments site_city=auto +City "KY, Covington" ResStockArguments site_city=auto +City "KY, Lexington-Fayette" ResStockArguments site_city=auto +City "KY, Louisville Jefferson County Metro Government Balance" ResStockArguments site_city=auto +City "KY, Owensboro" ResStockArguments site_city=auto +City "LA, Alexandria" ResStockArguments site_city=auto +City "LA, Baton Rouge" ResStockArguments site_city=auto +City "LA, Bossier City" ResStockArguments site_city=auto +City "LA, Kenner" ResStockArguments site_city=auto +City "LA, Lafayette" ResStockArguments site_city=auto +City "LA, Lake Charles" ResStockArguments site_city=auto +City "LA, Metairie" ResStockArguments site_city=auto +City "LA, Monroe" ResStockArguments site_city=auto +City "LA, New Orleans" ResStockArguments site_city=auto +City "LA, Shreveport" ResStockArguments site_city=auto +City "MA, Arlington" ResStockArguments site_city=auto +City "MA, Attleboro" ResStockArguments site_city=auto +City "MA, Barnstable Town" ResStockArguments site_city=auto +City "MA, Beverly" ResStockArguments site_city=auto +City "MA, Boston" ResStockArguments site_city=auto +City "MA, Brockton" ResStockArguments site_city=auto +City "MA, Brookline" ResStockArguments site_city=auto +City "MA, Cambridge" ResStockArguments site_city=auto +City "MA, Chicopee" ResStockArguments site_city=auto +City "MA, Everett" ResStockArguments site_city=auto +City "MA, Fall River" ResStockArguments site_city=auto +City "MA, Fitchburg" ResStockArguments site_city=auto +City "MA, Framingham" ResStockArguments site_city=auto +City "MA, Haverhill" ResStockArguments site_city=auto +City "MA, Holyoke" ResStockArguments site_city=auto +City "MA, Lawrence" ResStockArguments site_city=auto +City "MA, Leominster" ResStockArguments site_city=auto +City "MA, Lowell" ResStockArguments site_city=auto +City "MA, Lynn" ResStockArguments site_city=auto +City "MA, Malden" ResStockArguments site_city=auto +City "MA, Marlborough" ResStockArguments site_city=auto +City "MA, Medford" ResStockArguments site_city=auto +City "MA, Methuen Town" ResStockArguments site_city=auto +City "MA, New Bedford" ResStockArguments site_city=auto +City "MA, Newton" ResStockArguments site_city=auto +City "MA, Peabody" ResStockArguments site_city=auto +City "MA, Pittsfield" ResStockArguments site_city=auto +City "MA, Quincy" ResStockArguments site_city=auto +City "MA, Revere" ResStockArguments site_city=auto +City "MA, Salem" ResStockArguments site_city=auto +City "MA, Somerville" ResStockArguments site_city=auto +City "MA, Springfield" ResStockArguments site_city=auto +City "MA, Taunton" ResStockArguments site_city=auto +City "MA, Waltham" ResStockArguments site_city=auto +City "MA, Watertown Town" ResStockArguments site_city=auto +City "MA, Westfield" ResStockArguments site_city=auto +City "MA, Weymouth Town" ResStockArguments site_city=auto +City "MA, Woburn" ResStockArguments site_city=auto +City "MA, Worcester" ResStockArguments site_city=auto +City "MD, Annapolis" ResStockArguments site_city=auto +City "MD, Aspen Hill" ResStockArguments site_city=auto +City "MD, Baltimore" ResStockArguments site_city=auto +City "MD, Bel Air South" ResStockArguments site_city=auto +City "MD, Bethesda" ResStockArguments site_city=auto +City "MD, Bowie" ResStockArguments site_city=auto +City "MD, Catonsville" ResStockArguments site_city=auto +City "MD, Columbia" ResStockArguments site_city=auto +City "MD, Dundalk" ResStockArguments site_city=auto +City "MD, Ellicott City" ResStockArguments site_city=auto +City "MD, Essex" ResStockArguments site_city=auto +City "MD, Frederick" ResStockArguments site_city=auto +City "MD, Gaithersburg" ResStockArguments site_city=auto +City "MD, Germantown" ResStockArguments site_city=auto +City "MD, Glen Burnie" ResStockArguments site_city=auto +City "MD, Hagerstown" ResStockArguments site_city=auto +City "MD, North Bethesda" ResStockArguments site_city=auto +City "MD, Ocean City" ResStockArguments site_city=auto +City "MD, Odenton" ResStockArguments site_city=auto +City "MD, Potomac" ResStockArguments site_city=auto +City "MD, Rockville" ResStockArguments site_city=auto +City "MD, Severn" ResStockArguments site_city=auto +City "MD, Silver Spring" ResStockArguments site_city=auto +City "MD, Towson" ResStockArguments site_city=auto +City "MD, Waldorf" ResStockArguments site_city=auto +City "MD, Wheaton" ResStockArguments site_city=auto +City "MD, Woodlawn" ResStockArguments site_city=auto +City "ME, Bangor" ResStockArguments site_city=auto +City "ME, Lewiston" ResStockArguments site_city=auto +City "ME, Portland" ResStockArguments site_city=auto +City "MI, Ann Arbor" ResStockArguments site_city=auto +City "MI, Battle Creek" ResStockArguments site_city=auto +City "MI, Bay City" ResStockArguments site_city=auto +City "MI, Dearborn Heights" ResStockArguments site_city=auto +City "MI, Dearborn" ResStockArguments site_city=auto +City "MI, Detroit" ResStockArguments site_city=auto +City "MI, Farmington Hills" ResStockArguments site_city=auto +City "MI, Flint" ResStockArguments site_city=auto +City "MI, Grand Rapids" ResStockArguments site_city=auto +City "MI, Jackson" ResStockArguments site_city=auto +City "MI, Kalamazoo" ResStockArguments site_city=auto +City "MI, Kentwood" ResStockArguments site_city=auto +City "MI, Lansing" ResStockArguments site_city=auto +City "MI, Lincoln Park" ResStockArguments site_city=auto +City "MI, Livonia" ResStockArguments site_city=auto +City "MI, Midland" ResStockArguments site_city=auto +City "MI, Muskegon" ResStockArguments site_city=auto +City "MI, Novi" ResStockArguments site_city=auto +City "MI, Pontiac" ResStockArguments site_city=auto +City "MI, Portage" ResStockArguments site_city=auto +City "MI, Rochester Hills" ResStockArguments site_city=auto +City "MI, Roseville" ResStockArguments site_city=auto +City "MI, Royal Oak" ResStockArguments site_city=auto +City "MI, Saginaw" ResStockArguments site_city=auto +City "MI, Southfield" ResStockArguments site_city=auto +City "MI, St Clair Shores" ResStockArguments site_city=auto +City "MI, Sterling Heights" ResStockArguments site_city=auto +City "MI, Taylor" ResStockArguments site_city=auto +City "MI, Troy" ResStockArguments site_city=auto +City "MI, Warren" ResStockArguments site_city=auto +City "MI, Westland" ResStockArguments site_city=auto +City "MI, Wyoming" ResStockArguments site_city=auto +City "MN, Apple Valley" ResStockArguments site_city=auto +City "MN, Blaine" ResStockArguments site_city=auto +City "MN, Bloomington" ResStockArguments site_city=auto +City "MN, Brooklyn Park" ResStockArguments site_city=auto +City "MN, Burnsville" ResStockArguments site_city=auto +City "MN, Coon Rapids" ResStockArguments site_city=auto +City "MN, Duluth" ResStockArguments site_city=auto +City "MN, Eagan" ResStockArguments site_city=auto +City "MN, Eden Prairie" ResStockArguments site_city=auto +City "MN, Edina" ResStockArguments site_city=auto +City "MN, Lakeville" ResStockArguments site_city=auto +City "MN, Mankato" ResStockArguments site_city=auto +City "MN, Maple Grove" ResStockArguments site_city=auto +City "MN, Maplewood" ResStockArguments site_city=auto +City "MN, Minneapolis" ResStockArguments site_city=auto +City "MN, Minnetonka" ResStockArguments site_city=auto +City "MN, Moorhead" ResStockArguments site_city=auto +City "MN, Plymouth" ResStockArguments site_city=auto +City "MN, Richfield" ResStockArguments site_city=auto +City "MN, Rochester" ResStockArguments site_city=auto +City "MN, Roseville" ResStockArguments site_city=auto +City "MN, St Cloud" ResStockArguments site_city=auto +City "MN, St Louis Park" ResStockArguments site_city=auto +City "MN, St Paul" ResStockArguments site_city=auto +City "MN, Woodbury" ResStockArguments site_city=auto +City "MO, Blue Springs" ResStockArguments site_city=auto +City "MO, Cape Girardeau" ResStockArguments site_city=auto +City "MO, Chesterfield" ResStockArguments site_city=auto +City "MO, Columbia" ResStockArguments site_city=auto +City "MO, Florissant" ResStockArguments site_city=auto +City "MO, Independence" ResStockArguments site_city=auto +City "MO, Jefferson City" ResStockArguments site_city=auto +City "MO, Joplin" ResStockArguments site_city=auto +City "MO, Kansas City" ResStockArguments site_city=auto +City "MO, Lees Summit" ResStockArguments site_city=auto +City "MO, Ofallon" ResStockArguments site_city=auto +City "MO, Springfield" ResStockArguments site_city=auto +City "MO, St Charles" ResStockArguments site_city=auto +City "MO, St Joseph" ResStockArguments site_city=auto +City "MO, St Louis" ResStockArguments site_city=auto +City "MO, St Peters" ResStockArguments site_city=auto +City "MO, University City" ResStockArguments site_city=auto +City "MS, Biloxi" ResStockArguments site_city=auto +City "MS, Gulfport" ResStockArguments site_city=auto +City "MS, Hattiesburg" ResStockArguments site_city=auto +City "MS, Jackson" ResStockArguments site_city=auto +City "MS, Meridian" ResStockArguments site_city=auto +City "MS, Southaven" ResStockArguments site_city=auto +City "MS, Tupelo" ResStockArguments site_city=auto +City "MT, Billings" ResStockArguments site_city=auto +City "MT, Bozeman" ResStockArguments site_city=auto +City "MT, Butte-Silver Bow Balance" ResStockArguments site_city=auto +City "MT, Great Falls" ResStockArguments site_city=auto +City "MT, Missoula" ResStockArguments site_city=auto +City "NC, Asheville" ResStockArguments site_city=auto +City "NC, Burlington" ResStockArguments site_city=auto +City "NC, Cary" ResStockArguments site_city=auto +City "NC, Chapel Hill" ResStockArguments site_city=auto +City "NC, Charlotte" ResStockArguments site_city=auto +City "NC, Concord" ResStockArguments site_city=auto +City "NC, Durham" ResStockArguments site_city=auto +City "NC, Fayetteville" ResStockArguments site_city=auto +City "NC, Gastonia" ResStockArguments site_city=auto +City "NC, Goldsboro" ResStockArguments site_city=auto +City "NC, Greensboro" ResStockArguments site_city=auto +City "NC, Greenville" ResStockArguments site_city=auto +City "NC, Hickory" ResStockArguments site_city=auto +City "NC, High Point" ResStockArguments site_city=auto +City "NC, Huntersville" ResStockArguments site_city=auto +City "NC, Jacksonville" ResStockArguments site_city=auto +City "NC, Kannapolis" ResStockArguments site_city=auto +City "NC, Raleigh" ResStockArguments site_city=auto +City "NC, Rocky Mount" ResStockArguments site_city=auto +City "NC, Wilmington" ResStockArguments site_city=auto +City "NC, Wilson" ResStockArguments site_city=auto +City "NC, Winston-Salem" ResStockArguments site_city=auto +City "ND, Bismarck" ResStockArguments site_city=auto +City "ND, Fargo" ResStockArguments site_city=auto +City "ND, Grand Forks" ResStockArguments site_city=auto +City "ND, Minot" ResStockArguments site_city=auto +City "NE, Bellevue" ResStockArguments site_city=auto +City "NE, Grand Island" ResStockArguments site_city=auto +City "NE, Lincoln" ResStockArguments site_city=auto +City "NE, Omaha" ResStockArguments site_city=auto +City "NH, Concord" ResStockArguments site_city=auto +City "NH, Manchester" ResStockArguments site_city=auto +City "NH, Nashua" ResStockArguments site_city=auto +City "NJ, Atlantic City" ResStockArguments site_city=auto +City "NJ, Bayonne" ResStockArguments site_city=auto +City "NJ, Camden" ResStockArguments site_city=auto +City "NJ, Clifton" ResStockArguments site_city=auto +City "NJ, East Orange" ResStockArguments site_city=auto +City "NJ, Elizabeth" ResStockArguments site_city=auto +City "NJ, Fort Lee" ResStockArguments site_city=auto +City "NJ, Hackensack" ResStockArguments site_city=auto +City "NJ, Hoboken" ResStockArguments site_city=auto +City "NJ, Jersey City" ResStockArguments site_city=auto +City "NJ, Linden" ResStockArguments site_city=auto +City "NJ, New Brunswick" ResStockArguments site_city=auto +City "NJ, Newark" ResStockArguments site_city=auto +City "NJ, Ocean City" ResStockArguments site_city=auto +City "NJ, Passaic" ResStockArguments site_city=auto +City "NJ, Paterson" ResStockArguments site_city=auto +City "NJ, Perth Amboy" ResStockArguments site_city=auto +City "NJ, Plainfield" ResStockArguments site_city=auto +City "NJ, Sayreville" ResStockArguments site_city=auto +City "NJ, Toms River" ResStockArguments site_city=auto +City "NJ, Trenton" ResStockArguments site_city=auto +City "NJ, Union City" ResStockArguments site_city=auto +City "NJ, Vineland" ResStockArguments site_city=auto +City "NJ, West New York" ResStockArguments site_city=auto +City "NM, Albuquerque" ResStockArguments site_city=auto +City "NM, Clovis" ResStockArguments site_city=auto +City "NM, Farmington" ResStockArguments site_city=auto +City "NM, Las Cruces" ResStockArguments site_city=auto +City "NM, Rio Rancho" ResStockArguments site_city=auto +City "NM, Roswell" ResStockArguments site_city=auto +City "NM, Santa Fe" ResStockArguments site_city=auto +City "NM, South Valley" ResStockArguments site_city=auto +City "NV, Carson City" ResStockArguments site_city=auto +City "NV, Enterprise" ResStockArguments site_city=auto +City "NV, Henderson" ResStockArguments site_city=auto +City "NV, Las Vegas" ResStockArguments site_city=auto +City "NV, North Las Vegas" ResStockArguments site_city=auto +City "NV, Pahrump" ResStockArguments site_city=auto +City "NV, Paradise" ResStockArguments site_city=auto +City "NV, Reno" ResStockArguments site_city=auto +City "NV, Sparks" ResStockArguments site_city=auto +City "NV, Spring Valley" ResStockArguments site_city=auto +City "NV, Sunrise Manor" ResStockArguments site_city=auto +City "NV, Whitney" ResStockArguments site_city=auto +City "NY, Albany" ResStockArguments site_city=auto +City "NY, Binghamton" ResStockArguments site_city=auto +City "NY, Brighton" ResStockArguments site_city=auto +City "NY, Buffalo" ResStockArguments site_city=auto +City "NY, Cheektowaga" ResStockArguments site_city=auto +City "NY, Coram" ResStockArguments site_city=auto +City "NY, Hempstead" ResStockArguments site_city=auto +City "NY, Irondequoit" ResStockArguments site_city=auto +City "NY, Levittown" ResStockArguments site_city=auto +City "NY, Long Beach" ResStockArguments site_city=auto +City "NY, Mount Vernon" ResStockArguments site_city=auto +City "NY, New Rochelle" ResStockArguments site_city=auto +City "NY, New York" ResStockArguments site_city=auto +City "NY, Niagara Falls" ResStockArguments site_city=auto +City "NY, Rochester" ResStockArguments site_city=auto +City "NY, Rome" ResStockArguments site_city=auto +City "NY, Schenectady" ResStockArguments site_city=auto +City "NY, Syracuse" ResStockArguments site_city=auto +City "NY, Tonawanda" ResStockArguments site_city=auto +City "NY, Troy" ResStockArguments site_city=auto +City "NY, Utica" ResStockArguments site_city=auto +City "NY, West Seneca" ResStockArguments site_city=auto +City "NY, White Plains" ResStockArguments site_city=auto +City "NY, Yonkers" ResStockArguments site_city=auto +City "OH, Akron" ResStockArguments site_city=auto +City "OH, Beavercreek" ResStockArguments site_city=auto +City "OH, Boardman" ResStockArguments site_city=auto +City "OH, Canton" ResStockArguments site_city=auto +City "OH, Cincinnati" ResStockArguments site_city=auto +City "OH, Cleveland Heights" ResStockArguments site_city=auto +City "OH, Cleveland" ResStockArguments site_city=auto +City "OH, Columbus" ResStockArguments site_city=auto +City "OH, Cuyahoga Falls" ResStockArguments site_city=auto +City "OH, Dayton" ResStockArguments site_city=auto +City "OH, Delaware" ResStockArguments site_city=auto +City "OH, Dublin" ResStockArguments site_city=auto +City "OH, Elyria" ResStockArguments site_city=auto +City "OH, Euclid" ResStockArguments site_city=auto +City "OH, Fairborn" ResStockArguments site_city=auto +City "OH, Fairfield" ResStockArguments site_city=auto +City "OH, Findlay" ResStockArguments site_city=auto +City "OH, Grove City" ResStockArguments site_city=auto +City "OH, Hamilton" ResStockArguments site_city=auto +City "OH, Huber Heights" ResStockArguments site_city=auto +City "OH, Kettering" ResStockArguments site_city=auto +City "OH, Lakewood" ResStockArguments site_city=auto +City "OH, Lancaster" ResStockArguments site_city=auto +City "OH, Lima" ResStockArguments site_city=auto +City "OH, Lorain" ResStockArguments site_city=auto +City "OH, Mansfield" ResStockArguments site_city=auto +City "OH, Marion" ResStockArguments site_city=auto +City "OH, Mentor" ResStockArguments site_city=auto +City "OH, Middletown" ResStockArguments site_city=auto +City "OH, Newark" ResStockArguments site_city=auto +City "OH, Parma" ResStockArguments site_city=auto +City "OH, Springfield" ResStockArguments site_city=auto +City "OH, Stow" ResStockArguments site_city=auto +City "OH, Strongsville" ResStockArguments site_city=auto +City "OH, Toledo" ResStockArguments site_city=auto +City "OH, Warren" ResStockArguments site_city=auto +City "OH, Youngstown" ResStockArguments site_city=auto +City "OK, Bartlesville" ResStockArguments site_city=auto +City "OK, Broken Arrow" ResStockArguments site_city=auto +City "OK, Edmond" ResStockArguments site_city=auto +City "OK, Enid" ResStockArguments site_city=auto +City "OK, Lawton" ResStockArguments site_city=auto +City "OK, Midwest City" ResStockArguments site_city=auto +City "OK, Moore" ResStockArguments site_city=auto +City "OK, Muskogee" ResStockArguments site_city=auto +City "OK, Norman" ResStockArguments site_city=auto +City "OK, Oklahoma City" ResStockArguments site_city=auto +City "OK, Stillwater" ResStockArguments site_city=auto +City "OK, Tulsa" ResStockArguments site_city=auto +City "OR, Albany" ResStockArguments site_city=auto +City "OR, Aloha" ResStockArguments site_city=auto +City "OR, Beaverton" ResStockArguments site_city=auto +City "OR, Bend" ResStockArguments site_city=auto +City "OR, Corvallis" ResStockArguments site_city=auto +City "OR, Eugene" ResStockArguments site_city=auto +City "OR, Grants Pass" ResStockArguments site_city=auto +City "OR, Gresham" ResStockArguments site_city=auto +City "OR, Hillsboro" ResStockArguments site_city=auto +City "OR, Lake Oswego" ResStockArguments site_city=auto +City "OR, Medford" ResStockArguments site_city=auto +City "OR, Portland" ResStockArguments site_city=auto +City "OR, Salem" ResStockArguments site_city=auto +City "OR, Springfield" ResStockArguments site_city=auto +City "OR, Tigard" ResStockArguments site_city=auto +City "PA, Allentown" ResStockArguments site_city=auto +City "PA, Altoona" ResStockArguments site_city=auto +City "PA, Bethlehem" ResStockArguments site_city=auto +City "PA, Erie" ResStockArguments site_city=auto +City "PA, Harrisburg" ResStockArguments site_city=auto +City "PA, Lancaster" ResStockArguments site_city=auto +City "PA, Levittown" ResStockArguments site_city=auto +City "PA, Philadelphia" ResStockArguments site_city=auto +City "PA, Pittsburgh" ResStockArguments site_city=auto +City "PA, Reading" ResStockArguments site_city=auto +City "PA, Scranton" ResStockArguments site_city=auto +City "PA, Wilkes-Barre" ResStockArguments site_city=auto +City "PA, York" ResStockArguments site_city=auto +City "RI, Cranston" ResStockArguments site_city=auto +City "RI, East Providence" ResStockArguments site_city=auto +City "RI, Pawtucket" ResStockArguments site_city=auto +City "RI, Providence" ResStockArguments site_city=auto +City "RI, Warwick" ResStockArguments site_city=auto +City "RI, Woonsocket" ResStockArguments site_city=auto +City "SC, Charleston" ResStockArguments site_city=auto +City "SC, Columbia" ResStockArguments site_city=auto +City "SC, Florence" ResStockArguments site_city=auto +City "SC, Goose Creek" ResStockArguments site_city=auto +City "SC, Greenville" ResStockArguments site_city=auto +City "SC, Hilton Head Island" ResStockArguments site_city=auto +City "SC, Mount Pleasant" ResStockArguments site_city=auto +City "SC, Myrtle Beach" ResStockArguments site_city=auto +City "SC, North Charleston" ResStockArguments site_city=auto +City "SC, North Myrtle Beach" ResStockArguments site_city=auto +City "SC, Rock Hill" ResStockArguments site_city=auto +City "SC, Spartanburg" ResStockArguments site_city=auto +City "SC, Summerville" ResStockArguments site_city=auto +City "SC, Sumter" ResStockArguments site_city=auto +City "SD, Rapid City" ResStockArguments site_city=auto +City "SD, Sioux Falls" ResStockArguments site_city=auto +City "TN, Bartlett" ResStockArguments site_city=auto +City "TN, Chattanooga" ResStockArguments site_city=auto +City "TN, Clarksville" ResStockArguments site_city=auto +City "TN, Cleveland" ResStockArguments site_city=auto +City "TN, Collierville" ResStockArguments site_city=auto +City "TN, Columbia" ResStockArguments site_city=auto +City "TN, Franklin" ResStockArguments site_city=auto +City "TN, Germantown" ResStockArguments site_city=auto +City "TN, Hendersonville" ResStockArguments site_city=auto +City "TN, Jackson" ResStockArguments site_city=auto +City "TN, Johnson City" ResStockArguments site_city=auto +City "TN, Kingsport" ResStockArguments site_city=auto +City "TN, Knoxville" ResStockArguments site_city=auto +City "TN, Memphis" ResStockArguments site_city=auto +City "TN, Murfreesboro" ResStockArguments site_city=auto +City "TN, Nashville-Davidson Metropolitan Government Balance" ResStockArguments site_city=auto +City "TN, Smyrna" ResStockArguments site_city=auto +City "TX, Abilene" ResStockArguments site_city=auto +City "TX, Allen" ResStockArguments site_city=auto +City "TX, Amarillo" ResStockArguments site_city=auto +City "TX, Arlington" ResStockArguments site_city=auto +City "TX, Atascocita" ResStockArguments site_city=auto +City "TX, Austin" ResStockArguments site_city=auto +City "TX, Baytown" ResStockArguments site_city=auto +City "TX, Beaumont" ResStockArguments site_city=auto +City "TX, Bedford" ResStockArguments site_city=auto +City "TX, Brownsville" ResStockArguments site_city=auto +City "TX, Bryan" ResStockArguments site_city=auto +City "TX, Burleson" ResStockArguments site_city=auto +City "TX, Carrollton" ResStockArguments site_city=auto +City "TX, Cedar Hill" ResStockArguments site_city=auto +City "TX, Cedar Park" ResStockArguments site_city=auto +City "TX, College Station" ResStockArguments site_city=auto +City "TX, Conroe" ResStockArguments site_city=auto +City "TX, Coppell" ResStockArguments site_city=auto +City "TX, Corpus Christi" ResStockArguments site_city=auto +City "TX, Dallas" ResStockArguments site_city=auto +City "TX, Denton" ResStockArguments site_city=auto +City "TX, Desoto" ResStockArguments site_city=auto +City "TX, Edinburg" ResStockArguments site_city=auto +City "TX, El Paso" ResStockArguments site_city=auto +City "TX, Euless" ResStockArguments site_city=auto +City "TX, Flower Mound" ResStockArguments site_city=auto +City "TX, Fort Worth" ResStockArguments site_city=auto +City "TX, Frisco" ResStockArguments site_city=auto +City "TX, Galveston" ResStockArguments site_city=auto +City "TX, Garland" ResStockArguments site_city=auto +City "TX, Georgetown" ResStockArguments site_city=auto +City "TX, Grand Prairie" ResStockArguments site_city=auto +City "TX, Grapevine" ResStockArguments site_city=auto +City "TX, Haltom City" ResStockArguments site_city=auto +City "TX, Harlingen" ResStockArguments site_city=auto +City "TX, Houston" ResStockArguments site_city=auto +City "TX, Hurst" ResStockArguments site_city=auto +City "TX, Irving" ResStockArguments site_city=auto +City "TX, Keller" ResStockArguments site_city=auto +City "TX, Killeen" ResStockArguments site_city=auto +City "TX, Laredo" ResStockArguments site_city=auto +City "TX, League City" ResStockArguments site_city=auto +City "TX, Lewisville" ResStockArguments site_city=auto +City "TX, Longview" ResStockArguments site_city=auto +City "TX, Lubbock" ResStockArguments site_city=auto +City "TX, Lufkin" ResStockArguments site_city=auto +City "TX, Mansfield" ResStockArguments site_city=auto +City "TX, Mcallen" ResStockArguments site_city=auto +City "TX, Mckinney" ResStockArguments site_city=auto +City "TX, Mesquite" ResStockArguments site_city=auto +City "TX, Midland" ResStockArguments site_city=auto +City "TX, Mission" ResStockArguments site_city=auto +City "TX, Missouri City" ResStockArguments site_city=auto +City "TX, New Braunfels" ResStockArguments site_city=auto +City "TX, North Richland Hills" ResStockArguments site_city=auto +City "TX, Odessa" ResStockArguments site_city=auto +City "TX, Pasadena" ResStockArguments site_city=auto +City "TX, Pearland" ResStockArguments site_city=auto +City "TX, Pflugerville" ResStockArguments site_city=auto +City "TX, Pharr" ResStockArguments site_city=auto +City "TX, Plano" ResStockArguments site_city=auto +City "TX, Port Arthur" ResStockArguments site_city=auto +City "TX, Richardson" ResStockArguments site_city=auto +City "TX, Round Rock" ResStockArguments site_city=auto +City "TX, Rowlett" ResStockArguments site_city=auto +City "TX, San Angelo" ResStockArguments site_city=auto +City "TX, San Antonio" ResStockArguments site_city=auto +City "TX, San Marcos" ResStockArguments site_city=auto +City "TX, Sherman" ResStockArguments site_city=auto +City "TX, Spring" ResStockArguments site_city=auto +City "TX, Sugar Land" ResStockArguments site_city=auto +City "TX, Temple" ResStockArguments site_city=auto +City "TX, Texarkana" ResStockArguments site_city=auto +City "TX, Texas City" ResStockArguments site_city=auto +City "TX, The Colony" ResStockArguments site_city=auto +City "TX, The Woodlands" ResStockArguments site_city=auto +City "TX, Tyler" ResStockArguments site_city=auto +City "TX, Victoria" ResStockArguments site_city=auto +City "TX, Waco" ResStockArguments site_city=auto +City "TX, Wichita Falls" ResStockArguments site_city=auto +City "TX, Wylie" ResStockArguments site_city=auto +City "UT, Layton" ResStockArguments site_city=auto +City "UT, Lehi" ResStockArguments site_city=auto +City "UT, Logan" ResStockArguments site_city=auto +City "UT, Millcreek" ResStockArguments site_city=auto +City "UT, Murray" ResStockArguments site_city=auto +City "UT, Ogden" ResStockArguments site_city=auto +City "UT, Orem" ResStockArguments site_city=auto +City "UT, Provo" ResStockArguments site_city=auto +City "UT, Salt Lake City" ResStockArguments site_city=auto +City "UT, Sandy" ResStockArguments site_city=auto +City "UT, South Jordan" ResStockArguments site_city=auto +City "UT, St George" ResStockArguments site_city=auto +City "UT, Taylorsville" ResStockArguments site_city=auto +City "UT, West Jordan" ResStockArguments site_city=auto +City "UT, West Valley City" ResStockArguments site_city=auto +City "VA, Alexandria" ResStockArguments site_city=auto +City "VA, Arlington" ResStockArguments site_city=auto +City "VA, Ashburn" ResStockArguments site_city=auto +City "VA, Blacksburg" ResStockArguments site_city=auto +City "VA, Centreville" ResStockArguments site_city=auto +City "VA, Charlottesville" ResStockArguments site_city=auto +City "VA, Chesapeake" ResStockArguments site_city=auto +City "VA, Dale City" ResStockArguments site_city=auto +City "VA, Danville" ResStockArguments site_city=auto +City "VA, Hampton" ResStockArguments site_city=auto +City "VA, Harrisonburg" ResStockArguments site_city=auto +City "VA, Lake Ridge" ResStockArguments site_city=auto +City "VA, Leesburg" ResStockArguments site_city=auto +City "VA, Lynchburg" ResStockArguments site_city=auto +City "VA, Mclean" ResStockArguments site_city=auto +City "VA, Mechanicsville" ResStockArguments site_city=auto +City "VA, Newport News" ResStockArguments site_city=auto +City "VA, Norfolk" ResStockArguments site_city=auto +City "VA, Petersburg" ResStockArguments site_city=auto +City "VA, Portsmouth" ResStockArguments site_city=auto +City "VA, Reston" ResStockArguments site_city=auto +City "VA, Richmond" ResStockArguments site_city=auto +City "VA, Roanoke" ResStockArguments site_city=auto +City "VA, Suffolk" ResStockArguments site_city=auto +City "VA, Tuckahoe" ResStockArguments site_city=auto +City "VA, Virginia Beach" ResStockArguments site_city=auto +City "VT, Burlington" ResStockArguments site_city=auto +City "WA, Auburn" ResStockArguments site_city=auto +City "WA, Bellevue" ResStockArguments site_city=auto +City "WA, Bellingham" ResStockArguments site_city=auto +City "WA, Bremerton" ResStockArguments site_city=auto +City "WA, Edmonds" ResStockArguments site_city=auto +City "WA, Everett" ResStockArguments site_city=auto +City "WA, Federal Way" ResStockArguments site_city=auto +City "WA, Kennewick" ResStockArguments site_city=auto +City "WA, Kent" ResStockArguments site_city=auto +City "WA, Kirkland" ResStockArguments site_city=auto +City "WA, Lacey" ResStockArguments site_city=auto +City "WA, Lakewood" ResStockArguments site_city=auto +City "WA, Longview" ResStockArguments site_city=auto +City "WA, Marysville" ResStockArguments site_city=auto +City "WA, Olympia" ResStockArguments site_city=auto +City "WA, Pasco" ResStockArguments site_city=auto +City "WA, Puyallup" ResStockArguments site_city=auto +City "WA, Redmond" ResStockArguments site_city=auto +City "WA, Renton" ResStockArguments site_city=auto +City "WA, Richland" ResStockArguments site_city=auto +City "WA, Sammamish" ResStockArguments site_city=auto +City "WA, Seattle" ResStockArguments site_city=auto +City "WA, Shoreline" ResStockArguments site_city=auto +City "WA, South Hill" ResStockArguments site_city=auto +City "WA, Spokane Valley" ResStockArguments site_city=auto +City "WA, Spokane" ResStockArguments site_city=auto +City "WA, Tacoma" ResStockArguments site_city=auto +City "WA, Vancouver" ResStockArguments site_city=auto +City "WA, Yakima" ResStockArguments site_city=auto +City "WI, Appleton" ResStockArguments site_city=auto +City "WI, Beloit" ResStockArguments site_city=auto +City "WI, Eau Claire" ResStockArguments site_city=auto +City "WI, Fond Du Lac" ResStockArguments site_city=auto +City "WI, Green Bay" ResStockArguments site_city=auto +City "WI, Greenfield" ResStockArguments site_city=auto +City "WI, Janesville" ResStockArguments site_city=auto +City "WI, Kenosha" ResStockArguments site_city=auto +City "WI, La Crosse" ResStockArguments site_city=auto +City "WI, Madison" ResStockArguments site_city=auto +City "WI, Manitowoc" ResStockArguments site_city=auto +City "WI, Menomonee Falls" ResStockArguments site_city=auto +City "WI, Milwaukee" ResStockArguments site_city=auto +City "WI, New Berlin" ResStockArguments site_city=auto +City "WI, Oshkosh" ResStockArguments site_city=auto +City "WI, Racine" ResStockArguments site_city=auto +City "WI, Sheboygan" ResStockArguments site_city=auto +City "WI, Waukesha" ResStockArguments site_city=auto +City "WI, Wausau" ResStockArguments site_city=auto +City "WI, Wauwatosa" ResStockArguments site_city=auto +City "WI, West Allis" ResStockArguments site_city=auto +City "WV, Charleston" ResStockArguments site_city=auto +City "WV, Huntington" ResStockArguments site_city=auto +City "WV, Parkersburg" ResStockArguments site_city=auto +City "WY, Casper" ResStockArguments site_city=auto +City "WY, Cheyenne" ResStockArguments site_city=auto +City In another census Place ResStockArguments site_city=auto +City Not in a census Place ResStockArguments site_city=auto +Clothes Dryer "Electric, Heat Pump, Ventless" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=4.5 clothes_dryer_vented_flow_rate=0 +Clothes Dryer "Electric Heat Pump, 120V" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=4.5 clothes_dryer_vented_flow_rate=0 +Clothes Dryer "Electric, Premium" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.42 clothes_dryer_vented_flow_rate=auto +Clothes Dryer "Electric, Premium, EnergyStar" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.93 clothes_dryer_vented_flow_rate=auto +Clothes Dryer "Electric, Premium, Heat Pump, Ventless" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=5.2 clothes_dryer_vented_flow_rate=0 +Clothes Dryer "Gas, Premium" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.03 clothes_dryer_vented_flow_rate=auto +Clothes Dryer Electric ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.70 clothes_dryer_vented_flow_rate=auto +Clothes Dryer Gas ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.39 clothes_dryer_vented_flow_rate=auto +Clothes Dryer None ResStockArguments clothes_dryer_present=false clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.70 clothes_dryer_vented_flow_rate=auto +Clothes Dryer Propane ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=propane clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.39 clothes_dryer_vented_flow_rate=auto +Clothes Dryer Void +Clothes Dryer Usage Level 100% Usage ResStockArguments clothes_dryer_usage_multiplier=1.0 +Clothes Dryer Usage Level 120% Usage ResStockArguments clothes_dryer_usage_multiplier=1.2 +Clothes Dryer Usage Level 80% Usage ResStockArguments clothes_dryer_usage_multiplier=0.8 +Clothes Washer "EnergyStar, Cold Only" ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.07 clothes_washer_rated_annual_kwh=123 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=9 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.68 +Clothes Washer CEE Advanced Tier ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=3.1 clothes_washer_rated_annual_kwh=120 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=14 clothes_washer_label_usage=7.538462 clothes_washer_capacity=5.8 +Clothes Washer EnergyStar ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.07 clothes_washer_rated_annual_kwh=123 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=9 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.68 +Clothes Washer EnergyStar More Efficient ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.83 clothes_washer_rated_annual_kwh=90 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=8 clothes_washer_label_usage=7.538462 clothes_washer_capacity=4.5 +Clothes Washer EnergyStar Most Efficient ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.92 clothes_washer_rated_annual_kwh=75 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=7 clothes_washer_label_usage=7.538462 clothes_washer_capacity=4.5 +Clothes Washer None ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=0 clothes_washer_rated_annual_kwh=0 clothes_washer_label_electric_rate=0 clothes_washer_label_gas_rate=0 clothes_washer_label_annual_gas_cost=0 clothes_washer_label_usage=0 clothes_washer_capacity=0 +Clothes Washer Standard ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=0.95 clothes_washer_rated_annual_kwh=387 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=24 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.5 +Clothes Washer Void +Clothes Washer Presence None ResStockArguments clothes_washer_present=false +Clothes Washer Presence Void +Clothes Washer Presence Yes ResStockArguments clothes_washer_present=true +Clothes Washer Usage Level 100% Usage ResStockArguments clothes_washer_usage_multiplier=1.0 +Clothes Washer Usage Level 120% Usage ResStockArguments clothes_washer_usage_multiplier=1.2 +Clothes Washer Usage Level 80% Usage ResStockArguments clothes_washer_usage_multiplier=0.8 +Cooking Range Electric Induction ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=electricity cooking_range_oven_is_induction=true cooking_range_oven_is_convection=auto +Cooking Range Electric Resistance ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=electricity cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto +Cooking Range "Electric Induction, 120V, battery powered" ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=electricity cooking_range_oven_is_induction=true cooking_range_oven_is_convection=auto +Cooking Range Gas ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=natural gas cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto +Cooking Range None ResStockArguments cooking_range_oven_present=false cooking_range_oven_location=auto cooking_range_oven_fuel_type=natural gas cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto +Cooking Range Propane ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=propane cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto +Cooking Range Void +Cooking Range Usage Level 100% Usage ResStockArguments cooking_range_oven_usage_multiplier=1.0 +Cooking Range Usage Level 120% Usage ResStockArguments cooking_range_oven_usage_multiplier=1.2 +Cooking Range Usage Level 80% Usage ResStockArguments cooking_range_oven_usage_multiplier=0.8 +Cooling Setpoint 60F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=60 hvac_control_cooling_weekend_setpoint_temp=60 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 62F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=62 hvac_control_cooling_weekend_setpoint_temp=62 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 64F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=64 hvac_control_cooling_weekend_setpoint_temp=64 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 65F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=65 hvac_control_cooling_weekend_setpoint_temp=65 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 66F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=66 hvac_control_cooling_weekend_setpoint_temp=66 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 67F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=67 hvac_control_cooling_weekend_setpoint_temp=67 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 68F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=68 hvac_control_cooling_weekend_setpoint_temp=68 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 69F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=69 hvac_control_cooling_weekend_setpoint_temp=69 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 70F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=70 hvac_control_cooling_weekend_setpoint_temp=70 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 72F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=72 hvac_control_cooling_weekend_setpoint_temp=72 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 73F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=73 hvac_control_cooling_weekend_setpoint_temp=73 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 74F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=74 hvac_control_cooling_weekend_setpoint_temp=74 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 75F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=75 hvac_control_cooling_weekend_setpoint_temp=75 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 76F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=76 hvac_control_cooling_weekend_setpoint_temp=76 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 76F w/ Building America season ResStockArguments hvac_control_cooling_weekday_setpoint_temp=76 hvac_control_cooling_weekend_setpoint_temp=76 use_auto_cooling_season=true hvac_control_cooling_season_period=auto +Cooling Setpoint 77F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=77 hvac_control_cooling_weekend_setpoint_temp=77 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 78F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=78 hvac_control_cooling_weekend_setpoint_temp=78 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 80F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=80 hvac_control_cooling_weekend_setpoint_temp=80 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint Has Offset No +Cooling Setpoint Has Offset Yes +Cooling Setpoint Offset Magnitude 0F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=0 hvac_control_cooling_weekend_setpoint_offset_magnitude=0 +Cooling Setpoint Offset Magnitude 2F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=2 hvac_control_cooling_weekend_setpoint_offset_magnitude=2 +Cooling Setpoint Offset Magnitude 5F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=5 hvac_control_cooling_weekend_setpoint_offset_magnitude=5 +Cooling Setpoint Offset Magnitude 9F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=9 hvac_control_cooling_weekend_setpoint_offset_magnitude=9 +Cooling Setpoint Offset Period Day Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup and Night Setback ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day Setup and Night Setback +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day Setup and Night Setback +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day Setup and Night Setback +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day Setup and Night Setback -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" +Cooling Setpoint Offset Period Day and Night Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1" +Cooling Setpoint Offset Period Day and Night Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1" +Cooling Setpoint Offset Period Day and Night Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day and Night Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day and Night Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day and Night Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day and Night Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1" +Cooling Setpoint Offset Period Day and Night Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1" +Cooling Setpoint Offset Period Day and Night Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1" +Cooling Setpoint Offset Period Day and Night Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1" +Cooling Setpoint Offset Period Day and Night Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1" +Cooling Setpoint Offset Period Night Setback ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" +Cooling Setpoint Offset Period Night Setback +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" +Cooling Setpoint Offset Period Night Setback +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setback +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setback +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setback +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setback -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" +Cooling Setpoint Offset Period Night Setback -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" +Cooling Setpoint Offset Period Night Setback -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" +Cooling Setpoint Offset Period Night Setback -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" +Cooling Setpoint Offset Period Night Setback -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" +Cooling Setpoint Offset Period Night Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1" +Cooling Setpoint Offset Period Night Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1" +Cooling Setpoint Offset Period Night Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1" +Cooling Setpoint Offset Period Night Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1" +Cooling Setpoint Offset Period Night Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1" +Cooling Setpoint Offset Period Night Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1" +Cooling Setpoint Offset Period Night Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1" +Cooling Setpoint Offset Period None ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Corridor Double Exterior ResStockArguments geometry_corridor_position=Double Exterior geometry_corridor_width=10 +Corridor Double-Loaded Interior ResStockArguments geometry_corridor_position=Double-Loaded Interior geometry_corridor_width=10 +Corridor None ResStockArguments geometry_corridor_position=None geometry_corridor_width=0 +Corridor Not Applicable ResStockArguments geometry_corridor_position=None geometry_corridor_width=0 +Corridor Single Exterior Front ResStockArguments geometry_corridor_position=Single Exterior (Front) geometry_corridor_width=10 +County "AK, Aleutians East Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200130.epw site_zip_code=99661 site_time_zone_utc_offset=-9 +County "AK, Aleutians West Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200160.epw site_zip_code=99685 site_time_zone_utc_offset=-9 +County "AK, Anchorage Municipality" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200200.epw site_zip_code=99501 site_time_zone_utc_offset=-9 +County "AK, Bethel Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200500.epw site_zip_code=99545 site_time_zone_utc_offset=-9 +County "AK, Bristol Bay Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200600.epw site_zip_code=99633 site_time_zone_utc_offset=-9 +County "AK, Denali Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200680.epw site_zip_code=99743 site_time_zone_utc_offset=-9 +County "AK, Dillingham Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200700.epw site_zip_code=99576 site_time_zone_utc_offset=-9 +County "AK, Fairbanks North Star Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200900.epw site_zip_code=99709 site_time_zone_utc_offset=-9 +County "AK, Haines Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201000.epw site_zip_code=99827 site_time_zone_utc_offset=-9 +County "AK, Hoonah-Angoon Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201050.epw site_zip_code=99829 site_time_zone_utc_offset=-9 +County "AK, Juneau City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201100.epw site_zip_code=99802 site_time_zone_utc_offset=-9 +County "AK, Kenai Peninsula Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201220.epw site_zip_code=99611 site_time_zone_utc_offset=-9 +County "AK, Ketchikan Gateway Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201300.epw site_zip_code=99901 site_time_zone_utc_offset=-9 +County "AK, Kodiak Island Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201500.epw site_zip_code=99615 site_time_zone_utc_offset=-9 +County "AK, Kusilvak Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202700.epw site_zip_code=99604 site_time_zone_utc_offset=-9 +County "AK, Lake and Peninsula Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201640.epw site_zip_code=99653 site_time_zone_utc_offset=-9 +County "AK, Matanuska-Susitna Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201700.epw site_zip_code=99645 site_time_zone_utc_offset=-9 +County "AK, Nome Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201800.epw site_zip_code=99762 site_time_zone_utc_offset=-9 +County "AK, North Slope Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201850.epw site_zip_code=99723 site_time_zone_utc_offset=-9 +County "AK, Northwest Arctic Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201880.epw site_zip_code=99752 site_time_zone_utc_offset=-9 +County "AK, Petersburg Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201950.epw site_zip_code=99833 site_time_zone_utc_offset=-9 +County "AK, Prince of Wales-Hyder Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201980.epw site_zip_code=99926 site_time_zone_utc_offset=-9 +County "AK, Sitka City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202200.epw site_zip_code=99835 site_time_zone_utc_offset=-9 +County "AK, Skagway Municipality" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202300.epw site_zip_code=99840 site_time_zone_utc_offset=-9 +County "AK, Southeast Fairbanks Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202400.epw site_zip_code=99731 site_time_zone_utc_offset=-9 +County "AK, Valdez-Cordova Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202610.epw site_zip_code=99686 site_time_zone_utc_offset=-9 +County "AK, Wrangell City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202750.epw site_zip_code=99903 site_time_zone_utc_offset=-9 +County "AK, Yakutat City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202820.epw site_zip_code=99689 site_time_zone_utc_offset=-9 +County "AK, Yukon-Koyukuk Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202900.epw site_zip_code=99740 site_time_zone_utc_offset=-9 +County "AL, Autauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100010.epw site_zip_code=36067 site_time_zone_utc_offset=-6 +County "AL, Baldwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100030.epw site_zip_code=36535 site_time_zone_utc_offset=-6 +County "AL, Barbour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100050.epw site_zip_code=36027 site_time_zone_utc_offset=-6 +County "AL, Bibb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100070.epw site_zip_code=35042 site_time_zone_utc_offset=-6 +County "AL, Blount County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100090.epw site_zip_code=35121 site_time_zone_utc_offset=-6 +County "AL, Bullock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100110.epw site_zip_code=36089 site_time_zone_utc_offset=-6 +County "AL, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100130.epw site_zip_code=36037 site_time_zone_utc_offset=-6 +County "AL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100150.epw site_zip_code=36201 site_time_zone_utc_offset=-6 +County "AL, Chambers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100170.epw site_zip_code=36863 site_time_zone_utc_offset=-6 +County "AL, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100190.epw site_zip_code=35960 site_time_zone_utc_offset=-6 +County "AL, Chilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100210.epw site_zip_code=35045 site_time_zone_utc_offset=-6 +County "AL, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100230.epw site_zip_code=36904 site_time_zone_utc_offset=-6 +County "AL, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100250.epw site_zip_code=36545 site_time_zone_utc_offset=-6 +County "AL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100270.epw site_zip_code=36251 site_time_zone_utc_offset=-6 +County "AL, Cleburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100290.epw site_zip_code=36264 site_time_zone_utc_offset=-6 +County "AL, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100310.epw site_zip_code=36330 site_time_zone_utc_offset=-6 +County "AL, Colbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100330.epw site_zip_code=35674 site_time_zone_utc_offset=-6 +County "AL, Conecuh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100350.epw site_zip_code=36401 site_time_zone_utc_offset=-6 +County "AL, Coosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100370.epw site_zip_code=35151 site_time_zone_utc_offset=-6 +County "AL, Covington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100390.epw site_zip_code=36420 site_time_zone_utc_offset=-6 +County "AL, Crenshaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100410.epw site_zip_code=36049 site_time_zone_utc_offset=-6 +County "AL, Cullman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100430.epw site_zip_code=35055 site_time_zone_utc_offset=-6 +County "AL, Dale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100450.epw site_zip_code=36360 site_time_zone_utc_offset=-6 +County "AL, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100470.epw site_zip_code=36701 site_time_zone_utc_offset=-6 +County "AL, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100490.epw site_zip_code=35967 site_time_zone_utc_offset=-6 +County "AL, Elmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100510.epw site_zip_code=36092 site_time_zone_utc_offset=-6 +County "AL, Escambia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100530.epw site_zip_code=36426 site_time_zone_utc_offset=-6 +County "AL, Etowah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100550.epw site_zip_code=35901 site_time_zone_utc_offset=-6 +County "AL, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100570.epw site_zip_code=35555 site_time_zone_utc_offset=-6 +County "AL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100590.epw site_zip_code=35653 site_time_zone_utc_offset=-6 +County "AL, Geneva County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100610.epw site_zip_code=36375 site_time_zone_utc_offset=-6 +County "AL, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100630.epw site_zip_code=35462 site_time_zone_utc_offset=-6 +County "AL, Hale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100650.epw site_zip_code=36744 site_time_zone_utc_offset=-6 +County "AL, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100670.epw site_zip_code=36310 site_time_zone_utc_offset=-6 +County "AL, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100690.epw site_zip_code=36301 site_time_zone_utc_offset=-6 +County "AL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100710.epw site_zip_code=35768 site_time_zone_utc_offset=-6 +County "AL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100730.epw site_zip_code=35215 site_time_zone_utc_offset=-6 +County "AL, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100750.epw site_zip_code=35586 site_time_zone_utc_offset=-6 +County "AL, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100770.epw site_zip_code=35630 site_time_zone_utc_offset=-6 +County "AL, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100790.epw site_zip_code=35650 site_time_zone_utc_offset=-6 +County "AL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100810.epw site_zip_code=36830 site_time_zone_utc_offset=-6 +County "AL, Limestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100830.epw site_zip_code=35611 site_time_zone_utc_offset=-6 +County "AL, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100850.epw site_zip_code=36040 site_time_zone_utc_offset=-6 +County "AL, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100870.epw site_zip_code=36083 site_time_zone_utc_offset=-6 +County "AL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100890.epw site_zip_code=35758 site_time_zone_utc_offset=-6 +County "AL, Marengo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100910.epw site_zip_code=36732 site_time_zone_utc_offset=-6 +County "AL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100930.epw site_zip_code=35570 site_time_zone_utc_offset=-6 +County "AL, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100950.epw site_zip_code=35976 site_time_zone_utc_offset=-6 +County "AL, Mobile County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100970.epw site_zip_code=36695 site_time_zone_utc_offset=-6 +County "AL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100990.epw site_zip_code=36460 site_time_zone_utc_offset=-6 +County "AL, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101010.epw site_zip_code=36117 site_time_zone_utc_offset=-6 +County "AL, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101030.epw site_zip_code=35601 site_time_zone_utc_offset=-6 +County "AL, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101050.epw site_zip_code=36756 site_time_zone_utc_offset=-6 +County "AL, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101070.epw site_zip_code=35466 site_time_zone_utc_offset=-6 +County "AL, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101090.epw site_zip_code=36081 site_time_zone_utc_offset=-6 +County "AL, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101110.epw site_zip_code=36274 site_time_zone_utc_offset=-6 +County "AL, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101130.epw site_zip_code=36869 site_time_zone_utc_offset=-6 +County "AL, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101170.epw site_zip_code=35242 site_time_zone_utc_offset=-6 +County "AL, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101150.epw site_zip_code=35120 site_time_zone_utc_offset=-6 +County "AL, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101190.epw site_zip_code=36925 site_time_zone_utc_offset=-6 +County "AL, Talladega County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101210.epw site_zip_code=35160 site_time_zone_utc_offset=-6 +County "AL, Tallapoosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101230.epw site_zip_code=35010 site_time_zone_utc_offset=-6 +County "AL, Tuscaloosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101250.epw site_zip_code=35401 site_time_zone_utc_offset=-6 +County "AL, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101270.epw site_zip_code=35504 site_time_zone_utc_offset=-6 +County "AL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101290.epw site_zip_code=36558 site_time_zone_utc_offset=-6 +County "AL, Wilcox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101310.epw site_zip_code=36726 site_time_zone_utc_offset=-6 +County "AL, Winston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101330.epw site_zip_code=35565 site_time_zone_utc_offset=-6 +County "AR, Arkansas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500010.epw site_zip_code=72160 site_time_zone_utc_offset=-6 +County "AR, Ashley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500030.epw site_zip_code=71635 site_time_zone_utc_offset=-6 +County "AR, Baxter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500050.epw site_zip_code=72653 site_time_zone_utc_offset=-6 +County "AR, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500070.epw site_zip_code=72712 site_time_zone_utc_offset=-6 +County "AR, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500090.epw site_zip_code=72601 site_time_zone_utc_offset=-6 +County "AR, Bradley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500110.epw site_zip_code=71671 site_time_zone_utc_offset=-6 +County "AR, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500130.epw site_zip_code=71744 site_time_zone_utc_offset=-6 +County "AR, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500150.epw site_zip_code=72616 site_time_zone_utc_offset=-6 +County "AR, Chicot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500170.epw site_zip_code=71653 site_time_zone_utc_offset=-6 +County "AR, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500190.epw site_zip_code=71923 site_time_zone_utc_offset=-6 +County "AR, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500210.epw site_zip_code=72454 site_time_zone_utc_offset=-6 +County "AR, Cleburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500230.epw site_zip_code=72543 site_time_zone_utc_offset=-6 +County "AR, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500250.epw site_zip_code=71665 site_time_zone_utc_offset=-6 +County "AR, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500270.epw site_zip_code=71753 site_time_zone_utc_offset=-6 +County "AR, Conway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500290.epw site_zip_code=72110 site_time_zone_utc_offset=-6 +County "AR, Craighead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500310.epw site_zip_code=72401 site_time_zone_utc_offset=-6 +County "AR, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500330.epw site_zip_code=72956 site_time_zone_utc_offset=-6 +County "AR, Crittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500350.epw site_zip_code=72301 site_time_zone_utc_offset=-6 +County "AR, Cross County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500370.epw site_zip_code=72396 site_time_zone_utc_offset=-6 +County "AR, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500390.epw site_zip_code=71742 site_time_zone_utc_offset=-6 +County "AR, Desha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500410.epw site_zip_code=71639 site_time_zone_utc_offset=-6 +County "AR, Drew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500430.epw site_zip_code=71655 site_time_zone_utc_offset=-6 +County "AR, Faulkner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500450.epw site_zip_code=72034 site_time_zone_utc_offset=-6 +County "AR, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500470.epw site_zip_code=72949 site_time_zone_utc_offset=-6 +County "AR, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500490.epw site_zip_code=72554 site_time_zone_utc_offset=-6 +County "AR, Garland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500510.epw site_zip_code=71913 site_time_zone_utc_offset=-6 +County "AR, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500530.epw site_zip_code=72150 site_time_zone_utc_offset=-6 +County "AR, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500550.epw site_zip_code=72450 site_time_zone_utc_offset=-6 +County "AR, Hempstead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500570.epw site_zip_code=71801 site_time_zone_utc_offset=-6 +County "AR, Hot Spring County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500590.epw site_zip_code=72104 site_time_zone_utc_offset=-6 +County "AR, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500610.epw site_zip_code=71852 site_time_zone_utc_offset=-6 +County "AR, Independence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500630.epw site_zip_code=72501 site_time_zone_utc_offset=-6 +County "AR, Izard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500650.epw site_zip_code=72556 site_time_zone_utc_offset=-6 +County "AR, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500670.epw site_zip_code=72112 site_time_zone_utc_offset=-6 +County "AR, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500690.epw site_zip_code=71603 site_time_zone_utc_offset=-6 +County "AR, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500710.epw site_zip_code=72830 site_time_zone_utc_offset=-6 +County "AR, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500730.epw site_zip_code=71860 site_time_zone_utc_offset=-6 +County "AR, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500750.epw site_zip_code=72476 site_time_zone_utc_offset=-6 +County "AR, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500770.epw site_zip_code=72360 site_time_zone_utc_offset=-6 +County "AR, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500790.epw site_zip_code=71667 site_time_zone_utc_offset=-6 +County "AR, Little River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500810.epw site_zip_code=71822 site_time_zone_utc_offset=-6 +County "AR, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500830.epw site_zip_code=72927 site_time_zone_utc_offset=-6 +County "AR, Lonoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500850.epw site_zip_code=72023 site_time_zone_utc_offset=-6 +County "AR, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500870.epw site_zip_code=72740 site_time_zone_utc_offset=-6 +County "AR, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500890.epw site_zip_code=72687 site_time_zone_utc_offset=-6 +County "AR, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500910.epw site_zip_code=71854 site_time_zone_utc_offset=-6 +County "AR, Mississippi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500930.epw site_zip_code=72315 site_time_zone_utc_offset=-6 +County "AR, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500950.epw site_zip_code=72021 site_time_zone_utc_offset=-6 +County "AR, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500970.epw site_zip_code=71957 site_time_zone_utc_offset=-6 +County "AR, Nevada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500990.epw site_zip_code=71857 site_time_zone_utc_offset=-6 +County "AR, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501010.epw site_zip_code=72641 site_time_zone_utc_offset=-6 +County "AR, Ouachita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501030.epw site_zip_code=71701 site_time_zone_utc_offset=-6 +County "AR, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501050.epw site_zip_code=72126 site_time_zone_utc_offset=-6 +County "AR, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501070.epw site_zip_code=72390 site_time_zone_utc_offset=-6 +County "AR, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501090.epw site_zip_code=71943 site_time_zone_utc_offset=-6 +County "AR, Poinsett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501110.epw site_zip_code=72472 site_time_zone_utc_offset=-6 +County "AR, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501130.epw site_zip_code=71953 site_time_zone_utc_offset=-6 +County "AR, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501150.epw site_zip_code=72802 site_time_zone_utc_offset=-6 +County "AR, Prairie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501170.epw site_zip_code=72040 site_time_zone_utc_offset=-6 +County "AR, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501190.epw site_zip_code=72076 site_time_zone_utc_offset=-6 +County "AR, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501210.epw site_zip_code=72455 site_time_zone_utc_offset=-6 +County "AR, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501250.epw site_zip_code=72019 site_time_zone_utc_offset=-6 +County "AR, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501270.epw site_zip_code=72958 site_time_zone_utc_offset=-6 +County "AR, Searcy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501290.epw site_zip_code=72650 site_time_zone_utc_offset=-6 +County "AR, Sebastian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501310.epw site_zip_code=72903 site_time_zone_utc_offset=-6 +County "AR, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501330.epw site_zip_code=71832 site_time_zone_utc_offset=-6 +County "AR, Sharp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501350.epw site_zip_code=72529 site_time_zone_utc_offset=-6 +County "AR, St. Francis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501230.epw site_zip_code=72335 site_time_zone_utc_offset=-6 +County "AR, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501370.epw site_zip_code=72560 site_time_zone_utc_offset=-6 +County "AR, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501390.epw site_zip_code=71730 site_time_zone_utc_offset=-6 +County "AR, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501410.epw site_zip_code=72031 site_time_zone_utc_offset=-6 +County "AR, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501430.epw site_zip_code=72701 site_time_zone_utc_offset=-6 +County "AR, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501450.epw site_zip_code=72143 site_time_zone_utc_offset=-6 +County "AR, Woodruff County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501470.epw site_zip_code=72006 site_time_zone_utc_offset=-6 +County "AR, Yell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501490.epw site_zip_code=72834 site_time_zone_utc_offset=-6 +County "AZ, Apache County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400010.epw site_zip_code=85936 site_time_zone_utc_offset=-7 +County "AZ, Cochise County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400030.epw site_zip_code=85635 site_time_zone_utc_offset=-7 +County "AZ, Coconino County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400050.epw site_zip_code=86001 site_time_zone_utc_offset=-7 +County "AZ, Gila County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400070.epw site_zip_code=85541 site_time_zone_utc_offset=-7 +County "AZ, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400090.epw site_zip_code=85546 site_time_zone_utc_offset=-7 +County "AZ, Greenlee County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400110.epw site_zip_code=85534 site_time_zone_utc_offset=-7 +County "AZ, La Paz County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400120.epw site_zip_code=85344 site_time_zone_utc_offset=-7 +County "AZ, Maricopa County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400130.epw site_zip_code=85281 site_time_zone_utc_offset=-7 +County "AZ, Mohave County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400150.epw site_zip_code=86442 site_time_zone_utc_offset=-7 +County "AZ, Navajo County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400170.epw site_zip_code=85901 site_time_zone_utc_offset=-7 +County "AZ, Pima County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400190.epw site_zip_code=85705 site_time_zone_utc_offset=-7 +County "AZ, Pinal County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400210.epw site_zip_code=85122 site_time_zone_utc_offset=-7 +County "AZ, Santa Cruz County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400230.epw site_zip_code=85621 site_time_zone_utc_offset=-7 +County "AZ, Yavapai County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400250.epw site_zip_code=86314 site_time_zone_utc_offset=-7 +County "AZ, Yuma County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400270.epw site_zip_code=85364 site_time_zone_utc_offset=-7 +County "CA, Alameda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600010.epw site_zip_code=94501 site_time_zone_utc_offset=-8 +County "CA, Alpine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600030.epw site_zip_code=96120 site_time_zone_utc_offset=-8 +County "CA, Amador County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600050.epw site_zip_code=95642 site_time_zone_utc_offset=-8 +County "CA, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600070.epw site_zip_code=95928 site_time_zone_utc_offset=-8 +County "CA, Calaveras County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600090.epw site_zip_code=95252 site_time_zone_utc_offset=-8 +County "CA, Colusa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600110.epw site_zip_code=95932 site_time_zone_utc_offset=-8 +County "CA, Contra Costa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600130.epw site_zip_code=94565 site_time_zone_utc_offset=-8 +County "CA, Del Norte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600150.epw site_zip_code=95531 site_time_zone_utc_offset=-8 +County "CA, El Dorado County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600170.epw site_zip_code=95762 site_time_zone_utc_offset=-8 +County "CA, Fresno County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600190.epw site_zip_code=93722 site_time_zone_utc_offset=-8 +County "CA, Glenn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600210.epw site_zip_code=95963 site_time_zone_utc_offset=-8 +County "CA, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600230.epw site_zip_code=95501 site_time_zone_utc_offset=-8 +County "CA, Imperial County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600250.epw site_zip_code=92243 site_time_zone_utc_offset=-8 +County "CA, Inyo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600270.epw site_zip_code=93514 site_time_zone_utc_offset=-8 +County "CA, Kern County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600290.epw site_zip_code=93306 site_time_zone_utc_offset=-8 +County "CA, Kings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600310.epw site_zip_code=93230 site_time_zone_utc_offset=-8 +County "CA, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600330.epw site_zip_code=95422 site_time_zone_utc_offset=-8 +County "CA, Lassen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600350.epw site_zip_code=96130 site_time_zone_utc_offset=-8 +County "CA, Los Angeles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600370.epw site_zip_code=90250 site_time_zone_utc_offset=-8 +County "CA, Madera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600390.epw site_zip_code=93637 site_time_zone_utc_offset=-8 +County "CA, Marin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600410.epw site_zip_code=94901 site_time_zone_utc_offset=-8 +County "CA, Mariposa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600430.epw site_zip_code=95338 site_time_zone_utc_offset=-8 +County "CA, Mendocino County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600450.epw site_zip_code=95482 site_time_zone_utc_offset=-8 +County "CA, Merced County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600470.epw site_zip_code=93635 site_time_zone_utc_offset=-8 +County "CA, Modoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600490.epw site_zip_code=96101 site_time_zone_utc_offset=-8 +County "CA, Mono County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600510.epw site_zip_code=93546 site_time_zone_utc_offset=-8 +County "CA, Monterey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600530.epw site_zip_code=93906 site_time_zone_utc_offset=-8 +County "CA, Napa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600550.epw site_zip_code=94558 site_time_zone_utc_offset=-8 +County "CA, Nevada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600570.epw site_zip_code=95945 site_time_zone_utc_offset=-8 +County "CA, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600590.epw site_zip_code=92683 site_time_zone_utc_offset=-8 +County "CA, Placer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600610.epw site_zip_code=95747 site_time_zone_utc_offset=-8 +County "CA, Plumas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600630.epw site_zip_code=96122 site_time_zone_utc_offset=-8 +County "CA, Riverside County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600650.epw site_zip_code=92503 site_time_zone_utc_offset=-8 +County "CA, Sacramento County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600670.epw site_zip_code=95630 site_time_zone_utc_offset=-8 +County "CA, San Benito County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600690.epw site_zip_code=95023 site_time_zone_utc_offset=-8 +County "CA, San Bernardino County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600710.epw site_zip_code=92336 site_time_zone_utc_offset=-8 +County "CA, San Diego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600730.epw site_zip_code=92101 site_time_zone_utc_offset=-8 +County "CA, San Francisco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600750.epw site_zip_code=94109 site_time_zone_utc_offset=-8 +County "CA, San Joaquin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600770.epw site_zip_code=95206 site_time_zone_utc_offset=-8 +County "CA, San Luis Obispo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600790.epw site_zip_code=93446 site_time_zone_utc_offset=-8 +County "CA, San Mateo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600810.epw site_zip_code=94080 site_time_zone_utc_offset=-8 +County "CA, Santa Barbara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600830.epw site_zip_code=93436 site_time_zone_utc_offset=-8 +County "CA, Santa Clara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600850.epw site_zip_code=95035 site_time_zone_utc_offset=-8 +County "CA, Santa Cruz County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600870.epw site_zip_code=95076 site_time_zone_utc_offset=-8 +County "CA, Shasta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600890.epw site_zip_code=96003 site_time_zone_utc_offset=-8 +County "CA, Sierra County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600910.epw site_zip_code=95960 site_time_zone_utc_offset=-8 +County "CA, Siskiyou County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600930.epw site_zip_code=96097 site_time_zone_utc_offset=-8 +County "CA, Solano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600950.epw site_zip_code=94533 site_time_zone_utc_offset=-8 +County "CA, Sonoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600970.epw site_zip_code=95403 site_time_zone_utc_offset=-8 +County "CA, Stanislaus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600990.epw site_zip_code=95355 site_time_zone_utc_offset=-8 +County "CA, Sutter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601010.epw site_zip_code=95991 site_time_zone_utc_offset=-8 +County "CA, Tehama County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601030.epw site_zip_code=96080 site_time_zone_utc_offset=-8 +County "CA, Trinity County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601050.epw site_zip_code=96091 site_time_zone_utc_offset=-8 +County "CA, Tulare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601070.epw site_zip_code=93274 site_time_zone_utc_offset=-8 +County "CA, Tuolumne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601090.epw site_zip_code=95370 site_time_zone_utc_offset=-8 +County "CA, Ventura County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601110.epw site_zip_code=93065 site_time_zone_utc_offset=-8 +County "CA, Yolo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601130.epw site_zip_code=95616 site_time_zone_utc_offset=-8 +County "CA, Yuba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601150.epw site_zip_code=95901 site_time_zone_utc_offset=-8 +County "CO, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800010.epw site_zip_code=80229 site_time_zone_utc_offset=-7 +County "CO, Alamosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800030.epw site_zip_code=81101 site_time_zone_utc_offset=-7 +County "CO, Arapahoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800050.epw site_zip_code=80013 site_time_zone_utc_offset=-7 +County "CO, Archuleta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800070.epw site_zip_code=81147 site_time_zone_utc_offset=-7 +County "CO, Baca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800090.epw site_zip_code=81073 site_time_zone_utc_offset=-7 +County "CO, Bent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800110.epw site_zip_code=81054 site_time_zone_utc_offset=-7 +County "CO, Boulder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800130.epw site_zip_code=80501 site_time_zone_utc_offset=-7 +County "CO, Broomfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800140.epw site_zip_code=80020 site_time_zone_utc_offset=-7 +County "CO, Chaffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800150.epw site_zip_code=81201 site_time_zone_utc_offset=-7 +County "CO, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800170.epw site_zip_code=80810 site_time_zone_utc_offset=-7 +County "CO, Clear Creek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800190.epw site_zip_code=80439 site_time_zone_utc_offset=-7 +County "CO, Conejos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800210.epw site_zip_code=81120 site_time_zone_utc_offset=-7 +County "CO, Costilla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800230.epw site_zip_code=81133 site_time_zone_utc_offset=-7 +County "CO, Crowley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800250.epw site_zip_code=81063 site_time_zone_utc_offset=-7 +County "CO, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800270.epw site_zip_code=81252 site_time_zone_utc_offset=-7 +County "CO, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800290.epw site_zip_code=81416 site_time_zone_utc_offset=-7 +County "CO, Denver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800310.epw site_zip_code=80211 site_time_zone_utc_offset=-7 +County "CO, Dolores County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800330.epw site_zip_code=81324 site_time_zone_utc_offset=-7 +County "CO, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800350.epw site_zip_code=80134 site_time_zone_utc_offset=-7 +County "CO, Eagle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800370.epw site_zip_code=81620 site_time_zone_utc_offset=-7 +County "CO, El Paso County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800410.epw site_zip_code=80918 site_time_zone_utc_offset=-7 +County "CO, Elbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800390.epw site_zip_code=80107 site_time_zone_utc_offset=-7 +County "CO, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800430.epw site_zip_code=81212 site_time_zone_utc_offset=-7 +County "CO, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800450.epw site_zip_code=81601 site_time_zone_utc_offset=-7 +County "CO, Gilpin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800470.epw site_zip_code=80422 site_time_zone_utc_offset=-7 +County "CO, Grand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800490.epw site_zip_code=80459 site_time_zone_utc_offset=-7 +County "CO, Gunnison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800510.epw site_zip_code=81230 site_time_zone_utc_offset=-7 +County "CO, Hinsdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800530.epw site_zip_code=81235 site_time_zone_utc_offset=-7 +County "CO, Huerfano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800550.epw site_zip_code=81089 site_time_zone_utc_offset=-7 +County "CO, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800570.epw site_zip_code=80480 site_time_zone_utc_offset=-7 +County "CO, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800590.epw site_zip_code=80127 site_time_zone_utc_offset=-7 +County "CO, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800610.epw site_zip_code=81036 site_time_zone_utc_offset=-7 +County "CO, Kit Carson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800630.epw site_zip_code=80807 site_time_zone_utc_offset=-7 +County "CO, La Plata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800670.epw site_zip_code=81301 site_time_zone_utc_offset=-7 +County "CO, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800650.epw site_zip_code=80461 site_time_zone_utc_offset=-7 +County "CO, Larimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800690.epw site_zip_code=80525 site_time_zone_utc_offset=-7 +County "CO, Las Animas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800710.epw site_zip_code=81082 site_time_zone_utc_offset=-7 +County "CO, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800730.epw site_zip_code=80828 site_time_zone_utc_offset=-7 +County "CO, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800750.epw site_zip_code=80751 site_time_zone_utc_offset=-7 +County "CO, Mesa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800770.epw site_zip_code=81504 site_time_zone_utc_offset=-7 +County "CO, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800790.epw site_zip_code=81130 site_time_zone_utc_offset=-7 +County "CO, Moffat County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800810.epw site_zip_code=81625 site_time_zone_utc_offset=-7 +County "CO, Montezuma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800830.epw site_zip_code=81321 site_time_zone_utc_offset=-7 +County "CO, Montrose County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800850.epw site_zip_code=81401 site_time_zone_utc_offset=-7 +County "CO, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800870.epw site_zip_code=80701 site_time_zone_utc_offset=-7 +County "CO, Otero County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800890.epw site_zip_code=81050 site_time_zone_utc_offset=-7 +County "CO, Ouray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800910.epw site_zip_code=81432 site_time_zone_utc_offset=-7 +County "CO, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800930.epw site_zip_code=80421 site_time_zone_utc_offset=-7 +County "CO, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800950.epw site_zip_code=80734 site_time_zone_utc_offset=-7 +County "CO, Pitkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800970.epw site_zip_code=81612 site_time_zone_utc_offset=-7 +County "CO, Prowers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800990.epw site_zip_code=81052 site_time_zone_utc_offset=-7 +County "CO, Pueblo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801010.epw site_zip_code=81001 site_time_zone_utc_offset=-7 +County "CO, Rio Blanco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801030.epw site_zip_code=81648 site_time_zone_utc_offset=-7 +County "CO, Rio Grande County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801050.epw site_zip_code=81144 site_time_zone_utc_offset=-7 +County "CO, Routt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801070.epw site_zip_code=80487 site_time_zone_utc_offset=-7 +County "CO, Saguache County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801090.epw site_zip_code=81125 site_time_zone_utc_offset=-7 +County "CO, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801110.epw site_zip_code=81433 site_time_zone_utc_offset=-7 +County "CO, San Miguel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801130.epw site_zip_code=81435 site_time_zone_utc_offset=-7 +County "CO, Sedgwick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801150.epw site_zip_code=80737 site_time_zone_utc_offset=-7 +County "CO, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801170.epw site_zip_code=80424 site_time_zone_utc_offset=-7 +County "CO, Teller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801190.epw site_zip_code=80863 site_time_zone_utc_offset=-7 +County "CO, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801210.epw site_zip_code=80720 site_time_zone_utc_offset=-7 +County "CO, Weld County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801230.epw site_zip_code=80634 site_time_zone_utc_offset=-7 +County "CO, Yuma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801250.epw site_zip_code=80759 site_time_zone_utc_offset=-7 +County "CT, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900010.epw site_zip_code=06902 site_time_zone_utc_offset=-5 +County "CT, Hartford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900030.epw site_zip_code=06010 site_time_zone_utc_offset=-5 +County "CT, Litchfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900050.epw site_zip_code=06790 site_time_zone_utc_offset=-5 +County "CT, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900070.epw site_zip_code=06457 site_time_zone_utc_offset=-5 +County "CT, New Haven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900090.epw site_zip_code=06516 site_time_zone_utc_offset=-5 +County "CT, New London County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900110.epw site_zip_code=06360 site_time_zone_utc_offset=-5 +County "CT, Tolland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900130.epw site_zip_code=06066 site_time_zone_utc_offset=-5 +County "CT, Windham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900150.epw site_zip_code=06226 site_time_zone_utc_offset=-5 +County "DC, District of Columbia" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1100010.epw site_zip_code=20002 site_time_zone_utc_offset=-5 +County "DE, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000010.epw site_zip_code=19904 site_time_zone_utc_offset=-5 +County "DE, New Castle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000030.epw site_zip_code=19720 site_time_zone_utc_offset=-5 +County "DE, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000050.epw site_zip_code=19966 site_time_zone_utc_offset=-5 +County "FL, Alachua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200010.epw site_zip_code=32608 site_time_zone_utc_offset=-5 +County "FL, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200030.epw site_zip_code=32063 site_time_zone_utc_offset=-5 +County "FL, Bay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200050.epw site_zip_code=32404 site_time_zone_utc_offset=-6 +County "FL, Bradford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200070.epw site_zip_code=32091 site_time_zone_utc_offset=-5 +County "FL, Brevard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200090.epw site_zip_code=32940 site_time_zone_utc_offset=-5 +County "FL, Broward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200110.epw site_zip_code=33027 site_time_zone_utc_offset=-5 +County "FL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200130.epw site_zip_code=32424 site_time_zone_utc_offset=-6 +County "FL, Charlotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200150.epw site_zip_code=33950 site_time_zone_utc_offset=-5 +County "FL, Citrus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200170.epw site_zip_code=34446 site_time_zone_utc_offset=-5 +County "FL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200190.epw site_zip_code=32068 site_time_zone_utc_offset=-5 +County "FL, Collier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200210.epw site_zip_code=34112 site_time_zone_utc_offset=-5 +County "FL, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200230.epw site_zip_code=32025 site_time_zone_utc_offset=-5 +County "FL, DeSoto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200270.epw site_zip_code=34266 site_time_zone_utc_offset=-5 +County "FL, Dixie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200290.epw site_zip_code=32680 site_time_zone_utc_offset=-5 +County "FL, Duval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200310.epw site_zip_code=32256 site_time_zone_utc_offset=-5 +County "FL, Escambia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200330.epw site_zip_code=32507 site_time_zone_utc_offset=-6 +County "FL, Flagler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200350.epw site_zip_code=32137 site_time_zone_utc_offset=-5 +County "FL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200370.epw site_zip_code=32328 site_time_zone_utc_offset=-5 +County "FL, Gadsden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200390.epw site_zip_code=32351 site_time_zone_utc_offset=-5 +County "FL, Gilchrist County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200410.epw site_zip_code=32693 site_time_zone_utc_offset=-5 +County "FL, Glades County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200430.epw site_zip_code=33471 site_time_zone_utc_offset=-5 +County "FL, Gulf County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200450.epw site_zip_code=32456 site_time_zone_utc_offset=-6 +County "FL, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200470.epw site_zip_code=32052 site_time_zone_utc_offset=-5 +County "FL, Hardee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200490.epw site_zip_code=33873 site_time_zone_utc_offset=-5 +County "FL, Hendry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200510.epw site_zip_code=33440 site_time_zone_utc_offset=-5 +County "FL, Hernando County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200530.epw site_zip_code=34609 site_time_zone_utc_offset=-5 +County "FL, Highlands County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200550.epw site_zip_code=33870 site_time_zone_utc_offset=-5 +County "FL, Hillsborough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200570.epw site_zip_code=33647 site_time_zone_utc_offset=-5 +County "FL, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200590.epw site_zip_code=32425 site_time_zone_utc_offset=-6 +County "FL, Indian River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200610.epw site_zip_code=32958 site_time_zone_utc_offset=-5 +County "FL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200630.epw site_zip_code=32446 site_time_zone_utc_offset=-6 +County "FL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200650.epw site_zip_code=32344 site_time_zone_utc_offset=-5 +County "FL, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200670.epw site_zip_code=32066 site_time_zone_utc_offset=-5 +County "FL, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200690.epw site_zip_code=34711 site_time_zone_utc_offset=-5 +County "FL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200710.epw site_zip_code=34135 site_time_zone_utc_offset=-5 +County "FL, Leon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200730.epw site_zip_code=32303 site_time_zone_utc_offset=-5 +County "FL, Levy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200750.epw site_zip_code=32696 site_time_zone_utc_offset=-5 +County "FL, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200770.epw site_zip_code=32321 site_time_zone_utc_offset=-5 +County "FL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200790.epw site_zip_code=32340 site_time_zone_utc_offset=-5 +County "FL, Manatee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200810.epw site_zip_code=34221 site_time_zone_utc_offset=-5 +County "FL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200830.epw site_zip_code=34491 site_time_zone_utc_offset=-5 +County "FL, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200850.epw site_zip_code=34997 site_time_zone_utc_offset=-5 +County "FL, Miami-Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200860.epw site_zip_code=33160 site_time_zone_utc_offset=-5 +County "FL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200870.epw site_zip_code=33040 site_time_zone_utc_offset=-5 +County "FL, Nassau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200890.epw site_zip_code=32034 site_time_zone_utc_offset=-5 +County "FL, Okaloosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200910.epw site_zip_code=32541 site_time_zone_utc_offset=-6 +County "FL, Okeechobee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200930.epw site_zip_code=34974 site_time_zone_utc_offset=-5 +County "FL, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200950.epw site_zip_code=34787 site_time_zone_utc_offset=-5 +County "FL, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200970.epw site_zip_code=34746 site_time_zone_utc_offset=-5 +County "FL, Palm Beach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200990.epw site_zip_code=33411 site_time_zone_utc_offset=-5 +County "FL, Pasco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201010.epw site_zip_code=34668 site_time_zone_utc_offset=-5 +County "FL, Pinellas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201030.epw site_zip_code=34698 site_time_zone_utc_offset=-5 +County "FL, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201050.epw site_zip_code=33810 site_time_zone_utc_offset=-5 +County "FL, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201070.epw site_zip_code=32177 site_time_zone_utc_offset=-5 +County "FL, Santa Rosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201130.epw site_zip_code=32566 site_time_zone_utc_offset=-6 +County "FL, Sarasota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201150.epw site_zip_code=34293 site_time_zone_utc_offset=-5 +County "FL, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201170.epw site_zip_code=32771 site_time_zone_utc_offset=-5 +County "FL, St. Johns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201090.epw site_zip_code=32259 site_time_zone_utc_offset=-5 +County "FL, St. Lucie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201110.epw site_zip_code=34953 site_time_zone_utc_offset=-5 +County "FL, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201190.epw site_zip_code=32162 site_time_zone_utc_offset=-5 +County "FL, Suwannee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201210.epw site_zip_code=32060 site_time_zone_utc_offset=-5 +County "FL, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201230.epw site_zip_code=32348 site_time_zone_utc_offset=-5 +County "FL, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201250.epw site_zip_code=32054 site_time_zone_utc_offset=-5 +County "FL, Volusia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201270.epw site_zip_code=32174 site_time_zone_utc_offset=-5 +County "FL, Wakulla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201290.epw site_zip_code=32327 site_time_zone_utc_offset=-5 +County "FL, Walton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201310.epw site_zip_code=32459 site_time_zone_utc_offset=-6 +County "FL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201330.epw site_zip_code=32428 site_time_zone_utc_offset=-6 +County "GA, Appling County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300010.epw site_zip_code=31513 site_time_zone_utc_offset=-5 +County "GA, Atkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300030.epw site_zip_code=31642 site_time_zone_utc_offset=-5 +County "GA, Bacon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300050.epw site_zip_code=31510 site_time_zone_utc_offset=-5 +County "GA, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300070.epw site_zip_code=39870 site_time_zone_utc_offset=-5 +County "GA, Baldwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300090.epw site_zip_code=31061 site_time_zone_utc_offset=-5 +County "GA, Banks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300110.epw site_zip_code=30547 site_time_zone_utc_offset=-5 +County "GA, Barrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300130.epw site_zip_code=30680 site_time_zone_utc_offset=-5 +County "GA, Bartow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300150.epw site_zip_code=30120 site_time_zone_utc_offset=-5 +County "GA, Ben Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300170.epw site_zip_code=31750 site_time_zone_utc_offset=-5 +County "GA, Berrien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300190.epw site_zip_code=31639 site_time_zone_utc_offset=-5 +County "GA, Bibb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300210.epw site_zip_code=31204 site_time_zone_utc_offset=-5 +County "GA, Bleckley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300230.epw site_zip_code=31014 site_time_zone_utc_offset=-5 +County "GA, Brantley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300250.epw site_zip_code=31553 site_time_zone_utc_offset=-5 +County "GA, Brooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300270.epw site_zip_code=31643 site_time_zone_utc_offset=-5 +County "GA, Bryan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300290.epw site_zip_code=31324 site_time_zone_utc_offset=-5 +County "GA, Bulloch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300310.epw site_zip_code=30458 site_time_zone_utc_offset=-5 +County "GA, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300330.epw site_zip_code=30830 site_time_zone_utc_offset=-5 +County "GA, Butts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300350.epw site_zip_code=30233 site_time_zone_utc_offset=-5 +County "GA, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300370.epw site_zip_code=39846 site_time_zone_utc_offset=-5 +County "GA, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300390.epw site_zip_code=31558 site_time_zone_utc_offset=-5 +County "GA, Candler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300430.epw site_zip_code=30439 site_time_zone_utc_offset=-5 +County "GA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300450.epw site_zip_code=30117 site_time_zone_utc_offset=-5 +County "GA, Catoosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300470.epw site_zip_code=30736 site_time_zone_utc_offset=-5 +County "GA, Charlton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300490.epw site_zip_code=31537 site_time_zone_utc_offset=-5 +County "GA, Chatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300510.epw site_zip_code=31419 site_time_zone_utc_offset=-5 +County "GA, Chattahoochee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300530.epw site_zip_code=31905 site_time_zone_utc_offset=-5 +County "GA, Chattooga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300550.epw site_zip_code=30747 site_time_zone_utc_offset=-5 +County "GA, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300570.epw site_zip_code=30188 site_time_zone_utc_offset=-5 +County "GA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300590.epw site_zip_code=30606 site_time_zone_utc_offset=-5 +County "GA, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300610.epw site_zip_code=39851 site_time_zone_utc_offset=-5 +County "GA, Clayton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300630.epw site_zip_code=30236 site_time_zone_utc_offset=-5 +County "GA, Clinch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300650.epw site_zip_code=31634 site_time_zone_utc_offset=-5 +County "GA, Cobb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300670.epw site_zip_code=30080 site_time_zone_utc_offset=-5 +County "GA, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300690.epw site_zip_code=31533 site_time_zone_utc_offset=-5 +County "GA, Colquitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300710.epw site_zip_code=31768 site_time_zone_utc_offset=-5 +County "GA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300730.epw site_zip_code=30809 site_time_zone_utc_offset=-5 +County "GA, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300750.epw site_zip_code=31620 site_time_zone_utc_offset=-5 +County "GA, Coweta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300770.epw site_zip_code=30263 site_time_zone_utc_offset=-5 +County "GA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300790.epw site_zip_code=31078 site_time_zone_utc_offset=-5 +County "GA, Crisp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300810.epw site_zip_code=31015 site_time_zone_utc_offset=-5 +County "GA, Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300830.epw site_zip_code=30752 site_time_zone_utc_offset=-5 +County "GA, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300850.epw site_zip_code=30534 site_time_zone_utc_offset=-5 +County "GA, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300890.epw site_zip_code=30058 site_time_zone_utc_offset=-5 +County "GA, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300870.epw site_zip_code=39819 site_time_zone_utc_offset=-5 +County "GA, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300910.epw site_zip_code=31023 site_time_zone_utc_offset=-5 +County "GA, Dooly County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300930.epw site_zip_code=31092 site_time_zone_utc_offset=-5 +County "GA, Dougherty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300950.epw site_zip_code=31705 site_time_zone_utc_offset=-5 +County "GA, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300970.epw site_zip_code=30135 site_time_zone_utc_offset=-5 +County "GA, Early County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300990.epw site_zip_code=39823 site_time_zone_utc_offset=-5 +County "GA, Echols County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301010.epw site_zip_code=31636 site_time_zone_utc_offset=-5 +County "GA, Effingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301030.epw site_zip_code=31326 site_time_zone_utc_offset=-5 +County "GA, Elbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301050.epw site_zip_code=30635 site_time_zone_utc_offset=-5 +County "GA, Emanuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301070.epw site_zip_code=30401 site_time_zone_utc_offset=-5 +County "GA, Evans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301090.epw site_zip_code=30417 site_time_zone_utc_offset=-5 +County "GA, Fannin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301110.epw site_zip_code=30513 site_time_zone_utc_offset=-5 +County "GA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301130.epw site_zip_code=30269 site_time_zone_utc_offset=-5 +County "GA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301150.epw site_zip_code=30165 site_time_zone_utc_offset=-5 +County "GA, Forsyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301170.epw site_zip_code=30040 site_time_zone_utc_offset=-5 +County "GA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301190.epw site_zip_code=30553 site_time_zone_utc_offset=-5 +County "GA, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301210.epw site_zip_code=30318 site_time_zone_utc_offset=-5 +County "GA, Gilmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301230.epw site_zip_code=30540 site_time_zone_utc_offset=-5 +County "GA, Glascock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301250.epw site_zip_code=30810 site_time_zone_utc_offset=-5 +County "GA, Glynn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301270.epw site_zip_code=31525 site_time_zone_utc_offset=-5 +County "GA, Gordon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301290.epw site_zip_code=30701 site_time_zone_utc_offset=-5 +County "GA, Grady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301310.epw site_zip_code=39828 site_time_zone_utc_offset=-5 +County "GA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301330.epw site_zip_code=30642 site_time_zone_utc_offset=-5 +County "GA, Gwinnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301350.epw site_zip_code=30044 site_time_zone_utc_offset=-5 +County "GA, Habersham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301370.epw site_zip_code=30531 site_time_zone_utc_offset=-5 +County "GA, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301390.epw site_zip_code=30542 site_time_zone_utc_offset=-5 +County "GA, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301410.epw site_zip_code=31087 site_time_zone_utc_offset=-5 +County "GA, Haralson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301430.epw site_zip_code=30110 site_time_zone_utc_offset=-5 +County "GA, Harris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301450.epw site_zip_code=31804 site_time_zone_utc_offset=-5 +County "GA, Hart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301470.epw site_zip_code=30643 site_time_zone_utc_offset=-5 +County "GA, Heard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301490.epw site_zip_code=30217 site_time_zone_utc_offset=-5 +County "GA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301510.epw site_zip_code=30253 site_time_zone_utc_offset=-5 +County "GA, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301530.epw site_zip_code=31088 site_time_zone_utc_offset=-5 +County "GA, Irwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301550.epw site_zip_code=31774 site_time_zone_utc_offset=-5 +County "GA, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301570.epw site_zip_code=30549 site_time_zone_utc_offset=-5 +County "GA, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301590.epw site_zip_code=31064 site_time_zone_utc_offset=-5 +County "GA, Jeff Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301610.epw site_zip_code=31539 site_time_zone_utc_offset=-5 +County "GA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301630.epw site_zip_code=30434 site_time_zone_utc_offset=-5 +County "GA, Jenkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301650.epw site_zip_code=30442 site_time_zone_utc_offset=-5 +County "GA, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301670.epw site_zip_code=31096 site_time_zone_utc_offset=-5 +County "GA, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301690.epw site_zip_code=31032 site_time_zone_utc_offset=-5 +County "GA, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301710.epw site_zip_code=30204 site_time_zone_utc_offset=-5 +County "GA, Lanier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301730.epw site_zip_code=31635 site_time_zone_utc_offset=-5 +County "GA, Laurens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301750.epw site_zip_code=31021 site_time_zone_utc_offset=-5 +County "GA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301770.epw site_zip_code=31763 site_time_zone_utc_offset=-5 +County "GA, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301790.epw site_zip_code=31313 site_time_zone_utc_offset=-5 +County "GA, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301810.epw site_zip_code=30817 site_time_zone_utc_offset=-5 +County "GA, Long County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301830.epw site_zip_code=31316 site_time_zone_utc_offset=-5 +County "GA, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301850.epw site_zip_code=31601 site_time_zone_utc_offset=-5 +County "GA, Lumpkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301870.epw site_zip_code=30533 site_time_zone_utc_offset=-5 +County "GA, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301930.epw site_zip_code=31063 site_time_zone_utc_offset=-5 +County "GA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301950.epw site_zip_code=30633 site_time_zone_utc_offset=-5 +County "GA, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301970.epw site_zip_code=31803 site_time_zone_utc_offset=-5 +County "GA, McDuffie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301890.epw site_zip_code=30824 site_time_zone_utc_offset=-5 +County "GA, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301910.epw site_zip_code=31331 site_time_zone_utc_offset=-5 +County "GA, Meriwether County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301990.epw site_zip_code=31816 site_time_zone_utc_offset=-5 +County "GA, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302010.epw site_zip_code=39837 site_time_zone_utc_offset=-5 +County "GA, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302050.epw site_zip_code=31730 site_time_zone_utc_offset=-5 +County "GA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302070.epw site_zip_code=31029 site_time_zone_utc_offset=-5 +County "GA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302090.epw site_zip_code=30445 site_time_zone_utc_offset=-5 +County "GA, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302110.epw site_zip_code=30650 site_time_zone_utc_offset=-5 +County "GA, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302130.epw site_zip_code=30705 site_time_zone_utc_offset=-5 +County "GA, Muscogee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302150.epw site_zip_code=31907 site_time_zone_utc_offset=-5 +County "GA, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302170.epw site_zip_code=30016 site_time_zone_utc_offset=-5 +County "GA, Oconee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302190.epw site_zip_code=30677 site_time_zone_utc_offset=-5 +County "GA, Oglethorpe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302210.epw site_zip_code=30683 site_time_zone_utc_offset=-5 +County "GA, Paulding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302230.epw site_zip_code=30132 site_time_zone_utc_offset=-5 +County "GA, Peach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302250.epw site_zip_code=31030 site_time_zone_utc_offset=-5 +County "GA, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302270.epw site_zip_code=30143 site_time_zone_utc_offset=-5 +County "GA, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302290.epw site_zip_code=31516 site_time_zone_utc_offset=-5 +County "GA, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302310.epw site_zip_code=30292 site_time_zone_utc_offset=-5 +County "GA, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302330.epw site_zip_code=30125 site_time_zone_utc_offset=-5 +County "GA, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302350.epw site_zip_code=31036 site_time_zone_utc_offset=-5 +County "GA, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302370.epw site_zip_code=31024 site_time_zone_utc_offset=-5 +County "GA, Quitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302390.epw site_zip_code=39854 site_time_zone_utc_offset=-5 +County "GA, Rabun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302410.epw site_zip_code=30525 site_time_zone_utc_offset=-5 +County "GA, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302430.epw site_zip_code=39840 site_time_zone_utc_offset=-5 +County "GA, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302450.epw site_zip_code=30909 site_time_zone_utc_offset=-5 +County "GA, Rockdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302470.epw site_zip_code=30094 site_time_zone_utc_offset=-5 +County "GA, Schley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302490.epw site_zip_code=31806 site_time_zone_utc_offset=-5 +County "GA, Screven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302510.epw site_zip_code=30467 site_time_zone_utc_offset=-5 +County "GA, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302530.epw site_zip_code=39845 site_time_zone_utc_offset=-5 +County "GA, Spalding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302550.epw site_zip_code=30223 site_time_zone_utc_offset=-5 +County "GA, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302570.epw site_zip_code=30577 site_time_zone_utc_offset=-5 +County "GA, Stewart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302590.epw site_zip_code=31825 site_time_zone_utc_offset=-5 +County "GA, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302610.epw site_zip_code=31709 site_time_zone_utc_offset=-5 +County "GA, Talbot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302630.epw site_zip_code=31827 site_time_zone_utc_offset=-5 +County "GA, Taliaferro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302650.epw site_zip_code=30631 site_time_zone_utc_offset=-5 +County "GA, Tattnall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302670.epw site_zip_code=30427 site_time_zone_utc_offset=-5 +County "GA, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302690.epw site_zip_code=31006 site_time_zone_utc_offset=-5 +County "GA, Telfair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302710.epw site_zip_code=31055 site_time_zone_utc_offset=-5 +County "GA, Terrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302730.epw site_zip_code=39842 site_time_zone_utc_offset=-5 +County "GA, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302750.epw site_zip_code=31792 site_time_zone_utc_offset=-5 +County "GA, Tift County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302770.epw site_zip_code=31794 site_time_zone_utc_offset=-5 +County "GA, Toombs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302790.epw site_zip_code=30474 site_time_zone_utc_offset=-5 +County "GA, Towns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302810.epw site_zip_code=30546 site_time_zone_utc_offset=-5 +County "GA, Treutlen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302830.epw site_zip_code=30457 site_time_zone_utc_offset=-5 +County "GA, Troup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302850.epw site_zip_code=30241 site_time_zone_utc_offset=-5 +County "GA, Turner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302870.epw site_zip_code=31714 site_time_zone_utc_offset=-5 +County "GA, Twiggs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302890.epw site_zip_code=31044 site_time_zone_utc_offset=-5 +County "GA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302910.epw site_zip_code=30512 site_time_zone_utc_offset=-5 +County "GA, Upson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302930.epw site_zip_code=30286 site_time_zone_utc_offset=-5 +County "GA, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302950.epw site_zip_code=30741 site_time_zone_utc_offset=-5 +County "GA, Walton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302970.epw site_zip_code=30052 site_time_zone_utc_offset=-5 +County "GA, Ware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302990.epw site_zip_code=31503 site_time_zone_utc_offset=-5 +County "GA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303010.epw site_zip_code=30828 site_time_zone_utc_offset=-5 +County "GA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303030.epw site_zip_code=31082 site_time_zone_utc_offset=-5 +County "GA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303050.epw site_zip_code=31545 site_time_zone_utc_offset=-5 +County "GA, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303070.epw site_zip_code=31824 site_time_zone_utc_offset=-5 +County "GA, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303090.epw site_zip_code=30428 site_time_zone_utc_offset=-5 +County "GA, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303110.epw site_zip_code=30528 site_time_zone_utc_offset=-5 +County "GA, Whitfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303130.epw site_zip_code=30721 site_time_zone_utc_offset=-5 +County "GA, Wilcox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303150.epw site_zip_code=31001 site_time_zone_utc_offset=-5 +County "GA, Wilkes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303170.epw site_zip_code=30673 site_time_zone_utc_offset=-5 +County "GA, Wilkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303190.epw site_zip_code=31031 site_time_zone_utc_offset=-5 +County "GA, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303210.epw site_zip_code=31791 site_time_zone_utc_offset=-5 +County "HI, Hawaii County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500010.epw site_zip_code=96721 site_time_zone_utc_offset=-10 +County "HI, Honolulu County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500030.epw site_zip_code=96813 site_time_zone_utc_offset=-10 +County "HI, Kalawao County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500050.epw site_zip_code=96742 site_time_zone_utc_offset=-10 +County "HI, Kauai County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500070.epw site_zip_code=96746 site_time_zone_utc_offset=-10 +County "HI, Maui County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500090.epw site_zip_code=96793 site_time_zone_utc_offset=-10 +County "IA, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900010.epw site_zip_code=50849 site_time_zone_utc_offset=-6 +County "IA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900030.epw site_zip_code=50841 site_time_zone_utc_offset=-6 +County "IA, Allamakee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900050.epw site_zip_code=52172 site_time_zone_utc_offset=-6 +County "IA, Appanoose County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900070.epw site_zip_code=52544 site_time_zone_utc_offset=-6 +County "IA, Audubon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900090.epw site_zip_code=50025 site_time_zone_utc_offset=-6 +County "IA, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900110.epw site_zip_code=52349 site_time_zone_utc_offset=-6 +County "IA, Black Hawk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900130.epw site_zip_code=50613 site_time_zone_utc_offset=-6 +County "IA, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900150.epw site_zip_code=50036 site_time_zone_utc_offset=-6 +County "IA, Bremer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900170.epw site_zip_code=50677 site_time_zone_utc_offset=-6 +County "IA, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900190.epw site_zip_code=50644 site_time_zone_utc_offset=-6 +County "IA, Buena Vista County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900210.epw site_zip_code=50588 site_time_zone_utc_offset=-6 +County "IA, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900230.epw site_zip_code=50665 site_time_zone_utc_offset=-6 +County "IA, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900250.epw site_zip_code=50563 site_time_zone_utc_offset=-6 +County "IA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900270.epw site_zip_code=51401 site_time_zone_utc_offset=-6 +County "IA, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900290.epw site_zip_code=50022 site_time_zone_utc_offset=-6 +County "IA, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900310.epw site_zip_code=52772 site_time_zone_utc_offset=-6 +County "IA, Cerro Gordo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900330.epw site_zip_code=50401 site_time_zone_utc_offset=-6 +County "IA, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900350.epw site_zip_code=51012 site_time_zone_utc_offset=-6 +County "IA, Chickasaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900370.epw site_zip_code=50659 site_time_zone_utc_offset=-6 +County "IA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900390.epw site_zip_code=50213 site_time_zone_utc_offset=-6 +County "IA, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900410.epw site_zip_code=51301 site_time_zone_utc_offset=-6 +County "IA, Clayton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900430.epw site_zip_code=52052 site_time_zone_utc_offset=-6 +County "IA, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900450.epw site_zip_code=52732 site_time_zone_utc_offset=-6 +County "IA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900470.epw site_zip_code=51442 site_time_zone_utc_offset=-6 +County "IA, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900490.epw site_zip_code=50263 site_time_zone_utc_offset=-6 +County "IA, Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900510.epw site_zip_code=52537 site_time_zone_utc_offset=-6 +County "IA, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900530.epw site_zip_code=50144 site_time_zone_utc_offset=-6 +County "IA, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900550.epw site_zip_code=52057 site_time_zone_utc_offset=-6 +County "IA, Des Moines County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900570.epw site_zip_code=52601 site_time_zone_utc_offset=-6 +County "IA, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900590.epw site_zip_code=51360 site_time_zone_utc_offset=-6 +County "IA, Dubuque County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900610.epw site_zip_code=52001 site_time_zone_utc_offset=-6 +County "IA, Emmet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900630.epw site_zip_code=51334 site_time_zone_utc_offset=-6 +County "IA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900650.epw site_zip_code=50662 site_time_zone_utc_offset=-6 +County "IA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900670.epw site_zip_code=50616 site_time_zone_utc_offset=-6 +County "IA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900690.epw site_zip_code=50441 site_time_zone_utc_offset=-6 +County "IA, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900710.epw site_zip_code=51652 site_time_zone_utc_offset=-6 +County "IA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900730.epw site_zip_code=50129 site_time_zone_utc_offset=-6 +County "IA, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900750.epw site_zip_code=50638 site_time_zone_utc_offset=-6 +County "IA, Guthrie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900770.epw site_zip_code=50216 site_time_zone_utc_offset=-6 +County "IA, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900790.epw site_zip_code=50595 site_time_zone_utc_offset=-6 +County "IA, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900810.epw site_zip_code=50438 site_time_zone_utc_offset=-6 +County "IA, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900830.epw site_zip_code=50126 site_time_zone_utc_offset=-6 +County "IA, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900850.epw site_zip_code=51555 site_time_zone_utc_offset=-6 +County "IA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900870.epw site_zip_code=52641 site_time_zone_utc_offset=-6 +County "IA, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900890.epw site_zip_code=52136 site_time_zone_utc_offset=-6 +County "IA, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900910.epw site_zip_code=50548 site_time_zone_utc_offset=-6 +County "IA, Ida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900930.epw site_zip_code=51445 site_time_zone_utc_offset=-6 +County "IA, Iowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900950.epw site_zip_code=52361 site_time_zone_utc_offset=-6 +County "IA, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900970.epw site_zip_code=52060 site_time_zone_utc_offset=-6 +County "IA, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900990.epw site_zip_code=50208 site_time_zone_utc_offset=-6 +County "IA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901010.epw site_zip_code=52556 site_time_zone_utc_offset=-6 +County "IA, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901030.epw site_zip_code=52240 site_time_zone_utc_offset=-6 +County "IA, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901050.epw site_zip_code=52205 site_time_zone_utc_offset=-6 +County "IA, Keokuk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901070.epw site_zip_code=52591 site_time_zone_utc_offset=-6 +County "IA, Kossuth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901090.epw site_zip_code=50511 site_time_zone_utc_offset=-6 +County "IA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901110.epw site_zip_code=52627 site_time_zone_utc_offset=-6 +County "IA, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901130.epw site_zip_code=52404 site_time_zone_utc_offset=-6 +County "IA, Louisa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901150.epw site_zip_code=52653 site_time_zone_utc_offset=-6 +County "IA, Lucas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901170.epw site_zip_code=50049 site_time_zone_utc_offset=-6 +County "IA, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901190.epw site_zip_code=51246 site_time_zone_utc_offset=-6 +County "IA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901210.epw site_zip_code=50273 site_time_zone_utc_offset=-6 +County "IA, Mahaska County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901230.epw site_zip_code=52577 site_time_zone_utc_offset=-6 +County "IA, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901250.epw site_zip_code=50219 site_time_zone_utc_offset=-6 +County "IA, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901270.epw site_zip_code=50158 site_time_zone_utc_offset=-6 +County "IA, Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901290.epw site_zip_code=51534 site_time_zone_utc_offset=-6 +County "IA, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901310.epw site_zip_code=50461 site_time_zone_utc_offset=-6 +County "IA, Monona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901330.epw site_zip_code=51040 site_time_zone_utc_offset=-6 +County "IA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901350.epw site_zip_code=52531 site_time_zone_utc_offset=-6 +County "IA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901370.epw site_zip_code=51566 site_time_zone_utc_offset=-6 +County "IA, Muscatine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901390.epw site_zip_code=52761 site_time_zone_utc_offset=-6 +County "IA, O'Brien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901410.epw site_zip_code=51201 site_time_zone_utc_offset=-6 +County "IA, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901430.epw site_zip_code=51249 site_time_zone_utc_offset=-6 +County "IA, Page County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901450.epw site_zip_code=51632 site_time_zone_utc_offset=-6 +County "IA, Palo Alto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901470.epw site_zip_code=50536 site_time_zone_utc_offset=-6 +County "IA, Plymouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901490.epw site_zip_code=51031 site_time_zone_utc_offset=-6 +County "IA, Pocahontas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901510.epw site_zip_code=50574 site_time_zone_utc_offset=-6 +County "IA, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901530.epw site_zip_code=50023 site_time_zone_utc_offset=-6 +County "IA, Pottawattamie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901550.epw site_zip_code=51503 site_time_zone_utc_offset=-6 +County "IA, Poweshiek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901570.epw site_zip_code=50112 site_time_zone_utc_offset=-6 +County "IA, Ringgold County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901590.epw site_zip_code=50854 site_time_zone_utc_offset=-6 +County "IA, Sac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901610.epw site_zip_code=50583 site_time_zone_utc_offset=-6 +County "IA, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901630.epw site_zip_code=52722 site_time_zone_utc_offset=-6 +County "IA, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901650.epw site_zip_code=51537 site_time_zone_utc_offset=-6 +County "IA, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901670.epw site_zip_code=51250 site_time_zone_utc_offset=-6 +County "IA, Story County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901690.epw site_zip_code=50010 site_time_zone_utc_offset=-6 +County "IA, Tama County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901710.epw site_zip_code=52339 site_time_zone_utc_offset=-6 +County "IA, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901730.epw site_zip_code=50833 site_time_zone_utc_offset=-6 +County "IA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901750.epw site_zip_code=50801 site_time_zone_utc_offset=-6 +County "IA, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901770.epw site_zip_code=52565 site_time_zone_utc_offset=-6 +County "IA, Wapello County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901790.epw site_zip_code=52501 site_time_zone_utc_offset=-6 +County "IA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901810.epw site_zip_code=50125 site_time_zone_utc_offset=-6 +County "IA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901830.epw site_zip_code=52353 site_time_zone_utc_offset=-6 +County "IA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901850.epw site_zip_code=50060 site_time_zone_utc_offset=-6 +County "IA, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901870.epw site_zip_code=50501 site_time_zone_utc_offset=-6 +County "IA, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901890.epw site_zip_code=50436 site_time_zone_utc_offset=-6 +County "IA, Winneshiek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901910.epw site_zip_code=52101 site_time_zone_utc_offset=-6 +County "IA, Woodbury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901930.epw site_zip_code=51106 site_time_zone_utc_offset=-6 +County "IA, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901950.epw site_zip_code=50459 site_time_zone_utc_offset=-6 +County "IA, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901970.epw site_zip_code=50533 site_time_zone_utc_offset=-6 +County "ID, Ada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600010.epw site_zip_code=83646 site_time_zone_utc_offset=-7 +County "ID, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600030.epw site_zip_code=83612 site_time_zone_utc_offset=-7 +County "ID, Bannock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600050.epw site_zip_code=83201 site_time_zone_utc_offset=-7 +County "ID, Bear Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600070.epw site_zip_code=83254 site_time_zone_utc_offset=-7 +County "ID, Benewah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600090.epw site_zip_code=83861 site_time_zone_utc_offset=-8 +County "ID, Bingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600110.epw site_zip_code=83221 site_time_zone_utc_offset=-7 +County "ID, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600130.epw site_zip_code=83333 site_time_zone_utc_offset=-7 +County "ID, Boise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600150.epw site_zip_code=83716 site_time_zone_utc_offset=-7 +County "ID, Bonner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600170.epw site_zip_code=83864 site_time_zone_utc_offset=-8 +County "ID, Bonneville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600190.epw site_zip_code=83401 site_time_zone_utc_offset=-7 +County "ID, Boundary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600210.epw site_zip_code=83805 site_time_zone_utc_offset=-8 +County "ID, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600230.epw site_zip_code=83213 site_time_zone_utc_offset=-7 +County "ID, Camas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600250.epw site_zip_code=83327 site_time_zone_utc_offset=-7 +County "ID, Canyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600270.epw site_zip_code=83686 site_time_zone_utc_offset=-7 +County "ID, Caribou County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600290.epw site_zip_code=83276 site_time_zone_utc_offset=-7 +County "ID, Cassia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600310.epw site_zip_code=83318 site_time_zone_utc_offset=-7 +County "ID, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600330.epw site_zip_code=83423 site_time_zone_utc_offset=-7 +County "ID, Clearwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600350.epw site_zip_code=83544 site_time_zone_utc_offset=-8 +County "ID, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600370.epw site_zip_code=83226 site_time_zone_utc_offset=-7 +County "ID, Elmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600390.epw site_zip_code=83647 site_time_zone_utc_offset=-7 +County "ID, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600410.epw site_zip_code=83263 site_time_zone_utc_offset=-7 +County "ID, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600430.epw site_zip_code=83445 site_time_zone_utc_offset=-7 +County "ID, Gem County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600450.epw site_zip_code=83617 site_time_zone_utc_offset=-7 +County "ID, Gooding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600470.epw site_zip_code=83330 site_time_zone_utc_offset=-7 +County "ID, Idaho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600490.epw site_zip_code=83530 site_time_zone_utc_offset=-8 +County "ID, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600510.epw site_zip_code=83442 site_time_zone_utc_offset=-7 +County "ID, Jerome County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600530.epw site_zip_code=83338 site_time_zone_utc_offset=-7 +County "ID, Kootenai County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600550.epw site_zip_code=83854 site_time_zone_utc_offset=-8 +County "ID, Latah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600570.epw site_zip_code=83843 site_time_zone_utc_offset=-8 +County "ID, Lemhi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600590.epw site_zip_code=83467 site_time_zone_utc_offset=-7 +County "ID, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600610.epw site_zip_code=83536 site_time_zone_utc_offset=-8 +County "ID, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600630.epw site_zip_code=83352 site_time_zone_utc_offset=-7 +County "ID, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600650.epw site_zip_code=83440 site_time_zone_utc_offset=-7 +County "ID, Minidoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600670.epw site_zip_code=83350 site_time_zone_utc_offset=-7 +County "ID, Nez Perce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600690.epw site_zip_code=83501 site_time_zone_utc_offset=-8 +County "ID, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600710.epw site_zip_code=83252 site_time_zone_utc_offset=-7 +County "ID, Owyhee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600730.epw site_zip_code=83628 site_time_zone_utc_offset=-7 +County "ID, Payette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600750.epw site_zip_code=83661 site_time_zone_utc_offset=-7 +County "ID, Power County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600770.epw site_zip_code=83211 site_time_zone_utc_offset=-7 +County "ID, Shoshone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600790.epw site_zip_code=83837 site_time_zone_utc_offset=-8 +County "ID, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600810.epw site_zip_code=83455 site_time_zone_utc_offset=-7 +County "ID, Twin Falls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600830.epw site_zip_code=83301 site_time_zone_utc_offset=-7 +County "ID, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600850.epw site_zip_code=83638 site_time_zone_utc_offset=-7 +County "ID, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600870.epw site_zip_code=83672 site_time_zone_utc_offset=-7 +County "IL, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700010.epw site_zip_code=62301 site_time_zone_utc_offset=-6 +County "IL, Alexander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700030.epw site_zip_code=62914 site_time_zone_utc_offset=-6 +County "IL, Bond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700050.epw site_zip_code=62246 site_time_zone_utc_offset=-6 +County "IL, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700070.epw site_zip_code=61008 site_time_zone_utc_offset=-6 +County "IL, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700090.epw site_zip_code=62353 site_time_zone_utc_offset=-6 +County "IL, Bureau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700110.epw site_zip_code=61356 site_time_zone_utc_offset=-6 +County "IL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700130.epw site_zip_code=62047 site_time_zone_utc_offset=-6 +County "IL, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700150.epw site_zip_code=61074 site_time_zone_utc_offset=-6 +County "IL, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700170.epw site_zip_code=62618 site_time_zone_utc_offset=-6 +County "IL, Champaign County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700190.epw site_zip_code=61820 site_time_zone_utc_offset=-6 +County "IL, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700210.epw site_zip_code=62568 site_time_zone_utc_offset=-6 +County "IL, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700230.epw site_zip_code=62441 site_time_zone_utc_offset=-6 +County "IL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700250.epw site_zip_code=62839 site_time_zone_utc_offset=-6 +County "IL, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700270.epw site_zip_code=62231 site_time_zone_utc_offset=-6 +County "IL, Coles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700290.epw site_zip_code=61938 site_time_zone_utc_offset=-6 +County "IL, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700310.epw site_zip_code=60657 site_time_zone_utc_offset=-6 +County "IL, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700330.epw site_zip_code=62454 site_time_zone_utc_offset=-6 +County "IL, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700350.epw site_zip_code=62428 site_time_zone_utc_offset=-6 +County "IL, De Witt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700390.epw site_zip_code=61727 site_time_zone_utc_offset=-6 +County "IL, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700370.epw site_zip_code=60115 site_time_zone_utc_offset=-6 +County "IL, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700410.epw site_zip_code=61953 site_time_zone_utc_offset=-6 +County "IL, DuPage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700430.epw site_zip_code=60148 site_time_zone_utc_offset=-6 +County "IL, Edgar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700450.epw site_zip_code=61944 site_time_zone_utc_offset=-6 +County "IL, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700470.epw site_zip_code=62806 site_time_zone_utc_offset=-6 +County "IL, Effingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700490.epw site_zip_code=62401 site_time_zone_utc_offset=-6 +County "IL, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700510.epw site_zip_code=62471 site_time_zone_utc_offset=-6 +County "IL, Ford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700530.epw site_zip_code=60957 site_time_zone_utc_offset=-6 +County "IL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700550.epw site_zip_code=62896 site_time_zone_utc_offset=-6 +County "IL, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700570.epw site_zip_code=61520 site_time_zone_utc_offset=-6 +County "IL, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700590.epw site_zip_code=62984 site_time_zone_utc_offset=-6 +County "IL, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700610.epw site_zip_code=62016 site_time_zone_utc_offset=-6 +County "IL, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700630.epw site_zip_code=60450 site_time_zone_utc_offset=-6 +County "IL, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700650.epw site_zip_code=62859 site_time_zone_utc_offset=-6 +County "IL, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700670.epw site_zip_code=62321 site_time_zone_utc_offset=-6 +County "IL, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700690.epw site_zip_code=62931 site_time_zone_utc_offset=-6 +County "IL, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700710.epw site_zip_code=61469 site_time_zone_utc_offset=-6 +County "IL, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700730.epw site_zip_code=61443 site_time_zone_utc_offset=-6 +County "IL, Iroquois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700750.epw site_zip_code=60970 site_time_zone_utc_offset=-6 +County "IL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700770.epw site_zip_code=62901 site_time_zone_utc_offset=-6 +County "IL, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700790.epw site_zip_code=62448 site_time_zone_utc_offset=-6 +County "IL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700810.epw site_zip_code=62864 site_time_zone_utc_offset=-6 +County "IL, Jersey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700830.epw site_zip_code=62052 site_time_zone_utc_offset=-6 +County "IL, Jo Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700850.epw site_zip_code=61036 site_time_zone_utc_offset=-6 +County "IL, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700870.epw site_zip_code=62995 site_time_zone_utc_offset=-6 +County "IL, Kane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700890.epw site_zip_code=60506 site_time_zone_utc_offset=-6 +County "IL, Kankakee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700910.epw site_zip_code=60901 site_time_zone_utc_offset=-6 +County "IL, Kendall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700930.epw site_zip_code=60543 site_time_zone_utc_offset=-6 +County "IL, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700950.epw site_zip_code=61401 site_time_zone_utc_offset=-6 +County "IL, LaSalle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700990.epw site_zip_code=61350 site_time_zone_utc_offset=-6 +County "IL, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700970.epw site_zip_code=60085 site_time_zone_utc_offset=-6 +County "IL, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701010.epw site_zip_code=62439 site_time_zone_utc_offset=-6 +County "IL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701030.epw site_zip_code=61021 site_time_zone_utc_offset=-6 +County "IL, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701050.epw site_zip_code=61764 site_time_zone_utc_offset=-6 +County "IL, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701070.epw site_zip_code=62656 site_time_zone_utc_offset=-6 +County "IL, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701150.epw site_zip_code=62521 site_time_zone_utc_offset=-6 +County "IL, Macoupin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701170.epw site_zip_code=62626 site_time_zone_utc_offset=-6 +County "IL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701190.epw site_zip_code=62040 site_time_zone_utc_offset=-6 +County "IL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701210.epw site_zip_code=62801 site_time_zone_utc_offset=-6 +County "IL, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701230.epw site_zip_code=61540 site_time_zone_utc_offset=-6 +County "IL, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701250.epw site_zip_code=62644 site_time_zone_utc_offset=-6 +County "IL, Massac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701270.epw site_zip_code=62960 site_time_zone_utc_offset=-6 +County "IL, McDonough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701090.epw site_zip_code=61455 site_time_zone_utc_offset=-6 +County "IL, McHenry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701110.epw site_zip_code=60014 site_time_zone_utc_offset=-6 +County "IL, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701130.epw site_zip_code=61761 site_time_zone_utc_offset=-6 +County "IL, Menard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701290.epw site_zip_code=62675 site_time_zone_utc_offset=-6 +County "IL, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701310.epw site_zip_code=61231 site_time_zone_utc_offset=-6 +County "IL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701330.epw site_zip_code=62298 site_time_zone_utc_offset=-6 +County "IL, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701350.epw site_zip_code=62056 site_time_zone_utc_offset=-6 +County "IL, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701370.epw site_zip_code=62650 site_time_zone_utc_offset=-6 +County "IL, Moultrie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701390.epw site_zip_code=61951 site_time_zone_utc_offset=-6 +County "IL, Ogle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701410.epw site_zip_code=61068 site_time_zone_utc_offset=-6 +County "IL, Peoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701430.epw site_zip_code=61604 site_time_zone_utc_offset=-6 +County "IL, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701450.epw site_zip_code=62832 site_time_zone_utc_offset=-6 +County "IL, Piatt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701470.epw site_zip_code=61856 site_time_zone_utc_offset=-6 +County "IL, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701490.epw site_zip_code=62363 site_time_zone_utc_offset=-6 +County "IL, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701510.epw site_zip_code=62938 site_time_zone_utc_offset=-6 +County "IL, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701530.epw site_zip_code=62964 site_time_zone_utc_offset=-6 +County "IL, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701550.epw site_zip_code=61326 site_time_zone_utc_offset=-6 +County "IL, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701570.epw site_zip_code=62286 site_time_zone_utc_offset=-6 +County "IL, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701590.epw site_zip_code=62450 site_time_zone_utc_offset=-6 +County "IL, Rock Island County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701610.epw site_zip_code=61265 site_time_zone_utc_offset=-6 +County "IL, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701650.epw site_zip_code=62946 site_time_zone_utc_offset=-6 +County "IL, Sangamon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701670.epw site_zip_code=62704 site_time_zone_utc_offset=-6 +County "IL, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701690.epw site_zip_code=62681 site_time_zone_utc_offset=-6 +County "IL, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701710.epw site_zip_code=62694 site_time_zone_utc_offset=-6 +County "IL, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701730.epw site_zip_code=62565 site_time_zone_utc_offset=-6 +County "IL, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701630.epw site_zip_code=62269 site_time_zone_utc_offset=-6 +County "IL, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701750.epw site_zip_code=61491 site_time_zone_utc_offset=-6 +County "IL, Stephenson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701770.epw site_zip_code=61032 site_time_zone_utc_offset=-6 +County "IL, Tazewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701790.epw site_zip_code=61554 site_time_zone_utc_offset=-6 +County "IL, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701810.epw site_zip_code=62906 site_time_zone_utc_offset=-6 +County "IL, Vermilion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701830.epw site_zip_code=61832 site_time_zone_utc_offset=-6 +County "IL, Wabash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701850.epw site_zip_code=62863 site_time_zone_utc_offset=-6 +County "IL, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701870.epw site_zip_code=61462 site_time_zone_utc_offset=-6 +County "IL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701890.epw site_zip_code=62263 site_time_zone_utc_offset=-6 +County "IL, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701910.epw site_zip_code=62837 site_time_zone_utc_offset=-6 +County "IL, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701930.epw site_zip_code=62821 site_time_zone_utc_offset=-6 +County "IL, Whiteside County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701950.epw site_zip_code=61081 site_time_zone_utc_offset=-6 +County "IL, Will County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701970.epw site_zip_code=60435 site_time_zone_utc_offset=-6 +County "IL, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701990.epw site_zip_code=62959 site_time_zone_utc_offset=-6 +County "IL, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1702010.epw site_zip_code=61107 site_time_zone_utc_offset=-6 +County "IL, Woodford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1702030.epw site_zip_code=61548 site_time_zone_utc_offset=-6 +County "IN, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800010.epw site_zip_code=46733 site_time_zone_utc_offset=-5 +County "IN, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800030.epw site_zip_code=46835 site_time_zone_utc_offset=-5 +County "IN, Bartholomew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800050.epw site_zip_code=47201 site_time_zone_utc_offset=-5 +County "IN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800070.epw site_zip_code=47944 site_time_zone_utc_offset=-5 +County "IN, Blackford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800090.epw site_zip_code=47348 site_time_zone_utc_offset=-5 +County "IN, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800110.epw site_zip_code=46077 site_time_zone_utc_offset=-5 +County "IN, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800130.epw site_zip_code=47448 site_time_zone_utc_offset=-5 +County "IN, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800150.epw site_zip_code=46923 site_time_zone_utc_offset=-5 +County "IN, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800170.epw site_zip_code=46947 site_time_zone_utc_offset=-5 +County "IN, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800190.epw site_zip_code=47130 site_time_zone_utc_offset=-5 +County "IN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800210.epw site_zip_code=47834 site_time_zone_utc_offset=-5 +County "IN, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800230.epw site_zip_code=46041 site_time_zone_utc_offset=-5 +County "IN, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800250.epw site_zip_code=47118 site_time_zone_utc_offset=-5 +County "IN, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800270.epw site_zip_code=47501 site_time_zone_utc_offset=-5 +County "IN, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800330.epw site_zip_code=46706 site_time_zone_utc_offset=-5 +County "IN, Dearborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800290.epw site_zip_code=47025 site_time_zone_utc_offset=-5 +County "IN, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800310.epw site_zip_code=47240 site_time_zone_utc_offset=-5 +County "IN, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800350.epw site_zip_code=47304 site_time_zone_utc_offset=-5 +County "IN, Dubois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800370.epw site_zip_code=47546 site_time_zone_utc_offset=-5 +County "IN, Elkhart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800390.epw site_zip_code=46514 site_time_zone_utc_offset=-5 +County "IN, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800410.epw site_zip_code=47331 site_time_zone_utc_offset=-5 +County "IN, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800430.epw site_zip_code=47150 site_time_zone_utc_offset=-5 +County "IN, Fountain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800450.epw site_zip_code=47918 site_time_zone_utc_offset=-5 +County "IN, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800470.epw site_zip_code=47012 site_time_zone_utc_offset=-5 +County "IN, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800490.epw site_zip_code=46975 site_time_zone_utc_offset=-5 +County "IN, Gibson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800510.epw site_zip_code=47670 site_time_zone_utc_offset=-6 +County "IN, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800530.epw site_zip_code=46953 site_time_zone_utc_offset=-5 +County "IN, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800550.epw site_zip_code=47441 site_time_zone_utc_offset=-5 +County "IN, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800570.epw site_zip_code=46032 site_time_zone_utc_offset=-5 +County "IN, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800590.epw site_zip_code=46140 site_time_zone_utc_offset=-5 +County "IN, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800610.epw site_zip_code=47112 site_time_zone_utc_offset=-5 +County "IN, Hendricks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800630.epw site_zip_code=46112 site_time_zone_utc_offset=-5 +County "IN, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800650.epw site_zip_code=47362 site_time_zone_utc_offset=-5 +County "IN, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800670.epw site_zip_code=46901 site_time_zone_utc_offset=-5 +County "IN, Huntington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800690.epw site_zip_code=46750 site_time_zone_utc_offset=-5 +County "IN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800710.epw site_zip_code=47274 site_time_zone_utc_offset=-5 +County "IN, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800730.epw site_zip_code=47978 site_time_zone_utc_offset=-6 +County "IN, Jay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800750.epw site_zip_code=47371 site_time_zone_utc_offset=-5 +County "IN, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800770.epw site_zip_code=47250 site_time_zone_utc_offset=-5 +County "IN, Jennings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800790.epw site_zip_code=47265 site_time_zone_utc_offset=-5 +County "IN, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800810.epw site_zip_code=46143 site_time_zone_utc_offset=-5 +County "IN, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800830.epw site_zip_code=47591 site_time_zone_utc_offset=-5 +County "IN, Kosciusko County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800850.epw site_zip_code=46580 site_time_zone_utc_offset=-5 +County "IN, LaGrange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800870.epw site_zip_code=46761 site_time_zone_utc_offset=-5 +County "IN, LaPorte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800910.epw site_zip_code=46360 site_time_zone_utc_offset=-6 +County "IN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800890.epw site_zip_code=46307 site_time_zone_utc_offset=-6 +County "IN, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800930.epw site_zip_code=47421 site_time_zone_utc_offset=-5 +County "IN, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800950.epw site_zip_code=46016 site_time_zone_utc_offset=-5 +County "IN, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800970.epw site_zip_code=46227 site_time_zone_utc_offset=-5 +County "IN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800990.epw site_zip_code=46563 site_time_zone_utc_offset=-5 +County "IN, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801010.epw site_zip_code=47581 site_time_zone_utc_offset=-5 +County "IN, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801030.epw site_zip_code=46970 site_time_zone_utc_offset=-5 +County "IN, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801050.epw site_zip_code=47401 site_time_zone_utc_offset=-5 +County "IN, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801070.epw site_zip_code=47933 site_time_zone_utc_offset=-5 +County "IN, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801090.epw site_zip_code=46151 site_time_zone_utc_offset=-5 +County "IN, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801110.epw site_zip_code=46349 site_time_zone_utc_offset=-6 +County "IN, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801130.epw site_zip_code=46755 site_time_zone_utc_offset=-5 +County "IN, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801150.epw site_zip_code=47040 site_time_zone_utc_offset=-5 +County "IN, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801170.epw site_zip_code=47454 site_time_zone_utc_offset=-5 +County "IN, Owen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801190.epw site_zip_code=47460 site_time_zone_utc_offset=-5 +County "IN, Parke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801210.epw site_zip_code=47872 site_time_zone_utc_offset=-5 +County "IN, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801230.epw site_zip_code=47586 site_time_zone_utc_offset=-6 +County "IN, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801250.epw site_zip_code=47567 site_time_zone_utc_offset=-5 +County "IN, Porter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801270.epw site_zip_code=46383 site_time_zone_utc_offset=-6 +County "IN, Posey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801290.epw site_zip_code=47620 site_time_zone_utc_offset=-6 +County "IN, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801310.epw site_zip_code=46996 site_time_zone_utc_offset=-5 +County "IN, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801330.epw site_zip_code=46135 site_time_zone_utc_offset=-5 +County "IN, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801350.epw site_zip_code=47394 site_time_zone_utc_offset=-5 +County "IN, Ripley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801370.epw site_zip_code=47006 site_time_zone_utc_offset=-5 +County "IN, Rush County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801390.epw site_zip_code=46173 site_time_zone_utc_offset=-5 +County "IN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801430.epw site_zip_code=47170 site_time_zone_utc_offset=-5 +County "IN, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801450.epw site_zip_code=46176 site_time_zone_utc_offset=-5 +County "IN, Spencer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801470.epw site_zip_code=47635 site_time_zone_utc_offset=-6 +County "IN, St. Joseph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801410.epw site_zip_code=46544 site_time_zone_utc_offset=-5 +County "IN, Starke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801490.epw site_zip_code=46534 site_time_zone_utc_offset=-6 +County "IN, Steuben County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801510.epw site_zip_code=46703 site_time_zone_utc_offset=-5 +County "IN, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801530.epw site_zip_code=47882 site_time_zone_utc_offset=-5 +County "IN, Switzerland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801550.epw site_zip_code=47043 site_time_zone_utc_offset=-5 +County "IN, Tippecanoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801570.epw site_zip_code=47906 site_time_zone_utc_offset=-5 +County "IN, Tipton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801590.epw site_zip_code=46072 site_time_zone_utc_offset=-5 +County "IN, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801610.epw site_zip_code=47353 site_time_zone_utc_offset=-5 +County "IN, Vanderburgh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801630.epw site_zip_code=47714 site_time_zone_utc_offset=-6 +County "IN, Vermillion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801650.epw site_zip_code=47842 site_time_zone_utc_offset=-5 +County "IN, Vigo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801670.epw site_zip_code=47802 site_time_zone_utc_offset=-5 +County "IN, Wabash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801690.epw site_zip_code=46992 site_time_zone_utc_offset=-5 +County "IN, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801710.epw site_zip_code=47993 site_time_zone_utc_offset=-5 +County "IN, Warrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801730.epw site_zip_code=47630 site_time_zone_utc_offset=-6 +County "IN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801750.epw site_zip_code=47167 site_time_zone_utc_offset=-5 +County "IN, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801770.epw site_zip_code=47374 site_time_zone_utc_offset=-5 +County "IN, Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801790.epw site_zip_code=46714 site_time_zone_utc_offset=-5 +County "IN, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801810.epw site_zip_code=47960 site_time_zone_utc_offset=-5 +County "IN, Whitley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801830.epw site_zip_code=46725 site_time_zone_utc_offset=-5 +County "KS, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000010.epw site_zip_code=66749 site_time_zone_utc_offset=-6 +County "KS, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000030.epw site_zip_code=66032 site_time_zone_utc_offset=-6 +County "KS, Atchison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000050.epw site_zip_code=66002 site_time_zone_utc_offset=-6 +County "KS, Barber County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000070.epw site_zip_code=67104 site_time_zone_utc_offset=-6 +County "KS, Barton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000090.epw site_zip_code=67530 site_time_zone_utc_offset=-6 +County "KS, Bourbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000110.epw site_zip_code=66701 site_time_zone_utc_offset=-6 +County "KS, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000130.epw site_zip_code=66434 site_time_zone_utc_offset=-6 +County "KS, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000150.epw site_zip_code=67042 site_time_zone_utc_offset=-6 +County "KS, Chase County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000170.epw site_zip_code=66845 site_time_zone_utc_offset=-6 +County "KS, Chautauqua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000190.epw site_zip_code=67361 site_time_zone_utc_offset=-6 +County "KS, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000210.epw site_zip_code=66713 site_time_zone_utc_offset=-6 +County "KS, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000230.epw site_zip_code=67756 site_time_zone_utc_offset=-6 +County "KS, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000250.epw site_zip_code=67865 site_time_zone_utc_offset=-6 +County "KS, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000270.epw site_zip_code=67432 site_time_zone_utc_offset=-6 +County "KS, Cloud County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000290.epw site_zip_code=66901 site_time_zone_utc_offset=-6 +County "KS, Coffey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000310.epw site_zip_code=66839 site_time_zone_utc_offset=-6 +County "KS, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000330.epw site_zip_code=67029 site_time_zone_utc_offset=-6 +County "KS, Cowley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000350.epw site_zip_code=67005 site_time_zone_utc_offset=-6 +County "KS, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000370.epw site_zip_code=66762 site_time_zone_utc_offset=-6 +County "KS, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000390.epw site_zip_code=67749 site_time_zone_utc_offset=-6 +County "KS, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000410.epw site_zip_code=67410 site_time_zone_utc_offset=-6 +County "KS, Doniphan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000430.epw site_zip_code=66090 site_time_zone_utc_offset=-6 +County "KS, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000450.epw site_zip_code=66049 site_time_zone_utc_offset=-6 +County "KS, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000470.epw site_zip_code=67547 site_time_zone_utc_offset=-6 +County "KS, Elk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000490.epw site_zip_code=67349 site_time_zone_utc_offset=-6 +County "KS, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000510.epw site_zip_code=67601 site_time_zone_utc_offset=-6 +County "KS, Ellsworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000530.epw site_zip_code=67439 site_time_zone_utc_offset=-6 +County "KS, Finney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000550.epw site_zip_code=67846 site_time_zone_utc_offset=-6 +County "KS, Ford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000570.epw site_zip_code=67801 site_time_zone_utc_offset=-6 +County "KS, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000590.epw site_zip_code=66067 site_time_zone_utc_offset=-6 +County "KS, Geary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000610.epw site_zip_code=66441 site_time_zone_utc_offset=-6 +County "KS, Gove County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000630.epw site_zip_code=67752 site_time_zone_utc_offset=-6 +County "KS, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000650.epw site_zip_code=67642 site_time_zone_utc_offset=-6 +County "KS, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000670.epw site_zip_code=67880 site_time_zone_utc_offset=-6 +County "KS, Gray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000690.epw site_zip_code=67867 site_time_zone_utc_offset=-6 +County "KS, Greeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000710.epw site_zip_code=67879 site_time_zone_utc_offset=-7 +County "KS, Greenwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000730.epw site_zip_code=67045 site_time_zone_utc_offset=-6 +County "KS, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000750.epw site_zip_code=67878 site_time_zone_utc_offset=-7 +County "KS, Harper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000770.epw site_zip_code=67003 site_time_zone_utc_offset=-6 +County "KS, Harvey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000790.epw site_zip_code=67114 site_time_zone_utc_offset=-6 +County "KS, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000810.epw site_zip_code=67877 site_time_zone_utc_offset=-6 +County "KS, Hodgeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000830.epw site_zip_code=67854 site_time_zone_utc_offset=-6 +County "KS, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000850.epw site_zip_code=66436 site_time_zone_utc_offset=-6 +County "KS, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000870.epw site_zip_code=66512 site_time_zone_utc_offset=-6 +County "KS, Jewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000890.epw site_zip_code=66956 site_time_zone_utc_offset=-6 +County "KS, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000910.epw site_zip_code=66062 site_time_zone_utc_offset=-6 +County "KS, Kearny County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000930.epw site_zip_code=67860 site_time_zone_utc_offset=-6 +County "KS, Kingman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000950.epw site_zip_code=67068 site_time_zone_utc_offset=-6 +County "KS, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000970.epw site_zip_code=67054 site_time_zone_utc_offset=-6 +County "KS, Labette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000990.epw site_zip_code=67357 site_time_zone_utc_offset=-6 +County "KS, Lane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001010.epw site_zip_code=67839 site_time_zone_utc_offset=-6 +County "KS, Leavenworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001030.epw site_zip_code=66048 site_time_zone_utc_offset=-6 +County "KS, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001050.epw site_zip_code=67455 site_time_zone_utc_offset=-6 +County "KS, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001070.epw site_zip_code=66040 site_time_zone_utc_offset=-6 +County "KS, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001090.epw site_zip_code=67748 site_time_zone_utc_offset=-6 +County "KS, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001110.epw site_zip_code=66801 site_time_zone_utc_offset=-6 +County "KS, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001150.epw site_zip_code=67063 site_time_zone_utc_offset=-6 +County "KS, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001170.epw site_zip_code=66508 site_time_zone_utc_offset=-6 +County "KS, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001130.epw site_zip_code=67460 site_time_zone_utc_offset=-6 +County "KS, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001190.epw site_zip_code=67864 site_time_zone_utc_offset=-6 +County "KS, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001210.epw site_zip_code=66071 site_time_zone_utc_offset=-6 +County "KS, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001230.epw site_zip_code=67420 site_time_zone_utc_offset=-6 +County "KS, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001250.epw site_zip_code=67301 site_time_zone_utc_offset=-6 +County "KS, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001270.epw site_zip_code=66846 site_time_zone_utc_offset=-6 +County "KS, Morton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001290.epw site_zip_code=67950 site_time_zone_utc_offset=-6 +County "KS, Nemaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001310.epw site_zip_code=66538 site_time_zone_utc_offset=-6 +County "KS, Neosho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001330.epw site_zip_code=66720 site_time_zone_utc_offset=-6 +County "KS, Ness County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001350.epw site_zip_code=67560 site_time_zone_utc_offset=-6 +County "KS, Norton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001370.epw site_zip_code=67654 site_time_zone_utc_offset=-6 +County "KS, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001390.epw site_zip_code=66523 site_time_zone_utc_offset=-6 +County "KS, Osborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001410.epw site_zip_code=67473 site_time_zone_utc_offset=-6 +County "KS, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001430.epw site_zip_code=67467 site_time_zone_utc_offset=-6 +County "KS, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001450.epw site_zip_code=67550 site_time_zone_utc_offset=-6 +County "KS, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001470.epw site_zip_code=67661 site_time_zone_utc_offset=-6 +County "KS, Pottawatomie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001490.epw site_zip_code=66547 site_time_zone_utc_offset=-6 +County "KS, Pratt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001510.epw site_zip_code=67124 site_time_zone_utc_offset=-6 +County "KS, Rawlins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001530.epw site_zip_code=67730 site_time_zone_utc_offset=-6 +County "KS, Reno County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001550.epw site_zip_code=67501 site_time_zone_utc_offset=-6 +County "KS, Republic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001570.epw site_zip_code=66935 site_time_zone_utc_offset=-6 +County "KS, Rice County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001590.epw site_zip_code=67554 site_time_zone_utc_offset=-6 +County "KS, Riley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001610.epw site_zip_code=66502 site_time_zone_utc_offset=-6 +County "KS, Rooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001630.epw site_zip_code=67663 site_time_zone_utc_offset=-6 +County "KS, Rush County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001650.epw site_zip_code=67548 site_time_zone_utc_offset=-6 +County "KS, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001670.epw site_zip_code=67665 site_time_zone_utc_offset=-6 +County "KS, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001690.epw site_zip_code=67401 site_time_zone_utc_offset=-6 +County "KS, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001710.epw site_zip_code=67871 site_time_zone_utc_offset=-6 +County "KS, Sedgwick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001730.epw site_zip_code=67212 site_time_zone_utc_offset=-6 +County "KS, Seward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001750.epw site_zip_code=67901 site_time_zone_utc_offset=-6 +County "KS, Shawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001770.epw site_zip_code=66614 site_time_zone_utc_offset=-6 +County "KS, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001790.epw site_zip_code=67740 site_time_zone_utc_offset=-6 +County "KS, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001810.epw site_zip_code=67735 site_time_zone_utc_offset=-7 +County "KS, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001830.epw site_zip_code=66967 site_time_zone_utc_offset=-6 +County "KS, Stafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001850.epw site_zip_code=67576 site_time_zone_utc_offset=-6 +County "KS, Stanton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001870.epw site_zip_code=67855 site_time_zone_utc_offset=-6 +County "KS, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001890.epw site_zip_code=67951 site_time_zone_utc_offset=-6 +County "KS, Sumner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001910.epw site_zip_code=67152 site_time_zone_utc_offset=-6 +County "KS, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001930.epw site_zip_code=67701 site_time_zone_utc_offset=-6 +County "KS, Trego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001950.epw site_zip_code=67672 site_time_zone_utc_offset=-6 +County "KS, Wabaunsee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001970.epw site_zip_code=66401 site_time_zone_utc_offset=-6 +County "KS, Wallace County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001990.epw site_zip_code=67758 site_time_zone_utc_offset=-7 +County "KS, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002010.epw site_zip_code=66968 site_time_zone_utc_offset=-6 +County "KS, Wichita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002030.epw site_zip_code=67861 site_time_zone_utc_offset=-6 +County "KS, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002050.epw site_zip_code=66736 site_time_zone_utc_offset=-6 +County "KS, Woodson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002070.epw site_zip_code=66783 site_time_zone_utc_offset=-6 +County "KS, Wyandotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002090.epw site_zip_code=66102 site_time_zone_utc_offset=-6 +County "KY, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100010.epw site_zip_code=42728 site_time_zone_utc_offset=-6 +County "KY, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100030.epw site_zip_code=42164 site_time_zone_utc_offset=-6 +County "KY, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100050.epw site_zip_code=40342 site_time_zone_utc_offset=-5 +County "KY, Ballard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100070.epw site_zip_code=42053 site_time_zone_utc_offset=-6 +County "KY, Barren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100090.epw site_zip_code=42141 site_time_zone_utc_offset=-6 +County "KY, Bath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100110.epw site_zip_code=40360 site_time_zone_utc_offset=-5 +County "KY, Bell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100130.epw site_zip_code=40965 site_time_zone_utc_offset=-5 +County "KY, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100150.epw site_zip_code=41042 site_time_zone_utc_offset=-5 +County "KY, Bourbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100170.epw site_zip_code=40361 site_time_zone_utc_offset=-5 +County "KY, Boyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100190.epw site_zip_code=41102 site_time_zone_utc_offset=-5 +County "KY, Boyle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100210.epw site_zip_code=40422 site_time_zone_utc_offset=-5 +County "KY, Bracken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100230.epw site_zip_code=41004 site_time_zone_utc_offset=-5 +County "KY, Breathitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100250.epw site_zip_code=41339 site_time_zone_utc_offset=-5 +County "KY, Breckinridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100270.epw site_zip_code=40143 site_time_zone_utc_offset=-6 +County "KY, Bullitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100290.epw site_zip_code=40165 site_time_zone_utc_offset=-5 +County "KY, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100310.epw site_zip_code=42261 site_time_zone_utc_offset=-6 +County "KY, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100330.epw site_zip_code=42445 site_time_zone_utc_offset=-6 +County "KY, Calloway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100350.epw site_zip_code=42071 site_time_zone_utc_offset=-6 +County "KY, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100370.epw site_zip_code=41071 site_time_zone_utc_offset=-5 +County "KY, Carlisle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100390.epw site_zip_code=42023 site_time_zone_utc_offset=-6 +County "KY, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100410.epw site_zip_code=41008 site_time_zone_utc_offset=-5 +County "KY, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100430.epw site_zip_code=41143 site_time_zone_utc_offset=-5 +County "KY, Casey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100450.epw site_zip_code=42539 site_time_zone_utc_offset=-5 +County "KY, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100470.epw site_zip_code=42240 site_time_zone_utc_offset=-6 +County "KY, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100490.epw site_zip_code=40391 site_time_zone_utc_offset=-5 +County "KY, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100510.epw site_zip_code=40962 site_time_zone_utc_offset=-5 +County "KY, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100530.epw site_zip_code=42602 site_time_zone_utc_offset=-6 +County "KY, Crittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100550.epw site_zip_code=42064 site_time_zone_utc_offset=-6 +County "KY, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100570.epw site_zip_code=42717 site_time_zone_utc_offset=-6 +County "KY, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100590.epw site_zip_code=42301 site_time_zone_utc_offset=-6 +County "KY, Edmonson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100610.epw site_zip_code=42210 site_time_zone_utc_offset=-6 +County "KY, Elliott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100630.epw site_zip_code=41171 site_time_zone_utc_offset=-5 +County "KY, Estill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100650.epw site_zip_code=40336 site_time_zone_utc_offset=-5 +County "KY, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100670.epw site_zip_code=40509 site_time_zone_utc_offset=-5 +County "KY, Fleming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100690.epw site_zip_code=41041 site_time_zone_utc_offset=-5 +County "KY, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100710.epw site_zip_code=41653 site_time_zone_utc_offset=-5 +County "KY, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100730.epw site_zip_code=40601 site_time_zone_utc_offset=-5 +County "KY, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100750.epw site_zip_code=42041 site_time_zone_utc_offset=-6 +County "KY, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100770.epw site_zip_code=41095 site_time_zone_utc_offset=-5 +County "KY, Garrard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100790.epw site_zip_code=40444 site_time_zone_utc_offset=-5 +County "KY, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100810.epw site_zip_code=41035 site_time_zone_utc_offset=-5 +County "KY, Graves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100830.epw site_zip_code=42066 site_time_zone_utc_offset=-6 +County "KY, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100850.epw site_zip_code=42754 site_time_zone_utc_offset=-6 +County "KY, Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100870.epw site_zip_code=42743 site_time_zone_utc_offset=-6 +County "KY, Greenup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100890.epw site_zip_code=41144 site_time_zone_utc_offset=-5 +County "KY, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100910.epw site_zip_code=42348 site_time_zone_utc_offset=-6 +County "KY, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100930.epw site_zip_code=42701 site_time_zone_utc_offset=-5 +County "KY, Harlan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100950.epw site_zip_code=40831 site_time_zone_utc_offset=-5 +County "KY, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100970.epw site_zip_code=41031 site_time_zone_utc_offset=-5 +County "KY, Hart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100990.epw site_zip_code=42765 site_time_zone_utc_offset=-6 +County "KY, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101010.epw site_zip_code=42420 site_time_zone_utc_offset=-6 +County "KY, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101030.epw site_zip_code=40019 site_time_zone_utc_offset=-5 +County "KY, Hickman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101050.epw site_zip_code=42031 site_time_zone_utc_offset=-6 +County "KY, Hopkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101070.epw site_zip_code=42431 site_time_zone_utc_offset=-6 +County "KY, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101090.epw site_zip_code=40447 site_time_zone_utc_offset=-5 +County "KY, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101110.epw site_zip_code=40214 site_time_zone_utc_offset=-5 +County "KY, Jessamine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101130.epw site_zip_code=40356 site_time_zone_utc_offset=-5 +County "KY, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101150.epw site_zip_code=41240 site_time_zone_utc_offset=-5 +County "KY, Kenton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101170.epw site_zip_code=41017 site_time_zone_utc_offset=-5 +County "KY, Knott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101190.epw site_zip_code=41822 site_time_zone_utc_offset=-5 +County "KY, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101210.epw site_zip_code=40906 site_time_zone_utc_offset=-5 +County "KY, Larue County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101230.epw site_zip_code=42748 site_time_zone_utc_offset=-5 +County "KY, Laurel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101250.epw site_zip_code=40741 site_time_zone_utc_offset=-5 +County "KY, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101270.epw site_zip_code=41230 site_time_zone_utc_offset=-5 +County "KY, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101290.epw site_zip_code=41311 site_time_zone_utc_offset=-5 +County "KY, Leslie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101310.epw site_zip_code=41749 site_time_zone_utc_offset=-5 +County "KY, Letcher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101330.epw site_zip_code=41858 site_time_zone_utc_offset=-5 +County "KY, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101350.epw site_zip_code=41179 site_time_zone_utc_offset=-5 +County "KY, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101370.epw site_zip_code=40484 site_time_zone_utc_offset=-5 +County "KY, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101390.epw site_zip_code=42045 site_time_zone_utc_offset=-6 +County "KY, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101410.epw site_zip_code=42276 site_time_zone_utc_offset=-6 +County "KY, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101430.epw site_zip_code=42038 site_time_zone_utc_offset=-6 +County "KY, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101510.epw site_zip_code=40475 site_time_zone_utc_offset=-5 +County "KY, Magoffin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101530.epw site_zip_code=41465 site_time_zone_utc_offset=-5 +County "KY, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101550.epw site_zip_code=40033 site_time_zone_utc_offset=-5 +County "KY, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101570.epw site_zip_code=42025 site_time_zone_utc_offset=-6 +County "KY, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101590.epw site_zip_code=41224 site_time_zone_utc_offset=-5 +County "KY, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101610.epw site_zip_code=41056 site_time_zone_utc_offset=-5 +County "KY, McCracken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101450.epw site_zip_code=42001 site_time_zone_utc_offset=-6 +County "KY, McCreary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101470.epw site_zip_code=42653 site_time_zone_utc_offset=-5 +County "KY, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101490.epw site_zip_code=42327 site_time_zone_utc_offset=-6 +County "KY, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101630.epw site_zip_code=40108 site_time_zone_utc_offset=-5 +County "KY, Menifee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101650.epw site_zip_code=40322 site_time_zone_utc_offset=-5 +County "KY, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101670.epw site_zip_code=40330 site_time_zone_utc_offset=-5 +County "KY, Metcalfe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101690.epw site_zip_code=42129 site_time_zone_utc_offset=-6 +County "KY, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101710.epw site_zip_code=42167 site_time_zone_utc_offset=-6 +County "KY, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101730.epw site_zip_code=40353 site_time_zone_utc_offset=-5 +County "KY, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101750.epw site_zip_code=41472 site_time_zone_utc_offset=-5 +County "KY, Muhlenberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101770.epw site_zip_code=42345 site_time_zone_utc_offset=-6 +County "KY, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101790.epw site_zip_code=40004 site_time_zone_utc_offset=-5 +County "KY, Nicholas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101810.epw site_zip_code=40311 site_time_zone_utc_offset=-5 +County "KY, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101830.epw site_zip_code=42320 site_time_zone_utc_offset=-6 +County "KY, Oldham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101850.epw site_zip_code=40014 site_time_zone_utc_offset=-5 +County "KY, Owen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101870.epw site_zip_code=40359 site_time_zone_utc_offset=-5 +County "KY, Owsley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101890.epw site_zip_code=41314 site_time_zone_utc_offset=-5 +County "KY, Pendleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101910.epw site_zip_code=41040 site_time_zone_utc_offset=-5 +County "KY, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101930.epw site_zip_code=41701 site_time_zone_utc_offset=-5 +County "KY, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101950.epw site_zip_code=41501 site_time_zone_utc_offset=-5 +County "KY, Powell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101970.epw site_zip_code=40380 site_time_zone_utc_offset=-5 +County "KY, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101990.epw site_zip_code=42503 site_time_zone_utc_offset=-5 +County "KY, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102010.epw site_zip_code=41064 site_time_zone_utc_offset=-5 +County "KY, Rockcastle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102030.epw site_zip_code=40456 site_time_zone_utc_offset=-5 +County "KY, Rowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102050.epw site_zip_code=40351 site_time_zone_utc_offset=-5 +County "KY, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102070.epw site_zip_code=42642 site_time_zone_utc_offset=-6 +County "KY, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102090.epw site_zip_code=40324 site_time_zone_utc_offset=-5 +County "KY, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102110.epw site_zip_code=40065 site_time_zone_utc_offset=-5 +County "KY, Simpson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102130.epw site_zip_code=42134 site_time_zone_utc_offset=-6 +County "KY, Spencer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102150.epw site_zip_code=40071 site_time_zone_utc_offset=-5 +County "KY, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102170.epw site_zip_code=42718 site_time_zone_utc_offset=-5 +County "KY, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102190.epw site_zip_code=42220 site_time_zone_utc_offset=-6 +County "KY, Trigg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102210.epw site_zip_code=42211 site_time_zone_utc_offset=-6 +County "KY, Trimble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102230.epw site_zip_code=40006 site_time_zone_utc_offset=-5 +County "KY, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102250.epw site_zip_code=42437 site_time_zone_utc_offset=-6 +County "KY, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102270.epw site_zip_code=42101 site_time_zone_utc_offset=-6 +County "KY, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102290.epw site_zip_code=40069 site_time_zone_utc_offset=-5 +County "KY, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102310.epw site_zip_code=42633 site_time_zone_utc_offset=-5 +County "KY, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102330.epw site_zip_code=42450 site_time_zone_utc_offset=-6 +County "KY, Whitley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102350.epw site_zip_code=40769 site_time_zone_utc_offset=-5 +County "KY, Wolfe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102370.epw site_zip_code=41301 site_time_zone_utc_offset=-5 +County "KY, Woodford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102390.epw site_zip_code=40383 site_time_zone_utc_offset=-5 +County "LA, Acadia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200010.epw site_zip_code=70526 site_time_zone_utc_offset=-6 +County "LA, Allen Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200030.epw site_zip_code=71463 site_time_zone_utc_offset=-6 +County "LA, Ascension Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200050.epw site_zip_code=70737 site_time_zone_utc_offset=-6 +County "LA, Assumption Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200070.epw site_zip_code=70339 site_time_zone_utc_offset=-6 +County "LA, Avoyelles Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200090.epw site_zip_code=71351 site_time_zone_utc_offset=-6 +County "LA, Beauregard Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200110.epw site_zip_code=70634 site_time_zone_utc_offset=-6 +County "LA, Bienville Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200130.epw site_zip_code=71001 site_time_zone_utc_offset=-6 +County "LA, Bossier Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200150.epw site_zip_code=71111 site_time_zone_utc_offset=-6 +County "LA, Caddo Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200170.epw site_zip_code=71106 site_time_zone_utc_offset=-6 +County "LA, Calcasieu Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200190.epw site_zip_code=70605 site_time_zone_utc_offset=-6 +County "LA, Caldwell Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200210.epw site_zip_code=71418 site_time_zone_utc_offset=-6 +County "LA, Cameron Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200230.epw site_zip_code=70607 site_time_zone_utc_offset=-6 +County "LA, Catahoula Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200250.epw site_zip_code=71343 site_time_zone_utc_offset=-6 +County "LA, Claiborne Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200270.epw site_zip_code=71040 site_time_zone_utc_offset=-6 +County "LA, Concordia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200290.epw site_zip_code=71334 site_time_zone_utc_offset=-6 +County "LA, De Soto Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200310.epw site_zip_code=71052 site_time_zone_utc_offset=-6 +County "LA, East Baton Rouge Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200330.epw site_zip_code=70816 site_time_zone_utc_offset=-6 +County "LA, East Carroll Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200350.epw site_zip_code=71254 site_time_zone_utc_offset=-6 +County "LA, East Feliciana Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200370.epw site_zip_code=70722 site_time_zone_utc_offset=-6 +County "LA, Evangeline Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200390.epw site_zip_code=70586 site_time_zone_utc_offset=-6 +County "LA, Franklin Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200410.epw site_zip_code=71295 site_time_zone_utc_offset=-6 +County "LA, Grant Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200430.epw site_zip_code=71467 site_time_zone_utc_offset=-6 +County "LA, Iberia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200450.epw site_zip_code=70560 site_time_zone_utc_offset=-6 +County "LA, Iberville Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200470.epw site_zip_code=70764 site_time_zone_utc_offset=-6 +County "LA, Jackson Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200490.epw site_zip_code=71251 site_time_zone_utc_offset=-6 +County "LA, Jefferson Davis Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200530.epw site_zip_code=70546 site_time_zone_utc_offset=-6 +County "LA, Jefferson Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200510.epw site_zip_code=70072 site_time_zone_utc_offset=-6 +County "LA, La Salle Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200590.epw site_zip_code=71342 site_time_zone_utc_offset=-6 +County "LA, Lafayette Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200550.epw site_zip_code=70506 site_time_zone_utc_offset=-6 +County "LA, Lafourche Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200570.epw site_zip_code=70301 site_time_zone_utc_offset=-6 +County "LA, Lincoln Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200610.epw site_zip_code=71270 site_time_zone_utc_offset=-6 +County "LA, Livingston Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200630.epw site_zip_code=70726 site_time_zone_utc_offset=-6 +County "LA, Madison Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200650.epw site_zip_code=71282 site_time_zone_utc_offset=-6 +County "LA, Morehouse Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200670.epw site_zip_code=71220 site_time_zone_utc_offset=-6 +County "LA, Natchitoches Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200690.epw site_zip_code=71457 site_time_zone_utc_offset=-6 +County "LA, Orleans Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200710.epw site_zip_code=70119 site_time_zone_utc_offset=-6 +County "LA, Ouachita Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200730.epw site_zip_code=71203 site_time_zone_utc_offset=-6 +County "LA, Plaquemines Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200750.epw site_zip_code=70037 site_time_zone_utc_offset=-6 +County "LA, Pointe Coupee Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200770.epw site_zip_code=70760 site_time_zone_utc_offset=-6 +County "LA, Rapides Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200790.epw site_zip_code=71360 site_time_zone_utc_offset=-6 +County "LA, Red River Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200810.epw site_zip_code=71019 site_time_zone_utc_offset=-6 +County "LA, Richland Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200830.epw site_zip_code=71269 site_time_zone_utc_offset=-6 +County "LA, Sabine Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200850.epw site_zip_code=71449 site_time_zone_utc_offset=-6 +County "LA, St. Bernard Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200870.epw site_zip_code=70043 site_time_zone_utc_offset=-6 +County "LA, St. Charles Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200890.epw site_zip_code=70070 site_time_zone_utc_offset=-6 +County "LA, St. Helena Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200910.epw site_zip_code=70441 site_time_zone_utc_offset=-6 +County "LA, St. James Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200930.epw site_zip_code=70090 site_time_zone_utc_offset=-6 +County "LA, St. John the Baptist Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200950.epw site_zip_code=70068 site_time_zone_utc_offset=-6 +County "LA, St. Landry Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200970.epw site_zip_code=70570 site_time_zone_utc_offset=-6 +County "LA, St. Martin Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200990.epw site_zip_code=70517 site_time_zone_utc_offset=-6 +County "LA, St. Mary Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201010.epw site_zip_code=70380 site_time_zone_utc_offset=-6 +County "LA, St. Tammany Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201030.epw site_zip_code=70433 site_time_zone_utc_offset=-6 +County "LA, Tangipahoa Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201050.epw site_zip_code=70454 site_time_zone_utc_offset=-6 +County "LA, Tensas Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201070.epw site_zip_code=71366 site_time_zone_utc_offset=-6 +County "LA, Terrebonne Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201090.epw site_zip_code=70360 site_time_zone_utc_offset=-6 +County "LA, Union Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201110.epw site_zip_code=71241 site_time_zone_utc_offset=-6 +County "LA, Vermilion Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201130.epw site_zip_code=70510 site_time_zone_utc_offset=-6 +County "LA, Vernon Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201150.epw site_zip_code=71446 site_time_zone_utc_offset=-6 +County "LA, Washington Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201170.epw site_zip_code=70427 site_time_zone_utc_offset=-6 +County "LA, Webster Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201190.epw site_zip_code=71055 site_time_zone_utc_offset=-6 +County "LA, West Baton Rouge Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201210.epw site_zip_code=70767 site_time_zone_utc_offset=-6 +County "LA, West Carroll Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201230.epw site_zip_code=71263 site_time_zone_utc_offset=-6 +County "LA, West Feliciana Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201250.epw site_zip_code=70775 site_time_zone_utc_offset=-6 +County "LA, Winn Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201270.epw site_zip_code=71483 site_time_zone_utc_offset=-6 +County "MA, Barnstable County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500010.epw site_zip_code=02536 site_time_zone_utc_offset=-5 +County "MA, Berkshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500030.epw site_zip_code=01201 site_time_zone_utc_offset=-5 +County "MA, Bristol County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500050.epw site_zip_code=02780 site_time_zone_utc_offset=-5 +County "MA, Dukes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500070.epw site_zip_code=02568 site_time_zone_utc_offset=-5 +County "MA, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500090.epw site_zip_code=01960 site_time_zone_utc_offset=-5 +County "MA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500110.epw site_zip_code=01301 site_time_zone_utc_offset=-5 +County "MA, Hampden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500130.epw site_zip_code=01085 site_time_zone_utc_offset=-5 +County "MA, Hampshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500150.epw site_zip_code=01002 site_time_zone_utc_offset=-5 +County "MA, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500170.epw site_zip_code=02148 site_time_zone_utc_offset=-5 +County "MA, Nantucket County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500190.epw site_zip_code=02554 site_time_zone_utc_offset=-5 +County "MA, Norfolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500210.epw site_zip_code=02169 site_time_zone_utc_offset=-5 +County "MA, Plymouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500230.epw site_zip_code=02360 site_time_zone_utc_offset=-5 +County "MA, Suffolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500250.epw site_zip_code=02151 site_time_zone_utc_offset=-5 +County "MA, Worcester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500270.epw site_zip_code=01453 site_time_zone_utc_offset=-5 +County "MD, Allegany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400010.epw site_zip_code=21502 site_time_zone_utc_offset=-5 +County "MD, Anne Arundel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400030.epw site_zip_code=21122 site_time_zone_utc_offset=-5 +County "MD, Baltimore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400050.epw site_zip_code=21117 site_time_zone_utc_offset=-5 +County "MD, Baltimore city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2405100.epw site_zip_code=21215 site_time_zone_utc_offset=-5 +County "MD, Calvert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400090.epw site_zip_code=20657 site_time_zone_utc_offset=-5 +County "MD, Caroline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400110.epw site_zip_code=21629 site_time_zone_utc_offset=-5 +County "MD, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400130.epw site_zip_code=21157 site_time_zone_utc_offset=-5 +County "MD, Cecil County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400150.epw site_zip_code=21921 site_time_zone_utc_offset=-5 +County "MD, Charles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400170.epw site_zip_code=20603 site_time_zone_utc_offset=-5 +County "MD, Dorchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400190.epw site_zip_code=21613 site_time_zone_utc_offset=-5 +County "MD, Frederick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400210.epw site_zip_code=21702 site_time_zone_utc_offset=-5 +County "MD, Garrett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400230.epw site_zip_code=21550 site_time_zone_utc_offset=-5 +County "MD, Harford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400250.epw site_zip_code=21014 site_time_zone_utc_offset=-5 +County "MD, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400270.epw site_zip_code=21044 site_time_zone_utc_offset=-5 +County "MD, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400290.epw site_zip_code=21620 site_time_zone_utc_offset=-5 +County "MD, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400310.epw site_zip_code=20906 site_time_zone_utc_offset=-5 +County "MD, Prince George's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400330.epw site_zip_code=20774 site_time_zone_utc_offset=-5 +County "MD, Queen Anne's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400350.epw site_zip_code=21666 site_time_zone_utc_offset=-5 +County "MD, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400390.epw site_zip_code=21853 site_time_zone_utc_offset=-5 +County "MD, St. Mary's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400370.epw site_zip_code=20653 site_time_zone_utc_offset=-5 +County "MD, Talbot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400410.epw site_zip_code=21601 site_time_zone_utc_offset=-5 +County "MD, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400430.epw site_zip_code=21740 site_time_zone_utc_offset=-5 +County "MD, Wicomico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400450.epw site_zip_code=21804 site_time_zone_utc_offset=-5 +County "MD, Worcester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400470.epw site_zip_code=21842 site_time_zone_utc_offset=-5 +County "ME, Androscoggin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300010.epw site_zip_code=04240 site_time_zone_utc_offset=-5 +County "ME, Aroostook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300030.epw site_zip_code=04769 site_time_zone_utc_offset=-5 +County "ME, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300050.epw site_zip_code=04103 site_time_zone_utc_offset=-5 +County "ME, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300070.epw site_zip_code=04938 site_time_zone_utc_offset=-5 +County "ME, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300090.epw site_zip_code=04605 site_time_zone_utc_offset=-5 +County "ME, Kennebec County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300110.epw site_zip_code=04901 site_time_zone_utc_offset=-5 +County "ME, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300130.epw site_zip_code=04841 site_time_zone_utc_offset=-5 +County "ME, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300150.epw site_zip_code=04572 site_time_zone_utc_offset=-5 +County "ME, Oxford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300170.epw site_zip_code=04276 site_time_zone_utc_offset=-5 +County "ME, Penobscot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300190.epw site_zip_code=04401 site_time_zone_utc_offset=-5 +County "ME, Piscataquis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300210.epw site_zip_code=04426 site_time_zone_utc_offset=-5 +County "ME, Sagadahoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300230.epw site_zip_code=04530 site_time_zone_utc_offset=-5 +County "ME, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300250.epw site_zip_code=04976 site_time_zone_utc_offset=-5 +County "ME, Waldo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300270.epw site_zip_code=04915 site_time_zone_utc_offset=-5 +County "ME, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300290.epw site_zip_code=04654 site_time_zone_utc_offset=-5 +County "ME, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300310.epw site_zip_code=04005 site_time_zone_utc_offset=-5 +County "MI, Alcona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600010.epw site_zip_code=48740 site_time_zone_utc_offset=-5 +County "MI, Alger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600030.epw site_zip_code=49862 site_time_zone_utc_offset=-5 +County "MI, Allegan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600050.epw site_zip_code=49010 site_time_zone_utc_offset=-5 +County "MI, Alpena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600070.epw site_zip_code=49707 site_time_zone_utc_offset=-5 +County "MI, Antrim County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600090.epw site_zip_code=49615 site_time_zone_utc_offset=-5 +County "MI, Arenac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600110.epw site_zip_code=48658 site_time_zone_utc_offset=-5 +County "MI, Baraga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600130.epw site_zip_code=49946 site_time_zone_utc_offset=-5 +County "MI, Barry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600150.epw site_zip_code=49058 site_time_zone_utc_offset=-5 +County "MI, Bay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600170.epw site_zip_code=48706 site_time_zone_utc_offset=-5 +County "MI, Benzie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600190.epw site_zip_code=49635 site_time_zone_utc_offset=-5 +County "MI, Berrien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600210.epw site_zip_code=49022 site_time_zone_utc_offset=-5 +County "MI, Branch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600230.epw site_zip_code=49036 site_time_zone_utc_offset=-5 +County "MI, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600250.epw site_zip_code=49015 site_time_zone_utc_offset=-5 +County "MI, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600270.epw site_zip_code=49047 site_time_zone_utc_offset=-5 +County "MI, Charlevoix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600290.epw site_zip_code=49720 site_time_zone_utc_offset=-5 +County "MI, Cheboygan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600310.epw site_zip_code=49721 site_time_zone_utc_offset=-5 +County "MI, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600330.epw site_zip_code=49783 site_time_zone_utc_offset=-5 +County "MI, Clare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600350.epw site_zip_code=48625 site_time_zone_utc_offset=-5 +County "MI, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600370.epw site_zip_code=48820 site_time_zone_utc_offset=-5 +County "MI, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600390.epw site_zip_code=49738 site_time_zone_utc_offset=-5 +County "MI, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600410.epw site_zip_code=49829 site_time_zone_utc_offset=-5 +County "MI, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600430.epw site_zip_code=49801 site_time_zone_utc_offset=-6 +County "MI, Eaton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600450.epw site_zip_code=48917 site_time_zone_utc_offset=-5 +County "MI, Emmet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600470.epw site_zip_code=49770 site_time_zone_utc_offset=-5 +County "MI, Genesee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600490.epw site_zip_code=48439 site_time_zone_utc_offset=-5 +County "MI, Gladwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600510.epw site_zip_code=48624 site_time_zone_utc_offset=-5 +County "MI, Gogebic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600530.epw site_zip_code=49938 site_time_zone_utc_offset=-6 +County "MI, Grand Traverse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600550.epw site_zip_code=49686 site_time_zone_utc_offset=-5 +County "MI, Gratiot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600570.epw site_zip_code=48801 site_time_zone_utc_offset=-5 +County "MI, Hillsdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600590.epw site_zip_code=49242 site_time_zone_utc_offset=-5 +County "MI, Houghton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600610.epw site_zip_code=49931 site_time_zone_utc_offset=-5 +County "MI, Huron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600630.epw site_zip_code=48413 site_time_zone_utc_offset=-5 +County "MI, Ingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600650.epw site_zip_code=48823 site_time_zone_utc_offset=-5 +County "MI, Ionia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600670.epw site_zip_code=48846 site_time_zone_utc_offset=-5 +County "MI, Iosco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600690.epw site_zip_code=48750 site_time_zone_utc_offset=-5 +County "MI, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600710.epw site_zip_code=49935 site_time_zone_utc_offset=-6 +County "MI, Isabella County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600730.epw site_zip_code=48858 site_time_zone_utc_offset=-5 +County "MI, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600750.epw site_zip_code=49201 site_time_zone_utc_offset=-5 +County "MI, Kalamazoo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600770.epw site_zip_code=49009 site_time_zone_utc_offset=-5 +County "MI, Kalkaska County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600790.epw site_zip_code=49646 site_time_zone_utc_offset=-5 +County "MI, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600810.epw site_zip_code=49503 site_time_zone_utc_offset=-5 +County "MI, Keweenaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600830.epw site_zip_code=49950 site_time_zone_utc_offset=-5 +County "MI, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600850.epw site_zip_code=49304 site_time_zone_utc_offset=-5 +County "MI, Lapeer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600870.epw site_zip_code=48446 site_time_zone_utc_offset=-5 +County "MI, Leelanau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600890.epw site_zip_code=49684 site_time_zone_utc_offset=-5 +County "MI, Lenawee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600910.epw site_zip_code=49221 site_time_zone_utc_offset=-5 +County "MI, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600930.epw site_zip_code=48843 site_time_zone_utc_offset=-5 +County "MI, Luce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600950.epw site_zip_code=49868 site_time_zone_utc_offset=-5 +County "MI, Mackinac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600970.epw site_zip_code=49781 site_time_zone_utc_offset=-5 +County "MI, Macomb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600990.epw site_zip_code=48038 site_time_zone_utc_offset=-5 +County "MI, Manistee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601010.epw site_zip_code=49660 site_time_zone_utc_offset=-5 +County "MI, Marquette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601030.epw site_zip_code=49855 site_time_zone_utc_offset=-5 +County "MI, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601050.epw site_zip_code=49431 site_time_zone_utc_offset=-5 +County "MI, Mecosta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601070.epw site_zip_code=49307 site_time_zone_utc_offset=-5 +County "MI, Menominee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601090.epw site_zip_code=49858 site_time_zone_utc_offset=-6 +County "MI, Midland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601110.epw site_zip_code=48642 site_time_zone_utc_offset=-5 +County "MI, Missaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601130.epw site_zip_code=49651 site_time_zone_utc_offset=-5 +County "MI, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601150.epw site_zip_code=48162 site_time_zone_utc_offset=-5 +County "MI, Montcalm County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601170.epw site_zip_code=48838 site_time_zone_utc_offset=-5 +County "MI, Montmorency County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601190.epw site_zip_code=49709 site_time_zone_utc_offset=-5 +County "MI, Muskegon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601210.epw site_zip_code=49442 site_time_zone_utc_offset=-5 +County "MI, Newaygo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601230.epw site_zip_code=49337 site_time_zone_utc_offset=-5 +County "MI, Oakland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601250.epw site_zip_code=48307 site_time_zone_utc_offset=-5 +County "MI, Oceana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601270.epw site_zip_code=49420 site_time_zone_utc_offset=-5 +County "MI, Ogemaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601290.epw site_zip_code=48661 site_time_zone_utc_offset=-5 +County "MI, Ontonagon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601310.epw site_zip_code=49953 site_time_zone_utc_offset=-5 +County "MI, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601330.epw site_zip_code=49631 site_time_zone_utc_offset=-5 +County "MI, Oscoda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601350.epw site_zip_code=48647 site_time_zone_utc_offset=-5 +County "MI, Otsego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601370.epw site_zip_code=49735 site_time_zone_utc_offset=-5 +County "MI, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601390.epw site_zip_code=49424 site_time_zone_utc_offset=-5 +County "MI, Presque Isle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601410.epw site_zip_code=49779 site_time_zone_utc_offset=-5 +County "MI, Roscommon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601430.epw site_zip_code=48629 site_time_zone_utc_offset=-5 +County "MI, Saginaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601450.epw site_zip_code=48601 site_time_zone_utc_offset=-5 +County "MI, Sanilac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601510.epw site_zip_code=48450 site_time_zone_utc_offset=-5 +County "MI, Schoolcraft County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601530.epw site_zip_code=49854 site_time_zone_utc_offset=-5 +County "MI, Shiawassee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601550.epw site_zip_code=48867 site_time_zone_utc_offset=-5 +County "MI, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601470.epw site_zip_code=48060 site_time_zone_utc_offset=-5 +County "MI, St. Joseph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601490.epw site_zip_code=49091 site_time_zone_utc_offset=-5 +County "MI, Tuscola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601570.epw site_zip_code=48723 site_time_zone_utc_offset=-5 +County "MI, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601590.epw site_zip_code=49090 site_time_zone_utc_offset=-5 +County "MI, Washtenaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601610.epw site_zip_code=48197 site_time_zone_utc_offset=-5 +County "MI, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601630.epw site_zip_code=48180 site_time_zone_utc_offset=-5 +County "MI, Wexford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601650.epw site_zip_code=49601 site_time_zone_utc_offset=-5 +County "MN, Aitkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700010.epw site_zip_code=56431 site_time_zone_utc_offset=-6 +County "MN, Anoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700030.epw site_zip_code=55303 site_time_zone_utc_offset=-6 +County "MN, Becker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700050.epw site_zip_code=56501 site_time_zone_utc_offset=-6 +County "MN, Beltrami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700070.epw site_zip_code=56601 site_time_zone_utc_offset=-6 +County "MN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700090.epw site_zip_code=56379 site_time_zone_utc_offset=-6 +County "MN, Big Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700110.epw site_zip_code=56278 site_time_zone_utc_offset=-6 +County "MN, Blue Earth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700130.epw site_zip_code=56001 site_time_zone_utc_offset=-6 +County "MN, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700150.epw site_zip_code=56073 site_time_zone_utc_offset=-6 +County "MN, Carlton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700170.epw site_zip_code=55720 site_time_zone_utc_offset=-6 +County "MN, Carver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700190.epw site_zip_code=55318 site_time_zone_utc_offset=-6 +County "MN, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700210.epw site_zip_code=56474 site_time_zone_utc_offset=-6 +County "MN, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700230.epw site_zip_code=56265 site_time_zone_utc_offset=-6 +County "MN, Chisago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700250.epw site_zip_code=55056 site_time_zone_utc_offset=-6 +County "MN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700270.epw site_zip_code=56560 site_time_zone_utc_offset=-6 +County "MN, Clearwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700290.epw site_zip_code=56621 site_time_zone_utc_offset=-6 +County "MN, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700310.epw site_zip_code=55604 site_time_zone_utc_offset=-6 +County "MN, Cottonwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700330.epw site_zip_code=56101 site_time_zone_utc_offset=-6 +County "MN, Crow Wing County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700350.epw site_zip_code=56401 site_time_zone_utc_offset=-6 +County "MN, Dakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700370.epw site_zip_code=55124 site_time_zone_utc_offset=-6 +County "MN, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700390.epw site_zip_code=55944 site_time_zone_utc_offset=-6 +County "MN, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700410.epw site_zip_code=56308 site_time_zone_utc_offset=-6 +County "MN, Faribault County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700430.epw site_zip_code=56013 site_time_zone_utc_offset=-6 +County "MN, Fillmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700450.epw site_zip_code=55975 site_time_zone_utc_offset=-6 +County "MN, Freeborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700470.epw site_zip_code=56007 site_time_zone_utc_offset=-6 +County "MN, Goodhue County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700490.epw site_zip_code=55066 site_time_zone_utc_offset=-6 +County "MN, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700510.epw site_zip_code=56531 site_time_zone_utc_offset=-6 +County "MN, Hennepin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700530.epw site_zip_code=55408 site_time_zone_utc_offset=-6 +County "MN, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700550.epw site_zip_code=55947 site_time_zone_utc_offset=-6 +County "MN, Hubbard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700570.epw site_zip_code=56470 site_time_zone_utc_offset=-6 +County "MN, Isanti County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700590.epw site_zip_code=55008 site_time_zone_utc_offset=-6 +County "MN, Itasca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700610.epw site_zip_code=55744 site_time_zone_utc_offset=-6 +County "MN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700630.epw site_zip_code=56143 site_time_zone_utc_offset=-6 +County "MN, Kanabec County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700650.epw site_zip_code=55051 site_time_zone_utc_offset=-6 +County "MN, Kandiyohi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700670.epw site_zip_code=56201 site_time_zone_utc_offset=-6 +County "MN, Kittson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700690.epw site_zip_code=56728 site_time_zone_utc_offset=-6 +County "MN, Koochiching County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700710.epw site_zip_code=56649 site_time_zone_utc_offset=-6 +County "MN, Lac qui Parle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700730.epw site_zip_code=56256 site_time_zone_utc_offset=-6 +County "MN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700750.epw site_zip_code=55616 site_time_zone_utc_offset=-6 +County "MN, Lake of the Woods County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700770.epw site_zip_code=56623 site_time_zone_utc_offset=-6 +County "MN, Le Sueur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700790.epw site_zip_code=56058 site_time_zone_utc_offset=-6 +County "MN, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700810.epw site_zip_code=56178 site_time_zone_utc_offset=-6 +County "MN, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700830.epw site_zip_code=56258 site_time_zone_utc_offset=-6 +County "MN, Mahnomen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700870.epw site_zip_code=56557 site_time_zone_utc_offset=-6 +County "MN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700890.epw site_zip_code=56762 site_time_zone_utc_offset=-6 +County "MN, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700910.epw site_zip_code=56031 site_time_zone_utc_offset=-6 +County "MN, McLeod County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700850.epw site_zip_code=55350 site_time_zone_utc_offset=-6 +County "MN, Meeker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700930.epw site_zip_code=55355 site_time_zone_utc_offset=-6 +County "MN, Mille Lacs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700950.epw site_zip_code=56353 site_time_zone_utc_offset=-6 +County "MN, Morrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700970.epw site_zip_code=56345 site_time_zone_utc_offset=-6 +County "MN, Mower County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700990.epw site_zip_code=55912 site_time_zone_utc_offset=-6 +County "MN, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701010.epw site_zip_code=56172 site_time_zone_utc_offset=-6 +County "MN, Nicollet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701030.epw site_zip_code=56003 site_time_zone_utc_offset=-6 +County "MN, Nobles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701050.epw site_zip_code=56187 site_time_zone_utc_offset=-6 +County "MN, Norman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701070.epw site_zip_code=56510 site_time_zone_utc_offset=-6 +County "MN, Olmsted County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701090.epw site_zip_code=55901 site_time_zone_utc_offset=-6 +County "MN, Otter Tail County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701110.epw site_zip_code=56537 site_time_zone_utc_offset=-6 +County "MN, Pennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701130.epw site_zip_code=56701 site_time_zone_utc_offset=-6 +County "MN, Pine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701150.epw site_zip_code=55063 site_time_zone_utc_offset=-6 +County "MN, Pipestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701170.epw site_zip_code=56164 site_time_zone_utc_offset=-6 +County "MN, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701190.epw site_zip_code=56721 site_time_zone_utc_offset=-6 +County "MN, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701210.epw site_zip_code=56334 site_time_zone_utc_offset=-6 +County "MN, Ramsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701230.epw site_zip_code=55106 site_time_zone_utc_offset=-6 +County "MN, Red Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701250.epw site_zip_code=56750 site_time_zone_utc_offset=-6 +County "MN, Redwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701270.epw site_zip_code=56283 site_time_zone_utc_offset=-6 +County "MN, Renville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701290.epw site_zip_code=56277 site_time_zone_utc_offset=-6 +County "MN, Rice County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701310.epw site_zip_code=55021 site_time_zone_utc_offset=-6 +County "MN, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701330.epw site_zip_code=56156 site_time_zone_utc_offset=-6 +County "MN, Roseau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701350.epw site_zip_code=56751 site_time_zone_utc_offset=-6 +County "MN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701390.epw site_zip_code=55379 site_time_zone_utc_offset=-6 +County "MN, Sherburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701410.epw site_zip_code=55330 site_time_zone_utc_offset=-6 +County "MN, Sibley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701430.epw site_zip_code=55334 site_time_zone_utc_offset=-6 +County "MN, St. Louis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701370.epw site_zip_code=55811 site_time_zone_utc_offset=-6 +County "MN, Stearns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701450.epw site_zip_code=56301 site_time_zone_utc_offset=-6 +County "MN, Steele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701470.epw site_zip_code=55060 site_time_zone_utc_offset=-6 +County "MN, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701490.epw site_zip_code=56267 site_time_zone_utc_offset=-6 +County "MN, Swift County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701510.epw site_zip_code=56215 site_time_zone_utc_offset=-6 +County "MN, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701530.epw site_zip_code=56347 site_time_zone_utc_offset=-6 +County "MN, Traverse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701550.epw site_zip_code=56296 site_time_zone_utc_offset=-6 +County "MN, Wabasha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701570.epw site_zip_code=55041 site_time_zone_utc_offset=-6 +County "MN, Wadena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701590.epw site_zip_code=56482 site_time_zone_utc_offset=-6 +County "MN, Waseca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701610.epw site_zip_code=56093 site_time_zone_utc_offset=-6 +County "MN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701630.epw site_zip_code=55125 site_time_zone_utc_offset=-6 +County "MN, Watonwan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701650.epw site_zip_code=56081 site_time_zone_utc_offset=-6 +County "MN, Wilkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701670.epw site_zip_code=56520 site_time_zone_utc_offset=-6 +County "MN, Winona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701690.epw site_zip_code=55987 site_time_zone_utc_offset=-6 +County "MN, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701710.epw site_zip_code=55313 site_time_zone_utc_offset=-6 +County "MN, Yellow Medicine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701730.epw site_zip_code=56220 site_time_zone_utc_offset=-6 +County "MO, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900010.epw site_zip_code=63501 site_time_zone_utc_offset=-6 +County "MO, Andrew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900030.epw site_zip_code=64485 site_time_zone_utc_offset=-6 +County "MO, Atchison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900050.epw site_zip_code=64491 site_time_zone_utc_offset=-6 +County "MO, Audrain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900070.epw site_zip_code=65265 site_time_zone_utc_offset=-6 +County "MO, Barry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900090.epw site_zip_code=65625 site_time_zone_utc_offset=-6 +County "MO, Barton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900110.epw site_zip_code=64759 site_time_zone_utc_offset=-6 +County "MO, Bates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900130.epw site_zip_code=64730 site_time_zone_utc_offset=-6 +County "MO, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900150.epw site_zip_code=65355 site_time_zone_utc_offset=-6 +County "MO, Bollinger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900170.epw site_zip_code=63764 site_time_zone_utc_offset=-6 +County "MO, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900190.epw site_zip_code=65203 site_time_zone_utc_offset=-6 +County "MO, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900210.epw site_zip_code=64506 site_time_zone_utc_offset=-6 +County "MO, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900230.epw site_zip_code=63901 site_time_zone_utc_offset=-6 +County "MO, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900250.epw site_zip_code=64644 site_time_zone_utc_offset=-6 +County "MO, Callaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900270.epw site_zip_code=65251 site_time_zone_utc_offset=-6 +County "MO, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900290.epw site_zip_code=65020 site_time_zone_utc_offset=-6 +County "MO, Cape Girardeau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900310.epw site_zip_code=63701 site_time_zone_utc_offset=-6 +County "MO, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900330.epw site_zip_code=64633 site_time_zone_utc_offset=-6 +County "MO, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900350.epw site_zip_code=63965 site_time_zone_utc_offset=-6 +County "MO, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900370.epw site_zip_code=64012 site_time_zone_utc_offset=-6 +County "MO, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900390.epw site_zip_code=64744 site_time_zone_utc_offset=-6 +County "MO, Chariton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900410.epw site_zip_code=65281 site_time_zone_utc_offset=-6 +County "MO, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900430.epw site_zip_code=65714 site_time_zone_utc_offset=-6 +County "MO, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900450.epw site_zip_code=63445 site_time_zone_utc_offset=-6 +County "MO, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900470.epw site_zip_code=64118 site_time_zone_utc_offset=-6 +County "MO, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900490.epw site_zip_code=64429 site_time_zone_utc_offset=-6 +County "MO, Cole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900510.epw site_zip_code=65109 site_time_zone_utc_offset=-6 +County "MO, Cooper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900530.epw site_zip_code=65233 site_time_zone_utc_offset=-6 +County "MO, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900550.epw site_zip_code=65453 site_time_zone_utc_offset=-6 +County "MO, Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900570.epw site_zip_code=65661 site_time_zone_utc_offset=-6 +County "MO, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900590.epw site_zip_code=65622 site_time_zone_utc_offset=-6 +County "MO, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900610.epw site_zip_code=64640 site_time_zone_utc_offset=-6 +County "MO, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900630.epw site_zip_code=64429 site_time_zone_utc_offset=-6 +County "MO, Dent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900650.epw site_zip_code=65560 site_time_zone_utc_offset=-6 +County "MO, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900670.epw site_zip_code=65608 site_time_zone_utc_offset=-6 +County "MO, Dunklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900690.epw site_zip_code=63857 site_time_zone_utc_offset=-6 +County "MO, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900710.epw site_zip_code=63090 site_time_zone_utc_offset=-6 +County "MO, Gasconade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900730.epw site_zip_code=65066 site_time_zone_utc_offset=-6 +County "MO, Gentry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900750.epw site_zip_code=64402 site_time_zone_utc_offset=-6 +County "MO, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900770.epw site_zip_code=65807 site_time_zone_utc_offset=-6 +County "MO, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900790.epw site_zip_code=64683 site_time_zone_utc_offset=-6 +County "MO, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900810.epw site_zip_code=64424 site_time_zone_utc_offset=-6 +County "MO, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900830.epw site_zip_code=64735 site_time_zone_utc_offset=-6 +County "MO, Hickory County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900850.epw site_zip_code=65779 site_time_zone_utc_offset=-6 +County "MO, Holt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900870.epw site_zip_code=64470 site_time_zone_utc_offset=-6 +County "MO, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900890.epw site_zip_code=65248 site_time_zone_utc_offset=-6 +County "MO, Howell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900910.epw site_zip_code=65775 site_time_zone_utc_offset=-6 +County "MO, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900930.epw site_zip_code=63650 site_time_zone_utc_offset=-6 +County "MO, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900950.epw site_zip_code=64055 site_time_zone_utc_offset=-6 +County "MO, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900970.epw site_zip_code=64801 site_time_zone_utc_offset=-6 +County "MO, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900990.epw site_zip_code=63010 site_time_zone_utc_offset=-6 +County "MO, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901010.epw site_zip_code=64093 site_time_zone_utc_offset=-6 +County "MO, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901030.epw site_zip_code=63537 site_time_zone_utc_offset=-6 +County "MO, Laclede County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901050.epw site_zip_code=65536 site_time_zone_utc_offset=-6 +County "MO, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901070.epw site_zip_code=64076 site_time_zone_utc_offset=-6 +County "MO, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901090.epw site_zip_code=65605 site_time_zone_utc_offset=-6 +County "MO, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901110.epw site_zip_code=63435 site_time_zone_utc_offset=-6 +County "MO, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901130.epw site_zip_code=63379 site_time_zone_utc_offset=-6 +County "MO, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901150.epw site_zip_code=64628 site_time_zone_utc_offset=-6 +County "MO, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901170.epw site_zip_code=64601 site_time_zone_utc_offset=-6 +County "MO, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901210.epw site_zip_code=63552 site_time_zone_utc_offset=-6 +County "MO, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901230.epw site_zip_code=63645 site_time_zone_utc_offset=-6 +County "MO, Maries County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901250.epw site_zip_code=65582 site_time_zone_utc_offset=-6 +County "MO, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901270.epw site_zip_code=63401 site_time_zone_utc_offset=-6 +County "MO, McDonald County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901190.epw site_zip_code=64831 site_time_zone_utc_offset=-6 +County "MO, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901290.epw site_zip_code=64673 site_time_zone_utc_offset=-6 +County "MO, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901310.epw site_zip_code=65026 site_time_zone_utc_offset=-6 +County "MO, Mississippi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901330.epw site_zip_code=63845 site_time_zone_utc_offset=-6 +County "MO, Moniteau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901350.epw site_zip_code=65018 site_time_zone_utc_offset=-6 +County "MO, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901370.epw site_zip_code=65275 site_time_zone_utc_offset=-6 +County "MO, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901390.epw site_zip_code=63361 site_time_zone_utc_offset=-6 +County "MO, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901410.epw site_zip_code=65037 site_time_zone_utc_offset=-6 +County "MO, New Madrid County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901430.epw site_zip_code=63873 site_time_zone_utc_offset=-6 +County "MO, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901450.epw site_zip_code=64850 site_time_zone_utc_offset=-6 +County "MO, Nodaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901470.epw site_zip_code=64468 site_time_zone_utc_offset=-6 +County "MO, Oregon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901490.epw site_zip_code=65606 site_time_zone_utc_offset=-6 +County "MO, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901510.epw site_zip_code=65051 site_time_zone_utc_offset=-6 +County "MO, Ozark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901530.epw site_zip_code=65655 site_time_zone_utc_offset=-6 +County "MO, Pemiscot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901550.epw site_zip_code=63830 site_time_zone_utc_offset=-6 +County "MO, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901570.epw site_zip_code=63775 site_time_zone_utc_offset=-6 +County "MO, Pettis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901590.epw site_zip_code=65301 site_time_zone_utc_offset=-6 +County "MO, Phelps County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901610.epw site_zip_code=65401 site_time_zone_utc_offset=-6 +County "MO, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901630.epw site_zip_code=63334 site_time_zone_utc_offset=-6 +County "MO, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901650.epw site_zip_code=64151 site_time_zone_utc_offset=-6 +County "MO, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901670.epw site_zip_code=65613 site_time_zone_utc_offset=-6 +County "MO, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901690.epw site_zip_code=65473 site_time_zone_utc_offset=-6 +County "MO, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901710.epw site_zip_code=63565 site_time_zone_utc_offset=-6 +County "MO, Ralls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901730.epw site_zip_code=63459 site_time_zone_utc_offset=-6 +County "MO, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901750.epw site_zip_code=65270 site_time_zone_utc_offset=-6 +County "MO, Ray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901770.epw site_zip_code=64085 site_time_zone_utc_offset=-6 +County "MO, Reynolds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901790.epw site_zip_code=63638 site_time_zone_utc_offset=-6 +County "MO, Ripley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901810.epw site_zip_code=63935 site_time_zone_utc_offset=-6 +County "MO, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901950.epw site_zip_code=65340 site_time_zone_utc_offset=-6 +County "MO, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901970.epw site_zip_code=63548 site_time_zone_utc_offset=-6 +County "MO, Scotland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901990.epw site_zip_code=63555 site_time_zone_utc_offset=-6 +County "MO, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902010.epw site_zip_code=63801 site_time_zone_utc_offset=-6 +County "MO, Shannon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902030.epw site_zip_code=65588 site_time_zone_utc_offset=-6 +County "MO, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902050.epw site_zip_code=63468 site_time_zone_utc_offset=-6 +County "MO, St. Charles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901830.epw site_zip_code=63376 site_time_zone_utc_offset=-6 +County "MO, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901850.epw site_zip_code=64776 site_time_zone_utc_offset=-6 +County "MO, St. Francois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901870.epw site_zip_code=63640 site_time_zone_utc_offset=-6 +County "MO, St. Louis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901890.epw site_zip_code=63021 site_time_zone_utc_offset=-6 +County "MO, St. Louis city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2905100.epw site_zip_code=63116 site_time_zone_utc_offset=-6 +County "MO, Ste. Genevieve County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901860.epw site_zip_code=63670 site_time_zone_utc_offset=-6 +County "MO, Stoddard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902070.epw site_zip_code=63841 site_time_zone_utc_offset=-6 +County "MO, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902090.epw site_zip_code=65737 site_time_zone_utc_offset=-6 +County "MO, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902110.epw site_zip_code=63556 site_time_zone_utc_offset=-6 +County "MO, Taney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902130.epw site_zip_code=65616 site_time_zone_utc_offset=-6 +County "MO, Texas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902150.epw site_zip_code=65483 site_time_zone_utc_offset=-6 +County "MO, Vernon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902170.epw site_zip_code=64772 site_time_zone_utc_offset=-6 +County "MO, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902190.epw site_zip_code=63383 site_time_zone_utc_offset=-6 +County "MO, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902210.epw site_zip_code=63664 site_time_zone_utc_offset=-6 +County "MO, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902230.epw site_zip_code=63957 site_time_zone_utc_offset=-6 +County "MO, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902250.epw site_zip_code=65706 site_time_zone_utc_offset=-6 +County "MO, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902270.epw site_zip_code=64456 site_time_zone_utc_offset=-6 +County "MO, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902290.epw site_zip_code=65711 site_time_zone_utc_offset=-6 +County "MS, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800010.epw site_zip_code=39120 site_time_zone_utc_offset=-6 +County "MS, Alcorn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800030.epw site_zip_code=38834 site_time_zone_utc_offset=-6 +County "MS, Amite County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800050.epw site_zip_code=39645 site_time_zone_utc_offset=-6 +County "MS, Attala County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800070.epw site_zip_code=39090 site_time_zone_utc_offset=-6 +County "MS, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800090.epw site_zip_code=38603 site_time_zone_utc_offset=-6 +County "MS, Bolivar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800110.epw site_zip_code=38732 site_time_zone_utc_offset=-6 +County "MS, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800130.epw site_zip_code=38916 site_time_zone_utc_offset=-6 +County "MS, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800150.epw site_zip_code=38917 site_time_zone_utc_offset=-6 +County "MS, Chickasaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800170.epw site_zip_code=38851 site_time_zone_utc_offset=-6 +County "MS, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800190.epw site_zip_code=39735 site_time_zone_utc_offset=-6 +County "MS, Claiborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800210.epw site_zip_code=39150 site_time_zone_utc_offset=-6 +County "MS, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800230.epw site_zip_code=39355 site_time_zone_utc_offset=-6 +County "MS, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800250.epw site_zip_code=39773 site_time_zone_utc_offset=-6 +County "MS, Coahoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800270.epw site_zip_code=38614 site_time_zone_utc_offset=-6 +County "MS, Copiah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800290.epw site_zip_code=39059 site_time_zone_utc_offset=-6 +County "MS, Covington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800310.epw site_zip_code=39428 site_time_zone_utc_offset=-6 +County "MS, DeSoto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800330.epw site_zip_code=38654 site_time_zone_utc_offset=-6 +County "MS, Forrest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800350.epw site_zip_code=39401 site_time_zone_utc_offset=-6 +County "MS, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800370.epw site_zip_code=39653 site_time_zone_utc_offset=-6 +County "MS, George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800390.epw site_zip_code=39452 site_time_zone_utc_offset=-6 +County "MS, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800410.epw site_zip_code=39451 site_time_zone_utc_offset=-6 +County "MS, Grenada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800430.epw site_zip_code=38901 site_time_zone_utc_offset=-6 +County "MS, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800450.epw site_zip_code=39520 site_time_zone_utc_offset=-6 +County "MS, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800470.epw site_zip_code=39503 site_time_zone_utc_offset=-6 +County "MS, Hinds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800490.epw site_zip_code=39209 site_time_zone_utc_offset=-6 +County "MS, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800510.epw site_zip_code=39095 site_time_zone_utc_offset=-6 +County "MS, Humphreys County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800530.epw site_zip_code=39038 site_time_zone_utc_offset=-6 +County "MS, Issaquena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800550.epw site_zip_code=39159 site_time_zone_utc_offset=-6 +County "MS, Itawamba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800570.epw site_zip_code=38843 site_time_zone_utc_offset=-6 +County "MS, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800590.epw site_zip_code=39564 site_time_zone_utc_offset=-6 +County "MS, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800610.epw site_zip_code=39422 site_time_zone_utc_offset=-6 +County "MS, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800630.epw site_zip_code=39069 site_time_zone_utc_offset=-6 +County "MS, Jefferson Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800650.epw site_zip_code=39474 site_time_zone_utc_offset=-6 +County "MS, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800670.epw site_zip_code=39443 site_time_zone_utc_offset=-6 +County "MS, Kemper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800690.epw site_zip_code=39328 site_time_zone_utc_offset=-6 +County "MS, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800710.epw site_zip_code=38655 site_time_zone_utc_offset=-6 +County "MS, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800730.epw site_zip_code=39402 site_time_zone_utc_offset=-6 +County "MS, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800750.epw site_zip_code=39301 site_time_zone_utc_offset=-6 +County "MS, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800770.epw site_zip_code=39654 site_time_zone_utc_offset=-6 +County "MS, Leake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800790.epw site_zip_code=39051 site_time_zone_utc_offset=-6 +County "MS, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800810.epw site_zip_code=38801 site_time_zone_utc_offset=-6 +County "MS, Leflore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800830.epw site_zip_code=38930 site_time_zone_utc_offset=-6 +County "MS, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800850.epw site_zip_code=39601 site_time_zone_utc_offset=-6 +County "MS, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800870.epw site_zip_code=39702 site_time_zone_utc_offset=-6 +County "MS, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800890.epw site_zip_code=39110 site_time_zone_utc_offset=-6 +County "MS, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800910.epw site_zip_code=39429 site_time_zone_utc_offset=-6 +County "MS, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800930.epw site_zip_code=38611 site_time_zone_utc_offset=-6 +County "MS, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800950.epw site_zip_code=38821 site_time_zone_utc_offset=-6 +County "MS, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800970.epw site_zip_code=38967 site_time_zone_utc_offset=-6 +County "MS, Neshoba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800990.epw site_zip_code=39350 site_time_zone_utc_offset=-6 +County "MS, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801010.epw site_zip_code=39345 site_time_zone_utc_offset=-6 +County "MS, Noxubee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801030.epw site_zip_code=39341 site_time_zone_utc_offset=-6 +County "MS, Oktibbeha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801050.epw site_zip_code=39759 site_time_zone_utc_offset=-6 +County "MS, Panola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801070.epw site_zip_code=38606 site_time_zone_utc_offset=-6 +County "MS, Pearl River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801090.epw site_zip_code=39466 site_time_zone_utc_offset=-6 +County "MS, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801110.epw site_zip_code=39476 site_time_zone_utc_offset=-6 +County "MS, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801130.epw site_zip_code=39648 site_time_zone_utc_offset=-6 +County "MS, Pontotoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801150.epw site_zip_code=38863 site_time_zone_utc_offset=-6 +County "MS, Prentiss County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801170.epw site_zip_code=38829 site_time_zone_utc_offset=-6 +County "MS, Quitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801190.epw site_zip_code=38646 site_time_zone_utc_offset=-6 +County "MS, Rankin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801210.epw site_zip_code=39047 site_time_zone_utc_offset=-6 +County "MS, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801230.epw site_zip_code=39074 site_time_zone_utc_offset=-6 +County "MS, Sharkey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801250.epw site_zip_code=39159 site_time_zone_utc_offset=-6 +County "MS, Simpson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801270.epw site_zip_code=39111 site_time_zone_utc_offset=-6 +County "MS, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801290.epw site_zip_code=39168 site_time_zone_utc_offset=-6 +County "MS, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801310.epw site_zip_code=39577 site_time_zone_utc_offset=-6 +County "MS, Sunflower County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801330.epw site_zip_code=38751 site_time_zone_utc_offset=-6 +County "MS, Tallahatchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801350.epw site_zip_code=38921 site_time_zone_utc_offset=-6 +County "MS, Tate County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801370.epw site_zip_code=38668 site_time_zone_utc_offset=-6 +County "MS, Tippah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801390.epw site_zip_code=38663 site_time_zone_utc_offset=-6 +County "MS, Tishomingo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801410.epw site_zip_code=38852 site_time_zone_utc_offset=-6 +County "MS, Tunica County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801430.epw site_zip_code=38676 site_time_zone_utc_offset=-6 +County "MS, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801450.epw site_zip_code=38652 site_time_zone_utc_offset=-6 +County "MS, Walthall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801470.epw site_zip_code=39667 site_time_zone_utc_offset=-6 +County "MS, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801490.epw site_zip_code=39180 site_time_zone_utc_offset=-6 +County "MS, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801510.epw site_zip_code=38701 site_time_zone_utc_offset=-6 +County "MS, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801530.epw site_zip_code=39367 site_time_zone_utc_offset=-6 +County "MS, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801550.epw site_zip_code=39744 site_time_zone_utc_offset=-6 +County "MS, Wilkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801570.epw site_zip_code=39669 site_time_zone_utc_offset=-6 +County "MS, Winston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801590.epw site_zip_code=39339 site_time_zone_utc_offset=-6 +County "MS, Yalobusha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801610.epw site_zip_code=38965 site_time_zone_utc_offset=-6 +County "MS, Yazoo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801630.epw site_zip_code=39194 site_time_zone_utc_offset=-6 +County "MT, Beaverhead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000010.epw site_zip_code=59725 site_time_zone_utc_offset=-7 +County "MT, Big Horn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000030.epw site_zip_code=59034 site_time_zone_utc_offset=-7 +County "MT, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000050.epw site_zip_code=59526 site_time_zone_utc_offset=-7 +County "MT, Broadwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000070.epw site_zip_code=59644 site_time_zone_utc_offset=-7 +County "MT, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000090.epw site_zip_code=59068 site_time_zone_utc_offset=-7 +County "MT, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000110.epw site_zip_code=59324 site_time_zone_utc_offset=-7 +County "MT, Cascade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000130.epw site_zip_code=59405 site_time_zone_utc_offset=-7 +County "MT, Chouteau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000150.epw site_zip_code=59442 site_time_zone_utc_offset=-7 +County "MT, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000170.epw site_zip_code=59301 site_time_zone_utc_offset=-7 +County "MT, Daniels County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000190.epw site_zip_code=59263 site_time_zone_utc_offset=-7 +County "MT, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000210.epw site_zip_code=59330 site_time_zone_utc_offset=-7 +County "MT, Deer Lodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000230.epw site_zip_code=59711 site_time_zone_utc_offset=-7 +County "MT, Fallon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000250.epw site_zip_code=59313 site_time_zone_utc_offset=-7 +County "MT, Fergus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000270.epw site_zip_code=59457 site_time_zone_utc_offset=-7 +County "MT, Flathead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000290.epw site_zip_code=59901 site_time_zone_utc_offset=-7 +County "MT, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000310.epw site_zip_code=59718 site_time_zone_utc_offset=-7 +County "MT, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000330.epw site_zip_code=59337 site_time_zone_utc_offset=-7 +County "MT, Glacier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000350.epw site_zip_code=59427 site_time_zone_utc_offset=-7 +County "MT, Golden Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000370.epw site_zip_code=59074 site_time_zone_utc_offset=-7 +County "MT, Granite County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000390.epw site_zip_code=59858 site_time_zone_utc_offset=-7 +County "MT, Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000410.epw site_zip_code=59501 site_time_zone_utc_offset=-7 +County "MT, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000430.epw site_zip_code=59634 site_time_zone_utc_offset=-7 +County "MT, Judith Basin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000450.epw site_zip_code=59479 site_time_zone_utc_offset=-7 +County "MT, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000470.epw site_zip_code=59860 site_time_zone_utc_offset=-7 +County "MT, Lewis and Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000490.epw site_zip_code=59601 site_time_zone_utc_offset=-7 +County "MT, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000510.epw site_zip_code=59522 site_time_zone_utc_offset=-7 +County "MT, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000530.epw site_zip_code=59923 site_time_zone_utc_offset=-7 +County "MT, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000570.epw site_zip_code=59729 site_time_zone_utc_offset=-7 +County "MT, McCone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000550.epw site_zip_code=59215 site_time_zone_utc_offset=-7 +County "MT, Meagher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000590.epw site_zip_code=59645 site_time_zone_utc_offset=-7 +County "MT, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000610.epw site_zip_code=59872 site_time_zone_utc_offset=-7 +County "MT, Missoula County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000630.epw site_zip_code=59801 site_time_zone_utc_offset=-7 +County "MT, Musselshell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000650.epw site_zip_code=59072 site_time_zone_utc_offset=-7 +County "MT, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000670.epw site_zip_code=59047 site_time_zone_utc_offset=-7 +County "MT, Petroleum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000690.epw site_zip_code=59087 site_time_zone_utc_offset=-7 +County "MT, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000710.epw site_zip_code=59538 site_time_zone_utc_offset=-7 +County "MT, Pondera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000730.epw site_zip_code=59425 site_time_zone_utc_offset=-7 +County "MT, Powder River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000750.epw site_zip_code=59317 site_time_zone_utc_offset=-7 +County "MT, Powell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000770.epw site_zip_code=59722 site_time_zone_utc_offset=-7 +County "MT, Prairie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000790.epw site_zip_code=59349 site_time_zone_utc_offset=-7 +County "MT, Ravalli County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000810.epw site_zip_code=59840 site_time_zone_utc_offset=-7 +County "MT, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000830.epw site_zip_code=59270 site_time_zone_utc_offset=-7 +County "MT, Roosevelt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000850.epw site_zip_code=59201 site_time_zone_utc_offset=-7 +County "MT, Rosebud County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000870.epw site_zip_code=59327 site_time_zone_utc_offset=-7 +County "MT, Sanders County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000890.epw site_zip_code=59859 site_time_zone_utc_offset=-7 +County "MT, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000910.epw site_zip_code=59254 site_time_zone_utc_offset=-7 +County "MT, Silver Bow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000930.epw site_zip_code=59701 site_time_zone_utc_offset=-7 +County "MT, Stillwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000950.epw site_zip_code=59019 site_time_zone_utc_offset=-7 +County "MT, Sweet Grass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000970.epw site_zip_code=59011 site_time_zone_utc_offset=-7 +County "MT, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000990.epw site_zip_code=59422 site_time_zone_utc_offset=-7 +County "MT, Toole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001010.epw site_zip_code=59474 site_time_zone_utc_offset=-7 +County "MT, Treasure County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001030.epw site_zip_code=59038 site_time_zone_utc_offset=-7 +County "MT, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001050.epw site_zip_code=59230 site_time_zone_utc_offset=-7 +County "MT, Wheatland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001070.epw site_zip_code=59036 site_time_zone_utc_offset=-7 +County "MT, Wibaux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001090.epw site_zip_code=59353 site_time_zone_utc_offset=-7 +County "MT, Yellowstone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001110.epw site_zip_code=59102 site_time_zone_utc_offset=-7 +County "NC, Alamance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700010.epw site_zip_code=27215 site_time_zone_utc_offset=-5 +County "NC, Alexander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700030.epw site_zip_code=28681 site_time_zone_utc_offset=-5 +County "NC, Alleghany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700050.epw site_zip_code=28675 site_time_zone_utc_offset=-5 +County "NC, Anson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700070.epw site_zip_code=28170 site_time_zone_utc_offset=-5 +County "NC, Ashe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700090.epw site_zip_code=28694 site_time_zone_utc_offset=-5 +County "NC, Avery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700110.epw site_zip_code=28657 site_time_zone_utc_offset=-5 +County "NC, Beaufort County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700130.epw site_zip_code=27889 site_time_zone_utc_offset=-5 +County "NC, Bertie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700150.epw site_zip_code=27983 site_time_zone_utc_offset=-5 +County "NC, Bladen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700170.epw site_zip_code=28337 site_time_zone_utc_offset=-5 +County "NC, Brunswick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700190.epw site_zip_code=28451 site_time_zone_utc_offset=-5 +County "NC, Buncombe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700210.epw site_zip_code=28806 site_time_zone_utc_offset=-5 +County "NC, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700230.epw site_zip_code=28655 site_time_zone_utc_offset=-5 +County "NC, Cabarrus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700250.epw site_zip_code=28027 site_time_zone_utc_offset=-5 +County "NC, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700270.epw site_zip_code=28645 site_time_zone_utc_offset=-5 +County "NC, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700290.epw site_zip_code=27921 site_time_zone_utc_offset=-5 +County "NC, Carteret County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700310.epw site_zip_code=28570 site_time_zone_utc_offset=-5 +County "NC, Caswell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700330.epw site_zip_code=27379 site_time_zone_utc_offset=-5 +County "NC, Catawba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700350.epw site_zip_code=28601 site_time_zone_utc_offset=-5 +County "NC, Chatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700370.epw site_zip_code=27312 site_time_zone_utc_offset=-5 +County "NC, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700390.epw site_zip_code=28906 site_time_zone_utc_offset=-5 +County "NC, Chowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700410.epw site_zip_code=27932 site_time_zone_utc_offset=-5 +County "NC, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700430.epw site_zip_code=28904 site_time_zone_utc_offset=-5 +County "NC, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700450.epw site_zip_code=28150 site_time_zone_utc_offset=-5 +County "NC, Columbus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700470.epw site_zip_code=28472 site_time_zone_utc_offset=-5 +County "NC, Craven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700490.epw site_zip_code=28562 site_time_zone_utc_offset=-5 +County "NC, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700510.epw site_zip_code=28314 site_time_zone_utc_offset=-5 +County "NC, Currituck County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700530.epw site_zip_code=27958 site_time_zone_utc_offset=-5 +County "NC, Dare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700550.epw site_zip_code=27949 site_time_zone_utc_offset=-5 +County "NC, Davidson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700570.epw site_zip_code=27360 site_time_zone_utc_offset=-5 +County "NC, Davie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700590.epw site_zip_code=27028 site_time_zone_utc_offset=-5 +County "NC, Duplin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700610.epw site_zip_code=28466 site_time_zone_utc_offset=-5 +County "NC, Durham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700630.epw site_zip_code=27703 site_time_zone_utc_offset=-5 +County "NC, Edgecombe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700650.epw site_zip_code=27801 site_time_zone_utc_offset=-5 +County "NC, Forsyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700670.epw site_zip_code=27284 site_time_zone_utc_offset=-5 +County "NC, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700690.epw site_zip_code=27549 site_time_zone_utc_offset=-5 +County "NC, Gaston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700710.epw site_zip_code=28054 site_time_zone_utc_offset=-5 +County "NC, Gates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700730.epw site_zip_code=27937 site_time_zone_utc_offset=-5 +County "NC, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700750.epw site_zip_code=28771 site_time_zone_utc_offset=-5 +County "NC, Granville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700770.epw site_zip_code=27565 site_time_zone_utc_offset=-5 +County "NC, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700790.epw site_zip_code=28580 site_time_zone_utc_offset=-5 +County "NC, Guilford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700810.epw site_zip_code=27406 site_time_zone_utc_offset=-5 +County "NC, Halifax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700830.epw site_zip_code=27870 site_time_zone_utc_offset=-5 +County "NC, Harnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700850.epw site_zip_code=27546 site_time_zone_utc_offset=-5 +County "NC, Haywood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700870.epw site_zip_code=28786 site_time_zone_utc_offset=-5 +County "NC, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700890.epw site_zip_code=28792 site_time_zone_utc_offset=-5 +County "NC, Hertford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700910.epw site_zip_code=27910 site_time_zone_utc_offset=-5 +County "NC, Hoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700930.epw site_zip_code=28376 site_time_zone_utc_offset=-5 +County "NC, Hyde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700950.epw site_zip_code=27824 site_time_zone_utc_offset=-5 +County "NC, Iredell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700970.epw site_zip_code=28117 site_time_zone_utc_offset=-5 +County "NC, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700990.epw site_zip_code=28779 site_time_zone_utc_offset=-5 +County "NC, Johnston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701010.epw site_zip_code=27520 site_time_zone_utc_offset=-5 +County "NC, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701030.epw site_zip_code=28585 site_time_zone_utc_offset=-5 +County "NC, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701050.epw site_zip_code=27330 site_time_zone_utc_offset=-5 +County "NC, Lenoir County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701070.epw site_zip_code=28501 site_time_zone_utc_offset=-5 +County "NC, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701090.epw site_zip_code=28092 site_time_zone_utc_offset=-5 +County "NC, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701130.epw site_zip_code=28734 site_time_zone_utc_offset=-5 +County "NC, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701150.epw site_zip_code=28753 site_time_zone_utc_offset=-5 +County "NC, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701170.epw site_zip_code=27892 site_time_zone_utc_offset=-5 +County "NC, McDowell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701110.epw site_zip_code=28752 site_time_zone_utc_offset=-5 +County "NC, Mecklenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701190.epw site_zip_code=28269 site_time_zone_utc_offset=-5 +County "NC, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701210.epw site_zip_code=28777 site_time_zone_utc_offset=-5 +County "NC, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701230.epw site_zip_code=27371 site_time_zone_utc_offset=-5 +County "NC, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701250.epw site_zip_code=28374 site_time_zone_utc_offset=-5 +County "NC, Nash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701270.epw site_zip_code=27804 site_time_zone_utc_offset=-5 +County "NC, New Hanover County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701290.epw site_zip_code=28412 site_time_zone_utc_offset=-5 +County "NC, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701310.epw site_zip_code=27831 site_time_zone_utc_offset=-5 +County "NC, Onslow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701330.epw site_zip_code=28540 site_time_zone_utc_offset=-5 +County "NC, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701350.epw site_zip_code=27514 site_time_zone_utc_offset=-5 +County "NC, Pamlico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701370.epw site_zip_code=28571 site_time_zone_utc_offset=-5 +County "NC, Pasquotank County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701390.epw site_zip_code=27909 site_time_zone_utc_offset=-5 +County "NC, Pender County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701410.epw site_zip_code=28443 site_time_zone_utc_offset=-5 +County "NC, Perquimans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701430.epw site_zip_code=27944 site_time_zone_utc_offset=-5 +County "NC, Person County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701450.epw site_zip_code=27574 site_time_zone_utc_offset=-5 +County "NC, Pitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701470.epw site_zip_code=27858 site_time_zone_utc_offset=-5 +County "NC, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701490.epw site_zip_code=28782 site_time_zone_utc_offset=-5 +County "NC, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701510.epw site_zip_code=27205 site_time_zone_utc_offset=-5 +County "NC, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701530.epw site_zip_code=28379 site_time_zone_utc_offset=-5 +County "NC, Robeson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701550.epw site_zip_code=28358 site_time_zone_utc_offset=-5 +County "NC, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701570.epw site_zip_code=27320 site_time_zone_utc_offset=-5 +County "NC, Rowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701590.epw site_zip_code=28146 site_time_zone_utc_offset=-5 +County "NC, Rutherford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701610.epw site_zip_code=28043 site_time_zone_utc_offset=-5 +County "NC, Sampson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701630.epw site_zip_code=28328 site_time_zone_utc_offset=-5 +County "NC, Scotland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701650.epw site_zip_code=28352 site_time_zone_utc_offset=-5 +County "NC, Stanly County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701670.epw site_zip_code=28001 site_time_zone_utc_offset=-5 +County "NC, Stokes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701690.epw site_zip_code=27021 site_time_zone_utc_offset=-5 +County "NC, Surry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701710.epw site_zip_code=27030 site_time_zone_utc_offset=-5 +County "NC, Swain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701730.epw site_zip_code=28713 site_time_zone_utc_offset=-5 +County "NC, Transylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701750.epw site_zip_code=28712 site_time_zone_utc_offset=-5 +County "NC, Tyrrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701770.epw site_zip_code=27925 site_time_zone_utc_offset=-5 +County "NC, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701790.epw site_zip_code=28173 site_time_zone_utc_offset=-5 +County "NC, Vance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701810.epw site_zip_code=27537 site_time_zone_utc_offset=-5 +County "NC, Wake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701830.epw site_zip_code=27610 site_time_zone_utc_offset=-5 +County "NC, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701850.epw site_zip_code=27589 site_time_zone_utc_offset=-5 +County "NC, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701870.epw site_zip_code=27962 site_time_zone_utc_offset=-5 +County "NC, Watauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701890.epw site_zip_code=28607 site_time_zone_utc_offset=-5 +County "NC, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701910.epw site_zip_code=27530 site_time_zone_utc_offset=-5 +County "NC, Wilkes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701930.epw site_zip_code=28659 site_time_zone_utc_offset=-5 +County "NC, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701950.epw site_zip_code=27893 site_time_zone_utc_offset=-5 +County "NC, Yadkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701970.epw site_zip_code=27055 site_time_zone_utc_offset=-5 +County "NC, Yancey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701990.epw site_zip_code=28714 site_time_zone_utc_offset=-5 +County "ND, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800010.epw site_zip_code=58639 site_time_zone_utc_offset=-7 +County "ND, Barnes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800030.epw site_zip_code=58072 site_time_zone_utc_offset=-6 +County "ND, Benson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800050.epw site_zip_code=58348 site_time_zone_utc_offset=-6 +County "ND, Billings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800070.epw site_zip_code=58622 site_time_zone_utc_offset=-7 +County "ND, Bottineau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800090.epw site_zip_code=58318 site_time_zone_utc_offset=-6 +County "ND, Bowman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800110.epw site_zip_code=58623 site_time_zone_utc_offset=-7 +County "ND, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800130.epw site_zip_code=58773 site_time_zone_utc_offset=-6 +County "ND, Burleigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800150.epw site_zip_code=58503 site_time_zone_utc_offset=-6 +County "ND, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800170.epw site_zip_code=58103 site_time_zone_utc_offset=-6 +County "ND, Cavalier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800190.epw site_zip_code=58249 site_time_zone_utc_offset=-6 +County "ND, Dickey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800210.epw site_zip_code=58474 site_time_zone_utc_offset=-6 +County "ND, Divide County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800230.epw site_zip_code=58730 site_time_zone_utc_offset=-6 +County "ND, Dunn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800250.epw site_zip_code=58640 site_time_zone_utc_offset=-7 +County "ND, Eddy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800270.epw site_zip_code=58356 site_time_zone_utc_offset=-6 +County "ND, Emmons County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800290.epw site_zip_code=58552 site_time_zone_utc_offset=-6 +County "ND, Foster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800310.epw site_zip_code=58421 site_time_zone_utc_offset=-6 +County "ND, Golden Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800330.epw site_zip_code=58621 site_time_zone_utc_offset=-7 +County "ND, Grand Forks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800350.epw site_zip_code=58201 site_time_zone_utc_offset=-6 +County "ND, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800370.epw site_zip_code=58533 site_time_zone_utc_offset=-7 +County "ND, Griggs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800390.epw site_zip_code=58425 site_time_zone_utc_offset=-6 +County "ND, Hettinger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800410.epw site_zip_code=58646 site_time_zone_utc_offset=-7 +County "ND, Kidder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800430.epw site_zip_code=58482 site_time_zone_utc_offset=-6 +County "ND, LaMoure County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800450.epw site_zip_code=58458 site_time_zone_utc_offset=-6 +County "ND, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800470.epw site_zip_code=58561 site_time_zone_utc_offset=-6 +County "ND, McHenry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800490.epw site_zip_code=58790 site_time_zone_utc_offset=-6 +County "ND, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800510.epw site_zip_code=58495 site_time_zone_utc_offset=-6 +County "ND, McKenzie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800530.epw site_zip_code=58854 site_time_zone_utc_offset=-7 +County "ND, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800550.epw site_zip_code=58540 site_time_zone_utc_offset=-6 +County "ND, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800570.epw site_zip_code=58545 site_time_zone_utc_offset=-6 +County "ND, Morton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800590.epw site_zip_code=58554 site_time_zone_utc_offset=-6 +County "ND, Mountrail County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800610.epw site_zip_code=58763 site_time_zone_utc_offset=-6 +County "ND, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800630.epw site_zip_code=58344 site_time_zone_utc_offset=-6 +County "ND, Oliver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800650.epw site_zip_code=58530 site_time_zone_utc_offset=-6 +County "ND, Pembina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800670.epw site_zip_code=58220 site_time_zone_utc_offset=-6 +County "ND, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800690.epw site_zip_code=58368 site_time_zone_utc_offset=-6 +County "ND, Ramsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800710.epw site_zip_code=58301 site_time_zone_utc_offset=-6 +County "ND, Ransom County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800730.epw site_zip_code=58054 site_time_zone_utc_offset=-6 +County "ND, Renville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800750.epw site_zip_code=58761 site_time_zone_utc_offset=-6 +County "ND, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800770.epw site_zip_code=58075 site_time_zone_utc_offset=-6 +County "ND, Rolette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800790.epw site_zip_code=58367 site_time_zone_utc_offset=-6 +County "ND, Sargent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800810.epw site_zip_code=58060 site_time_zone_utc_offset=-6 +County "ND, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800830.epw site_zip_code=58463 site_time_zone_utc_offset=-6 +County "ND, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800850.epw site_zip_code=58538 site_time_zone_utc_offset=-6 +County "ND, Slope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800870.epw site_zip_code=58620 site_time_zone_utc_offset=-7 +County "ND, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800890.epw site_zip_code=58601 site_time_zone_utc_offset=-7 +County "ND, Steele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800910.epw site_zip_code=58230 site_time_zone_utc_offset=-6 +County "ND, Stutsman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800930.epw site_zip_code=58401 site_time_zone_utc_offset=-6 +County "ND, Towner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800950.epw site_zip_code=58324 site_time_zone_utc_offset=-6 +County "ND, Traill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800970.epw site_zip_code=58257 site_time_zone_utc_offset=-6 +County "ND, Walsh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800990.epw site_zip_code=58237 site_time_zone_utc_offset=-6 +County "ND, Ward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801010.epw site_zip_code=58701 site_time_zone_utc_offset=-6 +County "ND, Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801030.epw site_zip_code=58341 site_time_zone_utc_offset=-6 +County "ND, Williams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801050.epw site_zip_code=58801 site_time_zone_utc_offset=-6 +County "NE, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100010.epw site_zip_code=68901 site_time_zone_utc_offset=-6 +County "NE, Antelope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100030.epw site_zip_code=68756 site_time_zone_utc_offset=-6 +County "NE, Arthur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100050.epw site_zip_code=69121 site_time_zone_utc_offset=-7 +County "NE, Banner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100070.epw site_zip_code=69345 site_time_zone_utc_offset=-7 +County "NE, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100090.epw site_zip_code=68833 site_time_zone_utc_offset=-6 +County "NE, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100110.epw site_zip_code=68620 site_time_zone_utc_offset=-6 +County "NE, Box Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100130.epw site_zip_code=69301 site_time_zone_utc_offset=-7 +County "NE, Boyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100150.epw site_zip_code=68777 site_time_zone_utc_offset=-6 +County "NE, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100170.epw site_zip_code=69210 site_time_zone_utc_offset=-6 +County "NE, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100190.epw site_zip_code=68845 site_time_zone_utc_offset=-6 +County "NE, Burt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100210.epw site_zip_code=68061 site_time_zone_utc_offset=-6 +County "NE, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100230.epw site_zip_code=68632 site_time_zone_utc_offset=-6 +County "NE, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100250.epw site_zip_code=68048 site_time_zone_utc_offset=-6 +County "NE, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100270.epw site_zip_code=68739 site_time_zone_utc_offset=-6 +County "NE, Chase County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100290.epw site_zip_code=69033 site_time_zone_utc_offset=-7 +County "NE, Cherry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100310.epw site_zip_code=69201 site_time_zone_utc_offset=-6 +County "NE, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100330.epw site_zip_code=69162 site_time_zone_utc_offset=-7 +County "NE, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100350.epw site_zip_code=68979 site_time_zone_utc_offset=-6 +County "NE, Colfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100370.epw site_zip_code=68661 site_time_zone_utc_offset=-6 +County "NE, Cuming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100390.epw site_zip_code=68788 site_time_zone_utc_offset=-6 +County "NE, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100410.epw site_zip_code=68822 site_time_zone_utc_offset=-6 +County "NE, Dakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100430.epw site_zip_code=68776 site_time_zone_utc_offset=-6 +County "NE, Dawes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100450.epw site_zip_code=69337 site_time_zone_utc_offset=-7 +County "NE, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100470.epw site_zip_code=68850 site_time_zone_utc_offset=-6 +County "NE, Deuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100490.epw site_zip_code=69129 site_time_zone_utc_offset=-7 +County "NE, Dixon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100510.epw site_zip_code=68770 site_time_zone_utc_offset=-6 +County "NE, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100530.epw site_zip_code=68025 site_time_zone_utc_offset=-6 +County "NE, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100550.epw site_zip_code=68022 site_time_zone_utc_offset=-6 +County "NE, Dundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100570.epw site_zip_code=69021 site_time_zone_utc_offset=-7 +County "NE, Fillmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100590.epw site_zip_code=68361 site_time_zone_utc_offset=-6 +County "NE, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100610.epw site_zip_code=68939 site_time_zone_utc_offset=-6 +County "NE, Frontier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100630.epw site_zip_code=69025 site_time_zone_utc_offset=-6 +County "NE, Furnas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100650.epw site_zip_code=69022 site_time_zone_utc_offset=-6 +County "NE, Gage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100670.epw site_zip_code=68310 site_time_zone_utc_offset=-6 +County "NE, Garden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100690.epw site_zip_code=69154 site_time_zone_utc_offset=-7 +County "NE, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100710.epw site_zip_code=68823 site_time_zone_utc_offset=-6 +County "NE, Gosper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100730.epw site_zip_code=68937 site_time_zone_utc_offset=-6 +County "NE, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100750.epw site_zip_code=69350 site_time_zone_utc_offset=-7 +County "NE, Greeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100770.epw site_zip_code=68665 site_time_zone_utc_offset=-6 +County "NE, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100790.epw site_zip_code=68801 site_time_zone_utc_offset=-6 +County "NE, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100810.epw site_zip_code=68818 site_time_zone_utc_offset=-6 +County "NE, Harlan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100830.epw site_zip_code=68920 site_time_zone_utc_offset=-6 +County "NE, Hayes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100850.epw site_zip_code=69032 site_time_zone_utc_offset=-6 +County "NE, Hitchcock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100870.epw site_zip_code=69024 site_time_zone_utc_offset=-6 +County "NE, Holt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100890.epw site_zip_code=68763 site_time_zone_utc_offset=-6 +County "NE, Hooker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100910.epw site_zip_code=69152 site_time_zone_utc_offset=-7 +County "NE, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100930.epw site_zip_code=68873 site_time_zone_utc_offset=-6 +County "NE, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100950.epw site_zip_code=68352 site_time_zone_utc_offset=-6 +County "NE, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100970.epw site_zip_code=68450 site_time_zone_utc_offset=-6 +County "NE, Kearney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100990.epw site_zip_code=68959 site_time_zone_utc_offset=-6 +County "NE, Keith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101010.epw site_zip_code=69153 site_time_zone_utc_offset=-7 +County "NE, Keya Paha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101030.epw site_zip_code=68778 site_time_zone_utc_offset=-6 +County "NE, Kimball County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101050.epw site_zip_code=69145 site_time_zone_utc_offset=-7 +County "NE, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101070.epw site_zip_code=68718 site_time_zone_utc_offset=-6 +County "NE, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101090.epw site_zip_code=68516 site_time_zone_utc_offset=-6 +County "NE, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101110.epw site_zip_code=69101 site_time_zone_utc_offset=-6 +County "NE, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101130.epw site_zip_code=69163 site_time_zone_utc_offset=-6 +County "NE, Loup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101150.epw site_zip_code=68823 site_time_zone_utc_offset=-6 +County "NE, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101190.epw site_zip_code=68701 site_time_zone_utc_offset=-6 +County "NE, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101170.epw site_zip_code=69167 site_time_zone_utc_offset=-6 +County "NE, Merrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101210.epw site_zip_code=68826 site_time_zone_utc_offset=-6 +County "NE, Morrill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101230.epw site_zip_code=69336 site_time_zone_utc_offset=-7 +County "NE, Nance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101250.epw site_zip_code=68638 site_time_zone_utc_offset=-6 +County "NE, Nemaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101270.epw site_zip_code=68305 site_time_zone_utc_offset=-6 +County "NE, Nuckolls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101290.epw site_zip_code=68978 site_time_zone_utc_offset=-6 +County "NE, Otoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101310.epw site_zip_code=68410 site_time_zone_utc_offset=-6 +County "NE, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101330.epw site_zip_code=68420 site_time_zone_utc_offset=-6 +County "NE, Perkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101350.epw site_zip_code=69140 site_time_zone_utc_offset=-7 +County "NE, Phelps County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101370.epw site_zip_code=68949 site_time_zone_utc_offset=-6 +County "NE, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101390.epw site_zip_code=68767 site_time_zone_utc_offset=-6 +County "NE, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101410.epw site_zip_code=68601 site_time_zone_utc_offset=-6 +County "NE, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101430.epw site_zip_code=68666 site_time_zone_utc_offset=-6 +County "NE, Red Willow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101450.epw site_zip_code=69001 site_time_zone_utc_offset=-6 +County "NE, Richardson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101470.epw site_zip_code=68355 site_time_zone_utc_offset=-6 +County "NE, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101490.epw site_zip_code=68714 site_time_zone_utc_offset=-6 +County "NE, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101510.epw site_zip_code=68333 site_time_zone_utc_offset=-6 +County "NE, Sarpy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101530.epw site_zip_code=68046 site_time_zone_utc_offset=-6 +County "NE, Saunders County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101550.epw site_zip_code=68066 site_time_zone_utc_offset=-6 +County "NE, Scotts Bluff County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101570.epw site_zip_code=69361 site_time_zone_utc_offset=-7 +County "NE, Seward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101590.epw site_zip_code=68434 site_time_zone_utc_offset=-6 +County "NE, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101610.epw site_zip_code=69343 site_time_zone_utc_offset=-7 +County "NE, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101630.epw site_zip_code=68853 site_time_zone_utc_offset=-6 +County "NE, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101650.epw site_zip_code=69346 site_time_zone_utc_offset=-7 +County "NE, Stanton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101670.epw site_zip_code=68779 site_time_zone_utc_offset=-6 +County "NE, Thayer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101690.epw site_zip_code=68370 site_time_zone_utc_offset=-6 +County "NE, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101710.epw site_zip_code=69166 site_time_zone_utc_offset=-6 +County "NE, Thurston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101730.epw site_zip_code=68071 site_time_zone_utc_offset=-6 +County "NE, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101750.epw site_zip_code=68862 site_time_zone_utc_offset=-6 +County "NE, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101770.epw site_zip_code=68008 site_time_zone_utc_offset=-6 +County "NE, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101790.epw site_zip_code=68787 site_time_zone_utc_offset=-6 +County "NE, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101810.epw site_zip_code=68970 site_time_zone_utc_offset=-6 +County "NE, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101830.epw site_zip_code=68637 site_time_zone_utc_offset=-6 +County "NE, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101850.epw site_zip_code=68467 site_time_zone_utc_offset=-6 +County "NH, Belknap County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300010.epw site_zip_code=03246 site_time_zone_utc_offset=-5 +County "NH, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300030.epw site_zip_code=03894 site_time_zone_utc_offset=-5 +County "NH, Cheshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300050.epw site_zip_code=03431 site_time_zone_utc_offset=-5 +County "NH, Coos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300070.epw site_zip_code=03570 site_time_zone_utc_offset=-5 +County "NH, Grafton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300090.epw site_zip_code=03766 site_time_zone_utc_offset=-5 +County "NH, Hillsborough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300110.epw site_zip_code=03103 site_time_zone_utc_offset=-5 +County "NH, Merrimack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300130.epw site_zip_code=03301 site_time_zone_utc_offset=-5 +County "NH, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300150.epw site_zip_code=03038 site_time_zone_utc_offset=-5 +County "NH, Strafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300170.epw site_zip_code=03820 site_time_zone_utc_offset=-5 +County "NH, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300190.epw site_zip_code=03743 site_time_zone_utc_offset=-5 +County "NJ, Atlantic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400010.epw site_zip_code=08401 site_time_zone_utc_offset=-5 +County "NJ, Bergen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400030.epw site_zip_code=07410 site_time_zone_utc_offset=-5 +County "NJ, Burlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400050.epw site_zip_code=08054 site_time_zone_utc_offset=-5 +County "NJ, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400070.epw site_zip_code=08021 site_time_zone_utc_offset=-5 +County "NJ, Cape May County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400090.epw site_zip_code=08260 site_time_zone_utc_offset=-5 +County "NJ, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400110.epw site_zip_code=08332 site_time_zone_utc_offset=-5 +County "NJ, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400130.epw site_zip_code=07111 site_time_zone_utc_offset=-5 +County "NJ, Gloucester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400150.epw site_zip_code=08096 site_time_zone_utc_offset=-5 +County "NJ, Hudson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400170.epw site_zip_code=07302 site_time_zone_utc_offset=-5 +County "NJ, Hunterdon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400190.epw site_zip_code=08822 site_time_zone_utc_offset=-5 +County "NJ, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400210.epw site_zip_code=08618 site_time_zone_utc_offset=-5 +County "NJ, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400230.epw site_zip_code=08831 site_time_zone_utc_offset=-5 +County "NJ, Monmouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400250.epw site_zip_code=07728 site_time_zone_utc_offset=-5 +County "NJ, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400270.epw site_zip_code=07960 site_time_zone_utc_offset=-5 +County "NJ, Ocean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400290.epw site_zip_code=08701 site_time_zone_utc_offset=-5 +County "NJ, Passaic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400310.epw site_zip_code=07055 site_time_zone_utc_offset=-5 +County "NJ, Salem County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400330.epw site_zip_code=08069 site_time_zone_utc_offset=-5 +County "NJ, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400350.epw site_zip_code=08873 site_time_zone_utc_offset=-5 +County "NJ, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400370.epw site_zip_code=07860 site_time_zone_utc_offset=-5 +County "NJ, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400390.epw site_zip_code=07083 site_time_zone_utc_offset=-5 +County "NJ, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400410.epw site_zip_code=08865 site_time_zone_utc_offset=-5 +County "NM, Bernalillo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500010.epw site_zip_code=87111 site_time_zone_utc_offset=-7 +County "NM, Catron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500030.epw site_zip_code=87829 site_time_zone_utc_offset=-7 +County "NM, Chaves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500050.epw site_zip_code=88203 site_time_zone_utc_offset=-7 +County "NM, Cibola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500060.epw site_zip_code=87020 site_time_zone_utc_offset=-7 +County "NM, Colfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500070.epw site_zip_code=87740 site_time_zone_utc_offset=-7 +County "NM, Curry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500090.epw site_zip_code=88101 site_time_zone_utc_offset=-7 +County "NM, De Baca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500110.epw site_zip_code=88119 site_time_zone_utc_offset=-7 +County "NM, Dona Ana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500130.epw site_zip_code=88001 site_time_zone_utc_offset=-7 +County "NM, Eddy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500150.epw site_zip_code=88220 site_time_zone_utc_offset=-7 +County "NM, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500170.epw site_zip_code=88061 site_time_zone_utc_offset=-7 +County "NM, Guadalupe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500190.epw site_zip_code=88435 site_time_zone_utc_offset=-7 +County "NM, Harding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500210.epw site_zip_code=87743 site_time_zone_utc_offset=-7 +County "NM, Hidalgo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500230.epw site_zip_code=88045 site_time_zone_utc_offset=-7 +County "NM, Lea County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500250.epw site_zip_code=88240 site_time_zone_utc_offset=-7 +County "NM, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500270.epw site_zip_code=88355 site_time_zone_utc_offset=-7 +County "NM, Los Alamos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500280.epw site_zip_code=87544 site_time_zone_utc_offset=-7 +County "NM, Luna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500290.epw site_zip_code=88030 site_time_zone_utc_offset=-7 +County "NM, McKinley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500310.epw site_zip_code=87301 site_time_zone_utc_offset=-7 +County "NM, Mora County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500330.epw site_zip_code=87722 site_time_zone_utc_offset=-7 +County "NM, Otero County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500350.epw site_zip_code=88310 site_time_zone_utc_offset=-7 +County "NM, Quay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500370.epw site_zip_code=88401 site_time_zone_utc_offset=-7 +County "NM, Rio Arriba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500390.epw site_zip_code=87532 site_time_zone_utc_offset=-7 +County "NM, Roosevelt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500410.epw site_zip_code=88130 site_time_zone_utc_offset=-7 +County "NM, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500450.epw site_zip_code=87401 site_time_zone_utc_offset=-7 +County "NM, San Miguel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500470.epw site_zip_code=87701 site_time_zone_utc_offset=-7 +County "NM, Sandoval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500430.epw site_zip_code=87124 site_time_zone_utc_offset=-7 +County "NM, Santa Fe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500490.epw site_zip_code=87507 site_time_zone_utc_offset=-7 +County "NM, Sierra County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500510.epw site_zip_code=87901 site_time_zone_utc_offset=-7 +County "NM, Socorro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500530.epw site_zip_code=87801 site_time_zone_utc_offset=-7 +County "NM, Taos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500550.epw site_zip_code=87571 site_time_zone_utc_offset=-7 +County "NM, Torrance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500570.epw site_zip_code=87035 site_time_zone_utc_offset=-7 +County "NM, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500590.epw site_zip_code=88415 site_time_zone_utc_offset=-7 +County "NM, Valencia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500610.epw site_zip_code=87031 site_time_zone_utc_offset=-7 +County "NV, Carson City" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3205100.epw site_zip_code=89701 site_time_zone_utc_offset=-8 +County "NV, Churchill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200010.epw site_zip_code=89406 site_time_zone_utc_offset=-8 +County "NV, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200030.epw site_zip_code=89052 site_time_zone_utc_offset=-8 +County "NV, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200050.epw site_zip_code=89460 site_time_zone_utc_offset=-8 +County "NV, Elko County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200070.epw site_zip_code=89801 site_time_zone_utc_offset=-8 +County "NV, Esmeralda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200090.epw site_zip_code=89010 site_time_zone_utc_offset=-8 +County "NV, Eureka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200110.epw site_zip_code=89316 site_time_zone_utc_offset=-8 +County "NV, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200130.epw site_zip_code=89445 site_time_zone_utc_offset=-8 +County "NV, Lander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200150.epw site_zip_code=89820 site_time_zone_utc_offset=-8 +County "NV, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200170.epw site_zip_code=89017 site_time_zone_utc_offset=-8 +County "NV, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200190.epw site_zip_code=89408 site_time_zone_utc_offset=-8 +County "NV, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200210.epw site_zip_code=89415 site_time_zone_utc_offset=-8 +County "NV, Nye County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200230.epw site_zip_code=89048 site_time_zone_utc_offset=-8 +County "NV, Pershing County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200270.epw site_zip_code=89419 site_time_zone_utc_offset=-8 +County "NV, Storey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200290.epw site_zip_code=89521 site_time_zone_utc_offset=-8 +County "NV, Washoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200310.epw site_zip_code=89502 site_time_zone_utc_offset=-8 +County "NV, White Pine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200330.epw site_zip_code=89301 site_time_zone_utc_offset=-8 +County "NY, Albany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600010.epw site_zip_code=12203 site_time_zone_utc_offset=-5 +County "NY, Allegany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600030.epw site_zip_code=14895 site_time_zone_utc_offset=-5 +County "NY, Bronx County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600050.epw site_zip_code=10467 site_time_zone_utc_offset=-5 +County "NY, Broome County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600070.epw site_zip_code=13760 site_time_zone_utc_offset=-5 +County "NY, Cattaraugus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600090.epw site_zip_code=14760 site_time_zone_utc_offset=-5 +County "NY, Cayuga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600110.epw site_zip_code=13021 site_time_zone_utc_offset=-5 +County "NY, Chautauqua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600130.epw site_zip_code=14701 site_time_zone_utc_offset=-5 +County "NY, Chemung County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600150.epw site_zip_code=14845 site_time_zone_utc_offset=-5 +County "NY, Chenango County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600170.epw site_zip_code=13815 site_time_zone_utc_offset=-5 +County "NY, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600190.epw site_zip_code=12901 site_time_zone_utc_offset=-5 +County "NY, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600210.epw site_zip_code=12534 site_time_zone_utc_offset=-5 +County "NY, Cortland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600230.epw site_zip_code=13045 site_time_zone_utc_offset=-5 +County "NY, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600250.epw site_zip_code=13856 site_time_zone_utc_offset=-5 +County "NY, Dutchess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600270.epw site_zip_code=12601 site_time_zone_utc_offset=-5 +County "NY, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600290.epw site_zip_code=14221 site_time_zone_utc_offset=-5 +County "NY, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600310.epw site_zip_code=12946 site_time_zone_utc_offset=-5 +County "NY, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600330.epw site_zip_code=12953 site_time_zone_utc_offset=-5 +County "NY, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600350.epw site_zip_code=12078 site_time_zone_utc_offset=-5 +County "NY, Genesee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600370.epw site_zip_code=14020 site_time_zone_utc_offset=-5 +County "NY, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600390.epw site_zip_code=12414 site_time_zone_utc_offset=-5 +County "NY, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600410.epw site_zip_code=12842 site_time_zone_utc_offset=-5 +County "NY, Herkimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600430.epw site_zip_code=13357 site_time_zone_utc_offset=-5 +County "NY, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600450.epw site_zip_code=13601 site_time_zone_utc_offset=-5 +County "NY, Kings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600470.epw site_zip_code=11226 site_time_zone_utc_offset=-5 +County "NY, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600490.epw site_zip_code=13367 site_time_zone_utc_offset=-5 +County "NY, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600510.epw site_zip_code=14454 site_time_zone_utc_offset=-5 +County "NY, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600530.epw site_zip_code=13032 site_time_zone_utc_offset=-5 +County "NY, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600550.epw site_zip_code=14580 site_time_zone_utc_offset=-5 +County "NY, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600570.epw site_zip_code=12010 site_time_zone_utc_offset=-5 +County "NY, Nassau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600590.epw site_zip_code=11758 site_time_zone_utc_offset=-5 +County "NY, New York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600610.epw site_zip_code=10025 site_time_zone_utc_offset=-5 +County "NY, Niagara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600630.epw site_zip_code=14094 site_time_zone_utc_offset=-5 +County "NY, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600650.epw site_zip_code=13440 site_time_zone_utc_offset=-5 +County "NY, Onondaga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600670.epw site_zip_code=13027 site_time_zone_utc_offset=-5 +County "NY, Ontario County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600690.epw site_zip_code=14424 site_time_zone_utc_offset=-5 +County "NY, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600710.epw site_zip_code=12550 site_time_zone_utc_offset=-5 +County "NY, Orleans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600730.epw site_zip_code=14411 site_time_zone_utc_offset=-5 +County "NY, Oswego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600750.epw site_zip_code=13126 site_time_zone_utc_offset=-5 +County "NY, Otsego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600770.epw site_zip_code=13820 site_time_zone_utc_offset=-5 +County "NY, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600790.epw site_zip_code=10512 site_time_zone_utc_offset=-5 +County "NY, Queens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600810.epw site_zip_code=11375 site_time_zone_utc_offset=-5 +County "NY, Rensselaer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600830.epw site_zip_code=12180 site_time_zone_utc_offset=-5 +County "NY, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600850.epw site_zip_code=10314 site_time_zone_utc_offset=-5 +County "NY, Rockland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600870.epw site_zip_code=10977 site_time_zone_utc_offset=-5 +County "NY, Saratoga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600910.epw site_zip_code=12866 site_time_zone_utc_offset=-5 +County "NY, Schenectady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600930.epw site_zip_code=12306 site_time_zone_utc_offset=-5 +County "NY, Schoharie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600950.epw site_zip_code=12043 site_time_zone_utc_offset=-5 +County "NY, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600970.epw site_zip_code=14891 site_time_zone_utc_offset=-5 +County "NY, Seneca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600990.epw site_zip_code=13148 site_time_zone_utc_offset=-5 +County "NY, St. Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600890.epw site_zip_code=13676 site_time_zone_utc_offset=-5 +County "NY, Steuben County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601010.epw site_zip_code=14830 site_time_zone_utc_offset=-5 +County "NY, Suffolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601030.epw site_zip_code=11746 site_time_zone_utc_offset=-5 +County "NY, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601050.epw site_zip_code=12701 site_time_zone_utc_offset=-5 +County "NY, Tioga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601070.epw site_zip_code=13827 site_time_zone_utc_offset=-5 +County "NY, Tompkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601090.epw site_zip_code=14850 site_time_zone_utc_offset=-5 +County "NY, Ulster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601110.epw site_zip_code=12401 site_time_zone_utc_offset=-5 +County "NY, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601130.epw site_zip_code=12804 site_time_zone_utc_offset=-5 +County "NY, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601150.epw site_zip_code=12839 site_time_zone_utc_offset=-5 +County "NY, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601170.epw site_zip_code=14513 site_time_zone_utc_offset=-5 +County "NY, Westchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601190.epw site_zip_code=10701 site_time_zone_utc_offset=-5 +County "NY, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601210.epw site_zip_code=14569 site_time_zone_utc_offset=-5 +County "NY, Yates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601230.epw site_zip_code=14527 site_time_zone_utc_offset=-5 +County "OH, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900010.epw site_zip_code=45693 site_time_zone_utc_offset=-5 +County "OH, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900030.epw site_zip_code=45805 site_time_zone_utc_offset=-5 +County "OH, Ashland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900050.epw site_zip_code=44805 site_time_zone_utc_offset=-5 +County "OH, Ashtabula County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900070.epw site_zip_code=44004 site_time_zone_utc_offset=-5 +County "OH, Athens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900090.epw site_zip_code=45701 site_time_zone_utc_offset=-5 +County "OH, Auglaize County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900110.epw site_zip_code=45895 site_time_zone_utc_offset=-5 +County "OH, Belmont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900130.epw site_zip_code=43950 site_time_zone_utc_offset=-5 +County "OH, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900150.epw site_zip_code=45121 site_time_zone_utc_offset=-5 +County "OH, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900170.epw site_zip_code=45011 site_time_zone_utc_offset=-5 +County "OH, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900190.epw site_zip_code=44615 site_time_zone_utc_offset=-5 +County "OH, Champaign County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900210.epw site_zip_code=43078 site_time_zone_utc_offset=-5 +County "OH, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900230.epw site_zip_code=45503 site_time_zone_utc_offset=-5 +County "OH, Clermont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900250.epw site_zip_code=45103 site_time_zone_utc_offset=-5 +County "OH, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900270.epw site_zip_code=45177 site_time_zone_utc_offset=-5 +County "OH, Columbiana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900290.epw site_zip_code=43920 site_time_zone_utc_offset=-5 +County "OH, Coshocton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900310.epw site_zip_code=43812 site_time_zone_utc_offset=-5 +County "OH, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900330.epw site_zip_code=44820 site_time_zone_utc_offset=-5 +County "OH, Cuyahoga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900350.epw site_zip_code=44107 site_time_zone_utc_offset=-5 +County "OH, Darke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900370.epw site_zip_code=45331 site_time_zone_utc_offset=-5 +County "OH, Defiance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900390.epw site_zip_code=43512 site_time_zone_utc_offset=-5 +County "OH, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900410.epw site_zip_code=43015 site_time_zone_utc_offset=-5 +County "OH, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900430.epw site_zip_code=44870 site_time_zone_utc_offset=-5 +County "OH, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900450.epw site_zip_code=43130 site_time_zone_utc_offset=-5 +County "OH, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900470.epw site_zip_code=43160 site_time_zone_utc_offset=-5 +County "OH, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900490.epw site_zip_code=43081 site_time_zone_utc_offset=-5 +County "OH, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900510.epw site_zip_code=43567 site_time_zone_utc_offset=-5 +County "OH, Gallia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900530.epw site_zip_code=45631 site_time_zone_utc_offset=-5 +County "OH, Geauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900550.epw site_zip_code=44024 site_time_zone_utc_offset=-5 +County "OH, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900570.epw site_zip_code=45324 site_time_zone_utc_offset=-5 +County "OH, Guernsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900590.epw site_zip_code=43725 site_time_zone_utc_offset=-5 +County "OH, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900610.epw site_zip_code=45238 site_time_zone_utc_offset=-5 +County "OH, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900630.epw site_zip_code=45840 site_time_zone_utc_offset=-5 +County "OH, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900650.epw site_zip_code=43326 site_time_zone_utc_offset=-5 +County "OH, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900670.epw site_zip_code=43907 site_time_zone_utc_offset=-5 +County "OH, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900690.epw site_zip_code=43545 site_time_zone_utc_offset=-5 +County "OH, Highland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900710.epw site_zip_code=45133 site_time_zone_utc_offset=-5 +County "OH, Hocking County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900730.epw site_zip_code=43138 site_time_zone_utc_offset=-5 +County "OH, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900750.epw site_zip_code=44654 site_time_zone_utc_offset=-5 +County "OH, Huron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900770.epw site_zip_code=44857 site_time_zone_utc_offset=-5 +County "OH, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900790.epw site_zip_code=45640 site_time_zone_utc_offset=-5 +County "OH, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900810.epw site_zip_code=43952 site_time_zone_utc_offset=-5 +County "OH, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900830.epw site_zip_code=43050 site_time_zone_utc_offset=-5 +County "OH, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900850.epw site_zip_code=44060 site_time_zone_utc_offset=-5 +County "OH, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900870.epw site_zip_code=45638 site_time_zone_utc_offset=-5 +County "OH, Licking County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900890.epw site_zip_code=43055 site_time_zone_utc_offset=-5 +County "OH, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900910.epw site_zip_code=43311 site_time_zone_utc_offset=-5 +County "OH, Lorain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900930.epw site_zip_code=44035 site_time_zone_utc_offset=-5 +County "OH, Lucas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900950.epw site_zip_code=43615 site_time_zone_utc_offset=-5 +County "OH, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900970.epw site_zip_code=43140 site_time_zone_utc_offset=-5 +County "OH, Mahoning County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900990.epw site_zip_code=44512 site_time_zone_utc_offset=-5 +County "OH, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901010.epw site_zip_code=43302 site_time_zone_utc_offset=-5 +County "OH, Medina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901030.epw site_zip_code=44256 site_time_zone_utc_offset=-5 +County "OH, Meigs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901050.epw site_zip_code=45769 site_time_zone_utc_offset=-5 +County "OH, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901070.epw site_zip_code=45822 site_time_zone_utc_offset=-5 +County "OH, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901090.epw site_zip_code=45373 site_time_zone_utc_offset=-5 +County "OH, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901110.epw site_zip_code=43793 site_time_zone_utc_offset=-5 +County "OH, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901130.epw site_zip_code=45424 site_time_zone_utc_offset=-5 +County "OH, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901150.epw site_zip_code=43756 site_time_zone_utc_offset=-5 +County "OH, Morrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901170.epw site_zip_code=43338 site_time_zone_utc_offset=-5 +County "OH, Muskingum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901190.epw site_zip_code=43701 site_time_zone_utc_offset=-5 +County "OH, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901210.epw site_zip_code=43724 site_time_zone_utc_offset=-5 +County "OH, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901230.epw site_zip_code=43452 site_time_zone_utc_offset=-5 +County "OH, Paulding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901250.epw site_zip_code=45879 site_time_zone_utc_offset=-5 +County "OH, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901270.epw site_zip_code=43764 site_time_zone_utc_offset=-5 +County "OH, Pickaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901290.epw site_zip_code=43113 site_time_zone_utc_offset=-5 +County "OH, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901310.epw site_zip_code=45690 site_time_zone_utc_offset=-5 +County "OH, Portage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901330.epw site_zip_code=44240 site_time_zone_utc_offset=-5 +County "OH, Preble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901350.epw site_zip_code=45320 site_time_zone_utc_offset=-5 +County "OH, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901370.epw site_zip_code=45875 site_time_zone_utc_offset=-5 +County "OH, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901390.epw site_zip_code=44903 site_time_zone_utc_offset=-5 +County "OH, Ross County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901410.epw site_zip_code=45601 site_time_zone_utc_offset=-5 +County "OH, Sandusky County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901430.epw site_zip_code=43420 site_time_zone_utc_offset=-5 +County "OH, Scioto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901450.epw site_zip_code=45662 site_time_zone_utc_offset=-5 +County "OH, Seneca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901470.epw site_zip_code=44883 site_time_zone_utc_offset=-5 +County "OH, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901490.epw site_zip_code=45365 site_time_zone_utc_offset=-5 +County "OH, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901510.epw site_zip_code=44646 site_time_zone_utc_offset=-5 +County "OH, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901530.epw site_zip_code=44224 site_time_zone_utc_offset=-5 +County "OH, Trumbull County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901550.epw site_zip_code=44483 site_time_zone_utc_offset=-5 +County "OH, Tuscarawas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901570.epw site_zip_code=44663 site_time_zone_utc_offset=-5 +County "OH, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901590.epw site_zip_code=43040 site_time_zone_utc_offset=-5 +County "OH, Van Wert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901610.epw site_zip_code=45891 site_time_zone_utc_offset=-5 +County "OH, Vinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901630.epw site_zip_code=45651 site_time_zone_utc_offset=-5 +County "OH, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901650.epw site_zip_code=45040 site_time_zone_utc_offset=-5 +County "OH, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901670.epw site_zip_code=45750 site_time_zone_utc_offset=-5 +County "OH, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901690.epw site_zip_code=44691 site_time_zone_utc_offset=-5 +County "OH, Williams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901710.epw site_zip_code=43506 site_time_zone_utc_offset=-5 +County "OH, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901730.epw site_zip_code=43551 site_time_zone_utc_offset=-5 +County "OH, Wyandot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901750.epw site_zip_code=43351 site_time_zone_utc_offset=-5 +County "OK, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000010.epw site_zip_code=74960 site_time_zone_utc_offset=-6 +County "OK, Alfalfa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000030.epw site_zip_code=73728 site_time_zone_utc_offset=-6 +County "OK, Atoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000050.epw site_zip_code=74525 site_time_zone_utc_offset=-6 +County "OK, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000070.epw site_zip_code=73932 site_time_zone_utc_offset=-6 +County "OK, Beckham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000090.epw site_zip_code=73644 site_time_zone_utc_offset=-6 +County "OK, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000110.epw site_zip_code=73772 site_time_zone_utc_offset=-6 +County "OK, Bryan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000130.epw site_zip_code=74701 site_time_zone_utc_offset=-6 +County "OK, Caddo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000150.epw site_zip_code=73005 site_time_zone_utc_offset=-6 +County "OK, Canadian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000170.epw site_zip_code=73099 site_time_zone_utc_offset=-6 +County "OK, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000190.epw site_zip_code=73401 site_time_zone_utc_offset=-6 +County "OK, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000210.epw site_zip_code=74464 site_time_zone_utc_offset=-6 +County "OK, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000230.epw site_zip_code=74743 site_time_zone_utc_offset=-6 +County "OK, Cimarron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000250.epw site_zip_code=73933 site_time_zone_utc_offset=-6 +County "OK, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000270.epw site_zip_code=73160 site_time_zone_utc_offset=-6 +County "OK, Coal County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000290.epw site_zip_code=74538 site_time_zone_utc_offset=-6 +County "OK, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000310.epw site_zip_code=73505 site_time_zone_utc_offset=-6 +County "OK, Cotton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000330.epw site_zip_code=73572 site_time_zone_utc_offset=-6 +County "OK, Craig County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000350.epw site_zip_code=74301 site_time_zone_utc_offset=-6 +County "OK, Creek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000370.epw site_zip_code=74066 site_time_zone_utc_offset=-6 +County "OK, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000390.epw site_zip_code=73096 site_time_zone_utc_offset=-6 +County "OK, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000410.epw site_zip_code=74344 site_time_zone_utc_offset=-6 +County "OK, Dewey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000430.epw site_zip_code=73859 site_time_zone_utc_offset=-6 +County "OK, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000450.epw site_zip_code=73858 site_time_zone_utc_offset=-6 +County "OK, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000470.epw site_zip_code=73703 site_time_zone_utc_offset=-6 +County "OK, Garvin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000490.epw site_zip_code=73075 site_time_zone_utc_offset=-6 +County "OK, Grady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000510.epw site_zip_code=73018 site_time_zone_utc_offset=-6 +County "OK, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000530.epw site_zip_code=73759 site_time_zone_utc_offset=-6 +County "OK, Greer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000550.epw site_zip_code=73554 site_time_zone_utc_offset=-6 +County "OK, Harmon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000570.epw site_zip_code=73550 site_time_zone_utc_offset=-6 +County "OK, Harper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000590.epw site_zip_code=73848 site_time_zone_utc_offset=-6 +County "OK, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000610.epw site_zip_code=74462 site_time_zone_utc_offset=-6 +County "OK, Hughes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000630.epw site_zip_code=74848 site_time_zone_utc_offset=-6 +County "OK, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000650.epw site_zip_code=73521 site_time_zone_utc_offset=-6 +County "OK, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000670.epw site_zip_code=73573 site_time_zone_utc_offset=-6 +County "OK, Johnston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000690.epw site_zip_code=73460 site_time_zone_utc_offset=-6 +County "OK, Kay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000710.epw site_zip_code=74601 site_time_zone_utc_offset=-6 +County "OK, Kingfisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000730.epw site_zip_code=73750 site_time_zone_utc_offset=-6 +County "OK, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000750.epw site_zip_code=73651 site_time_zone_utc_offset=-6 +County "OK, Latimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000770.epw site_zip_code=74578 site_time_zone_utc_offset=-6 +County "OK, Le Flore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000790.epw site_zip_code=74953 site_time_zone_utc_offset=-6 +County "OK, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000810.epw site_zip_code=74834 site_time_zone_utc_offset=-6 +County "OK, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000830.epw site_zip_code=73044 site_time_zone_utc_offset=-6 +County "OK, Love County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000850.epw site_zip_code=73448 site_time_zone_utc_offset=-6 +County "OK, Major County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000930.epw site_zip_code=73737 site_time_zone_utc_offset=-6 +County "OK, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000950.epw site_zip_code=73439 site_time_zone_utc_offset=-6 +County "OK, Mayes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000970.epw site_zip_code=74361 site_time_zone_utc_offset=-6 +County "OK, McClain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000870.epw site_zip_code=73080 site_time_zone_utc_offset=-6 +County "OK, McCurtain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000890.epw site_zip_code=74728 site_time_zone_utc_offset=-6 +County "OK, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000910.epw site_zip_code=74432 site_time_zone_utc_offset=-6 +County "OK, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000990.epw site_zip_code=73086 site_time_zone_utc_offset=-6 +County "OK, Muskogee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001010.epw site_zip_code=74403 site_time_zone_utc_offset=-6 +County "OK, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001030.epw site_zip_code=73077 site_time_zone_utc_offset=-6 +County "OK, Nowata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001050.epw site_zip_code=74048 site_time_zone_utc_offset=-6 +County "OK, Okfuskee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001070.epw site_zip_code=74859 site_time_zone_utc_offset=-6 +County "OK, Oklahoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001090.epw site_zip_code=73013 site_time_zone_utc_offset=-6 +County "OK, Okmulgee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001110.epw site_zip_code=74447 site_time_zone_utc_offset=-6 +County "OK, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001130.epw site_zip_code=74070 site_time_zone_utc_offset=-6 +County "OK, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001150.epw site_zip_code=74354 site_time_zone_utc_offset=-6 +County "OK, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001170.epw site_zip_code=74020 site_time_zone_utc_offset=-6 +County "OK, Payne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001190.epw site_zip_code=74074 site_time_zone_utc_offset=-6 +County "OK, Pittsburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001210.epw site_zip_code=74501 site_time_zone_utc_offset=-6 +County "OK, Pontotoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001230.epw site_zip_code=74820 site_time_zone_utc_offset=-6 +County "OK, Pottawatomie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001250.epw site_zip_code=74801 site_time_zone_utc_offset=-6 +County "OK, Pushmataha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001270.epw site_zip_code=74523 site_time_zone_utc_offset=-6 +County "OK, Roger Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001290.epw site_zip_code=73628 site_time_zone_utc_offset=-6 +County "OK, Rogers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001310.epw site_zip_code=74017 site_time_zone_utc_offset=-6 +County "OK, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001330.epw site_zip_code=74868 site_time_zone_utc_offset=-6 +County "OK, Sequoyah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001350.epw site_zip_code=74955 site_time_zone_utc_offset=-6 +County "OK, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001370.epw site_zip_code=73533 site_time_zone_utc_offset=-6 +County "OK, Texas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001390.epw site_zip_code=73942 site_time_zone_utc_offset=-6 +County "OK, Tillman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001410.epw site_zip_code=73542 site_time_zone_utc_offset=-6 +County "OK, Tulsa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001430.epw site_zip_code=74012 site_time_zone_utc_offset=-6 +County "OK, Wagoner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001450.epw site_zip_code=74014 site_time_zone_utc_offset=-6 +County "OK, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001470.epw site_zip_code=74006 site_time_zone_utc_offset=-6 +County "OK, Washita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001490.epw site_zip_code=73632 site_time_zone_utc_offset=-6 +County "OK, Woods County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001510.epw site_zip_code=73717 site_time_zone_utc_offset=-6 +County "OK, Woodward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001530.epw site_zip_code=73801 site_time_zone_utc_offset=-6 +County "OR, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100010.epw site_zip_code=97814 site_time_zone_utc_offset=-8 +County "OR, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100030.epw site_zip_code=97330 site_time_zone_utc_offset=-8 +County "OR, Clackamas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100050.epw site_zip_code=97045 site_time_zone_utc_offset=-8 +County "OR, Clatsop County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100070.epw site_zip_code=97103 site_time_zone_utc_offset=-8 +County "OR, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100090.epw site_zip_code=97051 site_time_zone_utc_offset=-8 +County "OR, Coos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100110.epw site_zip_code=97420 site_time_zone_utc_offset=-8 +County "OR, Crook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100130.epw site_zip_code=97754 site_time_zone_utc_offset=-8 +County "OR, Curry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100150.epw site_zip_code=97415 site_time_zone_utc_offset=-8 +County "OR, Deschutes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100170.epw site_zip_code=97702 site_time_zone_utc_offset=-8 +County "OR, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100190.epw site_zip_code=97471 site_time_zone_utc_offset=-8 +County "OR, Gilliam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100210.epw site_zip_code=97823 site_time_zone_utc_offset=-8 +County "OR, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100230.epw site_zip_code=97845 site_time_zone_utc_offset=-8 +County "OR, Harney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100250.epw site_zip_code=97720 site_time_zone_utc_offset=-8 +County "OR, Hood River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100270.epw site_zip_code=97031 site_time_zone_utc_offset=-8 +County "OR, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100290.epw site_zip_code=97504 site_time_zone_utc_offset=-8 +County "OR, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100310.epw site_zip_code=97741 site_time_zone_utc_offset=-8 +County "OR, Josephine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100330.epw site_zip_code=97526 site_time_zone_utc_offset=-8 +County "OR, Klamath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100350.epw site_zip_code=97603 site_time_zone_utc_offset=-8 +County "OR, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100370.epw site_zip_code=97630 site_time_zone_utc_offset=-8 +County "OR, Lane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100390.epw site_zip_code=97402 site_time_zone_utc_offset=-8 +County "OR, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100410.epw site_zip_code=97367 site_time_zone_utc_offset=-8 +County "OR, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100430.epw site_zip_code=97322 site_time_zone_utc_offset=-8 +County "OR, Malheur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100450.epw site_zip_code=97914 site_time_zone_utc_offset=-7 +County "OR, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100470.epw site_zip_code=97301 site_time_zone_utc_offset=-8 +County "OR, Morrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100490.epw site_zip_code=97818 site_time_zone_utc_offset=-8 +County "OR, Multnomah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100510.epw site_zip_code=97206 site_time_zone_utc_offset=-8 +County "OR, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100530.epw site_zip_code=97304 site_time_zone_utc_offset=-8 +County "OR, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100550.epw site_zip_code=97065 site_time_zone_utc_offset=-8 +County "OR, Tillamook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100570.epw site_zip_code=97141 site_time_zone_utc_offset=-8 +County "OR, Umatilla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100590.epw site_zip_code=97838 site_time_zone_utc_offset=-8 +County "OR, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100610.epw site_zip_code=97850 site_time_zone_utc_offset=-8 +County "OR, Wallowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100630.epw site_zip_code=97828 site_time_zone_utc_offset=-8 +County "OR, Wasco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100650.epw site_zip_code=97058 site_time_zone_utc_offset=-8 +County "OR, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100670.epw site_zip_code=97229 site_time_zone_utc_offset=-8 +County "OR, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100690.epw site_zip_code=97830 site_time_zone_utc_offset=-8 +County "OR, Yamhill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100710.epw site_zip_code=97128 site_time_zone_utc_offset=-8 +County "PA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200010.epw site_zip_code=17325 site_time_zone_utc_offset=-5 +County "PA, Allegheny County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200030.epw site_zip_code=15237 site_time_zone_utc_offset=-5 +County "PA, Armstrong County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200050.epw site_zip_code=16201 site_time_zone_utc_offset=-5 +County "PA, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200070.epw site_zip_code=15001 site_time_zone_utc_offset=-5 +County "PA, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200090.epw site_zip_code=15522 site_time_zone_utc_offset=-5 +County "PA, Berks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200110.epw site_zip_code=19606 site_time_zone_utc_offset=-5 +County "PA, Blair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200130.epw site_zip_code=16601 site_time_zone_utc_offset=-5 +County "PA, Bradford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200150.epw site_zip_code=18840 site_time_zone_utc_offset=-5 +County "PA, Bucks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200170.epw site_zip_code=19020 site_time_zone_utc_offset=-5 +County "PA, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200190.epw site_zip_code=16001 site_time_zone_utc_offset=-5 +County "PA, Cambria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200210.epw site_zip_code=15905 site_time_zone_utc_offset=-5 +County "PA, Cameron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200230.epw site_zip_code=15834 site_time_zone_utc_offset=-5 +County "PA, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200250.epw site_zip_code=18235 site_time_zone_utc_offset=-5 +County "PA, Centre County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200270.epw site_zip_code=16801 site_time_zone_utc_offset=-5 +County "PA, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200290.epw site_zip_code=19380 site_time_zone_utc_offset=-5 +County "PA, Clarion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200310.epw site_zip_code=16214 site_time_zone_utc_offset=-5 +County "PA, Clearfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200330.epw site_zip_code=15801 site_time_zone_utc_offset=-5 +County "PA, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200350.epw site_zip_code=17745 site_time_zone_utc_offset=-5 +County "PA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200370.epw site_zip_code=17815 site_time_zone_utc_offset=-5 +County "PA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200390.epw site_zip_code=16335 site_time_zone_utc_offset=-5 +County "PA, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200410.epw site_zip_code=17055 site_time_zone_utc_offset=-5 +County "PA, Dauphin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200430.epw site_zip_code=17112 site_time_zone_utc_offset=-5 +County "PA, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200450.epw site_zip_code=19063 site_time_zone_utc_offset=-5 +County "PA, Elk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200470.epw site_zip_code=15857 site_time_zone_utc_offset=-5 +County "PA, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200490.epw site_zip_code=16509 site_time_zone_utc_offset=-5 +County "PA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200510.epw site_zip_code=15401 site_time_zone_utc_offset=-5 +County "PA, Forest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200530.epw site_zip_code=16353 site_time_zone_utc_offset=-5 +County "PA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200550.epw site_zip_code=17268 site_time_zone_utc_offset=-5 +County "PA, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200570.epw site_zip_code=17233 site_time_zone_utc_offset=-5 +County "PA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200590.epw site_zip_code=15370 site_time_zone_utc_offset=-5 +County "PA, Huntingdon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200610.epw site_zip_code=16652 site_time_zone_utc_offset=-5 +County "PA, Indiana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200630.epw site_zip_code=15701 site_time_zone_utc_offset=-5 +County "PA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200650.epw site_zip_code=15767 site_time_zone_utc_offset=-5 +County "PA, Juniata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200670.epw site_zip_code=17059 site_time_zone_utc_offset=-5 +County "PA, Lackawanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200690.epw site_zip_code=18505 site_time_zone_utc_offset=-5 +County "PA, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200710.epw site_zip_code=17603 site_time_zone_utc_offset=-5 +County "PA, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200730.epw site_zip_code=16101 site_time_zone_utc_offset=-5 +County "PA, Lebanon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200750.epw site_zip_code=17042 site_time_zone_utc_offset=-5 +County "PA, Lehigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200770.epw site_zip_code=18103 site_time_zone_utc_offset=-5 +County "PA, Luzerne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200790.epw site_zip_code=18702 site_time_zone_utc_offset=-5 +County "PA, Lycoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200810.epw site_zip_code=17701 site_time_zone_utc_offset=-5 +County "PA, McKean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200830.epw site_zip_code=16701 site_time_zone_utc_offset=-5 +County "PA, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200850.epw site_zip_code=16148 site_time_zone_utc_offset=-5 +County "PA, Mifflin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200870.epw site_zip_code=17044 site_time_zone_utc_offset=-5 +County "PA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200890.epw site_zip_code=18301 site_time_zone_utc_offset=-5 +County "PA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200910.epw site_zip_code=19446 site_time_zone_utc_offset=-5 +County "PA, Montour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200930.epw site_zip_code=17821 site_time_zone_utc_offset=-5 +County "PA, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200950.epw site_zip_code=18042 site_time_zone_utc_offset=-5 +County "PA, Northumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200970.epw site_zip_code=17801 site_time_zone_utc_offset=-5 +County "PA, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200990.epw site_zip_code=17020 site_time_zone_utc_offset=-5 +County "PA, Philadelphia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201010.epw site_zip_code=19143 site_time_zone_utc_offset=-5 +County "PA, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201030.epw site_zip_code=18337 site_time_zone_utc_offset=-5 +County "PA, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201050.epw site_zip_code=16915 site_time_zone_utc_offset=-5 +County "PA, Schuylkill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201070.epw site_zip_code=17901 site_time_zone_utc_offset=-5 +County "PA, Snyder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201090.epw site_zip_code=17870 site_time_zone_utc_offset=-5 +County "PA, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201110.epw site_zip_code=15501 site_time_zone_utc_offset=-5 +County "PA, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201130.epw site_zip_code=18614 site_time_zone_utc_offset=-5 +County "PA, Susquehanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201150.epw site_zip_code=18801 site_time_zone_utc_offset=-5 +County "PA, Tioga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201170.epw site_zip_code=16901 site_time_zone_utc_offset=-5 +County "PA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201190.epw site_zip_code=17837 site_time_zone_utc_offset=-5 +County "PA, Venango County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201210.epw site_zip_code=16301 site_time_zone_utc_offset=-5 +County "PA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201230.epw site_zip_code=16365 site_time_zone_utc_offset=-5 +County "PA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201250.epw site_zip_code=15301 site_time_zone_utc_offset=-5 +County "PA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201270.epw site_zip_code=18431 site_time_zone_utc_offset=-5 +County "PA, Westmoreland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201290.epw site_zip_code=15601 site_time_zone_utc_offset=-5 +County "PA, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201310.epw site_zip_code=18657 site_time_zone_utc_offset=-5 +County "PA, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201330.epw site_zip_code=17331 site_time_zone_utc_offset=-5 +County "RI, Bristol County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400010.epw site_zip_code=02809 site_time_zone_utc_offset=-5 +County "RI, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400030.epw site_zip_code=02893 site_time_zone_utc_offset=-5 +County "RI, Newport County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400050.epw site_zip_code=02840 site_time_zone_utc_offset=-5 +County "RI, Providence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400070.epw site_zip_code=02860 site_time_zone_utc_offset=-5 +County "RI, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400090.epw site_zip_code=02891 site_time_zone_utc_offset=-5 +County "SC, Abbeville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500010.epw site_zip_code=29620 site_time_zone_utc_offset=-5 +County "SC, Aiken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500030.epw site_zip_code=29803 site_time_zone_utc_offset=-5 +County "SC, Allendale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500050.epw site_zip_code=29810 site_time_zone_utc_offset=-5 +County "SC, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500070.epw site_zip_code=29621 site_time_zone_utc_offset=-5 +County "SC, Bamberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500090.epw site_zip_code=29003 site_time_zone_utc_offset=-5 +County "SC, Barnwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500110.epw site_zip_code=29812 site_time_zone_utc_offset=-5 +County "SC, Beaufort County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500130.epw site_zip_code=29910 site_time_zone_utc_offset=-5 +County "SC, Berkeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500150.epw site_zip_code=29445 site_time_zone_utc_offset=-5 +County "SC, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500170.epw site_zip_code=29135 site_time_zone_utc_offset=-5 +County "SC, Charleston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500190.epw site_zip_code=29464 site_time_zone_utc_offset=-5 +County "SC, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500210.epw site_zip_code=29340 site_time_zone_utc_offset=-5 +County "SC, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500230.epw site_zip_code=29706 site_time_zone_utc_offset=-5 +County "SC, Chesterfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500250.epw site_zip_code=29520 site_time_zone_utc_offset=-5 +County "SC, Clarendon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500270.epw site_zip_code=29102 site_time_zone_utc_offset=-5 +County "SC, Colleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500290.epw site_zip_code=29488 site_time_zone_utc_offset=-5 +County "SC, Darlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500310.epw site_zip_code=29550 site_time_zone_utc_offset=-5 +County "SC, Dillon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500330.epw site_zip_code=29536 site_time_zone_utc_offset=-5 +County "SC, Dorchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500350.epw site_zip_code=29485 site_time_zone_utc_offset=-5 +County "SC, Edgefield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500370.epw site_zip_code=29860 site_time_zone_utc_offset=-5 +County "SC, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500390.epw site_zip_code=29180 site_time_zone_utc_offset=-5 +County "SC, Florence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500410.epw site_zip_code=29501 site_time_zone_utc_offset=-5 +County "SC, Georgetown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500430.epw site_zip_code=29440 site_time_zone_utc_offset=-5 +County "SC, Greenville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500450.epw site_zip_code=29681 site_time_zone_utc_offset=-5 +County "SC, Greenwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500470.epw site_zip_code=29649 site_time_zone_utc_offset=-5 +County "SC, Hampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500490.epw site_zip_code=29918 site_time_zone_utc_offset=-5 +County "SC, Horry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500510.epw site_zip_code=29579 site_time_zone_utc_offset=-5 +County "SC, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500530.epw site_zip_code=29936 site_time_zone_utc_offset=-5 +County "SC, Kershaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500550.epw site_zip_code=29020 site_time_zone_utc_offset=-5 +County "SC, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500570.epw site_zip_code=29720 site_time_zone_utc_offset=-5 +County "SC, Laurens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500590.epw site_zip_code=29360 site_time_zone_utc_offset=-5 +County "SC, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500610.epw site_zip_code=29010 site_time_zone_utc_offset=-5 +County "SC, Lexington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500630.epw site_zip_code=29072 site_time_zone_utc_offset=-5 +County "SC, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500670.epw site_zip_code=29571 site_time_zone_utc_offset=-5 +County "SC, Marlboro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500690.epw site_zip_code=29512 site_time_zone_utc_offset=-5 +County "SC, McCormick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500650.epw site_zip_code=29835 site_time_zone_utc_offset=-5 +County "SC, Newberry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500710.epw site_zip_code=29108 site_time_zone_utc_offset=-5 +County "SC, Oconee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500730.epw site_zip_code=29678 site_time_zone_utc_offset=-5 +County "SC, Orangeburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500750.epw site_zip_code=29115 site_time_zone_utc_offset=-5 +County "SC, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500770.epw site_zip_code=29640 site_time_zone_utc_offset=-5 +County "SC, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500790.epw site_zip_code=29223 site_time_zone_utc_offset=-5 +County "SC, Saluda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500810.epw site_zip_code=29138 site_time_zone_utc_offset=-5 +County "SC, Spartanburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500830.epw site_zip_code=29301 site_time_zone_utc_offset=-5 +County "SC, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500850.epw site_zip_code=29150 site_time_zone_utc_offset=-5 +County "SC, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500870.epw site_zip_code=29379 site_time_zone_utc_offset=-5 +County "SC, Williamsburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500890.epw site_zip_code=29556 site_time_zone_utc_offset=-5 +County "SC, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500910.epw site_zip_code=29732 site_time_zone_utc_offset=-5 +County "SD, Aurora County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600030.epw site_zip_code=57368 site_time_zone_utc_offset=-6 +County "SD, Beadle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600050.epw site_zip_code=57350 site_time_zone_utc_offset=-6 +County "SD, Bennett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600070.epw site_zip_code=57551 site_time_zone_utc_offset=-7 +County "SD, Bon Homme County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600090.epw site_zip_code=57066 site_time_zone_utc_offset=-6 +County "SD, Brookings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600110.epw site_zip_code=57006 site_time_zone_utc_offset=-6 +County "SD, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600130.epw site_zip_code=57401 site_time_zone_utc_offset=-6 +County "SD, Brule County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600150.epw site_zip_code=57325 site_time_zone_utc_offset=-6 +County "SD, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600170.epw site_zip_code=57341 site_time_zone_utc_offset=-6 +County "SD, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600190.epw site_zip_code=57717 site_time_zone_utc_offset=-7 +County "SD, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600210.epw site_zip_code=57632 site_time_zone_utc_offset=-6 +County "SD, Charles Mix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600230.epw site_zip_code=57380 site_time_zone_utc_offset=-6 +County "SD, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600250.epw site_zip_code=57225 site_time_zone_utc_offset=-6 +County "SD, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600270.epw site_zip_code=57069 site_time_zone_utc_offset=-6 +County "SD, Codington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600290.epw site_zip_code=57201 site_time_zone_utc_offset=-6 +County "SD, Corson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600310.epw site_zip_code=57642 site_time_zone_utc_offset=-7 +County "SD, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600330.epw site_zip_code=57730 site_time_zone_utc_offset=-7 +County "SD, Davison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600350.epw site_zip_code=57301 site_time_zone_utc_offset=-6 +County "SD, Day County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600370.epw site_zip_code=57274 site_time_zone_utc_offset=-6 +County "SD, Deuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600390.epw site_zip_code=57226 site_time_zone_utc_offset=-6 +County "SD, Dewey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600410.epw site_zip_code=57625 site_time_zone_utc_offset=-7 +County "SD, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600430.epw site_zip_code=57328 site_time_zone_utc_offset=-6 +County "SD, Edmunds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600450.epw site_zip_code=57451 site_time_zone_utc_offset=-6 +County "SD, Fall River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600470.epw site_zip_code=57747 site_time_zone_utc_offset=-7 +County "SD, Faulk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600490.epw site_zip_code=57438 site_time_zone_utc_offset=-6 +County "SD, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600510.epw site_zip_code=57252 site_time_zone_utc_offset=-6 +County "SD, Gregory County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600530.epw site_zip_code=57533 site_time_zone_utc_offset=-6 +County "SD, Haakon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600550.epw site_zip_code=57552 site_time_zone_utc_offset=-7 +County "SD, Hamlin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600570.epw site_zip_code=57223 site_time_zone_utc_offset=-6 +County "SD, Hand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600590.epw site_zip_code=57362 site_time_zone_utc_offset=-6 +County "SD, Hanson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600610.epw site_zip_code=57311 site_time_zone_utc_offset=-6 +County "SD, Harding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600630.epw site_zip_code=57720 site_time_zone_utc_offset=-7 +County "SD, Hughes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600650.epw site_zip_code=57501 site_time_zone_utc_offset=-6 +County "SD, Hutchinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600670.epw site_zip_code=57366 site_time_zone_utc_offset=-6 +County "SD, Hyde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600690.epw site_zip_code=57345 site_time_zone_utc_offset=-6 +County "SD, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600710.epw site_zip_code=57543 site_time_zone_utc_offset=-7 +County "SD, Jerauld County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600730.epw site_zip_code=57382 site_time_zone_utc_offset=-6 +County "SD, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600750.epw site_zip_code=57559 site_time_zone_utc_offset=-6 +County "SD, Kingsbury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600770.epw site_zip_code=57231 site_time_zone_utc_offset=-6 +County "SD, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600790.epw site_zip_code=57042 site_time_zone_utc_offset=-6 +County "SD, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600810.epw site_zip_code=57783 site_time_zone_utc_offset=-7 +County "SD, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600830.epw site_zip_code=57108 site_time_zone_utc_offset=-6 +County "SD, Lyman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600850.epw site_zip_code=57569 site_time_zone_utc_offset=-6 +County "SD, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600910.epw site_zip_code=57430 site_time_zone_utc_offset=-6 +County "SD, McCook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600870.epw site_zip_code=57058 site_time_zone_utc_offset=-6 +County "SD, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600890.epw site_zip_code=57437 site_time_zone_utc_offset=-6 +County "SD, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600930.epw site_zip_code=57785 site_time_zone_utc_offset=-7 +County "SD, Mellette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600950.epw site_zip_code=57579 site_time_zone_utc_offset=-6 +County "SD, Miner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600970.epw site_zip_code=57349 site_time_zone_utc_offset=-6 +County "SD, Minnehaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600990.epw site_zip_code=57106 site_time_zone_utc_offset=-6 +County "SD, Moody County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601010.epw site_zip_code=57028 site_time_zone_utc_offset=-6 +County "SD, Oglala Lakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601020.epw site_zip_code=57770 site_time_zone_utc_offset=-7 +County "SD, Pennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601030.epw site_zip_code=57701 site_time_zone_utc_offset=-7 +County "SD, Perkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601050.epw site_zip_code=57638 site_time_zone_utc_offset=-7 +County "SD, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601070.epw site_zip_code=57442 site_time_zone_utc_offset=-6 +County "SD, Roberts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601090.epw site_zip_code=57262 site_time_zone_utc_offset=-6 +County "SD, Sanborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601110.epw site_zip_code=57385 site_time_zone_utc_offset=-6 +County "SD, Spink County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601150.epw site_zip_code=57469 site_time_zone_utc_offset=-6 +County "SD, Stanley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601170.epw site_zip_code=57532 site_time_zone_utc_offset=-7 +County "SD, Sully County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601190.epw site_zip_code=57564 site_time_zone_utc_offset=-6 +County "SD, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601210.epw site_zip_code=57555 site_time_zone_utc_offset=-6 +County "SD, Tripp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601230.epw site_zip_code=57580 site_time_zone_utc_offset=-6 +County "SD, Turner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601250.epw site_zip_code=57053 site_time_zone_utc_offset=-6 +County "SD, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601270.epw site_zip_code=57049 site_time_zone_utc_offset=-6 +County "SD, Walworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601290.epw site_zip_code=57601 site_time_zone_utc_offset=-6 +County "SD, Yankton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601350.epw site_zip_code=57078 site_time_zone_utc_offset=-6 +County "SD, Ziebach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601370.epw site_zip_code=57623 site_time_zone_utc_offset=-7 +County "TN, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700010.epw site_zip_code=37830 site_time_zone_utc_offset=-5 +County "TN, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700030.epw site_zip_code=37160 site_time_zone_utc_offset=-6 +County "TN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700050.epw site_zip_code=38320 site_time_zone_utc_offset=-6 +County "TN, Bledsoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700070.epw site_zip_code=37367 site_time_zone_utc_offset=-6 +County "TN, Blount County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700090.epw site_zip_code=37803 site_time_zone_utc_offset=-5 +County "TN, Bradley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700110.epw site_zip_code=37312 site_time_zone_utc_offset=-5 +County "TN, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700130.epw site_zip_code=37766 site_time_zone_utc_offset=-5 +County "TN, Cannon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700150.epw site_zip_code=37190 site_time_zone_utc_offset=-6 +County "TN, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700170.epw site_zip_code=38344 site_time_zone_utc_offset=-6 +County "TN, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700190.epw site_zip_code=37643 site_time_zone_utc_offset=-5 +County "TN, Cheatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700210.epw site_zip_code=37015 site_time_zone_utc_offset=-6 +County "TN, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700230.epw site_zip_code=38340 site_time_zone_utc_offset=-6 +County "TN, Claiborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700250.epw site_zip_code=37879 site_time_zone_utc_offset=-5 +County "TN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700270.epw site_zip_code=38551 site_time_zone_utc_offset=-6 +County "TN, Cocke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700290.epw site_zip_code=37821 site_time_zone_utc_offset=-5 +County "TN, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700310.epw site_zip_code=37355 site_time_zone_utc_offset=-6 +County "TN, Crockett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700330.epw site_zip_code=38006 site_time_zone_utc_offset=-6 +County "TN, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700350.epw site_zip_code=38555 site_time_zone_utc_offset=-6 +County "TN, Davidson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700370.epw site_zip_code=37013 site_time_zone_utc_offset=-6 +County "TN, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700410.epw site_zip_code=37166 site_time_zone_utc_offset=-6 +County "TN, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700390.epw site_zip_code=38363 site_time_zone_utc_offset=-6 +County "TN, Dickson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700430.epw site_zip_code=37055 site_time_zone_utc_offset=-6 +County "TN, Dyer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700450.epw site_zip_code=38024 site_time_zone_utc_offset=-6 +County "TN, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700470.epw site_zip_code=38060 site_time_zone_utc_offset=-6 +County "TN, Fentress County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700490.epw site_zip_code=38556 site_time_zone_utc_offset=-6 +County "TN, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700510.epw site_zip_code=37398 site_time_zone_utc_offset=-6 +County "TN, Gibson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700530.epw site_zip_code=38343 site_time_zone_utc_offset=-6 +County "TN, Giles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700550.epw site_zip_code=38478 site_time_zone_utc_offset=-6 +County "TN, Grainger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700570.epw site_zip_code=37861 site_time_zone_utc_offset=-5 +County "TN, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700590.epw site_zip_code=37743 site_time_zone_utc_offset=-5 +County "TN, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700610.epw site_zip_code=37387 site_time_zone_utc_offset=-6 +County "TN, Hamblen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700630.epw site_zip_code=37814 site_time_zone_utc_offset=-5 +County "TN, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700650.epw site_zip_code=37421 site_time_zone_utc_offset=-5 +County "TN, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700670.epw site_zip_code=37869 site_time_zone_utc_offset=-5 +County "TN, Hardeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700690.epw site_zip_code=38008 site_time_zone_utc_offset=-6 +County "TN, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700710.epw site_zip_code=38372 site_time_zone_utc_offset=-6 +County "TN, Hawkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700730.epw site_zip_code=37857 site_time_zone_utc_offset=-5 +County "TN, Haywood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700750.epw site_zip_code=38012 site_time_zone_utc_offset=-6 +County "TN, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700770.epw site_zip_code=38351 site_time_zone_utc_offset=-6 +County "TN, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700790.epw site_zip_code=38242 site_time_zone_utc_offset=-6 +County "TN, Hickman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700810.epw site_zip_code=37033 site_time_zone_utc_offset=-6 +County "TN, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700830.epw site_zip_code=37061 site_time_zone_utc_offset=-6 +County "TN, Humphreys County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700850.epw site_zip_code=37185 site_time_zone_utc_offset=-6 +County "TN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700870.epw site_zip_code=38562 site_time_zone_utc_offset=-6 +County "TN, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700890.epw site_zip_code=37725 site_time_zone_utc_offset=-5 +County "TN, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700910.epw site_zip_code=37683 site_time_zone_utc_offset=-5 +County "TN, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700930.epw site_zip_code=37920 site_time_zone_utc_offset=-5 +County "TN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700950.epw site_zip_code=38079 site_time_zone_utc_offset=-6 +County "TN, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700970.epw site_zip_code=38063 site_time_zone_utc_offset=-6 +County "TN, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700990.epw site_zip_code=38464 site_time_zone_utc_offset=-6 +County "TN, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701010.epw site_zip_code=38462 site_time_zone_utc_offset=-6 +County "TN, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701030.epw site_zip_code=37334 site_time_zone_utc_offset=-6 +County "TN, Loudon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701050.epw site_zip_code=37774 site_time_zone_utc_offset=-5 +County "TN, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701110.epw site_zip_code=37083 site_time_zone_utc_offset=-6 +County "TN, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701130.epw site_zip_code=38305 site_time_zone_utc_offset=-6 +County "TN, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701150.epw site_zip_code=37397 site_time_zone_utc_offset=-6 +County "TN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701170.epw site_zip_code=37091 site_time_zone_utc_offset=-6 +County "TN, Maury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701190.epw site_zip_code=38401 site_time_zone_utc_offset=-6 +County "TN, McMinn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701070.epw site_zip_code=37303 site_time_zone_utc_offset=-5 +County "TN, McNairy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701090.epw site_zip_code=38375 site_time_zone_utc_offset=-6 +County "TN, Meigs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701210.epw site_zip_code=37322 site_time_zone_utc_offset=-5 +County "TN, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701230.epw site_zip_code=37354 site_time_zone_utc_offset=-5 +County "TN, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701250.epw site_zip_code=37042 site_time_zone_utc_offset=-6 +County "TN, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701270.epw site_zip_code=37352 site_time_zone_utc_offset=-6 +County "TN, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701290.epw site_zip_code=37887 site_time_zone_utc_offset=-5 +County "TN, Obion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701310.epw site_zip_code=38261 site_time_zone_utc_offset=-6 +County "TN, Overton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701330.epw site_zip_code=38570 site_time_zone_utc_offset=-6 +County "TN, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701350.epw site_zip_code=37096 site_time_zone_utc_offset=-6 +County "TN, Pickett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701370.epw site_zip_code=38549 site_time_zone_utc_offset=-6 +County "TN, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701390.epw site_zip_code=37307 site_time_zone_utc_offset=-5 +County "TN, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701410.epw site_zip_code=38501 site_time_zone_utc_offset=-6 +County "TN, Rhea County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701430.epw site_zip_code=37321 site_time_zone_utc_offset=-5 +County "TN, Roane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701450.epw site_zip_code=37748 site_time_zone_utc_offset=-5 +County "TN, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701470.epw site_zip_code=37172 site_time_zone_utc_offset=-6 +County "TN, Rutherford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701490.epw site_zip_code=37128 site_time_zone_utc_offset=-6 +County "TN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701510.epw site_zip_code=37841 site_time_zone_utc_offset=-5 +County "TN, Sequatchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701530.epw site_zip_code=37327 site_time_zone_utc_offset=-6 +County "TN, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701550.epw site_zip_code=37876 site_time_zone_utc_offset=-5 +County "TN, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701570.epw site_zip_code=38111 site_time_zone_utc_offset=-6 +County "TN, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701590.epw site_zip_code=37030 site_time_zone_utc_offset=-6 +County "TN, Stewart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701610.epw site_zip_code=37058 site_time_zone_utc_offset=-6 +County "TN, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701630.epw site_zip_code=37660 site_time_zone_utc_offset=-5 +County "TN, Sumner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701650.epw site_zip_code=37075 site_time_zone_utc_offset=-6 +County "TN, Tipton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701670.epw site_zip_code=38019 site_time_zone_utc_offset=-6 +County "TN, Trousdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701690.epw site_zip_code=37074 site_time_zone_utc_offset=-6 +County "TN, Unicoi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701710.epw site_zip_code=37650 site_time_zone_utc_offset=-5 +County "TN, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701730.epw site_zip_code=37807 site_time_zone_utc_offset=-5 +County "TN, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701750.epw site_zip_code=38585 site_time_zone_utc_offset=-6 +County "TN, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701770.epw site_zip_code=37110 site_time_zone_utc_offset=-6 +County "TN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701790.epw site_zip_code=37604 site_time_zone_utc_offset=-5 +County "TN, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701810.epw site_zip_code=38485 site_time_zone_utc_offset=-6 +County "TN, Weakley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701830.epw site_zip_code=38237 site_time_zone_utc_offset=-6 +County "TN, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701850.epw site_zip_code=38583 site_time_zone_utc_offset=-6 +County "TN, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701870.epw site_zip_code=37064 site_time_zone_utc_offset=-6 +County "TN, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701890.epw site_zip_code=37122 site_time_zone_utc_offset=-6 +County "TX, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800010.epw site_zip_code=75803 site_time_zone_utc_offset=-6 +County "TX, Andrews County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800030.epw site_zip_code=79714 site_time_zone_utc_offset=-6 +County "TX, Angelina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800050.epw site_zip_code=75904 site_time_zone_utc_offset=-6 +County "TX, Aransas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800070.epw site_zip_code=78382 site_time_zone_utc_offset=-6 +County "TX, Archer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800090.epw site_zip_code=76310 site_time_zone_utc_offset=-6 +County "TX, Armstrong County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800110.epw site_zip_code=79019 site_time_zone_utc_offset=-6 +County "TX, Atascosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800130.epw site_zip_code=78064 site_time_zone_utc_offset=-6 +County "TX, Austin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800150.epw site_zip_code=77474 site_time_zone_utc_offset=-6 +County "TX, Bailey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800170.epw site_zip_code=79347 site_time_zone_utc_offset=-6 +County "TX, Bandera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800190.epw site_zip_code=78003 site_time_zone_utc_offset=-6 +County "TX, Bastrop County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800210.epw site_zip_code=78602 site_time_zone_utc_offset=-6 +County "TX, Baylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800230.epw site_zip_code=76380 site_time_zone_utc_offset=-6 +County "TX, Bee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800250.epw site_zip_code=78102 site_time_zone_utc_offset=-6 +County "TX, Bell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800270.epw site_zip_code=76502 site_time_zone_utc_offset=-6 +County "TX, Bexar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800290.epw site_zip_code=78245 site_time_zone_utc_offset=-6 +County "TX, Blanco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800310.epw site_zip_code=78606 site_time_zone_utc_offset=-6 +County "TX, Borden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800330.epw site_zip_code=79351 site_time_zone_utc_offset=-6 +County "TX, Bosque County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800350.epw site_zip_code=76634 site_time_zone_utc_offset=-6 +County "TX, Bowie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800370.epw site_zip_code=75501 site_time_zone_utc_offset=-6 +County "TX, Brazoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800390.epw site_zip_code=77584 site_time_zone_utc_offset=-6 +County "TX, Brazos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800410.epw site_zip_code=77845 site_time_zone_utc_offset=-6 +County "TX, Brewster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800430.epw site_zip_code=79830 site_time_zone_utc_offset=-6 +County "TX, Briscoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800450.epw site_zip_code=79257 site_time_zone_utc_offset=-6 +County "TX, Brooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800470.epw site_zip_code=78355 site_time_zone_utc_offset=-6 +County "TX, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800490.epw site_zip_code=76801 site_time_zone_utc_offset=-6 +County "TX, Burleson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800510.epw site_zip_code=77836 site_time_zone_utc_offset=-6 +County "TX, Burnet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800530.epw site_zip_code=78654 site_time_zone_utc_offset=-6 +County "TX, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800550.epw site_zip_code=78644 site_time_zone_utc_offset=-6 +County "TX, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800570.epw site_zip_code=77979 site_time_zone_utc_offset=-6 +County "TX, Callahan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800590.epw site_zip_code=79510 site_time_zone_utc_offset=-6 +County "TX, Cameron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800610.epw site_zip_code=78521 site_time_zone_utc_offset=-6 +County "TX, Camp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800630.epw site_zip_code=75686 site_time_zone_utc_offset=-6 +County "TX, Carson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800650.epw site_zip_code=79068 site_time_zone_utc_offset=-6 +County "TX, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800670.epw site_zip_code=75551 site_time_zone_utc_offset=-6 +County "TX, Castro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800690.epw site_zip_code=79027 site_time_zone_utc_offset=-6 +County "TX, Chambers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800710.epw site_zip_code=77523 site_time_zone_utc_offset=-6 +County "TX, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800730.epw site_zip_code=75766 site_time_zone_utc_offset=-6 +County "TX, Childress County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800750.epw site_zip_code=79201 site_time_zone_utc_offset=-6 +County "TX, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800770.epw site_zip_code=76365 site_time_zone_utc_offset=-6 +County "TX, Cochran County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800790.epw site_zip_code=79346 site_time_zone_utc_offset=-6 +County "TX, Coke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800810.epw site_zip_code=76945 site_time_zone_utc_offset=-6 +County "TX, Coleman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800830.epw site_zip_code=76834 site_time_zone_utc_offset=-6 +County "TX, Collin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800850.epw site_zip_code=75035 site_time_zone_utc_offset=-6 +County "TX, Collingsworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800870.epw site_zip_code=79095 site_time_zone_utc_offset=-6 +County "TX, Colorado County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800890.epw site_zip_code=78934 site_time_zone_utc_offset=-6 +County "TX, Comal County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800910.epw site_zip_code=78130 site_time_zone_utc_offset=-6 +County "TX, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800930.epw site_zip_code=76442 site_time_zone_utc_offset=-6 +County "TX, Concho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800950.epw site_zip_code=76837 site_time_zone_utc_offset=-6 +County "TX, Cooke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800970.epw site_zip_code=76240 site_time_zone_utc_offset=-6 +County "TX, Coryell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800990.epw site_zip_code=76522 site_time_zone_utc_offset=-6 +County "TX, Cottle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801010.epw site_zip_code=79248 site_time_zone_utc_offset=-6 +County "TX, Crane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801030.epw site_zip_code=79731 site_time_zone_utc_offset=-6 +County "TX, Crockett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801050.epw site_zip_code=76943 site_time_zone_utc_offset=-6 +County "TX, Crosby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801070.epw site_zip_code=79322 site_time_zone_utc_offset=-6 +County "TX, Culberson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801090.epw site_zip_code=79847 site_time_zone_utc_offset=-6 +County "TX, Dallam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801110.epw site_zip_code=79022 site_time_zone_utc_offset=-6 +County "TX, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801130.epw site_zip_code=75243 site_time_zone_utc_offset=-6 +County "TX, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801150.epw site_zip_code=79331 site_time_zone_utc_offset=-6 +County "TX, DeWitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801230.epw site_zip_code=77954 site_time_zone_utc_offset=-6 +County "TX, Deaf Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801170.epw site_zip_code=79045 site_time_zone_utc_offset=-6 +County "TX, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801190.epw site_zip_code=75432 site_time_zone_utc_offset=-6 +County "TX, Denton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801210.epw site_zip_code=75056 site_time_zone_utc_offset=-6 +County "TX, Dickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801250.epw site_zip_code=79370 site_time_zone_utc_offset=-6 +County "TX, Dimmit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801270.epw site_zip_code=78834 site_time_zone_utc_offset=-6 +County "TX, Donley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801290.epw site_zip_code=79226 site_time_zone_utc_offset=-6 +County "TX, Duval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801310.epw site_zip_code=78384 site_time_zone_utc_offset=-6 +County "TX, Eastland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801330.epw site_zip_code=76437 site_time_zone_utc_offset=-6 +County "TX, Ector County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801350.epw site_zip_code=79762 site_time_zone_utc_offset=-6 +County "TX, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801370.epw site_zip_code=78880 site_time_zone_utc_offset=-6 +County "TX, El Paso County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801410.epw site_zip_code=79936 site_time_zone_utc_offset=-7 +County "TX, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801390.epw site_zip_code=75165 site_time_zone_utc_offset=-6 +County "TX, Erath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801430.epw site_zip_code=76401 site_time_zone_utc_offset=-6 +County "TX, Falls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801450.epw site_zip_code=76661 site_time_zone_utc_offset=-6 +County "TX, Fannin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801470.epw site_zip_code=75418 site_time_zone_utc_offset=-6 +County "TX, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801490.epw site_zip_code=78945 site_time_zone_utc_offset=-6 +County "TX, Fisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801510.epw site_zip_code=79546 site_time_zone_utc_offset=-6 +County "TX, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801530.epw site_zip_code=79235 site_time_zone_utc_offset=-6 +County "TX, Foard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801550.epw site_zip_code=79227 site_time_zone_utc_offset=-6 +County "TX, Fort Bend County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801570.epw site_zip_code=77494 site_time_zone_utc_offset=-6 +County "TX, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801590.epw site_zip_code=75457 site_time_zone_utc_offset=-6 +County "TX, Freestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801610.epw site_zip_code=75860 site_time_zone_utc_offset=-6 +County "TX, Frio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801630.epw site_zip_code=78061 site_time_zone_utc_offset=-6 +County "TX, Gaines County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801650.epw site_zip_code=79360 site_time_zone_utc_offset=-6 +County "TX, Galveston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801670.epw site_zip_code=77573 site_time_zone_utc_offset=-6 +County "TX, Garza County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801690.epw site_zip_code=79356 site_time_zone_utc_offset=-6 +County "TX, Gillespie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801710.epw site_zip_code=78624 site_time_zone_utc_offset=-6 +County "TX, Glasscock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801730.epw site_zip_code=79739 site_time_zone_utc_offset=-6 +County "TX, Goliad County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801750.epw site_zip_code=77963 site_time_zone_utc_offset=-6 +County "TX, Gonzales County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801770.epw site_zip_code=78629 site_time_zone_utc_offset=-6 +County "TX, Gray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801790.epw site_zip_code=79065 site_time_zone_utc_offset=-6 +County "TX, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801810.epw site_zip_code=75092 site_time_zone_utc_offset=-6 +County "TX, Gregg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801830.epw site_zip_code=75605 site_time_zone_utc_offset=-6 +County "TX, Grimes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801850.epw site_zip_code=77868 site_time_zone_utc_offset=-6 +County "TX, Guadalupe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801870.epw site_zip_code=78155 site_time_zone_utc_offset=-6 +County "TX, Hale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801890.epw site_zip_code=79072 site_time_zone_utc_offset=-6 +County "TX, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801910.epw site_zip_code=79245 site_time_zone_utc_offset=-6 +County "TX, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801930.epw site_zip_code=76531 site_time_zone_utc_offset=-6 +County "TX, Hansford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801950.epw site_zip_code=79081 site_time_zone_utc_offset=-6 +County "TX, Hardeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801970.epw site_zip_code=79252 site_time_zone_utc_offset=-6 +County "TX, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801990.epw site_zip_code=77657 site_time_zone_utc_offset=-6 +County "TX, Harris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802010.epw site_zip_code=77449 site_time_zone_utc_offset=-6 +County "TX, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802030.epw site_zip_code=75672 site_time_zone_utc_offset=-6 +County "TX, Hartley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802050.epw site_zip_code=79022 site_time_zone_utc_offset=-6 +County "TX, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802070.epw site_zip_code=79521 site_time_zone_utc_offset=-6 +County "TX, Hays County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802090.epw site_zip_code=78666 site_time_zone_utc_offset=-6 +County "TX, Hemphill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802110.epw site_zip_code=79014 site_time_zone_utc_offset=-6 +County "TX, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802130.epw site_zip_code=75156 site_time_zone_utc_offset=-6 +County "TX, Hidalgo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802150.epw site_zip_code=78572 site_time_zone_utc_offset=-6 +County "TX, Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802170.epw site_zip_code=76692 site_time_zone_utc_offset=-6 +County "TX, Hockley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802190.epw site_zip_code=79336 site_time_zone_utc_offset=-6 +County "TX, Hood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802210.epw site_zip_code=76048 site_time_zone_utc_offset=-6 +County "TX, Hopkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802230.epw site_zip_code=75482 site_time_zone_utc_offset=-6 +County "TX, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802250.epw site_zip_code=75835 site_time_zone_utc_offset=-6 +County "TX, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802270.epw site_zip_code=79720 site_time_zone_utc_offset=-6 +County "TX, Hudspeth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802290.epw site_zip_code=79839 site_time_zone_utc_offset=-7 +County "TX, Hunt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802310.epw site_zip_code=75401 site_time_zone_utc_offset=-6 +County "TX, Hutchinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802330.epw site_zip_code=79007 site_time_zone_utc_offset=-6 +County "TX, Irion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802350.epw site_zip_code=76941 site_time_zone_utc_offset=-6 +County "TX, Jack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802370.epw site_zip_code=76458 site_time_zone_utc_offset=-6 +County "TX, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802390.epw site_zip_code=77957 site_time_zone_utc_offset=-6 +County "TX, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802410.epw site_zip_code=75951 site_time_zone_utc_offset=-6 +County "TX, Jeff Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802430.epw site_zip_code=79734 site_time_zone_utc_offset=-6 +County "TX, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802450.epw site_zip_code=77642 site_time_zone_utc_offset=-6 +County "TX, Jim Hogg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802470.epw site_zip_code=78361 site_time_zone_utc_offset=-6 +County "TX, Jim Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802490.epw site_zip_code=78332 site_time_zone_utc_offset=-6 +County "TX, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802510.epw site_zip_code=76028 site_time_zone_utc_offset=-6 +County "TX, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802530.epw site_zip_code=79501 site_time_zone_utc_offset=-6 +County "TX, Karnes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802550.epw site_zip_code=78119 site_time_zone_utc_offset=-6 +County "TX, Kaufman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802570.epw site_zip_code=75126 site_time_zone_utc_offset=-6 +County "TX, Kendall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802590.epw site_zip_code=78006 site_time_zone_utc_offset=-6 +County "TX, Kenedy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802610.epw site_zip_code=78385 site_time_zone_utc_offset=-6 +County "TX, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802630.epw site_zip_code=79549 site_time_zone_utc_offset=-6 +County "TX, Kerr County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802650.epw site_zip_code=78028 site_time_zone_utc_offset=-6 +County "TX, Kimble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802670.epw site_zip_code=76849 site_time_zone_utc_offset=-6 +County "TX, King County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802690.epw site_zip_code=79248 site_time_zone_utc_offset=-6 +County "TX, Kinney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802710.epw site_zip_code=78832 site_time_zone_utc_offset=-6 +County "TX, Kleberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802730.epw site_zip_code=78363 site_time_zone_utc_offset=-6 +County "TX, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802750.epw site_zip_code=76371 site_time_zone_utc_offset=-6 +County "TX, La Salle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802830.epw site_zip_code=78014 site_time_zone_utc_offset=-6 +County "TX, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802770.epw site_zip_code=75460 site_time_zone_utc_offset=-6 +County "TX, Lamb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802790.epw site_zip_code=79339 site_time_zone_utc_offset=-6 +County "TX, Lampasas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802810.epw site_zip_code=76550 site_time_zone_utc_offset=-6 +County "TX, Lavaca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802850.epw site_zip_code=77964 site_time_zone_utc_offset=-6 +County "TX, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802870.epw site_zip_code=78942 site_time_zone_utc_offset=-6 +County "TX, Leon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802890.epw site_zip_code=75831 site_time_zone_utc_offset=-6 +County "TX, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802910.epw site_zip_code=77327 site_time_zone_utc_offset=-6 +County "TX, Limestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802930.epw site_zip_code=76667 site_time_zone_utc_offset=-6 +County "TX, Lipscomb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802950.epw site_zip_code=79005 site_time_zone_utc_offset=-6 +County "TX, Live Oak County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802970.epw site_zip_code=78022 site_time_zone_utc_offset=-6 +County "TX, Llano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802990.epw site_zip_code=78657 site_time_zone_utc_offset=-6 +County "TX, Loving County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803010.epw site_zip_code=79754 site_time_zone_utc_offset=-6 +County "TX, Lubbock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803030.epw site_zip_code=79424 site_time_zone_utc_offset=-6 +County "TX, Lynn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803050.epw site_zip_code=79373 site_time_zone_utc_offset=-6 +County "TX, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803130.epw site_zip_code=77864 site_time_zone_utc_offset=-6 +County "TX, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803150.epw site_zip_code=75657 site_time_zone_utc_offset=-6 +County "TX, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803170.epw site_zip_code=79782 site_time_zone_utc_offset=-6 +County "TX, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803190.epw site_zip_code=76856 site_time_zone_utc_offset=-6 +County "TX, Matagorda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803210.epw site_zip_code=77414 site_time_zone_utc_offset=-6 +County "TX, Maverick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803230.epw site_zip_code=78852 site_time_zone_utc_offset=-6 +County "TX, McCulloch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803070.epw site_zip_code=76825 site_time_zone_utc_offset=-6 +County "TX, McLennan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803090.epw site_zip_code=76706 site_time_zone_utc_offset=-6 +County "TX, McMullen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803110.epw site_zip_code=78072 site_time_zone_utc_offset=-6 +County "TX, Medina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803250.epw site_zip_code=78861 site_time_zone_utc_offset=-6 +County "TX, Menard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803270.epw site_zip_code=76859 site_time_zone_utc_offset=-6 +County "TX, Midland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803290.epw site_zip_code=79705 site_time_zone_utc_offset=-6 +County "TX, Milam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803310.epw site_zip_code=76567 site_time_zone_utc_offset=-6 +County "TX, Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803330.epw site_zip_code=76844 site_time_zone_utc_offset=-6 +County "TX, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803350.epw site_zip_code=79512 site_time_zone_utc_offset=-6 +County "TX, Montague County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803370.epw site_zip_code=76230 site_time_zone_utc_offset=-6 +County "TX, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803390.epw site_zip_code=77386 site_time_zone_utc_offset=-6 +County "TX, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803410.epw site_zip_code=79029 site_time_zone_utc_offset=-6 +County "TX, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803430.epw site_zip_code=75638 site_time_zone_utc_offset=-6 +County "TX, Motley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803450.epw site_zip_code=79234 site_time_zone_utc_offset=-6 +County "TX, Nacogdoches County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803470.epw site_zip_code=75964 site_time_zone_utc_offset=-6 +County "TX, Navarro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803490.epw site_zip_code=75110 site_time_zone_utc_offset=-6 +County "TX, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803510.epw site_zip_code=75966 site_time_zone_utc_offset=-6 +County "TX, Nolan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803530.epw site_zip_code=79556 site_time_zone_utc_offset=-6 +County "TX, Nueces County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803550.epw site_zip_code=78414 site_time_zone_utc_offset=-6 +County "TX, Ochiltree County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803570.epw site_zip_code=79070 site_time_zone_utc_offset=-6 +County "TX, Oldham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803590.epw site_zip_code=79092 site_time_zone_utc_offset=-6 +County "TX, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803610.epw site_zip_code=77630 site_time_zone_utc_offset=-6 +County "TX, Palo Pinto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803630.epw site_zip_code=76067 site_time_zone_utc_offset=-6 +County "TX, Panola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803650.epw site_zip_code=75633 site_time_zone_utc_offset=-6 +County "TX, Parker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803670.epw site_zip_code=76087 site_time_zone_utc_offset=-6 +County "TX, Parmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803690.epw site_zip_code=79035 site_time_zone_utc_offset=-6 +County "TX, Pecos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803710.epw site_zip_code=79735 site_time_zone_utc_offset=-6 +County "TX, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803730.epw site_zip_code=77351 site_time_zone_utc_offset=-6 +County "TX, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803750.epw site_zip_code=79107 site_time_zone_utc_offset=-6 +County "TX, Presidio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803770.epw site_zip_code=79845 site_time_zone_utc_offset=-6 +County "TX, Rains County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803790.epw site_zip_code=75440 site_time_zone_utc_offset=-6 +County "TX, Randall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803810.epw site_zip_code=79109 site_time_zone_utc_offset=-6 +County "TX, Reagan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803830.epw site_zip_code=76932 site_time_zone_utc_offset=-6 +County "TX, Real County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803850.epw site_zip_code=78873 site_time_zone_utc_offset=-6 +County "TX, Red River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803870.epw site_zip_code=75426 site_time_zone_utc_offset=-6 +County "TX, Reeves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803890.epw site_zip_code=79772 site_time_zone_utc_offset=-6 +County "TX, Refugio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803910.epw site_zip_code=78377 site_time_zone_utc_offset=-6 +County "TX, Roberts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803930.epw site_zip_code=79059 site_time_zone_utc_offset=-6 +County "TX, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803950.epw site_zip_code=77859 site_time_zone_utc_offset=-6 +County "TX, Rockwall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803970.epw site_zip_code=75087 site_time_zone_utc_offset=-6 +County "TX, Runnels County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803990.epw site_zip_code=76821 site_time_zone_utc_offset=-6 +County "TX, Rusk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804010.epw site_zip_code=75652 site_time_zone_utc_offset=-6 +County "TX, Sabine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804030.epw site_zip_code=75948 site_time_zone_utc_offset=-6 +County "TX, San Augustine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804050.epw site_zip_code=75972 site_time_zone_utc_offset=-6 +County "TX, San Jacinto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804070.epw site_zip_code=77331 site_time_zone_utc_offset=-6 +County "TX, San Patricio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804090.epw site_zip_code=78374 site_time_zone_utc_offset=-6 +County "TX, San Saba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804110.epw site_zip_code=76877 site_time_zone_utc_offset=-6 +County "TX, Schleicher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804130.epw site_zip_code=76936 site_time_zone_utc_offset=-6 +County "TX, Scurry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804150.epw site_zip_code=79549 site_time_zone_utc_offset=-6 +County "TX, Shackelford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804170.epw site_zip_code=76430 site_time_zone_utc_offset=-6 +County "TX, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804190.epw site_zip_code=75935 site_time_zone_utc_offset=-6 +County "TX, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804210.epw site_zip_code=79084 site_time_zone_utc_offset=-6 +County "TX, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804230.epw site_zip_code=75703 site_time_zone_utc_offset=-6 +County "TX, Somervell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804250.epw site_zip_code=76043 site_time_zone_utc_offset=-6 +County "TX, Starr County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804270.epw site_zip_code=78582 site_time_zone_utc_offset=-6 +County "TX, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804290.epw site_zip_code=76424 site_time_zone_utc_offset=-6 +County "TX, Sterling County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804310.epw site_zip_code=76951 site_time_zone_utc_offset=-6 +County "TX, Stonewall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804330.epw site_zip_code=79502 site_time_zone_utc_offset=-6 +County "TX, Sutton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804350.epw site_zip_code=76950 site_time_zone_utc_offset=-6 +County "TX, Swisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804370.epw site_zip_code=79088 site_time_zone_utc_offset=-6 +County "TX, Tarrant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804390.epw site_zip_code=76244 site_time_zone_utc_offset=-6 +County "TX, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804410.epw site_zip_code=79605 site_time_zone_utc_offset=-6 +County "TX, Terrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804430.epw site_zip_code=78851 site_time_zone_utc_offset=-6 +County "TX, Terry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804450.epw site_zip_code=79316 site_time_zone_utc_offset=-6 +County "TX, Throckmorton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804470.epw site_zip_code=76483 site_time_zone_utc_offset=-6 +County "TX, Titus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804490.epw site_zip_code=75455 site_time_zone_utc_offset=-6 +County "TX, Tom Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804510.epw site_zip_code=76904 site_time_zone_utc_offset=-6 +County "TX, Travis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804530.epw site_zip_code=78660 site_time_zone_utc_offset=-6 +County "TX, Trinity County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804550.epw site_zip_code=75862 site_time_zone_utc_offset=-6 +County "TX, Tyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804570.epw site_zip_code=75979 site_time_zone_utc_offset=-6 +County "TX, Upshur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804590.epw site_zip_code=75644 site_time_zone_utc_offset=-6 +County "TX, Upton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804610.epw site_zip_code=79778 site_time_zone_utc_offset=-6 +County "TX, Uvalde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804630.epw site_zip_code=78801 site_time_zone_utc_offset=-6 +County "TX, Val Verde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804650.epw site_zip_code=78840 site_time_zone_utc_offset=-6 +County "TX, Van Zandt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804670.epw site_zip_code=75103 site_time_zone_utc_offset=-6 +County "TX, Victoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804690.epw site_zip_code=77901 site_time_zone_utc_offset=-6 +County "TX, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804710.epw site_zip_code=77340 site_time_zone_utc_offset=-6 +County "TX, Waller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804730.epw site_zip_code=77423 site_time_zone_utc_offset=-6 +County "TX, Ward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804750.epw site_zip_code=79756 site_time_zone_utc_offset=-6 +County "TX, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804770.epw site_zip_code=77833 site_time_zone_utc_offset=-6 +County "TX, Webb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804790.epw site_zip_code=78045 site_time_zone_utc_offset=-6 +County "TX, Wharton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804810.epw site_zip_code=77437 site_time_zone_utc_offset=-6 +County "TX, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804830.epw site_zip_code=79079 site_time_zone_utc_offset=-6 +County "TX, Wichita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804850.epw site_zip_code=76311 site_time_zone_utc_offset=-6 +County "TX, Wilbarger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804870.epw site_zip_code=76384 site_time_zone_utc_offset=-6 +County "TX, Willacy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804890.epw site_zip_code=78580 site_time_zone_utc_offset=-6 +County "TX, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804910.epw site_zip_code=78641 site_time_zone_utc_offset=-6 +County "TX, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804930.epw site_zip_code=78114 site_time_zone_utc_offset=-6 +County "TX, Winkler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804950.epw site_zip_code=79745 site_time_zone_utc_offset=-6 +County "TX, Wise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804970.epw site_zip_code=76234 site_time_zone_utc_offset=-6 +County "TX, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804990.epw site_zip_code=75773 site_time_zone_utc_offset=-6 +County "TX, Yoakum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805010.epw site_zip_code=79323 site_time_zone_utc_offset=-6 +County "TX, Young County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805030.epw site_zip_code=76450 site_time_zone_utc_offset=-6 +County "TX, Zapata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805050.epw site_zip_code=78076 site_time_zone_utc_offset=-6 +County "TX, Zavala County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805070.epw site_zip_code=78839 site_time_zone_utc_offset=-6 +County "UT, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900010.epw site_zip_code=84713 site_time_zone_utc_offset=-7 +County "UT, Box Elder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900030.epw site_zip_code=84302 site_time_zone_utc_offset=-7 +County "UT, Cache County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900050.epw site_zip_code=84321 site_time_zone_utc_offset=-7 +County "UT, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900070.epw site_zip_code=84501 site_time_zone_utc_offset=-7 +County "UT, Daggett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900090.epw site_zip_code=84046 site_time_zone_utc_offset=-7 +County "UT, Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900110.epw site_zip_code=84015 site_time_zone_utc_offset=-7 +County "UT, Duchesne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900130.epw site_zip_code=84066 site_time_zone_utc_offset=-7 +County "UT, Emery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900150.epw site_zip_code=84528 site_time_zone_utc_offset=-7 +County "UT, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900170.epw site_zip_code=84726 site_time_zone_utc_offset=-7 +County "UT, Grand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900190.epw site_zip_code=84532 site_time_zone_utc_offset=-7 +County "UT, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900210.epw site_zip_code=84721 site_time_zone_utc_offset=-7 +County "UT, Juab County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900230.epw site_zip_code=84648 site_time_zone_utc_offset=-7 +County "UT, Kane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900250.epw site_zip_code=84741 site_time_zone_utc_offset=-7 +County "UT, Millard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900270.epw site_zip_code=84624 site_time_zone_utc_offset=-7 +County "UT, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900290.epw site_zip_code=84050 site_time_zone_utc_offset=-7 +County "UT, Piute County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900310.epw site_zip_code=84750 site_time_zone_utc_offset=-7 +County "UT, Rich County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900330.epw site_zip_code=84028 site_time_zone_utc_offset=-7 +County "UT, Salt Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900350.epw site_zip_code=84096 site_time_zone_utc_offset=-7 +County "UT, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900370.epw site_zip_code=84511 site_time_zone_utc_offset=-7 +County "UT, Sanpete County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900390.epw site_zip_code=84627 site_time_zone_utc_offset=-7 +County "UT, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900410.epw site_zip_code=84701 site_time_zone_utc_offset=-7 +County "UT, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900430.epw site_zip_code=84098 site_time_zone_utc_offset=-7 +County "UT, Tooele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900450.epw site_zip_code=84074 site_time_zone_utc_offset=-7 +County "UT, Uintah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900470.epw site_zip_code=84078 site_time_zone_utc_offset=-7 +County "UT, Utah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900490.epw site_zip_code=84043 site_time_zone_utc_offset=-7 +County "UT, Wasatch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900510.epw site_zip_code=84032 site_time_zone_utc_offset=-7 +County "UT, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900530.epw site_zip_code=84770 site_time_zone_utc_offset=-7 +County "UT, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900550.epw site_zip_code=84775 site_time_zone_utc_offset=-7 +County "UT, Weber County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900570.epw site_zip_code=84404 site_time_zone_utc_offset=-7 +County "VA, Accomack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100010.epw site_zip_code=23336 site_time_zone_utc_offset=-5 +County "VA, Albemarle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100030.epw site_zip_code=22901 site_time_zone_utc_offset=-5 +County "VA, Alexandria city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105100.epw site_zip_code=22304 site_time_zone_utc_offset=-5 +County "VA, Alleghany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100050.epw site_zip_code=24426 site_time_zone_utc_offset=-5 +County "VA, Amelia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100070.epw site_zip_code=23002 site_time_zone_utc_offset=-5 +County "VA, Amherst County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100090.epw site_zip_code=24572 site_time_zone_utc_offset=-5 +County "VA, Appomattox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100110.epw site_zip_code=24522 site_time_zone_utc_offset=-5 +County "VA, Arlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100130.epw site_zip_code=22204 site_time_zone_utc_offset=-5 +County "VA, Augusta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100150.epw site_zip_code=24401 site_time_zone_utc_offset=-5 +County "VA, Bath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100170.epw site_zip_code=24460 site_time_zone_utc_offset=-5 +County "VA, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100190.epw site_zip_code=24551 site_time_zone_utc_offset=-5 +County "VA, Bland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100210.epw site_zip_code=24315 site_time_zone_utc_offset=-5 +County "VA, Botetourt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100230.epw site_zip_code=24175 site_time_zone_utc_offset=-5 +County "VA, Bristol city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105200.epw site_zip_code=24201 site_time_zone_utc_offset=-5 +County "VA, Brunswick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100250.epw site_zip_code=23868 site_time_zone_utc_offset=-5 +County "VA, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100270.epw site_zip_code=24614 site_time_zone_utc_offset=-5 +County "VA, Buckingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100290.epw site_zip_code=23936 site_time_zone_utc_offset=-5 +County "VA, Buena Vista city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105300.epw site_zip_code=24416 site_time_zone_utc_offset=-5 +County "VA, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100310.epw site_zip_code=24502 site_time_zone_utc_offset=-5 +County "VA, Caroline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100330.epw site_zip_code=22546 site_time_zone_utc_offset=-5 +County "VA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100350.epw site_zip_code=24343 site_time_zone_utc_offset=-5 +County "VA, Charles City County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100360.epw site_zip_code=23030 site_time_zone_utc_offset=-5 +County "VA, Charlotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100370.epw site_zip_code=23923 site_time_zone_utc_offset=-5 +County "VA, Charlottesville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105400.epw site_zip_code=22903 site_time_zone_utc_offset=-5 +County "VA, Chesapeake city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105500.epw site_zip_code=23320 site_time_zone_utc_offset=-5 +County "VA, Chesterfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100410.epw site_zip_code=23112 site_time_zone_utc_offset=-5 +County "VA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100430.epw site_zip_code=22611 site_time_zone_utc_offset=-5 +County "VA, Colonial Heights city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105700.epw site_zip_code=23834 site_time_zone_utc_offset=-5 +County "VA, Covington city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105800.epw site_zip_code=24426 site_time_zone_utc_offset=-5 +County "VA, Craig County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100450.epw site_zip_code=24127 site_time_zone_utc_offset=-5 +County "VA, Culpeper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100470.epw site_zip_code=22701 site_time_zone_utc_offset=-5 +County "VA, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100490.epw site_zip_code=23040 site_time_zone_utc_offset=-5 +County "VA, Danville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105900.epw site_zip_code=24541 site_time_zone_utc_offset=-5 +County "VA, Dickenson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100510.epw site_zip_code=24228 site_time_zone_utc_offset=-5 +County "VA, Dinwiddie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100530.epw site_zip_code=23803 site_time_zone_utc_offset=-5 +County "VA, Emporia city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105950.epw site_zip_code=23847 site_time_zone_utc_offset=-5 +County "VA, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100570.epw site_zip_code=22560 site_time_zone_utc_offset=-5 +County "VA, Fairfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100590.epw site_zip_code=20171 site_time_zone_utc_offset=-5 +County "VA, Fairfax city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106000.epw site_zip_code=22030 site_time_zone_utc_offset=-5 +County "VA, Falls Church city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106100.epw site_zip_code=22046 site_time_zone_utc_offset=-5 +County "VA, Fauquier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100610.epw site_zip_code=20187 site_time_zone_utc_offset=-5 +County "VA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100630.epw site_zip_code=24091 site_time_zone_utc_offset=-5 +County "VA, Fluvanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100650.epw site_zip_code=22963 site_time_zone_utc_offset=-5 +County "VA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100670.epw site_zip_code=24151 site_time_zone_utc_offset=-5 +County "VA, Franklin city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106200.epw site_zip_code=23851 site_time_zone_utc_offset=-5 +County "VA, Frederick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100690.epw site_zip_code=22602 site_time_zone_utc_offset=-5 +County "VA, Fredericksburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106300.epw site_zip_code=22401 site_time_zone_utc_offset=-5 +County "VA, Galax city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106400.epw site_zip_code=24333 site_time_zone_utc_offset=-5 +County "VA, Giles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100710.epw site_zip_code=24134 site_time_zone_utc_offset=-5 +County "VA, Gloucester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100730.epw site_zip_code=23061 site_time_zone_utc_offset=-5 +County "VA, Goochland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100750.epw site_zip_code=23103 site_time_zone_utc_offset=-5 +County "VA, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100770.epw site_zip_code=24333 site_time_zone_utc_offset=-5 +County "VA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100790.epw site_zip_code=22968 site_time_zone_utc_offset=-5 +County "VA, Greensville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100810.epw site_zip_code=23847 site_time_zone_utc_offset=-5 +County "VA, Halifax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100830.epw site_zip_code=24592 site_time_zone_utc_offset=-5 +County "VA, Hampton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106500.epw site_zip_code=23666 site_time_zone_utc_offset=-5 +County "VA, Hanover County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100850.epw site_zip_code=23111 site_time_zone_utc_offset=-5 +County "VA, Harrisonburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106600.epw site_zip_code=22801 site_time_zone_utc_offset=-5 +County "VA, Henrico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100870.epw site_zip_code=23228 site_time_zone_utc_offset=-5 +County "VA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100890.epw site_zip_code=24112 site_time_zone_utc_offset=-5 +County "VA, Highland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100910.epw site_zip_code=24465 site_time_zone_utc_offset=-5 +County "VA, Hopewell city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106700.epw site_zip_code=23860 site_time_zone_utc_offset=-5 +County "VA, Isle of Wight County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100930.epw site_zip_code=23430 site_time_zone_utc_offset=-5 +County "VA, James City County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100950.epw site_zip_code=23188 site_time_zone_utc_offset=-5 +County "VA, King George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100990.epw site_zip_code=22485 site_time_zone_utc_offset=-5 +County "VA, King William County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101010.epw site_zip_code=23009 site_time_zone_utc_offset=-5 +County "VA, King and Queen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100970.epw site_zip_code=23156 site_time_zone_utc_offset=-5 +County "VA, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101030.epw site_zip_code=22503 site_time_zone_utc_offset=-5 +County "VA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101050.epw site_zip_code=24263 site_time_zone_utc_offset=-5 +County "VA, Lexington city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106780.epw site_zip_code=24450 site_time_zone_utc_offset=-5 +County "VA, Loudoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101070.epw site_zip_code=20189 site_time_zone_utc_offset=-5 +County "VA, Louisa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101090.epw site_zip_code=23093 site_time_zone_utc_offset=-5 +County "VA, Lunenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101110.epw site_zip_code=23974 site_time_zone_utc_offset=-5 +County "VA, Lynchburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106800.epw site_zip_code=24502 site_time_zone_utc_offset=-5 +County "VA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101130.epw site_zip_code=22727 site_time_zone_utc_offset=-5 +County "VA, Manassas Park city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106850.epw site_zip_code=20111 site_time_zone_utc_offset=-5 +County "VA, Manassas city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106830.epw site_zip_code=20110 site_time_zone_utc_offset=-5 +County "VA, Martinsville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106900.epw site_zip_code=24112 site_time_zone_utc_offset=-5 +County "VA, Mathews County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101150.epw site_zip_code=23109 site_time_zone_utc_offset=-5 +County "VA, Mecklenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101170.epw site_zip_code=23970 site_time_zone_utc_offset=-5 +County "VA, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101190.epw site_zip_code=23043 site_time_zone_utc_offset=-5 +County "VA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101210.epw site_zip_code=24060 site_time_zone_utc_offset=-5 +County "VA, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101250.epw site_zip_code=22967 site_time_zone_utc_offset=-5 +County "VA, New Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101270.epw site_zip_code=23141 site_time_zone_utc_offset=-5 +County "VA, Newport News city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107000.epw site_zip_code=23608 site_time_zone_utc_offset=-5 +County "VA, Norfolk city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107100.epw site_zip_code=23503 site_time_zone_utc_offset=-5 +County "VA, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101310.epw site_zip_code=23310 site_time_zone_utc_offset=-5 +County "VA, Northumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101330.epw site_zip_code=22473 site_time_zone_utc_offset=-5 +County "VA, Norton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107200.epw site_zip_code=24273 site_time_zone_utc_offset=-5 +County "VA, Nottoway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101350.epw site_zip_code=23824 site_time_zone_utc_offset=-5 +County "VA, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101370.epw site_zip_code=22508 site_time_zone_utc_offset=-5 +County "VA, Page County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101390.epw site_zip_code=22835 site_time_zone_utc_offset=-5 +County "VA, Patrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101410.epw site_zip_code=24171 site_time_zone_utc_offset=-5 +County "VA, Petersburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107300.epw site_zip_code=23803 site_time_zone_utc_offset=-5 +County "VA, Pittsylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101430.epw site_zip_code=24540 site_time_zone_utc_offset=-5 +County "VA, Poquoson city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107350.epw site_zip_code=23662 site_time_zone_utc_offset=-5 +County "VA, Portsmouth city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107400.epw site_zip_code=23703 site_time_zone_utc_offset=-5 +County "VA, Powhatan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101450.epw site_zip_code=23139 site_time_zone_utc_offset=-5 +County "VA, Prince Edward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101470.epw site_zip_code=23901 site_time_zone_utc_offset=-5 +County "VA, Prince George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101490.epw site_zip_code=23875 site_time_zone_utc_offset=-5 +County "VA, Prince William County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101530.epw site_zip_code=22191 site_time_zone_utc_offset=-5 +County "VA, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101550.epw site_zip_code=24301 site_time_zone_utc_offset=-5 +County "VA, Radford city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107500.epw site_zip_code=24141 site_time_zone_utc_offset=-5 +County "VA, Rappahannock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101570.epw site_zip_code=20106 site_time_zone_utc_offset=-5 +County "VA, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101590.epw site_zip_code=22572 site_time_zone_utc_offset=-5 +County "VA, Richmond city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107600.epw site_zip_code=23220 site_time_zone_utc_offset=-5 +County "VA, Roanoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101610.epw site_zip_code=24018 site_time_zone_utc_offset=-5 +County "VA, Roanoke city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107700.epw site_zip_code=24017 site_time_zone_utc_offset=-5 +County "VA, Rockbridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101630.epw site_zip_code=24450 site_time_zone_utc_offset=-5 +County "VA, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101650.epw site_zip_code=22801 site_time_zone_utc_offset=-5 +County "VA, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101670.epw site_zip_code=24266 site_time_zone_utc_offset=-5 +County "VA, Salem city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107750.epw site_zip_code=24153 site_time_zone_utc_offset=-5 +County "VA, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101690.epw site_zip_code=24251 site_time_zone_utc_offset=-5 +County "VA, Shenandoah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101710.epw site_zip_code=22657 site_time_zone_utc_offset=-5 +County "VA, Smyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101730.epw site_zip_code=24354 site_time_zone_utc_offset=-5 +County "VA, Southampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101750.epw site_zip_code=23851 site_time_zone_utc_offset=-5 +County "VA, Spotsylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101770.epw site_zip_code=22407 site_time_zone_utc_offset=-5 +County "VA, Stafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101790.epw site_zip_code=22554 site_time_zone_utc_offset=-5 +County "VA, Staunton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107900.epw site_zip_code=24401 site_time_zone_utc_offset=-5 +County "VA, Suffolk city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108000.epw site_zip_code=23434 site_time_zone_utc_offset=-5 +County "VA, Surry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101810.epw site_zip_code=23883 site_time_zone_utc_offset=-5 +County "VA, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101830.epw site_zip_code=23890 site_time_zone_utc_offset=-5 +County "VA, Tazewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101850.epw site_zip_code=24605 site_time_zone_utc_offset=-5 +County "VA, Virginia Beach city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108100.epw site_zip_code=23462 site_time_zone_utc_offset=-5 +County "VA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101870.epw site_zip_code=22630 site_time_zone_utc_offset=-5 +County "VA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101910.epw site_zip_code=24210 site_time_zone_utc_offset=-5 +County "VA, Waynesboro city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108200.epw site_zip_code=22980 site_time_zone_utc_offset=-5 +County "VA, Westmoreland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101930.epw site_zip_code=22443 site_time_zone_utc_offset=-5 +County "VA, Williamsburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108300.epw site_zip_code=23185 site_time_zone_utc_offset=-5 +County "VA, Winchester city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108400.epw site_zip_code=22601 site_time_zone_utc_offset=-5 +County "VA, Wise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101950.epw site_zip_code=24219 site_time_zone_utc_offset=-5 +County "VA, Wythe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101970.epw site_zip_code=24382 site_time_zone_utc_offset=-5 +County "VA, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101990.epw site_zip_code=23692 site_time_zone_utc_offset=-5 +County "VT, Addison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000010.epw site_zip_code=05753 site_time_zone_utc_offset=-5 +County "VT, Bennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000030.epw site_zip_code=05201 site_time_zone_utc_offset=-5 +County "VT, Caledonia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000050.epw site_zip_code=05819 site_time_zone_utc_offset=-5 +County "VT, Chittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000070.epw site_zip_code=05401 site_time_zone_utc_offset=-5 +County "VT, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000090.epw site_zip_code=05906 site_time_zone_utc_offset=-5 +County "VT, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000110.epw site_zip_code=05478 site_time_zone_utc_offset=-5 +County "VT, Grand Isle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000130.epw site_zip_code=05440 site_time_zone_utc_offset=-5 +County "VT, Lamoille County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000150.epw site_zip_code=05672 site_time_zone_utc_offset=-5 +County "VT, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000170.epw site_zip_code=05060 site_time_zone_utc_offset=-5 +County "VT, Orleans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000190.epw site_zip_code=05855 site_time_zone_utc_offset=-5 +County "VT, Rutland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000210.epw site_zip_code=05701 site_time_zone_utc_offset=-5 +County "VT, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000230.epw site_zip_code=05641 site_time_zone_utc_offset=-5 +County "VT, Windham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000250.epw site_zip_code=05301 site_time_zone_utc_offset=-5 +County "VT, Windsor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000270.epw site_zip_code=05156 site_time_zone_utc_offset=-5 +County "WA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300010.epw site_zip_code=99344 site_time_zone_utc_offset=-8 +County "WA, Asotin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300030.epw site_zip_code=99403 site_time_zone_utc_offset=-8 +County "WA, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300050.epw site_zip_code=99336 site_time_zone_utc_offset=-8 +County "WA, Chelan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300070.epw site_zip_code=98801 site_time_zone_utc_offset=-8 +County "WA, Clallam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300090.epw site_zip_code=98382 site_time_zone_utc_offset=-8 +County "WA, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300110.epw site_zip_code=98682 site_time_zone_utc_offset=-8 +County "WA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300130.epw site_zip_code=99328 site_time_zone_utc_offset=-8 +County "WA, Cowlitz County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300150.epw site_zip_code=98632 site_time_zone_utc_offset=-8 +County "WA, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300170.epw site_zip_code=98802 site_time_zone_utc_offset=-8 +County "WA, Ferry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300190.epw site_zip_code=99166 site_time_zone_utc_offset=-8 +County "WA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300210.epw site_zip_code=99301 site_time_zone_utc_offset=-8 +County "WA, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300230.epw site_zip_code=99347 site_time_zone_utc_offset=-8 +County "WA, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300250.epw site_zip_code=98837 site_time_zone_utc_offset=-8 +County "WA, Grays Harbor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300270.epw site_zip_code=98520 site_time_zone_utc_offset=-8 +County "WA, Island County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300290.epw site_zip_code=98277 site_time_zone_utc_offset=-8 +County "WA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300310.epw site_zip_code=98368 site_time_zone_utc_offset=-8 +County "WA, King County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300330.epw site_zip_code=98052 site_time_zone_utc_offset=-8 +County "WA, Kitsap County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300350.epw site_zip_code=98312 site_time_zone_utc_offset=-8 +County "WA, Kittitas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300370.epw site_zip_code=98926 site_time_zone_utc_offset=-8 +County "WA, Klickitat County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300390.epw site_zip_code=98672 site_time_zone_utc_offset=-8 +County "WA, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300410.epw site_zip_code=98531 site_time_zone_utc_offset=-8 +County "WA, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300430.epw site_zip_code=99122 site_time_zone_utc_offset=-8 +County "WA, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300450.epw site_zip_code=98584 site_time_zone_utc_offset=-8 +County "WA, Okanogan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300470.epw site_zip_code=98841 site_time_zone_utc_offset=-8 +County "WA, Pacific County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300490.epw site_zip_code=98640 site_time_zone_utc_offset=-8 +County "WA, Pend Oreille County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300510.epw site_zip_code=99156 site_time_zone_utc_offset=-8 +County "WA, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300530.epw site_zip_code=98391 site_time_zone_utc_offset=-8 +County "WA, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300550.epw site_zip_code=98250 site_time_zone_utc_offset=-8 +County "WA, Skagit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300570.epw site_zip_code=98273 site_time_zone_utc_offset=-8 +County "WA, Skamania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300590.epw site_zip_code=98648 site_time_zone_utc_offset=-8 +County "WA, Snohomish County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300610.epw site_zip_code=98012 site_time_zone_utc_offset=-8 +County "WA, Spokane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300630.epw site_zip_code=99208 site_time_zone_utc_offset=-8 +County "WA, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300650.epw site_zip_code=99114 site_time_zone_utc_offset=-8 +County "WA, Thurston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300670.epw site_zip_code=98501 site_time_zone_utc_offset=-8 +County "WA, Wahkiakum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300690.epw site_zip_code=98612 site_time_zone_utc_offset=-8 +County "WA, Walla Walla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300710.epw site_zip_code=99362 site_time_zone_utc_offset=-8 +County "WA, Whatcom County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300730.epw site_zip_code=98225 site_time_zone_utc_offset=-8 +County "WA, Whitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300750.epw site_zip_code=99163 site_time_zone_utc_offset=-8 +County "WA, Yakima County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300770.epw site_zip_code=98902 site_time_zone_utc_offset=-8 +County "WI, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500010.epw site_zip_code=53934 site_time_zone_utc_offset=-6 +County "WI, Ashland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500030.epw site_zip_code=54806 site_time_zone_utc_offset=-6 +County "WI, Barron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500050.epw site_zip_code=54868 site_time_zone_utc_offset=-6 +County "WI, Bayfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500070.epw site_zip_code=54891 site_time_zone_utc_offset=-6 +County "WI, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500090.epw site_zip_code=54115 site_time_zone_utc_offset=-6 +County "WI, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500110.epw site_zip_code=54755 site_time_zone_utc_offset=-6 +County "WI, Burnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500130.epw site_zip_code=54830 site_time_zone_utc_offset=-6 +County "WI, Calumet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500150.epw site_zip_code=54915 site_time_zone_utc_offset=-6 +County "WI, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500170.epw site_zip_code=54729 site_time_zone_utc_offset=-6 +County "WI, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500190.epw site_zip_code=54456 site_time_zone_utc_offset=-6 +County "WI, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500210.epw site_zip_code=53901 site_time_zone_utc_offset=-6 +County "WI, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500230.epw site_zip_code=53821 site_time_zone_utc_offset=-6 +County "WI, Dane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500250.epw site_zip_code=53711 site_time_zone_utc_offset=-6 +County "WI, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500270.epw site_zip_code=53916 site_time_zone_utc_offset=-6 +County "WI, Door County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500290.epw site_zip_code=54235 site_time_zone_utc_offset=-6 +County "WI, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500310.epw site_zip_code=54880 site_time_zone_utc_offset=-6 +County "WI, Dunn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500330.epw site_zip_code=54751 site_time_zone_utc_offset=-6 +County "WI, Eau Claire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500350.epw site_zip_code=54703 site_time_zone_utc_offset=-6 +County "WI, Florence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500370.epw site_zip_code=54121 site_time_zone_utc_offset=-6 +County "WI, Fond du Lac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500390.epw site_zip_code=54935 site_time_zone_utc_offset=-6 +County "WI, Forest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500410.epw site_zip_code=54520 site_time_zone_utc_offset=-6 +County "WI, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500430.epw site_zip_code=53818 site_time_zone_utc_offset=-6 +County "WI, Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500450.epw site_zip_code=53566 site_time_zone_utc_offset=-6 +County "WI, Green Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500470.epw site_zip_code=54923 site_time_zone_utc_offset=-6 +County "WI, Iowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500490.epw site_zip_code=53533 site_time_zone_utc_offset=-6 +County "WI, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500510.epw site_zip_code=54547 site_time_zone_utc_offset=-6 +County "WI, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500530.epw site_zip_code=54615 site_time_zone_utc_offset=-6 +County "WI, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500550.epw site_zip_code=53538 site_time_zone_utc_offset=-6 +County "WI, Juneau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500570.epw site_zip_code=53948 site_time_zone_utc_offset=-6 +County "WI, Kenosha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500590.epw site_zip_code=53142 site_time_zone_utc_offset=-6 +County "WI, Kewaunee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500610.epw site_zip_code=54216 site_time_zone_utc_offset=-6 +County "WI, La Crosse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500630.epw site_zip_code=54601 site_time_zone_utc_offset=-6 +County "WI, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500650.epw site_zip_code=53530 site_time_zone_utc_offset=-6 +County "WI, Langlade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500670.epw site_zip_code=54409 site_time_zone_utc_offset=-6 +County "WI, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500690.epw site_zip_code=54452 site_time_zone_utc_offset=-6 +County "WI, Manitowoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500710.epw site_zip_code=54220 site_time_zone_utc_offset=-6 +County "WI, Marathon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500730.epw site_zip_code=54401 site_time_zone_utc_offset=-6 +County "WI, Marinette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500750.epw site_zip_code=54143 site_time_zone_utc_offset=-6 +County "WI, Marquette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500770.epw site_zip_code=53949 site_time_zone_utc_offset=-6 +County "WI, Menominee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500780.epw site_zip_code=54135 site_time_zone_utc_offset=-6 +County "WI, Milwaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500790.epw site_zip_code=53209 site_time_zone_utc_offset=-6 +County "WI, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500810.epw site_zip_code=54656 site_time_zone_utc_offset=-6 +County "WI, Oconto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500830.epw site_zip_code=54153 site_time_zone_utc_offset=-6 +County "WI, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500850.epw site_zip_code=54501 site_time_zone_utc_offset=-6 +County "WI, Outagamie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500870.epw site_zip_code=54911 site_time_zone_utc_offset=-6 +County "WI, Ozaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500890.epw site_zip_code=53092 site_time_zone_utc_offset=-6 +County "WI, Pepin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500910.epw site_zip_code=54736 site_time_zone_utc_offset=-6 +County "WI, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500930.epw site_zip_code=54022 site_time_zone_utc_offset=-6 +County "WI, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500950.epw site_zip_code=54001 site_time_zone_utc_offset=-6 +County "WI, Portage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500970.epw site_zip_code=54481 site_time_zone_utc_offset=-6 +County "WI, Price County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500990.epw site_zip_code=54555 site_time_zone_utc_offset=-6 +County "WI, Racine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501010.epw site_zip_code=53402 site_time_zone_utc_offset=-6 +County "WI, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501030.epw site_zip_code=53581 site_time_zone_utc_offset=-6 +County "WI, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501050.epw site_zip_code=53511 site_time_zone_utc_offset=-6 +County "WI, Rusk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501070.epw site_zip_code=54848 site_time_zone_utc_offset=-6 +County "WI, Sauk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501110.epw site_zip_code=53913 site_time_zone_utc_offset=-6 +County "WI, Sawyer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501130.epw site_zip_code=54843 site_time_zone_utc_offset=-6 +County "WI, Shawano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501150.epw site_zip_code=54166 site_time_zone_utc_offset=-6 +County "WI, Sheboygan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501170.epw site_zip_code=53081 site_time_zone_utc_offset=-6 +County "WI, St. Croix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501090.epw site_zip_code=54016 site_time_zone_utc_offset=-6 +County "WI, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501190.epw site_zip_code=54451 site_time_zone_utc_offset=-6 +County "WI, Trempealeau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501210.epw site_zip_code=54612 site_time_zone_utc_offset=-6 +County "WI, Vernon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501230.epw site_zip_code=54665 site_time_zone_utc_offset=-6 +County "WI, Vilas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501250.epw site_zip_code=54521 site_time_zone_utc_offset=-6 +County "WI, Walworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501270.epw site_zip_code=53147 site_time_zone_utc_offset=-6 +County "WI, Washburn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501290.epw site_zip_code=54801 site_time_zone_utc_offset=-6 +County "WI, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501310.epw site_zip_code=53022 site_time_zone_utc_offset=-6 +County "WI, Waukesha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501330.epw site_zip_code=53051 site_time_zone_utc_offset=-6 +County "WI, Waupaca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501350.epw site_zip_code=54981 site_time_zone_utc_offset=-6 +County "WI, Waushara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501370.epw site_zip_code=54982 site_time_zone_utc_offset=-6 +County "WI, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501390.epw site_zip_code=54956 site_time_zone_utc_offset=-6 +County "WI, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501410.epw site_zip_code=54449 site_time_zone_utc_offset=-6 +County "WV, Barbour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400010.epw site_zip_code=26416 site_time_zone_utc_offset=-5 +County "WV, Berkeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400030.epw site_zip_code=25404 site_time_zone_utc_offset=-5 +County "WV, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400050.epw site_zip_code=25130 site_time_zone_utc_offset=-5 +County "WV, Braxton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400070.epw site_zip_code=26601 site_time_zone_utc_offset=-5 +County "WV, Brooke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400090.epw site_zip_code=26070 site_time_zone_utc_offset=-5 +County "WV, Cabell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400110.epw site_zip_code=25701 site_time_zone_utc_offset=-5 +County "WV, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400130.epw site_zip_code=26147 site_time_zone_utc_offset=-5 +County "WV, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400150.epw site_zip_code=25043 site_time_zone_utc_offset=-5 +County "WV, Doddridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400170.epw site_zip_code=26456 site_time_zone_utc_offset=-5 +County "WV, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400190.epw site_zip_code=25901 site_time_zone_utc_offset=-5 +County "WV, Gilmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400210.epw site_zip_code=26351 site_time_zone_utc_offset=-5 +County "WV, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400230.epw site_zip_code=26847 site_time_zone_utc_offset=-5 +County "WV, Greenbrier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400250.epw site_zip_code=24901 site_time_zone_utc_offset=-5 +County "WV, Hampshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400270.epw site_zip_code=26757 site_time_zone_utc_offset=-5 +County "WV, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400290.epw site_zip_code=26062 site_time_zone_utc_offset=-5 +County "WV, Hardy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400310.epw site_zip_code=26836 site_time_zone_utc_offset=-5 +County "WV, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400330.epw site_zip_code=26301 site_time_zone_utc_offset=-5 +County "WV, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400350.epw site_zip_code=25271 site_time_zone_utc_offset=-5 +County "WV, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400370.epw site_zip_code=25414 site_time_zone_utc_offset=-5 +County "WV, Kanawha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400390.epw site_zip_code=25177 site_time_zone_utc_offset=-5 +County "WV, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400410.epw site_zip_code=26452 site_time_zone_utc_offset=-5 +County "WV, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400430.epw site_zip_code=25506 site_time_zone_utc_offset=-5 +County "WV, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400450.epw site_zip_code=25601 site_time_zone_utc_offset=-5 +County "WV, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400490.epw site_zip_code=26554 site_time_zone_utc_offset=-5 +County "WV, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400510.epw site_zip_code=26041 site_time_zone_utc_offset=-5 +County "WV, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400530.epw site_zip_code=25550 site_time_zone_utc_offset=-5 +County "WV, McDowell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400470.epw site_zip_code=24801 site_time_zone_utc_offset=-5 +County "WV, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400550.epw site_zip_code=24701 site_time_zone_utc_offset=-5 +County "WV, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400570.epw site_zip_code=26726 site_time_zone_utc_offset=-5 +County "WV, Mingo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400590.epw site_zip_code=25661 site_time_zone_utc_offset=-5 +County "WV, Monongalia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400610.epw site_zip_code=26505 site_time_zone_utc_offset=-5 +County "WV, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400630.epw site_zip_code=24963 site_time_zone_utc_offset=-5 +County "WV, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400650.epw site_zip_code=25411 site_time_zone_utc_offset=-5 +County "WV, Nicholas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400670.epw site_zip_code=26651 site_time_zone_utc_offset=-5 +County "WV, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400690.epw site_zip_code=26003 site_time_zone_utc_offset=-5 +County "WV, Pendleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400710.epw site_zip_code=26807 site_time_zone_utc_offset=-5 +County "WV, Pleasants County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400730.epw site_zip_code=26170 site_time_zone_utc_offset=-5 +County "WV, Pocahontas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400750.epw site_zip_code=24954 site_time_zone_utc_offset=-5 +County "WV, Preston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400770.epw site_zip_code=26537 site_time_zone_utc_offset=-5 +County "WV, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400790.epw site_zip_code=25526 site_time_zone_utc_offset=-5 +County "WV, Raleigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400810.epw site_zip_code=25801 site_time_zone_utc_offset=-5 +County "WV, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400830.epw site_zip_code=26241 site_time_zone_utc_offset=-5 +County "WV, Ritchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400850.epw site_zip_code=26362 site_time_zone_utc_offset=-5 +County "WV, Roane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400870.epw site_zip_code=25276 site_time_zone_utc_offset=-5 +County "WV, Summers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400890.epw site_zip_code=25951 site_time_zone_utc_offset=-5 +County "WV, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400910.epw site_zip_code=26354 site_time_zone_utc_offset=-5 +County "WV, Tucker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400930.epw site_zip_code=26287 site_time_zone_utc_offset=-5 +County "WV, Tyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400950.epw site_zip_code=26175 site_time_zone_utc_offset=-5 +County "WV, Upshur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400970.epw site_zip_code=26201 site_time_zone_utc_offset=-5 +County "WV, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400990.epw site_zip_code=25704 site_time_zone_utc_offset=-5 +County "WV, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401010.epw site_zip_code=26288 site_time_zone_utc_offset=-5 +County "WV, Wetzel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401030.epw site_zip_code=26155 site_time_zone_utc_offset=-5 +County "WV, Wirt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401050.epw site_zip_code=26143 site_time_zone_utc_offset=-5 +County "WV, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401070.epw site_zip_code=26101 site_time_zone_utc_offset=-5 +County "WV, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401090.epw site_zip_code=25882 site_time_zone_utc_offset=-5 +County "WY, Albany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600010.epw site_zip_code=82070 site_time_zone_utc_offset=-7 +County "WY, Big Horn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600030.epw site_zip_code=82431 site_time_zone_utc_offset=-7 +County "WY, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600050.epw site_zip_code=82718 site_time_zone_utc_offset=-7 +County "WY, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600070.epw site_zip_code=82301 site_time_zone_utc_offset=-7 +County "WY, Converse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600090.epw site_zip_code=82633 site_time_zone_utc_offset=-7 +County "WY, Crook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600110.epw site_zip_code=82729 site_time_zone_utc_offset=-7 +County "WY, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600130.epw site_zip_code=82501 site_time_zone_utc_offset=-7 +County "WY, Goshen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600150.epw site_zip_code=82240 site_time_zone_utc_offset=-7 +County "WY, Hot Springs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600170.epw site_zip_code=82443 site_time_zone_utc_offset=-7 +County "WY, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600190.epw site_zip_code=82834 site_time_zone_utc_offset=-7 +County "WY, Laramie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600210.epw site_zip_code=82001 site_time_zone_utc_offset=-7 +County "WY, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600230.epw site_zip_code=83127 site_time_zone_utc_offset=-7 +County "WY, Natrona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600250.epw site_zip_code=82601 site_time_zone_utc_offset=-7 +County "WY, Niobrara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600270.epw site_zip_code=82225 site_time_zone_utc_offset=-7 +County "WY, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600290.epw site_zip_code=82414 site_time_zone_utc_offset=-7 +County "WY, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600310.epw site_zip_code=82201 site_time_zone_utc_offset=-7 +County "WY, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600330.epw site_zip_code=82801 site_time_zone_utc_offset=-7 +County "WY, Sublette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600350.epw site_zip_code=82941 site_time_zone_utc_offset=-7 +County "WY, Sweetwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600370.epw site_zip_code=82901 site_time_zone_utc_offset=-7 +County "WY, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600390.epw site_zip_code=83001 site_time_zone_utc_offset=-7 +County "WY, Uinta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600410.epw site_zip_code=82930 site_time_zone_utc_offset=-7 +County "WY, Washakie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600430.epw site_zip_code=82401 site_time_zone_utc_offset=-7 +County "WY, Weston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600450.epw site_zip_code=82701 site_time_zone_utc_offset=-7 +County Metro Status Metropolitan +County Metro Status Non-Metropolitan +County and PUMA "G0100010, G01002100" +County and PUMA "G0100030, G01002600" +County and PUMA "G0100050, G01002400" +County and PUMA "G0100070, G01001700" +County and PUMA "G0100090, G01000800" +County and PUMA "G0100110, G01002400" +County and PUMA "G0100130, G01002300" +County and PUMA "G0100150, G01001100" +County and PUMA "G0100170, G01001800" +County and PUMA "G0100190, G01001000" +County and PUMA "G0100210, G01001800" +County and PUMA "G0100230, G01002200" +County and PUMA "G0100250, G01002200" +County and PUMA "G0100270, G01001000" +County and PUMA "G0100290, G01001000" +County and PUMA "G0100310, G01002300" +County and PUMA "G0100330, G01000100" +County and PUMA "G0100350, G01002200" +County and PUMA "G0100370, G01001800" +County and PUMA "G0100390, G01002300" +County and PUMA "G0100410, G01002300" +County and PUMA "G0100430, G01000700" +County and PUMA "G0100450, G01002500" +County and PUMA "G0100470, G01001700" +County and PUMA "G0100490, G01000400" +County and PUMA "G0100510, G01002100" +County and PUMA "G0100530, G01002200" +County and PUMA "G0100550, G01000900" +County and PUMA "G0100570, G01001400" +County and PUMA "G0100590, G01000100" +County and PUMA "G0100610, G01002500" +County and PUMA "G0100630, G01001700" +County and PUMA "G0100650, G01001700" +County and PUMA "G0100670, G01002500" +County and PUMA "G0100690, G01002500" +County and PUMA "G0100710, G01000400" +County and PUMA "G0100730, G01001301" +County and PUMA "G0100730, G01001302" +County and PUMA "G0100730, G01001303" +County and PUMA "G0100730, G01001304" +County and PUMA "G0100730, G01001305" +County and PUMA "G0100750, G01001400" +County and PUMA "G0100770, G01000100" +County and PUMA "G0100790, G01000600" +County and PUMA "G0100810, G01001900" +County and PUMA "G0100830, G01000200" +County and PUMA "G0100850, G01002100" +County and PUMA "G0100870, G01002400" +County and PUMA "G0100890, G01000200" +County and PUMA "G0100890, G01000301" +County and PUMA "G0100890, G01000302" +County and PUMA "G0100890, G01000500" +County and PUMA "G0100910, G01001700" +County and PUMA "G0100930, G01000100" +County and PUMA "G0100930, G01001400" +County and PUMA "G0100950, G01000500" +County and PUMA "G0100970, G01002701" +County and PUMA "G0100970, G01002702" +County and PUMA "G0100970, G01002703" +County and PUMA "G0100990, G01002200" +County and PUMA "G0101010, G01002000" +County and PUMA "G0101010, G01002100" +County and PUMA "G0101030, G01000600" +County and PUMA "G0101050, G01001700" +County and PUMA "G0101070, G01001500" +County and PUMA "G0101090, G01002400" +County and PUMA "G0101110, G01001000" +County and PUMA "G0101130, G01002400" +County and PUMA "G0101150, G01000800" +County and PUMA "G0101170, G01001200" +County and PUMA "G0101190, G01001700" +County and PUMA "G0101210, G01001000" +County and PUMA "G0101230, G01001800" +County and PUMA "G0101250, G01001500" +County and PUMA "G0101250, G01001600" +County and PUMA "G0101270, G01001400" +County and PUMA "G0101290, G01002200" +County and PUMA "G0101310, G01002200" +County and PUMA "G0101330, G01000700" +County and PUMA "G0200130, G02000400" +County and PUMA "G0200160, G02000400" +County and PUMA "G0200200, G02000101" +County and PUMA "G0200200, G02000102" +County and PUMA "G0200500, G02000400" +County and PUMA "G0200600, G02000400" +County and PUMA "G0200680, G02000300" +County and PUMA "G0200700, G02000400" +County and PUMA "G0200900, G02000300" +County and PUMA "G0201000, G02000300" +County and PUMA "G0201050, G02000400" +County and PUMA "G0201100, G02000300" +County and PUMA "G0201220, G02000200" +County and PUMA "G0201300, G02000300" +County and PUMA "G0201500, G02000400" +County and PUMA "G0201580, G02000400" +County and PUMA "G0201640, G02000400" +County and PUMA "G0201700, G02000200" +County and PUMA "G0201800, G02000400" +County and PUMA "G0201850, G02000400" +County and PUMA "G0201880, G02000400" +County and PUMA "G0201950, G02000400" +County and PUMA "G0201980, G02000400" +County and PUMA "G0202200, G02000400" +County and PUMA "G0202300, G02000300" +County and PUMA "G0202400, G02000300" +County and PUMA "G0202610, G02000300" +County and PUMA "G0202750, G02000400" +County and PUMA "G0202820, G02000400" +County and PUMA "G0202900, G02000400" +County and PUMA "G0400010, G04000300" +County and PUMA "G0400030, G04000900" +County and PUMA "G0400050, G04000400" +County and PUMA "G0400070, G04000800" +County and PUMA "G0400090, G04000800" +County and PUMA "G0400110, G04000800" +County and PUMA "G0400120, G04000600" +County and PUMA "G0400130, G04000100" +County and PUMA "G0400130, G04000101" +County and PUMA "G0400130, G04000102" +County and PUMA "G0400130, G04000103" +County and PUMA "G0400130, G04000104" +County and PUMA "G0400130, G04000105" +County and PUMA "G0400130, G04000106" +County and PUMA "G0400130, G04000107" +County and PUMA "G0400130, G04000108" +County and PUMA "G0400130, G04000109" +County and PUMA "G0400130, G04000110" +County and PUMA "G0400130, G04000111" +County and PUMA "G0400130, G04000112" +County and PUMA "G0400130, G04000113" +County and PUMA "G0400130, G04000114" +County and PUMA "G0400130, G04000115" +County and PUMA "G0400130, G04000116" +County and PUMA "G0400130, G04000117" +County and PUMA "G0400130, G04000118" +County and PUMA "G0400130, G04000119" +County and PUMA "G0400130, G04000120" +County and PUMA "G0400130, G04000121" +County and PUMA "G0400130, G04000122" +County and PUMA "G0400130, G04000123" +County and PUMA "G0400130, G04000124" +County and PUMA "G0400130, G04000125" +County and PUMA "G0400130, G04000126" +County and PUMA "G0400130, G04000127" +County and PUMA "G0400130, G04000128" +County and PUMA "G0400130, G04000129" +County and PUMA "G0400130, G04000130" +County and PUMA "G0400130, G04000131" +County and PUMA "G0400130, G04000132" +County and PUMA "G0400130, G04000133" +County and PUMA "G0400130, G04000134" +County and PUMA "G0400150, G04000600" +County and PUMA "G0400170, G04000300" +County and PUMA "G0400190, G04000201" +County and PUMA "G0400190, G04000202" +County and PUMA "G0400190, G04000203" +County and PUMA "G0400190, G04000204" +County and PUMA "G0400190, G04000205" +County and PUMA "G0400190, G04000206" +County and PUMA "G0400190, G04000207" +County and PUMA "G0400190, G04000208" +County and PUMA "G0400190, G04000209" +County and PUMA "G0400210, G04000800" +County and PUMA "G0400210, G04000803" +County and PUMA "G0400210, G04000805" +County and PUMA "G0400210, G04000807" +County and PUMA "G0400230, G04000900" +County and PUMA "G0400250, G04000500" +County and PUMA "G0400270, G04000700" +County and PUMA "G0500010, G05001700" +County and PUMA "G0500010, G05001800" +County and PUMA "G0500030, G05001800" +County and PUMA "G0500050, G05000300" +County and PUMA "G0500070, G05000100" +County and PUMA "G0500090, G05000300" +County and PUMA "G0500110, G05001800" +County and PUMA "G0500130, G05001900" +County and PUMA "G0500150, G05000300" +County and PUMA "G0500170, G05001800" +County and PUMA "G0500190, G05001600" +County and PUMA "G0500210, G05000500" +County and PUMA "G0500230, G05000400" +County and PUMA "G0500250, G05001800" +County and PUMA "G0500270, G05001900" +County and PUMA "G0500290, G05001300" +County and PUMA "G0500310, G05000500" +County and PUMA "G0500310, G05000600" +County and PUMA "G0500330, G05001400" +County and PUMA "G0500350, G05000600" +County and PUMA "G0500370, G05000700" +County and PUMA "G0500390, G05001900" +County and PUMA "G0500410, G05001800" +County and PUMA "G0500430, G05001800" +County and PUMA "G0500450, G05001100" +County and PUMA "G0500470, G05001500" +County and PUMA "G0500490, G05000400" +County and PUMA "G0500510, G05001600" +County and PUMA "G0500530, G05001700" +County and PUMA "G0500550, G05000500" +County and PUMA "G0500570, G05002000" +County and PUMA "G0500590, G05001600" +County and PUMA "G0500610, G05001500" +County and PUMA "G0500630, G05000400" +County and PUMA "G0500650, G05000400" +County and PUMA "G0500670, G05000800" +County and PUMA "G0500690, G05001700" +County and PUMA "G0500710, G05001300" +County and PUMA "G0500730, G05002000" +County and PUMA "G0500750, G05000500" +County and PUMA "G0500770, G05000700" +County and PUMA "G0500790, G05001800" +County and PUMA "G0500810, G05002000" +County and PUMA "G0500830, G05001500" +County and PUMA "G0500850, G05001100" +County and PUMA "G0500870, G05000300" +County and PUMA "G0500890, G05000300" +County and PUMA "G0500910, G05002000" +County and PUMA "G0500930, G05000600" +County and PUMA "G0500950, G05000700" +County and PUMA "G0500970, G05001600" +County and PUMA "G0500990, G05002000" +County and PUMA "G0501010, G05000300" +County and PUMA "G0501030, G05001900" +County and PUMA "G0501050, G05001300" +County and PUMA "G0501070, G05000700" +County and PUMA "G0501090, G05002000" +County and PUMA "G0501110, G05000700" +County and PUMA "G0501130, G05001500" +County and PUMA "G0501150, G05001300" +County and PUMA "G0501170, G05000800" +County and PUMA "G0501190, G05000900" +County and PUMA "G0501190, G05001000" +County and PUMA "G0501210, G05000500" +County and PUMA "G0501230, G05000700" +County and PUMA "G0501250, G05001200" +County and PUMA "G0501270, G05001500" +County and PUMA "G0501290, G05000300" +County and PUMA "G0501310, G05001400" +County and PUMA "G0501330, G05001500" +County and PUMA "G0501350, G05000400" +County and PUMA "G0501370, G05000400" +County and PUMA "G0501390, G05001900" +County and PUMA "G0501410, G05000400" +County and PUMA "G0501430, G05000200" +County and PUMA "G0501450, G05000800" +County and PUMA "G0501470, G05000800" +County and PUMA "G0501490, G05001300" +County and PUMA "G0600010, G06000101" +County and PUMA "G0600010, G06000102" +County and PUMA "G0600010, G06000103" +County and PUMA "G0600010, G06000104" +County and PUMA "G0600010, G06000105" +County and PUMA "G0600010, G06000106" +County and PUMA "G0600010, G06000107" +County and PUMA "G0600010, G06000108" +County and PUMA "G0600010, G06000109" +County and PUMA "G0600010, G06000110" +County and PUMA "G0600030, G06000300" +County and PUMA "G0600050, G06000300" +County and PUMA "G0600070, G06000701" +County and PUMA "G0600070, G06000702" +County and PUMA "G0600090, G06000300" +County and PUMA "G0600110, G06001100" +County and PUMA "G0600130, G06001301" +County and PUMA "G0600130, G06001302" +County and PUMA "G0600130, G06001303" +County and PUMA "G0600130, G06001304" +County and PUMA "G0600130, G06001305" +County and PUMA "G0600130, G06001306" +County and PUMA "G0600130, G06001307" +County and PUMA "G0600130, G06001308" +County and PUMA "G0600130, G06001309" +County and PUMA "G0600150, G06001500" +County and PUMA "G0600170, G06001700" +County and PUMA "G0600190, G06001901" +County and PUMA "G0600190, G06001902" +County and PUMA "G0600190, G06001903" +County and PUMA "G0600190, G06001904" +County and PUMA "G0600190, G06001905" +County and PUMA "G0600190, G06001906" +County and PUMA "G0600190, G06001907" +County and PUMA "G0600210, G06001100" +County and PUMA "G0600230, G06002300" +County and PUMA "G0600250, G06002500" +County and PUMA "G0600270, G06000300" +County and PUMA "G0600290, G06002901" +County and PUMA "G0600290, G06002902" +County and PUMA "G0600290, G06002903" +County and PUMA "G0600290, G06002904" +County and PUMA "G0600290, G06002905" +County and PUMA "G0600310, G06003100" +County and PUMA "G0600330, G06003300" +County and PUMA "G0600350, G06001500" +County and PUMA "G0600370, G06003701" +County and PUMA "G0600370, G06003702" +County and PUMA "G0600370, G06003703" +County and PUMA "G0600370, G06003704" +County and PUMA "G0600370, G06003705" +County and PUMA "G0600370, G06003706" +County and PUMA "G0600370, G06003707" +County and PUMA "G0600370, G06003708" +County and PUMA "G0600370, G06003709" +County and PUMA "G0600370, G06003710" +County and PUMA "G0600370, G06003711" +County and PUMA "G0600370, G06003712" +County and PUMA "G0600370, G06003713" +County and PUMA "G0600370, G06003714" +County and PUMA "G0600370, G06003715" +County and PUMA "G0600370, G06003716" +County and PUMA "G0600370, G06003717" +County and PUMA "G0600370, G06003718" +County and PUMA "G0600370, G06003719" +County and PUMA "G0600370, G06003720" +County and PUMA "G0600370, G06003721" +County and PUMA "G0600370, G06003722" +County and PUMA "G0600370, G06003723" +County and PUMA "G0600370, G06003724" +County and PUMA "G0600370, G06003725" +County and PUMA "G0600370, G06003726" +County and PUMA "G0600370, G06003727" +County and PUMA "G0600370, G06003728" +County and PUMA "G0600370, G06003729" +County and PUMA "G0600370, G06003730" +County and PUMA "G0600370, G06003731" +County and PUMA "G0600370, G06003732" +County and PUMA "G0600370, G06003733" +County and PUMA "G0600370, G06003734" +County and PUMA "G0600370, G06003735" +County and PUMA "G0600370, G06003736" +County and PUMA "G0600370, G06003737" +County and PUMA "G0600370, G06003738" +County and PUMA "G0600370, G06003739" +County and PUMA "G0600370, G06003740" +County and PUMA "G0600370, G06003741" +County and PUMA "G0600370, G06003742" +County and PUMA "G0600370, G06003743" +County and PUMA "G0600370, G06003744" +County and PUMA "G0600370, G06003745" +County and PUMA "G0600370, G06003746" +County and PUMA "G0600370, G06003747" +County and PUMA "G0600370, G06003748" +County and PUMA "G0600370, G06003749" +County and PUMA "G0600370, G06003750" +County and PUMA "G0600370, G06003751" +County and PUMA "G0600370, G06003752" +County and PUMA "G0600370, G06003753" +County and PUMA "G0600370, G06003754" +County and PUMA "G0600370, G06003755" +County and PUMA "G0600370, G06003756" +County and PUMA "G0600370, G06003757" +County and PUMA "G0600370, G06003758" +County and PUMA "G0600370, G06003759" +County and PUMA "G0600370, G06003760" +County and PUMA "G0600370, G06003761" +County and PUMA "G0600370, G06003762" +County and PUMA "G0600370, G06003763" +County and PUMA "G0600370, G06003764" +County and PUMA "G0600370, G06003765" +County and PUMA "G0600370, G06003766" +County and PUMA "G0600370, G06003767" +County and PUMA "G0600370, G06003768" +County and PUMA "G0600370, G06003769" +County and PUMA "G0600390, G06003900" +County and PUMA "G0600410, G06004101" +County and PUMA "G0600410, G06004102" +County and PUMA "G0600430, G06000300" +County and PUMA "G0600450, G06003300" +County and PUMA "G0600470, G06004701" +County and PUMA "G0600470, G06004702" +County and PUMA "G0600490, G06001500" +County and PUMA "G0600510, G06000300" +County and PUMA "G0600530, G06005301" +County and PUMA "G0600530, G06005302" +County and PUMA "G0600530, G06005303" +County and PUMA "G0600550, G06005500" +County and PUMA "G0600570, G06005700" +County and PUMA "G0600590, G06005901" +County and PUMA "G0600590, G06005902" +County and PUMA "G0600590, G06005903" +County and PUMA "G0600590, G06005904" +County and PUMA "G0600590, G06005905" +County and PUMA "G0600590, G06005906" +County and PUMA "G0600590, G06005907" +County and PUMA "G0600590, G06005908" +County and PUMA "G0600590, G06005909" +County and PUMA "G0600590, G06005910" +County and PUMA "G0600590, G06005911" +County and PUMA "G0600590, G06005912" +County and PUMA "G0600590, G06005913" +County and PUMA "G0600590, G06005914" +County and PUMA "G0600590, G06005915" +County and PUMA "G0600590, G06005916" +County and PUMA "G0600590, G06005917" +County and PUMA "G0600590, G06005918" +County and PUMA "G0600610, G06006101" +County and PUMA "G0600610, G06006102" +County and PUMA "G0600610, G06006103" +County and PUMA "G0600630, G06001500" +County and PUMA "G0600650, G06006501" +County and PUMA "G0600650, G06006502" +County and PUMA "G0600650, G06006503" +County and PUMA "G0600650, G06006504" +County and PUMA "G0600650, G06006505" +County and PUMA "G0600650, G06006506" +County and PUMA "G0600650, G06006507" +County and PUMA "G0600650, G06006508" +County and PUMA "G0600650, G06006509" +County and PUMA "G0600650, G06006510" +County and PUMA "G0600650, G06006511" +County and PUMA "G0600650, G06006512" +County and PUMA "G0600650, G06006513" +County and PUMA "G0600650, G06006514" +County and PUMA "G0600650, G06006515" +County and PUMA "G0600670, G06006701" +County and PUMA "G0600670, G06006702" +County and PUMA "G0600670, G06006703" +County and PUMA "G0600670, G06006704" +County and PUMA "G0600670, G06006705" +County and PUMA "G0600670, G06006706" +County and PUMA "G0600670, G06006707" +County and PUMA "G0600670, G06006708" +County and PUMA "G0600670, G06006709" +County and PUMA "G0600670, G06006710" +County and PUMA "G0600670, G06006711" +County and PUMA "G0600670, G06006712" +County and PUMA "G0600690, G06005303" +County and PUMA "G0600710, G06007101" +County and PUMA "G0600710, G06007102" +County and PUMA "G0600710, G06007103" +County and PUMA "G0600710, G06007104" +County and PUMA "G0600710, G06007105" +County and PUMA "G0600710, G06007106" +County and PUMA "G0600710, G06007107" +County and PUMA "G0600710, G06007108" +County and PUMA "G0600710, G06007109" +County and PUMA "G0600710, G06007110" +County and PUMA "G0600710, G06007111" +County and PUMA "G0600710, G06007112" +County and PUMA "G0600710, G06007113" +County and PUMA "G0600710, G06007114" +County and PUMA "G0600710, G06007115" +County and PUMA "G0600730, G06007301" +County and PUMA "G0600730, G06007302" +County and PUMA "G0600730, G06007303" +County and PUMA "G0600730, G06007304" +County and PUMA "G0600730, G06007305" +County and PUMA "G0600730, G06007306" +County and PUMA "G0600730, G06007307" +County and PUMA "G0600730, G06007308" +County and PUMA "G0600730, G06007309" +County and PUMA "G0600730, G06007310" +County and PUMA "G0600730, G06007311" +County and PUMA "G0600730, G06007312" +County and PUMA "G0600730, G06007313" +County and PUMA "G0600730, G06007314" +County and PUMA "G0600730, G06007315" +County and PUMA "G0600730, G06007316" +County and PUMA "G0600730, G06007317" +County and PUMA "G0600730, G06007318" +County and PUMA "G0600730, G06007319" +County and PUMA "G0600730, G06007320" +County and PUMA "G0600730, G06007321" +County and PUMA "G0600730, G06007322" +County and PUMA "G0600750, G06007501" +County and PUMA "G0600750, G06007502" +County and PUMA "G0600750, G06007503" +County and PUMA "G0600750, G06007504" +County and PUMA "G0600750, G06007505" +County and PUMA "G0600750, G06007506" +County and PUMA "G0600750, G06007507" +County and PUMA "G0600770, G06007701" +County and PUMA "G0600770, G06007702" +County and PUMA "G0600770, G06007703" +County and PUMA "G0600770, G06007704" +County and PUMA "G0600790, G06007901" +County and PUMA "G0600790, G06007902" +County and PUMA "G0600810, G06008101" +County and PUMA "G0600810, G06008102" +County and PUMA "G0600810, G06008103" +County and PUMA "G0600810, G06008104" +County and PUMA "G0600810, G06008105" +County and PUMA "G0600810, G06008106" +County and PUMA "G0600830, G06008301" +County and PUMA "G0600830, G06008302" +County and PUMA "G0600830, G06008303" +County and PUMA "G0600850, G06008501" +County and PUMA "G0600850, G06008502" +County and PUMA "G0600850, G06008503" +County and PUMA "G0600850, G06008504" +County and PUMA "G0600850, G06008505" +County and PUMA "G0600850, G06008506" +County and PUMA "G0600850, G06008507" +County and PUMA "G0600850, G06008508" +County and PUMA "G0600850, G06008509" +County and PUMA "G0600850, G06008510" +County and PUMA "G0600850, G06008511" +County and PUMA "G0600850, G06008512" +County and PUMA "G0600850, G06008513" +County and PUMA "G0600850, G06008514" +County and PUMA "G0600870, G06008701" +County and PUMA "G0600870, G06008702" +County and PUMA "G0600890, G06008900" +County and PUMA "G0600910, G06005700" +County and PUMA "G0600930, G06001500" +County and PUMA "G0600950, G06009501" +County and PUMA "G0600950, G06009502" +County and PUMA "G0600950, G06009503" +County and PUMA "G0600970, G06009701" +County and PUMA "G0600970, G06009702" +County and PUMA "G0600970, G06009703" +County and PUMA "G0600990, G06009901" +County and PUMA "G0600990, G06009902" +County and PUMA "G0600990, G06009903" +County and PUMA "G0600990, G06009904" +County and PUMA "G0601010, G06010100" +County and PUMA "G0601030, G06001100" +County and PUMA "G0601050, G06001100" +County and PUMA "G0601070, G06010701" +County and PUMA "G0601070, G06010702" +County and PUMA "G0601070, G06010703" +County and PUMA "G0601090, G06000300" +County and PUMA "G0601110, G06011101" +County and PUMA "G0601110, G06011102" +County and PUMA "G0601110, G06011103" +County and PUMA "G0601110, G06011104" +County and PUMA "G0601110, G06011105" +County and PUMA "G0601110, G06011106" +County and PUMA "G0601130, G06011300" +County and PUMA "G0601150, G06010100" +County and PUMA "G0800010, G08000804" +County and PUMA "G0800010, G08000805" +County and PUMA "G0800010, G08000806" +County and PUMA "G0800010, G08000807" +County and PUMA "G0800010, G08000809" +County and PUMA "G0800010, G08000810" +County and PUMA "G0800010, G08000817" +County and PUMA "G0800010, G08000824" +County and PUMA "G0800030, G08000800" +County and PUMA "G0800050, G08000808" +County and PUMA "G0800050, G08000809" +County and PUMA "G0800050, G08000810" +County and PUMA "G0800050, G08000811" +County and PUMA "G0800050, G08000815" +County and PUMA "G0800050, G08000820" +County and PUMA "G0800050, G08000824" +County and PUMA "G0800070, G08000900" +County and PUMA "G0800090, G08000800" +County and PUMA "G0800110, G08000100" +County and PUMA "G0800130, G08000801" +County and PUMA "G0800130, G08000802" +County and PUMA "G0800130, G08000803" +County and PUMA "G0800130, G08000804" +County and PUMA "G0800140, G08000804" +County and PUMA "G0800140, G08000805" +County and PUMA "G0800150, G08000600" +County and PUMA "G0800170, G08000100" +County and PUMA "G0800190, G08000801" +County and PUMA "G0800210, G08000800" +County and PUMA "G0800230, G08000800" +County and PUMA "G0800250, G08000100" +County and PUMA "G0800270, G08000600" +County and PUMA "G0800290, G08001002" +County and PUMA "G0800310, G08000812" +County and PUMA "G0800310, G08000813" +County and PUMA "G0800310, G08000814" +County and PUMA "G0800310, G08000815" +County and PUMA "G0800310, G08000816" +County and PUMA "G0800330, G08000900" +County and PUMA "G0800350, G08000821" +County and PUMA "G0800350, G08000822" +County and PUMA "G0800350, G08000823" +County and PUMA "G0800370, G08000400" +County and PUMA "G0800390, G08000100" +County and PUMA "G0800390, G08000823" +County and PUMA "G0800410, G08004101" +County and PUMA "G0800410, G08004102" +County and PUMA "G0800410, G08004103" +County and PUMA "G0800410, G08004104" +County and PUMA "G0800410, G08004105" +County and PUMA "G0800410, G08004106" +County and PUMA "G0800430, G08000600" +County and PUMA "G0800450, G08000200" +County and PUMA "G0800470, G08000801" +County and PUMA "G0800490, G08000400" +County and PUMA "G0800510, G08000900" +County and PUMA "G0800530, G08000900" +County and PUMA "G0800550, G08000600" +County and PUMA "G0800570, G08000400" +County and PUMA "G0800590, G08000801" +County and PUMA "G0800590, G08000804" +County and PUMA "G0800590, G08000805" +County and PUMA "G0800590, G08000817" +County and PUMA "G0800590, G08000818" +County and PUMA "G0800590, G08000819" +County and PUMA "G0800590, G08000820" +County and PUMA "G0800590, G08000821" +County and PUMA "G0800610, G08000100" +County and PUMA "G0800630, G08000100" +County and PUMA "G0800650, G08000600" +County and PUMA "G0800670, G08000900" +County and PUMA "G0800690, G08000102" +County and PUMA "G0800690, G08000103" +County and PUMA "G0800710, G08000800" +County and PUMA "G0800730, G08000100" +County and PUMA "G0800750, G08000100" +County and PUMA "G0800770, G08001001" +County and PUMA "G0800770, G08001002" +County and PUMA "G0800790, G08000800" +County and PUMA "G0800810, G08000200" +County and PUMA "G0800830, G08000900" +County and PUMA "G0800850, G08001002" +County and PUMA "G0800870, G08000100" +County and PUMA "G0800890, G08000800" +County and PUMA "G0800910, G08001002" +County and PUMA "G0800930, G08000600" +County and PUMA "G0800950, G08000100" +County and PUMA "G0800970, G08000400" +County and PUMA "G0800990, G08000800" +County and PUMA "G0801010, G08000600" +County and PUMA "G0801010, G08000700" +County and PUMA "G0801010, G08000800" +County and PUMA "G0801030, G08000200" +County and PUMA "G0801050, G08000800" +County and PUMA "G0801070, G08000200" +County and PUMA "G0801090, G08000800" +County and PUMA "G0801110, G08000900" +County and PUMA "G0801130, G08001002" +County and PUMA "G0801150, G08000100" +County and PUMA "G0801170, G08000400" +County and PUMA "G0801190, G08004101" +County and PUMA "G0801210, G08000100" +County and PUMA "G0801230, G08000100" +County and PUMA "G0801230, G08000300" +County and PUMA "G0801230, G08000802" +County and PUMA "G0801230, G08000824" +County and PUMA "G0801250, G08000100" +County and PUMA "G0900010, G09000100" +County and PUMA "G0900010, G09000101" +County and PUMA "G0900010, G09000102" +County and PUMA "G0900010, G09000103" +County and PUMA "G0900010, G09000104" +County and PUMA "G0900010, G09000105" +County and PUMA "G0900030, G09000300" +County and PUMA "G0900030, G09000301" +County and PUMA "G0900030, G09000302" +County and PUMA "G0900030, G09000303" +County and PUMA "G0900030, G09000304" +County and PUMA "G0900030, G09000305" +County and PUMA "G0900030, G09000306" +County and PUMA "G0900050, G09000500" +County and PUMA "G0900070, G09000700" +County and PUMA "G0900090, G09000900" +County and PUMA "G0900090, G09000901" +County and PUMA "G0900090, G09000902" +County and PUMA "G0900090, G09000903" +County and PUMA "G0900090, G09000904" +County and PUMA "G0900090, G09000905" +County and PUMA "G0900090, G09000906" +County and PUMA "G0900110, G09001100" +County and PUMA "G0900110, G09001101" +County and PUMA "G0900130, G09001300" +County and PUMA "G0900150, G09001500" +County and PUMA "G1000010, G10000200" +County and PUMA "G1000030, G10000101" +County and PUMA "G1000030, G10000102" +County and PUMA "G1000030, G10000103" +County and PUMA "G1000030, G10000104" +County and PUMA "G1000050, G10000300" +County and PUMA "G1100010, G11000101" +County and PUMA "G1100010, G11000102" +County and PUMA "G1100010, G11000103" +County and PUMA "G1100010, G11000104" +County and PUMA "G1100010, G11000105" +County and PUMA "G1200010, G12000101" +County and PUMA "G1200010, G12000102" +County and PUMA "G1200030, G12008900" +County and PUMA "G1200050, G12000500" +County and PUMA "G1200070, G12002300" +County and PUMA "G1200090, G12000901" +County and PUMA "G1200090, G12000902" +County and PUMA "G1200090, G12000903" +County and PUMA "G1200090, G12000904" +County and PUMA "G1200110, G12001101" +County and PUMA "G1200110, G12001102" +County and PUMA "G1200110, G12001103" +County and PUMA "G1200110, G12001104" +County and PUMA "G1200110, G12001105" +County and PUMA "G1200110, G12001106" +County and PUMA "G1200110, G12001107" +County and PUMA "G1200110, G12001108" +County and PUMA "G1200110, G12001109" +County and PUMA "G1200110, G12001110" +County and PUMA "G1200110, G12001111" +County and PUMA "G1200110, G12001112" +County and PUMA "G1200110, G12001113" +County and PUMA "G1200110, G12001114" +County and PUMA "G1200130, G12006300" +County and PUMA "G1200150, G12001500" +County and PUMA "G1200170, G12001701" +County and PUMA "G1200190, G12001900" +County and PUMA "G1200210, G12002101" +County and PUMA "G1200210, G12002102" +County and PUMA "G1200210, G12002103" +County and PUMA "G1200230, G12002300" +County and PUMA "G1200270, G12002700" +County and PUMA "G1200290, G12002300" +County and PUMA "G1200310, G12003101" +County and PUMA "G1200310, G12003102" +County and PUMA "G1200310, G12003103" +County and PUMA "G1200310, G12003104" +County and PUMA "G1200310, G12003105" +County and PUMA "G1200310, G12003106" +County and PUMA "G1200310, G12003107" +County and PUMA "G1200330, G12003301" +County and PUMA "G1200330, G12003302" +County and PUMA "G1200350, G12003500" +County and PUMA "G1200370, G12006300" +County and PUMA "G1200390, G12006300" +County and PUMA "G1200410, G12002300" +County and PUMA "G1200430, G12009300" +County and PUMA "G1200450, G12006300" +County and PUMA "G1200470, G12012100" +County and PUMA "G1200490, G12002700" +County and PUMA "G1200510, G12009300" +County and PUMA "G1200530, G12005301" +County and PUMA "G1200550, G12002700" +County and PUMA "G1200550, G12009300" +County and PUMA "G1200570, G12005701" +County and PUMA "G1200570, G12005702" +County and PUMA "G1200570, G12005703" +County and PUMA "G1200570, G12005704" +County and PUMA "G1200570, G12005705" +County and PUMA "G1200570, G12005706" +County and PUMA "G1200570, G12005707" +County and PUMA "G1200570, G12005708" +County and PUMA "G1200590, G12000500" +County and PUMA "G1200610, G12006100" +County and PUMA "G1200630, G12006300" +County and PUMA "G1200650, G12006300" +County and PUMA "G1200670, G12012100" +County and PUMA "G1200690, G12006901" +County and PUMA "G1200690, G12006902" +County and PUMA "G1200690, G12006903" +County and PUMA "G1200710, G12007101" +County and PUMA "G1200710, G12007102" +County and PUMA "G1200710, G12007103" +County and PUMA "G1200710, G12007104" +County and PUMA "G1200710, G12007105" +County and PUMA "G1200730, G12007300" +County and PUMA "G1200730, G12007301" +County and PUMA "G1200750, G12002300" +County and PUMA "G1200770, G12006300" +County and PUMA "G1200790, G12012100" +County and PUMA "G1200810, G12008101" +County and PUMA "G1200810, G12008102" +County and PUMA "G1200810, G12008103" +County and PUMA "G1200830, G12008301" +County and PUMA "G1200830, G12008302" +County and PUMA "G1200830, G12008303" +County and PUMA "G1200850, G12008500" +County and PUMA "G1200860, G12008601" +County and PUMA "G1200860, G12008602" +County and PUMA "G1200860, G12008603" +County and PUMA "G1200860, G12008604" +County and PUMA "G1200860, G12008605" +County and PUMA "G1200860, G12008606" +County and PUMA "G1200860, G12008607" +County and PUMA "G1200860, G12008608" +County and PUMA "G1200860, G12008609" +County and PUMA "G1200860, G12008610" +County and PUMA "G1200860, G12008611" +County and PUMA "G1200860, G12008612" +County and PUMA "G1200860, G12008613" +County and PUMA "G1200860, G12008614" +County and PUMA "G1200860, G12008615" +County and PUMA "G1200860, G12008616" +County and PUMA "G1200860, G12008617" +County and PUMA "G1200860, G12008618" +County and PUMA "G1200860, G12008619" +County and PUMA "G1200860, G12008620" +County and PUMA "G1200860, G12008621" +County and PUMA "G1200860, G12008622" +County and PUMA "G1200860, G12008623" +County and PUMA "G1200860, G12008624" +County and PUMA "G1200860, G12008700" +County and PUMA "G1200870, G12008700" +County and PUMA "G1200890, G12008900" +County and PUMA "G1200910, G12009100" +County and PUMA "G1200930, G12009300" +County and PUMA "G1200950, G12009501" +County and PUMA "G1200950, G12009502" +County and PUMA "G1200950, G12009503" +County and PUMA "G1200950, G12009504" +County and PUMA "G1200950, G12009505" +County and PUMA "G1200950, G12009506" +County and PUMA "G1200950, G12009507" +County and PUMA "G1200950, G12009508" +County and PUMA "G1200950, G12009509" +County and PUMA "G1200950, G12009510" +County and PUMA "G1200970, G12009701" +County and PUMA "G1200970, G12009702" +County and PUMA "G1200990, G12009901" +County and PUMA "G1200990, G12009902" +County and PUMA "G1200990, G12009903" +County and PUMA "G1200990, G12009904" +County and PUMA "G1200990, G12009905" +County and PUMA "G1200990, G12009906" +County and PUMA "G1200990, G12009907" +County and PUMA "G1200990, G12009908" +County and PUMA "G1200990, G12009909" +County and PUMA "G1200990, G12009910" +County and PUMA "G1200990, G12009911" +County and PUMA "G1201010, G12010101" +County and PUMA "G1201010, G12010102" +County and PUMA "G1201010, G12010103" +County and PUMA "G1201010, G12010104" +County and PUMA "G1201030, G12010301" +County and PUMA "G1201030, G12010302" +County and PUMA "G1201030, G12010303" +County and PUMA "G1201030, G12010304" +County and PUMA "G1201030, G12010305" +County and PUMA "G1201030, G12010306" +County and PUMA "G1201030, G12010307" +County and PUMA "G1201030, G12010308" +County and PUMA "G1201050, G12010501" +County and PUMA "G1201050, G12010502" +County and PUMA "G1201050, G12010503" +County and PUMA "G1201050, G12010504" +County and PUMA "G1201070, G12010700" +County and PUMA "G1201090, G12010700" +County and PUMA "G1201090, G12010900" +County and PUMA "G1201110, G12011101" +County and PUMA "G1201110, G12011102" +County and PUMA "G1201130, G12011300" +County and PUMA "G1201150, G12011501" +County and PUMA "G1201150, G12011502" +County and PUMA "G1201150, G12011503" +County and PUMA "G1201170, G12011701" +County and PUMA "G1201170, G12011702" +County and PUMA "G1201170, G12011703" +County and PUMA "G1201170, G12011704" +County and PUMA "G1201190, G12006902" +County and PUMA "G1201190, G12006903" +County and PUMA "G1201210, G12012100" +County and PUMA "G1201230, G12012100" +County and PUMA "G1201250, G12002300" +County and PUMA "G1201270, G12003500" +County and PUMA "G1201270, G12012701" +County and PUMA "G1201270, G12012702" +County and PUMA "G1201270, G12012703" +County and PUMA "G1201270, G12012704" +County and PUMA "G1201290, G12006300" +County and PUMA "G1201310, G12000500" +County and PUMA "G1201330, G12000500" +County and PUMA "G1300010, G13001200" +County and PUMA "G1300030, G13000500" +County and PUMA "G1300050, G13000500" +County and PUMA "G1300070, G13001100" +County and PUMA "G1300090, G13001600" +County and PUMA "G1300110, G13003500" +County and PUMA "G1300130, G13003800" +County and PUMA "G1300150, G13002900" +County and PUMA "G1300170, G13000700" +County and PUMA "G1300190, G13000700" +County and PUMA "G1300210, G13001400" +County and PUMA "G1300230, G13001300" +County and PUMA "G1300250, G13000500" +County and PUMA "G1300270, G13000700" +County and PUMA "G1300290, G13000200" +County and PUMA "G1300310, G13000300" +County and PUMA "G1300330, G13004200" +County and PUMA "G1300350, G13001900" +County and PUMA "G1300370, G13001100" +County and PUMA "G1300390, G13000100" +County and PUMA "G1300430, G13001300" +County and PUMA "G1300450, G13002300" +County and PUMA "G1300470, G13002600" +County and PUMA "G1300490, G13000500" +County and PUMA "G1300510, G13000401" +County and PUMA "G1300510, G13000402" +County and PUMA "G1300530, G13001700" +County and PUMA "G1300550, G13002600" +County and PUMA "G1300570, G13003101" +County and PUMA "G1300570, G13003102" +County and PUMA "G1300590, G13003600" +County and PUMA "G1300610, G13001800" +County and PUMA "G1300630, G13005001" +County and PUMA "G1300630, G13005002" +County and PUMA "G1300650, G13000500" +County and PUMA "G1300670, G13003001" +County and PUMA "G1300670, G13003002" +County and PUMA "G1300670, G13003003" +County and PUMA "G1300670, G13003004" +County and PUMA "G1300670, G13003005" +County and PUMA "G1300690, G13000500" +County and PUMA "G1300710, G13000800" +County and PUMA "G1300730, G13004100" +County and PUMA "G1300750, G13000700" +County and PUMA "G1300770, G13002100" +County and PUMA "G1300790, G13001600" +County and PUMA "G1300810, G13001800" +County and PUMA "G1300830, G13002600" +County and PUMA "G1300850, G13003200" +County and PUMA "G1300870, G13001100" +County and PUMA "G1300890, G13001007" +County and PUMA "G1300890, G13001008" +County and PUMA "G1300890, G13002001" +County and PUMA "G1300890, G13002002" +County and PUMA "G1300890, G13002003" +County and PUMA "G1300890, G13002004" +County and PUMA "G1300910, G13001300" +County and PUMA "G1300930, G13001800" +County and PUMA "G1300950, G13000900" +County and PUMA "G1300970, G13004400" +County and PUMA "G1300990, G13001100" +County and PUMA "G1301010, G13000500" +County and PUMA "G1301030, G13000300" +County and PUMA "G1301050, G13003700" +County and PUMA "G1301070, G13001300" +County and PUMA "G1301090, G13001200" +County and PUMA "G1301110, G13002800" +County and PUMA "G1301130, G13002400" +County and PUMA "G1301150, G13002500" +County and PUMA "G1301170, G13003300" +County and PUMA "G1301190, G13003500" +County and PUMA "G1301210, G13001001" +County and PUMA "G1301210, G13001002" +County and PUMA "G1301210, G13001003" +County and PUMA "G1301210, G13001004" +County and PUMA "G1301210, G13001005" +County and PUMA "G1301210, G13001006" +County and PUMA "G1301210, G13001007" +County and PUMA "G1301210, G13004600" +County and PUMA "G1301230, G13002800" +County and PUMA "G1301250, G13004200" +County and PUMA "G1301270, G13000100" +County and PUMA "G1301290, G13002800" +County and PUMA "G1301310, G13001100" +County and PUMA "G1301330, G13003700" +County and PUMA "G1301350, G13004001" +County and PUMA "G1301350, G13004002" +County and PUMA "G1301350, G13004003" +County and PUMA "G1301350, G13004004" +County and PUMA "G1301350, G13004005" +County and PUMA "G1301350, G13004006" +County and PUMA "G1301370, G13003500" +County and PUMA "G1301390, G13003400" +County and PUMA "G1301410, G13004200" +County and PUMA "G1301430, G13002500" +County and PUMA "G1301450, G13001800" +County and PUMA "G1301470, G13003500" +County and PUMA "G1301490, G13002200" +County and PUMA "G1301510, G13006001" +County and PUMA "G1301510, G13006002" +County and PUMA "G1301530, G13001500" +County and PUMA "G1301550, G13000700" +County and PUMA "G1301570, G13003800" +County and PUMA "G1301590, G13003900" +County and PUMA "G1301610, G13001200" +County and PUMA "G1301630, G13004200" +County and PUMA "G1301650, G13004200" +County and PUMA "G1301670, G13001300" +County and PUMA "G1301690, G13001600" +County and PUMA "G1301710, G13001900" +County and PUMA "G1301730, G13000500" +County and PUMA "G1301750, G13001300" +County and PUMA "G1301770, G13000900" +County and PUMA "G1301790, G13000200" +County and PUMA "G1301810, G13004200" +County and PUMA "G1301830, G13000200" +County and PUMA "G1301850, G13000600" +County and PUMA "G1301870, G13003200" +County and PUMA "G1301890, G13004200" +County and PUMA "G1301910, G13000100" +County and PUMA "G1301930, G13001800" +County and PUMA "G1301950, G13003700" +County and PUMA "G1301970, G13001800" +County and PUMA "G1301990, G13002200" +County and PUMA "G1302010, G13001100" +County and PUMA "G1302050, G13001100" +County and PUMA "G1302070, G13001600" +County and PUMA "G1302090, G13001200" +County and PUMA "G1302110, G13003900" +County and PUMA "G1302130, G13002800" +County and PUMA "G1302150, G13001700" +County and PUMA "G1302170, G13004300" +County and PUMA "G1302190, G13003700" +County and PUMA "G1302210, G13003700" +County and PUMA "G1302230, G13004500" +County and PUMA "G1302250, G13001600" +County and PUMA "G1302270, G13002800" +County and PUMA "G1302290, G13000500" +County and PUMA "G1302310, G13001900" +County and PUMA "G1302330, G13002500" +County and PUMA "G1302350, G13001500" +County and PUMA "G1302370, G13001600" +County and PUMA "G1302390, G13001800" +County and PUMA "G1302410, G13003200" +County and PUMA "G1302430, G13001800" +County and PUMA "G1302450, G13004000" +County and PUMA "G1302470, G13004300" +County and PUMA "G1302490, G13001800" +County and PUMA "G1302510, G13000300" +County and PUMA "G1302530, G13001100" +County and PUMA "G1302550, G13001900" +County and PUMA "G1302570, G13003500" +County and PUMA "G1302590, G13001800" +County and PUMA "G1302610, G13001800" +County and PUMA "G1302630, G13001800" +County and PUMA "G1302650, G13004200" +County and PUMA "G1302670, G13001200" +County and PUMA "G1302690, G13001800" +County and PUMA "G1302710, G13001200" +County and PUMA "G1302730, G13001100" +County and PUMA "G1302750, G13000800" +County and PUMA "G1302770, G13000700" +County and PUMA "G1302790, G13001200" +County and PUMA "G1302810, G13003200" +County and PUMA "G1302830, G13001300" +County and PUMA "G1302850, G13002200" +County and PUMA "G1302870, G13000700" +County and PUMA "G1302890, G13001600" +County and PUMA "G1302910, G13003200" +County and PUMA "G1302930, G13001900" +County and PUMA "G1302950, G13002600" +County and PUMA "G1302970, G13003900" +County and PUMA "G1302990, G13000500" +County and PUMA "G1303010, G13004200" +County and PUMA "G1303030, G13004200" +County and PUMA "G1303050, G13001200" +County and PUMA "G1303070, G13001800" +County and PUMA "G1303090, G13001200" +County and PUMA "G1303110, G13003200" +County and PUMA "G1303130, G13002700" +County and PUMA "G1303150, G13001300" +County and PUMA "G1303170, G13004200" +County and PUMA "G1303190, G13001600" +County and PUMA "G1303210, G13000800" +County and PUMA "G1500010, G15000200" +County and PUMA "G1500030, G15000301" +County and PUMA "G1500030, G15000302" +County and PUMA "G1500030, G15000303" +County and PUMA "G1500030, G15000304" +County and PUMA "G1500030, G15000305" +County and PUMA "G1500030, G15000306" +County and PUMA "G1500030, G15000307" +County and PUMA "G1500030, G15000308" +County and PUMA "G1500050, G15000100" +County and PUMA "G1500070, G15000100" +County and PUMA "G1500090, G15000100" +County and PUMA "G1600010, G16000400" +County and PUMA "G1600010, G16000600" +County and PUMA "G1600010, G16000701" +County and PUMA "G1600010, G16000702" +County and PUMA "G1600010, G16000800" +County and PUMA "G1600030, G16000300" +County and PUMA "G1600050, G16001300" +County and PUMA "G1600070, G16001300" +County and PUMA "G1600090, G16000100" +County and PUMA "G1600110, G16001100" +County and PUMA "G1600110, G16001300" +County and PUMA "G1600130, G16001000" +County and PUMA "G1600150, G16000300" +County and PUMA "G1600170, G16000100" +County and PUMA "G1600190, G16001200" +County and PUMA "G1600210, G16000100" +County and PUMA "G1600230, G16000300" +County and PUMA "G1600250, G16001000" +County and PUMA "G1600270, G16000400" +County and PUMA "G1600270, G16000500" +County and PUMA "G1600270, G16000600" +County and PUMA "G1600290, G16001300" +County and PUMA "G1600310, G16000900" +County and PUMA "G1600330, G16000300" +County and PUMA "G1600350, G16000300" +County and PUMA "G1600370, G16000300" +County and PUMA "G1600390, G16001000" +County and PUMA "G1600410, G16001300" +County and PUMA "G1600430, G16001100" +County and PUMA "G1600450, G16000400" +County and PUMA "G1600470, G16001000" +County and PUMA "G1600490, G16000300" +County and PUMA "G1600510, G16001100" +County and PUMA "G1600530, G16001000" +County and PUMA "G1600550, G16000100" +County and PUMA "G1600550, G16000200" +County and PUMA "G1600570, G16000100" +County and PUMA "G1600590, G16000300" +County and PUMA "G1600610, G16000300" +County and PUMA "G1600630, G16001000" +County and PUMA "G1600650, G16001100" +County and PUMA "G1600670, G16001000" +County and PUMA "G1600690, G16000300" +County and PUMA "G1600710, G16001300" +County and PUMA "G1600730, G16000500" +County and PUMA "G1600750, G16000400" +County and PUMA "G1600770, G16001300" +County and PUMA "G1600790, G16000100" +County and PUMA "G1600810, G16001100" +County and PUMA "G1600830, G16000900" +County and PUMA "G1600850, G16000300" +County and PUMA "G1600870, G16000400" +County and PUMA "G1700010, G17000300" +County and PUMA "G1700030, G17000800" +County and PUMA "G1700050, G17000501" +County and PUMA "G1700070, G17002901" +County and PUMA "G1700090, G17000300" +County and PUMA "G1700110, G17002501" +County and PUMA "G1700130, G17000401" +County and PUMA "G1700150, G17000104" +County and PUMA "G1700170, G17000401" +County and PUMA "G1700190, G17002100" +County and PUMA "G1700210, G17001602" +County and PUMA "G1700230, G17000700" +County and PUMA "G1700250, G17000700" +County and PUMA "G1700270, G17000501" +County and PUMA "G1700290, G17000600" +County and PUMA "G1700310, G17003401" +County and PUMA "G1700310, G17003407" +County and PUMA "G1700310, G17003408" +County and PUMA "G1700310, G17003409" +County and PUMA "G1700310, G17003410" +County and PUMA "G1700310, G17003411" +County and PUMA "G1700310, G17003412" +County and PUMA "G1700310, G17003413" +County and PUMA "G1700310, G17003414" +County and PUMA "G1700310, G17003415" +County and PUMA "G1700310, G17003416" +County and PUMA "G1700310, G17003417" +County and PUMA "G1700310, G17003418" +County and PUMA "G1700310, G17003419" +County and PUMA "G1700310, G17003420" +County and PUMA "G1700310, G17003421" +County and PUMA "G1700310, G17003422" +County and PUMA "G1700310, G17003501" +County and PUMA "G1700310, G17003502" +County and PUMA "G1700310, G17003503" +County and PUMA "G1700310, G17003504" +County and PUMA "G1700310, G17003520" +County and PUMA "G1700310, G17003521" +County and PUMA "G1700310, G17003522" +County and PUMA "G1700310, G17003523" +County and PUMA "G1700310, G17003524" +County and PUMA "G1700310, G17003525" +County and PUMA "G1700310, G17003526" +County and PUMA "G1700310, G17003527" +County and PUMA "G1700310, G17003528" +County and PUMA "G1700310, G17003529" +County and PUMA "G1700310, G17003530" +County and PUMA "G1700310, G17003531" +County and PUMA "G1700310, G17003532" +County and PUMA "G1700330, G17000700" +County and PUMA "G1700350, G17000600" +County and PUMA "G1700370, G17002601" +County and PUMA "G1700390, G17001602" +County and PUMA "G1700410, G17000600" +County and PUMA "G1700430, G17003202" +County and PUMA "G1700430, G17003203" +County and PUMA "G1700430, G17003204" +County and PUMA "G1700430, G17003205" +County and PUMA "G1700430, G17003207" +County and PUMA "G1700430, G17003208" +County and PUMA "G1700430, G17003209" +County and PUMA "G1700450, G17000600" +County and PUMA "G1700470, G17000800" +County and PUMA "G1700490, G17000501" +County and PUMA "G1700510, G17000501" +County and PUMA "G1700530, G17002200" +County and PUMA "G1700550, G17000900" +County and PUMA "G1700570, G17000202" +County and PUMA "G1700590, G17000800" +County and PUMA "G1700610, G17000401" +County and PUMA "G1700630, G17003700" +County and PUMA "G1700650, G17000800" +County and PUMA "G1700670, G17000202" +County and PUMA "G1700690, G17000800" +County and PUMA "G1700710, G17000202" +County and PUMA "G1700730, G17000202" +County and PUMA "G1700750, G17002200" +County and PUMA "G1700770, G17000900" +County and PUMA "G1700790, G17000700" +County and PUMA "G1700810, G17001001" +County and PUMA "G1700830, G17000401" +County and PUMA "G1700850, G17000104" +County and PUMA "G1700870, G17000800" +County and PUMA "G1700890, G17003005" +County and PUMA "G1700890, G17003007" +County and PUMA "G1700890, G17003008" +County and PUMA "G1700890, G17003009" +County and PUMA "G1700910, G17002300" +County and PUMA "G1700930, G17003700" +County and PUMA "G1700950, G17002501" +County and PUMA "G1700970, G17003306" +County and PUMA "G1700970, G17003307" +County and PUMA "G1700970, G17003308" +County and PUMA "G1700970, G17003309" +County and PUMA "G1700970, G17003310" +County and PUMA "G1700990, G17002400" +County and PUMA "G1701010, G17000700" +County and PUMA "G1701030, G17000104" +County and PUMA "G1701050, G17002200" +County and PUMA "G1701070, G17001602" +County and PUMA "G1701090, G17000202" +County and PUMA "G1701110, G17003601" +County and PUMA "G1701110, G17003602" +County and PUMA "G1701130, G17002000" +County and PUMA "G1701150, G17001500" +County and PUMA "G1701170, G17000401" +County and PUMA "G1701190, G17001204" +County and PUMA "G1701190, G17001205" +County and PUMA "G1701210, G17001001" +County and PUMA "G1701230, G17002501" +County and PUMA "G1701250, G17000300" +County and PUMA "G1701270, G17000800" +County and PUMA "G1701290, G17001602" +County and PUMA "G1701310, G17000202" +County and PUMA "G1701330, G17001001" +County and PUMA "G1701350, G17000501" +County and PUMA "G1701370, G17000401" +County and PUMA "G1701390, G17001602" +County and PUMA "G1701410, G17002700" +County and PUMA "G1701430, G17001701" +County and PUMA "G1701450, G17000900" +County and PUMA "G1701470, G17001602" +County and PUMA "G1701490, G17000300" +County and PUMA "G1701510, G17000800" +County and PUMA "G1701530, G17000800" +County and PUMA "G1701550, G17002501" +County and PUMA "G1701570, G17001001" +County and PUMA "G1701590, G17000700" +County and PUMA "G1701610, G17000105" +County and PUMA "G1701630, G17001104" +County and PUMA "G1701630, G17001105" +County and PUMA "G1701650, G17000800" +County and PUMA "G1701670, G17001300" +County and PUMA "G1701690, G17000300" +County and PUMA "G1701710, G17000401" +County and PUMA "G1701730, G17001602" +County and PUMA "G1701750, G17002501" +County and PUMA "G1701770, G17002700" +County and PUMA "G1701790, G17001900" +County and PUMA "G1701810, G17000800" +County and PUMA "G1701830, G17002200" +County and PUMA "G1701850, G17000800" +County and PUMA "G1701870, G17000202" +County and PUMA "G1701890, G17001001" +County and PUMA "G1701910, G17000700" +County and PUMA "G1701930, G17000800" +County and PUMA "G1701950, G17000104" +County and PUMA "G1701970, G17003102" +County and PUMA "G1701970, G17003105" +County and PUMA "G1701970, G17003106" +County and PUMA "G1701970, G17003107" +County and PUMA "G1701970, G17003108" +County and PUMA "G1701990, G17000900" +County and PUMA "G1702010, G17002801" +County and PUMA "G1702010, G17002901" +County and PUMA "G1702030, G17002501" +County and PUMA "G1800010, G18000900" +County and PUMA "G1800030, G18001001" +County and PUMA "G1800030, G18001002" +County and PUMA "G1800030, G18001003" +County and PUMA "G1800050, G18002900" +County and PUMA "G1800070, G18001100" +County and PUMA "G1800090, G18001500" +County and PUMA "G1800110, G18001801" +County and PUMA "G1800130, G18002100" +County and PUMA "G1800150, G18001100" +County and PUMA "G1800170, G18001300" +County and PUMA "G1800190, G18003600" +County and PUMA "G1800210, G18001600" +County and PUMA "G1800230, G18001100" +County and PUMA "G1800250, G18003400" +County and PUMA "G1800270, G18002700" +County and PUMA "G1800290, G18003100" +County and PUMA "G1800310, G18003000" +County and PUMA "G1800330, G18000600" +County and PUMA "G1800350, G18002000" +County and PUMA "G1800370, G18003400" +County and PUMA "G1800390, G18000500" +County and PUMA "G1800410, G18002600" +County and PUMA "G1800430, G18003500" +County and PUMA "G1800450, G18001600" +County and PUMA "G1800470, G18003100" +County and PUMA "G1800490, G18000700" +County and PUMA "G1800510, G18003200" +County and PUMA "G1800530, G18001400" +County and PUMA "G1800550, G18002700" +County and PUMA "G1800570, G18001801" +County and PUMA "G1800570, G18001802" +County and PUMA "G1800570, G18001803" +County and PUMA "G1800590, G18002500" +County and PUMA "G1800610, G18003500" +County and PUMA "G1800630, G18002200" +County and PUMA "G1800650, G18001500" +County and PUMA "G1800670, G18001300" +County and PUMA "G1800690, G18000900" +County and PUMA "G1800710, G18002900" +County and PUMA "G1800730, G18000700" +County and PUMA "G1800750, G18001500" +County and PUMA "G1800770, G18003000" +County and PUMA "G1800790, G18003000" +County and PUMA "G1800810, G18002400" +County and PUMA "G1800830, G18003400" +County and PUMA "G1800850, G18000800" +County and PUMA "G1800870, G18000600" +County and PUMA "G1800890, G18000101" +County and PUMA "G1800890, G18000102" +County and PUMA "G1800890, G18000103" +County and PUMA "G1800890, G18000104" +County and PUMA "G1800910, G18000300" +County and PUMA "G1800930, G18002700" +County and PUMA "G1800950, G18001900" +County and PUMA "G1800970, G18002301" +County and PUMA "G1800970, G18002302" +County and PUMA "G1800970, G18002303" +County and PUMA "G1800970, G18002304" +County and PUMA "G1800970, G18002305" +County and PUMA "G1800970, G18002306" +County and PUMA "G1800970, G18002307" +County and PUMA "G1800990, G18000800" +County and PUMA "G1801010, G18002700" +County and PUMA "G1801030, G18001400" +County and PUMA "G1801050, G18002800" +County and PUMA "G1801070, G18001100" +County and PUMA "G1801090, G18002100" +County and PUMA "G1801110, G18000700" +County and PUMA "G1801130, G18000600" +County and PUMA "G1801150, G18003100" +County and PUMA "G1801170, G18002700" +County and PUMA "G1801190, G18002700" +County and PUMA "G1801210, G18001600" +County and PUMA "G1801230, G18003400" +County and PUMA "G1801250, G18003400" +County and PUMA "G1801270, G18000200" +County and PUMA "G1801290, G18003200" +County and PUMA "G1801310, G18000700" +County and PUMA "G1801330, G18002100" +County and PUMA "G1801350, G18001500" +County and PUMA "G1801370, G18003100" +County and PUMA "G1801390, G18002600" +County and PUMA "G1801410, G18000401" +County and PUMA "G1801410, G18000402" +County and PUMA "G1801430, G18003000" +County and PUMA "G1801450, G18002500" +County and PUMA "G1801470, G18003400" +County and PUMA "G1801490, G18000700" +County and PUMA "G1801510, G18000600" +County and PUMA "G1801530, G18001600" +County and PUMA "G1801550, G18003100" +County and PUMA "G1801570, G18001200" +County and PUMA "G1801590, G18001300" +County and PUMA "G1801610, G18002600" +County and PUMA "G1801630, G18003300" +County and PUMA "G1801650, G18001600" +County and PUMA "G1801670, G18001700" +County and PUMA "G1801690, G18001400" +County and PUMA "G1801710, G18001600" +County and PUMA "G1801730, G18003200" +County and PUMA "G1801750, G18003500" +County and PUMA "G1801770, G18002600" +County and PUMA "G1801790, G18000900" +County and PUMA "G1801810, G18001100" +County and PUMA "G1801830, G18000900" +County and PUMA "G1900010, G19001800" +County and PUMA "G1900030, G19001800" +County and PUMA "G1900050, G19000400" +County and PUMA "G1900070, G19001800" +County and PUMA "G1900090, G19001800" +County and PUMA "G1900110, G19001200" +County and PUMA "G1900130, G19000500" +County and PUMA "G1900150, G19001300" +County and PUMA "G1900170, G19000400" +County and PUMA "G1900190, G19000700" +County and PUMA "G1900210, G19001900" +County and PUMA "G1900230, G19000600" +County and PUMA "G1900250, G19001900" +County and PUMA "G1900270, G19001900" +County and PUMA "G1900290, G19002100" +County and PUMA "G1900310, G19000800" +County and PUMA "G1900330, G19000200" +County and PUMA "G1900350, G19001900" +County and PUMA "G1900370, G19000400" +County and PUMA "G1900390, G19001800" +County and PUMA "G1900410, G19000100" +County and PUMA "G1900430, G19000400" +County and PUMA "G1900450, G19000800" +County and PUMA "G1900470, G19001900" +County and PUMA "G1900490, G19001400" +County and PUMA "G1900490, G19001500" +County and PUMA "G1900510, G19002200" +County and PUMA "G1900530, G19001800" +County and PUMA "G1900550, G19000700" +County and PUMA "G1900570, G19002300" +County and PUMA "G1900590, G19000100" +County and PUMA "G1900610, G19000700" +County and PUMA "G1900630, G19000100" +County and PUMA "G1900650, G19000400" +County and PUMA "G1900670, G19000200" +County and PUMA "G1900690, G19000600" +County and PUMA "G1900710, G19002100" +County and PUMA "G1900730, G19001900" +County and PUMA "G1900750, G19000600" +County and PUMA "G1900770, G19001800" +County and PUMA "G1900790, G19000600" +County and PUMA "G1900810, G19000200" +County and PUMA "G1900830, G19000600" +County and PUMA "G1900850, G19002100" +County and PUMA "G1900870, G19002300" +County and PUMA "G1900890, G19000400" +County and PUMA "G1900910, G19000600" +County and PUMA "G1900930, G19001900" +County and PUMA "G1900950, G19001200" +County and PUMA "G1900970, G19000700" +County and PUMA "G1900990, G19001400" +County and PUMA "G1901010, G19002200" +County and PUMA "G1901030, G19001100" +County and PUMA "G1901050, G19000800" +County and PUMA "G1901070, G19002200" +County and PUMA "G1901090, G19000200" +County and PUMA "G1901110, G19002300" +County and PUMA "G1901130, G19001000" +County and PUMA "G1901150, G19002300" +County and PUMA "G1901170, G19001800" +County and PUMA "G1901190, G19000100" +County and PUMA "G1901210, G19001400" +County and PUMA "G1901230, G19002200" +County and PUMA "G1901250, G19001400" +County and PUMA "G1901270, G19001200" +County and PUMA "G1901290, G19002100" +County and PUMA "G1901310, G19000200" +County and PUMA "G1901330, G19001900" +County and PUMA "G1901350, G19001800" +County and PUMA "G1901370, G19002100" +County and PUMA "G1901390, G19000800" +County and PUMA "G1901410, G19000100" +County and PUMA "G1901430, G19000100" +County and PUMA "G1901450, G19002100" +County and PUMA "G1901470, G19000100" +County and PUMA "G1901490, G19002000" +County and PUMA "G1901510, G19001900" +County and PUMA "G1901530, G19001500" +County and PUMA "G1901530, G19001600" +County and PUMA "G1901530, G19001700" +County and PUMA "G1901550, G19002100" +County and PUMA "G1901570, G19001200" +County and PUMA "G1901590, G19001800" +County and PUMA "G1901610, G19001900" +County and PUMA "G1901630, G19000900" +County and PUMA "G1901650, G19002100" +County and PUMA "G1901670, G19000100" +County and PUMA "G1901690, G19001300" +County and PUMA "G1901710, G19001200" +County and PUMA "G1901730, G19001800" +County and PUMA "G1901750, G19001800" +County and PUMA "G1901770, G19002200" +County and PUMA "G1901790, G19002200" +County and PUMA "G1901810, G19001400" +County and PUMA "G1901830, G19002200" +County and PUMA "G1901850, G19001800" +County and PUMA "G1901870, G19000600" +County and PUMA "G1901890, G19000200" +County and PUMA "G1901910, G19000400" +County and PUMA "G1901930, G19002000" +County and PUMA "G1901950, G19000200" +County and PUMA "G1901970, G19000600" +County and PUMA "G2000010, G20001400" +County and PUMA "G2000030, G20001400" +County and PUMA "G2000050, G20000400" +County and PUMA "G2000070, G20001100" +County and PUMA "G2000090, G20001100" +County and PUMA "G2000110, G20001400" +County and PUMA "G2000130, G20000802" +County and PUMA "G2000150, G20001302" +County and PUMA "G2000150, G20001304" +County and PUMA "G2000170, G20000900" +County and PUMA "G2000190, G20000900" +County and PUMA "G2000210, G20001500" +County and PUMA "G2000230, G20000100" +County and PUMA "G2000250, G20001200" +County and PUMA "G2000270, G20000200" +County and PUMA "G2000290, G20000200" +County and PUMA "G2000310, G20000900" +County and PUMA "G2000330, G20001100" +County and PUMA "G2000350, G20000900" +County and PUMA "G2000350, G20001100" +County and PUMA "G2000370, G20001500" +County and PUMA "G2000390, G20000100" +County and PUMA "G2000410, G20000200" +County and PUMA "G2000430, G20000400" +County and PUMA "G2000450, G20000700" +County and PUMA "G2000470, G20001100" +County and PUMA "G2000490, G20000900" +County and PUMA "G2000510, G20000100" +County and PUMA "G2000530, G20000200" +County and PUMA "G2000550, G20001200" +County and PUMA "G2000570, G20001200" +County and PUMA "G2000590, G20001400" +County and PUMA "G2000610, G20000300" +County and PUMA "G2000630, G20000100" +County and PUMA "G2000650, G20000100" +County and PUMA "G2000670, G20001200" +County and PUMA "G2000690, G20001200" +County and PUMA "G2000710, G20000100" +County and PUMA "G2000730, G20000900" +County and PUMA "G2000750, G20001200" +County and PUMA "G2000770, G20001100" +County and PUMA "G2000790, G20001301" +County and PUMA "G2000810, G20001200" +County and PUMA "G2000830, G20001200" +County and PUMA "G2000850, G20000802" +County and PUMA "G2000870, G20000400" +County and PUMA "G2000890, G20000200" +County and PUMA "G2000910, G20000601" +County and PUMA "G2000910, G20000602" +County and PUMA "G2000910, G20000603" +County and PUMA "G2000910, G20000604" +County and PUMA "G2000930, G20001200" +County and PUMA "G2000950, G20001100" +County and PUMA "G2000970, G20001100" +County and PUMA "G2000990, G20001500" +County and PUMA "G2001010, G20000100" +County and PUMA "G2001030, G20000400" +County and PUMA "G2001050, G20000200" +County and PUMA "G2001070, G20001400" +County and PUMA "G2001090, G20000100" +County and PUMA "G2001110, G20000900" +County and PUMA "G2001130, G20001000" +County and PUMA "G2001150, G20000900" +County and PUMA "G2001170, G20000200" +County and PUMA "G2001190, G20001200" +County and PUMA "G2001210, G20001400" +County and PUMA "G2001230, G20000200" +County and PUMA "G2001250, G20001500" +County and PUMA "G2001270, G20000900" +County and PUMA "G2001290, G20001200" +County and PUMA "G2001310, G20000200" +County and PUMA "G2001330, G20001500" +County and PUMA "G2001350, G20000100" +County and PUMA "G2001370, G20000100" +County and PUMA "G2001390, G20000802" +County and PUMA "G2001410, G20000100" +County and PUMA "G2001430, G20000200" +County and PUMA "G2001450, G20001100" +County and PUMA "G2001470, G20000100" +County and PUMA "G2001490, G20000300" +County and PUMA "G2001510, G20001100" +County and PUMA "G2001530, G20000100" +County and PUMA "G2001550, G20001000" +County and PUMA "G2001570, G20000200" +County and PUMA "G2001590, G20001000" +County and PUMA "G2001610, G20000300" +County and PUMA "G2001630, G20000100" +County and PUMA "G2001650, G20001100" +County and PUMA "G2001670, G20000100" +County and PUMA "G2001690, G20000200" +County and PUMA "G2001710, G20000100" +County and PUMA "G2001730, G20001301" +County and PUMA "G2001730, G20001302" +County and PUMA "G2001730, G20001303" +County and PUMA "G2001730, G20001304" +County and PUMA "G2001750, G20001200" +County and PUMA "G2001770, G20000801" +County and PUMA "G2001770, G20000802" +County and PUMA "G2001790, G20000100" +County and PUMA "G2001810, G20000100" +County and PUMA "G2001830, G20000100" +County and PUMA "G2001850, G20001100" +County and PUMA "G2001870, G20001200" +County and PUMA "G2001890, G20001200" +County and PUMA "G2001910, G20001100" +County and PUMA "G2001930, G20000100" +County and PUMA "G2001950, G20000100" +County and PUMA "G2001970, G20000802" +County and PUMA "G2001990, G20000100" +County and PUMA "G2002010, G20000200" +County and PUMA "G2002030, G20000100" +County and PUMA "G2002050, G20000900" +County and PUMA "G2002070, G20000900" +County and PUMA "G2002090, G20000500" +County and PUMA "G2100010, G21000600" +County and PUMA "G2100030, G21000400" +County and PUMA "G2100050, G21002000" +County and PUMA "G2100070, G21000100" +County and PUMA "G2100090, G21000400" +County and PUMA "G2100110, G21002700" +County and PUMA "G2100130, G21000900" +County and PUMA "G2100150, G21002500" +County and PUMA "G2100170, G21002300" +County and PUMA "G2100190, G21002800" +County and PUMA "G2100210, G21002100" +County and PUMA "G2100230, G21002700" +County and PUMA "G2100250, G21001000" +County and PUMA "G2100270, G21001300" +County and PUMA "G2100290, G21001600" +County and PUMA "G2100310, G21000400" +County and PUMA "G2100330, G21000200" +County and PUMA "G2100350, G21000100" +County and PUMA "G2100370, G21002600" +County and PUMA "G2100390, G21000100" +County and PUMA "G2100410, G21002600" +County and PUMA "G2100430, G21002800" +County and PUMA "G2100450, G21000600" +County and PUMA "G2100470, G21000300" +County and PUMA "G2100490, G21002300" +County and PUMA "G2100510, G21000800" +County and PUMA "G2100530, G21000600" +County and PUMA "G2100550, G21000200" +County and PUMA "G2100570, G21000600" +County and PUMA "G2100590, G21001500" +County and PUMA "G2100610, G21000400" +County and PUMA "G2100630, G21002800" +County and PUMA "G2100650, G21002200" +County and PUMA "G2100670, G21001901" +County and PUMA "G2100670, G21001902" +County and PUMA "G2100690, G21002700" +County and PUMA "G2100710, G21001100" +County and PUMA "G2100730, G21002000" +County and PUMA "G2100750, G21000100" +County and PUMA "G2100770, G21002600" +County and PUMA "G2100790, G21002100" +County and PUMA "G2100810, G21002600" +County and PUMA "G2100830, G21000100" +County and PUMA "G2100850, G21001300" +County and PUMA "G2100870, G21000600" +County and PUMA "G2100890, G21002800" +County and PUMA "G2100910, G21001500" +County and PUMA "G2100930, G21001200" +County and PUMA "G2100930, G21001300" +County and PUMA "G2100950, G21000900" +County and PUMA "G2100970, G21002300" +County and PUMA "G2100990, G21000400" +County and PUMA "G2101010, G21001400" +County and PUMA "G2101030, G21001800" +County and PUMA "G2101050, G21000100" +County and PUMA "G2101070, G21000200" +County and PUMA "G2101090, G21000800" +County and PUMA "G2101110, G21001701" +County and PUMA "G2101110, G21001702" +County and PUMA "G2101110, G21001703" +County and PUMA "G2101110, G21001704" +County and PUMA "G2101110, G21001705" +County and PUMA "G2101110, G21001706" +County and PUMA "G2101130, G21002100" +County and PUMA "G2101150, G21001100" +County and PUMA "G2101170, G21002400" +County and PUMA "G2101190, G21001000" +County and PUMA "G2101210, G21000900" +County and PUMA "G2101230, G21001200" +County and PUMA "G2101250, G21000800" +County and PUMA "G2101270, G21002800" +County and PUMA "G2101290, G21001000" +County and PUMA "G2101310, G21001000" +County and PUMA "G2101330, G21001000" +County and PUMA "G2101350, G21002700" +County and PUMA "G2101370, G21002100" +County and PUMA "G2101390, G21000200" +County and PUMA "G2101410, G21000400" +County and PUMA "G2101430, G21000300" +County and PUMA "G2101450, G21000100" +County and PUMA "G2101470, G21000700" +County and PUMA "G2101490, G21001400" +County and PUMA "G2101510, G21002200" +County and PUMA "G2101530, G21001100" +County and PUMA "G2101550, G21001200" +County and PUMA "G2101570, G21000100" +County and PUMA "G2101590, G21001100" +County and PUMA "G2101610, G21002700" +County and PUMA "G2101630, G21001300" +County and PUMA "G2101650, G21002700" +County and PUMA "G2101670, G21002000" +County and PUMA "G2101690, G21000400" +County and PUMA "G2101710, G21000400" +County and PUMA "G2101730, G21002700" +County and PUMA "G2101750, G21002700" +County and PUMA "G2101770, G21000200" +County and PUMA "G2101790, G21001200" +County and PUMA "G2101810, G21002300" +County and PUMA "G2101830, G21001400" +County and PUMA "G2101850, G21001800" +County and PUMA "G2101870, G21002600" +County and PUMA "G2101890, G21001000" +County and PUMA "G2101910, G21002600" +County and PUMA "G2101930, G21001000" +County and PUMA "G2101950, G21001100" +County and PUMA "G2101970, G21002200" +County and PUMA "G2101990, G21000700" +County and PUMA "G2102010, G21002700" +County and PUMA "G2102030, G21000800" +County and PUMA "G2102050, G21002700" +County and PUMA "G2102070, G21000600" +County and PUMA "G2102090, G21002300" +County and PUMA "G2102110, G21001600" +County and PUMA "G2102110, G21001800" +County and PUMA "G2102130, G21000400" +County and PUMA "G2102150, G21001600" +County and PUMA "G2102170, G21000600" +County and PUMA "G2102190, G21000300" +County and PUMA "G2102210, G21000300" +County and PUMA "G2102230, G21001800" +County and PUMA "G2102250, G21001400" +County and PUMA "G2102270, G21000500" +County and PUMA "G2102290, G21001200" +County and PUMA "G2102310, G21000700" +County and PUMA "G2102330, G21001400" +County and PUMA "G2102350, G21000900" +County and PUMA "G2102370, G21001000" +County and PUMA "G2102390, G21002000" +County and PUMA "G2200010, G22001100" +County and PUMA "G2200030, G22000800" +County and PUMA "G2200050, G22001600" +County and PUMA "G2200070, G22002000" +County and PUMA "G2200090, G22000600" +County and PUMA "G2200110, G22000800" +County and PUMA "G2200130, G22000300" +County and PUMA "G2200150, G22000200" +County and PUMA "G2200170, G22000100" +County and PUMA "G2200170, G22000101" +County and PUMA "G2200190, G22000800" +County and PUMA "G2200190, G22000900" +County and PUMA "G2200210, G22000500" +County and PUMA "G2200230, G22000900" +County and PUMA "G2200250, G22000600" +County and PUMA "G2200270, G22000300" +County and PUMA "G2200290, G22000600" +County and PUMA "G2200310, G22000300" +County and PUMA "G2200330, G22001500" +County and PUMA "G2200330, G22001501" +County and PUMA "G2200330, G22001502" +County and PUMA "G2200350, G22000500" +County and PUMA "G2200370, G22001400" +County and PUMA "G2200390, G22001000" +County and PUMA "G2200410, G22000500" +County and PUMA "G2200430, G22000600" +County and PUMA "G2200450, G22001300" +County and PUMA "G2200470, G22001400" +County and PUMA "G2200490, G22000500" +County and PUMA "G2200510, G22002300" +County and PUMA "G2200510, G22002301" +County and PUMA "G2200510, G22002302" +County and PUMA "G2200510, G22002500" +County and PUMA "G2200530, G22000900" +County and PUMA "G2200550, G22001200" +County and PUMA "G2200550, G22001201" +County and PUMA "G2200570, G22002000" +County and PUMA "G2200590, G22000600" +County and PUMA "G2200610, G22000300" +County and PUMA "G2200630, G22001700" +County and PUMA "G2200650, G22000500" +County and PUMA "G2200670, G22000500" +County and PUMA "G2200690, G22000300" +County and PUMA "G2200710, G22002400" +County and PUMA "G2200710, G22002401" +County and PUMA "G2200710, G22002402" +County and PUMA "G2200730, G22000400" +County and PUMA "G2200750, G22002500" +County and PUMA "G2200770, G22001400" +County and PUMA "G2200790, G22000700" +County and PUMA "G2200810, G22000300" +County and PUMA "G2200830, G22000500" +County and PUMA "G2200850, G22000300" +County and PUMA "G2200870, G22002500" +County and PUMA "G2200890, G22001900" +County and PUMA "G2200910, G22001700" +County and PUMA "G2200930, G22001900" +County and PUMA "G2200950, G22001900" +County and PUMA "G2200970, G22001000" +County and PUMA "G2200990, G22001300" +County and PUMA "G2201010, G22001300" +County and PUMA "G2201030, G22002200" +County and PUMA "G2201030, G22002201" +County and PUMA "G2201050, G22001800" +County and PUMA "G2201070, G22000500" +County and PUMA "G2201090, G22002100" +County and PUMA "G2201110, G22000500" +County and PUMA "G2201130, G22001100" +County and PUMA "G2201150, G22000700" +County and PUMA "G2201170, G22001800" +County and PUMA "G2201190, G22000200" +County and PUMA "G2201210, G22001400" +County and PUMA "G2201230, G22000500" +County and PUMA "G2201250, G22001400" +County and PUMA "G2201270, G22000600" +County and PUMA "G2300010, G23000600" +County and PUMA "G2300030, G23000100" +County and PUMA "G2300050, G23000700" +County and PUMA "G2300050, G23000800" +County and PUMA "G2300050, G23000900" +County and PUMA "G2300050, G23001000" +County and PUMA "G2300070, G23000200" +County and PUMA "G2300090, G23000500" +County and PUMA "G2300110, G23000400" +County and PUMA "G2300130, G23000500" +County and PUMA "G2300150, G23000500" +County and PUMA "G2300170, G23000200" +County and PUMA "G2300190, G23000300" +County and PUMA "G2300210, G23000200" +County and PUMA "G2300230, G23000700" +County and PUMA "G2300250, G23000200" +County and PUMA "G2300270, G23000500" +County and PUMA "G2300290, G23000100" +County and PUMA "G2300310, G23000800" +County and PUMA "G2300310, G23000900" +County and PUMA "G2400010, G24000100" +County and PUMA "G2400030, G24001201" +County and PUMA "G2400030, G24001202" +County and PUMA "G2400030, G24001203" +County and PUMA "G2400030, G24001204" +County and PUMA "G2400050, G24000501" +County and PUMA "G2400050, G24000502" +County and PUMA "G2400050, G24000503" +County and PUMA "G2400050, G24000504" +County and PUMA "G2400050, G24000505" +County and PUMA "G2400050, G24000506" +County and PUMA "G2400050, G24000507" +County and PUMA "G2400090, G24001500" +County and PUMA "G2400110, G24001300" +County and PUMA "G2400130, G24000400" +County and PUMA "G2400150, G24000700" +County and PUMA "G2400170, G24001600" +County and PUMA "G2400190, G24001300" +County and PUMA "G2400210, G24000301" +County and PUMA "G2400210, G24000302" +County and PUMA "G2400230, G24000100" +County and PUMA "G2400250, G24000601" +County and PUMA "G2400250, G24000602" +County and PUMA "G2400270, G24000901" +County and PUMA "G2400270, G24000902" +County and PUMA "G2400290, G24001300" +County and PUMA "G2400310, G24001001" +County and PUMA "G2400310, G24001002" +County and PUMA "G2400310, G24001003" +County and PUMA "G2400310, G24001004" +County and PUMA "G2400310, G24001005" +County and PUMA "G2400310, G24001006" +County and PUMA "G2400310, G24001007" +County and PUMA "G2400330, G24001101" +County and PUMA "G2400330, G24001102" +County and PUMA "G2400330, G24001103" +County and PUMA "G2400330, G24001104" +County and PUMA "G2400330, G24001105" +County and PUMA "G2400330, G24001106" +County and PUMA "G2400330, G24001107" +County and PUMA "G2400350, G24001300" +County and PUMA "G2400370, G24001500" +County and PUMA "G2400390, G24001400" +County and PUMA "G2400410, G24001300" +County and PUMA "G2400430, G24000200" +County and PUMA "G2400450, G24001400" +County and PUMA "G2400470, G24001400" +County and PUMA "G2405100, G24000801" +County and PUMA "G2405100, G24000802" +County and PUMA "G2405100, G24000803" +County and PUMA "G2405100, G24000804" +County and PUMA "G2405100, G24000805" +County and PUMA "G2500010, G25004700" +County and PUMA "G2500010, G25004800" +County and PUMA "G2500030, G25000100" +County and PUMA "G2500050, G25004200" +County and PUMA "G2500050, G25004301" +County and PUMA "G2500050, G25004302" +County and PUMA "G2500050, G25004303" +County and PUMA "G2500050, G25004500" +County and PUMA "G2500050, G25004901" +County and PUMA "G2500070, G25004800" +County and PUMA "G2500090, G25000701" +County and PUMA "G2500090, G25000702" +County and PUMA "G2500090, G25000703" +County and PUMA "G2500090, G25000704" +County and PUMA "G2500090, G25001000" +County and PUMA "G2500090, G25001300" +County and PUMA "G2500090, G25002800" +County and PUMA "G2500110, G25000200" +County and PUMA "G2500130, G25001600" +County and PUMA "G2500130, G25001900" +County and PUMA "G2500130, G25001901" +County and PUMA "G2500130, G25001902" +County and PUMA "G2500150, G25000200" +County and PUMA "G2500150, G25001600" +County and PUMA "G2500170, G25000400" +County and PUMA "G2500170, G25000501" +County and PUMA "G2500170, G25000502" +County and PUMA "G2500170, G25000503" +County and PUMA "G2500170, G25000504" +County and PUMA "G2500170, G25000505" +County and PUMA "G2500170, G25000506" +County and PUMA "G2500170, G25000507" +County and PUMA "G2500170, G25000508" +County and PUMA "G2500170, G25001000" +County and PUMA "G2500170, G25001300" +County and PUMA "G2500170, G25001400" +County and PUMA "G2500170, G25002400" +County and PUMA "G2500170, G25002800" +County and PUMA "G2500170, G25003400" +County and PUMA "G2500170, G25003500" +County and PUMA "G2500190, G25004800" +County and PUMA "G2500210, G25002400" +County and PUMA "G2500210, G25003400" +County and PUMA "G2500210, G25003500" +County and PUMA "G2500210, G25003601" +County and PUMA "G2500210, G25003602" +County and PUMA "G2500210, G25003603" +County and PUMA "G2500210, G25003900" +County and PUMA "G2500210, G25004000" +County and PUMA "G2500210, G25004200" +County and PUMA "G2500230, G25003900" +County and PUMA "G2500230, G25004000" +County and PUMA "G2500230, G25004301" +County and PUMA "G2500230, G25004901" +County and PUMA "G2500230, G25004902" +County and PUMA "G2500230, G25004903" +County and PUMA "G2500250, G25003301" +County and PUMA "G2500250, G25003302" +County and PUMA "G2500250, G25003303" +County and PUMA "G2500250, G25003304" +County and PUMA "G2500250, G25003305" +County and PUMA "G2500250, G25003306" +County and PUMA "G2500270, G25000300" +County and PUMA "G2500270, G25000301" +County and PUMA "G2500270, G25000302" +County and PUMA "G2500270, G25000303" +County and PUMA "G2500270, G25000304" +County and PUMA "G2500270, G25000400" +County and PUMA "G2500270, G25001400" +County and PUMA "G2500270, G25002400" +County and PUMA "G2600010, G26000300" +County and PUMA "G2600030, G26000200" +County and PUMA "G2600050, G26000900" +County and PUMA "G2600070, G26000300" +County and PUMA "G2600090, G26000400" +County and PUMA "G2600110, G26001300" +County and PUMA "G2600130, G26000100" +County and PUMA "G2600150, G26002000" +County and PUMA "G2600170, G26001400" +County and PUMA "G2600190, G26000500" +County and PUMA "G2600210, G26002400" +County and PUMA "G2600230, G26002200" +County and PUMA "G2600250, G26002000" +County and PUMA "G2600270, G26002300" +County and PUMA "G2600290, G26000400" +County and PUMA "G2600310, G26000300" +County and PUMA "G2600330, G26000200" +County and PUMA "G2600350, G26001200" +County and PUMA "G2600370, G26001900" +County and PUMA "G2600390, G26000300" +County and PUMA "G2600410, G26000200" +County and PUMA "G2600430, G26000100" +County and PUMA "G2600450, G26001900" +County and PUMA "G2600470, G26000400" +County and PUMA "G2600490, G26001701" +County and PUMA "G2600490, G26001702" +County and PUMA "G2600490, G26001703" +County and PUMA "G2600490, G26001704" +County and PUMA "G2600510, G26001300" +County and PUMA "G2600530, G26000100" +County and PUMA "G2600550, G26000500" +County and PUMA "G2600570, G26001200" +County and PUMA "G2600590, G26002500" +County and PUMA "G2600610, G26000100" +County and PUMA "G2600630, G26001600" +County and PUMA "G2600650, G26001801" +County and PUMA "G2600650, G26001802" +County and PUMA "G2600670, G26001100" +County and PUMA "G2600690, G26001300" +County and PUMA "G2600710, G26000100" +County and PUMA "G2600730, G26001200" +County and PUMA "G2600750, G26002600" +County and PUMA "G2600770, G26002101" +County and PUMA "G2600770, G26002102" +County and PUMA "G2600790, G26000400" +County and PUMA "G2600810, G26001001" +County and PUMA "G2600810, G26001002" +County and PUMA "G2600810, G26001003" +County and PUMA "G2600810, G26001004" +County and PUMA "G2600830, G26000100" +County and PUMA "G2600850, G26000600" +County and PUMA "G2600870, G26001701" +County and PUMA "G2600890, G26000500" +County and PUMA "G2600910, G26002500" +County and PUMA "G2600930, G26002800" +County and PUMA "G2600950, G26000200" +County and PUMA "G2600970, G26000200" +County and PUMA "G2600990, G26003001" +County and PUMA "G2600990, G26003002" +County and PUMA "G2600990, G26003003" +County and PUMA "G2600990, G26003004" +County and PUMA "G2600990, G26003005" +County and PUMA "G2600990, G26003006" +County and PUMA "G2601010, G26000500" +County and PUMA "G2601030, G26000100" +County and PUMA "G2601050, G26000600" +County and PUMA "G2601070, G26001100" +County and PUMA "G2601090, G26000200" +County and PUMA "G2601110, G26001400" +County and PUMA "G2601130, G26000400" +County and PUMA "G2601150, G26003300" +County and PUMA "G2601170, G26001100" +County and PUMA "G2601190, G26000300" +County and PUMA "G2601210, G26000700" +County and PUMA "G2601230, G26000600" +County and PUMA "G2601250, G26002901" +County and PUMA "G2601250, G26002902" +County and PUMA "G2601250, G26002903" +County and PUMA "G2601250, G26002904" +County and PUMA "G2601250, G26002905" +County and PUMA "G2601250, G26002906" +County and PUMA "G2601250, G26002907" +County and PUMA "G2601250, G26002908" +County and PUMA "G2601270, G26000600" +County and PUMA "G2601290, G26001300" +County and PUMA "G2601310, G26000100" +County and PUMA "G2601330, G26001100" +County and PUMA "G2601350, G26000300" +County and PUMA "G2601370, G26000300" +County and PUMA "G2601390, G26000801" +County and PUMA "G2601390, G26000802" +County and PUMA "G2601410, G26000300" +County and PUMA "G2601430, G26001300" +County and PUMA "G2601450, G26001500" +County and PUMA "G2601470, G26003100" +County and PUMA "G2601490, G26002200" +County and PUMA "G2601510, G26001600" +County and PUMA "G2601530, G26000200" +County and PUMA "G2601550, G26001704" +County and PUMA "G2601570, G26001600" +County and PUMA "G2601590, G26002300" +County and PUMA "G2601610, G26002701" +County and PUMA "G2601610, G26002702" +County and PUMA "G2601610, G26002703" +County and PUMA "G2601630, G26003201" +County and PUMA "G2601630, G26003202" +County and PUMA "G2601630, G26003203" +County and PUMA "G2601630, G26003204" +County and PUMA "G2601630, G26003205" +County and PUMA "G2601630, G26003206" +County and PUMA "G2601630, G26003207" +County and PUMA "G2601630, G26003208" +County and PUMA "G2601630, G26003209" +County and PUMA "G2601630, G26003210" +County and PUMA "G2601630, G26003211" +County and PUMA "G2601630, G26003212" +County and PUMA "G2601630, G26003213" +County and PUMA "G2601650, G26000400" +County and PUMA "G2700010, G27000300" +County and PUMA "G2700030, G27001101" +County and PUMA "G2700030, G27001102" +County and PUMA "G2700030, G27001103" +County and PUMA "G2700050, G27000200" +County and PUMA "G2700070, G27000200" +County and PUMA "G2700090, G27001000" +County and PUMA "G2700110, G27000800" +County and PUMA "G2700130, G27002200" +County and PUMA "G2700150, G27002000" +County and PUMA "G2700170, G27000300" +County and PUMA "G2700170, G27000400" +County and PUMA "G2700190, G27001700" +County and PUMA "G2700210, G27000300" +County and PUMA "G2700230, G27002000" +County and PUMA "G2700250, G27000600" +County and PUMA "G2700270, G27000100" +County and PUMA "G2700290, G27000200" +County and PUMA "G2700310, G27000400" +County and PUMA "G2700330, G27002100" +County and PUMA "G2700350, G27000700" +County and PUMA "G2700370, G27001501" +County and PUMA "G2700370, G27001502" +County and PUMA "G2700370, G27001503" +County and PUMA "G2700390, G27002400" +County and PUMA "G2700410, G27000800" +County and PUMA "G2700430, G27002100" +County and PUMA "G2700450, G27002600" +County and PUMA "G2700470, G27002400" +County and PUMA "G2700490, G27002300" +County and PUMA "G2700510, G27000800" +County and PUMA "G2700530, G27001401" +County and PUMA "G2700530, G27001402" +County and PUMA "G2700530, G27001403" +County and PUMA "G2700530, G27001404" +County and PUMA "G2700530, G27001405" +County and PUMA "G2700530, G27001406" +County and PUMA "G2700530, G27001407" +County and PUMA "G2700530, G27001408" +County and PUMA "G2700530, G27001409" +County and PUMA "G2700530, G27001410" +County and PUMA "G2700550, G27002600" +County and PUMA "G2700570, G27000200" +County and PUMA "G2700590, G27000600" +County and PUMA "G2700610, G27000300" +County and PUMA "G2700630, G27002100" +County and PUMA "G2700650, G27000600" +County and PUMA "G2700670, G27001900" +County and PUMA "G2700690, G27000100" +County and PUMA "G2700710, G27000400" +County and PUMA "G2700730, G27002000" +County and PUMA "G2700750, G27000400" +County and PUMA "G2700770, G27000200" +County and PUMA "G2700790, G27002300" +County and PUMA "G2700810, G27002000" +County and PUMA "G2700830, G27002000" +County and PUMA "G2700850, G27001900" +County and PUMA "G2700870, G27000200" +County and PUMA "G2700890, G27000100" +County and PUMA "G2700910, G27002100" +County and PUMA "G2700930, G27001900" +County and PUMA "G2700950, G27000600" +County and PUMA "G2700970, G27000700" +County and PUMA "G2700990, G27002400" +County and PUMA "G2701010, G27002100" +County and PUMA "G2701030, G27002200" +County and PUMA "G2701050, G27002100" +County and PUMA "G2701070, G27000100" +County and PUMA "G2701090, G27002500" +County and PUMA "G2701110, G27000800" +County and PUMA "G2701130, G27000100" +County and PUMA "G2701150, G27000600" +County and PUMA "G2701170, G27002100" +County and PUMA "G2701190, G27000100" +County and PUMA "G2701210, G27000800" +County and PUMA "G2701230, G27001301" +County and PUMA "G2701230, G27001302" +County and PUMA "G2701230, G27001303" +County and PUMA "G2701230, G27001304" +County and PUMA "G2701250, G27000100" +County and PUMA "G2701270, G27002000" +County and PUMA "G2701290, G27001900" +County and PUMA "G2701310, G27002300" +County and PUMA "G2701330, G27002100" +County and PUMA "G2701350, G27000100" +County and PUMA "G2701370, G27000400" +County and PUMA "G2701370, G27000500" +County and PUMA "G2701390, G27001600" +County and PUMA "G2701390, G27001700" +County and PUMA "G2701410, G27001000" +County and PUMA "G2701430, G27001900" +County and PUMA "G2701450, G27000900" +County and PUMA "G2701470, G27002400" +County and PUMA "G2701490, G27000800" +County and PUMA "G2701510, G27000800" +County and PUMA "G2701530, G27000700" +County and PUMA "G2701550, G27000800" +County and PUMA "G2701570, G27002600" +County and PUMA "G2701590, G27000700" +County and PUMA "G2701610, G27002200" +County and PUMA "G2701630, G27001201" +County and PUMA "G2701630, G27001202" +County and PUMA "G2701650, G27002100" +County and PUMA "G2701670, G27000800" +County and PUMA "G2701690, G27002600" +County and PUMA "G2701710, G27001800" +County and PUMA "G2701730, G27002000" +County and PUMA "G2800010, G28001600" +County and PUMA "G2800030, G28000200" +County and PUMA "G2800050, G28001600" +County and PUMA "G2800070, G28000700" +County and PUMA "G2800090, G28000200" +County and PUMA "G2800110, G28000800" +County and PUMA "G2800130, G28000400" +County and PUMA "G2800150, G28000700" +County and PUMA "G2800170, G28000400" +County and PUMA "G2800190, G28000600" +County and PUMA "G2800210, G28001600" +County and PUMA "G2800230, G28001500" +County and PUMA "G2800250, G28000600" +County and PUMA "G2800270, G28000300" +County and PUMA "G2800290, G28001200" +County and PUMA "G2800310, G28001700" +County and PUMA "G2800330, G28000100" +County and PUMA "G2800350, G28001800" +County and PUMA "G2800370, G28001600" +County and PUMA "G2800390, G28001900" +County and PUMA "G2800410, G28001700" +County and PUMA "G2800430, G28000700" +County and PUMA "G2800450, G28001900" +County and PUMA "G2800470, G28002000" +County and PUMA "G2800490, G28001000" +County and PUMA "G2800490, G28001100" +County and PUMA "G2800490, G28001200" +County and PUMA "G2800510, G28000700" +County and PUMA "G2800530, G28000800" +County and PUMA "G2800550, G28000800" +County and PUMA "G2800570, G28000400" +County and PUMA "G2800590, G28002100" +County and PUMA "G2800610, G28001400" +County and PUMA "G2800630, G28001600" +County and PUMA "G2800650, G28001700" +County and PUMA "G2800670, G28001700" +County and PUMA "G2800690, G28001400" +County and PUMA "G2800710, G28000400" +County and PUMA "G2800730, G28001800" +County and PUMA "G2800750, G28001500" +County and PUMA "G2800770, G28001600" +County and PUMA "G2800790, G28001400" +County and PUMA "G2800810, G28000500" +County and PUMA "G2800830, G28000700" +County and PUMA "G2800850, G28001600" +County and PUMA "G2800870, G28000600" +County and PUMA "G2800890, G28000900" +County and PUMA "G2800890, G28001000" +County and PUMA "G2800910, G28001800" +County and PUMA "G2800930, G28000200" +County and PUMA "G2800950, G28000400" +County and PUMA "G2800970, G28000700" +County and PUMA "G2800990, G28001400" +County and PUMA "G2801010, G28001500" +County and PUMA "G2801030, G28000600" +County and PUMA "G2801050, G28000600" +County and PUMA "G2801070, G28000300" +County and PUMA "G2801090, G28001900" +County and PUMA "G2801110, G28001800" +County and PUMA "G2801130, G28001600" +County and PUMA "G2801150, G28000500" +County and PUMA "G2801170, G28000200" +County and PUMA "G2801190, G28000300" +County and PUMA "G2801210, G28001300" +County and PUMA "G2801230, G28001400" +County and PUMA "G2801250, G28000800" +County and PUMA "G2801270, G28001300" +County and PUMA "G2801290, G28001400" +County and PUMA "G2801310, G28001900" +County and PUMA "G2801330, G28000800" +County and PUMA "G2801350, G28000300" +County and PUMA "G2801370, G28000300" +County and PUMA "G2801390, G28000200" +County and PUMA "G2801410, G28000200" +County and PUMA "G2801430, G28000300" +County and PUMA "G2801450, G28000500" +County and PUMA "G2801470, G28001600" +County and PUMA "G2801490, G28001200" +County and PUMA "G2801510, G28000800" +County and PUMA "G2801530, G28001700" +County and PUMA "G2801550, G28000600" +County and PUMA "G2801570, G28001600" +County and PUMA "G2801590, G28000600" +County and PUMA "G2801610, G28000700" +County and PUMA "G2801630, G28000900" +County and PUMA "G2900010, G29000300" +County and PUMA "G2900030, G29000200" +County and PUMA "G2900050, G29000100" +County and PUMA "G2900070, G29000400" +County and PUMA "G2900090, G29002700" +County and PUMA "G2900110, G29001200" +County and PUMA "G2900130, G29001100" +County and PUMA "G2900150, G29001300" +County and PUMA "G2900170, G29002200" +County and PUMA "G2900190, G29000600" +County and PUMA "G2900210, G29000200" +County and PUMA "G2900230, G29002400" +County and PUMA "G2900250, G29000800" +County and PUMA "G2900270, G29000500" +County and PUMA "G2900290, G29001400" +County and PUMA "G2900310, G29002200" +County and PUMA "G2900330, G29000700" +County and PUMA "G2900350, G29002400" +County and PUMA "G2900370, G29001100" +County and PUMA "G2900390, G29001200" +County and PUMA "G2900410, G29000700" +County and PUMA "G2900430, G29002601" +County and PUMA "G2900450, G29000300" +County and PUMA "G2900470, G29000901" +County and PUMA "G2900470, G29000902" +County and PUMA "G2900470, G29000903" +County and PUMA "G2900490, G29000800" +County and PUMA "G2900510, G29000500" +County and PUMA "G2900530, G29000700" +County and PUMA "G2900550, G29001500" +County and PUMA "G2900570, G29001200" +County and PUMA "G2900590, G29001300" +County and PUMA "G2900610, G29000100" +County and PUMA "G2900630, G29000200" +County and PUMA "G2900650, G29001500" +County and PUMA "G2900670, G29002500" +County and PUMA "G2900690, G29002300" +County and PUMA "G2900710, G29001600" +County and PUMA "G2900730, G29001500" +County and PUMA "G2900750, G29000100" +County and PUMA "G2900770, G29002601" +County and PUMA "G2900770, G29002602" +County and PUMA "G2900770, G29002603" +County and PUMA "G2900790, G29000100" +County and PUMA "G2900810, G29000100" +County and PUMA "G2900830, G29001200" +County and PUMA "G2900850, G29001300" +County and PUMA "G2900870, G29000100" +County and PUMA "G2900890, G29000700" +County and PUMA "G2900910, G29002500" +County and PUMA "G2900930, G29002400" +County and PUMA "G2900950, G29001001" +County and PUMA "G2900950, G29001002" +County and PUMA "G2900950, G29001003" +County and PUMA "G2900950, G29001004" +County and PUMA "G2900950, G29001005" +County and PUMA "G2900970, G29002800" +County and PUMA "G2900990, G29002001" +County and PUMA "G2900990, G29002002" +County and PUMA "G2901010, G29000800" +County and PUMA "G2901030, G29000300" +County and PUMA "G2901050, G29001300" +County and PUMA "G2901070, G29000800" +County and PUMA "G2901090, G29001200" +County and PUMA "G2901110, G29000300" +County and PUMA "G2901130, G29000400" +County and PUMA "G2901150, G29000100" +County and PUMA "G2901170, G29000100" +County and PUMA "G2901190, G29002700" +County and PUMA "G2901210, G29000300" +County and PUMA "G2901230, G29002400" +County and PUMA "G2901250, G29001500" +County and PUMA "G2901270, G29000300" +County and PUMA "G2901290, G29000100" +County and PUMA "G2901310, G29001400" +County and PUMA "G2901330, G29002300" +County and PUMA "G2901350, G29000500" +County and PUMA "G2901370, G29000300" +County and PUMA "G2901390, G29000400" +County and PUMA "G2901410, G29001400" +County and PUMA "G2901430, G29002300" +County and PUMA "G2901450, G29002800" +County and PUMA "G2901470, G29000100" +County and PUMA "G2901490, G29002500" +County and PUMA "G2901510, G29000500" +County and PUMA "G2901530, G29002500" +County and PUMA "G2901550, G29002300" +County and PUMA "G2901570, G29002100" +County and PUMA "G2901590, G29000700" +County and PUMA "G2901610, G29001500" +County and PUMA "G2901630, G29000400" +County and PUMA "G2901650, G29000903" +County and PUMA "G2901670, G29001300" +County and PUMA "G2901690, G29001400" +County and PUMA "G2901710, G29000100" +County and PUMA "G2901730, G29000300" +County and PUMA "G2901750, G29000700" +County and PUMA "G2901770, G29000800" +County and PUMA "G2901790, G29002400" +County and PUMA "G2901810, G29002400" +County and PUMA "G2901830, G29001701" +County and PUMA "G2901830, G29001702" +County and PUMA "G2901830, G29001703" +County and PUMA "G2901850, G29001200" +County and PUMA "G2901860, G29002100" +County and PUMA "G2901870, G29002100" +County and PUMA "G2901890, G29001801" +County and PUMA "G2901890, G29001802" +County and PUMA "G2901890, G29001803" +County and PUMA "G2901890, G29001804" +County and PUMA "G2901890, G29001805" +County and PUMA "G2901890, G29001806" +County and PUMA "G2901890, G29001807" +County and PUMA "G2901890, G29001808" +County and PUMA "G2901950, G29000700" +County and PUMA "G2901970, G29000300" +County and PUMA "G2901990, G29000300" +County and PUMA "G2902010, G29002200" +County and PUMA "G2902030, G29002500" +County and PUMA "G2902050, G29000300" +County and PUMA "G2902070, G29002300" +County and PUMA "G2902090, G29002700" +County and PUMA "G2902110, G29000100" +County and PUMA "G2902130, G29002700" +County and PUMA "G2902150, G29002500" +County and PUMA "G2902170, G29001200" +County and PUMA "G2902190, G29000400" +County and PUMA "G2902210, G29002100" +County and PUMA "G2902230, G29002400" +County and PUMA "G2902250, G29002601" +County and PUMA "G2902270, G29000100" +County and PUMA "G2902290, G29002500" +County and PUMA "G2905100, G29001901" +County and PUMA "G2905100, G29001902" +County and PUMA "G3000010, G30000300" +County and PUMA "G3000030, G30000600" +County and PUMA "G3000050, G30000400" +County and PUMA "G3000070, G30000300" +County and PUMA "G3000090, G30000500" +County and PUMA "G3000110, G30000600" +County and PUMA "G3000130, G30000400" +County and PUMA "G3000150, G30000400" +County and PUMA "G3000170, G30000600" +County and PUMA "G3000190, G30000600" +County and PUMA "G3000210, G30000600" +County and PUMA "G3000230, G30000300" +County and PUMA "G3000250, G30000600" +County and PUMA "G3000270, G30000400" +County and PUMA "G3000290, G30000100" +County and PUMA "G3000310, G30000500" +County and PUMA "G3000330, G30000600" +County and PUMA "G3000350, G30000100" +County and PUMA "G3000370, G30000600" +County and PUMA "G3000390, G30000300" +County and PUMA "G3000410, G30000400" +County and PUMA "G3000430, G30000300" +County and PUMA "G3000450, G30000400" +County and PUMA "G3000470, G30000200" +County and PUMA "G3000490, G30000300" +County and PUMA "G3000510, G30000400" +County and PUMA "G3000530, G30000100" +County and PUMA "G3000550, G30000600" +County and PUMA "G3000570, G30000300" +County and PUMA "G3000590, G30000400" +County and PUMA "G3000610, G30000200" +County and PUMA "G3000630, G30000200" +County and PUMA "G3000650, G30000600" +County and PUMA "G3000670, G30000500" +County and PUMA "G3000690, G30000400" +County and PUMA "G3000710, G30000600" +County and PUMA "G3000730, G30000400" +County and PUMA "G3000750, G30000600" +County and PUMA "G3000770, G30000300" +County and PUMA "G3000790, G30000600" +County and PUMA "G3000810, G30000200" +County and PUMA "G3000830, G30000600" +County and PUMA "G3000850, G30000600" +County and PUMA "G3000870, G30000600" +County and PUMA "G3000890, G30000200" +County and PUMA "G3000910, G30000600" +County and PUMA "G3000930, G30000300" +County and PUMA "G3000950, G30000500" +County and PUMA "G3000970, G30000500" +County and PUMA "G3000990, G30000400" +County and PUMA "G3001010, G30000400" +County and PUMA "G3001030, G30000600" +County and PUMA "G3001050, G30000600" +County and PUMA "G3001070, G30000400" +County and PUMA "G3001090, G30000600" +County and PUMA "G3001110, G30000600" +County and PUMA "G3001110, G30000700" +County and PUMA "G3100010, G31000500" +County and PUMA "G3100030, G31000200" +County and PUMA "G3100050, G31000400" +County and PUMA "G3100070, G31000100" +County and PUMA "G3100090, G31000300" +County and PUMA "G3100110, G31000200" +County and PUMA "G3100130, G31000100" +County and PUMA "G3100150, G31000100" +County and PUMA "G3100170, G31000100" +County and PUMA "G3100190, G31000500" +County and PUMA "G3100210, G31000200" +County and PUMA "G3100230, G31000600" +County and PUMA "G3100250, G31000701" +County and PUMA "G3100270, G31000200" +County and PUMA "G3100290, G31000400" +County and PUMA "G3100310, G31000100" +County and PUMA "G3100330, G31000100" +County and PUMA "G3100350, G31000500" +County and PUMA "G3100370, G31000200" +County and PUMA "G3100390, G31000200" +County and PUMA "G3100410, G31000300" +County and PUMA "G3100430, G31000200" +County and PUMA "G3100450, G31000100" +County and PUMA "G3100470, G31000400" +County and PUMA "G3100490, G31000100" +County and PUMA "G3100510, G31000200" +County and PUMA "G3100530, G31000701" +County and PUMA "G3100550, G31000901" +County and PUMA "G3100550, G31000902" +County and PUMA "G3100550, G31000903" +County and PUMA "G3100550, G31000904" +County and PUMA "G3100570, G31000400" +County and PUMA "G3100590, G31000600" +County and PUMA "G3100610, G31000500" +County and PUMA "G3100630, G31000400" +County and PUMA "G3100650, G31000400" +County and PUMA "G3100670, G31000600" +County and PUMA "G3100690, G31000100" +County and PUMA "G3100710, G31000300" +County and PUMA "G3100730, G31000400" +County and PUMA "G3100750, G31000400" +County and PUMA "G3100770, G31000300" +County and PUMA "G3100790, G31000300" +County and PUMA "G3100810, G31000300" +County and PUMA "G3100830, G31000500" +County and PUMA "G3100850, G31000400" +County and PUMA "G3100870, G31000400" +County and PUMA "G3100890, G31000100" +County and PUMA "G3100910, G31000400" +County and PUMA "G3100930, G31000300" +County and PUMA "G3100950, G31000600" +County and PUMA "G3100970, G31000600" +County and PUMA "G3100990, G31000500" +County and PUMA "G3101010, G31000400" +County and PUMA "G3101030, G31000100" +County and PUMA "G3101050, G31000100" +County and PUMA "G3101070, G31000200" +County and PUMA "G3101090, G31000801" +County and PUMA "G3101090, G31000802" +County and PUMA "G3101110, G31000400" +County and PUMA "G3101130, G31000400" +County and PUMA "G3101150, G31000300" +County and PUMA "G3101170, G31000400" +County and PUMA "G3101190, G31000200" +County and PUMA "G3101210, G31000300" +County and PUMA "G3101230, G31000100" +County and PUMA "G3101250, G31000200" +County and PUMA "G3101270, G31000600" +County and PUMA "G3101290, G31000500" +County and PUMA "G3101310, G31000600" +County and PUMA "G3101330, G31000600" +County and PUMA "G3101350, G31000400" +County and PUMA "G3101370, G31000500" +County and PUMA "G3101390, G31000200" +County and PUMA "G3101410, G31000200" +County and PUMA "G3101430, G31000600" +County and PUMA "G3101450, G31000400" +County and PUMA "G3101470, G31000600" +County and PUMA "G3101490, G31000100" +County and PUMA "G3101510, G31000600" +County and PUMA "G3101530, G31000702" +County and PUMA "G3101550, G31000701" +County and PUMA "G3101570, G31000100" +County and PUMA "G3101590, G31000600" +County and PUMA "G3101610, G31000100" +County and PUMA "G3101630, G31000300" +County and PUMA "G3101650, G31000100" +County and PUMA "G3101670, G31000200" +County and PUMA "G3101690, G31000600" +County and PUMA "G3101710, G31000400" +County and PUMA "G3101730, G31000200" +County and PUMA "G3101750, G31000300" +County and PUMA "G3101770, G31000701" +County and PUMA "G3101790, G31000200" +County and PUMA "G3101810, G31000500" +County and PUMA "G3101830, G31000300" +County and PUMA "G3101850, G31000600" +County and PUMA "G3200010, G32000300" +County and PUMA "G3200030, G32000401" +County and PUMA "G3200030, G32000402" +County and PUMA "G3200030, G32000403" +County and PUMA "G3200030, G32000404" +County and PUMA "G3200030, G32000405" +County and PUMA "G3200030, G32000406" +County and PUMA "G3200030, G32000407" +County and PUMA "G3200030, G32000408" +County and PUMA "G3200030, G32000409" +County and PUMA "G3200030, G32000410" +County and PUMA "G3200030, G32000411" +County and PUMA "G3200030, G32000412" +County and PUMA "G3200030, G32000413" +County and PUMA "G3200050, G32000200" +County and PUMA "G3200070, G32000300" +County and PUMA "G3200090, G32000300" +County and PUMA "G3200110, G32000300" +County and PUMA "G3200130, G32000300" +County and PUMA "G3200150, G32000300" +County and PUMA "G3200170, G32000300" +County and PUMA "G3200190, G32000200" +County and PUMA "G3200210, G32000300" +County and PUMA "G3200230, G32000300" +County and PUMA "G3200270, G32000300" +County and PUMA "G3200290, G32000200" +County and PUMA "G3200310, G32000101" +County and PUMA "G3200310, G32000102" +County and PUMA "G3200310, G32000103" +County and PUMA "G3200330, G32000300" +County and PUMA "G3205100, G32000200" +County and PUMA "G3300010, G33000200" +County and PUMA "G3300030, G33000200" +County and PUMA "G3300030, G33000300" +County and PUMA "G3300050, G33000500" +County and PUMA "G3300070, G33000100" +County and PUMA "G3300090, G33000100" +County and PUMA "G3300110, G33000600" +County and PUMA "G3300110, G33000700" +County and PUMA "G3300110, G33000800" +County and PUMA "G3300110, G33000900" +County and PUMA "G3300130, G33000200" +County and PUMA "G3300130, G33000400" +County and PUMA "G3300130, G33000700" +County and PUMA "G3300150, G33000300" +County and PUMA "G3300150, G33000700" +County and PUMA "G3300150, G33001000" +County and PUMA "G3300170, G33000300" +County and PUMA "G3300190, G33000500" +County and PUMA "G3400010, G34000101" +County and PUMA "G3400010, G34000102" +County and PUMA "G3400010, G34002600" +County and PUMA "G3400030, G34000301" +County and PUMA "G3400030, G34000302" +County and PUMA "G3400030, G34000303" +County and PUMA "G3400030, G34000304" +County and PUMA "G3400030, G34000305" +County and PUMA "G3400030, G34000306" +County and PUMA "G3400030, G34000307" +County and PUMA "G3400030, G34000308" +County and PUMA "G3400050, G34002001" +County and PUMA "G3400050, G34002002" +County and PUMA "G3400050, G34002003" +County and PUMA "G3400070, G34002101" +County and PUMA "G3400070, G34002102" +County and PUMA "G3400070, G34002103" +County and PUMA "G3400070, G34002104" +County and PUMA "G3400090, G34002600" +County and PUMA "G3400110, G34002400" +County and PUMA "G3400110, G34002500" +County and PUMA "G3400130, G34001301" +County and PUMA "G3400130, G34001302" +County and PUMA "G3400130, G34001401" +County and PUMA "G3400130, G34001402" +County and PUMA "G3400130, G34001403" +County and PUMA "G3400130, G34001404" +County and PUMA "G3400150, G34002201" +County and PUMA "G3400150, G34002202" +County and PUMA "G3400170, G34000601" +County and PUMA "G3400170, G34000602" +County and PUMA "G3400170, G34000701" +County and PUMA "G3400170, G34000702" +County and PUMA "G3400170, G34000703" +County and PUMA "G3400190, G34000800" +County and PUMA "G3400210, G34002301" +County and PUMA "G3400210, G34002302" +County and PUMA "G3400210, G34002303" +County and PUMA "G3400230, G34000901" +County and PUMA "G3400230, G34000902" +County and PUMA "G3400230, G34000903" +County and PUMA "G3400230, G34000904" +County and PUMA "G3400230, G34000905" +County and PUMA "G3400230, G34000906" +County and PUMA "G3400230, G34000907" +County and PUMA "G3400250, G34001101" +County and PUMA "G3400250, G34001102" +County and PUMA "G3400250, G34001103" +County and PUMA "G3400250, G34001104" +County and PUMA "G3400250, G34001105" +County and PUMA "G3400250, G34001106" +County and PUMA "G3400270, G34001501" +County and PUMA "G3400270, G34001502" +County and PUMA "G3400270, G34001503" +County and PUMA "G3400270, G34001504" +County and PUMA "G3400290, G34001201" +County and PUMA "G3400290, G34001202" +County and PUMA "G3400290, G34001203" +County and PUMA "G3400290, G34001204" +County and PUMA "G3400290, G34001205" +County and PUMA "G3400310, G34000400" +County and PUMA "G3400310, G34000501" +County and PUMA "G3400310, G34000502" +County and PUMA "G3400310, G34000503" +County and PUMA "G3400330, G34002500" +County and PUMA "G3400350, G34001001" +County and PUMA "G3400350, G34001002" +County and PUMA "G3400350, G34001003" +County and PUMA "G3400370, G34001600" +County and PUMA "G3400390, G34001800" +County and PUMA "G3400390, G34001901" +County and PUMA "G3400390, G34001902" +County and PUMA "G3400390, G34001903" +County and PUMA "G3400390, G34001904" +County and PUMA "G3400410, G34001700" +County and PUMA "G3500010, G35000700" +County and PUMA "G3500010, G35000801" +County and PUMA "G3500010, G35000802" +County and PUMA "G3500010, G35000803" +County and PUMA "G3500010, G35000804" +County and PUMA "G3500010, G35000805" +County and PUMA "G3500010, G35000806" +County and PUMA "G3500030, G35000900" +County and PUMA "G3500050, G35001100" +County and PUMA "G3500060, G35000100" +County and PUMA "G3500070, G35000400" +County and PUMA "G3500090, G35000400" +County and PUMA "G3500110, G35000400" +County and PUMA "G3500130, G35001001" +County and PUMA "G3500130, G35001002" +County and PUMA "G3500150, G35001200" +County and PUMA "G3500170, G35000900" +County and PUMA "G3500190, G35000400" +County and PUMA "G3500210, G35000400" +County and PUMA "G3500230, G35000900" +County and PUMA "G3500250, G35001200" +County and PUMA "G3500270, G35001100" +County and PUMA "G3500280, G35000300" +County and PUMA "G3500290, G35000900" +County and PUMA "G3500310, G35000100" +County and PUMA "G3500330, G35000300" +County and PUMA "G3500350, G35001100" +County and PUMA "G3500370, G35000400" +County and PUMA "G3500390, G35000300" +County and PUMA "G3500410, G35000400" +County and PUMA "G3500430, G35000600" +County and PUMA "G3500450, G35000100" +County and PUMA "G3500450, G35000200" +County and PUMA "G3500470, G35000300" +County and PUMA "G3500490, G35000500" +County and PUMA "G3500510, G35000900" +County and PUMA "G3500530, G35000900" +County and PUMA "G3500550, G35000300" +County and PUMA "G3500570, G35000900" +County and PUMA "G3500590, G35000400" +County and PUMA "G3500610, G35000700" +County and PUMA "G3600010, G36002001" +County and PUMA "G3600010, G36002002" +County and PUMA "G3600030, G36002500" +County and PUMA "G3600050, G36003701" +County and PUMA "G3600050, G36003702" +County and PUMA "G3600050, G36003703" +County and PUMA "G3600050, G36003704" +County and PUMA "G3600050, G36003705" +County and PUMA "G3600050, G36003706" +County and PUMA "G3600050, G36003707" +County and PUMA "G3600050, G36003708" +County and PUMA "G3600050, G36003709" +County and PUMA "G3600050, G36003710" +County and PUMA "G3600070, G36002201" +County and PUMA "G3600070, G36002202" +County and PUMA "G3600070, G36002203" +County and PUMA "G3600090, G36002500" +County and PUMA "G3600110, G36000704" +County and PUMA "G3600130, G36002600" +County and PUMA "G3600150, G36002401" +County and PUMA "G3600150, G36002402" +County and PUMA "G3600170, G36002203" +County and PUMA "G3600190, G36000200" +County and PUMA "G3600210, G36002100" +County and PUMA "G3600230, G36001500" +County and PUMA "G3600250, G36002203" +County and PUMA "G3600270, G36002801" +County and PUMA "G3600270, G36002802" +County and PUMA "G3600290, G36001201" +County and PUMA "G3600290, G36001202" +County and PUMA "G3600290, G36001203" +County and PUMA "G3600290, G36001204" +County and PUMA "G3600290, G36001205" +County and PUMA "G3600290, G36001206" +County and PUMA "G3600290, G36001207" +County and PUMA "G3600310, G36000200" +County and PUMA "G3600330, G36000200" +County and PUMA "G3600350, G36001600" +County and PUMA "G3600370, G36001000" +County and PUMA "G3600390, G36002100" +County and PUMA "G3600410, G36000200" +County and PUMA "G3600430, G36000401" +County and PUMA "G3600430, G36000403" +County and PUMA "G3600450, G36000500" +County and PUMA "G3600470, G36004001" +County and PUMA "G3600470, G36004002" +County and PUMA "G3600470, G36004003" +County and PUMA "G3600470, G36004004" +County and PUMA "G3600470, G36004005" +County and PUMA "G3600470, G36004006" +County and PUMA "G3600470, G36004007" +County and PUMA "G3600470, G36004008" +County and PUMA "G3600470, G36004009" +County and PUMA "G3600470, G36004010" +County and PUMA "G3600470, G36004011" +County and PUMA "G3600470, G36004012" +County and PUMA "G3600470, G36004013" +County and PUMA "G3600470, G36004014" +County and PUMA "G3600470, G36004015" +County and PUMA "G3600470, G36004016" +County and PUMA "G3600470, G36004017" +County and PUMA "G3600470, G36004018" +County and PUMA "G3600490, G36000500" +County and PUMA "G3600510, G36001300" +County and PUMA "G3600530, G36001500" +County and PUMA "G3600550, G36000901" +County and PUMA "G3600550, G36000902" +County and PUMA "G3600550, G36000903" +County and PUMA "G3600550, G36000904" +County and PUMA "G3600550, G36000905" +County and PUMA "G3600550, G36000906" +County and PUMA "G3600570, G36001600" +County and PUMA "G3600590, G36003201" +County and PUMA "G3600590, G36003202" +County and PUMA "G3600590, G36003203" +County and PUMA "G3600590, G36003204" +County and PUMA "G3600590, G36003205" +County and PUMA "G3600590, G36003206" +County and PUMA "G3600590, G36003207" +County and PUMA "G3600590, G36003208" +County and PUMA "G3600590, G36003209" +County and PUMA "G3600590, G36003210" +County and PUMA "G3600590, G36003211" +County and PUMA "G3600590, G36003212" +County and PUMA "G3600610, G36003801" +County and PUMA "G3600610, G36003802" +County and PUMA "G3600610, G36003803" +County and PUMA "G3600610, G36003804" +County and PUMA "G3600610, G36003805" +County and PUMA "G3600610, G36003806" +County and PUMA "G3600610, G36003807" +County and PUMA "G3600610, G36003808" +County and PUMA "G3600610, G36003809" +County and PUMA "G3600610, G36003810" +County and PUMA "G3600630, G36001101" +County and PUMA "G3600630, G36001102" +County and PUMA "G3600650, G36000401" +County and PUMA "G3600650, G36000402" +County and PUMA "G3600650, G36000403" +County and PUMA "G3600670, G36000701" +County and PUMA "G3600670, G36000702" +County and PUMA "G3600670, G36000703" +County and PUMA "G3600670, G36000704" +County and PUMA "G3600690, G36001400" +County and PUMA "G3600710, G36002901" +County and PUMA "G3600710, G36002902" +County and PUMA "G3600710, G36002903" +County and PUMA "G3600730, G36001000" +County and PUMA "G3600750, G36000600" +County and PUMA "G3600770, G36000403" +County and PUMA "G3600790, G36003101" +County and PUMA "G3600810, G36004101" +County and PUMA "G3600810, G36004102" +County and PUMA "G3600810, G36004103" +County and PUMA "G3600810, G36004104" +County and PUMA "G3600810, G36004105" +County and PUMA "G3600810, G36004106" +County and PUMA "G3600810, G36004107" +County and PUMA "G3600810, G36004108" +County and PUMA "G3600810, G36004109" +County and PUMA "G3600810, G36004110" +County and PUMA "G3600810, G36004111" +County and PUMA "G3600810, G36004112" +County and PUMA "G3600810, G36004113" +County and PUMA "G3600810, G36004114" +County and PUMA "G3600830, G36001900" +County and PUMA "G3600850, G36003901" +County and PUMA "G3600850, G36003902" +County and PUMA "G3600850, G36003903" +County and PUMA "G3600870, G36003001" +County and PUMA "G3600870, G36003002" +County and PUMA "G3600870, G36003003" +County and PUMA "G3600890, G36000100" +County and PUMA "G3600910, G36001801" +County and PUMA "G3600910, G36001802" +County and PUMA "G3600930, G36001700" +County and PUMA "G3600950, G36000403" +County and PUMA "G3600970, G36002402" +County and PUMA "G3600990, G36000800" +County and PUMA "G3601010, G36002401" +County and PUMA "G3601010, G36002402" +County and PUMA "G3601030, G36003301" +County and PUMA "G3601030, G36003302" +County and PUMA "G3601030, G36003303" +County and PUMA "G3601030, G36003304" +County and PUMA "G3601030, G36003305" +County and PUMA "G3601030, G36003306" +County and PUMA "G3601030, G36003307" +County and PUMA "G3601030, G36003308" +County and PUMA "G3601030, G36003309" +County and PUMA "G3601030, G36003310" +County and PUMA "G3601030, G36003311" +County and PUMA "G3601030, G36003312" +County and PUMA "G3601030, G36003313" +County and PUMA "G3601050, G36002701" +County and PUMA "G3601070, G36002202" +County and PUMA "G3601090, G36002300" +County and PUMA "G3601110, G36002701" +County and PUMA "G3601110, G36002702" +County and PUMA "G3601130, G36000300" +County and PUMA "G3601150, G36000300" +County and PUMA "G3601170, G36000800" +County and PUMA "G3601190, G36003101" +County and PUMA "G3601190, G36003102" +County and PUMA "G3601190, G36003103" +County and PUMA "G3601190, G36003104" +County and PUMA "G3601190, G36003105" +County and PUMA "G3601190, G36003106" +County and PUMA "G3601190, G36003107" +County and PUMA "G3601210, G36001300" +County and PUMA "G3601230, G36001400" +County and PUMA "G3700010, G37001600" +County and PUMA "G3700030, G37002000" +County and PUMA "G3700050, G37000200" +County and PUMA "G3700070, G37005300" +County and PUMA "G3700090, G37000100" +County and PUMA "G3700110, G37000100" +County and PUMA "G3700130, G37004400" +County and PUMA "G3700150, G37000800" +County and PUMA "G3700170, G37004900" +County and PUMA "G3700190, G37004800" +County and PUMA "G3700210, G37002201" +County and PUMA "G3700210, G37002202" +County and PUMA "G3700230, G37002100" +County and PUMA "G3700250, G37003200" +County and PUMA "G3700250, G37003300" +County and PUMA "G3700270, G37002000" +County and PUMA "G3700290, G37000700" +County and PUMA "G3700310, G37004400" +County and PUMA "G3700330, G37000400" +County and PUMA "G3700350, G37002800" +County and PUMA "G3700370, G37001500" +County and PUMA "G3700390, G37002400" +County and PUMA "G3700410, G37000700" +County and PUMA "G3700430, G37002400" +County and PUMA "G3700450, G37002600" +County and PUMA "G3700450, G37002700" +County and PUMA "G3700470, G37004900" +County and PUMA "G3700490, G37004300" +County and PUMA "G3700510, G37005001" +County and PUMA "G3700510, G37005002" +County and PUMA "G3700510, G37005003" +County and PUMA "G3700530, G37000700" +County and PUMA "G3700550, G37000800" +County and PUMA "G3700570, G37003500" +County and PUMA "G3700590, G37001900" +County and PUMA "G3700610, G37003900" +County and PUMA "G3700630, G37001301" +County and PUMA "G3700630, G37001302" +County and PUMA "G3700650, G37000900" +County and PUMA "G3700670, G37001801" +County and PUMA "G3700670, G37001802" +County and PUMA "G3700670, G37001803" +County and PUMA "G3700690, G37000500" +County and PUMA "G3700710, G37003001" +County and PUMA "G3700710, G37003002" +County and PUMA "G3700730, G37000700" +County and PUMA "G3700750, G37002300" +County and PUMA "G3700770, G37000400" +County and PUMA "G3700790, G37001000" +County and PUMA "G3700810, G37001701" +County and PUMA "G3700810, G37001702" +County and PUMA "G3700810, G37001703" +County and PUMA "G3700810, G37001704" +County and PUMA "G3700830, G37000600" +County and PUMA "G3700850, G37003800" +County and PUMA "G3700870, G37002300" +County and PUMA "G3700890, G37002500" +County and PUMA "G3700910, G37000600" +County and PUMA "G3700930, G37005200" +County and PUMA "G3700950, G37000800" +County and PUMA "G3700970, G37001900" +County and PUMA "G3700970, G37002900" +County and PUMA "G3700990, G37002300" +County and PUMA "G3700990, G37002400" +County and PUMA "G3701010, G37001100" +County and PUMA "G3701030, G37004100" +County and PUMA "G3701050, G37001500" +County and PUMA "G3701070, G37004100" +County and PUMA "G3701090, G37002700" +County and PUMA "G3701110, G37002100" +County and PUMA "G3701130, G37002400" +County and PUMA "G3701150, G37002300" +County and PUMA "G3701170, G37000800" +County and PUMA "G3701190, G37003101" +County and PUMA "G3701190, G37003102" +County and PUMA "G3701190, G37003103" +County and PUMA "G3701190, G37003104" +County and PUMA "G3701190, G37003105" +County and PUMA "G3701190, G37003106" +County and PUMA "G3701190, G37003107" +County and PUMA "G3701190, G37003108" +County and PUMA "G3701210, G37000100" +County and PUMA "G3701230, G37003700" +County and PUMA "G3701250, G37003700" +County and PUMA "G3701270, G37000900" +County and PUMA "G3701290, G37004600" +County and PUMA "G3701290, G37004700" +County and PUMA "G3701310, G37000600" +County and PUMA "G3701330, G37004100" +County and PUMA "G3701330, G37004500" +County and PUMA "G3701350, G37001400" +County and PUMA "G3701370, G37004400" +County and PUMA "G3701390, G37000700" +County and PUMA "G3701410, G37004600" +County and PUMA "G3701430, G37000700" +County and PUMA "G3701450, G37000400" +County and PUMA "G3701470, G37004200" +County and PUMA "G3701490, G37002600" +County and PUMA "G3701510, G37003600" +County and PUMA "G3701530, G37005200" +County and PUMA "G3701550, G37004900" +County and PUMA "G3701550, G37005100" +County and PUMA "G3701570, G37000300" +County and PUMA "G3701590, G37003400" +County and PUMA "G3701610, G37002600" +County and PUMA "G3701630, G37003900" +County and PUMA "G3701650, G37005200" +County and PUMA "G3701670, G37003300" +County and PUMA "G3701690, G37000300" +County and PUMA "G3701710, G37000200" +County and PUMA "G3701730, G37002300" +County and PUMA "G3701750, G37002500" +County and PUMA "G3701770, G37000800" +County and PUMA "G3701790, G37005300" +County and PUMA "G3701790, G37005400" +County and PUMA "G3701810, G37000500" +County and PUMA "G3701830, G37001201" +County and PUMA "G3701830, G37001202" +County and PUMA "G3701830, G37001203" +County and PUMA "G3701830, G37001204" +County and PUMA "G3701830, G37001205" +County and PUMA "G3701830, G37001206" +County and PUMA "G3701830, G37001207" +County and PUMA "G3701830, G37001208" +County and PUMA "G3701850, G37000500" +County and PUMA "G3701850, G37000600" +County and PUMA "G3701870, G37000800" +County and PUMA "G3701890, G37000100" +County and PUMA "G3701910, G37004000" +County and PUMA "G3701930, G37000200" +County and PUMA "G3701950, G37001000" +County and PUMA "G3701970, G37001900" +County and PUMA "G3701990, G37000100" +County and PUMA "G3800010, G38000100" +County and PUMA "G3800030, G38000200" +County and PUMA "G3800050, G38000200" +County and PUMA "G3800070, G38000100" +County and PUMA "G3800090, G38000200" +County and PUMA "G3800110, G38000100" +County and PUMA "G3800130, G38000100" +County and PUMA "G3800150, G38000300" +County and PUMA "G3800170, G38000500" +County and PUMA "G3800190, G38000400" +County and PUMA "G3800210, G38000200" +County and PUMA "G3800230, G38000100" +County and PUMA "G3800250, G38000100" +County and PUMA "G3800270, G38000200" +County and PUMA "G3800290, G38000300" +County and PUMA "G3800310, G38000200" +County and PUMA "G3800330, G38000100" +County and PUMA "G3800350, G38000400" +County and PUMA "G3800370, G38000100" +County and PUMA "G3800390, G38000400" +County and PUMA "G3800410, G38000100" +County and PUMA "G3800430, G38000300" +County and PUMA "G3800450, G38000200" +County and PUMA "G3800470, G38000300" +County and PUMA "G3800490, G38000100" +County and PUMA "G3800510, G38000300" +County and PUMA "G3800530, G38000100" +County and PUMA "G3800550, G38000100" +County and PUMA "G3800570, G38000100" +County and PUMA "G3800590, G38000300" +County and PUMA "G3800610, G38000100" +County and PUMA "G3800630, G38000200" +County and PUMA "G3800650, G38000100" +County and PUMA "G3800670, G38000400" +County and PUMA "G3800690, G38000200" +County and PUMA "G3800710, G38000200" +County and PUMA "G3800730, G38000200" +County and PUMA "G3800750, G38000100" +County and PUMA "G3800770, G38000200" +County and PUMA "G3800790, G38000200" +County and PUMA "G3800810, G38000200" +County and PUMA "G3800830, G38000200" +County and PUMA "G3800850, G38000100" +County and PUMA "G3800870, G38000100" +County and PUMA "G3800890, G38000100" +County and PUMA "G3800910, G38000400" +County and PUMA "G3800930, G38000200" +County and PUMA "G3800950, G38000400" +County and PUMA "G3800970, G38000400" +County and PUMA "G3800990, G38000400" +County and PUMA "G3801010, G38000100" +County and PUMA "G3801030, G38000200" +County and PUMA "G3801050, G38000100" +County and PUMA "G3900010, G39005200" +County and PUMA "G3900030, G39002500" +County and PUMA "G3900050, G39002100" +County and PUMA "G3900070, G39001300" +County and PUMA "G3900090, G39005000" +County and PUMA "G3900110, G39002600" +County and PUMA "G3900130, G39003500" +County and PUMA "G3900150, G39005700" +County and PUMA "G3900170, G39005401" +County and PUMA "G3900170, G39005402" +County and PUMA "G3900170, G39005403" +County and PUMA "G3900190, G39003300" +County and PUMA "G3900210, G39002700" +County and PUMA "G3900230, G39004300" +County and PUMA "G3900250, G39005600" +County and PUMA "G3900250, G39005700" +County and PUMA "G3900270, G39005200" +County and PUMA "G3900290, G39003400" +County and PUMA "G3900310, G39002900" +County and PUMA "G3900330, G39002300" +County and PUMA "G3900350, G39000901" +County and PUMA "G3900350, G39000902" +County and PUMA "G3900350, G39000903" +County and PUMA "G3900350, G39000904" +County and PUMA "G3900350, G39000905" +County and PUMA "G3900350, G39000906" +County and PUMA "G3900350, G39000907" +County and PUMA "G3900350, G39000908" +County and PUMA "G3900350, G39000909" +County and PUMA "G3900350, G39000910" +County and PUMA "G3900370, G39004500" +County and PUMA "G3900390, G39000100" +County and PUMA "G3900410, G39004000" +County and PUMA "G3900430, G39000700" +County and PUMA "G3900450, G39003900" +County and PUMA "G3900470, G39004800" +County and PUMA "G3900490, G39004101" +County and PUMA "G3900490, G39004102" +County and PUMA "G3900490, G39004103" +County and PUMA "G3900490, G39004104" +County and PUMA "G3900490, G39004105" +County and PUMA "G3900490, G39004106" +County and PUMA "G3900490, G39004107" +County and PUMA "G3900490, G39004108" +County and PUMA "G3900490, G39004109" +County and PUMA "G3900490, G39004110" +County and PUMA "G3900490, G39004111" +County and PUMA "G3900510, G39000200" +County and PUMA "G3900530, G39005000" +County and PUMA "G3900550, G39001200" +County and PUMA "G3900570, G39004700" +County and PUMA "G3900590, G39002900" +County and PUMA "G3900610, G39005501" +County and PUMA "G3900610, G39005502" +County and PUMA "G3900610, G39005503" +County and PUMA "G3900610, G39005504" +County and PUMA "G3900610, G39005505" +County and PUMA "G3900610, G39005506" +County and PUMA "G3900610, G39005507" +County and PUMA "G3900630, G39002400" +County and PUMA "G3900650, G39002700" +County and PUMA "G3900670, G39003000" +County and PUMA "G3900690, G39000100" +County and PUMA "G3900710, G39005200" +County and PUMA "G3900730, G39004900" +County and PUMA "G3900750, G39002900" +County and PUMA "G3900770, G39002100" +County and PUMA "G3900790, G39004900" +County and PUMA "G3900810, G39003500" +County and PUMA "G3900830, G39002800" +County and PUMA "G3900850, G39001000" +County and PUMA "G3900850, G39001100" +County and PUMA "G3900850, G39001200" +County and PUMA "G3900870, G39005100" +County and PUMA "G3900890, G39003800" +County and PUMA "G3900910, G39002700" +County and PUMA "G3900930, G39000801" +County and PUMA "G3900930, G39000802" +County and PUMA "G3900950, G39000200" +County and PUMA "G3900950, G39000300" +County and PUMA "G3900950, G39000400" +County and PUMA "G3900950, G39000500" +County and PUMA "G3900950, G39000600" +County and PUMA "G3900970, G39004200" +County and PUMA "G3900990, G39001400" +County and PUMA "G3900990, G39001500" +County and PUMA "G3901010, G39002800" +County and PUMA "G3901030, G39001900" +County and PUMA "G3901050, G39005000" +County and PUMA "G3901070, G39002600" +County and PUMA "G3901090, G39004400" +County and PUMA "G3901110, G39003600" +County and PUMA "G3901130, G39004601" +County and PUMA "G3901130, G39004602" +County and PUMA "G3901130, G39004603" +County and PUMA "G3901130, G39004604" +County and PUMA "G3901150, G39003600" +County and PUMA "G3901170, G39002800" +County and PUMA "G3901190, G39003700" +County and PUMA "G3901210, G39003600" +County and PUMA "G3901230, G39000600" +County and PUMA "G3901250, G39000100" +County and PUMA "G3901270, G39003700" +County and PUMA "G3901290, G39004200" +County and PUMA "G3901310, G39004900" +County and PUMA "G3901330, G39001700" +County and PUMA "G3901350, G39004500" +County and PUMA "G3901370, G39002400" +County and PUMA "G3901390, G39002200" +County and PUMA "G3901410, G39004800" +County and PUMA "G3901430, G39000700" +County and PUMA "G3901450, G39005100" +County and PUMA "G3901470, G39002300" +County and PUMA "G3901490, G39004500" +County and PUMA "G3901510, G39003100" +County and PUMA "G3901510, G39003200" +County and PUMA "G3901510, G39003300" +County and PUMA "G3901530, G39001801" +County and PUMA "G3901530, G39001802" +County and PUMA "G3901530, G39001803" +County and PUMA "G3901530, G39001804" +County and PUMA "G3901530, G39001805" +County and PUMA "G3901550, G39001400" +County and PUMA "G3901550, G39001600" +County and PUMA "G3901570, G39003000" +County and PUMA "G3901590, G39004200" +County and PUMA "G3901610, G39002600" +County and PUMA "G3901630, G39004900" +County and PUMA "G3901650, G39005301" +County and PUMA "G3901650, G39005302" +County and PUMA "G3901670, G39003600" +County and PUMA "G3901690, G39002000" +County and PUMA "G3901710, G39000100" +County and PUMA "G3901730, G39000200" +County and PUMA "G3901730, G39000300" +County and PUMA "G3901730, G39000600" +County and PUMA "G3901750, G39002300" +County and PUMA "G4000010, G40000200" +County and PUMA "G4000030, G40000500" +County and PUMA "G4000050, G40000702" +County and PUMA "G4000070, G40000500" +County and PUMA "G4000090, G40000400" +County and PUMA "G4000110, G40000500" +County and PUMA "G4000130, G40000702" +County and PUMA "G4000150, G40000602" +County and PUMA "G4000170, G40000800" +County and PUMA "G4000190, G40000701" +County and PUMA "G4000210, G40000200" +County and PUMA "G4000230, G40000300" +County and PUMA "G4000250, G40000500" +County and PUMA "G4000270, G40000900" +County and PUMA "G4000290, G40000702" +County and PUMA "G4000310, G40000601" +County and PUMA "G4000310, G40000602" +County and PUMA "G4000330, G40000602" +County and PUMA "G4000350, G40000100" +County and PUMA "G4000370, G40001204" +County and PUMA "G4000370, G40001501" +County and PUMA "G4000370, G40001601" +County and PUMA "G4000390, G40000400" +County and PUMA "G4000410, G40000100" +County and PUMA "G4000430, G40000500" +County and PUMA "G4000450, G40000500" +County and PUMA "G4000470, G40001400" +County and PUMA "G4000490, G40000701" +County and PUMA "G4000510, G40001101" +County and PUMA "G4000530, G40000500" +County and PUMA "G4000550, G40000400" +County and PUMA "G4000570, G40000400" +County and PUMA "G4000590, G40000500" +County and PUMA "G4000610, G40000300" +County and PUMA "G4000630, G40001501" +County and PUMA "G4000650, G40000400" +County and PUMA "G4000670, G40000602" +County and PUMA "G4000690, G40000702" +County and PUMA "G4000710, G40001400" +County and PUMA "G4000730, G40000500" +County and PUMA "G4000750, G40000400" +County and PUMA "G4000770, G40000300" +County and PUMA "G4000790, G40000300" +County and PUMA "G4000810, G40001102" +County and PUMA "G4000830, G40001102" +County and PUMA "G4000850, G40000701" +County and PUMA "G4000870, G40001101" +County and PUMA "G4000890, G40000300" +County and PUMA "G4000910, G40001302" +County and PUMA "G4000930, G40000500" +County and PUMA "G4000950, G40000702" +County and PUMA "G4000970, G40000100" +County and PUMA "G4000990, G40000701" +County and PUMA "G4001010, G40001302" +County and PUMA "G4001030, G40001400" +County and PUMA "G4001050, G40000100" +County and PUMA "G4001070, G40001501" +County and PUMA "G4001090, G40001001" +County and PUMA "G4001090, G40001002" +County and PUMA "G4001090, G40001003" +County and PUMA "G4001090, G40001004" +County and PUMA "G4001090, G40001005" +County and PUMA "G4001090, G40001006" +County and PUMA "G4001110, G40001302" +County and PUMA "G4001130, G40001204" +County and PUMA "G4001130, G40001601" +County and PUMA "G4001150, G40000100" +County and PUMA "G4001170, G40001601" +County and PUMA "G4001190, G40001501" +County and PUMA "G4001210, G40000300" +County and PUMA "G4001230, G40000701" +County and PUMA "G4001230, G40000702" +County and PUMA "G4001250, G40001101" +County and PUMA "G4001250, G40001102" +County and PUMA "G4001270, G40000300" +County and PUMA "G4001290, G40000400" +County and PUMA "G4001310, G40000100" +County and PUMA "G4001310, G40001301" +County and PUMA "G4001330, G40001501" +County and PUMA "G4001350, G40000200" +County and PUMA "G4001370, G40000602" +County and PUMA "G4001390, G40000500" +County and PUMA "G4001410, G40000602" +County and PUMA "G4001430, G40001201" +County and PUMA "G4001430, G40001202" +County and PUMA "G4001430, G40001203" +County and PUMA "G4001430, G40001204" +County and PUMA "G4001450, G40001301" +County and PUMA "G4001450, G40001302" +County and PUMA "G4001470, G40001601" +County and PUMA "G4001490, G40000400" +County and PUMA "G4001510, G40000500" +County and PUMA "G4001530, G40000500" +County and PUMA "G4100010, G41000100" +County and PUMA "G4100030, G41000600" +County and PUMA "G4100050, G41001317" +County and PUMA "G4100050, G41001318" +County and PUMA "G4100050, G41001319" +County and PUMA "G4100070, G41000500" +County and PUMA "G4100090, G41000500" +County and PUMA "G4100110, G41000800" +County and PUMA "G4100130, G41000200" +County and PUMA "G4100150, G41000800" +County and PUMA "G4100170, G41000400" +County and PUMA "G4100190, G41001000" +County and PUMA "G4100210, G41000200" +County and PUMA "G4100230, G41000200" +County and PUMA "G4100250, G41000300" +County and PUMA "G4100270, G41000200" +County and PUMA "G4100290, G41000901" +County and PUMA "G4100290, G41000902" +County and PUMA "G4100310, G41000200" +County and PUMA "G4100330, G41000800" +County and PUMA "G4100350, G41000300" +County and PUMA "G4100370, G41000300" +County and PUMA "G4100390, G41000703" +County and PUMA "G4100390, G41000704" +County and PUMA "G4100390, G41000705" +County and PUMA "G4100410, G41000500" +County and PUMA "G4100430, G41000600" +County and PUMA "G4100450, G41000300" +County and PUMA "G4100470, G41001103" +County and PUMA "G4100470, G41001104" +County and PUMA "G4100470, G41001105" +County and PUMA "G4100490, G41000200" +County and PUMA "G4100510, G41001301" +County and PUMA "G4100510, G41001302" +County and PUMA "G4100510, G41001303" +County and PUMA "G4100510, G41001305" +County and PUMA "G4100510, G41001314" +County and PUMA "G4100510, G41001316" +County and PUMA "G4100530, G41001200" +County and PUMA "G4100550, G41000200" +County and PUMA "G4100570, G41000500" +County and PUMA "G4100590, G41000100" +County and PUMA "G4100610, G41000100" +County and PUMA "G4100630, G41000100" +County and PUMA "G4100650, G41000200" +County and PUMA "G4100670, G41001320" +County and PUMA "G4100670, G41001321" +County and PUMA "G4100670, G41001322" +County and PUMA "G4100670, G41001323" +County and PUMA "G4100670, G41001324" +County and PUMA "G4100690, G41000200" +County and PUMA "G4100710, G41001200" +County and PUMA "G4200010, G42003701" +County and PUMA "G4200030, G42001701" +County and PUMA "G4200030, G42001702" +County and PUMA "G4200030, G42001801" +County and PUMA "G4200030, G42001802" +County and PUMA "G4200030, G42001803" +County and PUMA "G4200030, G42001804" +County and PUMA "G4200030, G42001805" +County and PUMA "G4200030, G42001806" +County and PUMA "G4200030, G42001807" +County and PUMA "G4200050, G42001900" +County and PUMA "G4200070, G42001501" +County and PUMA "G4200070, G42001502" +County and PUMA "G4200090, G42003800" +County and PUMA "G4200110, G42002701" +County and PUMA "G4200110, G42002702" +County and PUMA "G4200110, G42002703" +County and PUMA "G4200130, G42002200" +County and PUMA "G4200150, G42000400" +County and PUMA "G4200170, G42003001" +County and PUMA "G4200170, G42003002" +County and PUMA "G4200170, G42003003" +County and PUMA "G4200170, G42003004" +County and PUMA "G4200190, G42001600" +County and PUMA "G4200210, G42002100" +County and PUMA "G4200230, G42000300" +County and PUMA "G4200250, G42002801" +County and PUMA "G4200270, G42001200" +County and PUMA "G4200290, G42003401" +County and PUMA "G4200290, G42003402" +County and PUMA "G4200290, G42003403" +County and PUMA "G4200290, G42003404" +County and PUMA "G4200310, G42001300" +County and PUMA "G4200330, G42000300" +County and PUMA "G4200350, G42000900" +County and PUMA "G4200370, G42000803" +County and PUMA "G4200390, G42000200" +County and PUMA "G4200410, G42002301" +County and PUMA "G4200410, G42002302" +County and PUMA "G4200430, G42002401" +County and PUMA "G4200430, G42002402" +County and PUMA "G4200450, G42003301" +County and PUMA "G4200450, G42003302" +County and PUMA "G4200450, G42003303" +County and PUMA "G4200450, G42003304" +County and PUMA "G4200470, G42000300" +County and PUMA "G4200490, G42000101" +County and PUMA "G4200490, G42000102" +County and PUMA "G4200510, G42003900" +County and PUMA "G4200530, G42001300" +County and PUMA "G4200550, G42003701" +County and PUMA "G4200550, G42003702" +County and PUMA "G4200570, G42003800" +County and PUMA "G4200590, G42004002" +County and PUMA "G4200610, G42002200" +County and PUMA "G4200630, G42001900" +County and PUMA "G4200650, G42001300" +County and PUMA "G4200670, G42001100" +County and PUMA "G4200690, G42000701" +County and PUMA "G4200690, G42000702" +County and PUMA "G4200710, G42003501" +County and PUMA "G4200710, G42003502" +County and PUMA "G4200710, G42003503" +County and PUMA "G4200710, G42003504" +County and PUMA "G4200730, G42001501" +County and PUMA "G4200750, G42002500" +County and PUMA "G4200770, G42002801" +County and PUMA "G4200770, G42002802" +County and PUMA "G4200770, G42002803" +County and PUMA "G4200770, G42002901" +County and PUMA "G4200790, G42000801" +County and PUMA "G4200790, G42000802" +County and PUMA "G4200790, G42000803" +County and PUMA "G4200810, G42000900" +County and PUMA "G4200830, G42000300" +County and PUMA "G4200850, G42001400" +County and PUMA "G4200870, G42001100" +County and PUMA "G4200890, G42000600" +County and PUMA "G4200910, G42003101" +County and PUMA "G4200910, G42003102" +County and PUMA "G4200910, G42003103" +County and PUMA "G4200910, G42003104" +County and PUMA "G4200910, G42003105" +County and PUMA "G4200910, G42003106" +County and PUMA "G4200930, G42001000" +County and PUMA "G4200950, G42002901" +County and PUMA "G4200950, G42002902" +County and PUMA "G4200970, G42001000" +County and PUMA "G4200990, G42002301" +County and PUMA "G4201010, G42003201" +County and PUMA "G4201010, G42003202" +County and PUMA "G4201010, G42003203" +County and PUMA "G4201010, G42003204" +County and PUMA "G4201010, G42003205" +County and PUMA "G4201010, G42003206" +County and PUMA "G4201010, G42003207" +County and PUMA "G4201010, G42003208" +County and PUMA "G4201010, G42003209" +County and PUMA "G4201010, G42003210" +County and PUMA "G4201010, G42003211" +County and PUMA "G4201030, G42000500" +County and PUMA "G4201050, G42000300" +County and PUMA "G4201070, G42002600" +County and PUMA "G4201090, G42001100" +County and PUMA "G4201110, G42003800" +County and PUMA "G4201130, G42000400" +County and PUMA "G4201150, G42000500" +County and PUMA "G4201170, G42000400" +County and PUMA "G4201190, G42001100" +County and PUMA "G4201210, G42001300" +County and PUMA "G4201230, G42000200" +County and PUMA "G4201250, G42004001" +County and PUMA "G4201250, G42004002" +County and PUMA "G4201270, G42000500" +County and PUMA "G4201290, G42002001" +County and PUMA "G4201290, G42002002" +County and PUMA "G4201290, G42002003" +County and PUMA "G4201310, G42000702" +County and PUMA "G4201330, G42003601" +County and PUMA "G4201330, G42003602" +County and PUMA "G4201330, G42003603" +County and PUMA "G4400010, G44000300" +County and PUMA "G4400030, G44000201" +County and PUMA "G4400050, G44000300" +County and PUMA "G4400070, G44000101" +County and PUMA "G4400070, G44000102" +County and PUMA "G4400070, G44000103" +County and PUMA "G4400070, G44000104" +County and PUMA "G4400090, G44000400" +County and PUMA "G4500010, G45001600" +County and PUMA "G4500030, G45001500" +County and PUMA "G4500050, G45001300" +County and PUMA "G4500070, G45000200" +County and PUMA "G4500090, G45001300" +County and PUMA "G4500110, G45001300" +County and PUMA "G4500130, G45001400" +County and PUMA "G4500150, G45001201" +County and PUMA "G4500150, G45001202" +County and PUMA "G4500150, G45001203" +County and PUMA "G4500150, G45001204" +County and PUMA "G4500170, G45000605" +County and PUMA "G4500190, G45001201" +County and PUMA "G4500190, G45001202" +County and PUMA "G4500190, G45001203" +County and PUMA "G4500190, G45001204" +County and PUMA "G4500210, G45000400" +County and PUMA "G4500230, G45000400" +County and PUMA "G4500250, G45000700" +County and PUMA "G4500270, G45000800" +County and PUMA "G4500290, G45001300" +County and PUMA "G4500310, G45000900" +County and PUMA "G4500330, G45001000" +County and PUMA "G4500350, G45001201" +County and PUMA "G4500350, G45001204" +County and PUMA "G4500370, G45001500" +County and PUMA "G4500390, G45000603" +County and PUMA "G4500410, G45000900" +County and PUMA "G4500430, G45001000" +County and PUMA "G4500450, G45000102" +County and PUMA "G4500450, G45000103" +County and PUMA "G4500450, G45000104" +County and PUMA "G4500450, G45000105" +County and PUMA "G4500470, G45001600" +County and PUMA "G4500490, G45001300" +County and PUMA "G4500510, G45001101" +County and PUMA "G4500510, G45001102" +County and PUMA "G4500530, G45001400" +County and PUMA "G4500550, G45000605" +County and PUMA "G4500570, G45000700" +County and PUMA "G4500590, G45000105" +County and PUMA "G4500610, G45000800" +County and PUMA "G4500630, G45000601" +County and PUMA "G4500630, G45000602" +County and PUMA "G4500650, G45001600" +County and PUMA "G4500670, G45001000" +County and PUMA "G4500690, G45000700" +County and PUMA "G4500710, G45000400" +County and PUMA "G4500730, G45000101" +County and PUMA "G4500750, G45001300" +County and PUMA "G4500770, G45000101" +County and PUMA "G4500790, G45000603" +County and PUMA "G4500790, G45000604" +County and PUMA "G4500790, G45000605" +County and PUMA "G4500810, G45000601" +County and PUMA "G4500830, G45000301" +County and PUMA "G4500830, G45000302" +County and PUMA "G4500850, G45000800" +County and PUMA "G4500870, G45000400" +County and PUMA "G4500890, G45000800" +County and PUMA "G4500910, G45000501" +County and PUMA "G4500910, G45000502" +County and PUMA "G4600030, G46000400" +County and PUMA "G4600050, G46000400" +County and PUMA "G4600070, G46000200" +County and PUMA "G4600090, G46000400" +County and PUMA "G4600110, G46000400" +County and PUMA "G4600130, G46000300" +County and PUMA "G4600150, G46000400" +County and PUMA "G4600170, G46000200" +County and PUMA "G4600190, G46000100" +County and PUMA "G4600210, G46000300" +County and PUMA "G4600230, G46000200" +County and PUMA "G4600250, G46000300" +County and PUMA "G4600270, G46000500" +County and PUMA "G4600290, G46000300" +County and PUMA "G4600310, G46000200" +County and PUMA "G4600330, G46000100" +County and PUMA "G4600350, G46000400" +County and PUMA "G4600370, G46000300" +County and PUMA "G4600390, G46000300" +County and PUMA "G4600410, G46000200" +County and PUMA "G4600430, G46000400" +County and PUMA "G4600450, G46000300" +County and PUMA "G4600470, G46000200" +County and PUMA "G4600490, G46000300" +County and PUMA "G4600510, G46000300" +County and PUMA "G4600530, G46000200" +County and PUMA "G4600550, G46000200" +County and PUMA "G4600570, G46000300" +County and PUMA "G4600590, G46000400" +County and PUMA "G4600610, G46000400" +County and PUMA "G4600630, G46000100" +County and PUMA "G4600650, G46000200" +County and PUMA "G4600670, G46000400" +County and PUMA "G4600690, G46000200" +County and PUMA "G4600710, G46000200" +County and PUMA "G4600730, G46000400" +County and PUMA "G4600750, G46000200" +County and PUMA "G4600770, G46000400" +County and PUMA "G4600790, G46000400" +County and PUMA "G4600810, G46000100" +County and PUMA "G4600830, G46000500" +County and PUMA "G4600830, G46000600" +County and PUMA "G4600850, G46000200" +County and PUMA "G4600870, G46000500" +County and PUMA "G4600890, G46000300" +County and PUMA "G4600910, G46000300" +County and PUMA "G4600930, G46000100" +County and PUMA "G4600950, G46000200" +County and PUMA "G4600970, G46000400" +County and PUMA "G4600990, G46000500" +County and PUMA "G4600990, G46000600" +County and PUMA "G4601010, G46000400" +County and PUMA "G4601020, G46000200" +County and PUMA "G4601030, G46000100" +County and PUMA "G4601050, G46000100" +County and PUMA "G4601070, G46000300" +County and PUMA "G4601090, G46000300" +County and PUMA "G4601110, G46000400" +County and PUMA "G4601150, G46000300" +County and PUMA "G4601170, G46000200" +County and PUMA "G4601190, G46000200" +County and PUMA "G4601210, G46000200" +County and PUMA "G4601230, G46000200" +County and PUMA "G4601250, G46000500" +County and PUMA "G4601270, G46000500" +County and PUMA "G4601290, G46000300" +County and PUMA "G4601350, G46000500" +County and PUMA "G4601370, G46000200" +County and PUMA "G4700010, G47001601" +County and PUMA "G4700030, G47002700" +County and PUMA "G4700050, G47000200" +County and PUMA "G4700070, G47002100" +County and PUMA "G4700090, G47001700" +County and PUMA "G4700110, G47001900" +County and PUMA "G4700130, G47000900" +County and PUMA "G4700150, G47000600" +County and PUMA "G4700170, G47000200" +County and PUMA "G4700190, G47001200" +County and PUMA "G4700210, G47000400" +County and PUMA "G4700230, G47003000" +County and PUMA "G4700250, G47000900" +County and PUMA "G4700270, G47000700" +County and PUMA "G4700290, G47001400" +County and PUMA "G4700310, G47002200" +County and PUMA "G4700330, G47000100" +County and PUMA "G4700350, G47000800" +County and PUMA "G4700370, G47002501" +County and PUMA "G4700370, G47002502" +County and PUMA "G4700370, G47002503" +County and PUMA "G4700370, G47002504" +County and PUMA "G4700370, G47002505" +County and PUMA "G4700390, G47002900" +County and PUMA "G4700410, G47000600" +County and PUMA "G4700430, G47000400" +County and PUMA "G4700450, G47000100" +County and PUMA "G4700470, G47003100" +County and PUMA "G4700490, G47000800" +County and PUMA "G4700510, G47002200" +County and PUMA "G4700530, G47000100" +County and PUMA "G4700550, G47002800" +County and PUMA "G4700570, G47001400" +County and PUMA "G4700590, G47001200" +County and PUMA "G4700610, G47002100" +County and PUMA "G4700630, G47001400" +County and PUMA "G4700650, G47002001" +County and PUMA "G4700650, G47002002" +County and PUMA "G4700650, G47002003" +County and PUMA "G4700670, G47000900" +County and PUMA "G4700690, G47002900" +County and PUMA "G4700710, G47002900" +County and PUMA "G4700730, G47001000" +County and PUMA "G4700750, G47002900" +County and PUMA "G4700770, G47002900" +County and PUMA "G4700790, G47000200" +County and PUMA "G4700810, G47000400" +County and PUMA "G4700830, G47000200" +County and PUMA "G4700850, G47000200" +County and PUMA "G4700870, G47000700" +County and PUMA "G4700890, G47001500" +County and PUMA "G4700910, G47001200" +County and PUMA "G4700930, G47001601" +County and PUMA "G4700930, G47001602" +County and PUMA "G4700930, G47001603" +County and PUMA "G4700930, G47001604" +County and PUMA "G4700950, G47000100" +County and PUMA "G4700970, G47003100" +County and PUMA "G4700990, G47002800" +County and PUMA "G4701010, G47002800" +County and PUMA "G4701030, G47002200" +County and PUMA "G4701050, G47001800" +County and PUMA "G4701070, G47001900" +County and PUMA "G4701090, G47002900" +County and PUMA "G4701110, G47000600" +County and PUMA "G4701130, G47003000" +County and PUMA "G4701150, G47002100" +County and PUMA "G4701170, G47002700" +County and PUMA "G4701190, G47002700" +County and PUMA "G4701210, G47002100" +County and PUMA "G4701230, G47001800" +County and PUMA "G4701250, G47000300" +County and PUMA "G4701270, G47002200" +County and PUMA "G4701290, G47000900" +County and PUMA "G4701310, G47000100" +County and PUMA "G4701330, G47000700" +County and PUMA "G4701350, G47002800" +County and PUMA "G4701370, G47000700" +County and PUMA "G4701390, G47001900" +County and PUMA "G4701410, G47000700" +County and PUMA "G4701430, G47002100" +County and PUMA "G4701450, G47001800" +County and PUMA "G4701470, G47000400" +County and PUMA "G4701490, G47002401" +County and PUMA "G4701490, G47002402" +County and PUMA "G4701510, G47000900" +County and PUMA "G4701530, G47002100" +County and PUMA "G4701550, G47001500" +County and PUMA "G4701570, G47003201" +County and PUMA "G4701570, G47003202" +County and PUMA "G4701570, G47003203" +County and PUMA "G4701570, G47003204" +County and PUMA "G4701570, G47003205" +County and PUMA "G4701570, G47003206" +County and PUMA "G4701570, G47003207" +County and PUMA "G4701570, G47003208" +County and PUMA "G4701590, G47000600" +County and PUMA "G4701610, G47000300" +County and PUMA "G4701630, G47001000" +County and PUMA "G4701630, G47001100" +County and PUMA "G4701650, G47000500" +County and PUMA "G4701670, G47003100" +County and PUMA "G4701690, G47000600" +County and PUMA "G4701710, G47001200" +County and PUMA "G4701730, G47001601" +County and PUMA "G4701750, G47000800" +County and PUMA "G4701770, G47000600" +County and PUMA "G4701790, G47001300" +County and PUMA "G4701810, G47002800" +County and PUMA "G4701830, G47000200" +County and PUMA "G4701850, G47000800" +County and PUMA "G4701870, G47002600" +County and PUMA "G4701890, G47002300" +County and PUMA "G4800010, G48001800" +County and PUMA "G4800030, G48003200" +County and PUMA "G4800050, G48004000" +County and PUMA "G4800070, G48006500" +County and PUMA "G4800090, G48000600" +County and PUMA "G4800110, G48000100" +County and PUMA "G4800130, G48006100" +County and PUMA "G4800150, G48005000" +County and PUMA "G4800170, G48000400" +County and PUMA "G4800190, G48006100" +County and PUMA "G4800210, G48005100" +County and PUMA "G4800230, G48000600" +County and PUMA "G4800250, G48006500" +County and PUMA "G4800270, G48003501" +County and PUMA "G4800270, G48003502" +County and PUMA "G4800290, G48005901" +County and PUMA "G4800290, G48005902" +County and PUMA "G4800290, G48005903" +County and PUMA "G4800290, G48005904" +County and PUMA "G4800290, G48005905" +County and PUMA "G4800290, G48005906" +County and PUMA "G4800290, G48005907" +County and PUMA "G4800290, G48005908" +County and PUMA "G4800290, G48005909" +County and PUMA "G4800290, G48005910" +County and PUMA "G4800290, G48005911" +County and PUMA "G4800290, G48005912" +County and PUMA "G4800290, G48005913" +County and PUMA "G4800290, G48005914" +County and PUMA "G4800290, G48005915" +County and PUMA "G4800290, G48005916" +County and PUMA "G4800310, G48006000" +County and PUMA "G4800330, G48002800" +County and PUMA "G4800350, G48003700" +County and PUMA "G4800370, G48001100" +County and PUMA "G4800390, G48004801" +County and PUMA "G4800390, G48004802" +County and PUMA "G4800390, G48004803" +County and PUMA "G4800410, G48003602" +County and PUMA "G4800430, G48003200" +County and PUMA "G4800450, G48000100" +County and PUMA "G4800470, G48006900" +County and PUMA "G4800490, G48002600" +County and PUMA "G4800510, G48003601" +County and PUMA "G4800530, G48003400" +County and PUMA "G4800550, G48005100" +County and PUMA "G4800570, G48005600" +County and PUMA "G4800590, G48002600" +County and PUMA "G4800610, G48006701" +County and PUMA "G4800610, G48006702" +County and PUMA "G4800610, G48006703" +County and PUMA "G4800630, G48001300" +County and PUMA "G4800650, G48000100" +County and PUMA "G4800670, G48001100" +County and PUMA "G4800690, G48000100" +County and PUMA "G4800710, G48004400" +County and PUMA "G4800730, G48001700" +County and PUMA "G4800750, G48000100" +County and PUMA "G4800770, G48000600" +County and PUMA "G4800790, G48000400" +County and PUMA "G4800810, G48002800" +County and PUMA "G4800830, G48002600" +County and PUMA "G4800850, G48001901" +County and PUMA "G4800850, G48001902" +County and PUMA "G4800850, G48001903" +County and PUMA "G4800850, G48001904" +County and PUMA "G4800850, G48001905" +County and PUMA "G4800850, G48001906" +County and PUMA "G4800850, G48001907" +County and PUMA "G4800870, G48000100" +County and PUMA "G4800890, G48005000" +County and PUMA "G4800910, G48005800" +County and PUMA "G4800930, G48002600" +County and PUMA "G4800950, G48002800" +County and PUMA "G4800970, G48000800" +County and PUMA "G4800990, G48003400" +County and PUMA "G4801010, G48000600" +County and PUMA "G4801030, G48003200" +County and PUMA "G4801050, G48002800" +County and PUMA "G4801070, G48000400" +County and PUMA "G4801090, G48003200" +County and PUMA "G4801110, G48000100" +County and PUMA "G4801130, G48002301" +County and PUMA "G4801130, G48002302" +County and PUMA "G4801130, G48002303" +County and PUMA "G4801130, G48002304" +County and PUMA "G4801130, G48002305" +County and PUMA "G4801130, G48002306" +County and PUMA "G4801130, G48002307" +County and PUMA "G4801130, G48002308" +County and PUMA "G4801130, G48002309" +County and PUMA "G4801130, G48002310" +County and PUMA "G4801130, G48002311" +County and PUMA "G4801130, G48002312" +County and PUMA "G4801130, G48002313" +County and PUMA "G4801130, G48002314" +County and PUMA "G4801130, G48002315" +County and PUMA "G4801130, G48002316" +County and PUMA "G4801130, G48002317" +County and PUMA "G4801130, G48002318" +County and PUMA "G4801130, G48002319" +County and PUMA "G4801130, G48002320" +County and PUMA "G4801130, G48002321" +County and PUMA "G4801130, G48002322" +County and PUMA "G4801150, G48002800" +County and PUMA "G4801170, G48000100" +County and PUMA "G4801190, G48001000" +County and PUMA "G4801210, G48002001" +County and PUMA "G4801210, G48002002" +County and PUMA "G4801210, G48002003" +County and PUMA "G4801210, G48002004" +County and PUMA "G4801210, G48002005" +County and PUMA "G4801210, G48002006" +County and PUMA "G4801230, G48005500" +County and PUMA "G4801250, G48000400" +County and PUMA "G4801270, G48006200" +County and PUMA "G4801290, G48000100" +County and PUMA "G4801310, G48006400" +County and PUMA "G4801330, G48002600" +County and PUMA "G4801350, G48003100" +County and PUMA "G4801370, G48006200" +County and PUMA "G4801390, G48002101" +County and PUMA "G4801410, G48003301" +County and PUMA "G4801410, G48003302" +County and PUMA "G4801410, G48003303" +County and PUMA "G4801410, G48003304" +County and PUMA "G4801410, G48003305" +County and PUMA "G4801410, G48003306" +County and PUMA "G4801430, G48002200" +County and PUMA "G4801450, G48003700" +County and PUMA "G4801470, G48000800" +County and PUMA "G4801490, G48005100" +County and PUMA "G4801510, G48002600" +County and PUMA "G4801530, G48000400" +County and PUMA "G4801550, G48000600" +County and PUMA "G4801570, G48004901" +County and PUMA "G4801570, G48004902" +County and PUMA "G4801570, G48004903" +County and PUMA "G4801570, G48004904" +County and PUMA "G4801570, G48004905" +County and PUMA "G4801590, G48001000" +County and PUMA "G4801610, G48003700" +County and PUMA "G4801630, G48006100" +County and PUMA "G4801650, G48003200" +County and PUMA "G4801670, G48004701" +County and PUMA "G4801670, G48004702" +County and PUMA "G4801690, G48000400" +County and PUMA "G4801710, G48006000" +County and PUMA "G4801730, G48002800" +County and PUMA "G4801750, G48005500" +County and PUMA "G4801770, G48005500" +County and PUMA "G4801790, G48000100" +County and PUMA "G4801810, G48000800" +County and PUMA "G4801830, G48001600" +County and PUMA "G4801850, G48003601" +County and PUMA "G4801870, G48005700" +County and PUMA "G4801890, G48000400" +County and PUMA "G4801910, G48000100" +County and PUMA "G4801930, G48003400" +County and PUMA "G4801950, G48000100" +County and PUMA "G4801970, G48000600" +County and PUMA "G4801990, G48004200" +County and PUMA "G4802010, G48004601" +County and PUMA "G4802010, G48004602" +County and PUMA "G4802010, G48004603" +County and PUMA "G4802010, G48004604" +County and PUMA "G4802010, G48004605" +County and PUMA "G4802010, G48004606" +County and PUMA "G4802010, G48004607" +County and PUMA "G4802010, G48004608" +County and PUMA "G4802010, G48004609" +County and PUMA "G4802010, G48004610" +County and PUMA "G4802010, G48004611" +County and PUMA "G4802010, G48004612" +County and PUMA "G4802010, G48004613" +County and PUMA "G4802010, G48004614" +County and PUMA "G4802010, G48004615" +County and PUMA "G4802010, G48004616" +County and PUMA "G4802010, G48004617" +County and PUMA "G4802010, G48004618" +County and PUMA "G4802010, G48004619" +County and PUMA "G4802010, G48004620" +County and PUMA "G4802010, G48004621" +County and PUMA "G4802010, G48004622" +County and PUMA "G4802010, G48004623" +County and PUMA "G4802010, G48004624" +County and PUMA "G4802010, G48004625" +County and PUMA "G4802010, G48004626" +County and PUMA "G4802010, G48004627" +County and PUMA "G4802010, G48004628" +County and PUMA "G4802010, G48004629" +County and PUMA "G4802010, G48004630" +County and PUMA "G4802010, G48004631" +County and PUMA "G4802010, G48004632" +County and PUMA "G4802010, G48004633" +County and PUMA "G4802010, G48004634" +County and PUMA "G4802010, G48004635" +County and PUMA "G4802010, G48004636" +County and PUMA "G4802010, G48004637" +County and PUMA "G4802010, G48004638" +County and PUMA "G4802030, G48001200" +County and PUMA "G4802050, G48000100" +County and PUMA "G4802070, G48002600" +County and PUMA "G4802090, G48005400" +County and PUMA "G4802110, G48000100" +County and PUMA "G4802130, G48001800" +County and PUMA "G4802150, G48006801" +County and PUMA "G4802150, G48006802" +County and PUMA "G4802150, G48006803" +County and PUMA "G4802150, G48006804" +County and PUMA "G4802150, G48006805" +County and PUMA "G4802150, G48006806" +County and PUMA "G4802150, G48006807" +County and PUMA "G4802170, G48003700" +County and PUMA "G4802190, G48000400" +County and PUMA "G4802210, G48002200" +County and PUMA "G4802230, G48001000" +County and PUMA "G4802250, G48003900" +County and PUMA "G4802270, G48002800" +County and PUMA "G4802290, G48003200" +County and PUMA "G4802310, G48000900" +County and PUMA "G4802330, G48000100" +County and PUMA "G4802350, G48002800" +County and PUMA "G4802370, G48000600" +County and PUMA "G4802390, G48005500" +County and PUMA "G4802410, G48004100" +County and PUMA "G4802430, G48003200" +County and PUMA "G4802450, G48004301" +County and PUMA "G4802450, G48004302" +County and PUMA "G4802470, G48006400" +County and PUMA "G4802490, G48006900" +County and PUMA "G4802510, G48002102" +County and PUMA "G4802530, G48002600" +County and PUMA "G4802550, G48005500" +County and PUMA "G4802570, G48001400" +County and PUMA "G4802590, G48006000" +County and PUMA "G4802610, G48006900" +County and PUMA "G4802630, G48002600" +County and PUMA "G4802650, G48006000" +County and PUMA "G4802670, G48002800" +County and PUMA "G4802690, G48000400" +County and PUMA "G4802710, G48006200" +County and PUMA "G4802730, G48006900" +County and PUMA "G4802750, G48002600" +County and PUMA "G4802770, G48001000" +County and PUMA "G4802790, G48000400" +County and PUMA "G4802810, G48003400" +County and PUMA "G4802830, G48006200" +County and PUMA "G4802850, G48005500" +County and PUMA "G4802870, G48005100" +County and PUMA "G4802890, G48003601" +County and PUMA "G4802910, G48004400" +County and PUMA "G4802930, G48003700" +County and PUMA "G4802950, G48000100" +County and PUMA "G4802970, G48006400" +County and PUMA "G4802990, G48003400" +County and PUMA "G4803010, G48003200" +County and PUMA "G4803030, G48000501" +County and PUMA "G4803030, G48000502" +County and PUMA "G4803050, G48000400" +County and PUMA "G4803070, G48002800" +County and PUMA "G4803090, G48003801" +County and PUMA "G4803090, G48003802" +County and PUMA "G4803110, G48006400" +County and PUMA "G4803130, G48003601" +County and PUMA "G4803150, G48001200" +County and PUMA "G4803170, G48002800" +County and PUMA "G4803190, G48002800" +County and PUMA "G4803210, G48005000" +County and PUMA "G4803230, G48006200" +County and PUMA "G4803250, G48006100" +County and PUMA "G4803270, G48002800" +County and PUMA "G4803290, G48003000" +County and PUMA "G4803310, G48003601" +County and PUMA "G4803330, G48003400" +County and PUMA "G4803350, G48002600" +County and PUMA "G4803370, G48000600" +County and PUMA "G4803390, G48004501" +County and PUMA "G4803390, G48004502" +County and PUMA "G4803390, G48004503" +County and PUMA "G4803390, G48004504" +County and PUMA "G4803410, G48000100" +County and PUMA "G4803430, G48001000" +County and PUMA "G4803450, G48000400" +County and PUMA "G4803470, G48004000" +County and PUMA "G4803490, G48003700" +County and PUMA "G4803510, G48004100" +County and PUMA "G4803530, G48002600" +County and PUMA "G4803550, G48006601" +County and PUMA "G4803550, G48006602" +County and PUMA "G4803550, G48006603" +County and PUMA "G4803570, G48000100" +County and PUMA "G4803590, G48000100" +County and PUMA "G4803610, G48004200" +County and PUMA "G4803630, G48002200" +County and PUMA "G4803650, G48001700" +County and PUMA "G4803670, G48002400" +County and PUMA "G4803690, G48000100" +County and PUMA "G4803710, G48003200" +County and PUMA "G4803730, G48003900" +County and PUMA "G4803750, G48000200" +County and PUMA "G4803770, G48003200" +County and PUMA "G4803790, G48001300" +County and PUMA "G4803810, G48000300" +County and PUMA "G4803830, G48002800" +County and PUMA "G4803850, G48006200" +County and PUMA "G4803870, G48001000" +County and PUMA "G4803890, G48003200" +County and PUMA "G4803910, G48006500" +County and PUMA "G4803930, G48000100" +County and PUMA "G4803950, G48003601" +County and PUMA "G4803970, G48000900" +County and PUMA "G4803990, G48002600" +County and PUMA "G4804010, G48001700" +County and PUMA "G4804030, G48004100" +County and PUMA "G4804050, G48004100" +County and PUMA "G4804070, G48003900" +County and PUMA "G4804090, G48006500" +County and PUMA "G4804110, G48003400" +County and PUMA "G4804130, G48002800" +County and PUMA "G4804150, G48002600" +County and PUMA "G4804170, G48002600" +County and PUMA "G4804190, G48004100" +County and PUMA "G4804210, G48000100" +County and PUMA "G4804230, G48001501" +County and PUMA "G4804230, G48001502" +County and PUMA "G4804250, G48002200" +County and PUMA "G4804270, G48006400" +County and PUMA "G4804290, G48002600" +County and PUMA "G4804310, G48002800" +County and PUMA "G4804330, G48002600" +County and PUMA "G4804350, G48002800" +County and PUMA "G4804370, G48000100" +County and PUMA "G4804390, G48002501" +County and PUMA "G4804390, G48002502" +County and PUMA "G4804390, G48002503" +County and PUMA "G4804390, G48002504" +County and PUMA "G4804390, G48002505" +County and PUMA "G4804390, G48002506" +County and PUMA "G4804390, G48002507" +County and PUMA "G4804390, G48002508" +County and PUMA "G4804390, G48002509" +County and PUMA "G4804390, G48002510" +County and PUMA "G4804390, G48002511" +County and PUMA "G4804390, G48002512" +County and PUMA "G4804390, G48002513" +County and PUMA "G4804390, G48002514" +County and PUMA "G4804390, G48002515" +County and PUMA "G4804390, G48002516" +County and PUMA "G4804410, G48002700" +County and PUMA "G4804430, G48003200" +County and PUMA "G4804450, G48000400" +County and PUMA "G4804470, G48002600" +County and PUMA "G4804490, G48001000" +County and PUMA "G4804510, G48002900" +County and PUMA "G4804530, G48005301" +County and PUMA "G4804530, G48005302" +County and PUMA "G4804530, G48005303" +County and PUMA "G4804530, G48005304" +County and PUMA "G4804530, G48005305" +County and PUMA "G4804530, G48005306" +County and PUMA "G4804530, G48005307" +County and PUMA "G4804530, G48005308" +County and PUMA "G4804530, G48005309" +County and PUMA "G4804550, G48003900" +County and PUMA "G4804570, G48004100" +County and PUMA "G4804590, G48001200" +County and PUMA "G4804610, G48002800" +County and PUMA "G4804630, G48006200" +County and PUMA "G4804650, G48006200" +County and PUMA "G4804670, G48001300" +County and PUMA "G4804690, G48005600" +County and PUMA "G4804710, G48003900" +County and PUMA "G4804730, G48005000" +County and PUMA "G4804750, G48003200" +County and PUMA "G4804770, G48003601" +County and PUMA "G4804790, G48006301" +County and PUMA "G4804790, G48006302" +County and PUMA "G4804810, G48005000" +County and PUMA "G4804830, G48000100" +County and PUMA "G4804850, G48000700" +County and PUMA "G4804870, G48000600" +County and PUMA "G4804890, G48006900" +County and PUMA "G4804910, G48005201" +County and PUMA "G4804910, G48005202" +County and PUMA "G4804910, G48005203" +County and PUMA "G4804910, G48005204" +County and PUMA "G4804930, G48005500" +County and PUMA "G4804950, G48003200" +County and PUMA "G4804970, G48000600" +County and PUMA "G4804990, G48001300" +County and PUMA "G4805010, G48000400" +County and PUMA "G4805030, G48000600" +County and PUMA "G4805050, G48006400" +County and PUMA "G4805070, G48006200" +County and PUMA "G4900010, G49021001" +County and PUMA "G4900030, G49003001" +County and PUMA "G4900050, G49005001" +County and PUMA "G4900070, G49013001" +County and PUMA "G4900090, G49013001" +County and PUMA "G4900110, G49011001" +County and PUMA "G4900110, G49011002" +County and PUMA "G4900130, G49013001" +County and PUMA "G4900150, G49013001" +County and PUMA "G4900170, G49021001" +County and PUMA "G4900190, G49013001" +County and PUMA "G4900210, G49021001" +County and PUMA "G4900230, G49021001" +County and PUMA "G4900250, G49021001" +County and PUMA "G4900270, G49021001" +County and PUMA "G4900290, G49005001" +County and PUMA "G4900310, G49021001" +County and PUMA "G4900330, G49005001" +County and PUMA "G4900350, G49035001" +County and PUMA "G4900350, G49035002" +County and PUMA "G4900350, G49035003" +County and PUMA "G4900350, G49035004" +County and PUMA "G4900350, G49035005" +County and PUMA "G4900350, G49035006" +County and PUMA "G4900350, G49035007" +County and PUMA "G4900350, G49035008" +County and PUMA "G4900350, G49035009" +County and PUMA "G4900370, G49013001" +County and PUMA "G4900390, G49021001" +County and PUMA "G4900410, G49021001" +County and PUMA "G4900430, G49005001" +County and PUMA "G4900450, G49003001" +County and PUMA "G4900470, G49013001" +County and PUMA "G4900490, G49049001" +County and PUMA "G4900490, G49049002" +County and PUMA "G4900490, G49049003" +County and PUMA "G4900490, G49049004" +County and PUMA "G4900510, G49013001" +County and PUMA "G4900530, G49053001" +County and PUMA "G4900550, G49021001" +County and PUMA "G4900570, G49057001" +County and PUMA "G4900570, G49057002" +County and PUMA "G5000010, G50000400" +County and PUMA "G5000030, G50000400" +County and PUMA "G5000050, G50000200" +County and PUMA "G5000070, G50000100" +County and PUMA "G5000090, G50000200" +County and PUMA "G5000110, G50000100" +County and PUMA "G5000130, G50000100" +County and PUMA "G5000150, G50000200" +County and PUMA "G5000170, G50000300" +County and PUMA "G5000190, G50000200" +County and PUMA "G5000210, G50000400" +County and PUMA "G5000230, G50000200" +County and PUMA "G5000250, G50000300" +County and PUMA "G5000270, G50000300" +County and PUMA "G5100010, G51051125" +County and PUMA "G5100030, G51051089" +County and PUMA "G5100030, G51051090" +County and PUMA "G5100050, G51051045" +County and PUMA "G5100070, G51051105" +County and PUMA "G5100090, G51051095" +County and PUMA "G5100110, G51051095" +County and PUMA "G5100130, G51001301" +County and PUMA "G5100130, G51001302" +County and PUMA "G5100150, G51051080" +County and PUMA "G5100170, G51051080" +County and PUMA "G5100190, G51051095" +County and PUMA "G5100210, G51051020" +County and PUMA "G5100230, G51051045" +County and PUMA "G5100250, G51051105" +County and PUMA "G5100270, G51051010" +County and PUMA "G5100290, G51051105" +County and PUMA "G5100310, G51051096" +County and PUMA "G5100330, G51051120" +County and PUMA "G5100350, G51051020" +County and PUMA "G5100360, G51051215" +County and PUMA "G5100370, G51051105" +County and PUMA "G5100410, G51004101" +County and PUMA "G5100410, G51004102" +County and PUMA "G5100410, G51004103" +County and PUMA "G5100430, G51051084" +County and PUMA "G5100450, G51051045" +County and PUMA "G5100470, G51051087" +County and PUMA "G5100490, G51051105" +County and PUMA "G5100510, G51051010" +County and PUMA "G5100530, G51051135" +County and PUMA "G5100570, G51051125" +County and PUMA "G5100590, G51059301" +County and PUMA "G5100590, G51059302" +County and PUMA "G5100590, G51059303" +County and PUMA "G5100590, G51059304" +County and PUMA "G5100590, G51059305" +County and PUMA "G5100590, G51059306" +County and PUMA "G5100590, G51059307" +County and PUMA "G5100590, G51059308" +County and PUMA "G5100590, G51059309" +County and PUMA "G5100610, G51051087" +County and PUMA "G5100630, G51051040" +County and PUMA "G5100650, G51051089" +County and PUMA "G5100670, G51051045" +County and PUMA "G5100690, G51051084" +County and PUMA "G5100710, G51051040" +County and PUMA "G5100730, G51051125" +County and PUMA "G5100750, G51051215" +County and PUMA "G5100770, G51051020" +County and PUMA "G5100790, G51051090" +County and PUMA "G5100810, G51051135" +County and PUMA "G5100830, G51051105" +County and PUMA "G5100850, G51051215" +County and PUMA "G5100870, G51051224" +County and PUMA "G5100870, G51051225" +County and PUMA "G5100890, G51051097" +County and PUMA "G5100910, G51051080" +County and PUMA "G5100930, G51051145" +County and PUMA "G5100950, G51051206" +County and PUMA "G5100970, G51051125" +County and PUMA "G5100990, G51051120" +County and PUMA "G5101010, G51051215" +County and PUMA "G5101030, G51051125" +County and PUMA "G5101050, G51051010" +County and PUMA "G5101070, G51010701" +County and PUMA "G5101070, G51010702" +County and PUMA "G5101070, G51010703" +County and PUMA "G5101090, G51051089" +County and PUMA "G5101110, G51051105" +County and PUMA "G5101130, G51051087" +County and PUMA "G5101150, G51051125" +County and PUMA "G5101170, G51051105" +County and PUMA "G5101190, G51051125" +County and PUMA "G5101210, G51051040" +County and PUMA "G5101250, G51051089" +County and PUMA "G5101270, G51051215" +County and PUMA "G5101310, G51051125" +County and PUMA "G5101330, G51051125" +County and PUMA "G5101350, G51051105" +County and PUMA "G5101370, G51051087" +County and PUMA "G5101390, G51051085" +County and PUMA "G5101410, G51051097" +County and PUMA "G5101430, G51051097" +County and PUMA "G5101450, G51051215" +County and PUMA "G5101470, G51051105" +County and PUMA "G5101490, G51051135" +County and PUMA "G5101530, G51051244" +County and PUMA "G5101530, G51051245" +County and PUMA "G5101530, G51051246" +County and PUMA "G5101550, G51051040" +County and PUMA "G5101570, G51051087" +County and PUMA "G5101590, G51051125" +County and PUMA "G5101610, G51051044" +County and PUMA "G5101610, G51051045" +County and PUMA "G5101630, G51051080" +County and PUMA "G5101650, G51051110" +County and PUMA "G5101670, G51051010" +County and PUMA "G5101690, G51051010" +County and PUMA "G5101710, G51051085" +County and PUMA "G5101730, G51051020" +County and PUMA "G5101750, G51051145" +County and PUMA "G5101770, G51051120" +County and PUMA "G5101790, G51051115" +County and PUMA "G5101810, G51051135" +County and PUMA "G5101830, G51051135" +County and PUMA "G5101850, G51051010" +County and PUMA "G5101870, G51051085" +County and PUMA "G5101910, G51051020" +County and PUMA "G5101930, G51051125" +County and PUMA "G5101950, G51051010" +County and PUMA "G5101970, G51051020" +County and PUMA "G5101990, G51051206" +County and PUMA "G5105100, G51051255" +County and PUMA "G5105200, G51051020" +County and PUMA "G5105300, G51051080" +County and PUMA "G5105400, G51051090" +County and PUMA "G5105500, G51055001" +County and PUMA "G5105500, G51055002" +County and PUMA "G5105700, G51051135" +County and PUMA "G5105800, G51051045" +County and PUMA "G5105900, G51051097" +County and PUMA "G5105950, G51051135" +County and PUMA "G5106000, G51059303" +County and PUMA "G5106100, G51059308" +County and PUMA "G5106200, G51051145" +County and PUMA "G5106300, G51051115" +County and PUMA "G5106400, G51051020" +County and PUMA "G5106500, G51051186" +County and PUMA "G5106600, G51051110" +County and PUMA "G5106700, G51051135" +County and PUMA "G5106780, G51051080" +County and PUMA "G5106800, G51051096" +County and PUMA "G5106830, G51051245" +County and PUMA "G5106850, G51051245" +County and PUMA "G5106900, G51051097" +County and PUMA "G5107000, G51051175" +County and PUMA "G5107100, G51051154" +County and PUMA "G5107100, G51051155" +County and PUMA "G5107200, G51051010" +County and PUMA "G5107300, G51051135" +County and PUMA "G5107350, G51051206" +County and PUMA "G5107400, G51051155" +County and PUMA "G5107500, G51051040" +County and PUMA "G5107600, G51051235" +County and PUMA "G5107700, G51051044" +County and PUMA "G5107750, G51051044" +County and PUMA "G5107900, G51051080" +County and PUMA "G5108000, G51051145" +County and PUMA "G5108100, G51051164" +County and PUMA "G5108100, G51051165" +County and PUMA "G5108100, G51051167" +County and PUMA "G5108200, G51051080" +County and PUMA "G5108300, G51051206" +County and PUMA "G5108400, G51051084" +County and PUMA "G5300010, G53010600" +County and PUMA "G5300030, G53010600" +County and PUMA "G5300050, G53010701" +County and PUMA "G5300050, G53010702" +County and PUMA "G5300050, G53010703" +County and PUMA "G5300070, G53010300" +County and PUMA "G5300090, G53011900" +County and PUMA "G5300110, G53011101" +County and PUMA "G5300110, G53011102" +County and PUMA "G5300110, G53011103" +County and PUMA "G5300110, G53011104" +County and PUMA "G5300130, G53010600" +County and PUMA "G5300150, G53011200" +County and PUMA "G5300170, G53010300" +County and PUMA "G5300190, G53010400" +County and PUMA "G5300210, G53010701" +County and PUMA "G5300210, G53010703" +County and PUMA "G5300230, G53010600" +County and PUMA "G5300250, G53010800" +County and PUMA "G5300270, G53011300" +County and PUMA "G5300290, G53010200" +County and PUMA "G5300310, G53011900" +County and PUMA "G5300330, G53011601" +County and PUMA "G5300330, G53011602" +County and PUMA "G5300330, G53011603" +County and PUMA "G5300330, G53011604" +County and PUMA "G5300330, G53011605" +County and PUMA "G5300330, G53011606" +County and PUMA "G5300330, G53011607" +County and PUMA "G5300330, G53011608" +County and PUMA "G5300330, G53011609" +County and PUMA "G5300330, G53011610" +County and PUMA "G5300330, G53011611" +County and PUMA "G5300330, G53011612" +County and PUMA "G5300330, G53011613" +County and PUMA "G5300330, G53011614" +County and PUMA "G5300330, G53011615" +County and PUMA "G5300330, G53011616" +County and PUMA "G5300350, G53011801" +County and PUMA "G5300350, G53011802" +County and PUMA "G5300370, G53010800" +County and PUMA "G5300390, G53011000" +County and PUMA "G5300410, G53011000" +County and PUMA "G5300430, G53010600" +County and PUMA "G5300450, G53011300" +County and PUMA "G5300470, G53010400" +County and PUMA "G5300490, G53011200" +County and PUMA "G5300510, G53010400" +County and PUMA "G5300530, G53011501" +County and PUMA "G5300530, G53011502" +County and PUMA "G5300530, G53011503" +County and PUMA "G5300530, G53011504" +County and PUMA "G5300530, G53011505" +County and PUMA "G5300530, G53011506" +County and PUMA "G5300530, G53011507" +County and PUMA "G5300550, G53010200" +County and PUMA "G5300570, G53010200" +County and PUMA "G5300590, G53011000" +County and PUMA "G5300610, G53011701" +County and PUMA "G5300610, G53011702" +County and PUMA "G5300610, G53011703" +County and PUMA "G5300610, G53011704" +County and PUMA "G5300610, G53011705" +County and PUMA "G5300610, G53011706" +County and PUMA "G5300630, G53010501" +County and PUMA "G5300630, G53010502" +County and PUMA "G5300630, G53010503" +County and PUMA "G5300630, G53010504" +County and PUMA "G5300650, G53010400" +County and PUMA "G5300670, G53011401" +County and PUMA "G5300670, G53011402" +County and PUMA "G5300690, G53011200" +County and PUMA "G5300710, G53010703" +County and PUMA "G5300730, G53010100" +County and PUMA "G5300750, G53010600" +County and PUMA "G5300770, G53010901" +County and PUMA "G5300770, G53010902" +County and PUMA "G5400010, G54000500" +County and PUMA "G5400030, G54000400" +County and PUMA "G5400050, G54000900" +County and PUMA "G5400070, G54000600" +County and PUMA "G5400090, G54000100" +County and PUMA "G5400110, G54000800" +County and PUMA "G5400130, G54000600" +County and PUMA "G5400150, G54001000" +County and PUMA "G5400170, G54000200" +County and PUMA "G5400190, G54001200" +County and PUMA "G5400210, G54000600" +County and PUMA "G5400230, G54000500" +County and PUMA "G5400250, G54001100" +County and PUMA "G5400270, G54000400" +County and PUMA "G5400290, G54000100" +County and PUMA "G5400310, G54000500" +County and PUMA "G5400330, G54000200" +County and PUMA "G5400350, G54000600" +County and PUMA "G5400370, G54000400" +County and PUMA "G5400390, G54001000" +County and PUMA "G5400410, G54000500" +County and PUMA "G5400430, G54000900" +County and PUMA "G5400450, G54001300" +County and PUMA "G5400470, G54001300" +County and PUMA "G5400490, G54000200" +County and PUMA "G5400510, G54000100" +County and PUMA "G5400530, G54000800" +County and PUMA "G5400550, G54001200" +County and PUMA "G5400570, G54000400" +County and PUMA "G5400590, G54001300" +County and PUMA "G5400610, G54000300" +County and PUMA "G5400630, G54001100" +County and PUMA "G5400650, G54000400" +County and PUMA "G5400670, G54001100" +County and PUMA "G5400690, G54000100" +County and PUMA "G5400710, G54000500" +County and PUMA "G5400730, G54000700" +County and PUMA "G5400750, G54001100" +County and PUMA "G5400770, G54000300" +County and PUMA "G5400790, G54000900" +County and PUMA "G5400810, G54001200" +County and PUMA "G5400830, G54000500" +County and PUMA "G5400850, G54000600" +County and PUMA "G5400870, G54000600" +County and PUMA "G5400890, G54001100" +County and PUMA "G5400910, G54000200" +County and PUMA "G5400930, G54000500" +County and PUMA "G5400950, G54000600" +County and PUMA "G5400970, G54000500" +County and PUMA "G5400990, G54000800" +County and PUMA "G5401010, G54001100" +County and PUMA "G5401030, G54000600" +County and PUMA "G5401050, G54000700" +County and PUMA "G5401070, G54000700" +County and PUMA "G5401090, G54001300" +County and PUMA "G5500010, G55001601" +County and PUMA "G5500030, G55000100" +County and PUMA "G5500050, G55055101" +County and PUMA "G5500070, G55000100" +County and PUMA "G5500090, G55000200" +County and PUMA "G5500090, G55000300" +County and PUMA "G5500110, G55000700" +County and PUMA "G5500130, G55000100" +County and PUMA "G5500150, G55001401" +County and PUMA "G5500170, G55055101" +County and PUMA "G5500170, G55055103" +County and PUMA "G5500190, G55055101" +County and PUMA "G5500210, G55001000" +County and PUMA "G5500230, G55000700" +County and PUMA "G5500250, G55000101" +County and PUMA "G5500250, G55000102" +County and PUMA "G5500250, G55000103" +County and PUMA "G5500270, G55001001" +County and PUMA "G5500290, G55001300" +County and PUMA "G5500310, G55000100" +County and PUMA "G5500330, G55055102" +County and PUMA "G5500350, G55055103" +County and PUMA "G5500370, G55001300" +County and PUMA "G5500390, G55001401" +County and PUMA "G5500410, G55000600" +County and PUMA "G5500430, G55000800" +County and PUMA "G5500450, G55000800" +County and PUMA "G5500470, G55001400" +County and PUMA "G5500490, G55000800" +County and PUMA "G5500510, G55000100" +County and PUMA "G5500530, G55000700" +County and PUMA "G5500550, G55001001" +County and PUMA "G5500570, G55001601" +County and PUMA "G5500590, G55010000" +County and PUMA "G5500610, G55001301" +County and PUMA "G5500630, G55000900" +County and PUMA "G5500650, G55000800" +County and PUMA "G5500670, G55000600" +County and PUMA "G5500690, G55000600" +County and PUMA "G5500710, G55001301" +County and PUMA "G5500730, G55001600" +County and PUMA "G5500750, G55001300" +County and PUMA "G5500770, G55001400" +County and PUMA "G5500780, G55001400" +County and PUMA "G5500790, G55040101" +County and PUMA "G5500790, G55040301" +County and PUMA "G5500790, G55040701" +County and PUMA "G5500790, G55041001" +County and PUMA "G5500790, G55041002" +County and PUMA "G5500790, G55041003" +County and PUMA "G5500790, G55041004" +County and PUMA "G5500790, G55041005" +County and PUMA "G5500810, G55000700" +County and PUMA "G5500830, G55001300" +County and PUMA "G5500850, G55000600" +County and PUMA "G5500870, G55001500" +County and PUMA "G5500890, G55020000" +County and PUMA "G5500910, G55000700" +County and PUMA "G5500930, G55000700" +County and PUMA "G5500950, G55055101" +County and PUMA "G5500970, G55001601" +County and PUMA "G5500990, G55000100" +County and PUMA "G5501010, G55030000" +County and PUMA "G5501030, G55000800" +County and PUMA "G5501050, G55002400" +County and PUMA "G5501070, G55000100" +County and PUMA "G5501090, G55055102" +County and PUMA "G5501110, G55001000" +County and PUMA "G5501130, G55000100" +County and PUMA "G5501150, G55001400" +County and PUMA "G5501170, G55002500" +County and PUMA "G5501190, G55000100" +County and PUMA "G5501210, G55000700" +County and PUMA "G5501230, G55000700" +County and PUMA "G5501250, G55000600" +County and PUMA "G5501270, G55050000" +County and PUMA "G5501290, G55000100" +County and PUMA "G5501310, G55020000" +County and PUMA "G5501330, G55070101" +County and PUMA "G5501330, G55070201" +County and PUMA "G5501330, G55070301" +County and PUMA "G5501350, G55001400" +County and PUMA "G5501370, G55001400" +County and PUMA "G5501390, G55001501" +County and PUMA "G5501410, G55001601" +County and PUMA "G5600010, G56000300" +County and PUMA "G5600030, G56000100" +County and PUMA "G5600050, G56000200" +County and PUMA "G5600070, G56000400" +County and PUMA "G5600090, G56000400" +County and PUMA "G5600110, G56000200" +County and PUMA "G5600130, G56000500" +County and PUMA "G5600150, G56000200" +County and PUMA "G5600170, G56000500" +County and PUMA "G5600190, G56000200" +County and PUMA "G5600210, G56000300" +County and PUMA "G5600230, G56000100" +County and PUMA "G5600250, G56000400" +County and PUMA "G5600270, G56000200" +County and PUMA "G5600290, G56000100" +County and PUMA "G5600310, G56000200" +County and PUMA "G5600330, G56000100" +County and PUMA "G5600350, G56000500" +County and PUMA "G5600370, G56000500" +County and PUMA "G5600390, G56000100" +County and PUMA "G5600410, G56000500" +County and PUMA "G5600430, G56000200" +County and PUMA "G5600450, G56000200" +County and PUMA "G7200010, G72000401" +County and PUMA "G7200030, G72000101" +County and PUMA "G7200050, G72000102" +County and PUMA "G7200070, G72000602" +County and PUMA "G7200090, G72000602" +County and PUMA "G7200110, G72000101" +County and PUMA "G7200130, G72000301" +County and PUMA "G7200150, G72000701" +County and PUMA "G7200170, G72000301" +County and PUMA "G7200190, G72000601" +County and PUMA "G7200210, G72000801" +County and PUMA "G7200210, G72000802" +County and PUMA "G7200230, G72000201" +County and PUMA "G7200250, G72001001" +County and PUMA "G7200270, G72000302" +County and PUMA "G7200290, G72000902" +County and PUMA "G7200310, G72000901" +County and PUMA "G7200310, G72000902" +County and PUMA "G7200330, G72000803" +County and PUMA "G7200350, G72000602" +County and PUMA "G7200370, G72001101" +County and PUMA "G7200390, G72000501" +County and PUMA "G7200410, G72000602" +County and PUMA "G7200430, G72000403" +County and PUMA "G7200450, G72000601" +County and PUMA "G7200470, G72000601" +County and PUMA "G7200490, G72001101" +County and PUMA "G7200510, G72000502" +County and PUMA "G7200530, G72001101" +County and PUMA "G7200540, G72000301" +County and PUMA "G7200550, G72000401" +County and PUMA "G7200570, G72000701" +County and PUMA "G7200590, G72000401" +County and PUMA "G7200610, G72000803" +County and PUMA "G7200630, G72001002" +County and PUMA "G7200650, G72000302" +County and PUMA "G7200670, G72000202" +County and PUMA "G7200690, G72001102" +County and PUMA "G7200710, G72000102" +County and PUMA "G7200730, G72000402" +County and PUMA "G7200750, G72000403" +County and PUMA "G7200770, G72001002" +County and PUMA "G7200790, G72000201" +County and PUMA "G7200810, G72000302" +County and PUMA "G7200830, G72000202" +County and PUMA "G7200850, G72001002" +County and PUMA "G7200870, G72000902" +County and PUMA "G7200890, G72001101" +County and PUMA "G7200910, G72000501" +County and PUMA "G7200930, G72000202" +County and PUMA "G7200950, G72000701" +County and PUMA "G7200970, G72000202" +County and PUMA "G7200990, G72000101" +County and PUMA "G7201010, G72000501" +County and PUMA "G7201030, G72001102" +County and PUMA "G7201050, G72000601" +County and PUMA "G7201070, G72000601" +County and PUMA "G7201090, G72000701" +County and PUMA "G7201110, G72000401" +County and PUMA "G7201130, G72000402" +County and PUMA "G7201150, G72000102" +County and PUMA "G7201170, G72000101" +County and PUMA "G7201190, G72001101" +County and PUMA "G7201210, G72000201" +County and PUMA "G7201230, G72000701" +County and PUMA "G7201250, G72000201" +County and PUMA "G7201270, G72000804" +County and PUMA "G7201270, G72000805" +County and PUMA "G7201270, G72000806" +County and PUMA "G7201290, G72001002" +County and PUMA "G7201310, G72000101" +County and PUMA "G7201330, G72000403" +County and PUMA "G7201350, G72000503" +County and PUMA "G7201370, G72000502" +County and PUMA "G7201390, G72000902" +County and PUMA "G7201410, G72000302" +County and PUMA "G7201430, G72000503" +County and PUMA "G7201450, G72000501" +County and PUMA "G7201470, G72001101" +County and PUMA "G7201490, G72000403" +County and PUMA "G7201510, G72001102" +County and PUMA "G7201530, G72000401" +Custom State AK +Custom State Others +Dehumidifier "65 pints/day, 50% RH" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=1.8 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 +Dehumidifier "65 pints/day, 50% RH, 2.0 EF" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=2 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 +Dehumidifier "65 pints/day, 60% RH" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=1.8 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.6 dehumidifier_fraction_dehumidification_load_served=1 +Dehumidifier None ResStockArguments dehumidifier_type=none dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=0 dehumidifier_capacity=40 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 +Dishwasher 144 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=144 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=13 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 199 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=199 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=18 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 220 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=220 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=19 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 255 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=255 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=21 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 270 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=270 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=22 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 290 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=290 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=23 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 318 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=318 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=25 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher None ResStockArguments dishwasher_present=false dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=0 dishwasher_label_electric_rate=0 dishwasher_label_gas_rate=0 dishwasher_label_annual_gas_cost=0 dishwasher_label_usage=0 dishwasher_place_setting_capacity=0 +Dishwasher Void +Dishwasher Usage Level 100% Usage ResStockArguments dishwasher_usage_multiplier=1.0 +Dishwasher Usage Level 120% Usage ResStockArguments dishwasher_usage_multiplier=1.2 +Dishwasher Usage Level 80% Usage ResStockArguments dishwasher_usage_multiplier=0.8 +Door Area 20 ft^2 ResStockArguments door_area=20 +Door Area 30 ft^2 ResStockArguments door_area=30 +Door Area 40 ft^2 ResStockArguments door_area=40 +Doors Fiberglass ResStockArguments door_rvalue=5 +Doors Steel ResStockArguments door_rvalue=5 +Doors Wood ResStockArguments door_rvalue=2.1 +Duct Leakage and Insulation "0% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0 ducts_return_leakage_to_outside_value=0 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "10% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "10% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "10% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "10% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "14% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "14% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "14% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "14% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "15% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "15% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "15% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "15% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "20% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "20% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "20% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "20% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "22.5% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "22.5% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "22.5% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "22.5% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "24% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "24% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "24% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "24% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "30% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "30% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "30% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "30% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "34% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "34% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "34% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "34% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "53% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "53% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "53% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "53% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "6% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "6% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "6% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "6% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "7.5% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "7.5% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "7.5% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "7.5% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "85% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "85% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "85% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "85% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation None ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0 ducts_return_leakage_to_outside_value=0 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Location Attic ResStockArguments ducts_supply_location=attic ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=attic ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location Crawlspace ResStockArguments ducts_supply_location=crawlspace ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=crawlspace ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location Garage ResStockArguments ducts_supply_location=garage ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=garage ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location Heated Basement ResStockArguments ducts_supply_location=basement - conditioned ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=basement - conditioned ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location Living Space ResStockArguments ducts_supply_location=conditioned space ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=conditioned space ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location None ResStockArguments ducts_supply_location=conditioned space ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=conditioned space ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=0 +Duct Location Unheated Basement ResStockArguments ducts_supply_location=basement - unconditioned ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=basement - unconditioned ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Eaves 1 ft ResStockArguments geometry_eaves_depth=1 +Eaves 2 ft ResStockArguments geometry_eaves_depth=2 +Eaves 3 ft ResStockArguments geometry_eaves_depth=3 +Eaves None ResStockArguments geometry_eaves_depth=0 +Electric Vehicle "EV, 4000 miles, 0.3 kWh/mi" ResStockArguments misc_plug_loads_vehicle_present=true misc_plug_loads_vehicle_annual_kwh=1481 misc_plug_loads_vehicle_usage_multiplier=1.0 misc_plug_loads_vehicle_2_usage_multiplier=1.0 +Electric Vehicle "EV, 5000 miles, 0.3 kWh/mi" ResStockArguments misc_plug_loads_vehicle_present=true misc_plug_loads_vehicle_annual_kwh=1852 misc_plug_loads_vehicle_usage_multiplier=1.0 misc_plug_loads_vehicle_2_usage_multiplier=1.0 +Electric Vehicle None ResStockArguments misc_plug_loads_vehicle_present=false misc_plug_loads_vehicle_annual_kwh=0 misc_plug_loads_vehicle_usage_multiplier=0 misc_plug_loads_vehicle_2_usage_multiplier=0 +Energystar Climate Zone 2023 North-Central +Energystar Climate Zone 2023 Northern +Energystar Climate Zone 2023 South-Central +Energystar Climate Zone 2023 Southern +Energystar Climate Zone 2023 Void +Federal Poverty Level 0-100% +Federal Poverty Level 100-150% +Federal Poverty Level 150-200% +Federal Poverty Level 200-300% +Federal Poverty Level 300-400% +Federal Poverty Level 400%+ +Federal Poverty Level Not Available +Generation And Emissions Assessment Region AZNMc +Generation And Emissions Assessment Region CAMXc +Generation And Emissions Assessment Region ERCTc +Generation And Emissions Assessment Region FRCCc +Generation And Emissions Assessment Region MROEc +Generation And Emissions Assessment Region MROWc +Generation And Emissions Assessment Region NEWEc +Generation And Emissions Assessment Region NWPPc +Generation And Emissions Assessment Region NYSTc +Generation And Emissions Assessment Region None +Generation And Emissions Assessment Region RFCEc +Generation And Emissions Assessment Region RFCMc +Generation And Emissions Assessment Region RFCWc +Generation And Emissions Assessment Region RMPAc +Generation And Emissions Assessment Region SPNOc +Generation And Emissions Assessment Region SPSOc +Generation And Emissions Assessment Region SRMVc +Generation And Emissions Assessment Region SRMWc +Generation And Emissions Assessment Region SRSOc +Generation And Emissions Assessment Region SRTVc +Generation And Emissions Assessment Region SRVCc +Geometry Attic Type Finished Attic or Cathedral Ceilings ResStockArguments geometry_attic_type=ConditionedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 +Geometry Attic Type None ResStockArguments geometry_attic_type=FlatRoof geometry_roof_type=gable geometry_roof_pitch=6:12 +Geometry Attic Type Unvented Attic ResStockArguments geometry_attic_type=UnventedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 +Geometry Attic Type Vented Attic ResStockArguments geometry_attic_type=VentedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 +Geometry Building Horizontal Location MF Left ResStockArguments geometry_unit_horizontal_location=Left +Geometry Building Horizontal Location MF Middle ResStockArguments geometry_unit_horizontal_location=Middle +Geometry Building Horizontal Location MF None +Geometry Building Horizontal Location MF Not Applicable ResStockArguments geometry_unit_horizontal_location=None +Geometry Building Horizontal Location MF Right ResStockArguments geometry_unit_horizontal_location=Right +Geometry Building Horizontal Location SFA Left ResStockArguments geometry_unit_horizontal_location=Left +Geometry Building Horizontal Location SFA Middle ResStockArguments geometry_unit_horizontal_location=Middle +Geometry Building Horizontal Location SFA None +Geometry Building Horizontal Location SFA Right ResStockArguments geometry_unit_horizontal_location=Right +Geometry Building Level MF Bottom ResStockArguments geometry_unit_level=Bottom +Geometry Building Level MF Middle ResStockArguments geometry_unit_level=Middle +Geometry Building Level MF None +Geometry Building Level MF Top ResStockArguments geometry_unit_level=Top +Geometry Building Number Units MF 10 ResStockArguments geometry_building_num_units=10 +Geometry Building Number Units MF 102 ResStockArguments geometry_building_num_units=102 +Geometry Building Number Units MF 11 ResStockArguments geometry_building_num_units=11 +Geometry Building Number Units MF 116 ResStockArguments geometry_building_num_units=116 +Geometry Building Number Units MF 12 ResStockArguments geometry_building_num_units=12 +Geometry Building Number Units MF 13 ResStockArguments geometry_building_num_units=13 +Geometry Building Number Units MF 14 ResStockArguments geometry_building_num_units=14 +Geometry Building Number Units MF 15 ResStockArguments geometry_building_num_units=15 +Geometry Building Number Units MF 16 ResStockArguments geometry_building_num_units=16 +Geometry Building Number Units MF 17 ResStockArguments geometry_building_num_units=17 +Geometry Building Number Units MF 18 ResStockArguments geometry_building_num_units=18 +Geometry Building Number Units MF 183 ResStockArguments geometry_building_num_units=183 +Geometry Building Number Units MF 19 ResStockArguments geometry_building_num_units=19 +Geometry Building Number Units MF 2 ResStockArguments geometry_building_num_units=2 +Geometry Building Number Units MF 20 ResStockArguments geometry_building_num_units=20 +Geometry Building Number Units MF 21 ResStockArguments geometry_building_num_units=21 +Geometry Building Number Units MF 24 ResStockArguments geometry_building_num_units=24 +Geometry Building Number Units MF 3 ResStockArguments geometry_building_num_units=3 +Geometry Building Number Units MF 30 ResStockArguments geometry_building_num_units=30 +Geometry Building Number Units MF 323 ResStockArguments geometry_building_num_units=323 +Geometry Building Number Units MF 326 ResStockArguments geometry_building_num_units=326 +Geometry Building Number Units MF 36 ResStockArguments geometry_building_num_units=36 +Geometry Building Number Units MF 4 ResStockArguments geometry_building_num_units=4 +Geometry Building Number Units MF 43 ResStockArguments geometry_building_num_units=43 +Geometry Building Number Units MF 5 ResStockArguments geometry_building_num_units=5 +Geometry Building Number Units MF 6 ResStockArguments geometry_building_num_units=6 +Geometry Building Number Units MF 67 ResStockArguments geometry_building_num_units=67 +Geometry Building Number Units MF 7 ResStockArguments geometry_building_num_units=7 +Geometry Building Number Units MF 8 ResStockArguments geometry_building_num_units=8 +Geometry Building Number Units MF 9 ResStockArguments geometry_building_num_units=9 +Geometry Building Number Units MF None +Geometry Building Number Units SFA 10 ResStockArguments geometry_building_num_units=10 +Geometry Building Number Units SFA 12 ResStockArguments geometry_building_num_units=12 +Geometry Building Number Units SFA 144 ResStockArguments geometry_building_num_units=144 +Geometry Building Number Units SFA 15 ResStockArguments geometry_building_num_units=15 +Geometry Building Number Units SFA 16 ResStockArguments geometry_building_num_units=16 +Geometry Building Number Units SFA 2 ResStockArguments geometry_building_num_units=2 +Geometry Building Number Units SFA 20 ResStockArguments geometry_building_num_units=20 +Geometry Building Number Units SFA 24 ResStockArguments geometry_building_num_units=24 +Geometry Building Number Units SFA 3 ResStockArguments geometry_building_num_units=3 +Geometry Building Number Units SFA 30 ResStockArguments geometry_building_num_units=30 +Geometry Building Number Units SFA 36 ResStockArguments geometry_building_num_units=36 +Geometry Building Number Units SFA 4 ResStockArguments geometry_building_num_units=4 +Geometry Building Number Units SFA 5 ResStockArguments geometry_building_num_units=5 +Geometry Building Number Units SFA 50 ResStockArguments geometry_building_num_units=50 +Geometry Building Number Units SFA 6 ResStockArguments geometry_building_num_units=6 +Geometry Building Number Units SFA 60 ResStockArguments geometry_building_num_units=60 +Geometry Building Number Units SFA 7 ResStockArguments geometry_building_num_units=7 +Geometry Building Number Units SFA 8 ResStockArguments geometry_building_num_units=8 +Geometry Building Number Units SFA 9 ResStockArguments geometry_building_num_units=9 +Geometry Building Number Units SFA 90 ResStockArguments geometry_building_num_units=90 +Geometry Building Number Units SFA None +Geometry Building Type ACS 10 to 19 Unit +Geometry Building Type ACS 2 Unit +Geometry Building Type ACS 20 to 49 Unit +Geometry Building Type ACS 3 or 4 Unit +Geometry Building Type ACS 5 to 9 Unit +Geometry Building Type ACS 50 or more Unit +Geometry Building Type ACS Mobile Home +Geometry Building Type ACS Single-Family Attached +Geometry Building Type ACS Single-Family Detached +Geometry Building Type Height "Multifamily with 5+ units, 1-3 stories" +Geometry Building Type Height "Multifamily with 5+ units, 4-7 stories" +Geometry Building Type Height "Multifamily with 5+ units, 8+ stories" +Geometry Building Type Height Mobile Home +Geometry Building Type Height Multifamily with 2-4 Units +Geometry Building Type Height Single-Family Attached +Geometry Building Type Height Single-Family Detached +Geometry Building Type RECS Mobile Home ResStockArguments geometry_unit_type=single-family detached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=1.8 +Geometry Building Type RECS Multi-Family with 2 - 4 Units ResStockArguments geometry_unit_type=apartment unit geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 +Geometry Building Type RECS Multi-Family with 5+ Units ResStockArguments geometry_unit_type=apartment unit geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 +Geometry Building Type RECS Single-Family Attached ResStockArguments geometry_unit_type=single-family attached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 +Geometry Building Type RECS Single-Family Detached ResStockArguments geometry_unit_type=single-family detached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=1.8 +Geometry Floor Area 0-499 ResStockArguments geometry_unit_cfa_bin=0-499 geometry_unit_cfa=auto geometry_garage_protrusion=0.75 +Geometry Floor Area 1000-1499 ResStockArguments geometry_unit_cfa_bin=1000-1499 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 1500-1999 ResStockArguments geometry_unit_cfa_bin=1500-1999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 2000-2499 ResStockArguments geometry_unit_cfa_bin=2000-2499 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 2500-2999 ResStockArguments geometry_unit_cfa_bin=2500-2999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 3000-3999 ResStockArguments geometry_unit_cfa_bin=3000-3999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 4000+ ResStockArguments geometry_unit_cfa_bin=4000+ geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 500-749 ResStockArguments geometry_unit_cfa_bin=500-749 geometry_unit_cfa=auto geometry_garage_protrusion=0.75 +Geometry Floor Area 750-999 ResStockArguments geometry_unit_cfa_bin=750-999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area Bin 0-1499 +Geometry Floor Area Bin 1500-2499 +Geometry Floor Area Bin 2500-3999 +Geometry Floor Area Bin 4000+ +Geometry Foundation Type Ambient ResStockArguments geometry_foundation_type=Ambient geometry_foundation_height=4 geometry_foundation_height_above_grade=4 geometry_rim_joist_height=0 +Geometry Foundation Type Conditioned Crawlspace ResStockArguments geometry_foundation_type=ConditionedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Foundation Type Heated Basement ResStockArguments geometry_foundation_type=ConditionedBasement geometry_foundation_height=8 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Foundation Type Slab ResStockArguments geometry_foundation_type=SlabOnGrade geometry_foundation_height=0 geometry_foundation_height_above_grade=0 geometry_rim_joist_height=0 +Geometry Foundation Type Unheated Basement ResStockArguments geometry_foundation_type=UnconditionedBasement geometry_foundation_height=8 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Foundation Type Unvented Crawlspace ResStockArguments geometry_foundation_type=UnventedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Foundation Type Vented Crawlspace ResStockArguments geometry_foundation_type=VentedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Garage 1 Car ResStockArguments geometry_garage_width=12 geometry_garage_depth=24 geometry_garage_position=Right +Geometry Garage 2 Car ResStockArguments geometry_garage_width=24 geometry_garage_depth=24 geometry_garage_position=Right +Geometry Garage 3 Car ResStockArguments geometry_garage_width=36 geometry_garage_depth=24 geometry_garage_position=Right +Geometry Garage None ResStockArguments geometry_garage_width=0 geometry_garage_depth=24 geometry_garage_position=Right +Geometry Heated Basement No +Geometry Heated Basement Yes +Geometry Number Units ACS bins 10 to 19 Units +Geometry Number Units ACS bins 20 to 49 Units +Geometry Number Units ACS bins 5 to 9 Units +Geometry Number Units ACS bins 50 or more +Geometry Number Units ACS bins <5 +Geometry Space Combination "Mobile Home, Ambient, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Slab, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Slab, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage" +Geometry Space Combination Void +Geometry Stories 1 ResStockArguments geometry_num_floors_above_grade=1 +Geometry Stories 10 ResStockArguments geometry_num_floors_above_grade=10 +Geometry Stories 11 ResStockArguments geometry_num_floors_above_grade=11 +Geometry Stories 12 ResStockArguments geometry_num_floors_above_grade=12 +Geometry Stories 13 ResStockArguments geometry_num_floors_above_grade=13 +Geometry Stories 14 ResStockArguments geometry_num_floors_above_grade=14 +Geometry Stories 15 ResStockArguments geometry_num_floors_above_grade=15 +Geometry Stories 2 ResStockArguments geometry_num_floors_above_grade=2 +Geometry Stories 20 ResStockArguments geometry_num_floors_above_grade=20 +Geometry Stories 21 ResStockArguments geometry_num_floors_above_grade=21 +Geometry Stories 3 ResStockArguments geometry_num_floors_above_grade=3 +Geometry Stories 35 ResStockArguments geometry_num_floors_above_grade=35 +Geometry Stories 4 ResStockArguments geometry_num_floors_above_grade=4 +Geometry Stories 5 ResStockArguments geometry_num_floors_above_grade=5 +Geometry Stories 6 ResStockArguments geometry_num_floors_above_grade=6 +Geometry Stories 7 ResStockArguments geometry_num_floors_above_grade=7 +Geometry Stories 8 ResStockArguments geometry_num_floors_above_grade=8 +Geometry Stories 9 ResStockArguments geometry_num_floors_above_grade=9 +Geometry Stories Low Rise 1 +Geometry Stories Low Rise 2 +Geometry Stories Low Rise 3 +Geometry Stories Low Rise 4+ +Geometry Story Bin 8+ +Geometry Story Bin <8 +Geometry Wall Exterior Finish "Aluminum, Light" ResStockArguments wall_siding_type=aluminum siding wall_color=light exterior_finish_r=0.6 +Geometry Wall Exterior Finish "Brick, Light" ResStockArguments wall_siding_type=brick veneer wall_color=light exterior_finish_r=0.7 +Geometry Wall Exterior Finish "Brick, Medium/Dark" ResStockArguments wall_siding_type=brick veneer wall_color=medium dark exterior_finish_r=0.7 +Geometry Wall Exterior Finish "Fiber-Cement, Light" ResStockArguments wall_siding_type=fiber cement siding wall_color=light exterior_finish_r=0.2 +Geometry Wall Exterior Finish "Shingle, Asbestos, Medium" ResStockArguments wall_siding_type=asbestos siding wall_color=medium exterior_finish_r=0.6 +Geometry Wall Exterior Finish "Shingle, Composition, Medium" ResStockArguments wall_siding_type=composite shingle siding wall_color=medium exterior_finish_r=0.6 +Geometry Wall Exterior Finish "Stucco, Light" ResStockArguments wall_siding_type=stucco wall_color=light exterior_finish_r=0.2 +Geometry Wall Exterior Finish "Stucco, Medium/Dark" ResStockArguments wall_siding_type=stucco wall_color=medium dark exterior_finish_r=0.2 +Geometry Wall Exterior Finish "Vinyl, Light" ResStockArguments wall_siding_type=vinyl siding wall_color=light exterior_finish_r=0.6 +Geometry Wall Exterior Finish "Wood, Medium/Dark" ResStockArguments wall_siding_type=wood siding wall_color=medium dark exterior_finish_r=1.4 +Geometry Wall Exterior Finish None ResStockArguments wall_siding_type=none wall_color=medium exterior_finish_r=0 +Geometry Wall Type Brick +Geometry Wall Type Concrete +Geometry Wall Type Steel Frame +Geometry Wall Type Void +Geometry Wall Type Wood Frame +Ground Thermal Conductivity 0.5 ResStockArguments site_ground_conductivity=0.5 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 0.8 ResStockArguments site_ground_conductivity=0.8 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 1.1 ResStockArguments site_ground_conductivity=1.1 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 1.4 ResStockArguments site_ground_conductivity=1.4 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 1.7 ResStockArguments site_ground_conductivity=1.7 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 2 ResStockArguments site_ground_conductivity=2.0 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 2.3 ResStockArguments site_ground_conductivity=2.3 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 2.6 ResStockArguments site_ground_conductivity=2.6 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +HVAC Cooling Autosizing Factor 40% Oversized ResStockArguments cooling_system_cooling_autosizing_factor=1.4 heat_pump_cooling_autosizing_factor=auto +HVAC Cooling Autosizing Factor None +HVAC Cooling Efficiency "AC, SEER 10" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=10 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 13" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 14" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=14 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 15" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=15 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 18" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=18 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 24.5" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=24.5 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 8" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=8 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "Room AC, EER 10.7" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=10.7 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "Room AC, EER 12.0" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=12 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "Room AC, EER 8.5" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=8.5 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "Room AC, EER 9.8" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=9.8 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency Ducted Heat Pump ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency Evaporative Cooler ResStockArguments cooling_system_type=evaporative cooler cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency Non-Ducted Heat Pump ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency None ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency Shared Cooling +HVAC Cooling Partial Space Conditioning 100% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=1 +HVAC Cooling Partial Space Conditioning 20% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.2 +HVAC Cooling Partial Space Conditioning 40% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.4 +HVAC Cooling Partial Space Conditioning 60% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.6 +HVAC Cooling Partial Space Conditioning 80% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.8 +HVAC Cooling Partial Space Conditioning <10% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.1 +HVAC Cooling Partial Space Conditioning None ResStockArguments cooling_system_fraction_cool_load_served=0 +HVAC Cooling Partial Space Conditioning Void +HVAC Cooling Type Central AC +HVAC Cooling Type Ducted Heat Pump +HVAC Cooling Type Evaporative or Swamp Cooler +HVAC Cooling Type Non-Ducted Heat Pump +HVAC Cooling Type None +HVAC Cooling Type Room AC +HVAC Detailed Performance Data Default ResStockArguments hvac_perf_data_capacity_type=auto hvac_perf_data_heating_outdoor_temperatures=auto hvac_perf_data_heating_min_speed_capacities=auto hvac_perf_data_heating_max_speed_capacities=auto hvac_perf_data_heating_min_speed_cops=auto hvac_perf_data_heating_max_speed_cops=auto hvac_perf_data_cooling_outdoor_temperatures=auto hvac_perf_data_cooling_min_speed_capacities=auto hvac_perf_data_cooling_max_speed_capacities=auto hvac_perf_data_cooling_min_speed_cops=auto hvac_perf_data_cooling_max_speed_cops=auto +HVAC Has Ducts No +HVAC Has Ducts Void +HVAC Has Ducts Yes +HVAC Has Shared System Cooling Only +HVAC Has Shared System Heating Only +HVAC Has Shared System Heating and Cooling +HVAC Has Shared System None +HVAC Has Shared System Void +HVAC Has Zonal Electric Heating No +HVAC Has Zonal Electric Heating Yes +HVAC Heating Autosizing Factor 40% Oversized ResStockArguments heating_system_heating_autosizing_factor=1.4 heating_system_2_heating_autosizing_factor=auto heat_pump_heating_autosizing_factor=auto heat_pump_backup_heating_autosizing_factor=auto +HVAC Heating Autosizing Factor None +HVAC Heating Efficiency "ASHP, SEER 10, 6.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=6.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 10.3, 7.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 11.5, 7.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=11.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 13, 7.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=13 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 13, 8.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=13 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 14, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 14.3, 8.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 15, 8.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 15, 9.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 16, 9.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 17, 8.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 18, 9.3 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 22, 10 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=10 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=22 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 14, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Electric Baseboard, 100% Efficiency" ResStockArguments heating_system_type=ElectricResistance heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Electric Boiler, 100% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Electric Furnace, 100% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Electric Wall Furnace, 100% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 72% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.72 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.76 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.8 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 82% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.82 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 85% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.85 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.9 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 95% AFUE, OAT Reset" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.95 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 96% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.96 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 60% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.6 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 68% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.68 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 72% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.72 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 76% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.76 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 80% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.8 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 85% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.85 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 90% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.9 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 92.5% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.925 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 96% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.96 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Wall/Floor Furnace, 60% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=0.6 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Wall/Floor Furnace, 68% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=0.68 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "GSHP, EER 16.6, COP 3.6" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=3.6 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=16.6 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=vertical geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "GSHP, EER 20.2, COP 4.2" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=4.2 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=20.2 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=vertical geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 14.5, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 14.5, 8.2 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 17, 9.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 17, 9.5 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 18.0, 9.6 HSPF, 60% Conditioned" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.6 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=0.6 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=0.6 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 18.0, 9.6 HSPF, 60% Conditioned, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.6 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=0.6 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=0.6 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 25, 12.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=12.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=25.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 25, 12.7 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=12.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=25.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 29.3, 14 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=14 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=29.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 29.3, 14 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=14 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=29.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 33, 13.3 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=13.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=33.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 33, 13.3 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=13.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=33.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency None ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=6.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency Shared Heating +HVAC Heating Efficiency Void +HVAC Heating Type Ducted Heat Pump +HVAC Heating Type Ducted Heating +HVAC Heating Type Non-Ducted Heat Pump +HVAC Heating Type Non-Ducted Heating +HVAC Heating Type None +HVAC Heating Type And Fuel Electricity ASHP +HVAC Heating Type And Fuel Electricity Baseboard +HVAC Heating Type And Fuel Electricity Electric Boiler +HVAC Heating Type And Fuel Electricity Electric Furnace +HVAC Heating Type And Fuel Electricity Electric Wall Furnace +HVAC Heating Type And Fuel Electricity MSHP +HVAC Heating Type And Fuel Electricity Other +HVAC Heating Type And Fuel Electricity Shared Heating +HVAC Heating Type And Fuel Fuel Oil Fuel Boiler +HVAC Heating Type And Fuel Fuel Oil Fuel Furnace +HVAC Heating Type And Fuel Fuel Oil Fuel Wall/Floor Furnace +HVAC Heating Type And Fuel Fuel Oil Shared Heating +HVAC Heating Type And Fuel Natural Gas Fuel Boiler +HVAC Heating Type And Fuel Natural Gas Fuel Furnace +HVAC Heating Type And Fuel Natural Gas Fuel Wall/Floor Furnace +HVAC Heating Type And Fuel Natural Gas Shared Heating +HVAC Heating Type And Fuel None +HVAC Heating Type And Fuel Other Fuel Fuel Boiler +HVAC Heating Type And Fuel Other Fuel Fuel Furnace +HVAC Heating Type And Fuel Other Fuel Fuel Wall/Floor Furnace +HVAC Heating Type And Fuel Other Fuel Shared Heating +HVAC Heating Type And Fuel Propane Fuel Boiler +HVAC Heating Type And Fuel Propane Fuel Furnace +HVAC Heating Type And Fuel Propane Fuel Wall/Floor Furnace +HVAC Heating Type And Fuel Propane Shared Heating +HVAC Heating Type And Fuel Void +HVAC Secondary Heating Efficiency "Electric Baseboard, 100% Efficiency" ResStockArguments heating_system_2_type=ElectricResistance heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Electric Portable Heater, 100% Efficiency" ResStockArguments heating_system_2_type=SpaceHeater heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 60% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.76 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.8 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.90 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 92.5% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.925 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Fireplace, 60% AFUE" ResStockArguments heating_system_2_type=Fireplace heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Furnace, 60% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Furnace, 76% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.76 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Furnace, 80% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.8 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Furnace, 92.5% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.925 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency None ResStockArguments heating_system_2_type=none heating_system_2_heating_efficiency=0 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency Shared Heating ResStockArguments heating_system_2_type=none heating_system_2_heating_efficiency=0 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Fuel Electricity ResStockArguments heating_system_2_fuel=electricity +HVAC Secondary Heating Fuel Fuel Oil ResStockArguments heating_system_2_fuel=fuel oil +HVAC Secondary Heating Fuel Natural Gas ResStockArguments heating_system_2_fuel=natural gas +HVAC Secondary Heating Fuel None ResStockArguments heating_system_2_fuel=electricity +HVAC Secondary Heating Fuel Other Fuel ResStockArguments heating_system_2_fuel=wood +HVAC Secondary Heating Fuel Propane ResStockArguments heating_system_2_fuel=propane +HVAC Secondary Heating Fuel Wood ResStockArguments heating_system_2_fuel=wood +HVAC Secondary Heating Partial Space Conditioning 0% ResStockArguments heating_system_2_fraction_heat_load_served=0 +HVAC Secondary Heating Partial Space Conditioning 10% ResStockArguments heating_system_2_fraction_heat_load_served=0.1 +HVAC Secondary Heating Partial Space Conditioning 20% ResStockArguments heating_system_2_fraction_heat_load_served=0.2 +HVAC Secondary Heating Partial Space Conditioning 30% ResStockArguments heating_system_2_fraction_heat_load_served=0.3 +HVAC Secondary Heating Partial Space Conditioning 40% ResStockArguments heating_system_2_fraction_heat_load_served=0.4 +HVAC Secondary Heating Partial Space Conditioning 49% ResStockArguments heating_system_2_fraction_heat_load_served=0.49 +HVAC Secondary Heating Partial Space Conditioning None ResStockArguments heating_system_2_fraction_heat_load_served=0 +HVAC Secondary Heating Type Ducted Heating +HVAC Secondary Heating Type Non-Ducted Heating +HVAC Secondary Heating Type None +HVAC Shared Efficiencies "Boiler Baseboards Heating Only, Electricity" ResStockArguments heating_system_type=Shared Boiler w/ Baseboard heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Shared Efficiencies "Boiler Baseboards Heating Only, Fuel" ResStockArguments heating_system_type=Shared Boiler w/ Baseboard heating_system_heating_efficiency=0.78 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Shared Efficiencies "Fan Coil Heating and Cooling, Electricity" ResStockArguments heating_system_type=Shared Boiler w/ Ductless Fan Coil heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Shared Efficiencies "Fan Coil Heating and Cooling, Fuel" ResStockArguments heating_system_type=Shared Boiler w/ Ductless Fan Coil heating_system_heating_efficiency=0.78 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Shared Efficiencies Fan Coil Cooling Only ResStockArguments cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false +HVAC Shared Efficiencies None +HVAC System Is Faulted No +HVAC System Is Faulted Yes +HVAC System Is Scaled No +HVAC System Is Scaled Yes +HVAC System Single Speed AC Airflow 154.8 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=154.8 +HVAC System Single Speed AC Airflow 204.4 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=204.4 +HVAC System Single Speed AC Airflow 254.0 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=254.0 +HVAC System Single Speed AC Airflow 303.5 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=303.5 +HVAC System Single Speed AC Airflow 353.1 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=353.1 +HVAC System Single Speed AC Airflow 402.7 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=402.7 +HVAC System Single Speed AC Airflow 452.3 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=452.3 +HVAC System Single Speed AC Airflow 501.9 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=501.9 +HVAC System Single Speed AC Airflow 551.5 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=551.5 +HVAC System Single Speed AC Airflow 601.0 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=601.0 +HVAC System Single Speed AC Airflow 650.6 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=650.6 +HVAC System Single Speed AC Airflow 700.2 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=700.2 +HVAC System Single Speed AC Airflow None +HVAC System Single Speed AC Charge 0.570 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.570 +HVAC System Single Speed AC Charge 0.709 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.709 +HVAC System Single Speed AC Charge 0.848 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.848 +HVAC System Single Speed AC Charge 0.988 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.988 +HVAC System Single Speed AC Charge 1.127 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.127 +HVAC System Single Speed AC Charge 1.266 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.266 +HVAC System Single Speed AC Charge 1.405 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.405 +HVAC System Single Speed AC Charge None +HVAC System Single Speed ASHP Airflow 154.8 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=154.8 +HVAC System Single Speed ASHP Airflow 204.4 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=204.4 +HVAC System Single Speed ASHP Airflow 254.0 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=254.0 +HVAC System Single Speed ASHP Airflow 303.5 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=303.5 +HVAC System Single Speed ASHP Airflow 353.1 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=353.1 +HVAC System Single Speed ASHP Airflow 402.7 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=402.7 +HVAC System Single Speed ASHP Airflow 452.3 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=452.3 +HVAC System Single Speed ASHP Airflow 501.9 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=501.9 +HVAC System Single Speed ASHP Airflow 551.5 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=551.5 +HVAC System Single Speed ASHP Airflow 601.0 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=601.0 +HVAC System Single Speed ASHP Airflow 650.6 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=650.6 +HVAC System Single Speed ASHP Airflow 700.2 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=700.2 +HVAC System Single Speed ASHP Airflow None +HVAC System Single Speed ASHP Charge 0.570 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.570 +HVAC System Single Speed ASHP Charge 0.709 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.709 +HVAC System Single Speed ASHP Charge 0.848 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.848 +HVAC System Single Speed ASHP Charge 0.988 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.988 +HVAC System Single Speed ASHP Charge 1.127 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.127 +HVAC System Single Speed ASHP Charge 1.266 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.266 +HVAC System Single Speed ASHP Charge 1.405 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.405 +HVAC System Single Speed ASHP Charge None +Has PV No +Has PV Yes +Heat Pump Backup Use Existing System ResStockArguments heat_pump_backup_use_existing_system=true +Heating Fuel Electricity ResStockArguments heating_system_fuel=electricity +Heating Fuel Fuel Oil ResStockArguments heating_system_fuel=fuel oil +Heating Fuel Natural Gas ResStockArguments heating_system_fuel=natural gas +Heating Fuel None ResStockArguments heating_system_fuel=natural gas +Heating Fuel Other Fuel ResStockArguments heating_system_fuel=wood +Heating Fuel Propane ResStockArguments heating_system_fuel=propane +Heating Fuel Wood ResStockArguments heating_system_fuel=wood +Heating Setpoint 55F ResStockArguments hvac_control_heating_weekday_setpoint_temp=55 hvac_control_heating_weekend_setpoint_temp=55 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 60F ResStockArguments hvac_control_heating_weekday_setpoint_temp=60 hvac_control_heating_weekend_setpoint_temp=60 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 62F ResStockArguments hvac_control_heating_weekday_setpoint_temp=62 hvac_control_heating_weekend_setpoint_temp=62 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 63F ResStockArguments hvac_control_heating_weekday_setpoint_temp=63 hvac_control_heating_weekend_setpoint_temp=63 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 64F ResStockArguments hvac_control_heating_weekday_setpoint_temp=64 hvac_control_heating_weekend_setpoint_temp=64 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 65F ResStockArguments hvac_control_heating_weekday_setpoint_temp=65 hvac_control_heating_weekend_setpoint_temp=65 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 66F ResStockArguments hvac_control_heating_weekday_setpoint_temp=66 hvac_control_heating_weekend_setpoint_temp=66 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 67F ResStockArguments hvac_control_heating_weekday_setpoint_temp=67 hvac_control_heating_weekend_setpoint_temp=67 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 68F ResStockArguments hvac_control_heating_weekday_setpoint_temp=68 hvac_control_heating_weekend_setpoint_temp=68 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 69F ResStockArguments hvac_control_heating_weekday_setpoint_temp=69 hvac_control_heating_weekend_setpoint_temp=69 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 70F ResStockArguments hvac_control_heating_weekday_setpoint_temp=70 hvac_control_heating_weekend_setpoint_temp=70 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 71F ResStockArguments hvac_control_heating_weekday_setpoint_temp=71 hvac_control_heating_weekend_setpoint_temp=71 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 71F w/ Building America season ResStockArguments hvac_control_heating_weekday_setpoint_temp=71 hvac_control_heating_weekend_setpoint_temp=71 use_auto_heating_season=true hvac_control_heating_season_period=auto +Heating Setpoint 72F ResStockArguments hvac_control_heating_weekday_setpoint_temp=72 hvac_control_heating_weekend_setpoint_temp=72 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 73F ResStockArguments hvac_control_heating_weekday_setpoint_temp=73 hvac_control_heating_weekend_setpoint_temp=73 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 74F ResStockArguments hvac_control_heating_weekday_setpoint_temp=74 hvac_control_heating_weekend_setpoint_temp=74 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 75F ResStockArguments hvac_control_heating_weekday_setpoint_temp=75 hvac_control_heating_weekend_setpoint_temp=75 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 76F ResStockArguments hvac_control_heating_weekday_setpoint_temp=76 hvac_control_heating_weekend_setpoint_temp=76 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 78F ResStockArguments hvac_control_heating_weekday_setpoint_temp=78 hvac_control_heating_weekend_setpoint_temp=78 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 80F ResStockArguments hvac_control_heating_weekday_setpoint_temp=80 hvac_control_heating_weekend_setpoint_temp=80 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint Has Offset No +Heating Setpoint Has Offset Yes +Heating Setpoint Offset Magnitude 0F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=0 hvac_control_heating_weekend_setpoint_offset_magnitude=0 +Heating Setpoint Offset Magnitude 12F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=12 hvac_control_heating_weekend_setpoint_offset_magnitude=12 +Heating Setpoint Offset Magnitude 3F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=3 hvac_control_heating_weekend_setpoint_offset_magnitude=3 +Heating Setpoint Offset Magnitude 6F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=6 hvac_control_heating_weekend_setpoint_offset_magnitude=6 +Heating Setpoint Offset Period Day ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day and Night ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1" +Heating Setpoint Offset Period Day and Night +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1" +Heating Setpoint Offset Period Day and Night +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Heating Setpoint Offset Period Day and Night +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Heating Setpoint Offset Period Day and Night +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0" +Heating Setpoint Offset Period Day and Night +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0" +Heating Setpoint Offset Period Day and Night -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1" +Heating Setpoint Offset Period Day and Night -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1" +Heating Setpoint Offset Period Day and Night -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1" +Heating Setpoint Offset Period Day and Night -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1" +Heating Setpoint Offset Period Day and Night -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" +Heating Setpoint Offset Period Night ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" +Heating Setpoint Offset Period Night +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" +Heating Setpoint Offset Period Night +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Night +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Night +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Night +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Night -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" +Heating Setpoint Offset Period Night -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" +Heating Setpoint Offset Period Night -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" +Heating Setpoint Offset Period Night -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" +Heating Setpoint Offset Period Night -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" +Heating Setpoint Offset Period None ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Holiday Lighting No Exterior Use ResStockArguments holiday_lighting_present=false holiday_lighting_daily_kwh=0 holiday_lighting_period=auto +Holiday Lighting None ResStockArguments holiday_lighting_present=false holiday_lighting_daily_kwh=0 holiday_lighting_period=auto +Hot Water Distribution "R-2, Demand" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=presence sensor demand control hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Distribution "R-2, Timer" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=timer hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Distribution "R-5, Timer" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=timer hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=5 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Distribution R-2 ResStockArguments hot_water_distribution_system_type=Standard hot_water_distribution_standard_piping_length=auto hot_water_distribution_recirc_control_type=no control hot_water_distribution_recirc_piping_length=0 hot_water_distribution_recirc_branch_piping_length=0 hot_water_distribution_recirc_pump_power=0 hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Distribution Uninsulated ResStockArguments hot_water_distribution_system_type=Standard hot_water_distribution_standard_piping_length=auto hot_water_distribution_recirc_control_type=no control hot_water_distribution_recirc_piping_length=0 hot_water_distribution_recirc_branch_piping_length=0 hot_water_distribution_recirc_pump_power=0 hot_water_distribution_pipe_r=0 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Fixtures "100% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=1.31 +Hot Water Fixtures "200% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=2.62 +Hot Water Fixtures "50% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=0.65 +Hot Water Fixtures 100% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.31 +Hot Water Fixtures 110% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.44 +Hot Water Fixtures 120% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.57 +Hot Water Fixtures 130% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.70 +Hot Water Fixtures 140% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.83 +Hot Water Fixtures 150% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.96 +Hot Water Fixtures 160% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=2.09 +Hot Water Fixtures 170% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=2.22 +Hot Water Fixtures 180% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=2.35 +Hot Water Fixtures 190% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=2.49 +Hot Water Fixtures 200% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=2.62 +Hot Water Fixtures 40% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.52 +Hot Water Fixtures 50% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.65 +Hot Water Fixtures 60% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.78 +Hot Water Fixtures 70% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.92 +Hot Water Fixtures 80% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.05 +Hot Water Fixtures 90% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.18 +Household Has Tribal Persons No +Household Has Tribal Persons Not Available +Household Has Tribal Persons Yes +ISO RTO Region CAISO +ISO RTO Region ERCOT +ISO RTO Region MISO +ISO RTO Region NEISO +ISO RTO Region NYISO +ISO RTO Region None +ISO RTO Region PJM +ISO RTO Region SPP +Income 10000-14999 +Income 100000-119999 +Income 120000-139999 +Income 140000-159999 +Income 15000-19999 +Income 160000-179999 +Income 180000-199999 +Income 20000-24999 +Income 200000+ +Income 25000-29999 +Income 30000-34999 +Income 35000-39999 +Income 40000-44999 +Income 45000-49999 +Income 50000-59999 +Income 60000-69999 +Income 70000-79999 +Income 80000-99999 +Income <10000 +Income Not Available +Income RECS2015 100000-119999 +Income RECS2015 120000-139999 +Income RECS2015 140000+ +Income RECS2015 20000-39999 +Income RECS2015 40000-59999 +Income RECS2015 60000-79999 +Income RECS2015 80000-99999 +Income RECS2015 <20000 +Income RECS2015 Not Available +Income RECS2020 100000-149999 +Income RECS2020 150000+ +Income RECS2020 20000-39999 +Income RECS2020 40000-59999 +Income RECS2020 60000-99999 +Income RECS2020 <20000 +Income RECS2020 Not Available +Infiltration "7 ACH50, 0.5 Shelter Coefficient" ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 0.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 0.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 0.75 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.75 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 1 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=1 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 1.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=1.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 10 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=10 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 11.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=11.25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 15 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=15 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 18.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=18.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 2 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=2 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 2.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=2.25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 20 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=20 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 3 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=3 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 3.75 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=3.75 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 30 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=30 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 4 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=4 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 4.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=4.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 40 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=40 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 5.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=5.25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 50 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=50 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 6 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=6 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 7 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 7.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 8 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=8 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration Reduction 15% ResStockArguments air_leakage_percent_reduction=15 +Infiltration Reduction 20% ResStockArguments air_leakage_percent_reduction=20 +Infiltration Reduction 25% ResStockArguments air_leakage_percent_reduction=25 +Insulation Ceiling None ResStockArguments ceiling_assembly_r=0 ceiling_insulation_r=0 +Insulation Ceiling R-13 ResStockArguments ceiling_assembly_r=14.6 ceiling_insulation_r=13 +Insulation Ceiling R-19 ResStockArguments ceiling_assembly_r=20.6 ceiling_insulation_r=19 +Insulation Ceiling R-30 ResStockArguments ceiling_assembly_r=31.6 ceiling_insulation_r=30 +Insulation Ceiling R-38 ResStockArguments ceiling_assembly_r=39.6 ceiling_insulation_r=38 +Insulation Ceiling R-49 ResStockArguments ceiling_assembly_r=50.6 ceiling_insulation_r=49 +Insulation Ceiling R-60 ResStockArguments ceiling_assembly_r=61.6 ceiling_insulation_r=60 +Insulation Ceiling R-7 ResStockArguments ceiling_assembly_r=8.7 ceiling_insulation_r=7 +Insulation Ceiling Uninsulated ResStockArguments ceiling_assembly_r=2.1 ceiling_insulation_r=0 +Insulation Floor Ceiling R-13 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=17.8 floor_over_garage_assembly_r=17.8 +Insulation Floor Ceiling R-19 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=22.6 floor_over_garage_assembly_r=22.6 +Insulation Floor Ceiling R-30 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=30.3 floor_over_garage_assembly_r=30.3 +Insulation Floor Ceiling R-38 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=35.1 floor_over_garage_assembly_r=35.1 +Insulation Floor None ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=0 floor_over_garage_assembly_r=5.3 +Insulation Floor Uninsulated ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=5.3 floor_over_garage_assembly_r=5.3 +Insulation Foundation Wall "Wall R-10, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=10 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto +Insulation Foundation Wall "Wall R-13, Interior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=13 foundation_wall_insulation_location=interior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto +Insulation Foundation Wall "Wall R-15, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=15 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto +Insulation Foundation Wall "Wall R-5, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=5 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto +Insulation Foundation Wall None ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=0 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=0 foundation_wall_assembly_r=auto +Insulation Foundation Wall Uninsulated ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=0 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=0 foundation_wall_assembly_r=auto +Insulation Rim Joist "R-10, Exterior" ResStockArguments rim_joist_continuous_exterior_r=10 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Rim Joist "R-13, Interior" ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=13 rim_joist_assembly_interior_r=10.4 rim_joist_assembly_r=auto +Insulation Rim Joist "R-15, Exterior" ResStockArguments rim_joist_continuous_exterior_r=15 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Rim Joist "R-5, Exterior" ResStockArguments rim_joist_continuous_exterior_r=5 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Rim Joist None ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Rim Joist Uninsulated ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Roof "Finished, R-13" ResStockArguments roof_assembly_r=14.3 +Insulation Roof "Finished, R-19" ResStockArguments roof_assembly_r=21.2 +Insulation Roof "Finished, R-30" ResStockArguments roof_assembly_r=29.7 +Insulation Roof "Finished, R-38" ResStockArguments roof_assembly_r=36.5 +Insulation Roof "Finished, R-49" ResStockArguments roof_assembly_r=47.0 +Insulation Roof "Finished, R-7" ResStockArguments roof_assembly_r=10.2 +Insulation Roof "Finished, Uninsulated" ResStockArguments roof_assembly_r=3.7 +Insulation Roof "Unfinished, Uninsulated" ResStockArguments roof_assembly_r=2.3 +Insulation Sheathing R-10 ResStockArguments wall_continuous_exterior_r=10 +Insulation Sheathing R-15 ResStockArguments wall_continuous_exterior_r=15 +Insulation Sheathing R-5 ResStockArguments wall_continuous_exterior_r=5 +Insulation Slab "2ft R10 Perimeter, Vertical" ResStockArguments slab_perimeter_insulation_r=10 slab_perimeter_depth=2 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "2ft R10 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=10 slab_under_width=2 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "2ft R5 Perimeter, Vertical" ResStockArguments slab_perimeter_insulation_r=5 slab_perimeter_depth=2 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "2ft R5 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=5 slab_under_width=2 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "4ft R5 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=5 slab_under_width=4 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "R10 Whole Slab, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=10 slab_under_width=999 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab None ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab Uninsulated ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Wall "Brick, 12-in, 3-wythe, R-11" ResStockArguments wall_type=StructuralBrick wall_assembly_r=13.3 +Insulation Wall "Brick, 12-in, 3-wythe, R-15" ResStockArguments wall_type=StructuralBrick wall_assembly_r=15.9 +Insulation Wall "Brick, 12-in, 3-wythe, R-19" ResStockArguments wall_type=StructuralBrick wall_assembly_r=18.3 +Insulation Wall "Brick, 12-in, 3-wythe, R-7" ResStockArguments wall_type=StructuralBrick wall_assembly_r=10.3 +Insulation Wall "Brick, 12-in, 3-wythe, Uninsulated" ResStockArguments wall_type=StructuralBrick wall_assembly_r=4.9 +Insulation Wall "CMU, 12-in Hollow" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=4.9 +Insulation Wall "CMU, 12-in Hollow, R-10" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=12.9 +Insulation Wall "CMU, 6-in Concrete Filled" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=3.7 +Insulation Wall "CMU, 6-in Concrete-Filled, R-10" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=11.4 +Insulation Wall "CMU, 6-in Hollow, R-11" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=12.4 +Insulation Wall "CMU, 6-in Hollow, R-15" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=15 +Insulation Wall "CMU, 6-in Hollow, R-19" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=17.4 +Insulation Wall "CMU, 6-in Hollow, R-7" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=9.4 +Insulation Wall "CMU, 6-in Hollow, Uninsulated" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=4 +Insulation Wall "Double Wood Stud, R-33" ResStockArguments wall_type=DoubleWoodStud wall_assembly_r=28.1 +Insulation Wall "Double Wood Stud, R-45, Grade 3" ResStockArguments wall_type=DoubleWoodStud wall_assembly_r=25.1 +Insulation Wall "Generic, 10-in Grid ICF" ResStockArguments wall_type=WoodStud wall_assembly_r=12.4 +Insulation Wall "Generic, T-Mass Wall w/Metal Ties" ResStockArguments wall_type=WoodStud wall_assembly_r=9 +Insulation Wall "ICF, 2-in EPS, 12-in Concrete, 2-in EPS" ResStockArguments wall_type=InsulatedConcreteForms wall_assembly_r=22.5 +Insulation Wall "ICF, 2-in EPS, 4-in Concrete, 2-in EPS" ResStockArguments wall_type=InsulatedConcreteForms wall_assembly_r=20.4 +Insulation Wall "SIP, 3.6 in EPS Core, OSB int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=15.5 +Insulation Wall "SIP, 9.4 in EPS Core, Gypsum int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=35.8 +Insulation Wall "SIP, 9.4 in EPS Core, OSB int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=36 +Insulation Wall "Steel Stud, R-13" ResStockArguments wall_type=SteelFrame wall_assembly_r=7.9 +Insulation Wall "Steel Stud, R-25, Grade 3" ResStockArguments wall_type=SteelFrame wall_assembly_r=10.4 +Insulation Wall "Steel Stud, Uninsulated" ResStockArguments wall_type=SteelFrame wall_assembly_r=3 +Insulation Wall "Wood Stud, R-11" ResStockArguments wall_type=WoodStud wall_assembly_r=10.3 +Insulation Wall "Wood Stud, R-11, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=15.3 +Insulation Wall "Wood Stud, R-13" ResStockArguments wall_type=WoodStud wall_assembly_r=11.3 +Insulation Wall "Wood Stud, R-13, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=16.3 +Insulation Wall "Wood Stud, R-15" ResStockArguments wall_type=WoodStud wall_assembly_r=12.1 +Insulation Wall "Wood Stud, R-15, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=17.1 +Insulation Wall "Wood Stud, R-19" ResStockArguments wall_type=WoodStud wall_assembly_r=15.4 +Insulation Wall "Wood Stud, R-19, Grade 2" ResStockArguments wall_type=WoodStud wall_assembly_r=14.5 +Insulation Wall "Wood Stud, R-19, Grade 2, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=19.5 +Insulation Wall "Wood Stud, R-19, Grade 3" ResStockArguments wall_type=WoodStud wall_assembly_r=13.4 +Insulation Wall "Wood Stud, R-19, Grade 3, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=18.4 +Insulation Wall "Wood Stud, R-19, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=20.4 +Insulation Wall "Wood Stud, R-23 Closed Cell Spray Foam, 2x4, 16 in o.c." ResStockArguments wall_type=WoodStud wall_assembly_r=14.7 +Insulation Wall "Wood Stud, R-23 Closed Cell Spray Foam, 2x4, 16 in o.c., R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=19.7 +Insulation Wall "Wood Stud, R-36" ResStockArguments wall_type=WoodStud wall_assembly_r=22.3 +Insulation Wall "Wood Stud, R-36, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=27.3 +Insulation Wall "Wood Stud, R-7" ResStockArguments wall_type=WoodStud wall_assembly_r=8.7 +Insulation Wall "Wood Stud, R-7, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=13.7 +Insulation Wall "Wood Stud, Uninsulated" ResStockArguments wall_type=WoodStud wall_assembly_r=3.4 +Insulation Wall "Wood Stud, Uninsulated, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=8.4 +Insulation Wall Void +Interior Shading "Summer = 0.5, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.5 window_interior_shading_winter=0.7 +Interior Shading "Summer = 0.5, Winter = 0.95" ResStockArguments window_interior_shading_summer=0.5 window_interior_shading_winter=0.95 +Interior Shading "Summer = 0.6, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.6 window_interior_shading_winter=0.7 +Interior Shading "Summer = 0.7, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.7 +Interior Shading "Summer = 0.7, Winter = 0.85" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.85 +Interior Shading "Summer = 0.7, Winter = 0.95" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.95 +Lighting 100% CFL ResStockArguments lighting_present=true lighting_interior_fraction_cfl=1 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=1 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=1 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 +Lighting 100% Incandescent ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 +Lighting 100% LED ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=1 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=1 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=1 +Lighting 20% LED ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0.2 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0.2 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0.2 +Lighting 60% CFL ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0.6 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0.6 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0.6 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 +Lighting None ResStockArguments lighting_present=false lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 +Lighting Interior Use 100% Usage ResStockArguments lighting_interior_usage_multiplier=1.0 +Lighting Interior Use 95% Usage ResStockArguments lighting_interior_usage_multiplier=0.95 +Lighting Interior Use None ResStockArguments lighting_interior_usage_multiplier=0.0 +Lighting Other Use 100% Usage ResStockArguments lighting_exterior_usage_multiplier=1.0 lighting_garage_usage_multiplier=1.0 +Lighting Other Use 95% Usage ResStockArguments lighting_exterior_usage_multiplier=0.95 lighting_garage_usage_multiplier=0.95 +Lighting Other Use None ResStockArguments lighting_exterior_usage_multiplier=0.0 lighting_garage_usage_multiplier=0.0 +Location Region CR02 +Location Region CR03 +Location Region CR04 +Location Region CR05 +Location Region CR06 +Location Region CR07 +Location Region CR08 +Location Region CR09 +Location Region CR10 +Location Region CR11 +Location Region CRAK +Location Region CRHI +Mechanical Ventilation "ERV, 72%" ResStockArguments mech_vent_fan_type=energy recovery ventilator mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0.48 mech_vent_sensible_recovery_efficiency=0.72 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Mechanical Ventilation "HRV, 60%" ResStockArguments mech_vent_fan_type=heat recovery ventilator mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0.6 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Mechanical Ventilation Exhaust ResStockArguments mech_vent_fan_type=exhaust only mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Mechanical Ventilation None ResStockArguments mech_vent_fan_type=none mech_vent_flow_rate=0 mech_vent_hours_in_operation=0 mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=0 mech_vent_num_units_served=0 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Mechanical Ventilation Supply ResStockArguments mech_vent_fan_type=supply only mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Metropolitan and Micropolitan Statistical Area "Aberdeen, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Aberdeen, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Abilene, TX MSA" +Metropolitan and Micropolitan Statistical Area "Ada, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Adrian, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Akron, OH MSA" +Metropolitan and Micropolitan Statistical Area "Alamogordo, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Albany, GA MSA" +Metropolitan and Micropolitan Statistical Area "Albany, OR MSA" +Metropolitan and Micropolitan Statistical Area "Albany-Schenectady-Troy, NY MSA" +Metropolitan and Micropolitan Statistical Area "Albemarle, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Albert Lea, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Albertville, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Albuquerque, NM MSA" +Metropolitan and Micropolitan Statistical Area "Alexandria, LA MSA" +Metropolitan and Micropolitan Statistical Area "Alexandria, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Alice, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Allentown-Bethlehem-Easton, PA-NJ MSA" +Metropolitan and Micropolitan Statistical Area "Alma, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Alpena, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Altoona, PA MSA" +Metropolitan and Micropolitan Statistical Area "Altus, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Amarillo, TX MSA" +Metropolitan and Micropolitan Statistical Area "Americus, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Ames, IA MSA" +Metropolitan and Micropolitan Statistical Area "Amsterdam, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Anchorage, AK MSA" +Metropolitan and Micropolitan Statistical Area "Andrews, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Angola, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Ann Arbor, MI MSA" +Metropolitan and Micropolitan Statistical Area "Anniston-Oxford-Jacksonville, AL MSA" +Metropolitan and Micropolitan Statistical Area "Appleton, WI MSA" +Metropolitan and Micropolitan Statistical Area "Arcadia, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Ardmore, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Arkadelphia, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Arkansas City-Winfield, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Asheville, NC MSA" +Metropolitan and Micropolitan Statistical Area "Ashland, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Ashtabula, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Astoria, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Atchison, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Athens, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Athens, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Athens, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Athens-Clarke County, GA MSA" +Metropolitan and Micropolitan Statistical Area "Atlanta-Sandy Springs-Roswell, GA MSA" +Metropolitan and Micropolitan Statistical Area "Atlantic City-Hammonton, NJ MSA" +Metropolitan and Micropolitan Statistical Area "Auburn, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Auburn, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Auburn-Opelika, AL MSA" +Metropolitan and Micropolitan Statistical Area "Augusta-Richmond County, GA-SC MSA" +Metropolitan and Micropolitan Statistical Area "Augusta-Waterville, ME MicroSA" +Metropolitan and Micropolitan Statistical Area "Austin, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Austin-Round Rock, TX MSA" +Metropolitan and Micropolitan Statistical Area "Bainbridge, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Bakersfield, CA MSA" +Metropolitan and Micropolitan Statistical Area "Baltimore-Columbia-Towson, MD MSA" +Metropolitan and Micropolitan Statistical Area "Bangor, ME MSA" +Metropolitan and Micropolitan Statistical Area "Baraboo, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Bardstown, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Barnstable Town, MA MSA" +Metropolitan and Micropolitan Statistical Area "Barre, VT MicroSA" +Metropolitan and Micropolitan Statistical Area "Bartlesville, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Bastrop, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Batavia, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Batesville, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Baton Rouge, LA MSA" +Metropolitan and Micropolitan Statistical Area "Battle Creek, MI MSA" +Metropolitan and Micropolitan Statistical Area "Bay City, MI MSA" +Metropolitan and Micropolitan Statistical Area "Bay City, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Beatrice, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Beaumont-Port Arthur, TX MSA" +Metropolitan and Micropolitan Statistical Area "Beaver Dam, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Beckley, WV MSA" +Metropolitan and Micropolitan Statistical Area "Bedford, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Beeville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Bellefontaine, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Bellingham, WA MSA" +Metropolitan and Micropolitan Statistical Area "Bemidji, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Bend-Redmond, OR MSA" +Metropolitan and Micropolitan Statistical Area "Bennettsville, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Bennington, VT MicroSA" +Metropolitan and Micropolitan Statistical Area "Berlin, NH-VT MicroSA" +Metropolitan and Micropolitan Statistical Area "Big Rapids, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Big Spring, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Big Stone Gap, VA MicroSA" +Metropolitan and Micropolitan Statistical Area "Billings, MT MSA" +Metropolitan and Micropolitan Statistical Area "Binghamton, NY MSA" +Metropolitan and Micropolitan Statistical Area "Birmingham-Hoover, AL MSA" +Metropolitan and Micropolitan Statistical Area "Bismarck, ND MSA" +Metropolitan and Micropolitan Statistical Area "Blackfoot, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Blacksburg-Christiansburg-Radford, VA MSA" +Metropolitan and Micropolitan Statistical Area "Bloomington, IL MSA" +Metropolitan and Micropolitan Statistical Area "Bloomington, IN MSA" +Metropolitan and Micropolitan Statistical Area "Bloomsburg-Berwick, PA MSA" +Metropolitan and Micropolitan Statistical Area "Bluefield, WV-VA MicroSA" +Metropolitan and Micropolitan Statistical Area "Blytheville, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Bogalusa, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Boise City, ID MSA" +Metropolitan and Micropolitan Statistical Area "Boone, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Boone, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Borger, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Boston-Cambridge-Newton, MA-NH MSA" +Metropolitan and Micropolitan Statistical Area "Boulder, CO MSA" +Metropolitan and Micropolitan Statistical Area "Bowling Green, KY MSA" +Metropolitan and Micropolitan Statistical Area "Bozeman, MT MicroSA" +Metropolitan and Micropolitan Statistical Area "Bradford, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Brainerd, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Branson, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Breckenridge, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Bremerton-Silverdale, WA MSA" +Metropolitan and Micropolitan Statistical Area "Brenham, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Brevard, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Bridgeport-Stamford-Norwalk, CT MSA" +Metropolitan and Micropolitan Statistical Area "Brookhaven, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Brookings, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Brookings, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Brownsville-Harlingen, TX MSA" +Metropolitan and Micropolitan Statistical Area "Brownwood, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Brunswick, GA MSA" +Metropolitan and Micropolitan Statistical Area "Bucyrus, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Buffalo-Cheektowaga-Niagara Falls, NY MSA" +Metropolitan and Micropolitan Statistical Area "Burley, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Burlington, IA-IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Burlington, NC MSA" +Metropolitan and Micropolitan Statistical Area "Burlington-South Burlington, VT MSA" +Metropolitan and Micropolitan Statistical Area "Butte-Silver Bow, MT MicroSA" +Metropolitan and Micropolitan Statistical Area "Cadillac, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Calhoun, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "California-Lexington Park, MD MSA" +Metropolitan and Micropolitan Statistical Area "Cambridge, MD MicroSA" +Metropolitan and Micropolitan Statistical Area "Cambridge, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Camden, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Campbellsville, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Canon City, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Canton, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Canton-Massillon, OH MSA" +Metropolitan and Micropolitan Statistical Area "Cape Coral-Fort Myers, FL MSA" +Metropolitan and Micropolitan Statistical Area "Cape Girardeau, MO-IL MSA" +Metropolitan and Micropolitan Statistical Area "Carbondale-Marion, IL MSA" +Metropolitan and Micropolitan Statistical Area "Carlsbad-Artesia, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Carson City, NV MSA" +Metropolitan and Micropolitan Statistical Area "Casper, WY MSA" +Metropolitan and Micropolitan Statistical Area "Cedar City, UT MicroSA" +Metropolitan and Micropolitan Statistical Area "Cedar Rapids, IA MSA" +Metropolitan and Micropolitan Statistical Area "Cedartown, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Celina, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Centralia, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Centralia, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Chambersburg-Waynesboro, PA MSA" +Metropolitan and Micropolitan Statistical Area "Champaign-Urbana, IL MSA" +Metropolitan and Micropolitan Statistical Area "Charleston, WV MSA" +Metropolitan and Micropolitan Statistical Area "Charleston-Mattoon, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Charleston-North Charleston, SC MSA" +Metropolitan and Micropolitan Statistical Area "Charlotte-Concord-Gastonia, NC-SC MSA" +Metropolitan and Micropolitan Statistical Area "Charlottesville, VA MSA" +Metropolitan and Micropolitan Statistical Area "Chattanooga, TN-GA MSA" +Metropolitan and Micropolitan Statistical Area "Cheyenne, WY MSA" +Metropolitan and Micropolitan Statistical Area "Chicago-Naperville-Elgin, IL-IN-WI MSA" +Metropolitan and Micropolitan Statistical Area "Chico, CA MSA" +Metropolitan and Micropolitan Statistical Area "Chillicothe, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Cincinnati, OH-KY-IN MSA" +Metropolitan and Micropolitan Statistical Area "Claremont-Lebanon, NH-VT MicroSA" +Metropolitan and Micropolitan Statistical Area "Clarksburg, WV MicroSA" +Metropolitan and Micropolitan Statistical Area "Clarksdale, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Clarksville, TN-KY MSA" +Metropolitan and Micropolitan Statistical Area "Clearlake, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Cleveland, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Cleveland, TN MSA" +Metropolitan and Micropolitan Statistical Area "Cleveland-Elyria, OH MSA" +Metropolitan and Micropolitan Statistical Area "Clewiston, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Clinton, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Clovis, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Coeur d'Alene, ID MSA" +Metropolitan and Micropolitan Statistical Area "Coffeyville, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Coldwater, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "College Station-Bryan, TX MSA" +Metropolitan and Micropolitan Statistical Area "Colorado Springs, CO MSA" +Metropolitan and Micropolitan Statistical Area "Columbia, MO MSA" +Metropolitan and Micropolitan Statistical Area "Columbia, SC MSA" +Metropolitan and Micropolitan Statistical Area "Columbus, GA-AL MSA" +Metropolitan and Micropolitan Statistical Area "Columbus, IN MSA" +Metropolitan and Micropolitan Statistical Area "Columbus, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Columbus, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Columbus, OH MSA" +Metropolitan and Micropolitan Statistical Area "Concord, NH MicroSA" +Metropolitan and Micropolitan Statistical Area "Connersville, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Cookeville, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Coos Bay, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Cordele, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Corinth, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Cornelia, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Corning, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Corpus Christi, TX MSA" +Metropolitan and Micropolitan Statistical Area "Corsicana, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Cortland, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Corvallis, OR MSA" +Metropolitan and Micropolitan Statistical Area "Coshocton, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Craig, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Crawfordsville, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Crescent City, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Crestview-Fort Walton Beach-Destin, FL MSA" +Metropolitan and Micropolitan Statistical Area "Crossville, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Cullman, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Cullowhee, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Cumberland, MD-WV MSA" +Metropolitan and Micropolitan Statistical Area "Dallas-Fort Worth-Arlington, TX MSA" +Metropolitan and Micropolitan Statistical Area "Dalton, GA MSA" +Metropolitan and Micropolitan Statistical Area "Danville, IL MSA" +Metropolitan and Micropolitan Statistical Area "Danville, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Danville, VA MicroSA" +Metropolitan and Micropolitan Statistical Area "Daphne-Fairhope-Foley, AL MSA" +Metropolitan and Micropolitan Statistical Area "Davenport-Moline-Rock Island, IA-IL MSA" +Metropolitan and Micropolitan Statistical Area "Dayton, OH MSA" +Metropolitan and Micropolitan Statistical Area "Dayton, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "DeRidder, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Decatur, AL MSA" +Metropolitan and Micropolitan Statistical Area "Decatur, IL MSA" +Metropolitan and Micropolitan Statistical Area "Decatur, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Defiance, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Del Rio, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Deltona-Daytona Beach-Ormond Beach, FL MSA" +Metropolitan and Micropolitan Statistical Area "Deming, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Denver-Aurora-Lakewood, CO MSA" +Metropolitan and Micropolitan Statistical Area "Des Moines-West Des Moines, IA MSA" +Metropolitan and Micropolitan Statistical Area "Detroit-Warren-Dearborn, MI MSA" +Metropolitan and Micropolitan Statistical Area "Dickinson, ND MicroSA" +Metropolitan and Micropolitan Statistical Area "Dixon, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Dodge City, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Dothan, AL MSA" +Metropolitan and Micropolitan Statistical Area "Douglas, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Dover, DE MSA" +Metropolitan and Micropolitan Statistical Area "DuBois, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Dublin, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Dubuque, IA MSA" +Metropolitan and Micropolitan Statistical Area "Duluth, MN-WI MSA" +Metropolitan and Micropolitan Statistical Area "Dumas, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Duncan, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Dunn, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Durango, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Durant, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Durham-Chapel Hill, NC MSA" +Metropolitan and Micropolitan Statistical Area "Dyersburg, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Eagle Pass, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "East Stroudsburg, PA MSA" +Metropolitan and Micropolitan Statistical Area "Easton, MD MicroSA" +Metropolitan and Micropolitan Statistical Area "Eau Claire, WI MSA" +Metropolitan and Micropolitan Statistical Area "Edwards, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Effingham, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "El Campo, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "El Centro, CA MSA" +Metropolitan and Micropolitan Statistical Area "El Dorado, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "El Paso, TX MSA" +Metropolitan and Micropolitan Statistical Area "Elizabeth City, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Elizabethtown-Fort Knox, KY MSA" +Metropolitan and Micropolitan Statistical Area "Elk City, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Elkhart-Goshen, IN MSA" +Metropolitan and Micropolitan Statistical Area "Elkins, WV MicroSA" +Metropolitan and Micropolitan Statistical Area "Elko, NV MicroSA" +Metropolitan and Micropolitan Statistical Area "Ellensburg, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Elmira, NY MSA" +Metropolitan and Micropolitan Statistical Area "Emporia, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Enid, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Enterprise, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Erie, PA MSA" +Metropolitan and Micropolitan Statistical Area "Escanaba, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Espanola, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Eugene, OR MSA" +Metropolitan and Micropolitan Statistical Area "Eureka-Arcata-Fortuna, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Evanston, WY MicroSA" +Metropolitan and Micropolitan Statistical Area "Evansville, IN-KY MSA" +Metropolitan and Micropolitan Statistical Area "Fairbanks, AK MSA" +Metropolitan and Micropolitan Statistical Area "Fairfield, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Fairmont, WV MicroSA" +Metropolitan and Micropolitan Statistical Area "Fallon, NV MicroSA" +Metropolitan and Micropolitan Statistical Area "Fargo, ND-MN MSA" +Metropolitan and Micropolitan Statistical Area "Faribault-Northfield, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Farmington, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Farmington, NM MSA" +Metropolitan and Micropolitan Statistical Area "Fayetteville, NC MSA" +Metropolitan and Micropolitan Statistical Area "Fayetteville-Springdale-Rogers, AR-MO MSA" +Metropolitan and Micropolitan Statistical Area "Fergus Falls, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Fernley, NV MicroSA" +Metropolitan and Micropolitan Statistical Area "Findlay, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Fitzgerald, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Flagstaff, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Flint, MI MSA" +Metropolitan and Micropolitan Statistical Area "Florence, SC MSA" +Metropolitan and Micropolitan Statistical Area "Florence-Muscle Shoals, AL MSA" +Metropolitan and Micropolitan Statistical Area "Fond du Lac, WI MSA" +Metropolitan and Micropolitan Statistical Area "Forest City, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Forrest City, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Fort Collins, CO MSA" +Metropolitan and Micropolitan Statistical Area "Fort Dodge, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Fort Leonard Wood, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Fort Madison-Keokuk, IA-IL-MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Fort Morgan, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Fort Polk South, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Fort Smith, AR-OK MSA" +Metropolitan and Micropolitan Statistical Area "Fort Wayne, IN MSA" +Metropolitan and Micropolitan Statistical Area "Frankfort, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Frankfort, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Fredericksburg, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Freeport, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Fremont, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Fremont, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Fresno, CA MSA" +Metropolitan and Micropolitan Statistical Area "Gadsden, AL MSA" +Metropolitan and Micropolitan Statistical Area "Gaffney, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Gainesville, FL MSA" +Metropolitan and Micropolitan Statistical Area "Gainesville, GA MSA" +Metropolitan and Micropolitan Statistical Area "Gainesville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Galesburg, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Gallup, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Garden City, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Gardnerville Ranchos, NV MicroSA" +Metropolitan and Micropolitan Statistical Area "Georgetown, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Gettysburg, PA MSA" +Metropolitan and Micropolitan Statistical Area "Gillette, WY MicroSA" +Metropolitan and Micropolitan Statistical Area "Glasgow, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Glens Falls, NY MSA" +Metropolitan and Micropolitan Statistical Area "Glenwood Springs, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Gloversville, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Goldsboro, NC MSA" +Metropolitan and Micropolitan Statistical Area "Grand Forks, ND-MN MSA" +Metropolitan and Micropolitan Statistical Area "Grand Island, NE MSA" +Metropolitan and Micropolitan Statistical Area "Grand Junction, CO MSA" +Metropolitan and Micropolitan Statistical Area "Grand Rapids-Wyoming, MI MSA" +Metropolitan and Micropolitan Statistical Area "Grants Pass, OR MSA" +Metropolitan and Micropolitan Statistical Area "Grants, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Great Bend, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Great Falls, MT MSA" +Metropolitan and Micropolitan Statistical Area "Greeley, CO MSA" +Metropolitan and Micropolitan Statistical Area "Green Bay, WI MSA" +Metropolitan and Micropolitan Statistical Area "Greeneville, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Greenfield Town, MA MicroSA" +Metropolitan and Micropolitan Statistical Area "Greensboro-High Point, NC MSA" +Metropolitan and Micropolitan Statistical Area "Greensburg, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Greenville, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Greenville, NC MSA" +Metropolitan and Micropolitan Statistical Area "Greenville, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Greenville-Anderson-Mauldin, SC MSA" +Metropolitan and Micropolitan Statistical Area "Greenwood, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Greenwood, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Grenada, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Gulfport-Biloxi-Pascagoula, MS MSA" +Metropolitan and Micropolitan Statistical Area "Guymon, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Hagerstown-Martinsburg, MD-WV MSA" +Metropolitan and Micropolitan Statistical Area "Hailey, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Hammond, LA MSA" +Metropolitan and Micropolitan Statistical Area "Hanford-Corcoran, CA MSA" +Metropolitan and Micropolitan Statistical Area "Hannibal, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Harrisburg-Carlisle, PA MSA" +Metropolitan and Micropolitan Statistical Area "Harrison, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Harrisonburg, VA MSA" +Metropolitan and Micropolitan Statistical Area "Hartford-West Hartford-East Hartford, CT MSA" +Metropolitan and Micropolitan Statistical Area "Hastings, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Hattiesburg, MS MSA" +Metropolitan and Micropolitan Statistical Area "Hays, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Heber, UT MicroSA" +Metropolitan and Micropolitan Statistical Area "Helena, MT MicroSA" +Metropolitan and Micropolitan Statistical Area "Helena-West Helena, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Henderson, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Hereford, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Hermiston-Pendleton, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Hickory-Lenoir-Morganton, NC MSA" +Metropolitan and Micropolitan Statistical Area "Hillsdale, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Hilo, HI MicroSA" +Metropolitan and Micropolitan Statistical Area "Hilton Head Island-Bluffton-Beaufort, SC MSA" +Metropolitan and Micropolitan Statistical Area "Hinesville, GA MSA" +Metropolitan and Micropolitan Statistical Area "Hobbs, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Holland, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Homosassa Springs, FL MSA" +Metropolitan and Micropolitan Statistical Area "Hood River, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Hot Springs, AR MSA" +Metropolitan and Micropolitan Statistical Area "Houghton, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Houma-Thibodaux, LA MSA" +Metropolitan and Micropolitan Statistical Area "Houston-The Woodlands-Sugar Land, TX MSA" +Metropolitan and Micropolitan Statistical Area "Hudson, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Huntingdon, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Huntington, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Huntington-Ashland, WV-KY-OH MSA" +Metropolitan and Micropolitan Statistical Area "Huntsville, AL MSA" +Metropolitan and Micropolitan Statistical Area "Huntsville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Huron, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Hutchinson, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Hutchinson, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Idaho Falls, ID MSA" +Metropolitan and Micropolitan Statistical Area "Indiana, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Indianapolis-Carmel-Anderson, IN MSA" +Metropolitan and Micropolitan Statistical Area "Indianola, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Ionia, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Iowa City, IA MSA" +Metropolitan and Micropolitan Statistical Area "Iron Mountain, MI-WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Ithaca, NY MSA" +Metropolitan and Micropolitan Statistical Area "Jackson, MI MSA" +Metropolitan and Micropolitan Statistical Area "Jackson, MS MSA" +Metropolitan and Micropolitan Statistical Area "Jackson, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Jackson, TN MSA" +Metropolitan and Micropolitan Statistical Area "Jackson, WY-ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Jacksonville, FL MSA" +Metropolitan and Micropolitan Statistical Area "Jacksonville, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Jacksonville, NC MSA" +Metropolitan and Micropolitan Statistical Area "Jacksonville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Jamestown, ND MicroSA" +Metropolitan and Micropolitan Statistical Area "Jamestown-Dunkirk-Fredonia, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Janesville-Beloit, WI MSA" +Metropolitan and Micropolitan Statistical Area "Jasper, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Jefferson City, MO MSA" +Metropolitan and Micropolitan Statistical Area "Jefferson, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Jesup, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Johnson City, TN MSA" +Metropolitan and Micropolitan Statistical Area "Johnstown, PA MSA" +Metropolitan and Micropolitan Statistical Area "Jonesboro, AR MSA" +Metropolitan and Micropolitan Statistical Area "Joplin, MO MSA" +Metropolitan and Micropolitan Statistical Area "Junction City, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Juneau, AK MicroSA" +Metropolitan and Micropolitan Statistical Area "Kahului-Wailuku-Lahaina, HI MSA" +Metropolitan and Micropolitan Statistical Area "Kalamazoo-Portage, MI MSA" +Metropolitan and Micropolitan Statistical Area "Kalispell, MT MicroSA" +Metropolitan and Micropolitan Statistical Area "Kankakee, IL MSA" +Metropolitan and Micropolitan Statistical Area "Kansas City, MO-KS MSA" +Metropolitan and Micropolitan Statistical Area "Kapaa, HI MicroSA" +Metropolitan and Micropolitan Statistical Area "Kearney, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Keene, NH MicroSA" +Metropolitan and Micropolitan Statistical Area "Kendallville, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Kennett, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Kennewick-Richland, WA MSA" +Metropolitan and Micropolitan Statistical Area "Kerrville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Ketchikan, AK MicroSA" +Metropolitan and Micropolitan Statistical Area "Key West, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Kill Devil Hills, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Killeen-Temple, TX MSA" +Metropolitan and Micropolitan Statistical Area "Kingsport-Bristol-Bristol, TN-VA MSA" +Metropolitan and Micropolitan Statistical Area "Kingston, NY MSA" +Metropolitan and Micropolitan Statistical Area "Kingsville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Kinston, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Kirksville, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Klamath Falls, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Knoxville, TN MSA" +Metropolitan and Micropolitan Statistical Area "Kokomo, IN MSA" +Metropolitan and Micropolitan Statistical Area "La Crosse-Onalaska, WI-MN MSA" +Metropolitan and Micropolitan Statistical Area "La Grande, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "LaGrange, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Laconia, NH MicroSA" +Metropolitan and Micropolitan Statistical Area "Lafayette, LA MSA" +Metropolitan and Micropolitan Statistical Area "Lafayette-West Lafayette, IN MSA" +Metropolitan and Micropolitan Statistical Area "Lake Charles, LA MSA" +Metropolitan and Micropolitan Statistical Area "Lake City, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Lake Havasu City-Kingman, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Lakeland-Winter Haven, FL MSA" +Metropolitan and Micropolitan Statistical Area "Lamesa, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Lancaster, PA MSA" +Metropolitan and Micropolitan Statistical Area "Lansing-East Lansing, MI MSA" +Metropolitan and Micropolitan Statistical Area "Laramie, WY MicroSA" +Metropolitan and Micropolitan Statistical Area "Laredo, TX MSA" +Metropolitan and Micropolitan Statistical Area "Las Cruces, NM MSA" +Metropolitan and Micropolitan Statistical Area "Las Vegas, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Las Vegas-Henderson-Paradise, NV MSA" +Metropolitan and Micropolitan Statistical Area "Laurel, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Laurinburg, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Lawrence, KS MSA" +Metropolitan and Micropolitan Statistical Area "Lawrenceburg, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Lawton, OK MSA" +Metropolitan and Micropolitan Statistical Area "Lebanon, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Lebanon, PA MSA" +Metropolitan and Micropolitan Statistical Area "Levelland, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Lewisburg, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Lewisburg, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Lewiston, ID-WA MSA" +Metropolitan and Micropolitan Statistical Area "Lewiston-Auburn, ME MSA" +Metropolitan and Micropolitan Statistical Area "Lewistown, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Lexington, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Lexington-Fayette, KY MSA" +Metropolitan and Micropolitan Statistical Area "Liberal, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Lima, OH MSA" +Metropolitan and Micropolitan Statistical Area "Lincoln, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Lincoln, NE MSA" +Metropolitan and Micropolitan Statistical Area "Little Rock-North Little Rock-Conway, AR MSA" +Metropolitan and Micropolitan Statistical Area "Lock Haven, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Logan, UT-ID MSA" +Metropolitan and Micropolitan Statistical Area "Logan, WV MicroSA" +Metropolitan and Micropolitan Statistical Area "Logansport, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "London, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Longview, TX MSA" +Metropolitan and Micropolitan Statistical Area "Longview, WA MSA" +Metropolitan and Micropolitan Statistical Area "Los Alamos, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Los Angeles-Long Beach-Anaheim, CA MSA" +Metropolitan and Micropolitan Statistical Area "Louisville/Jefferson County, KY-IN MSA" +Metropolitan and Micropolitan Statistical Area "Lubbock, TX MSA" +Metropolitan and Micropolitan Statistical Area "Ludington, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Lufkin, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Lumberton, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Lynchburg, VA MSA" +Metropolitan and Micropolitan Statistical Area "Macomb, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Macon, GA MSA" +Metropolitan and Micropolitan Statistical Area "Madera, CA MSA" +Metropolitan and Micropolitan Statistical Area "Madison, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Madison, WI MSA" +Metropolitan and Micropolitan Statistical Area "Madisonville, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Magnolia, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Malone, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Malvern, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Manchester-Nashua, NH MSA" +Metropolitan and Micropolitan Statistical Area "Manhattan, KS MSA" +Metropolitan and Micropolitan Statistical Area "Manitowoc, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Mankato-North Mankato, MN MSA" +Metropolitan and Micropolitan Statistical Area "Mansfield, OH MSA" +Metropolitan and Micropolitan Statistical Area "Marietta, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Marinette, WI-MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Marion, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Marion, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Marion, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Marquette, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Marshall, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Marshall, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Marshall, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Marshalltown, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Martin, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Martinsville, VA MicroSA" +Metropolitan and Micropolitan Statistical Area "Maryville, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Mason City, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Mayfield, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Maysville, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "McAlester, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "McAllen-Edinburg-Mission, TX MSA" +Metropolitan and Micropolitan Statistical Area "McComb, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "McMinnville, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "McPherson, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Meadville, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Medford, OR MSA" +Metropolitan and Micropolitan Statistical Area "Memphis, TN-MS-AR MSA" +Metropolitan and Micropolitan Statistical Area "Menomonie, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Merced, CA MSA" +Metropolitan and Micropolitan Statistical Area "Meridian, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Merrill, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Mexico, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Miami, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Miami-Fort Lauderdale-West Palm Beach, FL MSA" +Metropolitan and Micropolitan Statistical Area "Michigan City-La Porte, IN MSA" +Metropolitan and Micropolitan Statistical Area "Middlesborough, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Midland, MI MSA" +Metropolitan and Micropolitan Statistical Area "Midland, TX MSA" +Metropolitan and Micropolitan Statistical Area "Milledgeville, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Milwaukee-Waukesha-West Allis, WI MSA" +Metropolitan and Micropolitan Statistical Area "Mineral Wells, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Minneapolis-St. Paul-Bloomington, MN-WI MSA" +Metropolitan and Micropolitan Statistical Area "Minot, ND MicroSA" +Metropolitan and Micropolitan Statistical Area "Missoula, MT MSA" +Metropolitan and Micropolitan Statistical Area "Mitchell, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Moberly, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Mobile, AL MSA" +Metropolitan and Micropolitan Statistical Area "Modesto, CA MSA" +Metropolitan and Micropolitan Statistical Area "Monroe, LA MSA" +Metropolitan and Micropolitan Statistical Area "Monroe, MI MSA" +Metropolitan and Micropolitan Statistical Area "Montgomery, AL MSA" +Metropolitan and Micropolitan Statistical Area "Montrose, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Morehead City, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Morgan City, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Morgantown, WV MSA" +Metropolitan and Micropolitan Statistical Area "Morristown, TN MSA" +Metropolitan and Micropolitan Statistical Area "Moscow, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Moses Lake, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Moultrie, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Airy, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Pleasant, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Pleasant, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Sterling, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Vernon, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Vernon, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Vernon-Anacortes, WA MSA" +Metropolitan and Micropolitan Statistical Area "Mountain Home, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Mountain Home, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Muncie, IN MSA" +Metropolitan and Micropolitan Statistical Area "Murray, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Muscatine, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Muskegon, MI MSA" +Metropolitan and Micropolitan Statistical Area "Muskogee, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Myrtle Beach-Conway-North Myrtle Beach, SC-NC MSA" +Metropolitan and Micropolitan Statistical Area "Nacogdoches, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Napa, CA MSA" +Metropolitan and Micropolitan Statistical Area "Naples-Immokalee-Marco Island, FL MSA" +Metropolitan and Micropolitan Statistical Area "Nashville-Davidson--Murfreesboro--Franklin, TN MSA" +Metropolitan and Micropolitan Statistical Area "Natchez, MS-LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Natchitoches, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "New Bern, NC MSA" +Metropolitan and Micropolitan Statistical Area "New Castle, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "New Castle, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "New Haven-Milford, CT MSA" +Metropolitan and Micropolitan Statistical Area "New Orleans-Metairie, LA MSA" +Metropolitan and Micropolitan Statistical Area "New Philadelphia-Dover, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "New Ulm, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "New York-Newark-Jersey City, NY-NJ-PA MSA" +Metropolitan and Micropolitan Statistical Area "Newberry, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Newport, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Newport, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Newton, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Niles-Benton Harbor, MI MSA" +Metropolitan and Micropolitan Statistical Area "Nogales, AZ MicroSA" +Metropolitan and Micropolitan Statistical Area "Norfolk, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "North Platte, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "North Port-Sarasota-Bradenton, FL MSA" +Metropolitan and Micropolitan Statistical Area "North Vernon, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "North Wilkesboro, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Norwalk, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Norwich-New London, CT MSA" +Metropolitan and Micropolitan Statistical Area "Oak Harbor, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Ocala, FL MSA" +Metropolitan and Micropolitan Statistical Area "Ocean City, NJ MSA" +Metropolitan and Micropolitan Statistical Area "Odessa, TX MSA" +Metropolitan and Micropolitan Statistical Area "Ogden-Clearfield, UT MSA" +Metropolitan and Micropolitan Statistical Area "Ogdensburg-Massena, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Oil City, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Okeechobee, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Oklahoma City, OK MSA" +Metropolitan and Micropolitan Statistical Area "Olean, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Olympia-Tumwater, WA MSA" +Metropolitan and Micropolitan Statistical Area "Omaha-Council Bluffs, NE-IA MSA" +Metropolitan and Micropolitan Statistical Area "Oneonta, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Ontario, OR-ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Opelousas, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Orangeburg, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Orlando-Kissimmee-Sanford, FL MSA" +Metropolitan and Micropolitan Statistical Area "Oshkosh-Neenah, WI MSA" +Metropolitan and Micropolitan Statistical Area "Oskaloosa, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Othello, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Ottawa, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Ottawa-Peru, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Ottumwa, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Owatonna, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Owensboro, KY MSA" +Metropolitan and Micropolitan Statistical Area "Owosso, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Oxford, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Oxford, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Oxnard-Thousand Oaks-Ventura, CA MSA" +Metropolitan and Micropolitan Statistical Area "Ozark, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Paducah, KY-IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Pahrump, NV MicroSA" +Metropolitan and Micropolitan Statistical Area "Palatka, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Palestine, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Palm Bay-Melbourne-Titusville, FL MSA" +Metropolitan and Micropolitan Statistical Area "Pampa, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Panama City, FL MSA" +Metropolitan and Micropolitan Statistical Area "Paragould, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Paris, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Paris, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Parkersburg-Vienna, WV MSA" +Metropolitan and Micropolitan Statistical Area "Parsons, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Payson, AZ MicroSA" +Metropolitan and Micropolitan Statistical Area "Pecos, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Pensacola-Ferry Pass-Brent, FL MSA" +Metropolitan and Micropolitan Statistical Area "Peoria, IL MSA" +Metropolitan and Micropolitan Statistical Area "Peru, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Philadelphia-Camden-Wilmington, PA-NJ-DE-MD MSA" +Metropolitan and Micropolitan Statistical Area "Phoenix-Mesa-Scottsdale, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Picayune, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Pierre, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Pine Bluff, AR MSA" +Metropolitan and Micropolitan Statistical Area "Pinehurst-Southern Pines, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Pittsburg, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Pittsburgh, PA MSA" +Metropolitan and Micropolitan Statistical Area "Pittsfield, MA MSA" +Metropolitan and Micropolitan Statistical Area "Plainview, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Platteville, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Plattsburgh, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Plymouth, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Pocatello, ID MSA" +Metropolitan and Micropolitan Statistical Area "Point Pleasant, WV-OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Ponca City, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Pontiac, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Poplar Bluff, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Port Angeles, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Port Clinton, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Port Lavaca, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Port St. Lucie, FL MSA" +Metropolitan and Micropolitan Statistical Area "Portales, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Portland-South Portland, ME MSA" +Metropolitan and Micropolitan Statistical Area "Portland-Vancouver-Hillsboro, OR-WA MSA" +Metropolitan and Micropolitan Statistical Area "Portsmouth, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Pottsville, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Prescott, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Price, UT MicroSA" +Metropolitan and Micropolitan Statistical Area "Prineville, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Providence-Warwick, RI-MA MSA" +Metropolitan and Micropolitan Statistical Area "Provo-Orem, UT MSA" +Metropolitan and Micropolitan Statistical Area "Pueblo, CO MSA" +Metropolitan and Micropolitan Statistical Area "Pullman, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Punta Gorda, FL MSA" +Metropolitan and Micropolitan Statistical Area "Quincy, IL-MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Racine, WI MSA" +Metropolitan and Micropolitan Statistical Area "Raleigh, NC MSA" +Metropolitan and Micropolitan Statistical Area "Rapid City, SD MSA" +Metropolitan and Micropolitan Statistical Area "Raymondville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Reading, PA MSA" +Metropolitan and Micropolitan Statistical Area "Red Bluff, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Red Wing, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Redding, CA MSA" +Metropolitan and Micropolitan Statistical Area "Reno, NV MSA" +Metropolitan and Micropolitan Statistical Area "Rexburg, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Richmond, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Richmond, VA MSA" +Metropolitan and Micropolitan Statistical Area "Richmond-Berea, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Rio Grande City, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Riverside-San Bernardino-Ontario, CA MSA" +Metropolitan and Micropolitan Statistical Area "Riverton, WY MicroSA" +Metropolitan and Micropolitan Statistical Area "Roanoke Rapids, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Roanoke, VA MSA" +Metropolitan and Micropolitan Statistical Area "Rochelle, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Rochester, MN MSA" +Metropolitan and Micropolitan Statistical Area "Rochester, NY MSA" +Metropolitan and Micropolitan Statistical Area "Rock Springs, WY MicroSA" +Metropolitan and Micropolitan Statistical Area "Rockford, IL MSA" +Metropolitan and Micropolitan Statistical Area "Rockingham, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Rocky Mount, NC MSA" +Metropolitan and Micropolitan Statistical Area "Rolla, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Rome, GA MSA" +Metropolitan and Micropolitan Statistical Area "Roseburg, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Roswell, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Russellville, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Ruston, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Rutland, VT MicroSA" +Metropolitan and Micropolitan Statistical Area "Sacramento--Roseville--Arden-Arcade, CA MSA" +Metropolitan and Micropolitan Statistical Area "Safford, AZ MicroSA" +Metropolitan and Micropolitan Statistical Area "Saginaw, MI MSA" +Metropolitan and Micropolitan Statistical Area "Salem, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Salem, OR MSA" +Metropolitan and Micropolitan Statistical Area "Salina, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Salinas, CA MSA" +Metropolitan and Micropolitan Statistical Area "Salisbury, MD-DE MSA" +Metropolitan and Micropolitan Statistical Area "Salt Lake City, UT MSA" +Metropolitan and Micropolitan Statistical Area "San Angelo, TX MSA" +Metropolitan and Micropolitan Statistical Area "San Antonio-New Braunfels, TX MSA" +Metropolitan and Micropolitan Statistical Area "San Diego-Carlsbad, CA MSA" +Metropolitan and Micropolitan Statistical Area "San Francisco-Oakland-Hayward, CA MSA" +Metropolitan and Micropolitan Statistical Area "San Jose-Sunnyvale-Santa Clara, CA MSA" +Metropolitan and Micropolitan Statistical Area "San Luis Obispo-Paso Robles-Arroyo Grande, CA MSA" +Metropolitan and Micropolitan Statistical Area "Sandpoint, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Sandusky, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Sanford, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Santa Cruz-Watsonville, CA MSA" +Metropolitan and Micropolitan Statistical Area "Santa Fe, NM MSA" +Metropolitan and Micropolitan Statistical Area "Santa Maria-Santa Barbara, CA MSA" +Metropolitan and Micropolitan Statistical Area "Santa Rosa, CA MSA" +Metropolitan and Micropolitan Statistical Area "Sault Ste. Marie, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Savannah, GA MSA" +Metropolitan and Micropolitan Statistical Area "Sayre, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Scottsbluff, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Scottsboro, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Scranton--Wilkes-Barre--Hazleton, PA MSA" +Metropolitan and Micropolitan Statistical Area "Searcy, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Seattle-Tacoma-Bellevue, WA MSA" +Metropolitan and Micropolitan Statistical Area "Sebastian-Vero Beach, FL MSA" +Metropolitan and Micropolitan Statistical Area "Sebring, FL MSA" +Metropolitan and Micropolitan Statistical Area "Sedalia, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Selinsgrove, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Selma, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Seneca Falls, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Seneca, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Sevierville, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Seymour, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Shawano, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Shawnee, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Sheboygan, WI MSA" +Metropolitan and Micropolitan Statistical Area "Shelby, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Shelbyville, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Shelton, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Sheridan, WY MicroSA" +Metropolitan and Micropolitan Statistical Area "Sherman-Denison, TX MSA" +Metropolitan and Micropolitan Statistical Area "Show Low, AZ MicroSA" +Metropolitan and Micropolitan Statistical Area "Shreveport-Bossier City, LA MSA" +Metropolitan and Micropolitan Statistical Area "Sidney, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Sierra Vista-Douglas, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Sikeston, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Silver City, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Sioux City, IA-NE-SD MSA" +Metropolitan and Micropolitan Statistical Area "Sioux Falls, SD MSA" +Metropolitan and Micropolitan Statistical Area "Snyder, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Somerset, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Somerset, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Sonora, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "South Bend-Mishawaka, IN-MI MSA" +Metropolitan and Micropolitan Statistical Area "Spartanburg, SC MSA" +Metropolitan and Micropolitan Statistical Area "Spearfish, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Spencer, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Spirit Lake, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Spokane-Spokane Valley, WA MSA" +Metropolitan and Micropolitan Statistical Area "Springfield, IL MSA" +Metropolitan and Micropolitan Statistical Area "Springfield, MA MSA" +Metropolitan and Micropolitan Statistical Area "Springfield, MO MSA" +Metropolitan and Micropolitan Statistical Area "Springfield, OH MSA" +Metropolitan and Micropolitan Statistical Area "St. Cloud, MN MSA" +Metropolitan and Micropolitan Statistical Area "St. George, UT MSA" +Metropolitan and Micropolitan Statistical Area "St. Joseph, MO-KS MSA" +Metropolitan and Micropolitan Statistical Area "St. Louis, MO-IL MSA" +Metropolitan and Micropolitan Statistical Area "St. Marys, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Starkville, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "State College, PA MSA" +Metropolitan and Micropolitan Statistical Area "Statesboro, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Staunton-Waynesboro, VA MSA" +Metropolitan and Micropolitan Statistical Area "Steamboat Springs, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Stephenville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Sterling, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Sterling, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Stevens Point, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Stillwater, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Stockton-Lodi, CA MSA" +Metropolitan and Micropolitan Statistical Area "Storm Lake, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Sturgis, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Sulphur Springs, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Summerville, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Summit Park, UT MicroSA" +Metropolitan and Micropolitan Statistical Area "Sumter, SC MSA" +Metropolitan and Micropolitan Statistical Area "Sunbury, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Susanville, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Sweetwater, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Syracuse, NY MSA" +Metropolitan and Micropolitan Statistical Area "Tahlequah, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Talladega-Sylacauga, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Tallahassee, FL MSA" +Metropolitan and Micropolitan Statistical Area "Tampa-St. Petersburg-Clearwater, FL MSA" +Metropolitan and Micropolitan Statistical Area "Taos, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Taylorville, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Terre Haute, IN MSA" +Metropolitan and Micropolitan Statistical Area "Texarkana, TX-AR MSA" +Metropolitan and Micropolitan Statistical Area "The Dalles, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "The Villages, FL MSA" +Metropolitan and Micropolitan Statistical Area "Thomaston, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Thomasville, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Tiffin, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Tifton, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Toccoa, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Toledo, OH MSA" +Metropolitan and Micropolitan Statistical Area "Topeka, KS MSA" +Metropolitan and Micropolitan Statistical Area "Torrington, CT MicroSA" +Metropolitan and Micropolitan Statistical Area "Traverse City, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Trenton, NJ MSA" +Metropolitan and Micropolitan Statistical Area "Troy, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Truckee-Grass Valley, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Tucson, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Tullahoma-Manchester, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Tulsa, OK MSA" +Metropolitan and Micropolitan Statistical Area "Tupelo, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Tuscaloosa, AL MSA" +Metropolitan and Micropolitan Statistical Area "Twin Falls, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Tyler, TX MSA" +Metropolitan and Micropolitan Statistical Area "Ukiah, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Union City, TN-KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Urban Honolulu, HI MSA" +Metropolitan and Micropolitan Statistical Area "Urbana, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Utica-Rome, NY MSA" +Metropolitan and Micropolitan Statistical Area "Uvalde, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Valdosta, GA MSA" +Metropolitan and Micropolitan Statistical Area "Vallejo-Fairfield, CA MSA" +Metropolitan and Micropolitan Statistical Area "Valley, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Van Wert, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Vermillion, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Vernal, UT MicroSA" +Metropolitan and Micropolitan Statistical Area "Vernon, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Vicksburg, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Victoria, TX MSA" +Metropolitan and Micropolitan Statistical Area "Vidalia, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Vincennes, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Vineland-Bridgeton, NJ MSA" +Metropolitan and Micropolitan Statistical Area "Vineyard Haven, MA MicroSA" +Metropolitan and Micropolitan Statistical Area "Virginia Beach-Norfolk-Newport News, VA-NC MSA" +Metropolitan and Micropolitan Statistical Area "Visalia-Porterville, CA MSA" +Metropolitan and Micropolitan Statistical Area "Wabash, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Waco, TX MSA" +Metropolitan and Micropolitan Statistical Area "Wahpeton, ND-MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Walla Walla, WA MSA" +Metropolitan and Micropolitan Statistical Area "Wapakoneta, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Warner Robins, GA MSA" +Metropolitan and Micropolitan Statistical Area "Warren, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Warrensburg, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Warsaw, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Washington Court House, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Washington, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Washington, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Washington-Arlington-Alexandria, DC-VA-MD-WV MSA" +Metropolitan and Micropolitan Statistical Area "Waterloo-Cedar Falls, IA MSA" +Metropolitan and Micropolitan Statistical Area "Watertown, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Watertown-Fort Atkinson, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Watertown-Fort Drum, NY MSA" +Metropolitan and Micropolitan Statistical Area "Wauchula, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Wausau, WI MSA" +Metropolitan and Micropolitan Statistical Area "Waycross, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Weatherford, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Weirton-Steubenville, WV-OH MSA" +Metropolitan and Micropolitan Statistical Area "Wenatchee, WA MSA" +Metropolitan and Micropolitan Statistical Area "West Plains, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Wheeling, WV-OH MSA" +Metropolitan and Micropolitan Statistical Area "Whitewater-Elkhorn, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Wichita Falls, TX MSA" +Metropolitan and Micropolitan Statistical Area "Wichita, KS MSA" +Metropolitan and Micropolitan Statistical Area "Williamsport, PA MSA" +Metropolitan and Micropolitan Statistical Area "Williston, ND MicroSA" +Metropolitan and Micropolitan Statistical Area "Willmar, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Wilmington, NC MSA" +Metropolitan and Micropolitan Statistical Area "Wilmington, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Wilson, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Winchester, VA-WV MSA" +Metropolitan and Micropolitan Statistical Area "Winnemucca, NV MicroSA" +Metropolitan and Micropolitan Statistical Area "Winona, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Winston-Salem, NC MSA" +Metropolitan and Micropolitan Statistical Area "Wisconsin Rapids-Marshfield, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Woodward, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Wooster, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Worcester, MA-CT MSA" +Metropolitan and Micropolitan Statistical Area "Worthington, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Yakima, WA MSA" +Metropolitan and Micropolitan Statistical Area "Yankton, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "York-Hanover, PA MSA" +Metropolitan and Micropolitan Statistical Area "Youngstown-Warren-Boardman, OH-PA MSA" +Metropolitan and Micropolitan Statistical Area "Yuba City, CA MSA" +Metropolitan and Micropolitan Statistical Area "Yuma, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Zanesville, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Zapata, TX MicroSA" +Metropolitan and Micropolitan Statistical Area None +Misc Extra Refrigerator "EF 15.9, Fed Standard, bottom freezer-reference fridge" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=573 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator "EF 19.8, bottom freezer" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=458 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator "EF 6.9, Average Installed" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1102 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator "EF 6.9, National Average" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1102 extra_refrigerator_usage_multiplier=0.221 +Misc Extra Refrigerator EF 10.2 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=748 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 10.5 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=727 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 15.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=480 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 17.6 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=433 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 19.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=383 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 21.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=348 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 6.7 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1139 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator None ResStockArguments extra_refrigerator_present=false extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=0 extra_refrigerator_usage_multiplier=0 +Misc Extra Refrigerator Void +Misc Freezer "EF 12, Average Installed" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=935 freezer_usage_multiplier=1.0 +Misc Freezer "EF 12, National Average" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=935 freezer_usage_multiplier=0.342 +Misc Freezer "EF 16, 2001 Fed Standard-reference freezer" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=712 freezer_usage_multiplier=1.0 +Misc Freezer "EF 18, 2008 Energy Star" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=641 freezer_usage_multiplier=1.0 +Misc Freezer "EF 20, 2008 Energy Star Most Efficient" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=568 freezer_usage_multiplier=1.0 +Misc Freezer None ResStockArguments freezer_present=false freezer_location=auto freezer_rated_annual_kwh=0 freezer_usage_multiplier=0 +Misc Freezer Void +Misc Gas Fireplace Gas Fireplace ResStockArguments misc_fuel_loads_fireplace_present=true misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=auto misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=1.0 +Misc Gas Fireplace National Average ResStockArguments misc_fuel_loads_fireplace_present=true misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=auto misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=0.032 +Misc Gas Fireplace None ResStockArguments misc_fuel_loads_fireplace_present=false misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=0 misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=0 +Misc Gas Grill Gas Grill ResStockArguments misc_fuel_loads_grill_present=true misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=auto misc_fuel_loads_grill_usage_multiplier=1.0 +Misc Gas Grill National Average ResStockArguments misc_fuel_loads_grill_present=true misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=auto misc_fuel_loads_grill_usage_multiplier=0.029 +Misc Gas Grill None ResStockArguments misc_fuel_loads_grill_present=false misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=0 misc_fuel_loads_grill_usage_multiplier=0 +Misc Gas Lighting Gas Lighting ResStockArguments misc_fuel_loads_lighting_present=true misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=auto misc_fuel_loads_lighting_usage_multiplier=1.0 +Misc Gas Lighting National Average ResStockArguments misc_fuel_loads_lighting_present=true misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=auto misc_fuel_loads_lighting_usage_multiplier=0.012 +Misc Gas Lighting None ResStockArguments misc_fuel_loads_lighting_present=false misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=0 misc_fuel_loads_lighting_usage_multiplier=0 +Misc Hot Tub Spa Electricity ResStockArguments permanent_spa_present=true permanent_spa_pump_annual_kwh=auto permanent_spa_pump_usage_multiplier=1.0 permanent_spa_heater_type=electric resistance permanent_spa_heater_annual_kwh=auto permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=1.0 +Misc Hot Tub Spa Natural Gas ResStockArguments permanent_spa_present=true permanent_spa_pump_annual_kwh=auto permanent_spa_pump_usage_multiplier=1.0 permanent_spa_heater_type=gas fired permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=auto permanent_spa_heater_usage_multiplier=1.0 +Misc Hot Tub Spa None ResStockArguments permanent_spa_present=false permanent_spa_pump_annual_kwh=0 permanent_spa_pump_usage_multiplier=0 permanent_spa_heater_type=none permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=0 +Misc Hot Tub Spa Other Fuel ResStockArguments permanent_spa_present=false permanent_spa_pump_annual_kwh=0 permanent_spa_pump_usage_multiplier=0 permanent_spa_heater_type=none permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=0 +Misc Hot Tub Spa Void +Misc Pool Has Pool ResStockArguments pool_present=true +Misc Pool None ResStockArguments pool_present=false +Misc Pool Void +Misc Pool Heater "Electric, 78F" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.8 +Misc Pool Heater "Electric, Covered" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.3 +Misc Pool Heater "Electric, Covered, 78F" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.2 +Misc Pool Heater "Gas, 78F" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.8 +Misc Pool Heater "Gas, Covered" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.3 +Misc Pool Heater "Gas, Covered, 78F" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.2 +Misc Pool Heater Electricity ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=1.0 +Misc Pool Heater Natural Gas ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=1.0 +Misc Pool Heater None ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 +Misc Pool Heater Other Fuel ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 +Misc Pool Heater Solar ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 +Misc Pool Heater Unheated ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 +Misc Pool Pump 0.75 HP Pump ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=0.75 +Misc Pool Pump 1.0 HP Pump ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=1.0 +Misc Pool Pump National Average ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=0.075 +Misc Pool Pump None ResStockArguments pool_pump_annual_kwh=0 pool_pump_usage_multiplier=0 +Misc Well Pump High Efficiency ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=0.67 misc_plug_loads_well_pump_2_usage_multiplier=1.0 +Misc Well Pump National Average ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=0.127 misc_plug_loads_well_pump_2_usage_multiplier=1.0 +Misc Well Pump None ResStockArguments misc_plug_loads_well_pump_present=false misc_plug_loads_well_pump_annual_kwh=0 misc_plug_loads_well_pump_usage_multiplier=0 misc_plug_loads_well_pump_2_usage_multiplier=0 +Misc Well Pump Typical Efficiency ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=1.0 misc_plug_loads_well_pump_2_usage_multiplier=1.0 +Natural Ventilation "Cooling Season, 7 days/wk" ResStockArguments window_fraction_operable=0.67 +Natural Ventilation None ResStockArguments window_fraction_operable=0 +Neighbors "Left/Right at 15ft, Front/Back at 80ft" ResStockArguments neighbor_front_distance=80 neighbor_back_distance=80 neighbor_left_distance=15 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 12 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=12 neighbor_right_distance=12 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 2 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=2 neighbor_right_distance=2 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 27 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=27 neighbor_right_distance=27 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 4 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=4 neighbor_right_distance=4 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 7 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=7 neighbor_right_distance=7 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Back at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=15 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Front at 15ft ResStockArguments neighbor_front_distance=15 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Left at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=15 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Left/Right at 10ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=10 neighbor_right_distance=10 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Left/Right at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=15 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Left/Right at 20ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=20 neighbor_right_distance=20 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors None ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Right at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Occupants 0 ResStockArguments geometry_unit_num_occupants=0 general_water_use_usage_multiplier=auto +Occupants 1 ResStockArguments geometry_unit_num_occupants=1 general_water_use_usage_multiplier=auto +Occupants 10+ ResStockArguments geometry_unit_num_occupants=11 general_water_use_usage_multiplier=auto +Occupants 2 ResStockArguments geometry_unit_num_occupants=2 general_water_use_usage_multiplier=auto +Occupants 3 ResStockArguments geometry_unit_num_occupants=3 general_water_use_usage_multiplier=auto +Occupants 4 ResStockArguments geometry_unit_num_occupants=4 general_water_use_usage_multiplier=auto +Occupants 5 ResStockArguments geometry_unit_num_occupants=5 general_water_use_usage_multiplier=auto +Occupants 6 ResStockArguments geometry_unit_num_occupants=6 general_water_use_usage_multiplier=auto +Occupants 7 ResStockArguments geometry_unit_num_occupants=7 general_water_use_usage_multiplier=auto +Occupants 8 ResStockArguments geometry_unit_num_occupants=8 general_water_use_usage_multiplier=auto +Occupants 9 ResStockArguments geometry_unit_num_occupants=9 general_water_use_usage_multiplier=auto +Orientation ENE ResStockArguments geometry_unit_orientation=68 +Orientation ESE ResStockArguments geometry_unit_orientation=113 +Orientation East ResStockArguments geometry_unit_orientation=90 +Orientation NNE ResStockArguments geometry_unit_orientation=23 +Orientation NNW ResStockArguments geometry_unit_orientation=338 +Orientation North ResStockArguments geometry_unit_orientation=0 +Orientation Northeast ResStockArguments geometry_unit_orientation=45 +Orientation Northwest ResStockArguments geometry_unit_orientation=315 +Orientation SSE ResStockArguments geometry_unit_orientation=158 +Orientation SSW ResStockArguments geometry_unit_orientation=203 +Orientation South ResStockArguments geometry_unit_orientation=180 +Orientation Southeast ResStockArguments geometry_unit_orientation=135 +Orientation Southwest ResStockArguments geometry_unit_orientation=225 +Orientation WNW ResStockArguments geometry_unit_orientation=293 +Orientation WSW ResStockArguments geometry_unit_orientation=248 +Orientation West ResStockArguments geometry_unit_orientation=270 +Overhangs "2ft, All Windows" ResStockArguments overhangs_front_depth=2 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=2 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=2 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=2 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs "2ft, Back Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=2 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs "2ft, Front Windows" ResStockArguments overhangs_front_depth=2 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs "2ft, Left Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=2 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs "2ft, Right Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=2 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs None ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +PUMA "AK, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AK, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AK, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AK, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AK, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00115" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00116" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00117" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00118" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00119" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00120" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00121" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00122" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00123" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00124" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00125" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00126" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00127" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00128" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00129" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00130" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00131" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00132" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00133" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00134" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03709" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03710" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03711" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03712" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03713" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03714" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03715" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03716" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03717" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03718" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03719" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03720" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03721" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03722" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03723" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03724" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03725" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03726" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03727" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03728" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03729" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03730" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03731" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03732" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03733" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03734" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03735" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03736" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03737" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03738" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03739" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03740" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03741" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03742" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03743" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03744" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03745" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03746" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03747" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03748" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03749" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03750" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03751" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03752" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03753" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03754" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03755" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03756" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03757" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03758" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03759" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03760" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03761" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03762" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03763" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03764" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03765" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03766" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03767" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03768" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03769" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 04701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 04702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05911" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05912" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05913" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05914" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05915" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05916" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05917" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05918" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06511" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06512" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06513" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06514" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06515" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06709" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06710" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06711" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06712" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07115" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07311" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07312" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07313" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07314" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07315" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07316" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07317" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07318" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07319" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07320" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07321" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07322" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08511" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08512" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08513" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08514" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 10100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 10701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 10702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 10703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00808" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00809" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00810" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00811" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00812" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00813" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00814" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00815" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00816" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00817" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00818" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00819" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00820" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00821" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00822" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00823" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00824" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 04104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 04105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 04106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DC, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DC, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DC, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DC, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DC, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DE, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DE, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DE, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DE, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DE, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DE, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 02103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 06100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 06300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 06901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 06902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 06903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08606" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08607" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08608" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08609" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08610" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08611" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08612" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08613" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08614" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08615" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08616" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08617" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08618" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08619" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08620" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08621" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08622" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08623" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08624" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09911" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 12100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 12701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 12702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 12703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 12704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 05001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 05002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 06001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 06002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03009" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03407" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03408" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03409" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03410" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03411" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03412" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03413" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03414" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03415" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03416" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03417" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03418" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03419" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03420" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03421" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03422" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03520" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03521" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03522" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03523" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03524" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03525" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03526" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03527" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03528" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03529" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03530" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03531" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03532" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03210" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03211" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03212" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03213" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01405" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01406" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01407" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01408" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01409" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01410" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01808" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ND, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ND, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ND, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ND, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ND, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00405" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00406" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00407" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00408" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00409" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00410" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00411" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00412" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00413" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03210" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03211" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03212" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03311" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03312" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03313" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03709" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03710" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03808" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03809" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03810" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04009" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04010" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04011" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04012" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04013" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04014" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04015" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04016" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04017" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04018" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01314" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01316" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01317" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01318" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01319" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01320" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01321" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01322" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01323" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01324" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03210" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03211" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 04001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 04002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SD, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SD, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SD, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SD, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SD, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SD, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02311" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02312" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02313" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02314" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02315" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02316" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02317" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02318" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02319" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02320" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02321" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02322" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02511" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02512" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02513" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02514" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02515" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02516" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04606" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04607" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04608" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04609" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04610" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04611" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04612" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04613" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04614" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04615" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04616" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04617" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04618" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04619" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04620" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04621" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04622" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04623" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04624" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04625" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04626" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04627" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04628" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04629" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04630" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04631" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04632" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04633" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04634" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04635" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04636" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04637" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04638" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05911" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05912" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05913" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05914" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05915" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05916" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 05001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 11001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 11002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 13001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 21001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35009" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 49001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 49002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 49003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 49004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 53001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 57001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 57002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 10701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 10702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 10703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51010" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51020" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51040" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51044" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51045" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51080" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51084" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51085" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51087" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51089" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51090" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51095" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51096" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51097" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51115" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51120" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51125" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51135" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51145" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51154" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51155" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51164" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51165" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51167" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51175" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51186" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51215" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51224" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51225" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51235" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51244" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51245" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51246" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51255" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 55001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 55002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VT, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VT, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VT, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VT, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11606" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11607" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11608" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11609" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11610" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11611" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11612" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11613" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11614" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11615" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11616" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 10000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 20000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 30000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 40101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 40301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 40701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 41001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 41002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 41003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 41004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 41005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 50000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 55101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 55102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 55103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 70101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 70201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 70301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WY, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WY, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WY, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WY, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WY, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA Metro Status "In metro area, not/partially in principal city" +PUMA Metro Status "In metro area, principal city" +PUMA Metro Status Not/partially in metro area +PV Orientation East ResStockArguments pv_system_array_azimuth=90 pv_system_2_array_azimuth=0 +PV Orientation None ResStockArguments pv_system_array_azimuth=180 pv_system_2_array_azimuth=0 +PV Orientation North ResStockArguments pv_system_array_azimuth=0 pv_system_2_array_azimuth=0 +PV Orientation Northeast ResStockArguments pv_system_array_azimuth=45 pv_system_2_array_azimuth=0 +PV Orientation Northwest ResStockArguments pv_system_array_azimuth=315 pv_system_2_array_azimuth=0 +PV Orientation South ResStockArguments pv_system_array_azimuth=180 pv_system_2_array_azimuth=0 +PV Orientation Southeast ResStockArguments pv_system_array_azimuth=135 pv_system_2_array_azimuth=0 +PV Orientation Southwest ResStockArguments pv_system_array_azimuth=225 pv_system_2_array_azimuth=0 +PV Orientation West ResStockArguments pv_system_array_azimuth=270 pv_system_2_array_azimuth=0 +PV System Size 1.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=1000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 11.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=11000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 13.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=13000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 3.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=3000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 5.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=5000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 7.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=7000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 9.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=9000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size None ResStockArguments pv_system_present=false pv_system_module_type=auto pv_system_max_power_output=0 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +Plug Load Diversity 100% ResStockArguments misc_plug_loads_other_2_usage_multiplier=1.0 +Plug Load Diversity 150% ResStockArguments misc_plug_loads_other_2_usage_multiplier=1.5 +Plug Load Diversity 200% ResStockArguments misc_plug_loads_other_2_usage_multiplier=2.0 +Plug Load Diversity 25% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.25 +Plug Load Diversity 400% ResStockArguments misc_plug_loads_other_2_usage_multiplier=4.0 +Plug Load Diversity 50% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.5 +Plug Load Diversity 75% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.75 +Plug Loads 100% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.0 misc_plug_loads_television_present=false +Plug Loads 101% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.01 misc_plug_loads_television_present=false +Plug Loads 102% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.02 misc_plug_loads_television_present=false +Plug Loads 103% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.03 misc_plug_loads_television_present=false +Plug Loads 104% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.04 misc_plug_loads_television_present=false +Plug Loads 105% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.05 misc_plug_loads_television_present=false +Plug Loads 106% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.06 misc_plug_loads_television_present=false +Plug Loads 108% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.08 misc_plug_loads_television_present=false +Plug Loads 110% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.1 misc_plug_loads_television_present=false +Plug Loads 113% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.13 misc_plug_loads_television_present=false +Plug Loads 119% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.19 misc_plug_loads_television_present=false +Plug Loads 121% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.21 misc_plug_loads_television_present=false +Plug Loads 123% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.23 misc_plug_loads_television_present=false +Plug Loads 134% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.34 misc_plug_loads_television_present=false +Plug Loads 137% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.37 misc_plug_loads_television_present=false +Plug Loads 140% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.4 misc_plug_loads_television_present=false +Plug Loads 144% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.44 misc_plug_loads_television_present=false +Plug Loads 166% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.66 misc_plug_loads_television_present=false +Plug Loads 78% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.78 misc_plug_loads_television_present=false +Plug Loads 79% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.79 misc_plug_loads_television_present=false +Plug Loads 82% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.82 misc_plug_loads_television_present=false +Plug Loads 84% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.84 misc_plug_loads_television_present=false +Plug Loads 85% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.85 misc_plug_loads_television_present=false +Plug Loads 86% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.86 misc_plug_loads_television_present=false +Plug Loads 89% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.89 misc_plug_loads_television_present=false +Plug Loads 91% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.91 misc_plug_loads_television_present=false +Plug Loads 93% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.93 misc_plug_loads_television_present=false +Plug Loads 94% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.94 misc_plug_loads_television_present=false +Plug Loads 95% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.95 misc_plug_loads_television_present=false +Plug Loads 96% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.96 misc_plug_loads_television_present=false +Plug Loads 97% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.97 misc_plug_loads_television_present=false +Plug Loads 99% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.99 misc_plug_loads_television_present=false +Power Outage Summer ResStockArguments schedules_power_outage_periods=Jul 1 5 - Jul 31 14 schedules_power_outage_periods_window_natvent_availability=always available +REEDS Balancing Area 1 +REEDS Balancing Area 10 +REEDS Balancing Area 100 +REEDS Balancing Area 101 +REEDS Balancing Area 102 +REEDS Balancing Area 103 +REEDS Balancing Area 104 +REEDS Balancing Area 105 +REEDS Balancing Area 106 +REEDS Balancing Area 107 +REEDS Balancing Area 108 +REEDS Balancing Area 109 +REEDS Balancing Area 11 +REEDS Balancing Area 110 +REEDS Balancing Area 111 +REEDS Balancing Area 112 +REEDS Balancing Area 113 +REEDS Balancing Area 114 +REEDS Balancing Area 115 +REEDS Balancing Area 116 +REEDS Balancing Area 117 +REEDS Balancing Area 118 +REEDS Balancing Area 119 +REEDS Balancing Area 12 +REEDS Balancing Area 120 +REEDS Balancing Area 121 +REEDS Balancing Area 122 +REEDS Balancing Area 123 +REEDS Balancing Area 124 +REEDS Balancing Area 125 +REEDS Balancing Area 126 +REEDS Balancing Area 127 +REEDS Balancing Area 128 +REEDS Balancing Area 129 +REEDS Balancing Area 13 +REEDS Balancing Area 130 +REEDS Balancing Area 131 +REEDS Balancing Area 132 +REEDS Balancing Area 133 +REEDS Balancing Area 134 +REEDS Balancing Area 14 +REEDS Balancing Area 15 +REEDS Balancing Area 16 +REEDS Balancing Area 17 +REEDS Balancing Area 18 +REEDS Balancing Area 19 +REEDS Balancing Area 2 +REEDS Balancing Area 20 +REEDS Balancing Area 21 +REEDS Balancing Area 22 +REEDS Balancing Area 23 +REEDS Balancing Area 24 +REEDS Balancing Area 25 +REEDS Balancing Area 26 +REEDS Balancing Area 27 +REEDS Balancing Area 28 +REEDS Balancing Area 29 +REEDS Balancing Area 3 +REEDS Balancing Area 30 +REEDS Balancing Area 31 +REEDS Balancing Area 32 +REEDS Balancing Area 33 +REEDS Balancing Area 34 +REEDS Balancing Area 35 +REEDS Balancing Area 36 +REEDS Balancing Area 37 +REEDS Balancing Area 38 +REEDS Balancing Area 39 +REEDS Balancing Area 4 +REEDS Balancing Area 40 +REEDS Balancing Area 41 +REEDS Balancing Area 42 +REEDS Balancing Area 43 +REEDS Balancing Area 44 +REEDS Balancing Area 45 +REEDS Balancing Area 46 +REEDS Balancing Area 47 +REEDS Balancing Area 48 +REEDS Balancing Area 49 +REEDS Balancing Area 5 +REEDS Balancing Area 50 +REEDS Balancing Area 51 +REEDS Balancing Area 52 +REEDS Balancing Area 53 +REEDS Balancing Area 54 +REEDS Balancing Area 55 +REEDS Balancing Area 56 +REEDS Balancing Area 57 +REEDS Balancing Area 58 +REEDS Balancing Area 59 +REEDS Balancing Area 6 +REEDS Balancing Area 60 +REEDS Balancing Area 61 +REEDS Balancing Area 62 +REEDS Balancing Area 63 +REEDS Balancing Area 64 +REEDS Balancing Area 65 +REEDS Balancing Area 66 +REEDS Balancing Area 67 +REEDS Balancing Area 68 +REEDS Balancing Area 69 +REEDS Balancing Area 7 +REEDS Balancing Area 70 +REEDS Balancing Area 71 +REEDS Balancing Area 72 +REEDS Balancing Area 73 +REEDS Balancing Area 74 +REEDS Balancing Area 75 +REEDS Balancing Area 76 +REEDS Balancing Area 77 +REEDS Balancing Area 78 +REEDS Balancing Area 79 +REEDS Balancing Area 8 +REEDS Balancing Area 80 +REEDS Balancing Area 81 +REEDS Balancing Area 82 +REEDS Balancing Area 83 +REEDS Balancing Area 84 +REEDS Balancing Area 85 +REEDS Balancing Area 86 +REEDS Balancing Area 87 +REEDS Balancing Area 88 +REEDS Balancing Area 89 +REEDS Balancing Area 9 +REEDS Balancing Area 90 +REEDS Balancing Area 91 +REEDS Balancing Area 92 +REEDS Balancing Area 93 +REEDS Balancing Area 94 +REEDS Balancing Area 95 +REEDS Balancing Area 96 +REEDS Balancing Area 97 +REEDS Balancing Area 98 +REEDS Balancing Area 99 +REEDS Balancing Area None +Radiant Barrier No ResStockArguments radiant_barrier_attic_location=none radiant_barrier_grade=1 +Radiant Barrier None ResStockArguments radiant_barrier_attic_location=none radiant_barrier_grade=1 +Radiant Barrier Yes ResStockArguments radiant_barrier_attic_location=Attic roof only radiant_barrier_grade=1 +Range Spot Vent Hour Hour0 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=0 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour1 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=1 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour10 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=10 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour11 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=11 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour12 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=12 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour13 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=13 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour14 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=14 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour15 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=15 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour16 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=16 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour17 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=17 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour18 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=18 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour19 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=19 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour2 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=2 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour20 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=20 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour21 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=21 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour22 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=22 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour23 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=23 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour3 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=3 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour4 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=4 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour5 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=5 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour6 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=6 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour7 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=7 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour8 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=8 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour9 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=9 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Refrigerator EF 10.2 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=748 +Refrigerator EF 10.5 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=727 +Refrigerator EF 15.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=480 +Refrigerator EF 17.6 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=433 +Refrigerator EF 19.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=383 +Refrigerator EF 21.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=348 +Refrigerator EF 6.7 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=1139 +Refrigerator None ResStockArguments refrigerator_present=false refrigerator_location=auto refrigerator_rated_annual_kwh=0 +Refrigerator Void +Refrigerator Usage Level 100% Usage ResStockArguments refrigerator_usage_multiplier=1.0 +Refrigerator Usage Level 105% Usage ResStockArguments refrigerator_usage_multiplier=1.05 +Refrigerator Usage Level 95% Usage ResStockArguments refrigerator_usage_multiplier=0.95 +Roof Material "Asphalt Shingles, Dark" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=dark +Roof Material "Asphalt Shingles, Light" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=light +Roof Material "Asphalt Shingles, Medium" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=medium +Roof Material "Asphalt Shingles, White or cool colors" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=reflective +Roof Material "Composition Shingles, White or Cool Colors" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=reflective +Roof Material "Metal, Cool Colors" ResStockArguments roof_material_type=metal surfacing roof_color=reflective +Roof Material "Metal, Dark" ResStockArguments roof_material_type=metal surfacing roof_color=dark +Roof Material "Metal, Light" ResStockArguments roof_material_type=metal surfacing roof_color=light +Roof Material "Metal, Medium" ResStockArguments roof_material_type=metal surfacing roof_color=medium +Roof Material "Metal, White" ResStockArguments roof_material_type=metal surfacing roof_color=reflective +Roof Material "Tile, Clay or Ceramic" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium +Roof Material "Tile, Clay or Ceramic, White or Cool Colors" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective +Roof Material "Tile, Concrete" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium +Roof Material "Tile, Concrete, White or Cool Colors" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective +Roof Material "Tile, Dark" ResStockArguments roof_material_type=slate or tile shingles roof_color=dark +Roof Material "Tile, Light" ResStockArguments roof_material_type=slate or tile shingles roof_color=light +Roof Material "Tile, Medium" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium +Roof Material "Tile, White" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective +Roof Material Composition Shingles ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=medium +Roof Material Galvanized Steel ResStockArguments roof_material_type=metal surfacing roof_color=medium +Roof Material Slate ResStockArguments roof_material_type=slate or tile shingles roof_color=medium +Roof Material Wood Shingles ResStockArguments roof_material_type=wood shingles or shakes roof_color=medium +Solar Hot Water "40 sqft, South, 10 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=10 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, South, Latitude - 15 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=latitude-15 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, South, Roof Pitch" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, West, 70 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=70 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, West, Latitude + 15 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=latitude+15 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, West, Roof Pitch" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water None ResStockArguments solar_thermal_system_type=none solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +State AK ResStockArguments site_state_code=AK +State AL ResStockArguments site_state_code=AL +State AR ResStockArguments site_state_code=AR +State AZ ResStockArguments site_state_code=AZ +State CA ResStockArguments site_state_code=CA +State CO ResStockArguments site_state_code=CO +State CT ResStockArguments site_state_code=CT +State DC ResStockArguments site_state_code=DC +State DE ResStockArguments site_state_code=DE +State FL ResStockArguments site_state_code=FL +State GA ResStockArguments site_state_code=GA +State HI ResStockArguments site_state_code=HI +State IA ResStockArguments site_state_code=IA +State ID ResStockArguments site_state_code=ID +State IL ResStockArguments site_state_code=IL +State IN ResStockArguments site_state_code=IN +State KS ResStockArguments site_state_code=KS +State KY ResStockArguments site_state_code=KY +State LA ResStockArguments site_state_code=LA +State MA ResStockArguments site_state_code=MA +State MD ResStockArguments site_state_code=MD +State ME ResStockArguments site_state_code=ME +State MI ResStockArguments site_state_code=MI +State MN ResStockArguments site_state_code=MN +State MO ResStockArguments site_state_code=MO +State MS ResStockArguments site_state_code=MS +State MT ResStockArguments site_state_code=MT +State NC ResStockArguments site_state_code=NC +State ND ResStockArguments site_state_code=ND +State NE ResStockArguments site_state_code=NE +State NH ResStockArguments site_state_code=NH +State NJ ResStockArguments site_state_code=NJ +State NM ResStockArguments site_state_code=NM +State NV ResStockArguments site_state_code=NV +State NY ResStockArguments site_state_code=NY +State OH ResStockArguments site_state_code=OH +State OK ResStockArguments site_state_code=OK +State OR ResStockArguments site_state_code=OR +State PA ResStockArguments site_state_code=PA +State RI ResStockArguments site_state_code=RI +State SC ResStockArguments site_state_code=SC +State SD ResStockArguments site_state_code=SD +State TN ResStockArguments site_state_code=TN +State TX ResStockArguments site_state_code=TX +State UT ResStockArguments site_state_code=UT +State VA ResStockArguments site_state_code=VA +State VT ResStockArguments site_state_code=VT +State WA ResStockArguments site_state_code=WA +State WI ResStockArguments site_state_code=WI +State WV ResStockArguments site_state_code=WV +State WY ResStockArguments site_state_code=WY +State Metro Median Income 0-30% +State Metro Median Income 100-120% +State Metro Median Income 120-150% +State Metro Median Income 150%+ +State Metro Median Income 30-60% +State Metro Median Income 60-80% +State Metro Median Income 80-100% +State Metro Median Income Not Available +Storm Windows Clear ResStockArguments window_storm_type=clear +Storm Windows Low-E ResStockArguments window_storm_type=low-e +Tenure Not Available +Tenure Owner +Tenure Renter +Usage Level Average +Usage Level High +Usage Level Low +Usage Level Medium +Vacancy Status Occupied +Vacancy Status Vacant ResStockArguments schedules_vacancy_periods=Jan 1 - Dec 31 +Vintage 1940s ResStockArguments vintage=1940s year_built=auto +Vintage 1950s ResStockArguments vintage=1950s year_built=auto +Vintage 1960s ResStockArguments vintage=1960s year_built=auto +Vintage 1970s ResStockArguments vintage=1970s year_built=auto +Vintage 1980s ResStockArguments vintage=1980s year_built=auto +Vintage 1990s ResStockArguments vintage=1990s year_built=auto +Vintage 2000s ResStockArguments vintage=2000s year_built=auto +Vintage 2010s ResStockArguments vintage=2010s year_built=auto +Vintage <1940 ResStockArguments vintage=<1940 year_built=auto +Vintage <1950 ResStockArguments vintage=<1950 year_built=auto +Vintage ACS 1940-59 +Vintage ACS 1960-79 +Vintage ACS 1980-99 +Vintage ACS 2000-09 +Vintage ACS 2010s +Vintage ACS <1940 +Water Heater Efficiency "Electric Heat Pump, 50 gal, 120 V Shared" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=4.9 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 65 gal, 120 V Shared" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=65 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=4.9 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 80 gal, 120 V Shared" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=80 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=4.9 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 50 gal, 3.45 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 50 gal, 3.45 UEF, 140F" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=140 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 66 gal, 3.35 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=66 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.35 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 80 gal, 3.45 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=80 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Natural Gas Premium, Condensing" ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Natural Gas Tankless, Condensing" ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=natural gas water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.96 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Propane Premium, Condensing" ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Electric Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=electricity water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.95 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Electric Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=electricity water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.92 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Electric Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=electricity water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.99 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency FIXME Fuel Oil Indirect ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.62 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Fuel Oil Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.68 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Fuel Oil Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.62 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Natural Gas Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.67 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Natural Gas Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Natural Gas Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=natural gas water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Other Fuel ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=wood water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Propane Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.67 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Propane Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Propane Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=propane water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Fuel Electricity +Water Heater Fuel Fuel Oil +Water Heater Fuel Natural Gas +Water Heater Fuel Other Fuel +Water Heater Fuel Propane +Water Heater In Unit No +Water Heater In Unit Yes +Water Heater Location Attic ResStockArguments water_heater_location=attic +Water Heater Location Conditioned Mechanical Room ResStockArguments water_heater_location=other heated space +Water Heater Location Crawlspace ResStockArguments water_heater_location=crawlspace +Water Heater Location Garage ResStockArguments water_heater_location=garage +Water Heater Location Heated Basement ResStockArguments water_heater_location=basement - conditioned +Water Heater Location Living Space ResStockArguments water_heater_location=conditioned space +Water Heater Location Outside ResStockArguments water_heater_location=other exterior +Water Heater Location Unheated Basement ResStockArguments water_heater_location=basement - unconditioned +Window Areas F10 B30 L10 R10 ResStockArguments window_front_wwr=0.1 window_back_wwr=0.3 window_left_wwr=0.1 window_right_wwr=0.1 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F12 B12 L12 R12 ResStockArguments window_front_wwr=0.12 window_back_wwr=0.12 window_left_wwr=0.12 window_right_wwr=0.12 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F15 B15 L0 R0 ResStockArguments window_front_wwr=0.15 window_back_wwr=0.15 window_left_wwr=0 window_right_wwr=0 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F15 B15 L15 R15 ResStockArguments window_front_wwr=0.15 window_back_wwr=0.15 window_left_wwr=0.15 window_right_wwr=0.15 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F18 B18 L18 R18 ResStockArguments window_front_wwr=0.18 window_back_wwr=0.18 window_left_wwr=0.18 window_right_wwr=0.18 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F30 B30 L30 R30 ResStockArguments window_front_wwr=0.30 window_back_wwr=0.30 window_left_wwr=0.30 window_right_wwr=0.30 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F6 B6 L6 R6 ResStockArguments window_front_wwr=0.06 window_back_wwr=0.06 window_left_wwr=0.06 window_right_wwr=0.06 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F9 B9 L9 R9 ResStockArguments window_front_wwr=0.09 window_back_wwr=0.09 window_left_wwr=0.09 window_right_wwr=0.09 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas None ResStockArguments window_front_wwr=0.0 window_back_wwr=0.0 window_left_wwr=0.0 window_right_wwr=0.0 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Windows "Double, Clear, Metal, Air" ResStockArguments window_ufactor=0.76 window_shgc=0.67 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Metal, Air, Exterior Clear Storm" ResStockArguments window_ufactor=0.55 window_shgc=0.51 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.49 window_shgc=0.44 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Non-metal, Air" ResStockArguments window_ufactor=0.49 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Non-metal, Air, Exterior Clear Storm" ResStockArguments window_ufactor=0.34 window_shgc=0.49 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Non-metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.28 window_shgc=0.42 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Thermal-Break, Air" ResStockArguments window_ufactor=0.63 window_shgc=0.62 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Low-E, H-Gain" ResStockArguments window_ufactor=0.29 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Low-E, L-Gain" ResStockArguments window_ufactor=0.26 window_shgc=0.31 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Low-E, Non-metal, Air, L-Gain" ResStockArguments window_ufactor=0.37 window_shgc=0.3 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Low-E, Non-metal, Air, M-Gain" ResStockArguments window_ufactor=0.38 window_shgc=0.44 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Metal" ResStockArguments window_ufactor=1.16 window_shgc=0.76 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Metal, Exterior Clear Storm" ResStockArguments window_ufactor=0.67 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.57 window_shgc=0.47 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Non-metal" ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Non-metal, Exterior Clear Storm" ResStockArguments window_ufactor=0.47 window_shgc=0.54 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Non-metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.36 window_shgc=0.46 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Triple, Low-E, Insulated, Argon, H-Gain" ResStockArguments window_ufactor=0.18 window_shgc=0.40 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Triple, Low-E, Insulated, Argon, L-Gain" ResStockArguments window_ufactor=0.17 window_shgc=0.27 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Triple, Low-E, Non-metal, Air, L-Gain" ResStockArguments window_ufactor=0.29 window_shgc=0.26 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows No Windows ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows Void +Infiltration Reduction 30% ResStockArguments air_leakage_percent_reduction=30 +HVAC Secondary Heating Fuel Other Fuel ResStockArguments heating_system_2_fuel=wood +HVAC Heating Efficiency "ASHP, SEER 15.05, 8.82 HSPF, HERS, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "MSHP, SEER 14.5, 8.33 HSPF, HERS, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.33 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "ASHP, SEER 20, 11 HSPF, CCHP, Max Load, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=11 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=20 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.9 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-15 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_is_ducted=true heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "MSHP, SEER 20, 11 HSPF, CCHP, Max Load, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=11 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=20 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.9 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "ASHP, SEER 15.05, 8.82 HSPF, Separate Backup, HERS, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=separate heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=0.0 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_is_ducted=true heat_pump_backup_sizing_methodology=supplemental +HVAC Secondary Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.76 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.80 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.90 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Wall/Floor Furnace, 60% AFUE" ResStockArguments heating_system_2_type=WallFurnace heating_system_2_heating_efficiency=0.60 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Wall/Floor Furnace, 68% AFUE" ResStockArguments heating_system_2_type=WallFurnace heating_system_2_heating_efficiency=0.68 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Electric Boiler, 100% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Electric Wall Furnace, 100% AFUE" ResStockArguments heating_system_2_type=WallFurnace heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 60% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 60% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 60% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 60% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=wood heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 76% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 76% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 76% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 76% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=wood heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 80% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 80% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 80% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 80% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=wood heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 92.5% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 92.5% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 92.5% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 92.5% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=wood heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "MSHP, SEER 14.5, 8.33 HSPF, Separate Backup, HERS, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.33 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=separate heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=0.0 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental From 8932ce8ef6f1c6f475726fb00174ab3607de52b6 Mon Sep 17 00:00:00 2001 From: Yingli Date: Fri, 26 Jul 2024 17:41:40 -0600 Subject: [PATCH 11/21] unit test --- .../resources/test_setpoint.py | 106 ++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 measures/LoadFlexibility/resources/test_setpoint.py diff --git a/measures/LoadFlexibility/resources/test_setpoint.py b/measures/LoadFlexibility/resources/test_setpoint.py new file mode 100644 index 0000000000..0c27eea975 --- /dev/null +++ b/measures/LoadFlexibility/resources/test_setpoint.py @@ -0,0 +1,106 @@ +import unittest +import setpoint +import pandas as pd +from dataclasses import fields + +class Testsetpoint(unittest.TestCase): + + @classmethod + def setUpClass(cls): + print('setUpClass') + + @classmethod + def tearDownClass(cls): + print('tearDownClass') + + def setUp(self): + print('setUp') + state = 'CO' + on_peak_hour_weekday = pd.read_csv(f"on_peak_hour/{state}_weekday_on_peak.csv") + on_peak_hour_weekend = pd.read_csv(f"on_peak_hour/{state}_weekend_on_peak.csv") + self.on_peak_hour_weekday_dict = on_peak_hour_weekday.set_index('month').transpose().to_dict() + self.on_peak_hour_weekend_dict = on_peak_hour_weekend.set_index('month').transpose().to_dict() + + def tearDown(self): + print('tearDown') + + def test_get_month_day(self): + print('test_get_month_day') + self.assertEqual(setpoint.get_month_day(8755, 8760), (12, 'weekday')) + self.assertEqual(setpoint.get_month_day(2, 8760), (1, 'weekday')) + + def test_get_prepeak_and_peak_start_end_winter(self): + print('test_get_prepeak_and_peak_start_end_winter') + offset_time = setpoint.get_prepeak_and_peak_start_end(2, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 'heating') + self.assertEqual(offset_time.pre_peak_start_morning, 1) + self.assertEqual(offset_time.peak_start_morning, 5) + self.assertEqual(offset_time.peak_end_morning, 8) + self.assertEqual(offset_time.pre_peak_start_afternoon, 13) + self.assertEqual(offset_time.peak_start_afternoon, 17) + self.assertEqual(offset_time.peak_end_afternoon, 20) + + def test_get_prepeak_and_peak_start_end_summer(self): + print('test_get_prepeak_and_peak_start_end_summer') + offset_time = setpoint.get_prepeak_and_peak_start_end(5000, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 'cooling') + self.assertEqual(offset_time.pre_peak_start_afternoon, 11) + self.assertEqual(offset_time.peak_start_afternoon, 15) + self.assertEqual(offset_time.peak_end_afternoon, 18) + + def test_time_shift(self): + print('test_time_shift') + offset_time = setpoint.get_prepeak_and_peak_start_end(2, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 'heating') + for f in fields(offset_time): + value = getattr(offset_time, f.name) + value = setpoint.time_shift(value, 1, 1) + if isinstance(value, (int, float)): + setattr(offset_time, f.name, value) + self.assertEqual(offset_time.pre_peak_start_morning, 2) + self.assertEqual(offset_time.peak_start_morning, 6) + self.assertEqual(offset_time.peak_end_morning, 9) + self.assertEqual(offset_time.pre_peak_start_afternoon, 14) + self.assertEqual(offset_time.peak_start_afternoon, 18) + self.assertEqual(offset_time.peak_end_afternoon, 21) + + def test_get_setpoint_offset_heating(self): + print('test_get_setpoint_offset_heating') + setpoint_offset = setpoint.get_setpoint_offset(3, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating') + self.assertEqual(setpoint_offset, 4) + setpoint_offset = setpoint.get_setpoint_offset(7, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating') + self.assertEqual(setpoint_offset, -4) + + def test_get_setpoint_offset_cooling(self): + print('test_get_setpoint_offset_cooling') + setpoint_offset = setpoint.get_setpoint_offset(2916, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling') + self.assertEqual(setpoint_offset, -4) + setpoint_offset = setpoint.get_setpoint_offset(2920, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling') + self.assertEqual(setpoint_offset, 4) + + def test_get_setpoint_absolute_value_heating(self): + print('test_get_setpoint_absolute_value_heating') + setpoint_reponse = setpoint.get_setpoint_absolute_value(3, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating', 70) + self.assertEqual(setpoint_reponse, 80) + setpoint_reponse = setpoint.get_setpoint_absolute_value(7, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating', 70) + self.assertEqual(setpoint_reponse, 55) + setpoint_reponse = setpoint.get_setpoint_absolute_value(10, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating', 70) + self.assertEqual(setpoint_reponse, 70) + + def test_get_setpoint_absolute_value_cooling(self): + print('test_get_setpoint_absolute_value_cooling') + setpoint_reponse = setpoint.get_setpoint_absolute_value(2916, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling', 70) + self.assertEqual(setpoint_reponse, 60) + setpoint_reponse = setpoint.get_setpoint_absolute_value(2920, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling', 70) + self.assertEqual(setpoint_reponse, 80) + setpoint_reponse = setpoint.get_setpoint_absolute_value(2924, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling', 70) + self.assertEqual(setpoint_reponse, 70) + + def test_clip_setpoints(self): + print('test_clip_setpoints') + self.assertEqual(setpoint.clip_setpoints(90, 'heating'), 80) + self.assertEqual(setpoint.clip_setpoints(70, 'heating'), 70) + self.assertEqual(setpoint.clip_setpoints(40, 'heating'), 55) + self.assertEqual(setpoint.clip_setpoints(90, 'cooling'), 80) + self.assertEqual(setpoint.clip_setpoints(70, 'cooling'), 70) + self.assertEqual(setpoint.clip_setpoints(40, 'cooling'), 60) + +if __name__ == '__main__': + unittest.main() \ No newline at end of file From e1df54a1bd92f3c2be340013c919d99505b8edc2 Mon Sep 17 00:00:00 2001 From: Rajendra Adhikari Date: Fri, 2 Aug 2024 10:36:58 -0500 Subject: [PATCH 12/21] Improve data structure --- .../LoadFlexibility/resources/input_helper.py | 46 +- .../LoadFlexibility/resources/setpoint.py | 452 +++++++++--------- 2 files changed, 276 insertions(+), 222 deletions(-) diff --git a/measures/LoadFlexibility/resources/input_helper.py b/measures/LoadFlexibility/resources/input_helper.py index 1fd5739df4..cd11fd2a32 100644 --- a/measures/LoadFlexibility/resources/input_helper.py +++ b/measures/LoadFlexibility/resources/input_helper.py @@ -12,6 +12,14 @@ class OffsetType: @dataclass(frozen=True) class Argument(Generic[T]): + """ + This class defines both the input argument to the measure as well as the value passed. + The measure input argument is obtained using the getOSArgument which is used by the measure's + argument method. + + During the run, the value passed to the measure is obtained from the runner and the val + attribute is set using the set_val method. This method ensures that the value is set only once. + """ name: str type: type displayname: Optional[str] = None @@ -140,6 +148,8 @@ class __RelativeOffsetData: ) +# Create an instance of the class. +# This is the only instance that should be created and is used everywhere the module is imported. RelativeOffsetData = __RelativeOffsetData() @@ -210,18 +220,36 @@ class __OffsetTimingData: ) +# Create an instance of the class. +# This is the only instance that should be created and is used everywhere the module is imported. OffsetTimingData = __OffsetTimingData() -def get_args(cls) -> List[Argument]: - return [field.default for field in cls.__dataclass_fields__.values()] +upgrade_name_arg = Argument(name='upgrade_name', + type=str, + required=False, + displayname='Upgrade Name', default="", + description='The name of the upgrade when used as a part of upgrade measure') + + +def _get_args(data_obj) -> List[Argument]: + """ + Returns a list of Argument instances defined in the dataclass. + For a dataclass defined as: + @dataclass + class MyClass: + arg1: Argument[int] = Argument(name='arg1', type=int, default=1) + arg2: Argument[str] = Argument(name='arg2', type=str, default='a') + MyClass().__dataclass_fields__.values() will return [Field(name='arg1', ...), Field(name='arg2', ...)] + And Field(name='arg1', ...).default will return Argument(name='arg1', type=int, default=1) + This function returns [Argument(name='arg1', type=int, default=1), Argument(name='arg2', type=str, default='a')] + """ + return [field.default for field in data_obj.__dataclass_fields__.values()] -ALL_MEASURE_ARGS = get_args(OffsetTypeData) -ALL_MEASURE_ARGS += get_args(RelativeOffsetData) -ALL_MEASURE_ARGS += get_args(AbsoluteOffsetData) -ALL_MEASURE_ARGS += get_args(OffsetTimingData) -# absolute_offset_fields = get_dataclass_info(AbsoluteOffsetData) -# offset_timing_fields = get_dataclass_info(OffsetTimingData) -# all_offset_fields = {**relative_offset_fields, **absolute_offset_fields, **offset_timing_fields} +ALL_MEASURE_ARGS = [upgrade_name_arg] +ALL_MEASURE_ARGS += _get_args(OffsetTypeData) +ALL_MEASURE_ARGS += _get_args(RelativeOffsetData) +ALL_MEASURE_ARGS += _get_args(AbsoluteOffsetData) +ALL_MEASURE_ARGS += _get_args(OffsetTimingData) diff --git a/measures/LoadFlexibility/resources/setpoint.py b/measures/LoadFlexibility/resources/setpoint.py index fef7ccae88..b0a3b04261 100644 --- a/measures/LoadFlexibility/resources/setpoint.py +++ b/measures/LoadFlexibility/resources/setpoint.py @@ -1,232 +1,258 @@ -from input_helper import OffsetTypeData, OffsetTimingData, RelativeOffsetData, AbsoluteOffsetData +from input_helper import OffsetTypeData, OffsetTimingData, RelativeOffsetData, AbsoluteOffsetData, OffsetType from typing import List from setpoint_helper import HVACSetpoints, BuildingInfo import pandas as pd import numpy as np from datetime import datetime from dataclasses import dataclass, fields +import os +import openstudio -def get_month_day(year_index, total_indices, year=2007): - """ - for each setpoint temperature, - get the month and day type (weekday for weekend) that it belongs. - the year number need to modify if the simulation year is not 2007. - """ - - num_timsteps_per_hour = total_indices / 8760 - hour_num = year_index // num_timsteps_per_hour - day_num = int(hour_num // 24 + 1) - month = datetime.strptime(str(year) + "-" + str(day_num), "%Y-%j").strftime("%m") - - # need to modify based on the simulation year what the first day is - # the first day in 2007 is Monday - if day_num % 7 < 5: - day_type = 'weekday' - else: - day_type = 'weekend' - - return month, day_type @dataclass -class peak_time_default: - pre_peak_start_morning: int = 0 +class PeakTimeDefaults: + pre_peak_start_morning: int = 0 peak_start_morning: int = 0 peak_end_morning: int = 0 pre_peak_start_afternoon: int = 0 peak_start_afternoon: int = 0 peak_end_afternoon: int = 0 -def get_prepeak_and_peak_start_end(year_index, total_indices, on_peak_hour_weekday_dict, on_peak_hour_weekend_dict, setpoint_type): - """ - determine the prepeak start time, on peak start and end time, - in the unit of hour - """ - month, day_type = get_month_day(year_index, total_indices) +class HVACSetpoints: + def __init__(self, os_runner: openstudio.measure.OSRunner, + sim_year: int, + building_info: BuildingInfo, + cooling_setpoints: List[int], + heating_setpoints: List[int]): - if setpoint_type == 'heating': - pre_peak_duration = OffsetTimingData.heating_pre_peak_duration - if setpoint_type == 'cooling': - pre_peak_duration = OffsetTimingData.cooling_pre_peak_duration + self.runner = os_runner + self.sim_year = sim_year + self.building_info = building_info + self.cooling_setpoints = cooling_setpoints + self.heating_setpoints = heating_setpoints + self.total_indices = len(cooling_setpoints) + assert len(cooling_setpoints) == len(heating_setpoints) + self.num_timsteps_per_hour = self.total_indices // 8760 + self.shift = np.random.randint(-self.num_timsteps_per_hour, self.num_timsteps_per_hour, 1)[0] - if day_type == 'weekday': - row = on_peak_hour_weekday_dict[month] - else: - row = on_peak_hour_weekend_dict[month] - - row_morning = list(row.values())[:15] - row_afternoon = list(row.values())[11:] - - offset_time = peak_time_default() - if 1 in row_morning: - offset_time.peak_start_morning = row_morning.index(1) - offset_time.peak_end_morning = len(row_morning) - row_morning[::-1].index(1) - 1 - offset_time.pre_peak_start_morning = offset_time.peak_start_morning - pre_peak_duration - if 1 in row_afternoon: - offset_time.peak_start_afternoon = row_afternoon.index(1) + 11 - offset_time.peak_end_afternoon = len(row_afternoon) - row_afternoon[::-1].index(1) - 1 + 11 - offset_time.pre_peak_start_afternoon = offset_time.peak_start_afternoon - pre_peak_duration - - return offset_time - -def time_shift(time, num_timsteps_per_hour, shift): - time_shift = time * num_timsteps_per_hour + shift - return time_shift - -def get_setpoint_offset(year_index, total_indices, on_peak_hour_weekday_dict, on_peak_hour_weekend_dict, shift, setpoint_type): - """ - offset the setpoint to a certain value given by user inputs, - the defalut offset value for heating is: - increase 4F during prepeak time, decrase 4F during on peak time - the defalut offset value for cooling is: - decrease 4F during prepeak time, increase 4F during on peak time - """ - - num_timsteps_per_hour = total_indices / 8760 - offset_time = get_prepeak_and_peak_start_end(year_index, total_indices, on_peak_hour_weekday_dict, on_peak_hour_weekend_dict, setpoint_type) - - #To avoid coincidence response, randomly shift the demand response from - 1hour to 1 hour - for f in fields(offset_time): - value = getattr(offset_time, f.name) - value = time_shift(value, num_timsteps_per_hour, shift) - if isinstance(value, (int, float)): - setattr(offset_time, f.name, value) - - if setpoint_type == 'heating': - pre_peak_offset = RelativeOffsetData.heating_pre_peak_offset - on_peak_offset = RelativeOffsetData.heating_on_peak_offset - if setpoint_type == 'cooling': - pre_peak_offset = RelativeOffsetData.cooling_pre_peak_offset - on_peak_offset = RelativeOffsetData.cooling_on_peak_offset - - day_index = int(year_index % (24*num_timsteps_per_hour)) - if (offset_time.pre_peak_start_morning <= day_index < offset_time.peak_start_morning)\ - or (offset_time.pre_peak_start_afternoon <= day_index < offset_time.peak_start_afternoon): - setpoint_offset = pre_peak_offset - elif (offset_time.peak_start_morning <= day_index <= offset_time.peak_end_morning)\ - or (offset_time.peak_start_afternoon <= day_index <= offset_time.peak_end_afternoon): - setpoint_offset = on_peak_offset - else: - setpoint_offset = 0 - - return setpoint_offset - -def get_setpoint_absolute_value(year_index, total_indices, on_peak_hour_weekday_dict, on_peak_hour_weekend_dict, shift, setpoint_type, setpoint_default): - """ - set the setpoint to a fixed value given by user inputs - the default setpoint for heating is: - 80F during prepeak time, 55F during on peak time - the defalut setpoint for cooling is: - 60F during prepeak time, 80F during on peak time - """ - num_timsteps_per_hour = total_indices / 8760 - offset_time = get_prepeak_and_peak_start_end(year_index, total_indices, on_peak_hour_weekday_dict, on_peak_hour_weekend_dict, setpoint_type) - - #To avoid coincidence response, randomly shift the demand response from - 1hour to 1 hour - for f in fields(offset_time): - value = getattr(offset_time, f.name) - value = time_shift(value, num_timsteps_per_hour, shift) - if isinstance(value, (int, float)): - setattr(offset_time, f.name, value) - - if setpoint_type == 'heating': - pre_peak_setpoint = AbsoluteOffsetData.heating_pre_peak_setpoint - on_peak_setpoint = AbsoluteOffsetData.heating_on_peak_setpoint - if setpoint_type == 'cooling': - pre_peak_setpoint = AbsoluteOffsetData.cooling_pre_peak_setpoint - on_peak_setpoint = AbsoluteOffsetData.cooling_on_peak_setpoint - - day_index = int(year_index % (24*num_timsteps_per_hour)) - if (offset_time.pre_peak_start_morning <= day_index < offset_time.peak_start_morning)\ - or (offset_time.pre_peak_start_afternoon <= day_index < offset_time.peak_start_afternoon): - setpoint_reponse = pre_peak_setpoint - elif (offset_time.peak_start_morning <= day_index <= offset_time.peak_end_morning)\ - or (offset_time.peak_start_afternoon <= day_index <= offset_time.peak_end_afternoon): - setpoint_reponse = on_peak_setpoint - else: - setpoint_reponse = setpoint_default - - return setpoint_reponse - -def clip_setpoints(setpoint, setpoint_type): - """ - control the range of setpoint given by user inputs - the default range for heating is: 55-80F - the default range for cooling is: 60-80F - """ - - if setpoint_type == 'heating': - setpoint_max = RelativeOffsetData.heating_max - setpoint_min = RelativeOffsetData.heating_min - elif setpoint_type == 'cooling': - setpoint_max = RelativeOffsetData.cooling_max - setpoint_min = RelativeOffsetData.cooling_min - if setpoint > setpoint_max: - setpoint = setpoint_max - elif setpoint < setpoint_min: - setpoint = setpoint_min - return setpoint - -def modify_setpoints(runner, index, total_indices, on_peak_hour_weekday_dict, on_peak_hour_weekend_dict, shift, setpoints: HVACSetpoints): - if OffsetTypeData.offset_type == relative: # make a setpoint offset compared with the default setpoint - setpoints.heating_setpoint += get_setpoint_offset(index, total_indices, on_peak_hour_weekday_dict, on_peak_hour_weekend_dict, shift, 'heating') - setpoints.cooling_setpoint += get_setpoint_offset(index, total_indices, on_peak_hour_weekday_dict, on_peak_hour_weekend_dict, shift, 'cooling') - elif OffsetTypeData.offset_type == absolute: # set the setpoint to a fixed value - setpoints.heating_setpoint = get_setpoint_absolute_value(index, total_indices, on_peak_hour_weekday_dict, on_peak_hour_weekend_dict, shift, 'heating', setpoints.heating_setpoint) - setpoints.cooling_setpoint = get_setpoint_absolute_value(index, total_indices, on_peak_hour_weekday_dict, on_peak_hour_weekend_dict, shift, 'cooling', setpoints.cooling_setpoint) - - setpoints.heating_setpoint = clip_setpoints(setpoints.heating_setpoint, 'heating') - setpoints.cooling_setpoint = clip_setpoints(setpoints.cooling_setpoint, 'cooling') - return setpoints - - -def modify_all_setpoints(runner, multiple_setpoints: List[HVACSetpoints], building_info: BuildingInfo): - """Modify setpoints based on user arguments.""" - runner.registerInfo("Modifying setpoints ...") - runner.registerInfo("Values got are") - runner.registerInfo(f"{OffsetTypeData.offset_type.name}={OffsetTypeData.offset_type.val}") - runner.registerInfo(f"{RelativeOffsetData.heating_on_peak_offset.name}=" - f"{RelativeOffsetData.heating_on_peak_offset.val}") - runner.registerInfo(f"{RelativeOffsetData.cooling_on_peak_offset.name}=" - f"{RelativeOffsetData.cooling_on_peak_offset.val}") - runner.registerInfo(f"{RelativeOffsetData.heating_pre_peak_offset.name}=" - f"{RelativeOffsetData.heating_pre_peak_offset.val}") - runner.registerInfo(f"{RelativeOffsetData.cooling_pre_peak_offset.name}=" - f"{RelativeOffsetData.cooling_pre_peak_offset.val}") - runner.registerInfo(f"{OffsetTimingData.heating_on_peak_duration.name}=" - f"{OffsetTimingData.heating_on_peak_duration.val}") - runner.registerInfo(f"{OffsetTimingData.cooling_on_peak_duration.name}=" - f"{OffsetTimingData.cooling_on_peak_duration.val}") - runner.registerInfo(f"{OffsetTimingData.heating_pre_peak_duration.name}=" - f"{OffsetTimingData.heating_pre_peak_duration.val}") - runner.registerInfo(f"{OffsetTimingData.cooling_pre_peak_duration.name}=" - f"{OffsetTimingData.cooling_pre_peak_duration.val}") - runner.registerInfo(f"{AbsoluteOffsetData.cooling_on_peak_setpoint.name}=" - f"{AbsoluteOffsetData.cooling_on_peak_setpoint.val}") - runner.registerInfo(f"{AbsoluteOffsetData.cooling_pre_peak_setpoint.name}=" - f"{AbsoluteOffsetData.cooling_pre_peak_setpoint.val}") - runner.registerInfo(f"{AbsoluteOffsetData.heating_on_peak_setpoint.name}=" - f"{AbsoluteOffsetData.heating_on_peak_setpoint.val}") - runner.registerInfo(f"{AbsoluteOffsetData.heating_pre_peak_setpoint.name}=" - f"{AbsoluteOffsetData.heating_pre_peak_setpoint.val}") - runner.registerInfo(f"state={building_info.state}") - # Modify the setpoint using above data - ## on peak hour## - on_peak_hour_weekday = pd.read_csv(f"on_peak_hour/{building_info.state}_weekday_on_peak.csv") # csv file is generated from on_peak_hour_generation.py - on_peak_hour_weekend = pd.read_csv(f"on_peak_hour/{building_info.state}_weekend_on_peak.csv") # csv file is generated from on_peak_hour_generation.py - on_peak_hour_weekday_dict = on_peak_hour_weekday.set_index('month').transpose().to_dict() - on_peak_hour_weekend_dict = on_peak_hour_weekend.set_index('month').transpose().to_dict() - - #To avoid coincidence response, randomly shift the demand response from - 1hour to 1 hour - total_indices = len(multiple_setpoints) - num_timsteps_per_hour = total_indices / 8760 - shift = np.random.randint(-num_timsteps_per_hour, num_timsteps_per_hour, 1)[0] - - modified_setpoints = [] - for setpoints in multiple_setpoints: - index = 0 - # Modify the setpoints - modified_setpoints.append(modify_setpoints(runner, index, total_indices, on_peak_hour_weekday_dict, on_peak_hour_weekend_dict, shift, setpoints=setpoints)) - index += 1 - return True + current_dir = os.path.dirname(os.path.realpath(__file__)) + # csv file is generated from on_peak_hour_generation.py + on_peak_hour_weekday = pd.read_csv(f"{current_dir}/on_peak_hour/{building_info.state}_weekday_on_peak.csv") + # csv file is generated from on_peak_hour_generation.py + on_peak_hour_weekend = pd.read_csv(f"{current_dir}/on_peak_hour/{building_info.state}_weekend_on_peak.csv") + self.on_peak_hour_weekday_dict = on_peak_hour_weekday.set_index('month').transpose().to_dict() + self.on_peak_hour_weekend_dict = on_peak_hour_weekend.set_index('month').transpose().to_dict() + self.log_input() + self._modify_setpoint() + + def _get_month_day(self, indx): + """ + for each setpoint temperature, + get the month and day type (weekday for weekend) that it belongs. + the year number need to modify if the simulation year is not 2007. + """ + + num_timsteps_per_hour = self.total_indices / 8760 + hour_num = indx // num_timsteps_per_hour + day_num = int(hour_num // 24 + 1) + month = datetime.strptime(str(self.sim_year) + "-" + str(day_num), "%Y-%j").strftime("%m") + + # need to modify based on the simulation year what the first day is + # the first day in 2007 is Monday + if day_num % 7 < 5: + day_type = 'weekday' + else: + day_type = 'weekend' + return month, day_type + + def _get_prepeak_and_peak_start_end(self, index, setpoint_type): + """ + determine the prepeak start time, on peak start and end time, + in the unit of hour + """ + + month, day_type = self._get_month_day(index) + + if setpoint_type == 'heating': + pre_peak_duration = OffsetTimingData.heating_pre_peak_duration.val + elif setpoint_type == 'cooling': + pre_peak_duration = OffsetTimingData.cooling_pre_peak_duration.val + else: + raise ValueError(f"setpoint type {setpoint_type} is not supported") + + if day_type == 'weekday': + row = self.on_peak_hour_weekday_dict[month] + elif day_type == 'weekend': + row = self.on_peak_hour_weekend_dict[month] + else: + raise ValueError(f"day type {day_type} is not supported") + + assert pre_peak_duration is not None, "Pre-peak duration not set" + + row_morning = list(row.values())[:15] + row_afternoon = list(row.values())[11:] + + offset_time = PeakTimeDefaults() + if 1 in row_morning: + offset_time.peak_start_morning = row_morning.index(1) + offset_time.peak_end_morning = len(row_morning) - row_morning[::-1].index(1) - 1 + offset_time.pre_peak_start_morning = offset_time.peak_start_morning - pre_peak_duration + if 1 in row_afternoon: + offset_time.peak_start_afternoon = row_afternoon.index(1) + 11 + offset_time.peak_end_afternoon = len(row_afternoon) - row_afternoon[::-1].index(1) - 1 + 11 + offset_time.pre_peak_start_afternoon = offset_time.peak_start_afternoon - pre_peak_duration + return offset_time + + def _time_shift(self, time): + time_shift = time * self.num_timsteps_per_hour + self.shift + return time_shift + + def _get_setpoint_offset(self, index, setpoint_type) -> int: + """ + offset the setpoint to a certain value given by user inputs, + the defalut offset value for heating is: + increase 4F during prepeak time, decrase 4F during on peak time + the defalut offset value for cooling is: + decrease 4F during prepeak time, increase 4F during on peak time + """ + + offset_time = self._get_prepeak_and_peak_start_end(index, setpoint_type) + + # To avoid coincidence response, randomly shift the demand response from - 1hour to 1 hour + for f in fields(offset_time): + value = getattr(offset_time, f.name) + value = self._time_shift(value) + if isinstance(value, (int, float)): + setattr(offset_time, f.name, value) + + if setpoint_type == 'heating': + pre_peak_offset = RelativeOffsetData.heating_pre_peak_offset + on_peak_offset = RelativeOffsetData.heating_on_peak_offset + elif setpoint_type == 'cooling': + pre_peak_offset = RelativeOffsetData.cooling_pre_peak_offset + on_peak_offset = RelativeOffsetData.cooling_on_peak_offset + else: + raise ValueError(f"setpoint type {setpoint_type} is not supported") + + day_index = int(year_index % (24 * num_timsteps_per_hour)) + if (offset_time.pre_peak_start_morning <= day_index < offset_time.peak_start_morning)\ + or (offset_time.pre_peak_start_afternoon <= day_index < offset_time.peak_start_afternoon): + setpoint_offset = pre_peak_offset + elif (offset_time.peak_start_morning <= day_index <= offset_time.peak_end_morning)\ + or (offset_time.peak_start_afternoon <= day_index <= offset_time.peak_end_afternoon): + setpoint_offset = on_peak_offset + else: + setpoint_offset = 0 + + return setpoint_offset + + + def _get_setpoint_absolute_value(self, year_index, total_indices, on_peak_hour_weekday_dict, on_peak_hour_weekend_dict, shift, + setpoint_type, setpoint_default): + """ + set the setpoint to a fixed value given by user inputs + the default setpoint for heating is: + 80F during prepeak time, 55F during on peak time + the defalut setpoint for cooling is: + 60F during prepeak time, 80F during on peak time + """ + num_timsteps_per_hour = total_indices / 8760 + offset_time = get_prepeak_and_peak_start_end( + year_index, total_indices, on_peak_hour_weekday_dict, on_peak_hour_weekend_dict, setpoint_type) + + # To avoid coincidence response, randomly shift the demand response from - 1hour to 1 hour + for f in fields(offset_time): + value = getattr(offset_time, f.name) + value = time_shift(value, num_timsteps_per_hour, shift) + if isinstance(value, (int, float)): + setattr(offset_time, f.name, value) + + if setpoint_type == 'heating': + pre_peak_setpoint = AbsoluteOffsetData.heating_pre_peak_setpoint.val + on_peak_setpoint = AbsoluteOffsetData.heating_on_peak_setpoint.val + elif setpoint_type == 'cooling': + pre_peak_setpoint = AbsoluteOffsetData.cooling_pre_peak_setpoint.val + on_peak_setpoint = AbsoluteOffsetData.cooling_on_peak_setpoint.val + else: + raise ValueError(f"setpoint type {setpoint_type} is not supported") + + day_index = int(year_index % (24 * num_timsteps_per_hour)) + if (offset_time.pre_peak_start_morning <= day_index < offset_time.peak_start_morning)\ + or (offset_time.pre_peak_start_afternoon <= day_index < offset_time.peak_start_afternoon): + setpoint_reponse = pre_peak_setpoint + elif (offset_time.peak_start_morning <= day_index <= offset_time.peak_end_morning)\ + or (offset_time.peak_start_afternoon <= day_index <= offset_time.peak_end_afternoon): + setpoint_reponse = on_peak_setpoint + else: + setpoint_reponse = setpoint_default + + return setpoint_reponse + + + def _clip_setpoints(self, setpoint, setpoint_type): + """ + control the range of setpoint given by user inputs + the default range for heating is: 55-80F + the default range for cooling is: 60-80F + """ + + if setpoint_type == 'heating': + setpoint_max = RelativeOffsetData.heating_max + setpoint_min = RelativeOffsetData.heating_min + elif setpoint_type == 'cooling': + setpoint_max = RelativeOffsetData.cooling_max + setpoint_min = RelativeOffsetData.cooling_min + + if setpoint > setpoint_max: + setpoint = setpoint_max + elif setpoint < setpoint_min: + setpoint = setpoint_min + return setpoint + + + def _modify_setpoint(self): + for index in range(self.total_indices): + if OffsetTypeData.offset_type == OffsetType.relative: # make a setpoint offset compared with the default setpoint + self.heating_setpoints[index] += self._get_setpoint_offset(index, 'heating') + self.cooling_setpoints[index] += self._get_setpoint_offset(index, 'cooling') + # elif OffsetTypeData.offset_type == OffsetType.absolute: # set the setpoint to a fixed value + # setpoints.heating_setpoint[index] = get_setpoint_absolute_value( + # index, total_indices, on_peak_hour_weekday_dict, on_peak_hour_weekend_dict, shift, 'heating', setpoints.heating_setpoint) + # setpoints.cooling_setpoint[index] = get_setpoint_absolute_value( + # index, total_indices, on_peak_hour_weekday_dict, on_peak_hour_weekend_dict, shift, 'cooling', setpoints.cooling_setpoint) + + # setpoints.heating_setpoint = clip_setpoints(setpoints.heating_setpoint, 'heating') + # setpoints.cooling_setpoint = clip_setpoints(setpoints.cooling_setpoint, 'cooling') + + def log_input(self): + """Modify setpoints based on user arguments.""" + self.runner.registerInfo("Modifying setpoints ...") + self.runner.registerInfo("Values got are") + self.runner.registerInfo(f"{OffsetTypeData.offset_type.name}={OffsetTypeData.offset_type.val}") + self.runner.registerInfo(f"{RelativeOffsetData.heating_on_peak_offset.name}=" + f"{RelativeOffsetData.heating_on_peak_offset.val}") + self.runner.registerInfo(f"{RelativeOffsetData.cooling_on_peak_offset.name}=" + f"{RelativeOffsetData.cooling_on_peak_offset.val}") + self.runner.registerInfo(f"{RelativeOffsetData.heating_pre_peak_offset.name}=" + f"{RelativeOffsetData.heating_pre_peak_offset.val}") + self.runner.registerInfo(f"{RelativeOffsetData.cooling_pre_peak_offset.name}=" + f"{RelativeOffsetData.cooling_pre_peak_offset.val}") + self.runner.registerInfo(f"{OffsetTimingData.heating_on_peak_duration.name}=" + f"{OffsetTimingData.heating_on_peak_duration.val}") + self.runner.registerInfo(f"{OffsetTimingData.cooling_on_peak_duration.name}=" + f"{OffsetTimingData.cooling_on_peak_duration.val}") + self.runner.registerInfo(f"{OffsetTimingData.heating_pre_peak_duration.name}=" + f"{OffsetTimingData.heating_pre_peak_duration.val}") + self.runner.registerInfo(f"{OffsetTimingData.cooling_pre_peak_duration.name}=" + f"{OffsetTimingData.cooling_pre_peak_duration.val}") + self.runner.registerInfo(f"{AbsoluteOffsetData.cooling_on_peak_setpoint.name}=" + f"{AbsoluteOffsetData.cooling_on_peak_setpoint.val}") + self.runner.registerInfo(f"{AbsoluteOffsetData.cooling_pre_peak_setpoint.name}=" + f"{AbsoluteOffsetData.cooling_pre_peak_setpoint.val}") + self.runner.registerInfo(f"{AbsoluteOffsetData.heating_on_peak_setpoint.name}=" + f"{AbsoluteOffsetData.heating_on_peak_setpoint.val}") + self.runner.registerInfo(f"{AbsoluteOffsetData.heating_pre_peak_setpoint.name}=" + f"{AbsoluteOffsetData.heating_pre_peak_setpoint.val}") + self.runner.registerInfo(f"state={building_info.state}") From f4cfaa8a19cf96ded93c8e92298f8424a237a9c8 Mon Sep 17 00:00:00 2001 From: Yingli Date: Tue, 6 Aug 2024 09:58:07 -0600 Subject: [PATCH 13/21] unit test --- .../resources/test_setpoint.py | 106 ------------------ 1 file changed, 106 deletions(-) delete mode 100644 measures/LoadFlexibility/resources/test_setpoint.py diff --git a/measures/LoadFlexibility/resources/test_setpoint.py b/measures/LoadFlexibility/resources/test_setpoint.py deleted file mode 100644 index 0c27eea975..0000000000 --- a/measures/LoadFlexibility/resources/test_setpoint.py +++ /dev/null @@ -1,106 +0,0 @@ -import unittest -import setpoint -import pandas as pd -from dataclasses import fields - -class Testsetpoint(unittest.TestCase): - - @classmethod - def setUpClass(cls): - print('setUpClass') - - @classmethod - def tearDownClass(cls): - print('tearDownClass') - - def setUp(self): - print('setUp') - state = 'CO' - on_peak_hour_weekday = pd.read_csv(f"on_peak_hour/{state}_weekday_on_peak.csv") - on_peak_hour_weekend = pd.read_csv(f"on_peak_hour/{state}_weekend_on_peak.csv") - self.on_peak_hour_weekday_dict = on_peak_hour_weekday.set_index('month').transpose().to_dict() - self.on_peak_hour_weekend_dict = on_peak_hour_weekend.set_index('month').transpose().to_dict() - - def tearDown(self): - print('tearDown') - - def test_get_month_day(self): - print('test_get_month_day') - self.assertEqual(setpoint.get_month_day(8755, 8760), (12, 'weekday')) - self.assertEqual(setpoint.get_month_day(2, 8760), (1, 'weekday')) - - def test_get_prepeak_and_peak_start_end_winter(self): - print('test_get_prepeak_and_peak_start_end_winter') - offset_time = setpoint.get_prepeak_and_peak_start_end(2, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 'heating') - self.assertEqual(offset_time.pre_peak_start_morning, 1) - self.assertEqual(offset_time.peak_start_morning, 5) - self.assertEqual(offset_time.peak_end_morning, 8) - self.assertEqual(offset_time.pre_peak_start_afternoon, 13) - self.assertEqual(offset_time.peak_start_afternoon, 17) - self.assertEqual(offset_time.peak_end_afternoon, 20) - - def test_get_prepeak_and_peak_start_end_summer(self): - print('test_get_prepeak_and_peak_start_end_summer') - offset_time = setpoint.get_prepeak_and_peak_start_end(5000, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 'cooling') - self.assertEqual(offset_time.pre_peak_start_afternoon, 11) - self.assertEqual(offset_time.peak_start_afternoon, 15) - self.assertEqual(offset_time.peak_end_afternoon, 18) - - def test_time_shift(self): - print('test_time_shift') - offset_time = setpoint.get_prepeak_and_peak_start_end(2, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 'heating') - for f in fields(offset_time): - value = getattr(offset_time, f.name) - value = setpoint.time_shift(value, 1, 1) - if isinstance(value, (int, float)): - setattr(offset_time, f.name, value) - self.assertEqual(offset_time.pre_peak_start_morning, 2) - self.assertEqual(offset_time.peak_start_morning, 6) - self.assertEqual(offset_time.peak_end_morning, 9) - self.assertEqual(offset_time.pre_peak_start_afternoon, 14) - self.assertEqual(offset_time.peak_start_afternoon, 18) - self.assertEqual(offset_time.peak_end_afternoon, 21) - - def test_get_setpoint_offset_heating(self): - print('test_get_setpoint_offset_heating') - setpoint_offset = setpoint.get_setpoint_offset(3, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating') - self.assertEqual(setpoint_offset, 4) - setpoint_offset = setpoint.get_setpoint_offset(7, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating') - self.assertEqual(setpoint_offset, -4) - - def test_get_setpoint_offset_cooling(self): - print('test_get_setpoint_offset_cooling') - setpoint_offset = setpoint.get_setpoint_offset(2916, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling') - self.assertEqual(setpoint_offset, -4) - setpoint_offset = setpoint.get_setpoint_offset(2920, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling') - self.assertEqual(setpoint_offset, 4) - - def test_get_setpoint_absolute_value_heating(self): - print('test_get_setpoint_absolute_value_heating') - setpoint_reponse = setpoint.get_setpoint_absolute_value(3, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating', 70) - self.assertEqual(setpoint_reponse, 80) - setpoint_reponse = setpoint.get_setpoint_absolute_value(7, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating', 70) - self.assertEqual(setpoint_reponse, 55) - setpoint_reponse = setpoint.get_setpoint_absolute_value(10, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating', 70) - self.assertEqual(setpoint_reponse, 70) - - def test_get_setpoint_absolute_value_cooling(self): - print('test_get_setpoint_absolute_value_cooling') - setpoint_reponse = setpoint.get_setpoint_absolute_value(2916, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling', 70) - self.assertEqual(setpoint_reponse, 60) - setpoint_reponse = setpoint.get_setpoint_absolute_value(2920, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling', 70) - self.assertEqual(setpoint_reponse, 80) - setpoint_reponse = setpoint.get_setpoint_absolute_value(2924, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling', 70) - self.assertEqual(setpoint_reponse, 70) - - def test_clip_setpoints(self): - print('test_clip_setpoints') - self.assertEqual(setpoint.clip_setpoints(90, 'heating'), 80) - self.assertEqual(setpoint.clip_setpoints(70, 'heating'), 70) - self.assertEqual(setpoint.clip_setpoints(40, 'heating'), 55) - self.assertEqual(setpoint.clip_setpoints(90, 'cooling'), 80) - self.assertEqual(setpoint.clip_setpoints(70, 'cooling'), 70) - self.assertEqual(setpoint.clip_setpoints(40, 'cooling'), 60) - -if __name__ == '__main__': - unittest.main() \ No newline at end of file From 9441a9f193654e2c016d0e3a89ddb03c1cfc7db5 Mon Sep 17 00:00:00 2001 From: Yingli Date: Tue, 6 Aug 2024 09:58:50 -0600 Subject: [PATCH 14/21] unit test --- .../tests/on_peak_hour/CO_weekday_on_peak.csv | 13 ++ .../tests/on_peak_hour/CO_weekend_on_peak.csv | 13 ++ .../LoadFlexibility/tests/test_setpoint.py | 111 ++++++++++++++++++ 3 files changed, 137 insertions(+) create mode 100644 measures/LoadFlexibility/tests/on_peak_hour/CO_weekday_on_peak.csv create mode 100644 measures/LoadFlexibility/tests/on_peak_hour/CO_weekend_on_peak.csv create mode 100644 measures/LoadFlexibility/tests/test_setpoint.py diff --git a/measures/LoadFlexibility/tests/on_peak_hour/CO_weekday_on_peak.csv b/measures/LoadFlexibility/tests/on_peak_hour/CO_weekday_on_peak.csv new file mode 100644 index 0000000000..ac4721f3b9 --- /dev/null +++ b/measures/LoadFlexibility/tests/on_peak_hour/CO_weekday_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/tests/on_peak_hour/CO_weekend_on_peak.csv b/measures/LoadFlexibility/tests/on_peak_hour/CO_weekend_on_peak.csv new file mode 100644 index 0000000000..ac4721f3b9 --- /dev/null +++ b/measures/LoadFlexibility/tests/on_peak_hour/CO_weekend_on_peak.csv @@ -0,0 +1,13 @@ +month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 +10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 +12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/tests/test_setpoint.py b/measures/LoadFlexibility/tests/test_setpoint.py new file mode 100644 index 0000000000..d62a7bd707 --- /dev/null +++ b/measures/LoadFlexibility/tests/test_setpoint.py @@ -0,0 +1,111 @@ +import unittest +import pandas as pd +from dataclasses import fields +from pathlib import Path +import sys +# update python path to include parent folder +CURRENT_DIR_PATH = Path(__file__).parent.absolute() +sys.path.insert(0, str(CURRENT_DIR_PATH.parent)+'/resources') +import setpoint + +class Testsetpoint(unittest.TestCase): + + @classmethod + def setUpClass(cls): + print('setUpClass') + + @classmethod + def tearDownClass(cls): + print('tearDownClass') + + def setUp(self): + print('setUp') + state = 'CO' + on_peak_hour_weekday = pd.read_csv(f"on_peak_hour/{state}_weekday_on_peak.csv") + on_peak_hour_weekend = pd.read_csv(f"on_peak_hour/{state}_weekend_on_peak.csv") + self.on_peak_hour_weekday_dict = on_peak_hour_weekday.set_index('month').transpose().to_dict() + self.on_peak_hour_weekend_dict = on_peak_hour_weekend.set_index('month').transpose().to_dict() + + def tearDown(self): + print('tearDown') + + def test_get_month_day(self): + print('test_get_month_day') + self.assertEqual(setpoint.get_month_day(8755, 8760), (12, 'weekday')) + self.assertEqual(setpoint.get_month_day(2, 8760), (1, 'weekday')) + + def test_get_prepeak_and_peak_start_end_winter(self): + print('test_get_prepeak_and_peak_start_end_winter') + offset_time = setpoint.get_prepeak_and_peak_start_end(2, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 'heating') + self.assertEqual(offset_time.pre_peak_start_morning, 1) + self.assertEqual(offset_time.peak_start_morning, 5) + self.assertEqual(offset_time.peak_end_morning, 8) + self.assertEqual(offset_time.pre_peak_start_afternoon, 13) + self.assertEqual(offset_time.peak_start_afternoon, 17) + self.assertEqual(offset_time.peak_end_afternoon, 20) + + def test_get_prepeak_and_peak_start_end_summer(self): + print('test_get_prepeak_and_peak_start_end_summer') + offset_time = setpoint.get_prepeak_and_peak_start_end(5000, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 'cooling') + self.assertEqual(offset_time.pre_peak_start_afternoon, 11) + self.assertEqual(offset_time.peak_start_afternoon, 15) + self.assertEqual(offset_time.peak_end_afternoon, 18) + + def test_time_shift(self): + print('test_time_shift') + offset_time = setpoint.get_prepeak_and_peak_start_end(2, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 'heating') + for f in fields(offset_time): + value = getattr(offset_time, f.name) + value = setpoint.time_shift(value, 1, 1) + if isinstance(value, (int, float)): + setattr(offset_time, f.name, value) + self.assertEqual(offset_time.pre_peak_start_morning, 2) + self.assertEqual(offset_time.peak_start_morning, 6) + self.assertEqual(offset_time.peak_end_morning, 9) + self.assertEqual(offset_time.pre_peak_start_afternoon, 14) + self.assertEqual(offset_time.peak_start_afternoon, 18) + self.assertEqual(offset_time.peak_end_afternoon, 21) + + def test_get_setpoint_offset_heating(self): + print('test_get_setpoint_offset_heating') + setpoint_offset = setpoint.get_setpoint_offset(3, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating') + self.assertEqual(setpoint_offset, 4) + setpoint_offset = setpoint.get_setpoint_offset(7, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating') + self.assertEqual(setpoint_offset, -4) + + def test_get_setpoint_offset_cooling(self): + print('test_get_setpoint_offset_cooling') + setpoint_offset = setpoint.get_setpoint_offset(2916, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling') + self.assertEqual(setpoint_offset, -4) + setpoint_offset = setpoint.get_setpoint_offset(2920, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling') + self.assertEqual(setpoint_offset, 4) + + def test_get_setpoint_absolute_value_heating(self): + print('test_get_setpoint_absolute_value_heating') + setpoint_reponse = setpoint.get_setpoint_absolute_value(3, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating', 70) + self.assertEqual(setpoint_reponse, 80) + setpoint_reponse = setpoint.get_setpoint_absolute_value(7, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating', 70) + self.assertEqual(setpoint_reponse, 55) + setpoint_reponse = setpoint.get_setpoint_absolute_value(10, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating', 70) + self.assertEqual(setpoint_reponse, 70) + + def test_get_setpoint_absolute_value_cooling(self): + print('test_get_setpoint_absolute_value_cooling') + setpoint_reponse = setpoint.get_setpoint_absolute_value(2916, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling', 70) + self.assertEqual(setpoint_reponse, 60) + setpoint_reponse = setpoint.get_setpoint_absolute_value(2920, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling', 70) + self.assertEqual(setpoint_reponse, 80) + setpoint_reponse = setpoint.get_setpoint_absolute_value(2924, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling', 70) + self.assertEqual(setpoint_reponse, 70) + + def test_clip_setpoints(self): + print('test_clip_setpoints') + self.assertEqual(setpoint.clip_setpoints(90, 'heating'), 80) + self.assertEqual(setpoint.clip_setpoints(70, 'heating'), 70) + self.assertEqual(setpoint.clip_setpoints(40, 'heating'), 55) + self.assertEqual(setpoint.clip_setpoints(90, 'cooling'), 80) + self.assertEqual(setpoint.clip_setpoints(70, 'cooling'), 70) + self.assertEqual(setpoint.clip_setpoints(40, 'cooling'), 60) + +if __name__ == '__main__': + unittest.main() \ No newline at end of file From 3e4a246d27f65975a20b2e7b68e13ffd06c359c1 Mon Sep 17 00:00:00 2001 From: Rajendra Adhikari Date: Tue, 13 Aug 2024 18:11:28 -0500 Subject: [PATCH 15/21] Update test files --- measures/LoadFlexibility/measure.py | 6 +- .../LoadFlexibility/resources/input_helper.py | 10 +- .../LoadFlexibility/resources/setpoint.py | 27 +- .../resources/setpoint_helper.py | 2 +- .../resources/test_setpoint.py | 106 + resources/options_lookup.tsv | 27947 ++++++++-------- 6 files changed, 14122 insertions(+), 13976 deletions(-) create mode 100644 measures/LoadFlexibility/resources/test_setpoint.py diff --git a/measures/LoadFlexibility/measure.py b/measures/LoadFlexibility/measure.py index dd359c50ba..7683d0a3f2 100644 --- a/measures/LoadFlexibility/measure.py +++ b/measures/LoadFlexibility/measure.py @@ -26,7 +26,7 @@ from setpoint import modify_all_setpoints from input_helper import OffsetType, RelativeOffsetData, AbsoluteOffsetData, ALL_MEASURE_ARGS from xml_helper import HPXML -from setpoint_helper import HVACSetpoints, BuildingInfo +from setpoint_helper import HVACSetpointVals, BuildingInfo sys.path.pop(0) @@ -79,7 +79,7 @@ def get_hpxml_path(self, runner: openstudio.measure.OSRunner): if 'HPXMLtoOpenStudio' in step['measure_dir_name']][0] return hpxml_path - def get_setpoint_csv(self, setpoint: HVACSetpoints): + def get_setpoint_csv(self, setpoint: HVACSetpointVals): header = 'heating_setpoint,cooling_setpoint' vals = '\n'.join([','.join([str(v) for v in val_pair]) for val_pair in zip(setpoint.heating_setpoint, setpoint.cooling_setpoint)]) @@ -123,7 +123,7 @@ def run( result = subprocess.run(["openstudio", f"{RESOURCES_DIR}/create_setpoint_schedules.rb", hpxml_path, osw_path], capture_output=True) - setpoints = [HVACSetpoints(**setpoint) for setpoint in json.loads(result.stdout) + setpoints = [HVACSetpointVals(**setpoint) for setpoint in json.loads(result.stdout) ] # [{"heating setpoint": [], "cooling setpoint": []}] if result.returncode != 0: runner.registerError(f"Failed to run create_setpoint_schedules.rb : {result.stderr}") diff --git a/measures/LoadFlexibility/resources/input_helper.py b/measures/LoadFlexibility/resources/input_helper.py index cd11fd2a32..c5887218d0 100644 --- a/measures/LoadFlexibility/resources/input_helper.py +++ b/measures/LoadFlexibility/resources/input_helper.py @@ -1,5 +1,5 @@ from dataclasses import dataclass, field -import openstudio +#import openstudio from typing import Optional from typing import TypeVar, Generic, List T = TypeVar('T') @@ -87,7 +87,7 @@ class __RelativeOffsetData: type=int, default=4, displayname="Heating Pre-Peak Offset (deg F)", - description="How much offset to apply to the heating schedule in degree fahrenheit before the peak. Only used" + description="How much increase offset to apply to the heating schedule in degree fahrenheit before the peak. Only used" " if offset type is relative." ) heating_on_peak_offset: Argument[int] = Argument( @@ -95,7 +95,7 @@ class __RelativeOffsetData: type=int, default=4, displayname="Heating On-Peak Offset (deg F)", - description="How much offset to apply to the heating schedule in degree fahrenheit on the peak. Only used" + description="How much decrease offset to apply to the heating schedule in degree fahrenheit on the peak. Only used" " if offset type is relative." ) heating_max: Argument[int] = Argument( @@ -119,7 +119,7 @@ class __RelativeOffsetData: type=int, default=4, displayname="Cooling Pre-Peak Offset (deg F)", - description="How much offset to apply to the cooling schedule in degree fahrenheit before the peak." + description="How much decrease offset to apply to the cooling schedule in degree fahrenheit before the peak." " Only used if offset type is relative." ) cooling_on_peak_offset: Argument[int] = Argument( @@ -127,7 +127,7 @@ class __RelativeOffsetData: type=int, default=4, displayname="Cooling On-Peak Offset (deg F)", - description="How much offset to apply to the cooling schedule in degree fahrenheit on the peak." + description="How much increase offset to apply to the cooling schedule in degree fahrenheit on the peak." " Only used if offset type is relative." ) cooling_max: Argument[int] = Argument( diff --git a/measures/LoadFlexibility/resources/setpoint.py b/measures/LoadFlexibility/resources/setpoint.py index b0a3b04261..b305003dec 100644 --- a/measures/LoadFlexibility/resources/setpoint.py +++ b/measures/LoadFlexibility/resources/setpoint.py @@ -1,8 +1,9 @@ from input_helper import OffsetTypeData, OffsetTimingData, RelativeOffsetData, AbsoluteOffsetData, OffsetType -from typing import List -from setpoint_helper import HVACSetpoints, BuildingInfo +from typing import List, Tuple +from setpoint_helper import HVACSetpointVals, BuildingInfo import pandas as pd import numpy as np +import math from datetime import datetime from dataclasses import dataclass, fields import os @@ -36,7 +37,6 @@ def __init__(self, os_runner: openstudio.measure.OSRunner, self.num_timsteps_per_hour = self.total_indices // 8760 self.shift = np.random.randint(-self.num_timsteps_per_hour, self.num_timsteps_per_hour, 1)[0] - current_dir = os.path.dirname(os.path.realpath(__file__)) # csv file is generated from on_peak_hour_generation.py on_peak_hour_weekday = pd.read_csv(f"{current_dir}/on_peak_hour/{building_info.state}_weekday_on_peak.csv") @@ -47,7 +47,7 @@ def __init__(self, os_runner: openstudio.measure.OSRunner, self.log_input() self._modify_setpoint() - def _get_month_day(self, indx): + def _get_month_day(self, indx) -> Tuple[int, str]: """ for each setpoint temperature, get the month and day type (weekday for weekend) that it belongs. @@ -57,7 +57,7 @@ def _get_month_day(self, indx): num_timsteps_per_hour = self.total_indices / 8760 hour_num = indx // num_timsteps_per_hour day_num = int(hour_num // 24 + 1) - month = datetime.strptime(str(self.sim_year) + "-" + str(day_num), "%Y-%j").strftime("%m") + month = int(datetime.strptime(str(self.sim_year) + "-" + str(day_num), "%Y-%j").strftime("%m")) # need to modify based on the simulation year what the first day is # the first day in 2007 is Monday @@ -77,8 +77,10 @@ def _get_prepeak_and_peak_start_end(self, index, setpoint_type): if setpoint_type == 'heating': pre_peak_duration = OffsetTimingData.heating_pre_peak_duration.val + on_peak_duration = OffsetTimingData.heating_on_peak_duration.val elif setpoint_type == 'cooling': pre_peak_duration = OffsetTimingData.cooling_pre_peak_duration.val + on_peak_duration = OffsetTimingData.cooling_on_peak_duration.val else: raise ValueError(f"setpoint type {setpoint_type} is not supported") @@ -90,18 +92,25 @@ def _get_prepeak_and_peak_start_end(self, index, setpoint_type): raise ValueError(f"day type {day_type} is not supported") assert pre_peak_duration is not None, "Pre-peak duration not set" + assert on_peak_duration is not None, "On-peak duration not set" row_morning = list(row.values())[:15] row_afternoon = list(row.values())[11:] offset_time = PeakTimeDefaults() if 1 in row_morning: - offset_time.peak_start_morning = row_morning.index(1) - offset_time.peak_end_morning = len(row_morning) - row_morning[::-1].index(1) - 1 + on_peak_start_index = row_morning.index(1) + on_peak_end_index = len(row_morning) - row_morning[::-1].index(1) - 1 + on_peak_mid_index = math.ceil((on_peak_start_index + on_peak_end_index) / 2) + offset_time.peak_start_morning = math.ceil(on_peak_mid_index - on_peak_duration / 2) + offset_time.peak_end_morning = math.ceil(on_peak_mid_index + on_peak_duration / 2)-1 offset_time.pre_peak_start_morning = offset_time.peak_start_morning - pre_peak_duration if 1 in row_afternoon: - offset_time.peak_start_afternoon = row_afternoon.index(1) + 11 - offset_time.peak_end_afternoon = len(row_afternoon) - row_afternoon[::-1].index(1) - 1 + 11 + on_peak_start_index = row_afternoon.index(1) + 11 + on_peak_end_index = len(row_afternoon) - row_afternoon[::-1].index(1) - 1 + 11 + on_peak_mid_index = math.ceil((on_peak_start_index + on_peak_end_index)/2) + offset_time.peak_start_afternoon = math.ceil(on_peak_mid_index - on_peak_duration / 2) + offset_time.peak_end_afternoon = math.ceil(on_peak_mid_index + on_peak_duration / 2) - 1 offset_time.pre_peak_start_afternoon = offset_time.peak_start_afternoon - pre_peak_duration return offset_time diff --git a/measures/LoadFlexibility/resources/setpoint_helper.py b/measures/LoadFlexibility/resources/setpoint_helper.py index 85ca623bb5..87b2dbb387 100644 --- a/measures/LoadFlexibility/resources/setpoint_helper.py +++ b/measures/LoadFlexibility/resources/setpoint_helper.py @@ -3,7 +3,7 @@ @dataclass(frozen=True) -class HVACSetpoints: +class HVACSetpointVals: heating_setpoint: List[float] cooling_setpoint: List[float] diff --git a/measures/LoadFlexibility/resources/test_setpoint.py b/measures/LoadFlexibility/resources/test_setpoint.py new file mode 100644 index 0000000000..0c27eea975 --- /dev/null +++ b/measures/LoadFlexibility/resources/test_setpoint.py @@ -0,0 +1,106 @@ +import unittest +import setpoint +import pandas as pd +from dataclasses import fields + +class Testsetpoint(unittest.TestCase): + + @classmethod + def setUpClass(cls): + print('setUpClass') + + @classmethod + def tearDownClass(cls): + print('tearDownClass') + + def setUp(self): + print('setUp') + state = 'CO' + on_peak_hour_weekday = pd.read_csv(f"on_peak_hour/{state}_weekday_on_peak.csv") + on_peak_hour_weekend = pd.read_csv(f"on_peak_hour/{state}_weekend_on_peak.csv") + self.on_peak_hour_weekday_dict = on_peak_hour_weekday.set_index('month').transpose().to_dict() + self.on_peak_hour_weekend_dict = on_peak_hour_weekend.set_index('month').transpose().to_dict() + + def tearDown(self): + print('tearDown') + + def test_get_month_day(self): + print('test_get_month_day') + self.assertEqual(setpoint.get_month_day(8755, 8760), (12, 'weekday')) + self.assertEqual(setpoint.get_month_day(2, 8760), (1, 'weekday')) + + def test_get_prepeak_and_peak_start_end_winter(self): + print('test_get_prepeak_and_peak_start_end_winter') + offset_time = setpoint.get_prepeak_and_peak_start_end(2, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 'heating') + self.assertEqual(offset_time.pre_peak_start_morning, 1) + self.assertEqual(offset_time.peak_start_morning, 5) + self.assertEqual(offset_time.peak_end_morning, 8) + self.assertEqual(offset_time.pre_peak_start_afternoon, 13) + self.assertEqual(offset_time.peak_start_afternoon, 17) + self.assertEqual(offset_time.peak_end_afternoon, 20) + + def test_get_prepeak_and_peak_start_end_summer(self): + print('test_get_prepeak_and_peak_start_end_summer') + offset_time = setpoint.get_prepeak_and_peak_start_end(5000, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 'cooling') + self.assertEqual(offset_time.pre_peak_start_afternoon, 11) + self.assertEqual(offset_time.peak_start_afternoon, 15) + self.assertEqual(offset_time.peak_end_afternoon, 18) + + def test_time_shift(self): + print('test_time_shift') + offset_time = setpoint.get_prepeak_and_peak_start_end(2, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 'heating') + for f in fields(offset_time): + value = getattr(offset_time, f.name) + value = setpoint.time_shift(value, 1, 1) + if isinstance(value, (int, float)): + setattr(offset_time, f.name, value) + self.assertEqual(offset_time.pre_peak_start_morning, 2) + self.assertEqual(offset_time.peak_start_morning, 6) + self.assertEqual(offset_time.peak_end_morning, 9) + self.assertEqual(offset_time.pre_peak_start_afternoon, 14) + self.assertEqual(offset_time.peak_start_afternoon, 18) + self.assertEqual(offset_time.peak_end_afternoon, 21) + + def test_get_setpoint_offset_heating(self): + print('test_get_setpoint_offset_heating') + setpoint_offset = setpoint.get_setpoint_offset(3, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating') + self.assertEqual(setpoint_offset, 4) + setpoint_offset = setpoint.get_setpoint_offset(7, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating') + self.assertEqual(setpoint_offset, -4) + + def test_get_setpoint_offset_cooling(self): + print('test_get_setpoint_offset_cooling') + setpoint_offset = setpoint.get_setpoint_offset(2916, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling') + self.assertEqual(setpoint_offset, -4) + setpoint_offset = setpoint.get_setpoint_offset(2920, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling') + self.assertEqual(setpoint_offset, 4) + + def test_get_setpoint_absolute_value_heating(self): + print('test_get_setpoint_absolute_value_heating') + setpoint_reponse = setpoint.get_setpoint_absolute_value(3, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating', 70) + self.assertEqual(setpoint_reponse, 80) + setpoint_reponse = setpoint.get_setpoint_absolute_value(7, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating', 70) + self.assertEqual(setpoint_reponse, 55) + setpoint_reponse = setpoint.get_setpoint_absolute_value(10, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating', 70) + self.assertEqual(setpoint_reponse, 70) + + def test_get_setpoint_absolute_value_cooling(self): + print('test_get_setpoint_absolute_value_cooling') + setpoint_reponse = setpoint.get_setpoint_absolute_value(2916, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling', 70) + self.assertEqual(setpoint_reponse, 60) + setpoint_reponse = setpoint.get_setpoint_absolute_value(2920, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling', 70) + self.assertEqual(setpoint_reponse, 80) + setpoint_reponse = setpoint.get_setpoint_absolute_value(2924, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling', 70) + self.assertEqual(setpoint_reponse, 70) + + def test_clip_setpoints(self): + print('test_clip_setpoints') + self.assertEqual(setpoint.clip_setpoints(90, 'heating'), 80) + self.assertEqual(setpoint.clip_setpoints(70, 'heating'), 70) + self.assertEqual(setpoint.clip_setpoints(40, 'heating'), 55) + self.assertEqual(setpoint.clip_setpoints(90, 'cooling'), 80) + self.assertEqual(setpoint.clip_setpoints(70, 'cooling'), 70) + self.assertEqual(setpoint.clip_setpoints(40, 'cooling'), 60) + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/resources/options_lookup.tsv b/resources/options_lookup.tsv index 294a26829f..1ae24e4d5f 100644 --- a/resources/options_lookup.tsv +++ b/resources/options_lookup.tsv @@ -1,13958 +1,13989 @@ -Parameter Name Option Name Measure Dir Measure Arg 1 Measure Arg 2 ... -AHS Region "CBSA Atlanta-Sandy Springs-Roswell, GA" -AHS Region "CBSA Boston-Cambridge-Newton, MA-NH" -AHS Region "CBSA Chicago-Naperville-Elgin, IL-IN-WI" -AHS Region "CBSA Dallas-Fort Worth-Arlington, TX" -AHS Region "CBSA Detroit-Warren-Dearborn, MI" -AHS Region "CBSA Houston-The Woodlands-Sugar Land, TX" -AHS Region "CBSA Los Angeles-Long Beach-Anaheim, CA" -AHS Region "CBSA Miami-Fort Lauderdale-West Palm Beach, FL" -AHS Region "CBSA New York-Newark-Jersey City, NY-NJ-PA" -AHS Region "CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD" -AHS Region "CBSA Phoenix-Mesa-Scottsdale, AZ" -AHS Region "CBSA Riverside-San Bernardino-Ontario, CA" -AHS Region "CBSA San Francisco-Oakland-Hayward, CA" -AHS Region "CBSA Seattle-Tacoma-Bellevue, WA" -AHS Region "CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV" -AHS Region Non-CBSA East North Central -AHS Region Non-CBSA East South Central -AHS Region Non-CBSA Middle Atlantic -AHS Region Non-CBSA Mountain -AHS Region Non-CBSA New England -AHS Region Non-CBSA Pacific -AHS Region Non-CBSA South Atlantic -AHS Region Non-CBSA West North Central -AHS Region Non-CBSA West South Central -AIANNH Area No -AIANNH Area Yes -ASHRAE IECC Climate Zone 2004 1A ResStockArguments site_iecc_zone=1A site_type=auto -ASHRAE IECC Climate Zone 2004 2A ResStockArguments site_iecc_zone=2A site_type=auto -ASHRAE IECC Climate Zone 2004 2B ResStockArguments site_iecc_zone=2B site_type=auto -ASHRAE IECC Climate Zone 2004 3A ResStockArguments site_iecc_zone=3A site_type=auto -ASHRAE IECC Climate Zone 2004 3B ResStockArguments site_iecc_zone=3B site_type=auto -ASHRAE IECC Climate Zone 2004 3C ResStockArguments site_iecc_zone=3C site_type=auto -ASHRAE IECC Climate Zone 2004 4A ResStockArguments site_iecc_zone=4A site_type=auto -ASHRAE IECC Climate Zone 2004 4B ResStockArguments site_iecc_zone=4B site_type=auto -ASHRAE IECC Climate Zone 2004 4C ResStockArguments site_iecc_zone=4C site_type=auto -ASHRAE IECC Climate Zone 2004 5A ResStockArguments site_iecc_zone=5A site_type=auto -ASHRAE IECC Climate Zone 2004 5B ResStockArguments site_iecc_zone=5B site_type=auto -ASHRAE IECC Climate Zone 2004 6A ResStockArguments site_iecc_zone=6A site_type=auto -ASHRAE IECC Climate Zone 2004 6B ResStockArguments site_iecc_zone=6B site_type=auto -ASHRAE IECC Climate Zone 2004 7A ResStockArguments site_iecc_zone=7 site_type=auto -ASHRAE IECC Climate Zone 2004 7AK ResStockArguments site_iecc_zone=7 site_type=auto -ASHRAE IECC Climate Zone 2004 7B ResStockArguments site_iecc_zone=7 site_type=auto -ASHRAE IECC Climate Zone 2004 8AK ResStockArguments site_iecc_zone=8 site_type=auto -ASHRAE IECC Climate Zone 2004 - 2A Split "2A - FL, GA, AL, MS" -ASHRAE IECC Climate Zone 2004 - 2A Split "2A - TX, LA" -ASHRAE IECC Climate Zone 2004 - 2A Split 1A -ASHRAE IECC Climate Zone 2004 - 2A Split 2B -ASHRAE IECC Climate Zone 2004 - 2A Split 3A -ASHRAE IECC Climate Zone 2004 - 2A Split 3B -ASHRAE IECC Climate Zone 2004 - 2A Split 3C -ASHRAE IECC Climate Zone 2004 - 2A Split 4A -ASHRAE IECC Climate Zone 2004 - 2A Split 4B -ASHRAE IECC Climate Zone 2004 - 2A Split 4C -ASHRAE IECC Climate Zone 2004 - 2A Split 5A -ASHRAE IECC Climate Zone 2004 - 2A Split 5B -ASHRAE IECC Climate Zone 2004 - 2A Split 6A -ASHRAE IECC Climate Zone 2004 - 2A Split 6B -ASHRAE IECC Climate Zone 2004 - 2A Split 7A -ASHRAE IECC Climate Zone 2004 - 2A Split 7AK -ASHRAE IECC Climate Zone 2004 - 2A Split 7B -ASHRAE IECC Climate Zone 2004 - 2A Split 8AK -Area Median Income 0-30% -Area Median Income 100-120% -Area Median Income 120-150% -Area Median Income 150%+ -Area Median Income 30-60% -Area Median Income 60-80% -Area Median Income 80-100% -Area Median Income Not Available -Bathroom Spot Vent Hour Hour0 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=0 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour1 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=1 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour10 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=10 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour11 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=11 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour12 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=12 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour13 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=13 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour14 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=14 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour15 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=15 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour16 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=16 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour17 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=17 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour18 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=18 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour19 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=19 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour2 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=2 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour20 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=20 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour21 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=21 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour22 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=22 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour23 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=23 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour3 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=3 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour4 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=4 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour5 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=5 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour6 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=6 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour7 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=7 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour8 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=8 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour9 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=9 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Battery "20 kWh, 80% Round Trip Efficiency" ResStockArguments battery_present=true battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=0.8 -Battery "20 kWh, Garage" ResStockArguments battery_present=true battery_location=garage battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto -Battery "20 kWh, Outside" ResStockArguments battery_present=true battery_location=outside battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto -Battery 10 kWh ResStockArguments battery_present=true battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto -Battery None ResStockArguments battery_present=false battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto -Bedrooms 1 ResStockArguments geometry_unit_num_bedrooms=1 geometry_unit_num_bathrooms=auto -Bedrooms 2 ResStockArguments geometry_unit_num_bedrooms=2 geometry_unit_num_bathrooms=auto -Bedrooms 3 ResStockArguments geometry_unit_num_bedrooms=3 geometry_unit_num_bathrooms=auto -Bedrooms 4 ResStockArguments geometry_unit_num_bedrooms=4 geometry_unit_num_bathrooms=auto -Bedrooms 5 ResStockArguments geometry_unit_num_bedrooms=5 geometry_unit_num_bathrooms=auto -Building America Climate Zone Cold -Building America Climate Zone Hot-Dry -Building America Climate Zone Hot-Humid -Building America Climate Zone Marine -Building America Climate Zone Mixed-Dry -Building America Climate Zone Mixed-Humid -Building America Climate Zone Subarctic -Building America Climate Zone Very Cold -CEC Climate Zone 1 -CEC Climate Zone 10 -CEC Climate Zone 11 -CEC Climate Zone 12 -CEC Climate Zone 13 -CEC Climate Zone 14 -CEC Climate Zone 15 -CEC Climate Zone 16 -CEC Climate Zone 2 -CEC Climate Zone 3 -CEC Climate Zone 4 -CEC Climate Zone 5 -CEC Climate Zone 6 -CEC Climate Zone 7 -CEC Climate Zone 8 -CEC Climate Zone 9 -CEC Climate Zone None -Ceiling Fan "Premium Efficiency, 0.5F Offset" ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=140.8 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0.5 -Ceiling Fan "Standard Efficiency, 0.5F Offset" ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=70.4 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0.5 -Ceiling Fan "Standard Efficiency, No usage" ResStockArguments ceiling_fan_present=false ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=0 ceiling_fan_quantity=0 ceiling_fan_cooling_setpoint_temp_offset=0 -Ceiling Fan None ResStockArguments ceiling_fan_present=false ceiling_fan_label_energy_use=0 ceiling_fan_efficiency=0 ceiling_fan_quantity=0 ceiling_fan_cooling_setpoint_temp_offset=0 -Ceiling Fan Premium Efficiency ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=140.8 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0 -Ceiling Fan Standard Efficiency ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=70.4 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0 -Census Division East North Central -Census Division East South Central -Census Division Middle Atlantic -Census Division Mountain -Census Division New England -Census Division Pacific -Census Division South Atlantic -Census Division West North Central -Census Division West South Central -Census Division RECS East North Central -Census Division RECS East South Central -Census Division RECS Middle Atlantic -Census Division RECS Mountain North -Census Division RECS Mountain South -Census Division RECS New England -Census Division RECS Pacific -Census Division RECS South Atlantic -Census Division RECS West North Central -Census Division RECS West South Central -Census Region Midwest -Census Region Northeast -Census Region South -Census Region West -City "AK, Anchorage" ResStockArguments site_city=auto -City "AL, Auburn" ResStockArguments site_city=auto -City "AL, Birmingham" ResStockArguments site_city=auto -City "AL, Decatur" ResStockArguments site_city=auto -City "AL, Dothan" ResStockArguments site_city=auto -City "AL, Florence" ResStockArguments site_city=auto -City "AL, Gadsden" ResStockArguments site_city=auto -City "AL, Hoover" ResStockArguments site_city=auto -City "AL, Huntsville" ResStockArguments site_city=auto -City "AL, Madison" ResStockArguments site_city=auto -City "AL, Mobile" ResStockArguments site_city=auto -City "AL, Montgomery" ResStockArguments site_city=auto -City "AL, Phenix City" ResStockArguments site_city=auto -City "AL, Tuscaloosa" ResStockArguments site_city=auto -City "AR, Bentonville" ResStockArguments site_city=auto -City "AR, Conway" ResStockArguments site_city=auto -City "AR, Fayetteville" ResStockArguments site_city=auto -City "AR, Fort Smith" ResStockArguments site_city=auto -City "AR, Hot Springs" ResStockArguments site_city=auto -City "AR, Jonesboro" ResStockArguments site_city=auto -City "AR, Little Rock" ResStockArguments site_city=auto -City "AR, North Little Rock" ResStockArguments site_city=auto -City "AR, Pine Bluff" ResStockArguments site_city=auto -City "AR, Rogers" ResStockArguments site_city=auto -City "AR, Springdale" ResStockArguments site_city=auto -City "AZ, Apache Junction" ResStockArguments site_city=auto -City "AZ, Avondale" ResStockArguments site_city=auto -City "AZ, Buckeye" ResStockArguments site_city=auto -City "AZ, Bullhead City" ResStockArguments site_city=auto -City "AZ, Casa Grande" ResStockArguments site_city=auto -City "AZ, Casas Adobes" ResStockArguments site_city=auto -City "AZ, Catalina Foothills" ResStockArguments site_city=auto -City "AZ, Chandler" ResStockArguments site_city=auto -City "AZ, Flagstaff" ResStockArguments site_city=auto -City "AZ, Fortuna Foothills" ResStockArguments site_city=auto -City "AZ, Gilbert" ResStockArguments site_city=auto -City "AZ, Glendale" ResStockArguments site_city=auto -City "AZ, Goodyear" ResStockArguments site_city=auto -City "AZ, Green Valley" ResStockArguments site_city=auto -City "AZ, Lake Havasu City" ResStockArguments site_city=auto -City "AZ, Marana" ResStockArguments site_city=auto -City "AZ, Maricopa" ResStockArguments site_city=auto -City "AZ, Mesa" ResStockArguments site_city=auto -City "AZ, Oro Valley" ResStockArguments site_city=auto -City "AZ, Peoria" ResStockArguments site_city=auto -City "AZ, Phoenix" ResStockArguments site_city=auto -City "AZ, Prescott Valley" ResStockArguments site_city=auto -City "AZ, Prescott" ResStockArguments site_city=auto -City "AZ, San Tan Valley" ResStockArguments site_city=auto -City "AZ, Scottsdale" ResStockArguments site_city=auto -City "AZ, Sierra Vista" ResStockArguments site_city=auto -City "AZ, Sun City West" ResStockArguments site_city=auto -City "AZ, Sun City" ResStockArguments site_city=auto -City "AZ, Surprise" ResStockArguments site_city=auto -City "AZ, Tempe" ResStockArguments site_city=auto -City "AZ, Tucson" ResStockArguments site_city=auto -City "AZ, Yuma" ResStockArguments site_city=auto -City "CA, Alameda" ResStockArguments site_city=auto -City "CA, Alhambra" ResStockArguments site_city=auto -City "CA, Aliso Viejo" ResStockArguments site_city=auto -City "CA, Altadena" ResStockArguments site_city=auto -City "CA, Anaheim" ResStockArguments site_city=auto -City "CA, Antioch" ResStockArguments site_city=auto -City "CA, Apple Valley" ResStockArguments site_city=auto -City "CA, Arcadia" ResStockArguments site_city=auto -City "CA, Arden-Arcade" ResStockArguments site_city=auto -City "CA, Bakersfield" ResStockArguments site_city=auto -City "CA, Baldwin Park" ResStockArguments site_city=auto -City "CA, Bellflower" ResStockArguments site_city=auto -City "CA, Berkeley" ResStockArguments site_city=auto -City "CA, Beverly Hills" ResStockArguments site_city=auto -City "CA, Brea" ResStockArguments site_city=auto -City "CA, Brentwood" ResStockArguments site_city=auto -City "CA, Buena Park" ResStockArguments site_city=auto -City "CA, Burbank" ResStockArguments site_city=auto -City "CA, Camarillo" ResStockArguments site_city=auto -City "CA, Campbell" ResStockArguments site_city=auto -City "CA, Carlsbad" ResStockArguments site_city=auto -City "CA, Carmichael" ResStockArguments site_city=auto -City "CA, Carson" ResStockArguments site_city=auto -City "CA, Castro Valley" ResStockArguments site_city=auto -City "CA, Cathedral City" ResStockArguments site_city=auto -City "CA, Cerritos" ResStockArguments site_city=auto -City "CA, Chico" ResStockArguments site_city=auto -City "CA, Chino Hills" ResStockArguments site_city=auto -City "CA, Chino" ResStockArguments site_city=auto -City "CA, Chula Vista" ResStockArguments site_city=auto -City "CA, Citrus Heights" ResStockArguments site_city=auto -City "CA, Clovis" ResStockArguments site_city=auto -City "CA, Colton" ResStockArguments site_city=auto -City "CA, Compton" ResStockArguments site_city=auto -City "CA, Concord" ResStockArguments site_city=auto -City "CA, Corona" ResStockArguments site_city=auto -City "CA, Costa Mesa" ResStockArguments site_city=auto -City "CA, Covina" ResStockArguments site_city=auto -City "CA, Culver City" ResStockArguments site_city=auto -City "CA, Cupertino" ResStockArguments site_city=auto -City "CA, Cypress" ResStockArguments site_city=auto -City "CA, Daly City" ResStockArguments site_city=auto -City "CA, Dana Point" ResStockArguments site_city=auto -City "CA, Danville" ResStockArguments site_city=auto -City "CA, Davis" ResStockArguments site_city=auto -City "CA, Diamond Bar" ResStockArguments site_city=auto -City "CA, Downey" ResStockArguments site_city=auto -City "CA, Dublin" ResStockArguments site_city=auto -City "CA, East Los Angeles" ResStockArguments site_city=auto -City "CA, El Cajon" ResStockArguments site_city=auto -City "CA, El Dorado Hills" ResStockArguments site_city=auto -City "CA, El Monte" ResStockArguments site_city=auto -City "CA, Elk Grove" ResStockArguments site_city=auto -City "CA, Encinitas" ResStockArguments site_city=auto -City "CA, Escondido" ResStockArguments site_city=auto -City "CA, Fairfield" ResStockArguments site_city=auto -City "CA, Florence-Graham" ResStockArguments site_city=auto -City "CA, Florin" ResStockArguments site_city=auto -City "CA, Folsom" ResStockArguments site_city=auto -City "CA, Fontana" ResStockArguments site_city=auto -City "CA, Fountain Valley" ResStockArguments site_city=auto -City "CA, Fremont" ResStockArguments site_city=auto -City "CA, Fresno" ResStockArguments site_city=auto -City "CA, Fullerton" ResStockArguments site_city=auto -City "CA, Garden Grove" ResStockArguments site_city=auto -City "CA, Gardena" ResStockArguments site_city=auto -City "CA, Gilroy" ResStockArguments site_city=auto -City "CA, Glendale" ResStockArguments site_city=auto -City "CA, Glendora" ResStockArguments site_city=auto -City "CA, Hacienda Heights" ResStockArguments site_city=auto -City "CA, Hanford" ResStockArguments site_city=auto -City "CA, Hawthorne" ResStockArguments site_city=auto -City "CA, Hayward" ResStockArguments site_city=auto -City "CA, Hemet" ResStockArguments site_city=auto -City "CA, Hesperia" ResStockArguments site_city=auto -City "CA, Highland" ResStockArguments site_city=auto -City "CA, Huntington Beach" ResStockArguments site_city=auto -City "CA, Huntington Park" ResStockArguments site_city=auto -City "CA, Indio" ResStockArguments site_city=auto -City "CA, Inglewood" ResStockArguments site_city=auto -City "CA, Irvine" ResStockArguments site_city=auto -City "CA, La Habra" ResStockArguments site_city=auto -City "CA, La Mesa" ResStockArguments site_city=auto -City "CA, La Quinta" ResStockArguments site_city=auto -City "CA, Laguna Niguel" ResStockArguments site_city=auto -City "CA, Lake Elsinore" ResStockArguments site_city=auto -City "CA, Lake Forest" ResStockArguments site_city=auto -City "CA, Lakewood" ResStockArguments site_city=auto -City "CA, Lancaster" ResStockArguments site_city=auto -City "CA, Lincoln" ResStockArguments site_city=auto -City "CA, Livermore" ResStockArguments site_city=auto -City "CA, Lodi" ResStockArguments site_city=auto -City "CA, Long Beach" ResStockArguments site_city=auto -City "CA, Los Angeles" ResStockArguments site_city=auto -City "CA, Lynwood" ResStockArguments site_city=auto -City "CA, Madera" ResStockArguments site_city=auto -City "CA, Manhattan Beach" ResStockArguments site_city=auto -City "CA, Manteca" ResStockArguments site_city=auto -City "CA, Martinez" ResStockArguments site_city=auto -City "CA, Menifee" ResStockArguments site_city=auto -City "CA, Merced" ResStockArguments site_city=auto -City "CA, Milpitas" ResStockArguments site_city=auto -City "CA, Mission Viejo" ResStockArguments site_city=auto -City "CA, Modesto" ResStockArguments site_city=auto -City "CA, Montebello" ResStockArguments site_city=auto -City "CA, Monterey Park" ResStockArguments site_city=auto -City "CA, Moreno Valley" ResStockArguments site_city=auto -City "CA, Mountain View" ResStockArguments site_city=auto -City "CA, Murrieta" ResStockArguments site_city=auto -City "CA, Napa" ResStockArguments site_city=auto -City "CA, National City" ResStockArguments site_city=auto -City "CA, Newport Beach" ResStockArguments site_city=auto -City "CA, North Highlands" ResStockArguments site_city=auto -City "CA, Norwalk" ResStockArguments site_city=auto -City "CA, Novato" ResStockArguments site_city=auto -City "CA, Oakland" ResStockArguments site_city=auto -City "CA, Oceanside" ResStockArguments site_city=auto -City "CA, Ontario" ResStockArguments site_city=auto -City "CA, Orange" ResStockArguments site_city=auto -City "CA, Oxnard" ResStockArguments site_city=auto -City "CA, Palm Desert" ResStockArguments site_city=auto -City "CA, Palm Springs" ResStockArguments site_city=auto -City "CA, Palmdale" ResStockArguments site_city=auto -City "CA, Palo Alto" ResStockArguments site_city=auto -City "CA, Pasadena" ResStockArguments site_city=auto -City "CA, Perris" ResStockArguments site_city=auto -City "CA, Petaluma" ResStockArguments site_city=auto -City "CA, Pico Rivera" ResStockArguments site_city=auto -City "CA, Pittsburg" ResStockArguments site_city=auto -City "CA, Placentia" ResStockArguments site_city=auto -City "CA, Pleasanton" ResStockArguments site_city=auto -City "CA, Pomona" ResStockArguments site_city=auto -City "CA, Porterville" ResStockArguments site_city=auto -City "CA, Poway" ResStockArguments site_city=auto -City "CA, Rancho Cordova" ResStockArguments site_city=auto -City "CA, Rancho Cucamonga" ResStockArguments site_city=auto -City "CA, Rancho Palos Verdes" ResStockArguments site_city=auto -City "CA, Rancho Santa Margarita" ResStockArguments site_city=auto -City "CA, Redding" ResStockArguments site_city=auto -City "CA, Redlands" ResStockArguments site_city=auto -City "CA, Redondo Beach" ResStockArguments site_city=auto -City "CA, Redwood City" ResStockArguments site_city=auto -City "CA, Rialto" ResStockArguments site_city=auto -City "CA, Richmond" ResStockArguments site_city=auto -City "CA, Riverside" ResStockArguments site_city=auto -City "CA, Rocklin" ResStockArguments site_city=auto -City "CA, Rohnert Park" ResStockArguments site_city=auto -City "CA, Rosemead" ResStockArguments site_city=auto -City "CA, Roseville" ResStockArguments site_city=auto -City "CA, Rowland Heights" ResStockArguments site_city=auto -City "CA, Sacramento" ResStockArguments site_city=auto -City "CA, Salinas" ResStockArguments site_city=auto -City "CA, San Bernardino" ResStockArguments site_city=auto -City "CA, San Bruno" ResStockArguments site_city=auto -City "CA, San Buenaventura Ventura" ResStockArguments site_city=auto -City "CA, San Clemente" ResStockArguments site_city=auto -City "CA, San Diego" ResStockArguments site_city=auto -City "CA, San Francisco" ResStockArguments site_city=auto -City "CA, San Jose" ResStockArguments site_city=auto -City "CA, San Leandro" ResStockArguments site_city=auto -City "CA, San Luis Obispo" ResStockArguments site_city=auto -City "CA, San Marcos" ResStockArguments site_city=auto -City "CA, San Mateo" ResStockArguments site_city=auto -City "CA, San Rafael" ResStockArguments site_city=auto -City "CA, San Ramon" ResStockArguments site_city=auto -City "CA, Santa Ana" ResStockArguments site_city=auto -City "CA, Santa Barbara" ResStockArguments site_city=auto -City "CA, Santa Clara" ResStockArguments site_city=auto -City "CA, Santa Clarita" ResStockArguments site_city=auto -City "CA, Santa Cruz" ResStockArguments site_city=auto -City "CA, Santa Maria" ResStockArguments site_city=auto -City "CA, Santa Monica" ResStockArguments site_city=auto -City "CA, Santa Rosa" ResStockArguments site_city=auto -City "CA, Santee" ResStockArguments site_city=auto -City "CA, Simi Valley" ResStockArguments site_city=auto -City "CA, South Gate" ResStockArguments site_city=auto -City "CA, South Lake Tahoe" ResStockArguments site_city=auto -City "CA, South San Francisco" ResStockArguments site_city=auto -City "CA, South Whittier" ResStockArguments site_city=auto -City "CA, Stockton" ResStockArguments site_city=auto -City "CA, Sunnyvale" ResStockArguments site_city=auto -City "CA, Temecula" ResStockArguments site_city=auto -City "CA, Thousand Oaks" ResStockArguments site_city=auto -City "CA, Torrance" ResStockArguments site_city=auto -City "CA, Tracy" ResStockArguments site_city=auto -City "CA, Tulare" ResStockArguments site_city=auto -City "CA, Turlock" ResStockArguments site_city=auto -City "CA, Tustin" ResStockArguments site_city=auto -City "CA, Union City" ResStockArguments site_city=auto -City "CA, Upland" ResStockArguments site_city=auto -City "CA, Vacaville" ResStockArguments site_city=auto -City "CA, Vallejo" ResStockArguments site_city=auto -City "CA, Victorville" ResStockArguments site_city=auto -City "CA, Visalia" ResStockArguments site_city=auto -City "CA, Vista" ResStockArguments site_city=auto -City "CA, Walnut Creek" ResStockArguments site_city=auto -City "CA, West Covina" ResStockArguments site_city=auto -City "CA, West Hollywood" ResStockArguments site_city=auto -City "CA, West Sacramento" ResStockArguments site_city=auto -City "CA, Westminster" ResStockArguments site_city=auto -City "CA, Whittier" ResStockArguments site_city=auto -City "CA, Woodland" ResStockArguments site_city=auto -City "CA, Yorba Linda" ResStockArguments site_city=auto -City "CA, Yuba City" ResStockArguments site_city=auto -City "CA, Yucaipa" ResStockArguments site_city=auto -City "CO, Arvada" ResStockArguments site_city=auto -City "CO, Aurora" ResStockArguments site_city=auto -City "CO, Boulder" ResStockArguments site_city=auto -City "CO, Broomfield" ResStockArguments site_city=auto -City "CO, Castle Rock" ResStockArguments site_city=auto -City "CO, Centennial" ResStockArguments site_city=auto -City "CO, Colorado Springs" ResStockArguments site_city=auto -City "CO, Commerce City" ResStockArguments site_city=auto -City "CO, Denver" ResStockArguments site_city=auto -City "CO, Englewood" ResStockArguments site_city=auto -City "CO, Fort Collins" ResStockArguments site_city=auto -City "CO, Grand Junction" ResStockArguments site_city=auto -City "CO, Greeley" ResStockArguments site_city=auto -City "CO, Highlands Ranch" ResStockArguments site_city=auto -City "CO, Lakewood" ResStockArguments site_city=auto -City "CO, Littleton" ResStockArguments site_city=auto -City "CO, Longmont" ResStockArguments site_city=auto -City "CO, Loveland" ResStockArguments site_city=auto -City "CO, Parker" ResStockArguments site_city=auto -City "CO, Pueblo" ResStockArguments site_city=auto -City "CO, Thornton" ResStockArguments site_city=auto -City "CO, Westminster" ResStockArguments site_city=auto -City "CT, Bridgeport" ResStockArguments site_city=auto -City "CT, Bristol" ResStockArguments site_city=auto -City "CT, Danbury" ResStockArguments site_city=auto -City "CT, East Hartford" ResStockArguments site_city=auto -City "CT, Hartford" ResStockArguments site_city=auto -City "CT, Meriden" ResStockArguments site_city=auto -City "CT, Middletown" ResStockArguments site_city=auto -City "CT, Milford City Balance" ResStockArguments site_city=auto -City "CT, New Britain" ResStockArguments site_city=auto -City "CT, New Haven" ResStockArguments site_city=auto -City "CT, Norwalk" ResStockArguments site_city=auto -City "CT, Norwich" ResStockArguments site_city=auto -City "CT, Shelton" ResStockArguments site_city=auto -City "CT, Stamford" ResStockArguments site_city=auto -City "CT, Stratford" ResStockArguments site_city=auto -City "CT, Torrington" ResStockArguments site_city=auto -City "CT, Waterbury" ResStockArguments site_city=auto -City "CT, West Hartford" ResStockArguments site_city=auto -City "CT, West Haven" ResStockArguments site_city=auto -City "DC, Washington" ResStockArguments site_city=auto -City "DE, Dover" ResStockArguments site_city=auto -City "DE, Wilmington" ResStockArguments site_city=auto -City "FL, Alafaya" ResStockArguments site_city=auto -City "FL, Altamonte Springs" ResStockArguments site_city=auto -City "FL, Apopka" ResStockArguments site_city=auto -City "FL, Aventura" ResStockArguments site_city=auto -City "FL, Boca Raton" ResStockArguments site_city=auto -City "FL, Bonita Springs" ResStockArguments site_city=auto -City "FL, Boynton Beach" ResStockArguments site_city=auto -City "FL, Bradenton" ResStockArguments site_city=auto -City "FL, Brandon" ResStockArguments site_city=auto -City "FL, Cape Coral" ResStockArguments site_city=auto -City "FL, Carrollwood" ResStockArguments site_city=auto -City "FL, Clearwater" ResStockArguments site_city=auto -City "FL, Coconut Creek" ResStockArguments site_city=auto -City "FL, Coral Gables" ResStockArguments site_city=auto -City "FL, Coral Springs" ResStockArguments site_city=auto -City "FL, Country Club" ResStockArguments site_city=auto -City "FL, Dania Beach" ResStockArguments site_city=auto -City "FL, Davie" ResStockArguments site_city=auto -City "FL, Daytona Beach" ResStockArguments site_city=auto -City "FL, Deerfield Beach" ResStockArguments site_city=auto -City "FL, Delray Beach" ResStockArguments site_city=auto -City "FL, Deltona" ResStockArguments site_city=auto -City "FL, Doral" ResStockArguments site_city=auto -City "FL, Dunedin" ResStockArguments site_city=auto -City "FL, East Lake" ResStockArguments site_city=auto -City "FL, Estero" ResStockArguments site_city=auto -City "FL, Fort Lauderdale" ResStockArguments site_city=auto -City "FL, Fort Myers" ResStockArguments site_city=auto -City "FL, Fort Pierce" ResStockArguments site_city=auto -City "FL, Fountainebleau" ResStockArguments site_city=auto -City "FL, Four Corners" ResStockArguments site_city=auto -City "FL, Gainesville" ResStockArguments site_city=auto -City "FL, Greenacres" ResStockArguments site_city=auto -City "FL, Hallandale Beach" ResStockArguments site_city=auto -City "FL, Hialeah" ResStockArguments site_city=auto -City "FL, Hollywood" ResStockArguments site_city=auto -City "FL, Homestead" ResStockArguments site_city=auto -City "FL, Jacksonville" ResStockArguments site_city=auto -City "FL, Jupiter" ResStockArguments site_city=auto -City "FL, Kendale Lakes" ResStockArguments site_city=auto -City "FL, Kendall" ResStockArguments site_city=auto -City "FL, Kissimmee" ResStockArguments site_city=auto -City "FL, Lake Worth" ResStockArguments site_city=auto -City "FL, Lakeland" ResStockArguments site_city=auto -City "FL, Largo" ResStockArguments site_city=auto -City "FL, Lauderhill" ResStockArguments site_city=auto -City "FL, Lehigh Acres" ResStockArguments site_city=auto -City "FL, Marco Island" ResStockArguments site_city=auto -City "FL, Margate" ResStockArguments site_city=auto -City "FL, Melbourne" ResStockArguments site_city=auto -City "FL, Merritt Island" ResStockArguments site_city=auto -City "FL, Miami Beach" ResStockArguments site_city=auto -City "FL, Miami Gardens" ResStockArguments site_city=auto -City "FL, Miami" ResStockArguments site_city=auto -City "FL, Miramar" ResStockArguments site_city=auto -City "FL, Naples" ResStockArguments site_city=auto -City "FL, New Smyrna Beach" ResStockArguments site_city=auto -City "FL, North Fort Myers" ResStockArguments site_city=auto -City "FL, North Miami Beach" ResStockArguments site_city=auto -City "FL, North Miami" ResStockArguments site_city=auto -City "FL, North Port" ResStockArguments site_city=auto -City "FL, Oakland Park" ResStockArguments site_city=auto -City "FL, Ocala" ResStockArguments site_city=auto -City "FL, Orlando" ResStockArguments site_city=auto -City "FL, Ormond Beach" ResStockArguments site_city=auto -City "FL, Palm Bay" ResStockArguments site_city=auto -City "FL, Palm Beach Gardens" ResStockArguments site_city=auto -City "FL, Palm Coast" ResStockArguments site_city=auto -City "FL, Palm Harbor" ResStockArguments site_city=auto -City "FL, Panama City Beach" ResStockArguments site_city=auto -City "FL, Panama City" ResStockArguments site_city=auto -City "FL, Pembroke Pines" ResStockArguments site_city=auto -City "FL, Pensacola" ResStockArguments site_city=auto -City "FL, Pine Hills" ResStockArguments site_city=auto -City "FL, Pinellas Park" ResStockArguments site_city=auto -City "FL, Plantation" ResStockArguments site_city=auto -City "FL, Poinciana" ResStockArguments site_city=auto -City "FL, Pompano Beach" ResStockArguments site_city=auto -City "FL, Port Charlotte" ResStockArguments site_city=auto -City "FL, Port Orange" ResStockArguments site_city=auto -City "FL, Port St Lucie" ResStockArguments site_city=auto -City "FL, Riverview" ResStockArguments site_city=auto -City "FL, Riviera Beach" ResStockArguments site_city=auto -City "FL, Sanford" ResStockArguments site_city=auto -City "FL, Sarasota" ResStockArguments site_city=auto -City "FL, Spring Hill" ResStockArguments site_city=auto -City "FL, St Cloud" ResStockArguments site_city=auto -City "FL, St Petersburg" ResStockArguments site_city=auto -City "FL, Sun City Center" ResStockArguments site_city=auto -City "FL, Sunny Isles Beach" ResStockArguments site_city=auto -City "FL, Sunrise" ResStockArguments site_city=auto -City "FL, Tallahassee" ResStockArguments site_city=auto -City "FL, Tamarac" ResStockArguments site_city=auto -City "FL, Tamiami" ResStockArguments site_city=auto -City "FL, Tampa" ResStockArguments site_city=auto -City "FL, The Hammocks" ResStockArguments site_city=auto -City "FL, The Villages" ResStockArguments site_city=auto -City "FL, Titusville" ResStockArguments site_city=auto -City "FL, Town N Country" ResStockArguments site_city=auto -City "FL, University" ResStockArguments site_city=auto -City "FL, Venice" ResStockArguments site_city=auto -City "FL, Wellington" ResStockArguments site_city=auto -City "FL, Wesley Chapel" ResStockArguments site_city=auto -City "FL, West Palm Beach" ResStockArguments site_city=auto -City "FL, Weston" ResStockArguments site_city=auto -City "FL, Winter Haven" ResStockArguments site_city=auto -City "GA, Albany" ResStockArguments site_city=auto -City "GA, Alpharetta" ResStockArguments site_city=auto -City "GA, Athens-Clarke County Unified Government Balance" ResStockArguments site_city=auto -City "GA, Atlanta" ResStockArguments site_city=auto -City "GA, Augusta-Richmond County Consolidated Government Balance" ResStockArguments site_city=auto -City "GA, Columbus" ResStockArguments site_city=auto -City "GA, Dunwoody" ResStockArguments site_city=auto -City "GA, East Point" ResStockArguments site_city=auto -City "GA, Hinesville" ResStockArguments site_city=auto -City "GA, Johns Creek" ResStockArguments site_city=auto -City "GA, Mableton" ResStockArguments site_city=auto -City "GA, Macon" ResStockArguments site_city=auto -City "GA, Marietta" ResStockArguments site_city=auto -City "GA, Newnan" ResStockArguments site_city=auto -City "GA, North Atlanta" ResStockArguments site_city=auto -City "GA, Rome" ResStockArguments site_city=auto -City "GA, Roswell" ResStockArguments site_city=auto -City "GA, Sandy Springs" ResStockArguments site_city=auto -City "GA, Savannah" ResStockArguments site_city=auto -City "GA, Smyrna" ResStockArguments site_city=auto -City "GA, Valdosta" ResStockArguments site_city=auto -City "GA, Warner Robins" ResStockArguments site_city=auto -City "HI, East Honolulu" ResStockArguments site_city=auto -City "HI, Hilo" ResStockArguments site_city=auto -City "HI, Kailua" ResStockArguments site_city=auto -City "HI, Urban Honolulu" ResStockArguments site_city=auto -City "IA, Ames" ResStockArguments site_city=auto -City "IA, Ankeny" ResStockArguments site_city=auto -City "IA, Cedar Falls" ResStockArguments site_city=auto -City "IA, Cedar Rapids" ResStockArguments site_city=auto -City "IA, Council Bluffs" ResStockArguments site_city=auto -City "IA, Davenport" ResStockArguments site_city=auto -City "IA, Des Moines" ResStockArguments site_city=auto -City "IA, Dubuque" ResStockArguments site_city=auto -City "IA, Iowa City" ResStockArguments site_city=auto -City "IA, Marion" ResStockArguments site_city=auto -City "IA, Sioux City" ResStockArguments site_city=auto -City "IA, Urbandale" ResStockArguments site_city=auto -City "IA, Waterloo" ResStockArguments site_city=auto -City "IA, West Des Moines" ResStockArguments site_city=auto -City "ID, Boise City" ResStockArguments site_city=auto -City "ID, Caldwell" ResStockArguments site_city=auto -City "ID, Coeur Dalene" ResStockArguments site_city=auto -City "ID, Idaho Falls" ResStockArguments site_city=auto -City "ID, Meridian" ResStockArguments site_city=auto -City "ID, Nampa" ResStockArguments site_city=auto -City "ID, Pocatello" ResStockArguments site_city=auto -City "ID, Twin Falls" ResStockArguments site_city=auto -City "IL, Arlington Heights" ResStockArguments site_city=auto -City "IL, Aurora" ResStockArguments site_city=auto -City "IL, Belleville" ResStockArguments site_city=auto -City "IL, Berwyn" ResStockArguments site_city=auto -City "IL, Bloomington" ResStockArguments site_city=auto -City "IL, Bolingbrook" ResStockArguments site_city=auto -City "IL, Buffalo Grove" ResStockArguments site_city=auto -City "IL, Calumet City" ResStockArguments site_city=auto -City "IL, Carol Stream" ResStockArguments site_city=auto -City "IL, Champaign" ResStockArguments site_city=auto -City "IL, Chicago" ResStockArguments site_city=auto -City "IL, Cicero" ResStockArguments site_city=auto -City "IL, Crystal Lake" ResStockArguments site_city=auto -City "IL, Decatur" ResStockArguments site_city=auto -City "IL, Dekalb" ResStockArguments site_city=auto -City "IL, Des Plaines" ResStockArguments site_city=auto -City "IL, Downers Grove" ResStockArguments site_city=auto -City "IL, Elgin" ResStockArguments site_city=auto -City "IL, Elmhurst" ResStockArguments site_city=auto -City "IL, Evanston" ResStockArguments site_city=auto -City "IL, Glenview" ResStockArguments site_city=auto -City "IL, Hoffman Estates" ResStockArguments site_city=auto -City "IL, Joliet" ResStockArguments site_city=auto -City "IL, Lombard" ResStockArguments site_city=auto -City "IL, Moline" ResStockArguments site_city=auto -City "IL, Mount Prospect" ResStockArguments site_city=auto -City "IL, Naperville" ResStockArguments site_city=auto -City "IL, Normal" ResStockArguments site_city=auto -City "IL, Oak Lawn" ResStockArguments site_city=auto -City "IL, Oak Park" ResStockArguments site_city=auto -City "IL, Orland Park" ResStockArguments site_city=auto -City "IL, Palatine" ResStockArguments site_city=auto -City "IL, Peoria" ResStockArguments site_city=auto -City "IL, Quincy" ResStockArguments site_city=auto -City "IL, Rock Island" ResStockArguments site_city=auto -City "IL, Rockford" ResStockArguments site_city=auto -City "IL, Schaumburg" ResStockArguments site_city=auto -City "IL, Skokie" ResStockArguments site_city=auto -City "IL, Springfield" ResStockArguments site_city=auto -City "IL, Tinley Park" ResStockArguments site_city=auto -City "IL, Urbana" ResStockArguments site_city=auto -City "IL, Waukegan" ResStockArguments site_city=auto -City "IL, Wheaton" ResStockArguments site_city=auto -City "IL, Wheeling" ResStockArguments site_city=auto -City "IN, Anderson" ResStockArguments site_city=auto -City "IN, Bloomington" ResStockArguments site_city=auto -City "IN, Carmel" ResStockArguments site_city=auto -City "IN, Columbus" ResStockArguments site_city=auto -City "IN, Elkhart" ResStockArguments site_city=auto -City "IN, Evansville" ResStockArguments site_city=auto -City "IN, Fishers" ResStockArguments site_city=auto -City "IN, Fort Wayne" ResStockArguments site_city=auto -City "IN, Gary" ResStockArguments site_city=auto -City "IN, Greenwood" ResStockArguments site_city=auto -City "IN, Hammond" ResStockArguments site_city=auto -City "IN, Indianapolis City Balance" ResStockArguments site_city=auto -City "IN, Jeffersonville" ResStockArguments site_city=auto -City "IN, Kokomo" ResStockArguments site_city=auto -City "IN, Lafayette" ResStockArguments site_city=auto -City "IN, Lawrence" ResStockArguments site_city=auto -City "IN, Mishawaka" ResStockArguments site_city=auto -City "IN, Muncie" ResStockArguments site_city=auto -City "IN, New Albany" ResStockArguments site_city=auto -City "IN, Noblesville" ResStockArguments site_city=auto -City "IN, Portage" ResStockArguments site_city=auto -City "IN, Richmond" ResStockArguments site_city=auto -City "IN, South Bend" ResStockArguments site_city=auto -City "IN, Terre Haute" ResStockArguments site_city=auto -City "KS, Hutchinson" ResStockArguments site_city=auto -City "KS, Kansas City" ResStockArguments site_city=auto -City "KS, Lawrence" ResStockArguments site_city=auto -City "KS, Lenexa" ResStockArguments site_city=auto -City "KS, Manhattan" ResStockArguments site_city=auto -City "KS, Olathe" ResStockArguments site_city=auto -City "KS, Overland Park" ResStockArguments site_city=auto -City "KS, Salina" ResStockArguments site_city=auto -City "KS, Shawnee" ResStockArguments site_city=auto -City "KS, Topeka" ResStockArguments site_city=auto -City "KS, Wichita" ResStockArguments site_city=auto -City "KY, Bowling Green" ResStockArguments site_city=auto -City "KY, Covington" ResStockArguments site_city=auto -City "KY, Lexington-Fayette" ResStockArguments site_city=auto -City "KY, Louisville Jefferson County Metro Government Balance" ResStockArguments site_city=auto -City "KY, Owensboro" ResStockArguments site_city=auto -City "LA, Alexandria" ResStockArguments site_city=auto -City "LA, Baton Rouge" ResStockArguments site_city=auto -City "LA, Bossier City" ResStockArguments site_city=auto -City "LA, Kenner" ResStockArguments site_city=auto -City "LA, Lafayette" ResStockArguments site_city=auto -City "LA, Lake Charles" ResStockArguments site_city=auto -City "LA, Metairie" ResStockArguments site_city=auto -City "LA, Monroe" ResStockArguments site_city=auto -City "LA, New Orleans" ResStockArguments site_city=auto -City "LA, Shreveport" ResStockArguments site_city=auto -City "MA, Arlington" ResStockArguments site_city=auto -City "MA, Attleboro" ResStockArguments site_city=auto -City "MA, Barnstable Town" ResStockArguments site_city=auto -City "MA, Beverly" ResStockArguments site_city=auto -City "MA, Boston" ResStockArguments site_city=auto -City "MA, Brockton" ResStockArguments site_city=auto -City "MA, Brookline" ResStockArguments site_city=auto -City "MA, Cambridge" ResStockArguments site_city=auto -City "MA, Chicopee" ResStockArguments site_city=auto -City "MA, Everett" ResStockArguments site_city=auto -City "MA, Fall River" ResStockArguments site_city=auto -City "MA, Fitchburg" ResStockArguments site_city=auto -City "MA, Framingham" ResStockArguments site_city=auto -City "MA, Haverhill" ResStockArguments site_city=auto -City "MA, Holyoke" ResStockArguments site_city=auto -City "MA, Lawrence" ResStockArguments site_city=auto -City "MA, Leominster" ResStockArguments site_city=auto -City "MA, Lowell" ResStockArguments site_city=auto -City "MA, Lynn" ResStockArguments site_city=auto -City "MA, Malden" ResStockArguments site_city=auto -City "MA, Marlborough" ResStockArguments site_city=auto -City "MA, Medford" ResStockArguments site_city=auto -City "MA, Methuen Town" ResStockArguments site_city=auto -City "MA, New Bedford" ResStockArguments site_city=auto -City "MA, Newton" ResStockArguments site_city=auto -City "MA, Peabody" ResStockArguments site_city=auto -City "MA, Pittsfield" ResStockArguments site_city=auto -City "MA, Quincy" ResStockArguments site_city=auto -City "MA, Revere" ResStockArguments site_city=auto -City "MA, Salem" ResStockArguments site_city=auto -City "MA, Somerville" ResStockArguments site_city=auto -City "MA, Springfield" ResStockArguments site_city=auto -City "MA, Taunton" ResStockArguments site_city=auto -City "MA, Waltham" ResStockArguments site_city=auto -City "MA, Watertown Town" ResStockArguments site_city=auto -City "MA, Westfield" ResStockArguments site_city=auto -City "MA, Weymouth Town" ResStockArguments site_city=auto -City "MA, Woburn" ResStockArguments site_city=auto -City "MA, Worcester" ResStockArguments site_city=auto -City "MD, Annapolis" ResStockArguments site_city=auto -City "MD, Aspen Hill" ResStockArguments site_city=auto -City "MD, Baltimore" ResStockArguments site_city=auto -City "MD, Bel Air South" ResStockArguments site_city=auto -City "MD, Bethesda" ResStockArguments site_city=auto -City "MD, Bowie" ResStockArguments site_city=auto -City "MD, Catonsville" ResStockArguments site_city=auto -City "MD, Columbia" ResStockArguments site_city=auto -City "MD, Dundalk" ResStockArguments site_city=auto -City "MD, Ellicott City" ResStockArguments site_city=auto -City "MD, Essex" ResStockArguments site_city=auto -City "MD, Frederick" ResStockArguments site_city=auto -City "MD, Gaithersburg" ResStockArguments site_city=auto -City "MD, Germantown" ResStockArguments site_city=auto -City "MD, Glen Burnie" ResStockArguments site_city=auto -City "MD, Hagerstown" ResStockArguments site_city=auto -City "MD, North Bethesda" ResStockArguments site_city=auto -City "MD, Ocean City" ResStockArguments site_city=auto -City "MD, Odenton" ResStockArguments site_city=auto -City "MD, Potomac" ResStockArguments site_city=auto -City "MD, Rockville" ResStockArguments site_city=auto -City "MD, Severn" ResStockArguments site_city=auto -City "MD, Silver Spring" ResStockArguments site_city=auto -City "MD, Towson" ResStockArguments site_city=auto -City "MD, Waldorf" ResStockArguments site_city=auto -City "MD, Wheaton" ResStockArguments site_city=auto -City "MD, Woodlawn" ResStockArguments site_city=auto -City "ME, Bangor" ResStockArguments site_city=auto -City "ME, Lewiston" ResStockArguments site_city=auto -City "ME, Portland" ResStockArguments site_city=auto -City "MI, Ann Arbor" ResStockArguments site_city=auto -City "MI, Battle Creek" ResStockArguments site_city=auto -City "MI, Bay City" ResStockArguments site_city=auto -City "MI, Dearborn Heights" ResStockArguments site_city=auto -City "MI, Dearborn" ResStockArguments site_city=auto -City "MI, Detroit" ResStockArguments site_city=auto -City "MI, Farmington Hills" ResStockArguments site_city=auto -City "MI, Flint" ResStockArguments site_city=auto -City "MI, Grand Rapids" ResStockArguments site_city=auto -City "MI, Jackson" ResStockArguments site_city=auto -City "MI, Kalamazoo" ResStockArguments site_city=auto -City "MI, Kentwood" ResStockArguments site_city=auto -City "MI, Lansing" ResStockArguments site_city=auto -City "MI, Lincoln Park" ResStockArguments site_city=auto -City "MI, Livonia" ResStockArguments site_city=auto -City "MI, Midland" ResStockArguments site_city=auto -City "MI, Muskegon" ResStockArguments site_city=auto -City "MI, Novi" ResStockArguments site_city=auto -City "MI, Pontiac" ResStockArguments site_city=auto -City "MI, Portage" ResStockArguments site_city=auto -City "MI, Rochester Hills" ResStockArguments site_city=auto -City "MI, Roseville" ResStockArguments site_city=auto -City "MI, Royal Oak" ResStockArguments site_city=auto -City "MI, Saginaw" ResStockArguments site_city=auto -City "MI, Southfield" ResStockArguments site_city=auto -City "MI, St Clair Shores" ResStockArguments site_city=auto -City "MI, Sterling Heights" ResStockArguments site_city=auto -City "MI, Taylor" ResStockArguments site_city=auto -City "MI, Troy" ResStockArguments site_city=auto -City "MI, Warren" ResStockArguments site_city=auto -City "MI, Westland" ResStockArguments site_city=auto -City "MI, Wyoming" ResStockArguments site_city=auto -City "MN, Apple Valley" ResStockArguments site_city=auto -City "MN, Blaine" ResStockArguments site_city=auto -City "MN, Bloomington" ResStockArguments site_city=auto -City "MN, Brooklyn Park" ResStockArguments site_city=auto -City "MN, Burnsville" ResStockArguments site_city=auto -City "MN, Coon Rapids" ResStockArguments site_city=auto -City "MN, Duluth" ResStockArguments site_city=auto -City "MN, Eagan" ResStockArguments site_city=auto -City "MN, Eden Prairie" ResStockArguments site_city=auto -City "MN, Edina" ResStockArguments site_city=auto -City "MN, Lakeville" ResStockArguments site_city=auto -City "MN, Mankato" ResStockArguments site_city=auto -City "MN, Maple Grove" ResStockArguments site_city=auto -City "MN, Maplewood" ResStockArguments site_city=auto -City "MN, Minneapolis" ResStockArguments site_city=auto -City "MN, Minnetonka" ResStockArguments site_city=auto -City "MN, Moorhead" ResStockArguments site_city=auto -City "MN, Plymouth" ResStockArguments site_city=auto -City "MN, Richfield" ResStockArguments site_city=auto -City "MN, Rochester" ResStockArguments site_city=auto -City "MN, Roseville" ResStockArguments site_city=auto -City "MN, St Cloud" ResStockArguments site_city=auto -City "MN, St Louis Park" ResStockArguments site_city=auto -City "MN, St Paul" ResStockArguments site_city=auto -City "MN, Woodbury" ResStockArguments site_city=auto -City "MO, Blue Springs" ResStockArguments site_city=auto -City "MO, Cape Girardeau" ResStockArguments site_city=auto -City "MO, Chesterfield" ResStockArguments site_city=auto -City "MO, Columbia" ResStockArguments site_city=auto -City "MO, Florissant" ResStockArguments site_city=auto -City "MO, Independence" ResStockArguments site_city=auto -City "MO, Jefferson City" ResStockArguments site_city=auto -City "MO, Joplin" ResStockArguments site_city=auto -City "MO, Kansas City" ResStockArguments site_city=auto -City "MO, Lees Summit" ResStockArguments site_city=auto -City "MO, Ofallon" ResStockArguments site_city=auto -City "MO, Springfield" ResStockArguments site_city=auto -City "MO, St Charles" ResStockArguments site_city=auto -City "MO, St Joseph" ResStockArguments site_city=auto -City "MO, St Louis" ResStockArguments site_city=auto -City "MO, St Peters" ResStockArguments site_city=auto -City "MO, University City" ResStockArguments site_city=auto -City "MS, Biloxi" ResStockArguments site_city=auto -City "MS, Gulfport" ResStockArguments site_city=auto -City "MS, Hattiesburg" ResStockArguments site_city=auto -City "MS, Jackson" ResStockArguments site_city=auto -City "MS, Meridian" ResStockArguments site_city=auto -City "MS, Southaven" ResStockArguments site_city=auto -City "MS, Tupelo" ResStockArguments site_city=auto -City "MT, Billings" ResStockArguments site_city=auto -City "MT, Bozeman" ResStockArguments site_city=auto -City "MT, Butte-Silver Bow Balance" ResStockArguments site_city=auto -City "MT, Great Falls" ResStockArguments site_city=auto -City "MT, Missoula" ResStockArguments site_city=auto -City "NC, Asheville" ResStockArguments site_city=auto -City "NC, Burlington" ResStockArguments site_city=auto -City "NC, Cary" ResStockArguments site_city=auto -City "NC, Chapel Hill" ResStockArguments site_city=auto -City "NC, Charlotte" ResStockArguments site_city=auto -City "NC, Concord" ResStockArguments site_city=auto -City "NC, Durham" ResStockArguments site_city=auto -City "NC, Fayetteville" ResStockArguments site_city=auto -City "NC, Gastonia" ResStockArguments site_city=auto -City "NC, Goldsboro" ResStockArguments site_city=auto -City "NC, Greensboro" ResStockArguments site_city=auto -City "NC, Greenville" ResStockArguments site_city=auto -City "NC, Hickory" ResStockArguments site_city=auto -City "NC, High Point" ResStockArguments site_city=auto -City "NC, Huntersville" ResStockArguments site_city=auto -City "NC, Jacksonville" ResStockArguments site_city=auto -City "NC, Kannapolis" ResStockArguments site_city=auto -City "NC, Raleigh" ResStockArguments site_city=auto -City "NC, Rocky Mount" ResStockArguments site_city=auto -City "NC, Wilmington" ResStockArguments site_city=auto -City "NC, Wilson" ResStockArguments site_city=auto -City "NC, Winston-Salem" ResStockArguments site_city=auto -City "ND, Bismarck" ResStockArguments site_city=auto -City "ND, Fargo" ResStockArguments site_city=auto -City "ND, Grand Forks" ResStockArguments site_city=auto -City "ND, Minot" ResStockArguments site_city=auto -City "NE, Bellevue" ResStockArguments site_city=auto -City "NE, Grand Island" ResStockArguments site_city=auto -City "NE, Lincoln" ResStockArguments site_city=auto -City "NE, Omaha" ResStockArguments site_city=auto -City "NH, Concord" ResStockArguments site_city=auto -City "NH, Manchester" ResStockArguments site_city=auto -City "NH, Nashua" ResStockArguments site_city=auto -City "NJ, Atlantic City" ResStockArguments site_city=auto -City "NJ, Bayonne" ResStockArguments site_city=auto -City "NJ, Camden" ResStockArguments site_city=auto -City "NJ, Clifton" ResStockArguments site_city=auto -City "NJ, East Orange" ResStockArguments site_city=auto -City "NJ, Elizabeth" ResStockArguments site_city=auto -City "NJ, Fort Lee" ResStockArguments site_city=auto -City "NJ, Hackensack" ResStockArguments site_city=auto -City "NJ, Hoboken" ResStockArguments site_city=auto -City "NJ, Jersey City" ResStockArguments site_city=auto -City "NJ, Linden" ResStockArguments site_city=auto -City "NJ, New Brunswick" ResStockArguments site_city=auto -City "NJ, Newark" ResStockArguments site_city=auto -City "NJ, Ocean City" ResStockArguments site_city=auto -City "NJ, Passaic" ResStockArguments site_city=auto -City "NJ, Paterson" ResStockArguments site_city=auto -City "NJ, Perth Amboy" ResStockArguments site_city=auto -City "NJ, Plainfield" ResStockArguments site_city=auto -City "NJ, Sayreville" ResStockArguments site_city=auto -City "NJ, Toms River" ResStockArguments site_city=auto -City "NJ, Trenton" ResStockArguments site_city=auto -City "NJ, Union City" ResStockArguments site_city=auto -City "NJ, Vineland" ResStockArguments site_city=auto -City "NJ, West New York" ResStockArguments site_city=auto -City "NM, Albuquerque" ResStockArguments site_city=auto -City "NM, Clovis" ResStockArguments site_city=auto -City "NM, Farmington" ResStockArguments site_city=auto -City "NM, Las Cruces" ResStockArguments site_city=auto -City "NM, Rio Rancho" ResStockArguments site_city=auto -City "NM, Roswell" ResStockArguments site_city=auto -City "NM, Santa Fe" ResStockArguments site_city=auto -City "NM, South Valley" ResStockArguments site_city=auto -City "NV, Carson City" ResStockArguments site_city=auto -City "NV, Enterprise" ResStockArguments site_city=auto -City "NV, Henderson" ResStockArguments site_city=auto -City "NV, Las Vegas" ResStockArguments site_city=auto -City "NV, North Las Vegas" ResStockArguments site_city=auto -City "NV, Pahrump" ResStockArguments site_city=auto -City "NV, Paradise" ResStockArguments site_city=auto -City "NV, Reno" ResStockArguments site_city=auto -City "NV, Sparks" ResStockArguments site_city=auto -City "NV, Spring Valley" ResStockArguments site_city=auto -City "NV, Sunrise Manor" ResStockArguments site_city=auto -City "NV, Whitney" ResStockArguments site_city=auto -City "NY, Albany" ResStockArguments site_city=auto -City "NY, Binghamton" ResStockArguments site_city=auto -City "NY, Brighton" ResStockArguments site_city=auto -City "NY, Buffalo" ResStockArguments site_city=auto -City "NY, Cheektowaga" ResStockArguments site_city=auto -City "NY, Coram" ResStockArguments site_city=auto -City "NY, Hempstead" ResStockArguments site_city=auto -City "NY, Irondequoit" ResStockArguments site_city=auto -City "NY, Levittown" ResStockArguments site_city=auto -City "NY, Long Beach" ResStockArguments site_city=auto -City "NY, Mount Vernon" ResStockArguments site_city=auto -City "NY, New Rochelle" ResStockArguments site_city=auto -City "NY, New York" ResStockArguments site_city=auto -City "NY, Niagara Falls" ResStockArguments site_city=auto -City "NY, Rochester" ResStockArguments site_city=auto -City "NY, Rome" ResStockArguments site_city=auto -City "NY, Schenectady" ResStockArguments site_city=auto -City "NY, Syracuse" ResStockArguments site_city=auto -City "NY, Tonawanda" ResStockArguments site_city=auto -City "NY, Troy" ResStockArguments site_city=auto -City "NY, Utica" ResStockArguments site_city=auto -City "NY, West Seneca" ResStockArguments site_city=auto -City "NY, White Plains" ResStockArguments site_city=auto -City "NY, Yonkers" ResStockArguments site_city=auto -City "OH, Akron" ResStockArguments site_city=auto -City "OH, Beavercreek" ResStockArguments site_city=auto -City "OH, Boardman" ResStockArguments site_city=auto -City "OH, Canton" ResStockArguments site_city=auto -City "OH, Cincinnati" ResStockArguments site_city=auto -City "OH, Cleveland Heights" ResStockArguments site_city=auto -City "OH, Cleveland" ResStockArguments site_city=auto -City "OH, Columbus" ResStockArguments site_city=auto -City "OH, Cuyahoga Falls" ResStockArguments site_city=auto -City "OH, Dayton" ResStockArguments site_city=auto -City "OH, Delaware" ResStockArguments site_city=auto -City "OH, Dublin" ResStockArguments site_city=auto -City "OH, Elyria" ResStockArguments site_city=auto -City "OH, Euclid" ResStockArguments site_city=auto -City "OH, Fairborn" ResStockArguments site_city=auto -City "OH, Fairfield" ResStockArguments site_city=auto -City "OH, Findlay" ResStockArguments site_city=auto -City "OH, Grove City" ResStockArguments site_city=auto -City "OH, Hamilton" ResStockArguments site_city=auto -City "OH, Huber Heights" ResStockArguments site_city=auto -City "OH, Kettering" ResStockArguments site_city=auto -City "OH, Lakewood" ResStockArguments site_city=auto -City "OH, Lancaster" ResStockArguments site_city=auto -City "OH, Lima" ResStockArguments site_city=auto -City "OH, Lorain" ResStockArguments site_city=auto -City "OH, Mansfield" ResStockArguments site_city=auto -City "OH, Marion" ResStockArguments site_city=auto -City "OH, Mentor" ResStockArguments site_city=auto -City "OH, Middletown" ResStockArguments site_city=auto -City "OH, Newark" ResStockArguments site_city=auto -City "OH, Parma" ResStockArguments site_city=auto -City "OH, Springfield" ResStockArguments site_city=auto -City "OH, Stow" ResStockArguments site_city=auto -City "OH, Strongsville" ResStockArguments site_city=auto -City "OH, Toledo" ResStockArguments site_city=auto -City "OH, Warren" ResStockArguments site_city=auto -City "OH, Youngstown" ResStockArguments site_city=auto -City "OK, Bartlesville" ResStockArguments site_city=auto -City "OK, Broken Arrow" ResStockArguments site_city=auto -City "OK, Edmond" ResStockArguments site_city=auto -City "OK, Enid" ResStockArguments site_city=auto -City "OK, Lawton" ResStockArguments site_city=auto -City "OK, Midwest City" ResStockArguments site_city=auto -City "OK, Moore" ResStockArguments site_city=auto -City "OK, Muskogee" ResStockArguments site_city=auto -City "OK, Norman" ResStockArguments site_city=auto -City "OK, Oklahoma City" ResStockArguments site_city=auto -City "OK, Stillwater" ResStockArguments site_city=auto -City "OK, Tulsa" ResStockArguments site_city=auto -City "OR, Albany" ResStockArguments site_city=auto -City "OR, Aloha" ResStockArguments site_city=auto -City "OR, Beaverton" ResStockArguments site_city=auto -City "OR, Bend" ResStockArguments site_city=auto -City "OR, Corvallis" ResStockArguments site_city=auto -City "OR, Eugene" ResStockArguments site_city=auto -City "OR, Grants Pass" ResStockArguments site_city=auto -City "OR, Gresham" ResStockArguments site_city=auto -City "OR, Hillsboro" ResStockArguments site_city=auto -City "OR, Lake Oswego" ResStockArguments site_city=auto -City "OR, Medford" ResStockArguments site_city=auto -City "OR, Portland" ResStockArguments site_city=auto -City "OR, Salem" ResStockArguments site_city=auto -City "OR, Springfield" ResStockArguments site_city=auto -City "OR, Tigard" ResStockArguments site_city=auto -City "PA, Allentown" ResStockArguments site_city=auto -City "PA, Altoona" ResStockArguments site_city=auto -City "PA, Bethlehem" ResStockArguments site_city=auto -City "PA, Erie" ResStockArguments site_city=auto -City "PA, Harrisburg" ResStockArguments site_city=auto -City "PA, Lancaster" ResStockArguments site_city=auto -City "PA, Levittown" ResStockArguments site_city=auto -City "PA, Philadelphia" ResStockArguments site_city=auto -City "PA, Pittsburgh" ResStockArguments site_city=auto -City "PA, Reading" ResStockArguments site_city=auto -City "PA, Scranton" ResStockArguments site_city=auto -City "PA, Wilkes-Barre" ResStockArguments site_city=auto -City "PA, York" ResStockArguments site_city=auto -City "RI, Cranston" ResStockArguments site_city=auto -City "RI, East Providence" ResStockArguments site_city=auto -City "RI, Pawtucket" ResStockArguments site_city=auto -City "RI, Providence" ResStockArguments site_city=auto -City "RI, Warwick" ResStockArguments site_city=auto -City "RI, Woonsocket" ResStockArguments site_city=auto -City "SC, Charleston" ResStockArguments site_city=auto -City "SC, Columbia" ResStockArguments site_city=auto -City "SC, Florence" ResStockArguments site_city=auto -City "SC, Goose Creek" ResStockArguments site_city=auto -City "SC, Greenville" ResStockArguments site_city=auto -City "SC, Hilton Head Island" ResStockArguments site_city=auto -City "SC, Mount Pleasant" ResStockArguments site_city=auto -City "SC, Myrtle Beach" ResStockArguments site_city=auto -City "SC, North Charleston" ResStockArguments site_city=auto -City "SC, North Myrtle Beach" ResStockArguments site_city=auto -City "SC, Rock Hill" ResStockArguments site_city=auto -City "SC, Spartanburg" ResStockArguments site_city=auto -City "SC, Summerville" ResStockArguments site_city=auto -City "SC, Sumter" ResStockArguments site_city=auto -City "SD, Rapid City" ResStockArguments site_city=auto -City "SD, Sioux Falls" ResStockArguments site_city=auto -City "TN, Bartlett" ResStockArguments site_city=auto -City "TN, Chattanooga" ResStockArguments site_city=auto -City "TN, Clarksville" ResStockArguments site_city=auto -City "TN, Cleveland" ResStockArguments site_city=auto -City "TN, Collierville" ResStockArguments site_city=auto -City "TN, Columbia" ResStockArguments site_city=auto -City "TN, Franklin" ResStockArguments site_city=auto -City "TN, Germantown" ResStockArguments site_city=auto -City "TN, Hendersonville" ResStockArguments site_city=auto -City "TN, Jackson" ResStockArguments site_city=auto -City "TN, Johnson City" ResStockArguments site_city=auto -City "TN, Kingsport" ResStockArguments site_city=auto -City "TN, Knoxville" ResStockArguments site_city=auto -City "TN, Memphis" ResStockArguments site_city=auto -City "TN, Murfreesboro" ResStockArguments site_city=auto -City "TN, Nashville-Davidson Metropolitan Government Balance" ResStockArguments site_city=auto -City "TN, Smyrna" ResStockArguments site_city=auto -City "TX, Abilene" ResStockArguments site_city=auto -City "TX, Allen" ResStockArguments site_city=auto -City "TX, Amarillo" ResStockArguments site_city=auto -City "TX, Arlington" ResStockArguments site_city=auto -City "TX, Atascocita" ResStockArguments site_city=auto -City "TX, Austin" ResStockArguments site_city=auto -City "TX, Baytown" ResStockArguments site_city=auto -City "TX, Beaumont" ResStockArguments site_city=auto -City "TX, Bedford" ResStockArguments site_city=auto -City "TX, Brownsville" ResStockArguments site_city=auto -City "TX, Bryan" ResStockArguments site_city=auto -City "TX, Burleson" ResStockArguments site_city=auto -City "TX, Carrollton" ResStockArguments site_city=auto -City "TX, Cedar Hill" ResStockArguments site_city=auto -City "TX, Cedar Park" ResStockArguments site_city=auto -City "TX, College Station" ResStockArguments site_city=auto -City "TX, Conroe" ResStockArguments site_city=auto -City "TX, Coppell" ResStockArguments site_city=auto -City "TX, Corpus Christi" ResStockArguments site_city=auto -City "TX, Dallas" ResStockArguments site_city=auto -City "TX, Denton" ResStockArguments site_city=auto -City "TX, Desoto" ResStockArguments site_city=auto -City "TX, Edinburg" ResStockArguments site_city=auto -City "TX, El Paso" ResStockArguments site_city=auto -City "TX, Euless" ResStockArguments site_city=auto -City "TX, Flower Mound" ResStockArguments site_city=auto -City "TX, Fort Worth" ResStockArguments site_city=auto -City "TX, Frisco" ResStockArguments site_city=auto -City "TX, Galveston" ResStockArguments site_city=auto -City "TX, Garland" ResStockArguments site_city=auto -City "TX, Georgetown" ResStockArguments site_city=auto -City "TX, Grand Prairie" ResStockArguments site_city=auto -City "TX, Grapevine" ResStockArguments site_city=auto -City "TX, Haltom City" ResStockArguments site_city=auto -City "TX, Harlingen" ResStockArguments site_city=auto -City "TX, Houston" ResStockArguments site_city=auto -City "TX, Hurst" ResStockArguments site_city=auto -City "TX, Irving" ResStockArguments site_city=auto -City "TX, Keller" ResStockArguments site_city=auto -City "TX, Killeen" ResStockArguments site_city=auto -City "TX, Laredo" ResStockArguments site_city=auto -City "TX, League City" ResStockArguments site_city=auto -City "TX, Lewisville" ResStockArguments site_city=auto -City "TX, Longview" ResStockArguments site_city=auto -City "TX, Lubbock" ResStockArguments site_city=auto -City "TX, Lufkin" ResStockArguments site_city=auto -City "TX, Mansfield" ResStockArguments site_city=auto -City "TX, Mcallen" ResStockArguments site_city=auto -City "TX, Mckinney" ResStockArguments site_city=auto -City "TX, Mesquite" ResStockArguments site_city=auto -City "TX, Midland" ResStockArguments site_city=auto -City "TX, Mission" ResStockArguments site_city=auto -City "TX, Missouri City" ResStockArguments site_city=auto -City "TX, New Braunfels" ResStockArguments site_city=auto -City "TX, North Richland Hills" ResStockArguments site_city=auto -City "TX, Odessa" ResStockArguments site_city=auto -City "TX, Pasadena" ResStockArguments site_city=auto -City "TX, Pearland" ResStockArguments site_city=auto -City "TX, Pflugerville" ResStockArguments site_city=auto -City "TX, Pharr" ResStockArguments site_city=auto -City "TX, Plano" ResStockArguments site_city=auto -City "TX, Port Arthur" ResStockArguments site_city=auto -City "TX, Richardson" ResStockArguments site_city=auto -City "TX, Round Rock" ResStockArguments site_city=auto -City "TX, Rowlett" ResStockArguments site_city=auto -City "TX, San Angelo" ResStockArguments site_city=auto -City "TX, San Antonio" ResStockArguments site_city=auto -City "TX, San Marcos" ResStockArguments site_city=auto -City "TX, Sherman" ResStockArguments site_city=auto -City "TX, Spring" ResStockArguments site_city=auto -City "TX, Sugar Land" ResStockArguments site_city=auto -City "TX, Temple" ResStockArguments site_city=auto -City "TX, Texarkana" ResStockArguments site_city=auto -City "TX, Texas City" ResStockArguments site_city=auto -City "TX, The Colony" ResStockArguments site_city=auto -City "TX, The Woodlands" ResStockArguments site_city=auto -City "TX, Tyler" ResStockArguments site_city=auto -City "TX, Victoria" ResStockArguments site_city=auto -City "TX, Waco" ResStockArguments site_city=auto -City "TX, Wichita Falls" ResStockArguments site_city=auto -City "TX, Wylie" ResStockArguments site_city=auto -City "UT, Layton" ResStockArguments site_city=auto -City "UT, Lehi" ResStockArguments site_city=auto -City "UT, Logan" ResStockArguments site_city=auto -City "UT, Millcreek" ResStockArguments site_city=auto -City "UT, Murray" ResStockArguments site_city=auto -City "UT, Ogden" ResStockArguments site_city=auto -City "UT, Orem" ResStockArguments site_city=auto -City "UT, Provo" ResStockArguments site_city=auto -City "UT, Salt Lake City" ResStockArguments site_city=auto -City "UT, Sandy" ResStockArguments site_city=auto -City "UT, South Jordan" ResStockArguments site_city=auto -City "UT, St George" ResStockArguments site_city=auto -City "UT, Taylorsville" ResStockArguments site_city=auto -City "UT, West Jordan" ResStockArguments site_city=auto -City "UT, West Valley City" ResStockArguments site_city=auto -City "VA, Alexandria" ResStockArguments site_city=auto -City "VA, Arlington" ResStockArguments site_city=auto -City "VA, Ashburn" ResStockArguments site_city=auto -City "VA, Blacksburg" ResStockArguments site_city=auto -City "VA, Centreville" ResStockArguments site_city=auto -City "VA, Charlottesville" ResStockArguments site_city=auto -City "VA, Chesapeake" ResStockArguments site_city=auto -City "VA, Dale City" ResStockArguments site_city=auto -City "VA, Danville" ResStockArguments site_city=auto -City "VA, Hampton" ResStockArguments site_city=auto -City "VA, Harrisonburg" ResStockArguments site_city=auto -City "VA, Lake Ridge" ResStockArguments site_city=auto -City "VA, Leesburg" ResStockArguments site_city=auto -City "VA, Lynchburg" ResStockArguments site_city=auto -City "VA, Mclean" ResStockArguments site_city=auto -City "VA, Mechanicsville" ResStockArguments site_city=auto -City "VA, Newport News" ResStockArguments site_city=auto -City "VA, Norfolk" ResStockArguments site_city=auto -City "VA, Petersburg" ResStockArguments site_city=auto -City "VA, Portsmouth" ResStockArguments site_city=auto -City "VA, Reston" ResStockArguments site_city=auto -City "VA, Richmond" ResStockArguments site_city=auto -City "VA, Roanoke" ResStockArguments site_city=auto -City "VA, Suffolk" ResStockArguments site_city=auto -City "VA, Tuckahoe" ResStockArguments site_city=auto -City "VA, Virginia Beach" ResStockArguments site_city=auto -City "VT, Burlington" ResStockArguments site_city=auto -City "WA, Auburn" ResStockArguments site_city=auto -City "WA, Bellevue" ResStockArguments site_city=auto -City "WA, Bellingham" ResStockArguments site_city=auto -City "WA, Bremerton" ResStockArguments site_city=auto -City "WA, Edmonds" ResStockArguments site_city=auto -City "WA, Everett" ResStockArguments site_city=auto -City "WA, Federal Way" ResStockArguments site_city=auto -City "WA, Kennewick" ResStockArguments site_city=auto -City "WA, Kent" ResStockArguments site_city=auto -City "WA, Kirkland" ResStockArguments site_city=auto -City "WA, Lacey" ResStockArguments site_city=auto -City "WA, Lakewood" ResStockArguments site_city=auto -City "WA, Longview" ResStockArguments site_city=auto -City "WA, Marysville" ResStockArguments site_city=auto -City "WA, Olympia" ResStockArguments site_city=auto -City "WA, Pasco" ResStockArguments site_city=auto -City "WA, Puyallup" ResStockArguments site_city=auto -City "WA, Redmond" ResStockArguments site_city=auto -City "WA, Renton" ResStockArguments site_city=auto -City "WA, Richland" ResStockArguments site_city=auto -City "WA, Sammamish" ResStockArguments site_city=auto -City "WA, Seattle" ResStockArguments site_city=auto -City "WA, Shoreline" ResStockArguments site_city=auto -City "WA, South Hill" ResStockArguments site_city=auto -City "WA, Spokane Valley" ResStockArguments site_city=auto -City "WA, Spokane" ResStockArguments site_city=auto -City "WA, Tacoma" ResStockArguments site_city=auto -City "WA, Vancouver" ResStockArguments site_city=auto -City "WA, Yakima" ResStockArguments site_city=auto -City "WI, Appleton" ResStockArguments site_city=auto -City "WI, Beloit" ResStockArguments site_city=auto -City "WI, Eau Claire" ResStockArguments site_city=auto -City "WI, Fond Du Lac" ResStockArguments site_city=auto -City "WI, Green Bay" ResStockArguments site_city=auto -City "WI, Greenfield" ResStockArguments site_city=auto -City "WI, Janesville" ResStockArguments site_city=auto -City "WI, Kenosha" ResStockArguments site_city=auto -City "WI, La Crosse" ResStockArguments site_city=auto -City "WI, Madison" ResStockArguments site_city=auto -City "WI, Manitowoc" ResStockArguments site_city=auto -City "WI, Menomonee Falls" ResStockArguments site_city=auto -City "WI, Milwaukee" ResStockArguments site_city=auto -City "WI, New Berlin" ResStockArguments site_city=auto -City "WI, Oshkosh" ResStockArguments site_city=auto -City "WI, Racine" ResStockArguments site_city=auto -City "WI, Sheboygan" ResStockArguments site_city=auto -City "WI, Waukesha" ResStockArguments site_city=auto -City "WI, Wausau" ResStockArguments site_city=auto -City "WI, Wauwatosa" ResStockArguments site_city=auto -City "WI, West Allis" ResStockArguments site_city=auto -City "WV, Charleston" ResStockArguments site_city=auto -City "WV, Huntington" ResStockArguments site_city=auto -City "WV, Parkersburg" ResStockArguments site_city=auto -City "WY, Casper" ResStockArguments site_city=auto -City "WY, Cheyenne" ResStockArguments site_city=auto -City In another census Place ResStockArguments site_city=auto -City Not in a census Place ResStockArguments site_city=auto -Clothes Dryer "Electric, Heat Pump, Ventless" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=4.5 clothes_dryer_vented_flow_rate=0 -Clothes Dryer "Electric, Premium" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.42 clothes_dryer_vented_flow_rate=auto -Clothes Dryer "Electric, Premium, EnergyStar" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.93 clothes_dryer_vented_flow_rate=auto -Clothes Dryer "Electric, Premium, Heat Pump, Ventless" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=5.2 clothes_dryer_vented_flow_rate=0 -Clothes Dryer "Gas, Premium" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.03 clothes_dryer_vented_flow_rate=auto -Clothes Dryer Electric ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.70 clothes_dryer_vented_flow_rate=auto -Clothes Dryer Gas ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.39 clothes_dryer_vented_flow_rate=auto -Clothes Dryer None ResStockArguments clothes_dryer_present=false clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.70 clothes_dryer_vented_flow_rate=auto -Clothes Dryer Propane ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=propane clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.39 clothes_dryer_vented_flow_rate=auto -Clothes Dryer Void -Clothes Dryer Usage Level 100% Usage ResStockArguments clothes_dryer_usage_multiplier=1.0 -Clothes Dryer Usage Level 120% Usage ResStockArguments clothes_dryer_usage_multiplier=1.2 -Clothes Dryer Usage Level 80% Usage ResStockArguments clothes_dryer_usage_multiplier=0.8 -Clothes Washer "EnergyStar, Cold Only" ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.07 clothes_washer_rated_annual_kwh=123 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=9 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.68 -Clothes Washer CEE Advanced Tier ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=3.1 clothes_washer_rated_annual_kwh=120 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=14 clothes_washer_label_usage=7.538462 clothes_washer_capacity=5.8 -Clothes Washer EnergyStar ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.07 clothes_washer_rated_annual_kwh=123 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=9 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.68 -Clothes Washer EnergyStar More Efficient ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.83 clothes_washer_rated_annual_kwh=90 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=8 clothes_washer_label_usage=7.538462 clothes_washer_capacity=4.5 -Clothes Washer EnergyStar Most Efficient ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.92 clothes_washer_rated_annual_kwh=75 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=7 clothes_washer_label_usage=7.538462 clothes_washer_capacity=4.5 -Clothes Washer None ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=0 clothes_washer_rated_annual_kwh=0 clothes_washer_label_electric_rate=0 clothes_washer_label_gas_rate=0 clothes_washer_label_annual_gas_cost=0 clothes_washer_label_usage=0 clothes_washer_capacity=0 -Clothes Washer Standard ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=0.95 clothes_washer_rated_annual_kwh=387 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=24 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.5 -Clothes Washer Void -Clothes Washer Presence None ResStockArguments clothes_washer_present=false -Clothes Washer Presence Void -Clothes Washer Presence Yes ResStockArguments clothes_washer_present=true -Clothes Washer Usage Level 100% Usage ResStockArguments clothes_washer_usage_multiplier=1.0 -Clothes Washer Usage Level 120% Usage ResStockArguments clothes_washer_usage_multiplier=1.2 -Clothes Washer Usage Level 80% Usage ResStockArguments clothes_washer_usage_multiplier=0.8 -Cooking Range Electric Induction ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=electricity cooking_range_oven_is_induction=true cooking_range_oven_is_convection=auto -Cooking Range Electric Resistance ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=electricity cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto -Cooking Range Gas ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=natural gas cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto -Cooking Range None ResStockArguments cooking_range_oven_present=false cooking_range_oven_location=auto cooking_range_oven_fuel_type=natural gas cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto -Cooking Range Propane ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=propane cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto -Cooking Range Void -Cooking Range Usage Level 100% Usage ResStockArguments cooking_range_oven_usage_multiplier=1.0 -Cooking Range Usage Level 120% Usage ResStockArguments cooking_range_oven_usage_multiplier=1.2 -Cooking Range Usage Level 80% Usage ResStockArguments cooking_range_oven_usage_multiplier=0.8 -Cooling Setpoint 60F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=60 hvac_control_cooling_weekend_setpoint_temp=60 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 62F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=62 hvac_control_cooling_weekend_setpoint_temp=62 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 64F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=64 hvac_control_cooling_weekend_setpoint_temp=64 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 65F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=65 hvac_control_cooling_weekend_setpoint_temp=65 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 66F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=66 hvac_control_cooling_weekend_setpoint_temp=66 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 67F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=67 hvac_control_cooling_weekend_setpoint_temp=67 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 68F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=68 hvac_control_cooling_weekend_setpoint_temp=68 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 69F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=69 hvac_control_cooling_weekend_setpoint_temp=69 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 70F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=70 hvac_control_cooling_weekend_setpoint_temp=70 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 72F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=72 hvac_control_cooling_weekend_setpoint_temp=72 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 73F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=73 hvac_control_cooling_weekend_setpoint_temp=73 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 74F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=74 hvac_control_cooling_weekend_setpoint_temp=74 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 75F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=75 hvac_control_cooling_weekend_setpoint_temp=75 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 76F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=76 hvac_control_cooling_weekend_setpoint_temp=76 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 76F w/ Building America season ResStockArguments hvac_control_cooling_weekday_setpoint_temp=76 hvac_control_cooling_weekend_setpoint_temp=76 use_auto_cooling_season=true hvac_control_cooling_season_period=auto -Cooling Setpoint 77F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=77 hvac_control_cooling_weekend_setpoint_temp=77 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 78F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=78 hvac_control_cooling_weekend_setpoint_temp=78 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 80F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=80 hvac_control_cooling_weekend_setpoint_temp=80 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint Void -Cooling Setpoint Has Offset No -Cooling Setpoint Has Offset Yes -Cooling Setpoint Offset Magnitude 0F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=0 hvac_control_cooling_weekend_setpoint_offset_magnitude=0 -Cooling Setpoint Offset Magnitude 2F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=2 hvac_control_cooling_weekend_setpoint_offset_magnitude=2 -Cooling Setpoint Offset Magnitude 5F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=5 hvac_control_cooling_weekend_setpoint_offset_magnitude=5 -Cooling Setpoint Offset Magnitude 9F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=9 hvac_control_cooling_weekend_setpoint_offset_magnitude=9 -Cooling Setpoint Offset Period Day Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup and Night Setback ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day Setup and Night Setback +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day Setup and Night Setback +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day Setup and Night Setback +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day Setup and Night Setback -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" -Cooling Setpoint Offset Period Day and Night Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1" -Cooling Setpoint Offset Period Day and Night Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1" -Cooling Setpoint Offset Period Day and Night Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day and Night Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day and Night Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day and Night Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day and Night Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1" -Cooling Setpoint Offset Period Day and Night Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1" -Cooling Setpoint Offset Period Day and Night Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1" -Cooling Setpoint Offset Period Day and Night Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1" -Cooling Setpoint Offset Period Day and Night Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1" -Cooling Setpoint Offset Period Night Setback ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" -Cooling Setpoint Offset Period Night Setback +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" -Cooling Setpoint Offset Period Night Setback +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setback +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setback +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setback +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setback -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" -Cooling Setpoint Offset Period Night Setback -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" -Cooling Setpoint Offset Period Night Setback -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" -Cooling Setpoint Offset Period Night Setback -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" -Cooling Setpoint Offset Period Night Setback -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" -Cooling Setpoint Offset Period Night Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1" -Cooling Setpoint Offset Period Night Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1" -Cooling Setpoint Offset Period Night Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1" -Cooling Setpoint Offset Period Night Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1" -Cooling Setpoint Offset Period Night Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1" -Cooling Setpoint Offset Period Night Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1" -Cooling Setpoint Offset Period Night Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1" -Cooling Setpoint Offset Period None ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Corridor Double Exterior ResStockArguments geometry_corridor_position=Double Exterior geometry_corridor_width=10 -Corridor Double-Loaded Interior ResStockArguments geometry_corridor_position=Double-Loaded Interior geometry_corridor_width=10 -Corridor None ResStockArguments geometry_corridor_position=None geometry_corridor_width=0 -Corridor Not Applicable ResStockArguments geometry_corridor_position=None geometry_corridor_width=0 -Corridor Single Exterior Front ResStockArguments geometry_corridor_position=Single Exterior (Front) geometry_corridor_width=10 -County "AK, Aleutians East Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200130.epw site_zip_code=99661 site_time_zone_utc_offset=-9 -County "AK, Aleutians West Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200160.epw site_zip_code=99685 site_time_zone_utc_offset=-9 -County "AK, Anchorage Municipality" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200200.epw site_zip_code=99501 site_time_zone_utc_offset=-9 -County "AK, Bethel Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200500.epw site_zip_code=99545 site_time_zone_utc_offset=-9 -County "AK, Bristol Bay Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200600.epw site_zip_code=99633 site_time_zone_utc_offset=-9 -County "AK, Denali Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200680.epw site_zip_code=99743 site_time_zone_utc_offset=-9 -County "AK, Dillingham Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200700.epw site_zip_code=99576 site_time_zone_utc_offset=-9 -County "AK, Fairbanks North Star Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200900.epw site_zip_code=99709 site_time_zone_utc_offset=-9 -County "AK, Haines Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201000.epw site_zip_code=99827 site_time_zone_utc_offset=-9 -County "AK, Hoonah-Angoon Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201050.epw site_zip_code=99829 site_time_zone_utc_offset=-9 -County "AK, Juneau City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201100.epw site_zip_code=99802 site_time_zone_utc_offset=-9 -County "AK, Kenai Peninsula Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201220.epw site_zip_code=99611 site_time_zone_utc_offset=-9 -County "AK, Ketchikan Gateway Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201300.epw site_zip_code=99901 site_time_zone_utc_offset=-9 -County "AK, Kodiak Island Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201500.epw site_zip_code=99615 site_time_zone_utc_offset=-9 -County "AK, Kusilvak Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202700.epw site_zip_code=99604 site_time_zone_utc_offset=-9 -County "AK, Lake and Peninsula Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201640.epw site_zip_code=99653 site_time_zone_utc_offset=-9 -County "AK, Matanuska-Susitna Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201700.epw site_zip_code=99645 site_time_zone_utc_offset=-9 -County "AK, Nome Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201800.epw site_zip_code=99762 site_time_zone_utc_offset=-9 -County "AK, North Slope Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201850.epw site_zip_code=99723 site_time_zone_utc_offset=-9 -County "AK, Northwest Arctic Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201880.epw site_zip_code=99752 site_time_zone_utc_offset=-9 -County "AK, Petersburg Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201950.epw site_zip_code=99833 site_time_zone_utc_offset=-9 -County "AK, Prince of Wales-Hyder Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201980.epw site_zip_code=99926 site_time_zone_utc_offset=-9 -County "AK, Sitka City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202200.epw site_zip_code=99835 site_time_zone_utc_offset=-9 -County "AK, Skagway Municipality" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202300.epw site_zip_code=99840 site_time_zone_utc_offset=-9 -County "AK, Southeast Fairbanks Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202400.epw site_zip_code=99731 site_time_zone_utc_offset=-9 -County "AK, Valdez-Cordova Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202610.epw site_zip_code=99686 site_time_zone_utc_offset=-9 -County "AK, Wrangell City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202750.epw site_zip_code=99903 site_time_zone_utc_offset=-9 -County "AK, Yakutat City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202820.epw site_zip_code=99689 site_time_zone_utc_offset=-9 -County "AK, Yukon-Koyukuk Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202900.epw site_zip_code=99740 site_time_zone_utc_offset=-9 -County "AL, Autauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100010.epw site_zip_code=36067 site_time_zone_utc_offset=-6 -County "AL, Baldwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100030.epw site_zip_code=36535 site_time_zone_utc_offset=-6 -County "AL, Barbour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100050.epw site_zip_code=36027 site_time_zone_utc_offset=-6 -County "AL, Bibb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100070.epw site_zip_code=35042 site_time_zone_utc_offset=-6 -County "AL, Blount County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100090.epw site_zip_code=35121 site_time_zone_utc_offset=-6 -County "AL, Bullock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100110.epw site_zip_code=36089 site_time_zone_utc_offset=-6 -County "AL, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100130.epw site_zip_code=36037 site_time_zone_utc_offset=-6 -County "AL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100150.epw site_zip_code=36201 site_time_zone_utc_offset=-6 -County "AL, Chambers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100170.epw site_zip_code=36863 site_time_zone_utc_offset=-6 -County "AL, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100190.epw site_zip_code=35960 site_time_zone_utc_offset=-6 -County "AL, Chilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100210.epw site_zip_code=35045 site_time_zone_utc_offset=-6 -County "AL, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100230.epw site_zip_code=36904 site_time_zone_utc_offset=-6 -County "AL, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100250.epw site_zip_code=36545 site_time_zone_utc_offset=-6 -County "AL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100270.epw site_zip_code=36251 site_time_zone_utc_offset=-6 -County "AL, Cleburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100290.epw site_zip_code=36264 site_time_zone_utc_offset=-6 -County "AL, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100310.epw site_zip_code=36330 site_time_zone_utc_offset=-6 -County "AL, Colbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100330.epw site_zip_code=35674 site_time_zone_utc_offset=-6 -County "AL, Conecuh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100350.epw site_zip_code=36401 site_time_zone_utc_offset=-6 -County "AL, Coosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100370.epw site_zip_code=35151 site_time_zone_utc_offset=-6 -County "AL, Covington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100390.epw site_zip_code=36420 site_time_zone_utc_offset=-6 -County "AL, Crenshaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100410.epw site_zip_code=36049 site_time_zone_utc_offset=-6 -County "AL, Cullman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100430.epw site_zip_code=35055 site_time_zone_utc_offset=-6 -County "AL, Dale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100450.epw site_zip_code=36360 site_time_zone_utc_offset=-6 -County "AL, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100470.epw site_zip_code=36701 site_time_zone_utc_offset=-6 -County "AL, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100490.epw site_zip_code=35967 site_time_zone_utc_offset=-6 -County "AL, Elmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100510.epw site_zip_code=36092 site_time_zone_utc_offset=-6 -County "AL, Escambia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100530.epw site_zip_code=36426 site_time_zone_utc_offset=-6 -County "AL, Etowah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100550.epw site_zip_code=35901 site_time_zone_utc_offset=-6 -County "AL, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100570.epw site_zip_code=35555 site_time_zone_utc_offset=-6 -County "AL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100590.epw site_zip_code=35653 site_time_zone_utc_offset=-6 -County "AL, Geneva County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100610.epw site_zip_code=36375 site_time_zone_utc_offset=-6 -County "AL, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100630.epw site_zip_code=35462 site_time_zone_utc_offset=-6 -County "AL, Hale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100650.epw site_zip_code=36744 site_time_zone_utc_offset=-6 -County "AL, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100670.epw site_zip_code=36310 site_time_zone_utc_offset=-6 -County "AL, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100690.epw site_zip_code=36301 site_time_zone_utc_offset=-6 -County "AL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100710.epw site_zip_code=35768 site_time_zone_utc_offset=-6 -County "AL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100730.epw site_zip_code=35215 site_time_zone_utc_offset=-6 -County "AL, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100750.epw site_zip_code=35586 site_time_zone_utc_offset=-6 -County "AL, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100770.epw site_zip_code=35630 site_time_zone_utc_offset=-6 -County "AL, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100790.epw site_zip_code=35650 site_time_zone_utc_offset=-6 -County "AL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100810.epw site_zip_code=36830 site_time_zone_utc_offset=-6 -County "AL, Limestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100830.epw site_zip_code=35611 site_time_zone_utc_offset=-6 -County "AL, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100850.epw site_zip_code=36040 site_time_zone_utc_offset=-6 -County "AL, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100870.epw site_zip_code=36083 site_time_zone_utc_offset=-6 -County "AL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100890.epw site_zip_code=35758 site_time_zone_utc_offset=-6 -County "AL, Marengo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100910.epw site_zip_code=36732 site_time_zone_utc_offset=-6 -County "AL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100930.epw site_zip_code=35570 site_time_zone_utc_offset=-6 -County "AL, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100950.epw site_zip_code=35976 site_time_zone_utc_offset=-6 -County "AL, Mobile County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100970.epw site_zip_code=36695 site_time_zone_utc_offset=-6 -County "AL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100990.epw site_zip_code=36460 site_time_zone_utc_offset=-6 -County "AL, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101010.epw site_zip_code=36117 site_time_zone_utc_offset=-6 -County "AL, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101030.epw site_zip_code=35601 site_time_zone_utc_offset=-6 -County "AL, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101050.epw site_zip_code=36756 site_time_zone_utc_offset=-6 -County "AL, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101070.epw site_zip_code=35466 site_time_zone_utc_offset=-6 -County "AL, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101090.epw site_zip_code=36081 site_time_zone_utc_offset=-6 -County "AL, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101110.epw site_zip_code=36274 site_time_zone_utc_offset=-6 -County "AL, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101130.epw site_zip_code=36869 site_time_zone_utc_offset=-6 -County "AL, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101170.epw site_zip_code=35242 site_time_zone_utc_offset=-6 -County "AL, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101150.epw site_zip_code=35120 site_time_zone_utc_offset=-6 -County "AL, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101190.epw site_zip_code=36925 site_time_zone_utc_offset=-6 -County "AL, Talladega County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101210.epw site_zip_code=35160 site_time_zone_utc_offset=-6 -County "AL, Tallapoosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101230.epw site_zip_code=35010 site_time_zone_utc_offset=-6 -County "AL, Tuscaloosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101250.epw site_zip_code=35401 site_time_zone_utc_offset=-6 -County "AL, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101270.epw site_zip_code=35504 site_time_zone_utc_offset=-6 -County "AL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101290.epw site_zip_code=36558 site_time_zone_utc_offset=-6 -County "AL, Wilcox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101310.epw site_zip_code=36726 site_time_zone_utc_offset=-6 -County "AL, Winston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101330.epw site_zip_code=35565 site_time_zone_utc_offset=-6 -County "AR, Arkansas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500010.epw site_zip_code=72160 site_time_zone_utc_offset=-6 -County "AR, Ashley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500030.epw site_zip_code=71635 site_time_zone_utc_offset=-6 -County "AR, Baxter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500050.epw site_zip_code=72653 site_time_zone_utc_offset=-6 -County "AR, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500070.epw site_zip_code=72712 site_time_zone_utc_offset=-6 -County "AR, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500090.epw site_zip_code=72601 site_time_zone_utc_offset=-6 -County "AR, Bradley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500110.epw site_zip_code=71671 site_time_zone_utc_offset=-6 -County "AR, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500130.epw site_zip_code=71744 site_time_zone_utc_offset=-6 -County "AR, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500150.epw site_zip_code=72616 site_time_zone_utc_offset=-6 -County "AR, Chicot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500170.epw site_zip_code=71653 site_time_zone_utc_offset=-6 -County "AR, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500190.epw site_zip_code=71923 site_time_zone_utc_offset=-6 -County "AR, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500210.epw site_zip_code=72454 site_time_zone_utc_offset=-6 -County "AR, Cleburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500230.epw site_zip_code=72543 site_time_zone_utc_offset=-6 -County "AR, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500250.epw site_zip_code=71665 site_time_zone_utc_offset=-6 -County "AR, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500270.epw site_zip_code=71753 site_time_zone_utc_offset=-6 -County "AR, Conway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500290.epw site_zip_code=72110 site_time_zone_utc_offset=-6 -County "AR, Craighead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500310.epw site_zip_code=72401 site_time_zone_utc_offset=-6 -County "AR, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500330.epw site_zip_code=72956 site_time_zone_utc_offset=-6 -County "AR, Crittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500350.epw site_zip_code=72301 site_time_zone_utc_offset=-6 -County "AR, Cross County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500370.epw site_zip_code=72396 site_time_zone_utc_offset=-6 -County "AR, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500390.epw site_zip_code=71742 site_time_zone_utc_offset=-6 -County "AR, Desha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500410.epw site_zip_code=71639 site_time_zone_utc_offset=-6 -County "AR, Drew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500430.epw site_zip_code=71655 site_time_zone_utc_offset=-6 -County "AR, Faulkner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500450.epw site_zip_code=72034 site_time_zone_utc_offset=-6 -County "AR, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500470.epw site_zip_code=72949 site_time_zone_utc_offset=-6 -County "AR, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500490.epw site_zip_code=72554 site_time_zone_utc_offset=-6 -County "AR, Garland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500510.epw site_zip_code=71913 site_time_zone_utc_offset=-6 -County "AR, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500530.epw site_zip_code=72150 site_time_zone_utc_offset=-6 -County "AR, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500550.epw site_zip_code=72450 site_time_zone_utc_offset=-6 -County "AR, Hempstead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500570.epw site_zip_code=71801 site_time_zone_utc_offset=-6 -County "AR, Hot Spring County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500590.epw site_zip_code=72104 site_time_zone_utc_offset=-6 -County "AR, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500610.epw site_zip_code=71852 site_time_zone_utc_offset=-6 -County "AR, Independence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500630.epw site_zip_code=72501 site_time_zone_utc_offset=-6 -County "AR, Izard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500650.epw site_zip_code=72556 site_time_zone_utc_offset=-6 -County "AR, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500670.epw site_zip_code=72112 site_time_zone_utc_offset=-6 -County "AR, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500690.epw site_zip_code=71603 site_time_zone_utc_offset=-6 -County "AR, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500710.epw site_zip_code=72830 site_time_zone_utc_offset=-6 -County "AR, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500730.epw site_zip_code=71860 site_time_zone_utc_offset=-6 -County "AR, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500750.epw site_zip_code=72476 site_time_zone_utc_offset=-6 -County "AR, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500770.epw site_zip_code=72360 site_time_zone_utc_offset=-6 -County "AR, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500790.epw site_zip_code=71667 site_time_zone_utc_offset=-6 -County "AR, Little River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500810.epw site_zip_code=71822 site_time_zone_utc_offset=-6 -County "AR, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500830.epw site_zip_code=72927 site_time_zone_utc_offset=-6 -County "AR, Lonoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500850.epw site_zip_code=72023 site_time_zone_utc_offset=-6 -County "AR, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500870.epw site_zip_code=72740 site_time_zone_utc_offset=-6 -County "AR, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500890.epw site_zip_code=72687 site_time_zone_utc_offset=-6 -County "AR, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500910.epw site_zip_code=71854 site_time_zone_utc_offset=-6 -County "AR, Mississippi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500930.epw site_zip_code=72315 site_time_zone_utc_offset=-6 -County "AR, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500950.epw site_zip_code=72021 site_time_zone_utc_offset=-6 -County "AR, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500970.epw site_zip_code=71957 site_time_zone_utc_offset=-6 -County "AR, Nevada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500990.epw site_zip_code=71857 site_time_zone_utc_offset=-6 -County "AR, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501010.epw site_zip_code=72641 site_time_zone_utc_offset=-6 -County "AR, Ouachita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501030.epw site_zip_code=71701 site_time_zone_utc_offset=-6 -County "AR, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501050.epw site_zip_code=72126 site_time_zone_utc_offset=-6 -County "AR, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501070.epw site_zip_code=72390 site_time_zone_utc_offset=-6 -County "AR, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501090.epw site_zip_code=71943 site_time_zone_utc_offset=-6 -County "AR, Poinsett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501110.epw site_zip_code=72472 site_time_zone_utc_offset=-6 -County "AR, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501130.epw site_zip_code=71953 site_time_zone_utc_offset=-6 -County "AR, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501150.epw site_zip_code=72802 site_time_zone_utc_offset=-6 -County "AR, Prairie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501170.epw site_zip_code=72040 site_time_zone_utc_offset=-6 -County "AR, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501190.epw site_zip_code=72076 site_time_zone_utc_offset=-6 -County "AR, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501210.epw site_zip_code=72455 site_time_zone_utc_offset=-6 -County "AR, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501250.epw site_zip_code=72019 site_time_zone_utc_offset=-6 -County "AR, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501270.epw site_zip_code=72958 site_time_zone_utc_offset=-6 -County "AR, Searcy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501290.epw site_zip_code=72650 site_time_zone_utc_offset=-6 -County "AR, Sebastian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501310.epw site_zip_code=72903 site_time_zone_utc_offset=-6 -County "AR, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501330.epw site_zip_code=71832 site_time_zone_utc_offset=-6 -County "AR, Sharp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501350.epw site_zip_code=72529 site_time_zone_utc_offset=-6 -County "AR, St. Francis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501230.epw site_zip_code=72335 site_time_zone_utc_offset=-6 -County "AR, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501370.epw site_zip_code=72560 site_time_zone_utc_offset=-6 -County "AR, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501390.epw site_zip_code=71730 site_time_zone_utc_offset=-6 -County "AR, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501410.epw site_zip_code=72031 site_time_zone_utc_offset=-6 -County "AR, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501430.epw site_zip_code=72701 site_time_zone_utc_offset=-6 -County "AR, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501450.epw site_zip_code=72143 site_time_zone_utc_offset=-6 -County "AR, Woodruff County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501470.epw site_zip_code=72006 site_time_zone_utc_offset=-6 -County "AR, Yell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501490.epw site_zip_code=72834 site_time_zone_utc_offset=-6 -County "AZ, Apache County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400010.epw site_zip_code=85936 site_time_zone_utc_offset=-7 -County "AZ, Cochise County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400030.epw site_zip_code=85635 site_time_zone_utc_offset=-7 -County "AZ, Coconino County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400050.epw site_zip_code=86001 site_time_zone_utc_offset=-7 -County "AZ, Gila County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400070.epw site_zip_code=85541 site_time_zone_utc_offset=-7 -County "AZ, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400090.epw site_zip_code=85546 site_time_zone_utc_offset=-7 -County "AZ, Greenlee County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400110.epw site_zip_code=85534 site_time_zone_utc_offset=-7 -County "AZ, La Paz County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400120.epw site_zip_code=85344 site_time_zone_utc_offset=-7 -County "AZ, Maricopa County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400130.epw site_zip_code=85281 site_time_zone_utc_offset=-7 -County "AZ, Mohave County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400150.epw site_zip_code=86442 site_time_zone_utc_offset=-7 -County "AZ, Navajo County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400170.epw site_zip_code=85901 site_time_zone_utc_offset=-7 -County "AZ, Pima County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400190.epw site_zip_code=85705 site_time_zone_utc_offset=-7 -County "AZ, Pinal County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400210.epw site_zip_code=85122 site_time_zone_utc_offset=-7 -County "AZ, Santa Cruz County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400230.epw site_zip_code=85621 site_time_zone_utc_offset=-7 -County "AZ, Yavapai County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400250.epw site_zip_code=86314 site_time_zone_utc_offset=-7 -County "AZ, Yuma County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400270.epw site_zip_code=85364 site_time_zone_utc_offset=-7 -County "CA, Alameda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600010.epw site_zip_code=94501 site_time_zone_utc_offset=-8 -County "CA, Alpine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600030.epw site_zip_code=96120 site_time_zone_utc_offset=-8 -County "CA, Amador County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600050.epw site_zip_code=95642 site_time_zone_utc_offset=-8 -County "CA, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600070.epw site_zip_code=95928 site_time_zone_utc_offset=-8 -County "CA, Calaveras County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600090.epw site_zip_code=95252 site_time_zone_utc_offset=-8 -County "CA, Colusa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600110.epw site_zip_code=95932 site_time_zone_utc_offset=-8 -County "CA, Contra Costa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600130.epw site_zip_code=94565 site_time_zone_utc_offset=-8 -County "CA, Del Norte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600150.epw site_zip_code=95531 site_time_zone_utc_offset=-8 -County "CA, El Dorado County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600170.epw site_zip_code=95762 site_time_zone_utc_offset=-8 -County "CA, Fresno County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600190.epw site_zip_code=93722 site_time_zone_utc_offset=-8 -County "CA, Glenn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600210.epw site_zip_code=95963 site_time_zone_utc_offset=-8 -County "CA, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600230.epw site_zip_code=95501 site_time_zone_utc_offset=-8 -County "CA, Imperial County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600250.epw site_zip_code=92243 site_time_zone_utc_offset=-8 -County "CA, Inyo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600270.epw site_zip_code=93514 site_time_zone_utc_offset=-8 -County "CA, Kern County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600290.epw site_zip_code=93306 site_time_zone_utc_offset=-8 -County "CA, Kings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600310.epw site_zip_code=93230 site_time_zone_utc_offset=-8 -County "CA, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600330.epw site_zip_code=95422 site_time_zone_utc_offset=-8 -County "CA, Lassen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600350.epw site_zip_code=96130 site_time_zone_utc_offset=-8 -County "CA, Los Angeles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600370.epw site_zip_code=90250 site_time_zone_utc_offset=-8 -County "CA, Madera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600390.epw site_zip_code=93637 site_time_zone_utc_offset=-8 -County "CA, Marin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600410.epw site_zip_code=94901 site_time_zone_utc_offset=-8 -County "CA, Mariposa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600430.epw site_zip_code=95338 site_time_zone_utc_offset=-8 -County "CA, Mendocino County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600450.epw site_zip_code=95482 site_time_zone_utc_offset=-8 -County "CA, Merced County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600470.epw site_zip_code=93635 site_time_zone_utc_offset=-8 -County "CA, Modoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600490.epw site_zip_code=96101 site_time_zone_utc_offset=-8 -County "CA, Mono County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600510.epw site_zip_code=93546 site_time_zone_utc_offset=-8 -County "CA, Monterey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600530.epw site_zip_code=93906 site_time_zone_utc_offset=-8 -County "CA, Napa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600550.epw site_zip_code=94558 site_time_zone_utc_offset=-8 -County "CA, Nevada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600570.epw site_zip_code=95945 site_time_zone_utc_offset=-8 -County "CA, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600590.epw site_zip_code=92683 site_time_zone_utc_offset=-8 -County "CA, Placer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600610.epw site_zip_code=95747 site_time_zone_utc_offset=-8 -County "CA, Plumas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600630.epw site_zip_code=96122 site_time_zone_utc_offset=-8 -County "CA, Riverside County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600650.epw site_zip_code=92503 site_time_zone_utc_offset=-8 -County "CA, Sacramento County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600670.epw site_zip_code=95630 site_time_zone_utc_offset=-8 -County "CA, San Benito County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600690.epw site_zip_code=95023 site_time_zone_utc_offset=-8 -County "CA, San Bernardino County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600710.epw site_zip_code=92336 site_time_zone_utc_offset=-8 -County "CA, San Diego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600730.epw site_zip_code=92101 site_time_zone_utc_offset=-8 -County "CA, San Francisco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600750.epw site_zip_code=94109 site_time_zone_utc_offset=-8 -County "CA, San Joaquin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600770.epw site_zip_code=95206 site_time_zone_utc_offset=-8 -County "CA, San Luis Obispo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600790.epw site_zip_code=93446 site_time_zone_utc_offset=-8 -County "CA, San Mateo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600810.epw site_zip_code=94080 site_time_zone_utc_offset=-8 -County "CA, Santa Barbara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600830.epw site_zip_code=93436 site_time_zone_utc_offset=-8 -County "CA, Santa Clara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600850.epw site_zip_code=95035 site_time_zone_utc_offset=-8 -County "CA, Santa Cruz County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600870.epw site_zip_code=95076 site_time_zone_utc_offset=-8 -County "CA, Shasta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600890.epw site_zip_code=96003 site_time_zone_utc_offset=-8 -County "CA, Sierra County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600910.epw site_zip_code=95960 site_time_zone_utc_offset=-8 -County "CA, Siskiyou County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600930.epw site_zip_code=96097 site_time_zone_utc_offset=-8 -County "CA, Solano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600950.epw site_zip_code=94533 site_time_zone_utc_offset=-8 -County "CA, Sonoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600970.epw site_zip_code=95403 site_time_zone_utc_offset=-8 -County "CA, Stanislaus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600990.epw site_zip_code=95355 site_time_zone_utc_offset=-8 -County "CA, Sutter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601010.epw site_zip_code=95991 site_time_zone_utc_offset=-8 -County "CA, Tehama County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601030.epw site_zip_code=96080 site_time_zone_utc_offset=-8 -County "CA, Trinity County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601050.epw site_zip_code=96091 site_time_zone_utc_offset=-8 -County "CA, Tulare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601070.epw site_zip_code=93274 site_time_zone_utc_offset=-8 -County "CA, Tuolumne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601090.epw site_zip_code=95370 site_time_zone_utc_offset=-8 -County "CA, Ventura County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601110.epw site_zip_code=93065 site_time_zone_utc_offset=-8 -County "CA, Yolo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601130.epw site_zip_code=95616 site_time_zone_utc_offset=-8 -County "CA, Yuba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601150.epw site_zip_code=95901 site_time_zone_utc_offset=-8 -County "CO, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800010.epw site_zip_code=80229 site_time_zone_utc_offset=-7 -County "CO, Alamosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800030.epw site_zip_code=81101 site_time_zone_utc_offset=-7 -County "CO, Arapahoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800050.epw site_zip_code=80013 site_time_zone_utc_offset=-7 -County "CO, Archuleta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800070.epw site_zip_code=81147 site_time_zone_utc_offset=-7 -County "CO, Baca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800090.epw site_zip_code=81073 site_time_zone_utc_offset=-7 -County "CO, Bent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800110.epw site_zip_code=81054 site_time_zone_utc_offset=-7 -County "CO, Boulder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800130.epw site_zip_code=80501 site_time_zone_utc_offset=-7 -County "CO, Broomfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800140.epw site_zip_code=80020 site_time_zone_utc_offset=-7 -County "CO, Chaffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800150.epw site_zip_code=81201 site_time_zone_utc_offset=-7 -County "CO, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800170.epw site_zip_code=80810 site_time_zone_utc_offset=-7 -County "CO, Clear Creek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800190.epw site_zip_code=80439 site_time_zone_utc_offset=-7 -County "CO, Conejos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800210.epw site_zip_code=81120 site_time_zone_utc_offset=-7 -County "CO, Costilla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800230.epw site_zip_code=81133 site_time_zone_utc_offset=-7 -County "CO, Crowley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800250.epw site_zip_code=81063 site_time_zone_utc_offset=-7 -County "CO, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800270.epw site_zip_code=81252 site_time_zone_utc_offset=-7 -County "CO, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800290.epw site_zip_code=81416 site_time_zone_utc_offset=-7 -County "CO, Denver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800310.epw site_zip_code=80211 site_time_zone_utc_offset=-7 -County "CO, Dolores County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800330.epw site_zip_code=81324 site_time_zone_utc_offset=-7 -County "CO, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800350.epw site_zip_code=80134 site_time_zone_utc_offset=-7 -County "CO, Eagle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800370.epw site_zip_code=81620 site_time_zone_utc_offset=-7 -County "CO, El Paso County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800410.epw site_zip_code=80918 site_time_zone_utc_offset=-7 -County "CO, Elbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800390.epw site_zip_code=80107 site_time_zone_utc_offset=-7 -County "CO, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800430.epw site_zip_code=81212 site_time_zone_utc_offset=-7 -County "CO, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800450.epw site_zip_code=81601 site_time_zone_utc_offset=-7 -County "CO, Gilpin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800470.epw site_zip_code=80422 site_time_zone_utc_offset=-7 -County "CO, Grand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800490.epw site_zip_code=80459 site_time_zone_utc_offset=-7 -County "CO, Gunnison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800510.epw site_zip_code=81230 site_time_zone_utc_offset=-7 -County "CO, Hinsdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800530.epw site_zip_code=81235 site_time_zone_utc_offset=-7 -County "CO, Huerfano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800550.epw site_zip_code=81089 site_time_zone_utc_offset=-7 -County "CO, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800570.epw site_zip_code=80480 site_time_zone_utc_offset=-7 -County "CO, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800590.epw site_zip_code=80127 site_time_zone_utc_offset=-7 -County "CO, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800610.epw site_zip_code=81036 site_time_zone_utc_offset=-7 -County "CO, Kit Carson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800630.epw site_zip_code=80807 site_time_zone_utc_offset=-7 -County "CO, La Plata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800670.epw site_zip_code=81301 site_time_zone_utc_offset=-7 -County "CO, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800650.epw site_zip_code=80461 site_time_zone_utc_offset=-7 -County "CO, Larimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800690.epw site_zip_code=80525 site_time_zone_utc_offset=-7 -County "CO, Las Animas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800710.epw site_zip_code=81082 site_time_zone_utc_offset=-7 -County "CO, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800730.epw site_zip_code=80828 site_time_zone_utc_offset=-7 -County "CO, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800750.epw site_zip_code=80751 site_time_zone_utc_offset=-7 -County "CO, Mesa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800770.epw site_zip_code=81504 site_time_zone_utc_offset=-7 -County "CO, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800790.epw site_zip_code=81130 site_time_zone_utc_offset=-7 -County "CO, Moffat County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800810.epw site_zip_code=81625 site_time_zone_utc_offset=-7 -County "CO, Montezuma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800830.epw site_zip_code=81321 site_time_zone_utc_offset=-7 -County "CO, Montrose County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800850.epw site_zip_code=81401 site_time_zone_utc_offset=-7 -County "CO, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800870.epw site_zip_code=80701 site_time_zone_utc_offset=-7 -County "CO, Otero County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800890.epw site_zip_code=81050 site_time_zone_utc_offset=-7 -County "CO, Ouray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800910.epw site_zip_code=81432 site_time_zone_utc_offset=-7 -County "CO, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800930.epw site_zip_code=80421 site_time_zone_utc_offset=-7 -County "CO, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800950.epw site_zip_code=80734 site_time_zone_utc_offset=-7 -County "CO, Pitkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800970.epw site_zip_code=81612 site_time_zone_utc_offset=-7 -County "CO, Prowers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800990.epw site_zip_code=81052 site_time_zone_utc_offset=-7 -County "CO, Pueblo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801010.epw site_zip_code=81001 site_time_zone_utc_offset=-7 -County "CO, Rio Blanco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801030.epw site_zip_code=81648 site_time_zone_utc_offset=-7 -County "CO, Rio Grande County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801050.epw site_zip_code=81144 site_time_zone_utc_offset=-7 -County "CO, Routt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801070.epw site_zip_code=80487 site_time_zone_utc_offset=-7 -County "CO, Saguache County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801090.epw site_zip_code=81125 site_time_zone_utc_offset=-7 -County "CO, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801110.epw site_zip_code=81433 site_time_zone_utc_offset=-7 -County "CO, San Miguel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801130.epw site_zip_code=81435 site_time_zone_utc_offset=-7 -County "CO, Sedgwick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801150.epw site_zip_code=80737 site_time_zone_utc_offset=-7 -County "CO, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801170.epw site_zip_code=80424 site_time_zone_utc_offset=-7 -County "CO, Teller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801190.epw site_zip_code=80863 site_time_zone_utc_offset=-7 -County "CO, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801210.epw site_zip_code=80720 site_time_zone_utc_offset=-7 -County "CO, Weld County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801230.epw site_zip_code=80634 site_time_zone_utc_offset=-7 -County "CO, Yuma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801250.epw site_zip_code=80759 site_time_zone_utc_offset=-7 -County "CT, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900010.epw site_zip_code=06902 site_time_zone_utc_offset=-5 -County "CT, Hartford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900030.epw site_zip_code=06010 site_time_zone_utc_offset=-5 -County "CT, Litchfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900050.epw site_zip_code=06790 site_time_zone_utc_offset=-5 -County "CT, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900070.epw site_zip_code=06457 site_time_zone_utc_offset=-5 -County "CT, New Haven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900090.epw site_zip_code=06516 site_time_zone_utc_offset=-5 -County "CT, New London County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900110.epw site_zip_code=06360 site_time_zone_utc_offset=-5 -County "CT, Tolland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900130.epw site_zip_code=06066 site_time_zone_utc_offset=-5 -County "CT, Windham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900150.epw site_zip_code=06226 site_time_zone_utc_offset=-5 -County "DC, District of Columbia" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1100010.epw site_zip_code=20002 site_time_zone_utc_offset=-5 -County "DE, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000010.epw site_zip_code=19904 site_time_zone_utc_offset=-5 -County "DE, New Castle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000030.epw site_zip_code=19720 site_time_zone_utc_offset=-5 -County "DE, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000050.epw site_zip_code=19966 site_time_zone_utc_offset=-5 -County "FL, Alachua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200010.epw site_zip_code=32608 site_time_zone_utc_offset=-5 -County "FL, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200030.epw site_zip_code=32063 site_time_zone_utc_offset=-5 -County "FL, Bay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200050.epw site_zip_code=32404 site_time_zone_utc_offset=-6 -County "FL, Bradford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200070.epw site_zip_code=32091 site_time_zone_utc_offset=-5 -County "FL, Brevard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200090.epw site_zip_code=32940 site_time_zone_utc_offset=-5 -County "FL, Broward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200110.epw site_zip_code=33027 site_time_zone_utc_offset=-5 -County "FL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200130.epw site_zip_code=32424 site_time_zone_utc_offset=-6 -County "FL, Charlotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200150.epw site_zip_code=33950 site_time_zone_utc_offset=-5 -County "FL, Citrus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200170.epw site_zip_code=34446 site_time_zone_utc_offset=-5 -County "FL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200190.epw site_zip_code=32068 site_time_zone_utc_offset=-5 -County "FL, Collier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200210.epw site_zip_code=34112 site_time_zone_utc_offset=-5 -County "FL, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200230.epw site_zip_code=32025 site_time_zone_utc_offset=-5 -County "FL, DeSoto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200270.epw site_zip_code=34266 site_time_zone_utc_offset=-5 -County "FL, Dixie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200290.epw site_zip_code=32680 site_time_zone_utc_offset=-5 -County "FL, Duval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200310.epw site_zip_code=32256 site_time_zone_utc_offset=-5 -County "FL, Escambia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200330.epw site_zip_code=32507 site_time_zone_utc_offset=-6 -County "FL, Flagler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200350.epw site_zip_code=32137 site_time_zone_utc_offset=-5 -County "FL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200370.epw site_zip_code=32328 site_time_zone_utc_offset=-5 -County "FL, Gadsden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200390.epw site_zip_code=32351 site_time_zone_utc_offset=-5 -County "FL, Gilchrist County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200410.epw site_zip_code=32693 site_time_zone_utc_offset=-5 -County "FL, Glades County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200430.epw site_zip_code=33471 site_time_zone_utc_offset=-5 -County "FL, Gulf County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200450.epw site_zip_code=32456 site_time_zone_utc_offset=-6 -County "FL, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200470.epw site_zip_code=32052 site_time_zone_utc_offset=-5 -County "FL, Hardee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200490.epw site_zip_code=33873 site_time_zone_utc_offset=-5 -County "FL, Hendry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200510.epw site_zip_code=33440 site_time_zone_utc_offset=-5 -County "FL, Hernando County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200530.epw site_zip_code=34609 site_time_zone_utc_offset=-5 -County "FL, Highlands County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200550.epw site_zip_code=33870 site_time_zone_utc_offset=-5 -County "FL, Hillsborough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200570.epw site_zip_code=33647 site_time_zone_utc_offset=-5 -County "FL, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200590.epw site_zip_code=32425 site_time_zone_utc_offset=-6 -County "FL, Indian River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200610.epw site_zip_code=32958 site_time_zone_utc_offset=-5 -County "FL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200630.epw site_zip_code=32446 site_time_zone_utc_offset=-6 -County "FL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200650.epw site_zip_code=32344 site_time_zone_utc_offset=-5 -County "FL, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200670.epw site_zip_code=32066 site_time_zone_utc_offset=-5 -County "FL, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200690.epw site_zip_code=34711 site_time_zone_utc_offset=-5 -County "FL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200710.epw site_zip_code=34135 site_time_zone_utc_offset=-5 -County "FL, Leon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200730.epw site_zip_code=32303 site_time_zone_utc_offset=-5 -County "FL, Levy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200750.epw site_zip_code=32696 site_time_zone_utc_offset=-5 -County "FL, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200770.epw site_zip_code=32321 site_time_zone_utc_offset=-5 -County "FL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200790.epw site_zip_code=32340 site_time_zone_utc_offset=-5 -County "FL, Manatee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200810.epw site_zip_code=34221 site_time_zone_utc_offset=-5 -County "FL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200830.epw site_zip_code=34491 site_time_zone_utc_offset=-5 -County "FL, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200850.epw site_zip_code=34997 site_time_zone_utc_offset=-5 -County "FL, Miami-Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200860.epw site_zip_code=33160 site_time_zone_utc_offset=-5 -County "FL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200870.epw site_zip_code=33040 site_time_zone_utc_offset=-5 -County "FL, Nassau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200890.epw site_zip_code=32034 site_time_zone_utc_offset=-5 -County "FL, Okaloosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200910.epw site_zip_code=32541 site_time_zone_utc_offset=-6 -County "FL, Okeechobee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200930.epw site_zip_code=34974 site_time_zone_utc_offset=-5 -County "FL, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200950.epw site_zip_code=34787 site_time_zone_utc_offset=-5 -County "FL, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200970.epw site_zip_code=34746 site_time_zone_utc_offset=-5 -County "FL, Palm Beach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200990.epw site_zip_code=33411 site_time_zone_utc_offset=-5 -County "FL, Pasco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201010.epw site_zip_code=34668 site_time_zone_utc_offset=-5 -County "FL, Pinellas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201030.epw site_zip_code=34698 site_time_zone_utc_offset=-5 -County "FL, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201050.epw site_zip_code=33810 site_time_zone_utc_offset=-5 -County "FL, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201070.epw site_zip_code=32177 site_time_zone_utc_offset=-5 -County "FL, Santa Rosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201130.epw site_zip_code=32566 site_time_zone_utc_offset=-6 -County "FL, Sarasota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201150.epw site_zip_code=34293 site_time_zone_utc_offset=-5 -County "FL, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201170.epw site_zip_code=32771 site_time_zone_utc_offset=-5 -County "FL, St. Johns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201090.epw site_zip_code=32259 site_time_zone_utc_offset=-5 -County "FL, St. Lucie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201110.epw site_zip_code=34953 site_time_zone_utc_offset=-5 -County "FL, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201190.epw site_zip_code=32162 site_time_zone_utc_offset=-5 -County "FL, Suwannee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201210.epw site_zip_code=32060 site_time_zone_utc_offset=-5 -County "FL, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201230.epw site_zip_code=32348 site_time_zone_utc_offset=-5 -County "FL, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201250.epw site_zip_code=32054 site_time_zone_utc_offset=-5 -County "FL, Volusia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201270.epw site_zip_code=32174 site_time_zone_utc_offset=-5 -County "FL, Wakulla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201290.epw site_zip_code=32327 site_time_zone_utc_offset=-5 -County "FL, Walton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201310.epw site_zip_code=32459 site_time_zone_utc_offset=-6 -County "FL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201330.epw site_zip_code=32428 site_time_zone_utc_offset=-6 -County "GA, Appling County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300010.epw site_zip_code=31513 site_time_zone_utc_offset=-5 -County "GA, Atkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300030.epw site_zip_code=31642 site_time_zone_utc_offset=-5 -County "GA, Bacon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300050.epw site_zip_code=31510 site_time_zone_utc_offset=-5 -County "GA, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300070.epw site_zip_code=39870 site_time_zone_utc_offset=-5 -County "GA, Baldwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300090.epw site_zip_code=31061 site_time_zone_utc_offset=-5 -County "GA, Banks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300110.epw site_zip_code=30547 site_time_zone_utc_offset=-5 -County "GA, Barrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300130.epw site_zip_code=30680 site_time_zone_utc_offset=-5 -County "GA, Bartow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300150.epw site_zip_code=30120 site_time_zone_utc_offset=-5 -County "GA, Ben Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300170.epw site_zip_code=31750 site_time_zone_utc_offset=-5 -County "GA, Berrien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300190.epw site_zip_code=31639 site_time_zone_utc_offset=-5 -County "GA, Bibb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300210.epw site_zip_code=31204 site_time_zone_utc_offset=-5 -County "GA, Bleckley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300230.epw site_zip_code=31014 site_time_zone_utc_offset=-5 -County "GA, Brantley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300250.epw site_zip_code=31553 site_time_zone_utc_offset=-5 -County "GA, Brooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300270.epw site_zip_code=31643 site_time_zone_utc_offset=-5 -County "GA, Bryan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300290.epw site_zip_code=31324 site_time_zone_utc_offset=-5 -County "GA, Bulloch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300310.epw site_zip_code=30458 site_time_zone_utc_offset=-5 -County "GA, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300330.epw site_zip_code=30830 site_time_zone_utc_offset=-5 -County "GA, Butts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300350.epw site_zip_code=30233 site_time_zone_utc_offset=-5 -County "GA, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300370.epw site_zip_code=39846 site_time_zone_utc_offset=-5 -County "GA, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300390.epw site_zip_code=31558 site_time_zone_utc_offset=-5 -County "GA, Candler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300430.epw site_zip_code=30439 site_time_zone_utc_offset=-5 -County "GA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300450.epw site_zip_code=30117 site_time_zone_utc_offset=-5 -County "GA, Catoosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300470.epw site_zip_code=30736 site_time_zone_utc_offset=-5 -County "GA, Charlton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300490.epw site_zip_code=31537 site_time_zone_utc_offset=-5 -County "GA, Chatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300510.epw site_zip_code=31419 site_time_zone_utc_offset=-5 -County "GA, Chattahoochee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300530.epw site_zip_code=31905 site_time_zone_utc_offset=-5 -County "GA, Chattooga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300550.epw site_zip_code=30747 site_time_zone_utc_offset=-5 -County "GA, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300570.epw site_zip_code=30188 site_time_zone_utc_offset=-5 -County "GA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300590.epw site_zip_code=30606 site_time_zone_utc_offset=-5 -County "GA, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300610.epw site_zip_code=39851 site_time_zone_utc_offset=-5 -County "GA, Clayton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300630.epw site_zip_code=30236 site_time_zone_utc_offset=-5 -County "GA, Clinch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300650.epw site_zip_code=31634 site_time_zone_utc_offset=-5 -County "GA, Cobb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300670.epw site_zip_code=30080 site_time_zone_utc_offset=-5 -County "GA, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300690.epw site_zip_code=31533 site_time_zone_utc_offset=-5 -County "GA, Colquitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300710.epw site_zip_code=31768 site_time_zone_utc_offset=-5 -County "GA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300730.epw site_zip_code=30809 site_time_zone_utc_offset=-5 -County "GA, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300750.epw site_zip_code=31620 site_time_zone_utc_offset=-5 -County "GA, Coweta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300770.epw site_zip_code=30263 site_time_zone_utc_offset=-5 -County "GA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300790.epw site_zip_code=31078 site_time_zone_utc_offset=-5 -County "GA, Crisp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300810.epw site_zip_code=31015 site_time_zone_utc_offset=-5 -County "GA, Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300830.epw site_zip_code=30752 site_time_zone_utc_offset=-5 -County "GA, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300850.epw site_zip_code=30534 site_time_zone_utc_offset=-5 -County "GA, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300890.epw site_zip_code=30058 site_time_zone_utc_offset=-5 -County "GA, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300870.epw site_zip_code=39819 site_time_zone_utc_offset=-5 -County "GA, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300910.epw site_zip_code=31023 site_time_zone_utc_offset=-5 -County "GA, Dooly County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300930.epw site_zip_code=31092 site_time_zone_utc_offset=-5 -County "GA, Dougherty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300950.epw site_zip_code=31705 site_time_zone_utc_offset=-5 -County "GA, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300970.epw site_zip_code=30135 site_time_zone_utc_offset=-5 -County "GA, Early County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300990.epw site_zip_code=39823 site_time_zone_utc_offset=-5 -County "GA, Echols County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301010.epw site_zip_code=31636 site_time_zone_utc_offset=-5 -County "GA, Effingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301030.epw site_zip_code=31326 site_time_zone_utc_offset=-5 -County "GA, Elbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301050.epw site_zip_code=30635 site_time_zone_utc_offset=-5 -County "GA, Emanuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301070.epw site_zip_code=30401 site_time_zone_utc_offset=-5 -County "GA, Evans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301090.epw site_zip_code=30417 site_time_zone_utc_offset=-5 -County "GA, Fannin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301110.epw site_zip_code=30513 site_time_zone_utc_offset=-5 -County "GA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301130.epw site_zip_code=30269 site_time_zone_utc_offset=-5 -County "GA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301150.epw site_zip_code=30165 site_time_zone_utc_offset=-5 -County "GA, Forsyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301170.epw site_zip_code=30040 site_time_zone_utc_offset=-5 -County "GA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301190.epw site_zip_code=30553 site_time_zone_utc_offset=-5 -County "GA, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301210.epw site_zip_code=30318 site_time_zone_utc_offset=-5 -County "GA, Gilmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301230.epw site_zip_code=30540 site_time_zone_utc_offset=-5 -County "GA, Glascock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301250.epw site_zip_code=30810 site_time_zone_utc_offset=-5 -County "GA, Glynn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301270.epw site_zip_code=31525 site_time_zone_utc_offset=-5 -County "GA, Gordon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301290.epw site_zip_code=30701 site_time_zone_utc_offset=-5 -County "GA, Grady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301310.epw site_zip_code=39828 site_time_zone_utc_offset=-5 -County "GA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301330.epw site_zip_code=30642 site_time_zone_utc_offset=-5 -County "GA, Gwinnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301350.epw site_zip_code=30044 site_time_zone_utc_offset=-5 -County "GA, Habersham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301370.epw site_zip_code=30531 site_time_zone_utc_offset=-5 -County "GA, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301390.epw site_zip_code=30542 site_time_zone_utc_offset=-5 -County "GA, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301410.epw site_zip_code=31087 site_time_zone_utc_offset=-5 -County "GA, Haralson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301430.epw site_zip_code=30110 site_time_zone_utc_offset=-5 -County "GA, Harris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301450.epw site_zip_code=31804 site_time_zone_utc_offset=-5 -County "GA, Hart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301470.epw site_zip_code=30643 site_time_zone_utc_offset=-5 -County "GA, Heard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301490.epw site_zip_code=30217 site_time_zone_utc_offset=-5 -County "GA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301510.epw site_zip_code=30253 site_time_zone_utc_offset=-5 -County "GA, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301530.epw site_zip_code=31088 site_time_zone_utc_offset=-5 -County "GA, Irwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301550.epw site_zip_code=31774 site_time_zone_utc_offset=-5 -County "GA, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301570.epw site_zip_code=30549 site_time_zone_utc_offset=-5 -County "GA, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301590.epw site_zip_code=31064 site_time_zone_utc_offset=-5 -County "GA, Jeff Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301610.epw site_zip_code=31539 site_time_zone_utc_offset=-5 -County "GA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301630.epw site_zip_code=30434 site_time_zone_utc_offset=-5 -County "GA, Jenkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301650.epw site_zip_code=30442 site_time_zone_utc_offset=-5 -County "GA, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301670.epw site_zip_code=31096 site_time_zone_utc_offset=-5 -County "GA, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301690.epw site_zip_code=31032 site_time_zone_utc_offset=-5 -County "GA, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301710.epw site_zip_code=30204 site_time_zone_utc_offset=-5 -County "GA, Lanier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301730.epw site_zip_code=31635 site_time_zone_utc_offset=-5 -County "GA, Laurens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301750.epw site_zip_code=31021 site_time_zone_utc_offset=-5 -County "GA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301770.epw site_zip_code=31763 site_time_zone_utc_offset=-5 -County "GA, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301790.epw site_zip_code=31313 site_time_zone_utc_offset=-5 -County "GA, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301810.epw site_zip_code=30817 site_time_zone_utc_offset=-5 -County "GA, Long County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301830.epw site_zip_code=31316 site_time_zone_utc_offset=-5 -County "GA, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301850.epw site_zip_code=31601 site_time_zone_utc_offset=-5 -County "GA, Lumpkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301870.epw site_zip_code=30533 site_time_zone_utc_offset=-5 -County "GA, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301930.epw site_zip_code=31063 site_time_zone_utc_offset=-5 -County "GA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301950.epw site_zip_code=30633 site_time_zone_utc_offset=-5 -County "GA, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301970.epw site_zip_code=31803 site_time_zone_utc_offset=-5 -County "GA, McDuffie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301890.epw site_zip_code=30824 site_time_zone_utc_offset=-5 -County "GA, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301910.epw site_zip_code=31331 site_time_zone_utc_offset=-5 -County "GA, Meriwether County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301990.epw site_zip_code=31816 site_time_zone_utc_offset=-5 -County "GA, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302010.epw site_zip_code=39837 site_time_zone_utc_offset=-5 -County "GA, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302050.epw site_zip_code=31730 site_time_zone_utc_offset=-5 -County "GA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302070.epw site_zip_code=31029 site_time_zone_utc_offset=-5 -County "GA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302090.epw site_zip_code=30445 site_time_zone_utc_offset=-5 -County "GA, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302110.epw site_zip_code=30650 site_time_zone_utc_offset=-5 -County "GA, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302130.epw site_zip_code=30705 site_time_zone_utc_offset=-5 -County "GA, Muscogee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302150.epw site_zip_code=31907 site_time_zone_utc_offset=-5 -County "GA, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302170.epw site_zip_code=30016 site_time_zone_utc_offset=-5 -County "GA, Oconee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302190.epw site_zip_code=30677 site_time_zone_utc_offset=-5 -County "GA, Oglethorpe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302210.epw site_zip_code=30683 site_time_zone_utc_offset=-5 -County "GA, Paulding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302230.epw site_zip_code=30132 site_time_zone_utc_offset=-5 -County "GA, Peach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302250.epw site_zip_code=31030 site_time_zone_utc_offset=-5 -County "GA, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302270.epw site_zip_code=30143 site_time_zone_utc_offset=-5 -County "GA, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302290.epw site_zip_code=31516 site_time_zone_utc_offset=-5 -County "GA, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302310.epw site_zip_code=30292 site_time_zone_utc_offset=-5 -County "GA, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302330.epw site_zip_code=30125 site_time_zone_utc_offset=-5 -County "GA, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302350.epw site_zip_code=31036 site_time_zone_utc_offset=-5 -County "GA, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302370.epw site_zip_code=31024 site_time_zone_utc_offset=-5 -County "GA, Quitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302390.epw site_zip_code=39854 site_time_zone_utc_offset=-5 -County "GA, Rabun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302410.epw site_zip_code=30525 site_time_zone_utc_offset=-5 -County "GA, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302430.epw site_zip_code=39840 site_time_zone_utc_offset=-5 -County "GA, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302450.epw site_zip_code=30909 site_time_zone_utc_offset=-5 -County "GA, Rockdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302470.epw site_zip_code=30094 site_time_zone_utc_offset=-5 -County "GA, Schley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302490.epw site_zip_code=31806 site_time_zone_utc_offset=-5 -County "GA, Screven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302510.epw site_zip_code=30467 site_time_zone_utc_offset=-5 -County "GA, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302530.epw site_zip_code=39845 site_time_zone_utc_offset=-5 -County "GA, Spalding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302550.epw site_zip_code=30223 site_time_zone_utc_offset=-5 -County "GA, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302570.epw site_zip_code=30577 site_time_zone_utc_offset=-5 -County "GA, Stewart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302590.epw site_zip_code=31825 site_time_zone_utc_offset=-5 -County "GA, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302610.epw site_zip_code=31709 site_time_zone_utc_offset=-5 -County "GA, Talbot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302630.epw site_zip_code=31827 site_time_zone_utc_offset=-5 -County "GA, Taliaferro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302650.epw site_zip_code=30631 site_time_zone_utc_offset=-5 -County "GA, Tattnall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302670.epw site_zip_code=30427 site_time_zone_utc_offset=-5 -County "GA, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302690.epw site_zip_code=31006 site_time_zone_utc_offset=-5 -County "GA, Telfair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302710.epw site_zip_code=31055 site_time_zone_utc_offset=-5 -County "GA, Terrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302730.epw site_zip_code=39842 site_time_zone_utc_offset=-5 -County "GA, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302750.epw site_zip_code=31792 site_time_zone_utc_offset=-5 -County "GA, Tift County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302770.epw site_zip_code=31794 site_time_zone_utc_offset=-5 -County "GA, Toombs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302790.epw site_zip_code=30474 site_time_zone_utc_offset=-5 -County "GA, Towns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302810.epw site_zip_code=30546 site_time_zone_utc_offset=-5 -County "GA, Treutlen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302830.epw site_zip_code=30457 site_time_zone_utc_offset=-5 -County "GA, Troup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302850.epw site_zip_code=30241 site_time_zone_utc_offset=-5 -County "GA, Turner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302870.epw site_zip_code=31714 site_time_zone_utc_offset=-5 -County "GA, Twiggs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302890.epw site_zip_code=31044 site_time_zone_utc_offset=-5 -County "GA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302910.epw site_zip_code=30512 site_time_zone_utc_offset=-5 -County "GA, Upson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302930.epw site_zip_code=30286 site_time_zone_utc_offset=-5 -County "GA, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302950.epw site_zip_code=30741 site_time_zone_utc_offset=-5 -County "GA, Walton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302970.epw site_zip_code=30052 site_time_zone_utc_offset=-5 -County "GA, Ware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302990.epw site_zip_code=31503 site_time_zone_utc_offset=-5 -County "GA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303010.epw site_zip_code=30828 site_time_zone_utc_offset=-5 -County "GA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303030.epw site_zip_code=31082 site_time_zone_utc_offset=-5 -County "GA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303050.epw site_zip_code=31545 site_time_zone_utc_offset=-5 -County "GA, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303070.epw site_zip_code=31824 site_time_zone_utc_offset=-5 -County "GA, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303090.epw site_zip_code=30428 site_time_zone_utc_offset=-5 -County "GA, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303110.epw site_zip_code=30528 site_time_zone_utc_offset=-5 -County "GA, Whitfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303130.epw site_zip_code=30721 site_time_zone_utc_offset=-5 -County "GA, Wilcox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303150.epw site_zip_code=31001 site_time_zone_utc_offset=-5 -County "GA, Wilkes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303170.epw site_zip_code=30673 site_time_zone_utc_offset=-5 -County "GA, Wilkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303190.epw site_zip_code=31031 site_time_zone_utc_offset=-5 -County "GA, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303210.epw site_zip_code=31791 site_time_zone_utc_offset=-5 -County "HI, Hawaii County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500010.epw site_zip_code=96721 site_time_zone_utc_offset=-10 -County "HI, Honolulu County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500030.epw site_zip_code=96813 site_time_zone_utc_offset=-10 -County "HI, Kalawao County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500050.epw site_zip_code=96742 site_time_zone_utc_offset=-10 -County "HI, Kauai County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500070.epw site_zip_code=96746 site_time_zone_utc_offset=-10 -County "HI, Maui County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500090.epw site_zip_code=96793 site_time_zone_utc_offset=-10 -County "IA, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900010.epw site_zip_code=50849 site_time_zone_utc_offset=-6 -County "IA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900030.epw site_zip_code=50841 site_time_zone_utc_offset=-6 -County "IA, Allamakee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900050.epw site_zip_code=52172 site_time_zone_utc_offset=-6 -County "IA, Appanoose County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900070.epw site_zip_code=52544 site_time_zone_utc_offset=-6 -County "IA, Audubon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900090.epw site_zip_code=50025 site_time_zone_utc_offset=-6 -County "IA, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900110.epw site_zip_code=52349 site_time_zone_utc_offset=-6 -County "IA, Black Hawk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900130.epw site_zip_code=50613 site_time_zone_utc_offset=-6 -County "IA, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900150.epw site_zip_code=50036 site_time_zone_utc_offset=-6 -County "IA, Bremer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900170.epw site_zip_code=50677 site_time_zone_utc_offset=-6 -County "IA, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900190.epw site_zip_code=50644 site_time_zone_utc_offset=-6 -County "IA, Buena Vista County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900210.epw site_zip_code=50588 site_time_zone_utc_offset=-6 -County "IA, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900230.epw site_zip_code=50665 site_time_zone_utc_offset=-6 -County "IA, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900250.epw site_zip_code=50563 site_time_zone_utc_offset=-6 -County "IA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900270.epw site_zip_code=51401 site_time_zone_utc_offset=-6 -County "IA, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900290.epw site_zip_code=50022 site_time_zone_utc_offset=-6 -County "IA, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900310.epw site_zip_code=52772 site_time_zone_utc_offset=-6 -County "IA, Cerro Gordo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900330.epw site_zip_code=50401 site_time_zone_utc_offset=-6 -County "IA, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900350.epw site_zip_code=51012 site_time_zone_utc_offset=-6 -County "IA, Chickasaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900370.epw site_zip_code=50659 site_time_zone_utc_offset=-6 -County "IA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900390.epw site_zip_code=50213 site_time_zone_utc_offset=-6 -County "IA, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900410.epw site_zip_code=51301 site_time_zone_utc_offset=-6 -County "IA, Clayton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900430.epw site_zip_code=52052 site_time_zone_utc_offset=-6 -County "IA, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900450.epw site_zip_code=52732 site_time_zone_utc_offset=-6 -County "IA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900470.epw site_zip_code=51442 site_time_zone_utc_offset=-6 -County "IA, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900490.epw site_zip_code=50263 site_time_zone_utc_offset=-6 -County "IA, Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900510.epw site_zip_code=52537 site_time_zone_utc_offset=-6 -County "IA, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900530.epw site_zip_code=50144 site_time_zone_utc_offset=-6 -County "IA, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900550.epw site_zip_code=52057 site_time_zone_utc_offset=-6 -County "IA, Des Moines County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900570.epw site_zip_code=52601 site_time_zone_utc_offset=-6 -County "IA, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900590.epw site_zip_code=51360 site_time_zone_utc_offset=-6 -County "IA, Dubuque County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900610.epw site_zip_code=52001 site_time_zone_utc_offset=-6 -County "IA, Emmet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900630.epw site_zip_code=51334 site_time_zone_utc_offset=-6 -County "IA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900650.epw site_zip_code=50662 site_time_zone_utc_offset=-6 -County "IA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900670.epw site_zip_code=50616 site_time_zone_utc_offset=-6 -County "IA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900690.epw site_zip_code=50441 site_time_zone_utc_offset=-6 -County "IA, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900710.epw site_zip_code=51652 site_time_zone_utc_offset=-6 -County "IA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900730.epw site_zip_code=50129 site_time_zone_utc_offset=-6 -County "IA, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900750.epw site_zip_code=50638 site_time_zone_utc_offset=-6 -County "IA, Guthrie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900770.epw site_zip_code=50216 site_time_zone_utc_offset=-6 -County "IA, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900790.epw site_zip_code=50595 site_time_zone_utc_offset=-6 -County "IA, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900810.epw site_zip_code=50438 site_time_zone_utc_offset=-6 -County "IA, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900830.epw site_zip_code=50126 site_time_zone_utc_offset=-6 -County "IA, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900850.epw site_zip_code=51555 site_time_zone_utc_offset=-6 -County "IA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900870.epw site_zip_code=52641 site_time_zone_utc_offset=-6 -County "IA, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900890.epw site_zip_code=52136 site_time_zone_utc_offset=-6 -County "IA, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900910.epw site_zip_code=50548 site_time_zone_utc_offset=-6 -County "IA, Ida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900930.epw site_zip_code=51445 site_time_zone_utc_offset=-6 -County "IA, Iowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900950.epw site_zip_code=52361 site_time_zone_utc_offset=-6 -County "IA, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900970.epw site_zip_code=52060 site_time_zone_utc_offset=-6 -County "IA, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900990.epw site_zip_code=50208 site_time_zone_utc_offset=-6 -County "IA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901010.epw site_zip_code=52556 site_time_zone_utc_offset=-6 -County "IA, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901030.epw site_zip_code=52240 site_time_zone_utc_offset=-6 -County "IA, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901050.epw site_zip_code=52205 site_time_zone_utc_offset=-6 -County "IA, Keokuk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901070.epw site_zip_code=52591 site_time_zone_utc_offset=-6 -County "IA, Kossuth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901090.epw site_zip_code=50511 site_time_zone_utc_offset=-6 -County "IA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901110.epw site_zip_code=52627 site_time_zone_utc_offset=-6 -County "IA, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901130.epw site_zip_code=52404 site_time_zone_utc_offset=-6 -County "IA, Louisa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901150.epw site_zip_code=52653 site_time_zone_utc_offset=-6 -County "IA, Lucas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901170.epw site_zip_code=50049 site_time_zone_utc_offset=-6 -County "IA, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901190.epw site_zip_code=51246 site_time_zone_utc_offset=-6 -County "IA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901210.epw site_zip_code=50273 site_time_zone_utc_offset=-6 -County "IA, Mahaska County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901230.epw site_zip_code=52577 site_time_zone_utc_offset=-6 -County "IA, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901250.epw site_zip_code=50219 site_time_zone_utc_offset=-6 -County "IA, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901270.epw site_zip_code=50158 site_time_zone_utc_offset=-6 -County "IA, Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901290.epw site_zip_code=51534 site_time_zone_utc_offset=-6 -County "IA, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901310.epw site_zip_code=50461 site_time_zone_utc_offset=-6 -County "IA, Monona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901330.epw site_zip_code=51040 site_time_zone_utc_offset=-6 -County "IA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901350.epw site_zip_code=52531 site_time_zone_utc_offset=-6 -County "IA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901370.epw site_zip_code=51566 site_time_zone_utc_offset=-6 -County "IA, Muscatine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901390.epw site_zip_code=52761 site_time_zone_utc_offset=-6 -County "IA, O'Brien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901410.epw site_zip_code=51201 site_time_zone_utc_offset=-6 -County "IA, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901430.epw site_zip_code=51249 site_time_zone_utc_offset=-6 -County "IA, Page County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901450.epw site_zip_code=51632 site_time_zone_utc_offset=-6 -County "IA, Palo Alto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901470.epw site_zip_code=50536 site_time_zone_utc_offset=-6 -County "IA, Plymouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901490.epw site_zip_code=51031 site_time_zone_utc_offset=-6 -County "IA, Pocahontas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901510.epw site_zip_code=50574 site_time_zone_utc_offset=-6 -County "IA, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901530.epw site_zip_code=50023 site_time_zone_utc_offset=-6 -County "IA, Pottawattamie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901550.epw site_zip_code=51503 site_time_zone_utc_offset=-6 -County "IA, Poweshiek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901570.epw site_zip_code=50112 site_time_zone_utc_offset=-6 -County "IA, Ringgold County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901590.epw site_zip_code=50854 site_time_zone_utc_offset=-6 -County "IA, Sac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901610.epw site_zip_code=50583 site_time_zone_utc_offset=-6 -County "IA, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901630.epw site_zip_code=52722 site_time_zone_utc_offset=-6 -County "IA, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901650.epw site_zip_code=51537 site_time_zone_utc_offset=-6 -County "IA, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901670.epw site_zip_code=51250 site_time_zone_utc_offset=-6 -County "IA, Story County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901690.epw site_zip_code=50010 site_time_zone_utc_offset=-6 -County "IA, Tama County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901710.epw site_zip_code=52339 site_time_zone_utc_offset=-6 -County "IA, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901730.epw site_zip_code=50833 site_time_zone_utc_offset=-6 -County "IA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901750.epw site_zip_code=50801 site_time_zone_utc_offset=-6 -County "IA, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901770.epw site_zip_code=52565 site_time_zone_utc_offset=-6 -County "IA, Wapello County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901790.epw site_zip_code=52501 site_time_zone_utc_offset=-6 -County "IA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901810.epw site_zip_code=50125 site_time_zone_utc_offset=-6 -County "IA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901830.epw site_zip_code=52353 site_time_zone_utc_offset=-6 -County "IA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901850.epw site_zip_code=50060 site_time_zone_utc_offset=-6 -County "IA, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901870.epw site_zip_code=50501 site_time_zone_utc_offset=-6 -County "IA, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901890.epw site_zip_code=50436 site_time_zone_utc_offset=-6 -County "IA, Winneshiek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901910.epw site_zip_code=52101 site_time_zone_utc_offset=-6 -County "IA, Woodbury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901930.epw site_zip_code=51106 site_time_zone_utc_offset=-6 -County "IA, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901950.epw site_zip_code=50459 site_time_zone_utc_offset=-6 -County "IA, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901970.epw site_zip_code=50533 site_time_zone_utc_offset=-6 -County "ID, Ada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600010.epw site_zip_code=83646 site_time_zone_utc_offset=-7 -County "ID, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600030.epw site_zip_code=83612 site_time_zone_utc_offset=-7 -County "ID, Bannock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600050.epw site_zip_code=83201 site_time_zone_utc_offset=-7 -County "ID, Bear Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600070.epw site_zip_code=83254 site_time_zone_utc_offset=-7 -County "ID, Benewah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600090.epw site_zip_code=83861 site_time_zone_utc_offset=-8 -County "ID, Bingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600110.epw site_zip_code=83221 site_time_zone_utc_offset=-7 -County "ID, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600130.epw site_zip_code=83333 site_time_zone_utc_offset=-7 -County "ID, Boise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600150.epw site_zip_code=83716 site_time_zone_utc_offset=-7 -County "ID, Bonner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600170.epw site_zip_code=83864 site_time_zone_utc_offset=-8 -County "ID, Bonneville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600190.epw site_zip_code=83401 site_time_zone_utc_offset=-7 -County "ID, Boundary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600210.epw site_zip_code=83805 site_time_zone_utc_offset=-8 -County "ID, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600230.epw site_zip_code=83213 site_time_zone_utc_offset=-7 -County "ID, Camas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600250.epw site_zip_code=83327 site_time_zone_utc_offset=-7 -County "ID, Canyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600270.epw site_zip_code=83686 site_time_zone_utc_offset=-7 -County "ID, Caribou County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600290.epw site_zip_code=83276 site_time_zone_utc_offset=-7 -County "ID, Cassia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600310.epw site_zip_code=83318 site_time_zone_utc_offset=-7 -County "ID, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600330.epw site_zip_code=83423 site_time_zone_utc_offset=-7 -County "ID, Clearwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600350.epw site_zip_code=83544 site_time_zone_utc_offset=-8 -County "ID, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600370.epw site_zip_code=83226 site_time_zone_utc_offset=-7 -County "ID, Elmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600390.epw site_zip_code=83647 site_time_zone_utc_offset=-7 -County "ID, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600410.epw site_zip_code=83263 site_time_zone_utc_offset=-7 -County "ID, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600430.epw site_zip_code=83445 site_time_zone_utc_offset=-7 -County "ID, Gem County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600450.epw site_zip_code=83617 site_time_zone_utc_offset=-7 -County "ID, Gooding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600470.epw site_zip_code=83330 site_time_zone_utc_offset=-7 -County "ID, Idaho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600490.epw site_zip_code=83530 site_time_zone_utc_offset=-8 -County "ID, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600510.epw site_zip_code=83442 site_time_zone_utc_offset=-7 -County "ID, Jerome County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600530.epw site_zip_code=83338 site_time_zone_utc_offset=-7 -County "ID, Kootenai County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600550.epw site_zip_code=83854 site_time_zone_utc_offset=-8 -County "ID, Latah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600570.epw site_zip_code=83843 site_time_zone_utc_offset=-8 -County "ID, Lemhi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600590.epw site_zip_code=83467 site_time_zone_utc_offset=-7 -County "ID, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600610.epw site_zip_code=83536 site_time_zone_utc_offset=-8 -County "ID, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600630.epw site_zip_code=83352 site_time_zone_utc_offset=-7 -County "ID, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600650.epw site_zip_code=83440 site_time_zone_utc_offset=-7 -County "ID, Minidoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600670.epw site_zip_code=83350 site_time_zone_utc_offset=-7 -County "ID, Nez Perce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600690.epw site_zip_code=83501 site_time_zone_utc_offset=-8 -County "ID, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600710.epw site_zip_code=83252 site_time_zone_utc_offset=-7 -County "ID, Owyhee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600730.epw site_zip_code=83628 site_time_zone_utc_offset=-7 -County "ID, Payette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600750.epw site_zip_code=83661 site_time_zone_utc_offset=-7 -County "ID, Power County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600770.epw site_zip_code=83211 site_time_zone_utc_offset=-7 -County "ID, Shoshone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600790.epw site_zip_code=83837 site_time_zone_utc_offset=-8 -County "ID, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600810.epw site_zip_code=83455 site_time_zone_utc_offset=-7 -County "ID, Twin Falls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600830.epw site_zip_code=83301 site_time_zone_utc_offset=-7 -County "ID, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600850.epw site_zip_code=83638 site_time_zone_utc_offset=-7 -County "ID, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600870.epw site_zip_code=83672 site_time_zone_utc_offset=-7 -County "IL, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700010.epw site_zip_code=62301 site_time_zone_utc_offset=-6 -County "IL, Alexander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700030.epw site_zip_code=62914 site_time_zone_utc_offset=-6 -County "IL, Bond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700050.epw site_zip_code=62246 site_time_zone_utc_offset=-6 -County "IL, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700070.epw site_zip_code=61008 site_time_zone_utc_offset=-6 -County "IL, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700090.epw site_zip_code=62353 site_time_zone_utc_offset=-6 -County "IL, Bureau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700110.epw site_zip_code=61356 site_time_zone_utc_offset=-6 -County "IL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700130.epw site_zip_code=62047 site_time_zone_utc_offset=-6 -County "IL, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700150.epw site_zip_code=61074 site_time_zone_utc_offset=-6 -County "IL, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700170.epw site_zip_code=62618 site_time_zone_utc_offset=-6 -County "IL, Champaign County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700190.epw site_zip_code=61820 site_time_zone_utc_offset=-6 -County "IL, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700210.epw site_zip_code=62568 site_time_zone_utc_offset=-6 -County "IL, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700230.epw site_zip_code=62441 site_time_zone_utc_offset=-6 -County "IL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700250.epw site_zip_code=62839 site_time_zone_utc_offset=-6 -County "IL, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700270.epw site_zip_code=62231 site_time_zone_utc_offset=-6 -County "IL, Coles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700290.epw site_zip_code=61938 site_time_zone_utc_offset=-6 -County "IL, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700310.epw site_zip_code=60657 site_time_zone_utc_offset=-6 -County "IL, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700330.epw site_zip_code=62454 site_time_zone_utc_offset=-6 -County "IL, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700350.epw site_zip_code=62428 site_time_zone_utc_offset=-6 -County "IL, De Witt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700390.epw site_zip_code=61727 site_time_zone_utc_offset=-6 -County "IL, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700370.epw site_zip_code=60115 site_time_zone_utc_offset=-6 -County "IL, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700410.epw site_zip_code=61953 site_time_zone_utc_offset=-6 -County "IL, DuPage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700430.epw site_zip_code=60148 site_time_zone_utc_offset=-6 -County "IL, Edgar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700450.epw site_zip_code=61944 site_time_zone_utc_offset=-6 -County "IL, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700470.epw site_zip_code=62806 site_time_zone_utc_offset=-6 -County "IL, Effingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700490.epw site_zip_code=62401 site_time_zone_utc_offset=-6 -County "IL, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700510.epw site_zip_code=62471 site_time_zone_utc_offset=-6 -County "IL, Ford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700530.epw site_zip_code=60957 site_time_zone_utc_offset=-6 -County "IL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700550.epw site_zip_code=62896 site_time_zone_utc_offset=-6 -County "IL, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700570.epw site_zip_code=61520 site_time_zone_utc_offset=-6 -County "IL, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700590.epw site_zip_code=62984 site_time_zone_utc_offset=-6 -County "IL, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700610.epw site_zip_code=62016 site_time_zone_utc_offset=-6 -County "IL, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700630.epw site_zip_code=60450 site_time_zone_utc_offset=-6 -County "IL, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700650.epw site_zip_code=62859 site_time_zone_utc_offset=-6 -County "IL, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700670.epw site_zip_code=62321 site_time_zone_utc_offset=-6 -County "IL, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700690.epw site_zip_code=62931 site_time_zone_utc_offset=-6 -County "IL, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700710.epw site_zip_code=61469 site_time_zone_utc_offset=-6 -County "IL, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700730.epw site_zip_code=61443 site_time_zone_utc_offset=-6 -County "IL, Iroquois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700750.epw site_zip_code=60970 site_time_zone_utc_offset=-6 -County "IL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700770.epw site_zip_code=62901 site_time_zone_utc_offset=-6 -County "IL, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700790.epw site_zip_code=62448 site_time_zone_utc_offset=-6 -County "IL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700810.epw site_zip_code=62864 site_time_zone_utc_offset=-6 -County "IL, Jersey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700830.epw site_zip_code=62052 site_time_zone_utc_offset=-6 -County "IL, Jo Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700850.epw site_zip_code=61036 site_time_zone_utc_offset=-6 -County "IL, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700870.epw site_zip_code=62995 site_time_zone_utc_offset=-6 -County "IL, Kane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700890.epw site_zip_code=60506 site_time_zone_utc_offset=-6 -County "IL, Kankakee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700910.epw site_zip_code=60901 site_time_zone_utc_offset=-6 -County "IL, Kendall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700930.epw site_zip_code=60543 site_time_zone_utc_offset=-6 -County "IL, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700950.epw site_zip_code=61401 site_time_zone_utc_offset=-6 -County "IL, LaSalle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700990.epw site_zip_code=61350 site_time_zone_utc_offset=-6 -County "IL, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700970.epw site_zip_code=60085 site_time_zone_utc_offset=-6 -County "IL, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701010.epw site_zip_code=62439 site_time_zone_utc_offset=-6 -County "IL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701030.epw site_zip_code=61021 site_time_zone_utc_offset=-6 -County "IL, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701050.epw site_zip_code=61764 site_time_zone_utc_offset=-6 -County "IL, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701070.epw site_zip_code=62656 site_time_zone_utc_offset=-6 -County "IL, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701150.epw site_zip_code=62521 site_time_zone_utc_offset=-6 -County "IL, Macoupin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701170.epw site_zip_code=62626 site_time_zone_utc_offset=-6 -County "IL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701190.epw site_zip_code=62040 site_time_zone_utc_offset=-6 -County "IL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701210.epw site_zip_code=62801 site_time_zone_utc_offset=-6 -County "IL, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701230.epw site_zip_code=61540 site_time_zone_utc_offset=-6 -County "IL, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701250.epw site_zip_code=62644 site_time_zone_utc_offset=-6 -County "IL, Massac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701270.epw site_zip_code=62960 site_time_zone_utc_offset=-6 -County "IL, McDonough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701090.epw site_zip_code=61455 site_time_zone_utc_offset=-6 -County "IL, McHenry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701110.epw site_zip_code=60014 site_time_zone_utc_offset=-6 -County "IL, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701130.epw site_zip_code=61761 site_time_zone_utc_offset=-6 -County "IL, Menard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701290.epw site_zip_code=62675 site_time_zone_utc_offset=-6 -County "IL, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701310.epw site_zip_code=61231 site_time_zone_utc_offset=-6 -County "IL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701330.epw site_zip_code=62298 site_time_zone_utc_offset=-6 -County "IL, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701350.epw site_zip_code=62056 site_time_zone_utc_offset=-6 -County "IL, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701370.epw site_zip_code=62650 site_time_zone_utc_offset=-6 -County "IL, Moultrie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701390.epw site_zip_code=61951 site_time_zone_utc_offset=-6 -County "IL, Ogle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701410.epw site_zip_code=61068 site_time_zone_utc_offset=-6 -County "IL, Peoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701430.epw site_zip_code=61604 site_time_zone_utc_offset=-6 -County "IL, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701450.epw site_zip_code=62832 site_time_zone_utc_offset=-6 -County "IL, Piatt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701470.epw site_zip_code=61856 site_time_zone_utc_offset=-6 -County "IL, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701490.epw site_zip_code=62363 site_time_zone_utc_offset=-6 -County "IL, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701510.epw site_zip_code=62938 site_time_zone_utc_offset=-6 -County "IL, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701530.epw site_zip_code=62964 site_time_zone_utc_offset=-6 -County "IL, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701550.epw site_zip_code=61326 site_time_zone_utc_offset=-6 -County "IL, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701570.epw site_zip_code=62286 site_time_zone_utc_offset=-6 -County "IL, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701590.epw site_zip_code=62450 site_time_zone_utc_offset=-6 -County "IL, Rock Island County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701610.epw site_zip_code=61265 site_time_zone_utc_offset=-6 -County "IL, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701650.epw site_zip_code=62946 site_time_zone_utc_offset=-6 -County "IL, Sangamon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701670.epw site_zip_code=62704 site_time_zone_utc_offset=-6 -County "IL, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701690.epw site_zip_code=62681 site_time_zone_utc_offset=-6 -County "IL, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701710.epw site_zip_code=62694 site_time_zone_utc_offset=-6 -County "IL, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701730.epw site_zip_code=62565 site_time_zone_utc_offset=-6 -County "IL, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701630.epw site_zip_code=62269 site_time_zone_utc_offset=-6 -County "IL, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701750.epw site_zip_code=61491 site_time_zone_utc_offset=-6 -County "IL, Stephenson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701770.epw site_zip_code=61032 site_time_zone_utc_offset=-6 -County "IL, Tazewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701790.epw site_zip_code=61554 site_time_zone_utc_offset=-6 -County "IL, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701810.epw site_zip_code=62906 site_time_zone_utc_offset=-6 -County "IL, Vermilion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701830.epw site_zip_code=61832 site_time_zone_utc_offset=-6 -County "IL, Wabash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701850.epw site_zip_code=62863 site_time_zone_utc_offset=-6 -County "IL, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701870.epw site_zip_code=61462 site_time_zone_utc_offset=-6 -County "IL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701890.epw site_zip_code=62263 site_time_zone_utc_offset=-6 -County "IL, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701910.epw site_zip_code=62837 site_time_zone_utc_offset=-6 -County "IL, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701930.epw site_zip_code=62821 site_time_zone_utc_offset=-6 -County "IL, Whiteside County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701950.epw site_zip_code=61081 site_time_zone_utc_offset=-6 -County "IL, Will County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701970.epw site_zip_code=60435 site_time_zone_utc_offset=-6 -County "IL, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701990.epw site_zip_code=62959 site_time_zone_utc_offset=-6 -County "IL, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1702010.epw site_zip_code=61107 site_time_zone_utc_offset=-6 -County "IL, Woodford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1702030.epw site_zip_code=61548 site_time_zone_utc_offset=-6 -County "IN, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800010.epw site_zip_code=46733 site_time_zone_utc_offset=-5 -County "IN, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800030.epw site_zip_code=46835 site_time_zone_utc_offset=-5 -County "IN, Bartholomew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800050.epw site_zip_code=47201 site_time_zone_utc_offset=-5 -County "IN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800070.epw site_zip_code=47944 site_time_zone_utc_offset=-5 -County "IN, Blackford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800090.epw site_zip_code=47348 site_time_zone_utc_offset=-5 -County "IN, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800110.epw site_zip_code=46077 site_time_zone_utc_offset=-5 -County "IN, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800130.epw site_zip_code=47448 site_time_zone_utc_offset=-5 -County "IN, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800150.epw site_zip_code=46923 site_time_zone_utc_offset=-5 -County "IN, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800170.epw site_zip_code=46947 site_time_zone_utc_offset=-5 -County "IN, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800190.epw site_zip_code=47130 site_time_zone_utc_offset=-5 -County "IN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800210.epw site_zip_code=47834 site_time_zone_utc_offset=-5 -County "IN, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800230.epw site_zip_code=46041 site_time_zone_utc_offset=-5 -County "IN, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800250.epw site_zip_code=47118 site_time_zone_utc_offset=-5 -County "IN, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800270.epw site_zip_code=47501 site_time_zone_utc_offset=-5 -County "IN, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800330.epw site_zip_code=46706 site_time_zone_utc_offset=-5 -County "IN, Dearborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800290.epw site_zip_code=47025 site_time_zone_utc_offset=-5 -County "IN, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800310.epw site_zip_code=47240 site_time_zone_utc_offset=-5 -County "IN, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800350.epw site_zip_code=47304 site_time_zone_utc_offset=-5 -County "IN, Dubois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800370.epw site_zip_code=47546 site_time_zone_utc_offset=-5 -County "IN, Elkhart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800390.epw site_zip_code=46514 site_time_zone_utc_offset=-5 -County "IN, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800410.epw site_zip_code=47331 site_time_zone_utc_offset=-5 -County "IN, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800430.epw site_zip_code=47150 site_time_zone_utc_offset=-5 -County "IN, Fountain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800450.epw site_zip_code=47918 site_time_zone_utc_offset=-5 -County "IN, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800470.epw site_zip_code=47012 site_time_zone_utc_offset=-5 -County "IN, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800490.epw site_zip_code=46975 site_time_zone_utc_offset=-5 -County "IN, Gibson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800510.epw site_zip_code=47670 site_time_zone_utc_offset=-6 -County "IN, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800530.epw site_zip_code=46953 site_time_zone_utc_offset=-5 -County "IN, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800550.epw site_zip_code=47441 site_time_zone_utc_offset=-5 -County "IN, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800570.epw site_zip_code=46032 site_time_zone_utc_offset=-5 -County "IN, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800590.epw site_zip_code=46140 site_time_zone_utc_offset=-5 -County "IN, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800610.epw site_zip_code=47112 site_time_zone_utc_offset=-5 -County "IN, Hendricks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800630.epw site_zip_code=46112 site_time_zone_utc_offset=-5 -County "IN, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800650.epw site_zip_code=47362 site_time_zone_utc_offset=-5 -County "IN, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800670.epw site_zip_code=46901 site_time_zone_utc_offset=-5 -County "IN, Huntington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800690.epw site_zip_code=46750 site_time_zone_utc_offset=-5 -County "IN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800710.epw site_zip_code=47274 site_time_zone_utc_offset=-5 -County "IN, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800730.epw site_zip_code=47978 site_time_zone_utc_offset=-6 -County "IN, Jay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800750.epw site_zip_code=47371 site_time_zone_utc_offset=-5 -County "IN, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800770.epw site_zip_code=47250 site_time_zone_utc_offset=-5 -County "IN, Jennings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800790.epw site_zip_code=47265 site_time_zone_utc_offset=-5 -County "IN, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800810.epw site_zip_code=46143 site_time_zone_utc_offset=-5 -County "IN, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800830.epw site_zip_code=47591 site_time_zone_utc_offset=-5 -County "IN, Kosciusko County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800850.epw site_zip_code=46580 site_time_zone_utc_offset=-5 -County "IN, LaGrange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800870.epw site_zip_code=46761 site_time_zone_utc_offset=-5 -County "IN, LaPorte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800910.epw site_zip_code=46360 site_time_zone_utc_offset=-6 -County "IN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800890.epw site_zip_code=46307 site_time_zone_utc_offset=-6 -County "IN, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800930.epw site_zip_code=47421 site_time_zone_utc_offset=-5 -County "IN, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800950.epw site_zip_code=46016 site_time_zone_utc_offset=-5 -County "IN, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800970.epw site_zip_code=46227 site_time_zone_utc_offset=-5 -County "IN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800990.epw site_zip_code=46563 site_time_zone_utc_offset=-5 -County "IN, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801010.epw site_zip_code=47581 site_time_zone_utc_offset=-5 -County "IN, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801030.epw site_zip_code=46970 site_time_zone_utc_offset=-5 -County "IN, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801050.epw site_zip_code=47401 site_time_zone_utc_offset=-5 -County "IN, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801070.epw site_zip_code=47933 site_time_zone_utc_offset=-5 -County "IN, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801090.epw site_zip_code=46151 site_time_zone_utc_offset=-5 -County "IN, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801110.epw site_zip_code=46349 site_time_zone_utc_offset=-6 -County "IN, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801130.epw site_zip_code=46755 site_time_zone_utc_offset=-5 -County "IN, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801150.epw site_zip_code=47040 site_time_zone_utc_offset=-5 -County "IN, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801170.epw site_zip_code=47454 site_time_zone_utc_offset=-5 -County "IN, Owen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801190.epw site_zip_code=47460 site_time_zone_utc_offset=-5 -County "IN, Parke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801210.epw site_zip_code=47872 site_time_zone_utc_offset=-5 -County "IN, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801230.epw site_zip_code=47586 site_time_zone_utc_offset=-6 -County "IN, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801250.epw site_zip_code=47567 site_time_zone_utc_offset=-5 -County "IN, Porter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801270.epw site_zip_code=46383 site_time_zone_utc_offset=-6 -County "IN, Posey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801290.epw site_zip_code=47620 site_time_zone_utc_offset=-6 -County "IN, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801310.epw site_zip_code=46996 site_time_zone_utc_offset=-5 -County "IN, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801330.epw site_zip_code=46135 site_time_zone_utc_offset=-5 -County "IN, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801350.epw site_zip_code=47394 site_time_zone_utc_offset=-5 -County "IN, Ripley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801370.epw site_zip_code=47006 site_time_zone_utc_offset=-5 -County "IN, Rush County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801390.epw site_zip_code=46173 site_time_zone_utc_offset=-5 -County "IN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801430.epw site_zip_code=47170 site_time_zone_utc_offset=-5 -County "IN, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801450.epw site_zip_code=46176 site_time_zone_utc_offset=-5 -County "IN, Spencer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801470.epw site_zip_code=47635 site_time_zone_utc_offset=-6 -County "IN, St. Joseph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801410.epw site_zip_code=46544 site_time_zone_utc_offset=-5 -County "IN, Starke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801490.epw site_zip_code=46534 site_time_zone_utc_offset=-6 -County "IN, Steuben County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801510.epw site_zip_code=46703 site_time_zone_utc_offset=-5 -County "IN, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801530.epw site_zip_code=47882 site_time_zone_utc_offset=-5 -County "IN, Switzerland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801550.epw site_zip_code=47043 site_time_zone_utc_offset=-5 -County "IN, Tippecanoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801570.epw site_zip_code=47906 site_time_zone_utc_offset=-5 -County "IN, Tipton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801590.epw site_zip_code=46072 site_time_zone_utc_offset=-5 -County "IN, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801610.epw site_zip_code=47353 site_time_zone_utc_offset=-5 -County "IN, Vanderburgh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801630.epw site_zip_code=47714 site_time_zone_utc_offset=-6 -County "IN, Vermillion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801650.epw site_zip_code=47842 site_time_zone_utc_offset=-5 -County "IN, Vigo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801670.epw site_zip_code=47802 site_time_zone_utc_offset=-5 -County "IN, Wabash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801690.epw site_zip_code=46992 site_time_zone_utc_offset=-5 -County "IN, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801710.epw site_zip_code=47993 site_time_zone_utc_offset=-5 -County "IN, Warrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801730.epw site_zip_code=47630 site_time_zone_utc_offset=-6 -County "IN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801750.epw site_zip_code=47167 site_time_zone_utc_offset=-5 -County "IN, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801770.epw site_zip_code=47374 site_time_zone_utc_offset=-5 -County "IN, Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801790.epw site_zip_code=46714 site_time_zone_utc_offset=-5 -County "IN, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801810.epw site_zip_code=47960 site_time_zone_utc_offset=-5 -County "IN, Whitley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801830.epw site_zip_code=46725 site_time_zone_utc_offset=-5 -County "KS, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000010.epw site_zip_code=66749 site_time_zone_utc_offset=-6 -County "KS, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000030.epw site_zip_code=66032 site_time_zone_utc_offset=-6 -County "KS, Atchison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000050.epw site_zip_code=66002 site_time_zone_utc_offset=-6 -County "KS, Barber County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000070.epw site_zip_code=67104 site_time_zone_utc_offset=-6 -County "KS, Barton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000090.epw site_zip_code=67530 site_time_zone_utc_offset=-6 -County "KS, Bourbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000110.epw site_zip_code=66701 site_time_zone_utc_offset=-6 -County "KS, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000130.epw site_zip_code=66434 site_time_zone_utc_offset=-6 -County "KS, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000150.epw site_zip_code=67042 site_time_zone_utc_offset=-6 -County "KS, Chase County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000170.epw site_zip_code=66845 site_time_zone_utc_offset=-6 -County "KS, Chautauqua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000190.epw site_zip_code=67361 site_time_zone_utc_offset=-6 -County "KS, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000210.epw site_zip_code=66713 site_time_zone_utc_offset=-6 -County "KS, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000230.epw site_zip_code=67756 site_time_zone_utc_offset=-6 -County "KS, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000250.epw site_zip_code=67865 site_time_zone_utc_offset=-6 -County "KS, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000270.epw site_zip_code=67432 site_time_zone_utc_offset=-6 -County "KS, Cloud County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000290.epw site_zip_code=66901 site_time_zone_utc_offset=-6 -County "KS, Coffey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000310.epw site_zip_code=66839 site_time_zone_utc_offset=-6 -County "KS, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000330.epw site_zip_code=67029 site_time_zone_utc_offset=-6 -County "KS, Cowley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000350.epw site_zip_code=67005 site_time_zone_utc_offset=-6 -County "KS, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000370.epw site_zip_code=66762 site_time_zone_utc_offset=-6 -County "KS, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000390.epw site_zip_code=67749 site_time_zone_utc_offset=-6 -County "KS, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000410.epw site_zip_code=67410 site_time_zone_utc_offset=-6 -County "KS, Doniphan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000430.epw site_zip_code=66090 site_time_zone_utc_offset=-6 -County "KS, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000450.epw site_zip_code=66049 site_time_zone_utc_offset=-6 -County "KS, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000470.epw site_zip_code=67547 site_time_zone_utc_offset=-6 -County "KS, Elk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000490.epw site_zip_code=67349 site_time_zone_utc_offset=-6 -County "KS, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000510.epw site_zip_code=67601 site_time_zone_utc_offset=-6 -County "KS, Ellsworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000530.epw site_zip_code=67439 site_time_zone_utc_offset=-6 -County "KS, Finney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000550.epw site_zip_code=67846 site_time_zone_utc_offset=-6 -County "KS, Ford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000570.epw site_zip_code=67801 site_time_zone_utc_offset=-6 -County "KS, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000590.epw site_zip_code=66067 site_time_zone_utc_offset=-6 -County "KS, Geary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000610.epw site_zip_code=66441 site_time_zone_utc_offset=-6 -County "KS, Gove County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000630.epw site_zip_code=67752 site_time_zone_utc_offset=-6 -County "KS, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000650.epw site_zip_code=67642 site_time_zone_utc_offset=-6 -County "KS, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000670.epw site_zip_code=67880 site_time_zone_utc_offset=-6 -County "KS, Gray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000690.epw site_zip_code=67867 site_time_zone_utc_offset=-6 -County "KS, Greeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000710.epw site_zip_code=67879 site_time_zone_utc_offset=-7 -County "KS, Greenwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000730.epw site_zip_code=67045 site_time_zone_utc_offset=-6 -County "KS, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000750.epw site_zip_code=67878 site_time_zone_utc_offset=-7 -County "KS, Harper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000770.epw site_zip_code=67003 site_time_zone_utc_offset=-6 -County "KS, Harvey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000790.epw site_zip_code=67114 site_time_zone_utc_offset=-6 -County "KS, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000810.epw site_zip_code=67877 site_time_zone_utc_offset=-6 -County "KS, Hodgeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000830.epw site_zip_code=67854 site_time_zone_utc_offset=-6 -County "KS, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000850.epw site_zip_code=66436 site_time_zone_utc_offset=-6 -County "KS, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000870.epw site_zip_code=66512 site_time_zone_utc_offset=-6 -County "KS, Jewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000890.epw site_zip_code=66956 site_time_zone_utc_offset=-6 -County "KS, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000910.epw site_zip_code=66062 site_time_zone_utc_offset=-6 -County "KS, Kearny County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000930.epw site_zip_code=67860 site_time_zone_utc_offset=-6 -County "KS, Kingman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000950.epw site_zip_code=67068 site_time_zone_utc_offset=-6 -County "KS, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000970.epw site_zip_code=67054 site_time_zone_utc_offset=-6 -County "KS, Labette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000990.epw site_zip_code=67357 site_time_zone_utc_offset=-6 -County "KS, Lane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001010.epw site_zip_code=67839 site_time_zone_utc_offset=-6 -County "KS, Leavenworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001030.epw site_zip_code=66048 site_time_zone_utc_offset=-6 -County "KS, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001050.epw site_zip_code=67455 site_time_zone_utc_offset=-6 -County "KS, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001070.epw site_zip_code=66040 site_time_zone_utc_offset=-6 -County "KS, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001090.epw site_zip_code=67748 site_time_zone_utc_offset=-6 -County "KS, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001110.epw site_zip_code=66801 site_time_zone_utc_offset=-6 -County "KS, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001150.epw site_zip_code=67063 site_time_zone_utc_offset=-6 -County "KS, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001170.epw site_zip_code=66508 site_time_zone_utc_offset=-6 -County "KS, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001130.epw site_zip_code=67460 site_time_zone_utc_offset=-6 -County "KS, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001190.epw site_zip_code=67864 site_time_zone_utc_offset=-6 -County "KS, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001210.epw site_zip_code=66071 site_time_zone_utc_offset=-6 -County "KS, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001230.epw site_zip_code=67420 site_time_zone_utc_offset=-6 -County "KS, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001250.epw site_zip_code=67301 site_time_zone_utc_offset=-6 -County "KS, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001270.epw site_zip_code=66846 site_time_zone_utc_offset=-6 -County "KS, Morton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001290.epw site_zip_code=67950 site_time_zone_utc_offset=-6 -County "KS, Nemaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001310.epw site_zip_code=66538 site_time_zone_utc_offset=-6 -County "KS, Neosho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001330.epw site_zip_code=66720 site_time_zone_utc_offset=-6 -County "KS, Ness County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001350.epw site_zip_code=67560 site_time_zone_utc_offset=-6 -County "KS, Norton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001370.epw site_zip_code=67654 site_time_zone_utc_offset=-6 -County "KS, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001390.epw site_zip_code=66523 site_time_zone_utc_offset=-6 -County "KS, Osborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001410.epw site_zip_code=67473 site_time_zone_utc_offset=-6 -County "KS, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001430.epw site_zip_code=67467 site_time_zone_utc_offset=-6 -County "KS, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001450.epw site_zip_code=67550 site_time_zone_utc_offset=-6 -County "KS, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001470.epw site_zip_code=67661 site_time_zone_utc_offset=-6 -County "KS, Pottawatomie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001490.epw site_zip_code=66547 site_time_zone_utc_offset=-6 -County "KS, Pratt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001510.epw site_zip_code=67124 site_time_zone_utc_offset=-6 -County "KS, Rawlins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001530.epw site_zip_code=67730 site_time_zone_utc_offset=-6 -County "KS, Reno County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001550.epw site_zip_code=67501 site_time_zone_utc_offset=-6 -County "KS, Republic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001570.epw site_zip_code=66935 site_time_zone_utc_offset=-6 -County "KS, Rice County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001590.epw site_zip_code=67554 site_time_zone_utc_offset=-6 -County "KS, Riley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001610.epw site_zip_code=66502 site_time_zone_utc_offset=-6 -County "KS, Rooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001630.epw site_zip_code=67663 site_time_zone_utc_offset=-6 -County "KS, Rush County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001650.epw site_zip_code=67548 site_time_zone_utc_offset=-6 -County "KS, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001670.epw site_zip_code=67665 site_time_zone_utc_offset=-6 -County "KS, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001690.epw site_zip_code=67401 site_time_zone_utc_offset=-6 -County "KS, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001710.epw site_zip_code=67871 site_time_zone_utc_offset=-6 -County "KS, Sedgwick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001730.epw site_zip_code=67212 site_time_zone_utc_offset=-6 -County "KS, Seward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001750.epw site_zip_code=67901 site_time_zone_utc_offset=-6 -County "KS, Shawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001770.epw site_zip_code=66614 site_time_zone_utc_offset=-6 -County "KS, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001790.epw site_zip_code=67740 site_time_zone_utc_offset=-6 -County "KS, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001810.epw site_zip_code=67735 site_time_zone_utc_offset=-7 -County "KS, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001830.epw site_zip_code=66967 site_time_zone_utc_offset=-6 -County "KS, Stafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001850.epw site_zip_code=67576 site_time_zone_utc_offset=-6 -County "KS, Stanton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001870.epw site_zip_code=67855 site_time_zone_utc_offset=-6 -County "KS, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001890.epw site_zip_code=67951 site_time_zone_utc_offset=-6 -County "KS, Sumner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001910.epw site_zip_code=67152 site_time_zone_utc_offset=-6 -County "KS, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001930.epw site_zip_code=67701 site_time_zone_utc_offset=-6 -County "KS, Trego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001950.epw site_zip_code=67672 site_time_zone_utc_offset=-6 -County "KS, Wabaunsee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001970.epw site_zip_code=66401 site_time_zone_utc_offset=-6 -County "KS, Wallace County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001990.epw site_zip_code=67758 site_time_zone_utc_offset=-7 -County "KS, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002010.epw site_zip_code=66968 site_time_zone_utc_offset=-6 -County "KS, Wichita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002030.epw site_zip_code=67861 site_time_zone_utc_offset=-6 -County "KS, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002050.epw site_zip_code=66736 site_time_zone_utc_offset=-6 -County "KS, Woodson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002070.epw site_zip_code=66783 site_time_zone_utc_offset=-6 -County "KS, Wyandotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002090.epw site_zip_code=66102 site_time_zone_utc_offset=-6 -County "KY, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100010.epw site_zip_code=42728 site_time_zone_utc_offset=-6 -County "KY, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100030.epw site_zip_code=42164 site_time_zone_utc_offset=-6 -County "KY, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100050.epw site_zip_code=40342 site_time_zone_utc_offset=-5 -County "KY, Ballard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100070.epw site_zip_code=42053 site_time_zone_utc_offset=-6 -County "KY, Barren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100090.epw site_zip_code=42141 site_time_zone_utc_offset=-6 -County "KY, Bath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100110.epw site_zip_code=40360 site_time_zone_utc_offset=-5 -County "KY, Bell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100130.epw site_zip_code=40965 site_time_zone_utc_offset=-5 -County "KY, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100150.epw site_zip_code=41042 site_time_zone_utc_offset=-5 -County "KY, Bourbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100170.epw site_zip_code=40361 site_time_zone_utc_offset=-5 -County "KY, Boyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100190.epw site_zip_code=41102 site_time_zone_utc_offset=-5 -County "KY, Boyle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100210.epw site_zip_code=40422 site_time_zone_utc_offset=-5 -County "KY, Bracken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100230.epw site_zip_code=41004 site_time_zone_utc_offset=-5 -County "KY, Breathitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100250.epw site_zip_code=41339 site_time_zone_utc_offset=-5 -County "KY, Breckinridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100270.epw site_zip_code=40143 site_time_zone_utc_offset=-6 -County "KY, Bullitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100290.epw site_zip_code=40165 site_time_zone_utc_offset=-5 -County "KY, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100310.epw site_zip_code=42261 site_time_zone_utc_offset=-6 -County "KY, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100330.epw site_zip_code=42445 site_time_zone_utc_offset=-6 -County "KY, Calloway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100350.epw site_zip_code=42071 site_time_zone_utc_offset=-6 -County "KY, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100370.epw site_zip_code=41071 site_time_zone_utc_offset=-5 -County "KY, Carlisle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100390.epw site_zip_code=42023 site_time_zone_utc_offset=-6 -County "KY, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100410.epw site_zip_code=41008 site_time_zone_utc_offset=-5 -County "KY, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100430.epw site_zip_code=41143 site_time_zone_utc_offset=-5 -County "KY, Casey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100450.epw site_zip_code=42539 site_time_zone_utc_offset=-5 -County "KY, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100470.epw site_zip_code=42240 site_time_zone_utc_offset=-6 -County "KY, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100490.epw site_zip_code=40391 site_time_zone_utc_offset=-5 -County "KY, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100510.epw site_zip_code=40962 site_time_zone_utc_offset=-5 -County "KY, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100530.epw site_zip_code=42602 site_time_zone_utc_offset=-6 -County "KY, Crittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100550.epw site_zip_code=42064 site_time_zone_utc_offset=-6 -County "KY, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100570.epw site_zip_code=42717 site_time_zone_utc_offset=-6 -County "KY, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100590.epw site_zip_code=42301 site_time_zone_utc_offset=-6 -County "KY, Edmonson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100610.epw site_zip_code=42210 site_time_zone_utc_offset=-6 -County "KY, Elliott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100630.epw site_zip_code=41171 site_time_zone_utc_offset=-5 -County "KY, Estill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100650.epw site_zip_code=40336 site_time_zone_utc_offset=-5 -County "KY, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100670.epw site_zip_code=40509 site_time_zone_utc_offset=-5 -County "KY, Fleming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100690.epw site_zip_code=41041 site_time_zone_utc_offset=-5 -County "KY, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100710.epw site_zip_code=41653 site_time_zone_utc_offset=-5 -County "KY, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100730.epw site_zip_code=40601 site_time_zone_utc_offset=-5 -County "KY, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100750.epw site_zip_code=42041 site_time_zone_utc_offset=-6 -County "KY, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100770.epw site_zip_code=41095 site_time_zone_utc_offset=-5 -County "KY, Garrard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100790.epw site_zip_code=40444 site_time_zone_utc_offset=-5 -County "KY, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100810.epw site_zip_code=41035 site_time_zone_utc_offset=-5 -County "KY, Graves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100830.epw site_zip_code=42066 site_time_zone_utc_offset=-6 -County "KY, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100850.epw site_zip_code=42754 site_time_zone_utc_offset=-6 -County "KY, Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100870.epw site_zip_code=42743 site_time_zone_utc_offset=-6 -County "KY, Greenup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100890.epw site_zip_code=41144 site_time_zone_utc_offset=-5 -County "KY, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100910.epw site_zip_code=42348 site_time_zone_utc_offset=-6 -County "KY, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100930.epw site_zip_code=42701 site_time_zone_utc_offset=-5 -County "KY, Harlan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100950.epw site_zip_code=40831 site_time_zone_utc_offset=-5 -County "KY, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100970.epw site_zip_code=41031 site_time_zone_utc_offset=-5 -County "KY, Hart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100990.epw site_zip_code=42765 site_time_zone_utc_offset=-6 -County "KY, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101010.epw site_zip_code=42420 site_time_zone_utc_offset=-6 -County "KY, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101030.epw site_zip_code=40019 site_time_zone_utc_offset=-5 -County "KY, Hickman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101050.epw site_zip_code=42031 site_time_zone_utc_offset=-6 -County "KY, Hopkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101070.epw site_zip_code=42431 site_time_zone_utc_offset=-6 -County "KY, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101090.epw site_zip_code=40447 site_time_zone_utc_offset=-5 -County "KY, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101110.epw site_zip_code=40214 site_time_zone_utc_offset=-5 -County "KY, Jessamine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101130.epw site_zip_code=40356 site_time_zone_utc_offset=-5 -County "KY, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101150.epw site_zip_code=41240 site_time_zone_utc_offset=-5 -County "KY, Kenton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101170.epw site_zip_code=41017 site_time_zone_utc_offset=-5 -County "KY, Knott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101190.epw site_zip_code=41822 site_time_zone_utc_offset=-5 -County "KY, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101210.epw site_zip_code=40906 site_time_zone_utc_offset=-5 -County "KY, Larue County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101230.epw site_zip_code=42748 site_time_zone_utc_offset=-5 -County "KY, Laurel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101250.epw site_zip_code=40741 site_time_zone_utc_offset=-5 -County "KY, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101270.epw site_zip_code=41230 site_time_zone_utc_offset=-5 -County "KY, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101290.epw site_zip_code=41311 site_time_zone_utc_offset=-5 -County "KY, Leslie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101310.epw site_zip_code=41749 site_time_zone_utc_offset=-5 -County "KY, Letcher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101330.epw site_zip_code=41858 site_time_zone_utc_offset=-5 -County "KY, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101350.epw site_zip_code=41179 site_time_zone_utc_offset=-5 -County "KY, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101370.epw site_zip_code=40484 site_time_zone_utc_offset=-5 -County "KY, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101390.epw site_zip_code=42045 site_time_zone_utc_offset=-6 -County "KY, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101410.epw site_zip_code=42276 site_time_zone_utc_offset=-6 -County "KY, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101430.epw site_zip_code=42038 site_time_zone_utc_offset=-6 -County "KY, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101510.epw site_zip_code=40475 site_time_zone_utc_offset=-5 -County "KY, Magoffin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101530.epw site_zip_code=41465 site_time_zone_utc_offset=-5 -County "KY, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101550.epw site_zip_code=40033 site_time_zone_utc_offset=-5 -County "KY, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101570.epw site_zip_code=42025 site_time_zone_utc_offset=-6 -County "KY, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101590.epw site_zip_code=41224 site_time_zone_utc_offset=-5 -County "KY, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101610.epw site_zip_code=41056 site_time_zone_utc_offset=-5 -County "KY, McCracken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101450.epw site_zip_code=42001 site_time_zone_utc_offset=-6 -County "KY, McCreary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101470.epw site_zip_code=42653 site_time_zone_utc_offset=-5 -County "KY, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101490.epw site_zip_code=42327 site_time_zone_utc_offset=-6 -County "KY, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101630.epw site_zip_code=40108 site_time_zone_utc_offset=-5 -County "KY, Menifee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101650.epw site_zip_code=40322 site_time_zone_utc_offset=-5 -County "KY, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101670.epw site_zip_code=40330 site_time_zone_utc_offset=-5 -County "KY, Metcalfe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101690.epw site_zip_code=42129 site_time_zone_utc_offset=-6 -County "KY, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101710.epw site_zip_code=42167 site_time_zone_utc_offset=-6 -County "KY, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101730.epw site_zip_code=40353 site_time_zone_utc_offset=-5 -County "KY, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101750.epw site_zip_code=41472 site_time_zone_utc_offset=-5 -County "KY, Muhlenberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101770.epw site_zip_code=42345 site_time_zone_utc_offset=-6 -County "KY, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101790.epw site_zip_code=40004 site_time_zone_utc_offset=-5 -County "KY, Nicholas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101810.epw site_zip_code=40311 site_time_zone_utc_offset=-5 -County "KY, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101830.epw site_zip_code=42320 site_time_zone_utc_offset=-6 -County "KY, Oldham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101850.epw site_zip_code=40014 site_time_zone_utc_offset=-5 -County "KY, Owen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101870.epw site_zip_code=40359 site_time_zone_utc_offset=-5 -County "KY, Owsley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101890.epw site_zip_code=41314 site_time_zone_utc_offset=-5 -County "KY, Pendleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101910.epw site_zip_code=41040 site_time_zone_utc_offset=-5 -County "KY, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101930.epw site_zip_code=41701 site_time_zone_utc_offset=-5 -County "KY, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101950.epw site_zip_code=41501 site_time_zone_utc_offset=-5 -County "KY, Powell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101970.epw site_zip_code=40380 site_time_zone_utc_offset=-5 -County "KY, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101990.epw site_zip_code=42503 site_time_zone_utc_offset=-5 -County "KY, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102010.epw site_zip_code=41064 site_time_zone_utc_offset=-5 -County "KY, Rockcastle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102030.epw site_zip_code=40456 site_time_zone_utc_offset=-5 -County "KY, Rowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102050.epw site_zip_code=40351 site_time_zone_utc_offset=-5 -County "KY, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102070.epw site_zip_code=42642 site_time_zone_utc_offset=-6 -County "KY, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102090.epw site_zip_code=40324 site_time_zone_utc_offset=-5 -County "KY, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102110.epw site_zip_code=40065 site_time_zone_utc_offset=-5 -County "KY, Simpson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102130.epw site_zip_code=42134 site_time_zone_utc_offset=-6 -County "KY, Spencer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102150.epw site_zip_code=40071 site_time_zone_utc_offset=-5 -County "KY, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102170.epw site_zip_code=42718 site_time_zone_utc_offset=-5 -County "KY, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102190.epw site_zip_code=42220 site_time_zone_utc_offset=-6 -County "KY, Trigg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102210.epw site_zip_code=42211 site_time_zone_utc_offset=-6 -County "KY, Trimble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102230.epw site_zip_code=40006 site_time_zone_utc_offset=-5 -County "KY, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102250.epw site_zip_code=42437 site_time_zone_utc_offset=-6 -County "KY, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102270.epw site_zip_code=42101 site_time_zone_utc_offset=-6 -County "KY, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102290.epw site_zip_code=40069 site_time_zone_utc_offset=-5 -County "KY, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102310.epw site_zip_code=42633 site_time_zone_utc_offset=-5 -County "KY, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102330.epw site_zip_code=42450 site_time_zone_utc_offset=-6 -County "KY, Whitley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102350.epw site_zip_code=40769 site_time_zone_utc_offset=-5 -County "KY, Wolfe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102370.epw site_zip_code=41301 site_time_zone_utc_offset=-5 -County "KY, Woodford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102390.epw site_zip_code=40383 site_time_zone_utc_offset=-5 -County "LA, Acadia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200010.epw site_zip_code=70526 site_time_zone_utc_offset=-6 -County "LA, Allen Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200030.epw site_zip_code=71463 site_time_zone_utc_offset=-6 -County "LA, Ascension Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200050.epw site_zip_code=70737 site_time_zone_utc_offset=-6 -County "LA, Assumption Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200070.epw site_zip_code=70339 site_time_zone_utc_offset=-6 -County "LA, Avoyelles Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200090.epw site_zip_code=71351 site_time_zone_utc_offset=-6 -County "LA, Beauregard Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200110.epw site_zip_code=70634 site_time_zone_utc_offset=-6 -County "LA, Bienville Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200130.epw site_zip_code=71001 site_time_zone_utc_offset=-6 -County "LA, Bossier Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200150.epw site_zip_code=71111 site_time_zone_utc_offset=-6 -County "LA, Caddo Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200170.epw site_zip_code=71106 site_time_zone_utc_offset=-6 -County "LA, Calcasieu Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200190.epw site_zip_code=70605 site_time_zone_utc_offset=-6 -County "LA, Caldwell Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200210.epw site_zip_code=71418 site_time_zone_utc_offset=-6 -County "LA, Cameron Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200230.epw site_zip_code=70607 site_time_zone_utc_offset=-6 -County "LA, Catahoula Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200250.epw site_zip_code=71343 site_time_zone_utc_offset=-6 -County "LA, Claiborne Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200270.epw site_zip_code=71040 site_time_zone_utc_offset=-6 -County "LA, Concordia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200290.epw site_zip_code=71334 site_time_zone_utc_offset=-6 -County "LA, De Soto Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200310.epw site_zip_code=71052 site_time_zone_utc_offset=-6 -County "LA, East Baton Rouge Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200330.epw site_zip_code=70816 site_time_zone_utc_offset=-6 -County "LA, East Carroll Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200350.epw site_zip_code=71254 site_time_zone_utc_offset=-6 -County "LA, East Feliciana Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200370.epw site_zip_code=70722 site_time_zone_utc_offset=-6 -County "LA, Evangeline Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200390.epw site_zip_code=70586 site_time_zone_utc_offset=-6 -County "LA, Franklin Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200410.epw site_zip_code=71295 site_time_zone_utc_offset=-6 -County "LA, Grant Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200430.epw site_zip_code=71467 site_time_zone_utc_offset=-6 -County "LA, Iberia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200450.epw site_zip_code=70560 site_time_zone_utc_offset=-6 -County "LA, Iberville Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200470.epw site_zip_code=70764 site_time_zone_utc_offset=-6 -County "LA, Jackson Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200490.epw site_zip_code=71251 site_time_zone_utc_offset=-6 -County "LA, Jefferson Davis Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200530.epw site_zip_code=70546 site_time_zone_utc_offset=-6 -County "LA, Jefferson Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200510.epw site_zip_code=70072 site_time_zone_utc_offset=-6 -County "LA, La Salle Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200590.epw site_zip_code=71342 site_time_zone_utc_offset=-6 -County "LA, Lafayette Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200550.epw site_zip_code=70506 site_time_zone_utc_offset=-6 -County "LA, Lafourche Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200570.epw site_zip_code=70301 site_time_zone_utc_offset=-6 -County "LA, Lincoln Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200610.epw site_zip_code=71270 site_time_zone_utc_offset=-6 -County "LA, Livingston Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200630.epw site_zip_code=70726 site_time_zone_utc_offset=-6 -County "LA, Madison Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200650.epw site_zip_code=71282 site_time_zone_utc_offset=-6 -County "LA, Morehouse Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200670.epw site_zip_code=71220 site_time_zone_utc_offset=-6 -County "LA, Natchitoches Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200690.epw site_zip_code=71457 site_time_zone_utc_offset=-6 -County "LA, Orleans Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200710.epw site_zip_code=70119 site_time_zone_utc_offset=-6 -County "LA, Ouachita Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200730.epw site_zip_code=71203 site_time_zone_utc_offset=-6 -County "LA, Plaquemines Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200750.epw site_zip_code=70037 site_time_zone_utc_offset=-6 -County "LA, Pointe Coupee Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200770.epw site_zip_code=70760 site_time_zone_utc_offset=-6 -County "LA, Rapides Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200790.epw site_zip_code=71360 site_time_zone_utc_offset=-6 -County "LA, Red River Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200810.epw site_zip_code=71019 site_time_zone_utc_offset=-6 -County "LA, Richland Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200830.epw site_zip_code=71269 site_time_zone_utc_offset=-6 -County "LA, Sabine Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200850.epw site_zip_code=71449 site_time_zone_utc_offset=-6 -County "LA, St. Bernard Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200870.epw site_zip_code=70043 site_time_zone_utc_offset=-6 -County "LA, St. Charles Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200890.epw site_zip_code=70070 site_time_zone_utc_offset=-6 -County "LA, St. Helena Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200910.epw site_zip_code=70441 site_time_zone_utc_offset=-6 -County "LA, St. James Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200930.epw site_zip_code=70090 site_time_zone_utc_offset=-6 -County "LA, St. John the Baptist Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200950.epw site_zip_code=70068 site_time_zone_utc_offset=-6 -County "LA, St. Landry Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200970.epw site_zip_code=70570 site_time_zone_utc_offset=-6 -County "LA, St. Martin Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200990.epw site_zip_code=70517 site_time_zone_utc_offset=-6 -County "LA, St. Mary Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201010.epw site_zip_code=70380 site_time_zone_utc_offset=-6 -County "LA, St. Tammany Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201030.epw site_zip_code=70433 site_time_zone_utc_offset=-6 -County "LA, Tangipahoa Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201050.epw site_zip_code=70454 site_time_zone_utc_offset=-6 -County "LA, Tensas Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201070.epw site_zip_code=71366 site_time_zone_utc_offset=-6 -County "LA, Terrebonne Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201090.epw site_zip_code=70360 site_time_zone_utc_offset=-6 -County "LA, Union Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201110.epw site_zip_code=71241 site_time_zone_utc_offset=-6 -County "LA, Vermilion Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201130.epw site_zip_code=70510 site_time_zone_utc_offset=-6 -County "LA, Vernon Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201150.epw site_zip_code=71446 site_time_zone_utc_offset=-6 -County "LA, Washington Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201170.epw site_zip_code=70427 site_time_zone_utc_offset=-6 -County "LA, Webster Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201190.epw site_zip_code=71055 site_time_zone_utc_offset=-6 -County "LA, West Baton Rouge Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201210.epw site_zip_code=70767 site_time_zone_utc_offset=-6 -County "LA, West Carroll Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201230.epw site_zip_code=71263 site_time_zone_utc_offset=-6 -County "LA, West Feliciana Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201250.epw site_zip_code=70775 site_time_zone_utc_offset=-6 -County "LA, Winn Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201270.epw site_zip_code=71483 site_time_zone_utc_offset=-6 -County "MA, Barnstable County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500010.epw site_zip_code=02536 site_time_zone_utc_offset=-5 -County "MA, Berkshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500030.epw site_zip_code=01201 site_time_zone_utc_offset=-5 -County "MA, Bristol County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500050.epw site_zip_code=02780 site_time_zone_utc_offset=-5 -County "MA, Dukes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500070.epw site_zip_code=02568 site_time_zone_utc_offset=-5 -County "MA, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500090.epw site_zip_code=01960 site_time_zone_utc_offset=-5 -County "MA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500110.epw site_zip_code=01301 site_time_zone_utc_offset=-5 -County "MA, Hampden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500130.epw site_zip_code=01085 site_time_zone_utc_offset=-5 -County "MA, Hampshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500150.epw site_zip_code=01002 site_time_zone_utc_offset=-5 -County "MA, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500170.epw site_zip_code=02148 site_time_zone_utc_offset=-5 -County "MA, Nantucket County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500190.epw site_zip_code=02554 site_time_zone_utc_offset=-5 -County "MA, Norfolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500210.epw site_zip_code=02169 site_time_zone_utc_offset=-5 -County "MA, Plymouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500230.epw site_zip_code=02360 site_time_zone_utc_offset=-5 -County "MA, Suffolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500250.epw site_zip_code=02151 site_time_zone_utc_offset=-5 -County "MA, Worcester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500270.epw site_zip_code=01453 site_time_zone_utc_offset=-5 -County "MD, Allegany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400010.epw site_zip_code=21502 site_time_zone_utc_offset=-5 -County "MD, Anne Arundel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400030.epw site_zip_code=21122 site_time_zone_utc_offset=-5 -County "MD, Baltimore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400050.epw site_zip_code=21117 site_time_zone_utc_offset=-5 -County "MD, Baltimore city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2405100.epw site_zip_code=21215 site_time_zone_utc_offset=-5 -County "MD, Calvert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400090.epw site_zip_code=20657 site_time_zone_utc_offset=-5 -County "MD, Caroline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400110.epw site_zip_code=21629 site_time_zone_utc_offset=-5 -County "MD, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400130.epw site_zip_code=21157 site_time_zone_utc_offset=-5 -County "MD, Cecil County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400150.epw site_zip_code=21921 site_time_zone_utc_offset=-5 -County "MD, Charles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400170.epw site_zip_code=20603 site_time_zone_utc_offset=-5 -County "MD, Dorchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400190.epw site_zip_code=21613 site_time_zone_utc_offset=-5 -County "MD, Frederick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400210.epw site_zip_code=21702 site_time_zone_utc_offset=-5 -County "MD, Garrett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400230.epw site_zip_code=21550 site_time_zone_utc_offset=-5 -County "MD, Harford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400250.epw site_zip_code=21014 site_time_zone_utc_offset=-5 -County "MD, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400270.epw site_zip_code=21044 site_time_zone_utc_offset=-5 -County "MD, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400290.epw site_zip_code=21620 site_time_zone_utc_offset=-5 -County "MD, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400310.epw site_zip_code=20906 site_time_zone_utc_offset=-5 -County "MD, Prince George's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400330.epw site_zip_code=20774 site_time_zone_utc_offset=-5 -County "MD, Queen Anne's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400350.epw site_zip_code=21666 site_time_zone_utc_offset=-5 -County "MD, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400390.epw site_zip_code=21853 site_time_zone_utc_offset=-5 -County "MD, St. Mary's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400370.epw site_zip_code=20653 site_time_zone_utc_offset=-5 -County "MD, Talbot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400410.epw site_zip_code=21601 site_time_zone_utc_offset=-5 -County "MD, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400430.epw site_zip_code=21740 site_time_zone_utc_offset=-5 -County "MD, Wicomico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400450.epw site_zip_code=21804 site_time_zone_utc_offset=-5 -County "MD, Worcester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400470.epw site_zip_code=21842 site_time_zone_utc_offset=-5 -County "ME, Androscoggin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300010.epw site_zip_code=04240 site_time_zone_utc_offset=-5 -County "ME, Aroostook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300030.epw site_zip_code=04769 site_time_zone_utc_offset=-5 -County "ME, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300050.epw site_zip_code=04103 site_time_zone_utc_offset=-5 -County "ME, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300070.epw site_zip_code=04938 site_time_zone_utc_offset=-5 -County "ME, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300090.epw site_zip_code=04605 site_time_zone_utc_offset=-5 -County "ME, Kennebec County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300110.epw site_zip_code=04901 site_time_zone_utc_offset=-5 -County "ME, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300130.epw site_zip_code=04841 site_time_zone_utc_offset=-5 -County "ME, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300150.epw site_zip_code=04572 site_time_zone_utc_offset=-5 -County "ME, Oxford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300170.epw site_zip_code=04276 site_time_zone_utc_offset=-5 -County "ME, Penobscot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300190.epw site_zip_code=04401 site_time_zone_utc_offset=-5 -County "ME, Piscataquis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300210.epw site_zip_code=04426 site_time_zone_utc_offset=-5 -County "ME, Sagadahoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300230.epw site_zip_code=04530 site_time_zone_utc_offset=-5 -County "ME, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300250.epw site_zip_code=04976 site_time_zone_utc_offset=-5 -County "ME, Waldo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300270.epw site_zip_code=04915 site_time_zone_utc_offset=-5 -County "ME, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300290.epw site_zip_code=04654 site_time_zone_utc_offset=-5 -County "ME, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300310.epw site_zip_code=04005 site_time_zone_utc_offset=-5 -County "MI, Alcona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600010.epw site_zip_code=48740 site_time_zone_utc_offset=-5 -County "MI, Alger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600030.epw site_zip_code=49862 site_time_zone_utc_offset=-5 -County "MI, Allegan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600050.epw site_zip_code=49010 site_time_zone_utc_offset=-5 -County "MI, Alpena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600070.epw site_zip_code=49707 site_time_zone_utc_offset=-5 -County "MI, Antrim County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600090.epw site_zip_code=49615 site_time_zone_utc_offset=-5 -County "MI, Arenac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600110.epw site_zip_code=48658 site_time_zone_utc_offset=-5 -County "MI, Baraga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600130.epw site_zip_code=49946 site_time_zone_utc_offset=-5 -County "MI, Barry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600150.epw site_zip_code=49058 site_time_zone_utc_offset=-5 -County "MI, Bay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600170.epw site_zip_code=48706 site_time_zone_utc_offset=-5 -County "MI, Benzie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600190.epw site_zip_code=49635 site_time_zone_utc_offset=-5 -County "MI, Berrien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600210.epw site_zip_code=49022 site_time_zone_utc_offset=-5 -County "MI, Branch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600230.epw site_zip_code=49036 site_time_zone_utc_offset=-5 -County "MI, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600250.epw site_zip_code=49015 site_time_zone_utc_offset=-5 -County "MI, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600270.epw site_zip_code=49047 site_time_zone_utc_offset=-5 -County "MI, Charlevoix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600290.epw site_zip_code=49720 site_time_zone_utc_offset=-5 -County "MI, Cheboygan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600310.epw site_zip_code=49721 site_time_zone_utc_offset=-5 -County "MI, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600330.epw site_zip_code=49783 site_time_zone_utc_offset=-5 -County "MI, Clare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600350.epw site_zip_code=48625 site_time_zone_utc_offset=-5 -County "MI, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600370.epw site_zip_code=48820 site_time_zone_utc_offset=-5 -County "MI, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600390.epw site_zip_code=49738 site_time_zone_utc_offset=-5 -County "MI, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600410.epw site_zip_code=49829 site_time_zone_utc_offset=-5 -County "MI, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600430.epw site_zip_code=49801 site_time_zone_utc_offset=-6 -County "MI, Eaton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600450.epw site_zip_code=48917 site_time_zone_utc_offset=-5 -County "MI, Emmet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600470.epw site_zip_code=49770 site_time_zone_utc_offset=-5 -County "MI, Genesee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600490.epw site_zip_code=48439 site_time_zone_utc_offset=-5 -County "MI, Gladwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600510.epw site_zip_code=48624 site_time_zone_utc_offset=-5 -County "MI, Gogebic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600530.epw site_zip_code=49938 site_time_zone_utc_offset=-6 -County "MI, Grand Traverse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600550.epw site_zip_code=49686 site_time_zone_utc_offset=-5 -County "MI, Gratiot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600570.epw site_zip_code=48801 site_time_zone_utc_offset=-5 -County "MI, Hillsdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600590.epw site_zip_code=49242 site_time_zone_utc_offset=-5 -County "MI, Houghton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600610.epw site_zip_code=49931 site_time_zone_utc_offset=-5 -County "MI, Huron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600630.epw site_zip_code=48413 site_time_zone_utc_offset=-5 -County "MI, Ingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600650.epw site_zip_code=48823 site_time_zone_utc_offset=-5 -County "MI, Ionia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600670.epw site_zip_code=48846 site_time_zone_utc_offset=-5 -County "MI, Iosco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600690.epw site_zip_code=48750 site_time_zone_utc_offset=-5 -County "MI, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600710.epw site_zip_code=49935 site_time_zone_utc_offset=-6 -County "MI, Isabella County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600730.epw site_zip_code=48858 site_time_zone_utc_offset=-5 -County "MI, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600750.epw site_zip_code=49201 site_time_zone_utc_offset=-5 -County "MI, Kalamazoo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600770.epw site_zip_code=49009 site_time_zone_utc_offset=-5 -County "MI, Kalkaska County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600790.epw site_zip_code=49646 site_time_zone_utc_offset=-5 -County "MI, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600810.epw site_zip_code=49503 site_time_zone_utc_offset=-5 -County "MI, Keweenaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600830.epw site_zip_code=49950 site_time_zone_utc_offset=-5 -County "MI, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600850.epw site_zip_code=49304 site_time_zone_utc_offset=-5 -County "MI, Lapeer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600870.epw site_zip_code=48446 site_time_zone_utc_offset=-5 -County "MI, Leelanau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600890.epw site_zip_code=49684 site_time_zone_utc_offset=-5 -County "MI, Lenawee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600910.epw site_zip_code=49221 site_time_zone_utc_offset=-5 -County "MI, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600930.epw site_zip_code=48843 site_time_zone_utc_offset=-5 -County "MI, Luce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600950.epw site_zip_code=49868 site_time_zone_utc_offset=-5 -County "MI, Mackinac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600970.epw site_zip_code=49781 site_time_zone_utc_offset=-5 -County "MI, Macomb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600990.epw site_zip_code=48038 site_time_zone_utc_offset=-5 -County "MI, Manistee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601010.epw site_zip_code=49660 site_time_zone_utc_offset=-5 -County "MI, Marquette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601030.epw site_zip_code=49855 site_time_zone_utc_offset=-5 -County "MI, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601050.epw site_zip_code=49431 site_time_zone_utc_offset=-5 -County "MI, Mecosta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601070.epw site_zip_code=49307 site_time_zone_utc_offset=-5 -County "MI, Menominee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601090.epw site_zip_code=49858 site_time_zone_utc_offset=-6 -County "MI, Midland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601110.epw site_zip_code=48642 site_time_zone_utc_offset=-5 -County "MI, Missaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601130.epw site_zip_code=49651 site_time_zone_utc_offset=-5 -County "MI, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601150.epw site_zip_code=48162 site_time_zone_utc_offset=-5 -County "MI, Montcalm County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601170.epw site_zip_code=48838 site_time_zone_utc_offset=-5 -County "MI, Montmorency County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601190.epw site_zip_code=49709 site_time_zone_utc_offset=-5 -County "MI, Muskegon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601210.epw site_zip_code=49442 site_time_zone_utc_offset=-5 -County "MI, Newaygo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601230.epw site_zip_code=49337 site_time_zone_utc_offset=-5 -County "MI, Oakland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601250.epw site_zip_code=48307 site_time_zone_utc_offset=-5 -County "MI, Oceana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601270.epw site_zip_code=49420 site_time_zone_utc_offset=-5 -County "MI, Ogemaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601290.epw site_zip_code=48661 site_time_zone_utc_offset=-5 -County "MI, Ontonagon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601310.epw site_zip_code=49953 site_time_zone_utc_offset=-5 -County "MI, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601330.epw site_zip_code=49631 site_time_zone_utc_offset=-5 -County "MI, Oscoda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601350.epw site_zip_code=48647 site_time_zone_utc_offset=-5 -County "MI, Otsego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601370.epw site_zip_code=49735 site_time_zone_utc_offset=-5 -County "MI, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601390.epw site_zip_code=49424 site_time_zone_utc_offset=-5 -County "MI, Presque Isle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601410.epw site_zip_code=49779 site_time_zone_utc_offset=-5 -County "MI, Roscommon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601430.epw site_zip_code=48629 site_time_zone_utc_offset=-5 -County "MI, Saginaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601450.epw site_zip_code=48601 site_time_zone_utc_offset=-5 -County "MI, Sanilac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601510.epw site_zip_code=48450 site_time_zone_utc_offset=-5 -County "MI, Schoolcraft County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601530.epw site_zip_code=49854 site_time_zone_utc_offset=-5 -County "MI, Shiawassee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601550.epw site_zip_code=48867 site_time_zone_utc_offset=-5 -County "MI, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601470.epw site_zip_code=48060 site_time_zone_utc_offset=-5 -County "MI, St. Joseph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601490.epw site_zip_code=49091 site_time_zone_utc_offset=-5 -County "MI, Tuscola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601570.epw site_zip_code=48723 site_time_zone_utc_offset=-5 -County "MI, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601590.epw site_zip_code=49090 site_time_zone_utc_offset=-5 -County "MI, Washtenaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601610.epw site_zip_code=48197 site_time_zone_utc_offset=-5 -County "MI, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601630.epw site_zip_code=48180 site_time_zone_utc_offset=-5 -County "MI, Wexford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601650.epw site_zip_code=49601 site_time_zone_utc_offset=-5 -County "MN, Aitkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700010.epw site_zip_code=56431 site_time_zone_utc_offset=-6 -County "MN, Anoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700030.epw site_zip_code=55303 site_time_zone_utc_offset=-6 -County "MN, Becker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700050.epw site_zip_code=56501 site_time_zone_utc_offset=-6 -County "MN, Beltrami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700070.epw site_zip_code=56601 site_time_zone_utc_offset=-6 -County "MN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700090.epw site_zip_code=56379 site_time_zone_utc_offset=-6 -County "MN, Big Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700110.epw site_zip_code=56278 site_time_zone_utc_offset=-6 -County "MN, Blue Earth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700130.epw site_zip_code=56001 site_time_zone_utc_offset=-6 -County "MN, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700150.epw site_zip_code=56073 site_time_zone_utc_offset=-6 -County "MN, Carlton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700170.epw site_zip_code=55720 site_time_zone_utc_offset=-6 -County "MN, Carver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700190.epw site_zip_code=55318 site_time_zone_utc_offset=-6 -County "MN, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700210.epw site_zip_code=56474 site_time_zone_utc_offset=-6 -County "MN, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700230.epw site_zip_code=56265 site_time_zone_utc_offset=-6 -County "MN, Chisago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700250.epw site_zip_code=55056 site_time_zone_utc_offset=-6 -County "MN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700270.epw site_zip_code=56560 site_time_zone_utc_offset=-6 -County "MN, Clearwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700290.epw site_zip_code=56621 site_time_zone_utc_offset=-6 -County "MN, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700310.epw site_zip_code=55604 site_time_zone_utc_offset=-6 -County "MN, Cottonwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700330.epw site_zip_code=56101 site_time_zone_utc_offset=-6 -County "MN, Crow Wing County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700350.epw site_zip_code=56401 site_time_zone_utc_offset=-6 -County "MN, Dakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700370.epw site_zip_code=55124 site_time_zone_utc_offset=-6 -County "MN, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700390.epw site_zip_code=55944 site_time_zone_utc_offset=-6 -County "MN, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700410.epw site_zip_code=56308 site_time_zone_utc_offset=-6 -County "MN, Faribault County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700430.epw site_zip_code=56013 site_time_zone_utc_offset=-6 -County "MN, Fillmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700450.epw site_zip_code=55975 site_time_zone_utc_offset=-6 -County "MN, Freeborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700470.epw site_zip_code=56007 site_time_zone_utc_offset=-6 -County "MN, Goodhue County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700490.epw site_zip_code=55066 site_time_zone_utc_offset=-6 -County "MN, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700510.epw site_zip_code=56531 site_time_zone_utc_offset=-6 -County "MN, Hennepin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700530.epw site_zip_code=55408 site_time_zone_utc_offset=-6 -County "MN, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700550.epw site_zip_code=55947 site_time_zone_utc_offset=-6 -County "MN, Hubbard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700570.epw site_zip_code=56470 site_time_zone_utc_offset=-6 -County "MN, Isanti County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700590.epw site_zip_code=55008 site_time_zone_utc_offset=-6 -County "MN, Itasca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700610.epw site_zip_code=55744 site_time_zone_utc_offset=-6 -County "MN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700630.epw site_zip_code=56143 site_time_zone_utc_offset=-6 -County "MN, Kanabec County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700650.epw site_zip_code=55051 site_time_zone_utc_offset=-6 -County "MN, Kandiyohi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700670.epw site_zip_code=56201 site_time_zone_utc_offset=-6 -County "MN, Kittson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700690.epw site_zip_code=56728 site_time_zone_utc_offset=-6 -County "MN, Koochiching County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700710.epw site_zip_code=56649 site_time_zone_utc_offset=-6 -County "MN, Lac qui Parle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700730.epw site_zip_code=56256 site_time_zone_utc_offset=-6 -County "MN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700750.epw site_zip_code=55616 site_time_zone_utc_offset=-6 -County "MN, Lake of the Woods County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700770.epw site_zip_code=56623 site_time_zone_utc_offset=-6 -County "MN, Le Sueur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700790.epw site_zip_code=56058 site_time_zone_utc_offset=-6 -County "MN, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700810.epw site_zip_code=56178 site_time_zone_utc_offset=-6 -County "MN, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700830.epw site_zip_code=56258 site_time_zone_utc_offset=-6 -County "MN, Mahnomen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700870.epw site_zip_code=56557 site_time_zone_utc_offset=-6 -County "MN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700890.epw site_zip_code=56762 site_time_zone_utc_offset=-6 -County "MN, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700910.epw site_zip_code=56031 site_time_zone_utc_offset=-6 -County "MN, McLeod County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700850.epw site_zip_code=55350 site_time_zone_utc_offset=-6 -County "MN, Meeker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700930.epw site_zip_code=55355 site_time_zone_utc_offset=-6 -County "MN, Mille Lacs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700950.epw site_zip_code=56353 site_time_zone_utc_offset=-6 -County "MN, Morrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700970.epw site_zip_code=56345 site_time_zone_utc_offset=-6 -County "MN, Mower County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700990.epw site_zip_code=55912 site_time_zone_utc_offset=-6 -County "MN, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701010.epw site_zip_code=56172 site_time_zone_utc_offset=-6 -County "MN, Nicollet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701030.epw site_zip_code=56003 site_time_zone_utc_offset=-6 -County "MN, Nobles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701050.epw site_zip_code=56187 site_time_zone_utc_offset=-6 -County "MN, Norman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701070.epw site_zip_code=56510 site_time_zone_utc_offset=-6 -County "MN, Olmsted County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701090.epw site_zip_code=55901 site_time_zone_utc_offset=-6 -County "MN, Otter Tail County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701110.epw site_zip_code=56537 site_time_zone_utc_offset=-6 -County "MN, Pennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701130.epw site_zip_code=56701 site_time_zone_utc_offset=-6 -County "MN, Pine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701150.epw site_zip_code=55063 site_time_zone_utc_offset=-6 -County "MN, Pipestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701170.epw site_zip_code=56164 site_time_zone_utc_offset=-6 -County "MN, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701190.epw site_zip_code=56721 site_time_zone_utc_offset=-6 -County "MN, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701210.epw site_zip_code=56334 site_time_zone_utc_offset=-6 -County "MN, Ramsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701230.epw site_zip_code=55106 site_time_zone_utc_offset=-6 -County "MN, Red Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701250.epw site_zip_code=56750 site_time_zone_utc_offset=-6 -County "MN, Redwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701270.epw site_zip_code=56283 site_time_zone_utc_offset=-6 -County "MN, Renville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701290.epw site_zip_code=56277 site_time_zone_utc_offset=-6 -County "MN, Rice County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701310.epw site_zip_code=55021 site_time_zone_utc_offset=-6 -County "MN, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701330.epw site_zip_code=56156 site_time_zone_utc_offset=-6 -County "MN, Roseau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701350.epw site_zip_code=56751 site_time_zone_utc_offset=-6 -County "MN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701390.epw site_zip_code=55379 site_time_zone_utc_offset=-6 -County "MN, Sherburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701410.epw site_zip_code=55330 site_time_zone_utc_offset=-6 -County "MN, Sibley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701430.epw site_zip_code=55334 site_time_zone_utc_offset=-6 -County "MN, St. Louis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701370.epw site_zip_code=55811 site_time_zone_utc_offset=-6 -County "MN, Stearns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701450.epw site_zip_code=56301 site_time_zone_utc_offset=-6 -County "MN, Steele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701470.epw site_zip_code=55060 site_time_zone_utc_offset=-6 -County "MN, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701490.epw site_zip_code=56267 site_time_zone_utc_offset=-6 -County "MN, Swift County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701510.epw site_zip_code=56215 site_time_zone_utc_offset=-6 -County "MN, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701530.epw site_zip_code=56347 site_time_zone_utc_offset=-6 -County "MN, Traverse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701550.epw site_zip_code=56296 site_time_zone_utc_offset=-6 -County "MN, Wabasha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701570.epw site_zip_code=55041 site_time_zone_utc_offset=-6 -County "MN, Wadena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701590.epw site_zip_code=56482 site_time_zone_utc_offset=-6 -County "MN, Waseca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701610.epw site_zip_code=56093 site_time_zone_utc_offset=-6 -County "MN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701630.epw site_zip_code=55125 site_time_zone_utc_offset=-6 -County "MN, Watonwan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701650.epw site_zip_code=56081 site_time_zone_utc_offset=-6 -County "MN, Wilkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701670.epw site_zip_code=56520 site_time_zone_utc_offset=-6 -County "MN, Winona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701690.epw site_zip_code=55987 site_time_zone_utc_offset=-6 -County "MN, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701710.epw site_zip_code=55313 site_time_zone_utc_offset=-6 -County "MN, Yellow Medicine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701730.epw site_zip_code=56220 site_time_zone_utc_offset=-6 -County "MO, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900010.epw site_zip_code=63501 site_time_zone_utc_offset=-6 -County "MO, Andrew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900030.epw site_zip_code=64485 site_time_zone_utc_offset=-6 -County "MO, Atchison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900050.epw site_zip_code=64491 site_time_zone_utc_offset=-6 -County "MO, Audrain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900070.epw site_zip_code=65265 site_time_zone_utc_offset=-6 -County "MO, Barry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900090.epw site_zip_code=65625 site_time_zone_utc_offset=-6 -County "MO, Barton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900110.epw site_zip_code=64759 site_time_zone_utc_offset=-6 -County "MO, Bates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900130.epw site_zip_code=64730 site_time_zone_utc_offset=-6 -County "MO, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900150.epw site_zip_code=65355 site_time_zone_utc_offset=-6 -County "MO, Bollinger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900170.epw site_zip_code=63764 site_time_zone_utc_offset=-6 -County "MO, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900190.epw site_zip_code=65203 site_time_zone_utc_offset=-6 -County "MO, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900210.epw site_zip_code=64506 site_time_zone_utc_offset=-6 -County "MO, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900230.epw site_zip_code=63901 site_time_zone_utc_offset=-6 -County "MO, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900250.epw site_zip_code=64644 site_time_zone_utc_offset=-6 -County "MO, Callaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900270.epw site_zip_code=65251 site_time_zone_utc_offset=-6 -County "MO, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900290.epw site_zip_code=65020 site_time_zone_utc_offset=-6 -County "MO, Cape Girardeau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900310.epw site_zip_code=63701 site_time_zone_utc_offset=-6 -County "MO, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900330.epw site_zip_code=64633 site_time_zone_utc_offset=-6 -County "MO, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900350.epw site_zip_code=63965 site_time_zone_utc_offset=-6 -County "MO, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900370.epw site_zip_code=64012 site_time_zone_utc_offset=-6 -County "MO, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900390.epw site_zip_code=64744 site_time_zone_utc_offset=-6 -County "MO, Chariton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900410.epw site_zip_code=65281 site_time_zone_utc_offset=-6 -County "MO, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900430.epw site_zip_code=65714 site_time_zone_utc_offset=-6 -County "MO, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900450.epw site_zip_code=63445 site_time_zone_utc_offset=-6 -County "MO, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900470.epw site_zip_code=64118 site_time_zone_utc_offset=-6 -County "MO, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900490.epw site_zip_code=64429 site_time_zone_utc_offset=-6 -County "MO, Cole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900510.epw site_zip_code=65109 site_time_zone_utc_offset=-6 -County "MO, Cooper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900530.epw site_zip_code=65233 site_time_zone_utc_offset=-6 -County "MO, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900550.epw site_zip_code=65453 site_time_zone_utc_offset=-6 -County "MO, Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900570.epw site_zip_code=65661 site_time_zone_utc_offset=-6 -County "MO, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900590.epw site_zip_code=65622 site_time_zone_utc_offset=-6 -County "MO, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900610.epw site_zip_code=64640 site_time_zone_utc_offset=-6 -County "MO, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900630.epw site_zip_code=64429 site_time_zone_utc_offset=-6 -County "MO, Dent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900650.epw site_zip_code=65560 site_time_zone_utc_offset=-6 -County "MO, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900670.epw site_zip_code=65608 site_time_zone_utc_offset=-6 -County "MO, Dunklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900690.epw site_zip_code=63857 site_time_zone_utc_offset=-6 -County "MO, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900710.epw site_zip_code=63090 site_time_zone_utc_offset=-6 -County "MO, Gasconade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900730.epw site_zip_code=65066 site_time_zone_utc_offset=-6 -County "MO, Gentry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900750.epw site_zip_code=64402 site_time_zone_utc_offset=-6 -County "MO, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900770.epw site_zip_code=65807 site_time_zone_utc_offset=-6 -County "MO, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900790.epw site_zip_code=64683 site_time_zone_utc_offset=-6 -County "MO, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900810.epw site_zip_code=64424 site_time_zone_utc_offset=-6 -County "MO, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900830.epw site_zip_code=64735 site_time_zone_utc_offset=-6 -County "MO, Hickory County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900850.epw site_zip_code=65779 site_time_zone_utc_offset=-6 -County "MO, Holt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900870.epw site_zip_code=64470 site_time_zone_utc_offset=-6 -County "MO, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900890.epw site_zip_code=65248 site_time_zone_utc_offset=-6 -County "MO, Howell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900910.epw site_zip_code=65775 site_time_zone_utc_offset=-6 -County "MO, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900930.epw site_zip_code=63650 site_time_zone_utc_offset=-6 -County "MO, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900950.epw site_zip_code=64055 site_time_zone_utc_offset=-6 -County "MO, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900970.epw site_zip_code=64801 site_time_zone_utc_offset=-6 -County "MO, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900990.epw site_zip_code=63010 site_time_zone_utc_offset=-6 -County "MO, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901010.epw site_zip_code=64093 site_time_zone_utc_offset=-6 -County "MO, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901030.epw site_zip_code=63537 site_time_zone_utc_offset=-6 -County "MO, Laclede County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901050.epw site_zip_code=65536 site_time_zone_utc_offset=-6 -County "MO, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901070.epw site_zip_code=64076 site_time_zone_utc_offset=-6 -County "MO, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901090.epw site_zip_code=65605 site_time_zone_utc_offset=-6 -County "MO, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901110.epw site_zip_code=63435 site_time_zone_utc_offset=-6 -County "MO, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901130.epw site_zip_code=63379 site_time_zone_utc_offset=-6 -County "MO, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901150.epw site_zip_code=64628 site_time_zone_utc_offset=-6 -County "MO, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901170.epw site_zip_code=64601 site_time_zone_utc_offset=-6 -County "MO, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901210.epw site_zip_code=63552 site_time_zone_utc_offset=-6 -County "MO, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901230.epw site_zip_code=63645 site_time_zone_utc_offset=-6 -County "MO, Maries County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901250.epw site_zip_code=65582 site_time_zone_utc_offset=-6 -County "MO, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901270.epw site_zip_code=63401 site_time_zone_utc_offset=-6 -County "MO, McDonald County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901190.epw site_zip_code=64831 site_time_zone_utc_offset=-6 -County "MO, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901290.epw site_zip_code=64673 site_time_zone_utc_offset=-6 -County "MO, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901310.epw site_zip_code=65026 site_time_zone_utc_offset=-6 -County "MO, Mississippi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901330.epw site_zip_code=63845 site_time_zone_utc_offset=-6 -County "MO, Moniteau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901350.epw site_zip_code=65018 site_time_zone_utc_offset=-6 -County "MO, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901370.epw site_zip_code=65275 site_time_zone_utc_offset=-6 -County "MO, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901390.epw site_zip_code=63361 site_time_zone_utc_offset=-6 -County "MO, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901410.epw site_zip_code=65037 site_time_zone_utc_offset=-6 -County "MO, New Madrid County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901430.epw site_zip_code=63873 site_time_zone_utc_offset=-6 -County "MO, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901450.epw site_zip_code=64850 site_time_zone_utc_offset=-6 -County "MO, Nodaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901470.epw site_zip_code=64468 site_time_zone_utc_offset=-6 -County "MO, Oregon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901490.epw site_zip_code=65606 site_time_zone_utc_offset=-6 -County "MO, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901510.epw site_zip_code=65051 site_time_zone_utc_offset=-6 -County "MO, Ozark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901530.epw site_zip_code=65655 site_time_zone_utc_offset=-6 -County "MO, Pemiscot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901550.epw site_zip_code=63830 site_time_zone_utc_offset=-6 -County "MO, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901570.epw site_zip_code=63775 site_time_zone_utc_offset=-6 -County "MO, Pettis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901590.epw site_zip_code=65301 site_time_zone_utc_offset=-6 -County "MO, Phelps County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901610.epw site_zip_code=65401 site_time_zone_utc_offset=-6 -County "MO, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901630.epw site_zip_code=63334 site_time_zone_utc_offset=-6 -County "MO, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901650.epw site_zip_code=64151 site_time_zone_utc_offset=-6 -County "MO, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901670.epw site_zip_code=65613 site_time_zone_utc_offset=-6 -County "MO, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901690.epw site_zip_code=65473 site_time_zone_utc_offset=-6 -County "MO, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901710.epw site_zip_code=63565 site_time_zone_utc_offset=-6 -County "MO, Ralls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901730.epw site_zip_code=63459 site_time_zone_utc_offset=-6 -County "MO, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901750.epw site_zip_code=65270 site_time_zone_utc_offset=-6 -County "MO, Ray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901770.epw site_zip_code=64085 site_time_zone_utc_offset=-6 -County "MO, Reynolds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901790.epw site_zip_code=63638 site_time_zone_utc_offset=-6 -County "MO, Ripley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901810.epw site_zip_code=63935 site_time_zone_utc_offset=-6 -County "MO, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901950.epw site_zip_code=65340 site_time_zone_utc_offset=-6 -County "MO, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901970.epw site_zip_code=63548 site_time_zone_utc_offset=-6 -County "MO, Scotland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901990.epw site_zip_code=63555 site_time_zone_utc_offset=-6 -County "MO, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902010.epw site_zip_code=63801 site_time_zone_utc_offset=-6 -County "MO, Shannon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902030.epw site_zip_code=65588 site_time_zone_utc_offset=-6 -County "MO, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902050.epw site_zip_code=63468 site_time_zone_utc_offset=-6 -County "MO, St. Charles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901830.epw site_zip_code=63376 site_time_zone_utc_offset=-6 -County "MO, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901850.epw site_zip_code=64776 site_time_zone_utc_offset=-6 -County "MO, St. Francois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901870.epw site_zip_code=63640 site_time_zone_utc_offset=-6 -County "MO, St. Louis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901890.epw site_zip_code=63021 site_time_zone_utc_offset=-6 -County "MO, St. Louis city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2905100.epw site_zip_code=63116 site_time_zone_utc_offset=-6 -County "MO, Ste. Genevieve County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901860.epw site_zip_code=63670 site_time_zone_utc_offset=-6 -County "MO, Stoddard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902070.epw site_zip_code=63841 site_time_zone_utc_offset=-6 -County "MO, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902090.epw site_zip_code=65737 site_time_zone_utc_offset=-6 -County "MO, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902110.epw site_zip_code=63556 site_time_zone_utc_offset=-6 -County "MO, Taney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902130.epw site_zip_code=65616 site_time_zone_utc_offset=-6 -County "MO, Texas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902150.epw site_zip_code=65483 site_time_zone_utc_offset=-6 -County "MO, Vernon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902170.epw site_zip_code=64772 site_time_zone_utc_offset=-6 -County "MO, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902190.epw site_zip_code=63383 site_time_zone_utc_offset=-6 -County "MO, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902210.epw site_zip_code=63664 site_time_zone_utc_offset=-6 -County "MO, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902230.epw site_zip_code=63957 site_time_zone_utc_offset=-6 -County "MO, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902250.epw site_zip_code=65706 site_time_zone_utc_offset=-6 -County "MO, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902270.epw site_zip_code=64456 site_time_zone_utc_offset=-6 -County "MO, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902290.epw site_zip_code=65711 site_time_zone_utc_offset=-6 -County "MS, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800010.epw site_zip_code=39120 site_time_zone_utc_offset=-6 -County "MS, Alcorn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800030.epw site_zip_code=38834 site_time_zone_utc_offset=-6 -County "MS, Amite County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800050.epw site_zip_code=39645 site_time_zone_utc_offset=-6 -County "MS, Attala County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800070.epw site_zip_code=39090 site_time_zone_utc_offset=-6 -County "MS, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800090.epw site_zip_code=38603 site_time_zone_utc_offset=-6 -County "MS, Bolivar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800110.epw site_zip_code=38732 site_time_zone_utc_offset=-6 -County "MS, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800130.epw site_zip_code=38916 site_time_zone_utc_offset=-6 -County "MS, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800150.epw site_zip_code=38917 site_time_zone_utc_offset=-6 -County "MS, Chickasaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800170.epw site_zip_code=38851 site_time_zone_utc_offset=-6 -County "MS, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800190.epw site_zip_code=39735 site_time_zone_utc_offset=-6 -County "MS, Claiborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800210.epw site_zip_code=39150 site_time_zone_utc_offset=-6 -County "MS, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800230.epw site_zip_code=39355 site_time_zone_utc_offset=-6 -County "MS, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800250.epw site_zip_code=39773 site_time_zone_utc_offset=-6 -County "MS, Coahoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800270.epw site_zip_code=38614 site_time_zone_utc_offset=-6 -County "MS, Copiah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800290.epw site_zip_code=39059 site_time_zone_utc_offset=-6 -County "MS, Covington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800310.epw site_zip_code=39428 site_time_zone_utc_offset=-6 -County "MS, DeSoto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800330.epw site_zip_code=38654 site_time_zone_utc_offset=-6 -County "MS, Forrest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800350.epw site_zip_code=39401 site_time_zone_utc_offset=-6 -County "MS, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800370.epw site_zip_code=39653 site_time_zone_utc_offset=-6 -County "MS, George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800390.epw site_zip_code=39452 site_time_zone_utc_offset=-6 -County "MS, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800410.epw site_zip_code=39451 site_time_zone_utc_offset=-6 -County "MS, Grenada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800430.epw site_zip_code=38901 site_time_zone_utc_offset=-6 -County "MS, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800450.epw site_zip_code=39520 site_time_zone_utc_offset=-6 -County "MS, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800470.epw site_zip_code=39503 site_time_zone_utc_offset=-6 -County "MS, Hinds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800490.epw site_zip_code=39209 site_time_zone_utc_offset=-6 -County "MS, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800510.epw site_zip_code=39095 site_time_zone_utc_offset=-6 -County "MS, Humphreys County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800530.epw site_zip_code=39038 site_time_zone_utc_offset=-6 -County "MS, Issaquena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800550.epw site_zip_code=39159 site_time_zone_utc_offset=-6 -County "MS, Itawamba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800570.epw site_zip_code=38843 site_time_zone_utc_offset=-6 -County "MS, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800590.epw site_zip_code=39564 site_time_zone_utc_offset=-6 -County "MS, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800610.epw site_zip_code=39422 site_time_zone_utc_offset=-6 -County "MS, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800630.epw site_zip_code=39069 site_time_zone_utc_offset=-6 -County "MS, Jefferson Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800650.epw site_zip_code=39474 site_time_zone_utc_offset=-6 -County "MS, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800670.epw site_zip_code=39443 site_time_zone_utc_offset=-6 -County "MS, Kemper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800690.epw site_zip_code=39328 site_time_zone_utc_offset=-6 -County "MS, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800710.epw site_zip_code=38655 site_time_zone_utc_offset=-6 -County "MS, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800730.epw site_zip_code=39402 site_time_zone_utc_offset=-6 -County "MS, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800750.epw site_zip_code=39301 site_time_zone_utc_offset=-6 -County "MS, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800770.epw site_zip_code=39654 site_time_zone_utc_offset=-6 -County "MS, Leake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800790.epw site_zip_code=39051 site_time_zone_utc_offset=-6 -County "MS, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800810.epw site_zip_code=38801 site_time_zone_utc_offset=-6 -County "MS, Leflore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800830.epw site_zip_code=38930 site_time_zone_utc_offset=-6 -County "MS, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800850.epw site_zip_code=39601 site_time_zone_utc_offset=-6 -County "MS, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800870.epw site_zip_code=39702 site_time_zone_utc_offset=-6 -County "MS, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800890.epw site_zip_code=39110 site_time_zone_utc_offset=-6 -County "MS, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800910.epw site_zip_code=39429 site_time_zone_utc_offset=-6 -County "MS, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800930.epw site_zip_code=38611 site_time_zone_utc_offset=-6 -County "MS, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800950.epw site_zip_code=38821 site_time_zone_utc_offset=-6 -County "MS, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800970.epw site_zip_code=38967 site_time_zone_utc_offset=-6 -County "MS, Neshoba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800990.epw site_zip_code=39350 site_time_zone_utc_offset=-6 -County "MS, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801010.epw site_zip_code=39345 site_time_zone_utc_offset=-6 -County "MS, Noxubee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801030.epw site_zip_code=39341 site_time_zone_utc_offset=-6 -County "MS, Oktibbeha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801050.epw site_zip_code=39759 site_time_zone_utc_offset=-6 -County "MS, Panola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801070.epw site_zip_code=38606 site_time_zone_utc_offset=-6 -County "MS, Pearl River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801090.epw site_zip_code=39466 site_time_zone_utc_offset=-6 -County "MS, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801110.epw site_zip_code=39476 site_time_zone_utc_offset=-6 -County "MS, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801130.epw site_zip_code=39648 site_time_zone_utc_offset=-6 -County "MS, Pontotoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801150.epw site_zip_code=38863 site_time_zone_utc_offset=-6 -County "MS, Prentiss County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801170.epw site_zip_code=38829 site_time_zone_utc_offset=-6 -County "MS, Quitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801190.epw site_zip_code=38646 site_time_zone_utc_offset=-6 -County "MS, Rankin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801210.epw site_zip_code=39047 site_time_zone_utc_offset=-6 -County "MS, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801230.epw site_zip_code=39074 site_time_zone_utc_offset=-6 -County "MS, Sharkey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801250.epw site_zip_code=39159 site_time_zone_utc_offset=-6 -County "MS, Simpson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801270.epw site_zip_code=39111 site_time_zone_utc_offset=-6 -County "MS, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801290.epw site_zip_code=39168 site_time_zone_utc_offset=-6 -County "MS, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801310.epw site_zip_code=39577 site_time_zone_utc_offset=-6 -County "MS, Sunflower County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801330.epw site_zip_code=38751 site_time_zone_utc_offset=-6 -County "MS, Tallahatchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801350.epw site_zip_code=38921 site_time_zone_utc_offset=-6 -County "MS, Tate County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801370.epw site_zip_code=38668 site_time_zone_utc_offset=-6 -County "MS, Tippah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801390.epw site_zip_code=38663 site_time_zone_utc_offset=-6 -County "MS, Tishomingo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801410.epw site_zip_code=38852 site_time_zone_utc_offset=-6 -County "MS, Tunica County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801430.epw site_zip_code=38676 site_time_zone_utc_offset=-6 -County "MS, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801450.epw site_zip_code=38652 site_time_zone_utc_offset=-6 -County "MS, Walthall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801470.epw site_zip_code=39667 site_time_zone_utc_offset=-6 -County "MS, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801490.epw site_zip_code=39180 site_time_zone_utc_offset=-6 -County "MS, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801510.epw site_zip_code=38701 site_time_zone_utc_offset=-6 -County "MS, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801530.epw site_zip_code=39367 site_time_zone_utc_offset=-6 -County "MS, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801550.epw site_zip_code=39744 site_time_zone_utc_offset=-6 -County "MS, Wilkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801570.epw site_zip_code=39669 site_time_zone_utc_offset=-6 -County "MS, Winston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801590.epw site_zip_code=39339 site_time_zone_utc_offset=-6 -County "MS, Yalobusha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801610.epw site_zip_code=38965 site_time_zone_utc_offset=-6 -County "MS, Yazoo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801630.epw site_zip_code=39194 site_time_zone_utc_offset=-6 -County "MT, Beaverhead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000010.epw site_zip_code=59725 site_time_zone_utc_offset=-7 -County "MT, Big Horn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000030.epw site_zip_code=59034 site_time_zone_utc_offset=-7 -County "MT, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000050.epw site_zip_code=59526 site_time_zone_utc_offset=-7 -County "MT, Broadwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000070.epw site_zip_code=59644 site_time_zone_utc_offset=-7 -County "MT, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000090.epw site_zip_code=59068 site_time_zone_utc_offset=-7 -County "MT, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000110.epw site_zip_code=59324 site_time_zone_utc_offset=-7 -County "MT, Cascade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000130.epw site_zip_code=59405 site_time_zone_utc_offset=-7 -County "MT, Chouteau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000150.epw site_zip_code=59442 site_time_zone_utc_offset=-7 -County "MT, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000170.epw site_zip_code=59301 site_time_zone_utc_offset=-7 -County "MT, Daniels County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000190.epw site_zip_code=59263 site_time_zone_utc_offset=-7 -County "MT, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000210.epw site_zip_code=59330 site_time_zone_utc_offset=-7 -County "MT, Deer Lodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000230.epw site_zip_code=59711 site_time_zone_utc_offset=-7 -County "MT, Fallon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000250.epw site_zip_code=59313 site_time_zone_utc_offset=-7 -County "MT, Fergus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000270.epw site_zip_code=59457 site_time_zone_utc_offset=-7 -County "MT, Flathead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000290.epw site_zip_code=59901 site_time_zone_utc_offset=-7 -County "MT, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000310.epw site_zip_code=59718 site_time_zone_utc_offset=-7 -County "MT, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000330.epw site_zip_code=59337 site_time_zone_utc_offset=-7 -County "MT, Glacier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000350.epw site_zip_code=59427 site_time_zone_utc_offset=-7 -County "MT, Golden Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000370.epw site_zip_code=59074 site_time_zone_utc_offset=-7 -County "MT, Granite County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000390.epw site_zip_code=59858 site_time_zone_utc_offset=-7 -County "MT, Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000410.epw site_zip_code=59501 site_time_zone_utc_offset=-7 -County "MT, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000430.epw site_zip_code=59634 site_time_zone_utc_offset=-7 -County "MT, Judith Basin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000450.epw site_zip_code=59479 site_time_zone_utc_offset=-7 -County "MT, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000470.epw site_zip_code=59860 site_time_zone_utc_offset=-7 -County "MT, Lewis and Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000490.epw site_zip_code=59601 site_time_zone_utc_offset=-7 -County "MT, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000510.epw site_zip_code=59522 site_time_zone_utc_offset=-7 -County "MT, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000530.epw site_zip_code=59923 site_time_zone_utc_offset=-7 -County "MT, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000570.epw site_zip_code=59729 site_time_zone_utc_offset=-7 -County "MT, McCone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000550.epw site_zip_code=59215 site_time_zone_utc_offset=-7 -County "MT, Meagher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000590.epw site_zip_code=59645 site_time_zone_utc_offset=-7 -County "MT, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000610.epw site_zip_code=59872 site_time_zone_utc_offset=-7 -County "MT, Missoula County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000630.epw site_zip_code=59801 site_time_zone_utc_offset=-7 -County "MT, Musselshell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000650.epw site_zip_code=59072 site_time_zone_utc_offset=-7 -County "MT, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000670.epw site_zip_code=59047 site_time_zone_utc_offset=-7 -County "MT, Petroleum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000690.epw site_zip_code=59087 site_time_zone_utc_offset=-7 -County "MT, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000710.epw site_zip_code=59538 site_time_zone_utc_offset=-7 -County "MT, Pondera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000730.epw site_zip_code=59425 site_time_zone_utc_offset=-7 -County "MT, Powder River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000750.epw site_zip_code=59317 site_time_zone_utc_offset=-7 -County "MT, Powell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000770.epw site_zip_code=59722 site_time_zone_utc_offset=-7 -County "MT, Prairie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000790.epw site_zip_code=59349 site_time_zone_utc_offset=-7 -County "MT, Ravalli County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000810.epw site_zip_code=59840 site_time_zone_utc_offset=-7 -County "MT, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000830.epw site_zip_code=59270 site_time_zone_utc_offset=-7 -County "MT, Roosevelt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000850.epw site_zip_code=59201 site_time_zone_utc_offset=-7 -County "MT, Rosebud County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000870.epw site_zip_code=59327 site_time_zone_utc_offset=-7 -County "MT, Sanders County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000890.epw site_zip_code=59859 site_time_zone_utc_offset=-7 -County "MT, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000910.epw site_zip_code=59254 site_time_zone_utc_offset=-7 -County "MT, Silver Bow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000930.epw site_zip_code=59701 site_time_zone_utc_offset=-7 -County "MT, Stillwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000950.epw site_zip_code=59019 site_time_zone_utc_offset=-7 -County "MT, Sweet Grass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000970.epw site_zip_code=59011 site_time_zone_utc_offset=-7 -County "MT, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000990.epw site_zip_code=59422 site_time_zone_utc_offset=-7 -County "MT, Toole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001010.epw site_zip_code=59474 site_time_zone_utc_offset=-7 -County "MT, Treasure County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001030.epw site_zip_code=59038 site_time_zone_utc_offset=-7 -County "MT, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001050.epw site_zip_code=59230 site_time_zone_utc_offset=-7 -County "MT, Wheatland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001070.epw site_zip_code=59036 site_time_zone_utc_offset=-7 -County "MT, Wibaux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001090.epw site_zip_code=59353 site_time_zone_utc_offset=-7 -County "MT, Yellowstone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001110.epw site_zip_code=59102 site_time_zone_utc_offset=-7 -County "NC, Alamance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700010.epw site_zip_code=27215 site_time_zone_utc_offset=-5 -County "NC, Alexander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700030.epw site_zip_code=28681 site_time_zone_utc_offset=-5 -County "NC, Alleghany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700050.epw site_zip_code=28675 site_time_zone_utc_offset=-5 -County "NC, Anson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700070.epw site_zip_code=28170 site_time_zone_utc_offset=-5 -County "NC, Ashe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700090.epw site_zip_code=28694 site_time_zone_utc_offset=-5 -County "NC, Avery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700110.epw site_zip_code=28657 site_time_zone_utc_offset=-5 -County "NC, Beaufort County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700130.epw site_zip_code=27889 site_time_zone_utc_offset=-5 -County "NC, Bertie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700150.epw site_zip_code=27983 site_time_zone_utc_offset=-5 -County "NC, Bladen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700170.epw site_zip_code=28337 site_time_zone_utc_offset=-5 -County "NC, Brunswick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700190.epw site_zip_code=28451 site_time_zone_utc_offset=-5 -County "NC, Buncombe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700210.epw site_zip_code=28806 site_time_zone_utc_offset=-5 -County "NC, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700230.epw site_zip_code=28655 site_time_zone_utc_offset=-5 -County "NC, Cabarrus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700250.epw site_zip_code=28027 site_time_zone_utc_offset=-5 -County "NC, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700270.epw site_zip_code=28645 site_time_zone_utc_offset=-5 -County "NC, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700290.epw site_zip_code=27921 site_time_zone_utc_offset=-5 -County "NC, Carteret County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700310.epw site_zip_code=28570 site_time_zone_utc_offset=-5 -County "NC, Caswell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700330.epw site_zip_code=27379 site_time_zone_utc_offset=-5 -County "NC, Catawba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700350.epw site_zip_code=28601 site_time_zone_utc_offset=-5 -County "NC, Chatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700370.epw site_zip_code=27312 site_time_zone_utc_offset=-5 -County "NC, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700390.epw site_zip_code=28906 site_time_zone_utc_offset=-5 -County "NC, Chowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700410.epw site_zip_code=27932 site_time_zone_utc_offset=-5 -County "NC, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700430.epw site_zip_code=28904 site_time_zone_utc_offset=-5 -County "NC, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700450.epw site_zip_code=28150 site_time_zone_utc_offset=-5 -County "NC, Columbus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700470.epw site_zip_code=28472 site_time_zone_utc_offset=-5 -County "NC, Craven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700490.epw site_zip_code=28562 site_time_zone_utc_offset=-5 -County "NC, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700510.epw site_zip_code=28314 site_time_zone_utc_offset=-5 -County "NC, Currituck County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700530.epw site_zip_code=27958 site_time_zone_utc_offset=-5 -County "NC, Dare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700550.epw site_zip_code=27949 site_time_zone_utc_offset=-5 -County "NC, Davidson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700570.epw site_zip_code=27360 site_time_zone_utc_offset=-5 -County "NC, Davie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700590.epw site_zip_code=27028 site_time_zone_utc_offset=-5 -County "NC, Duplin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700610.epw site_zip_code=28466 site_time_zone_utc_offset=-5 -County "NC, Durham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700630.epw site_zip_code=27703 site_time_zone_utc_offset=-5 -County "NC, Edgecombe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700650.epw site_zip_code=27801 site_time_zone_utc_offset=-5 -County "NC, Forsyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700670.epw site_zip_code=27284 site_time_zone_utc_offset=-5 -County "NC, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700690.epw site_zip_code=27549 site_time_zone_utc_offset=-5 -County "NC, Gaston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700710.epw site_zip_code=28054 site_time_zone_utc_offset=-5 -County "NC, Gates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700730.epw site_zip_code=27937 site_time_zone_utc_offset=-5 -County "NC, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700750.epw site_zip_code=28771 site_time_zone_utc_offset=-5 -County "NC, Granville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700770.epw site_zip_code=27565 site_time_zone_utc_offset=-5 -County "NC, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700790.epw site_zip_code=28580 site_time_zone_utc_offset=-5 -County "NC, Guilford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700810.epw site_zip_code=27406 site_time_zone_utc_offset=-5 -County "NC, Halifax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700830.epw site_zip_code=27870 site_time_zone_utc_offset=-5 -County "NC, Harnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700850.epw site_zip_code=27546 site_time_zone_utc_offset=-5 -County "NC, Haywood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700870.epw site_zip_code=28786 site_time_zone_utc_offset=-5 -County "NC, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700890.epw site_zip_code=28792 site_time_zone_utc_offset=-5 -County "NC, Hertford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700910.epw site_zip_code=27910 site_time_zone_utc_offset=-5 -County "NC, Hoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700930.epw site_zip_code=28376 site_time_zone_utc_offset=-5 -County "NC, Hyde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700950.epw site_zip_code=27824 site_time_zone_utc_offset=-5 -County "NC, Iredell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700970.epw site_zip_code=28117 site_time_zone_utc_offset=-5 -County "NC, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700990.epw site_zip_code=28779 site_time_zone_utc_offset=-5 -County "NC, Johnston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701010.epw site_zip_code=27520 site_time_zone_utc_offset=-5 -County "NC, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701030.epw site_zip_code=28585 site_time_zone_utc_offset=-5 -County "NC, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701050.epw site_zip_code=27330 site_time_zone_utc_offset=-5 -County "NC, Lenoir County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701070.epw site_zip_code=28501 site_time_zone_utc_offset=-5 -County "NC, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701090.epw site_zip_code=28092 site_time_zone_utc_offset=-5 -County "NC, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701130.epw site_zip_code=28734 site_time_zone_utc_offset=-5 -County "NC, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701150.epw site_zip_code=28753 site_time_zone_utc_offset=-5 -County "NC, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701170.epw site_zip_code=27892 site_time_zone_utc_offset=-5 -County "NC, McDowell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701110.epw site_zip_code=28752 site_time_zone_utc_offset=-5 -County "NC, Mecklenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701190.epw site_zip_code=28269 site_time_zone_utc_offset=-5 -County "NC, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701210.epw site_zip_code=28777 site_time_zone_utc_offset=-5 -County "NC, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701230.epw site_zip_code=27371 site_time_zone_utc_offset=-5 -County "NC, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701250.epw site_zip_code=28374 site_time_zone_utc_offset=-5 -County "NC, Nash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701270.epw site_zip_code=27804 site_time_zone_utc_offset=-5 -County "NC, New Hanover County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701290.epw site_zip_code=28412 site_time_zone_utc_offset=-5 -County "NC, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701310.epw site_zip_code=27831 site_time_zone_utc_offset=-5 -County "NC, Onslow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701330.epw site_zip_code=28540 site_time_zone_utc_offset=-5 -County "NC, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701350.epw site_zip_code=27514 site_time_zone_utc_offset=-5 -County "NC, Pamlico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701370.epw site_zip_code=28571 site_time_zone_utc_offset=-5 -County "NC, Pasquotank County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701390.epw site_zip_code=27909 site_time_zone_utc_offset=-5 -County "NC, Pender County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701410.epw site_zip_code=28443 site_time_zone_utc_offset=-5 -County "NC, Perquimans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701430.epw site_zip_code=27944 site_time_zone_utc_offset=-5 -County "NC, Person County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701450.epw site_zip_code=27574 site_time_zone_utc_offset=-5 -County "NC, Pitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701470.epw site_zip_code=27858 site_time_zone_utc_offset=-5 -County "NC, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701490.epw site_zip_code=28782 site_time_zone_utc_offset=-5 -County "NC, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701510.epw site_zip_code=27205 site_time_zone_utc_offset=-5 -County "NC, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701530.epw site_zip_code=28379 site_time_zone_utc_offset=-5 -County "NC, Robeson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701550.epw site_zip_code=28358 site_time_zone_utc_offset=-5 -County "NC, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701570.epw site_zip_code=27320 site_time_zone_utc_offset=-5 -County "NC, Rowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701590.epw site_zip_code=28146 site_time_zone_utc_offset=-5 -County "NC, Rutherford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701610.epw site_zip_code=28043 site_time_zone_utc_offset=-5 -County "NC, Sampson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701630.epw site_zip_code=28328 site_time_zone_utc_offset=-5 -County "NC, Scotland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701650.epw site_zip_code=28352 site_time_zone_utc_offset=-5 -County "NC, Stanly County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701670.epw site_zip_code=28001 site_time_zone_utc_offset=-5 -County "NC, Stokes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701690.epw site_zip_code=27021 site_time_zone_utc_offset=-5 -County "NC, Surry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701710.epw site_zip_code=27030 site_time_zone_utc_offset=-5 -County "NC, Swain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701730.epw site_zip_code=28713 site_time_zone_utc_offset=-5 -County "NC, Transylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701750.epw site_zip_code=28712 site_time_zone_utc_offset=-5 -County "NC, Tyrrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701770.epw site_zip_code=27925 site_time_zone_utc_offset=-5 -County "NC, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701790.epw site_zip_code=28173 site_time_zone_utc_offset=-5 -County "NC, Vance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701810.epw site_zip_code=27537 site_time_zone_utc_offset=-5 -County "NC, Wake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701830.epw site_zip_code=27610 site_time_zone_utc_offset=-5 -County "NC, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701850.epw site_zip_code=27589 site_time_zone_utc_offset=-5 -County "NC, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701870.epw site_zip_code=27962 site_time_zone_utc_offset=-5 -County "NC, Watauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701890.epw site_zip_code=28607 site_time_zone_utc_offset=-5 -County "NC, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701910.epw site_zip_code=27530 site_time_zone_utc_offset=-5 -County "NC, Wilkes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701930.epw site_zip_code=28659 site_time_zone_utc_offset=-5 -County "NC, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701950.epw site_zip_code=27893 site_time_zone_utc_offset=-5 -County "NC, Yadkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701970.epw site_zip_code=27055 site_time_zone_utc_offset=-5 -County "NC, Yancey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701990.epw site_zip_code=28714 site_time_zone_utc_offset=-5 -County "ND, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800010.epw site_zip_code=58639 site_time_zone_utc_offset=-7 -County "ND, Barnes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800030.epw site_zip_code=58072 site_time_zone_utc_offset=-6 -County "ND, Benson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800050.epw site_zip_code=58348 site_time_zone_utc_offset=-6 -County "ND, Billings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800070.epw site_zip_code=58622 site_time_zone_utc_offset=-7 -County "ND, Bottineau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800090.epw site_zip_code=58318 site_time_zone_utc_offset=-6 -County "ND, Bowman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800110.epw site_zip_code=58623 site_time_zone_utc_offset=-7 -County "ND, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800130.epw site_zip_code=58773 site_time_zone_utc_offset=-6 -County "ND, Burleigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800150.epw site_zip_code=58503 site_time_zone_utc_offset=-6 -County "ND, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800170.epw site_zip_code=58103 site_time_zone_utc_offset=-6 -County "ND, Cavalier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800190.epw site_zip_code=58249 site_time_zone_utc_offset=-6 -County "ND, Dickey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800210.epw site_zip_code=58474 site_time_zone_utc_offset=-6 -County "ND, Divide County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800230.epw site_zip_code=58730 site_time_zone_utc_offset=-6 -County "ND, Dunn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800250.epw site_zip_code=58640 site_time_zone_utc_offset=-7 -County "ND, Eddy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800270.epw site_zip_code=58356 site_time_zone_utc_offset=-6 -County "ND, Emmons County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800290.epw site_zip_code=58552 site_time_zone_utc_offset=-6 -County "ND, Foster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800310.epw site_zip_code=58421 site_time_zone_utc_offset=-6 -County "ND, Golden Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800330.epw site_zip_code=58621 site_time_zone_utc_offset=-7 -County "ND, Grand Forks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800350.epw site_zip_code=58201 site_time_zone_utc_offset=-6 -County "ND, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800370.epw site_zip_code=58533 site_time_zone_utc_offset=-7 -County "ND, Griggs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800390.epw site_zip_code=58425 site_time_zone_utc_offset=-6 -County "ND, Hettinger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800410.epw site_zip_code=58646 site_time_zone_utc_offset=-7 -County "ND, Kidder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800430.epw site_zip_code=58482 site_time_zone_utc_offset=-6 -County "ND, LaMoure County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800450.epw site_zip_code=58458 site_time_zone_utc_offset=-6 -County "ND, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800470.epw site_zip_code=58561 site_time_zone_utc_offset=-6 -County "ND, McHenry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800490.epw site_zip_code=58790 site_time_zone_utc_offset=-6 -County "ND, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800510.epw site_zip_code=58495 site_time_zone_utc_offset=-6 -County "ND, McKenzie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800530.epw site_zip_code=58854 site_time_zone_utc_offset=-7 -County "ND, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800550.epw site_zip_code=58540 site_time_zone_utc_offset=-6 -County "ND, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800570.epw site_zip_code=58545 site_time_zone_utc_offset=-6 -County "ND, Morton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800590.epw site_zip_code=58554 site_time_zone_utc_offset=-6 -County "ND, Mountrail County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800610.epw site_zip_code=58763 site_time_zone_utc_offset=-6 -County "ND, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800630.epw site_zip_code=58344 site_time_zone_utc_offset=-6 -County "ND, Oliver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800650.epw site_zip_code=58530 site_time_zone_utc_offset=-6 -County "ND, Pembina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800670.epw site_zip_code=58220 site_time_zone_utc_offset=-6 -County "ND, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800690.epw site_zip_code=58368 site_time_zone_utc_offset=-6 -County "ND, Ramsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800710.epw site_zip_code=58301 site_time_zone_utc_offset=-6 -County "ND, Ransom County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800730.epw site_zip_code=58054 site_time_zone_utc_offset=-6 -County "ND, Renville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800750.epw site_zip_code=58761 site_time_zone_utc_offset=-6 -County "ND, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800770.epw site_zip_code=58075 site_time_zone_utc_offset=-6 -County "ND, Rolette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800790.epw site_zip_code=58367 site_time_zone_utc_offset=-6 -County "ND, Sargent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800810.epw site_zip_code=58060 site_time_zone_utc_offset=-6 -County "ND, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800830.epw site_zip_code=58463 site_time_zone_utc_offset=-6 -County "ND, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800850.epw site_zip_code=58538 site_time_zone_utc_offset=-6 -County "ND, Slope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800870.epw site_zip_code=58620 site_time_zone_utc_offset=-7 -County "ND, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800890.epw site_zip_code=58601 site_time_zone_utc_offset=-7 -County "ND, Steele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800910.epw site_zip_code=58230 site_time_zone_utc_offset=-6 -County "ND, Stutsman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800930.epw site_zip_code=58401 site_time_zone_utc_offset=-6 -County "ND, Towner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800950.epw site_zip_code=58324 site_time_zone_utc_offset=-6 -County "ND, Traill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800970.epw site_zip_code=58257 site_time_zone_utc_offset=-6 -County "ND, Walsh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800990.epw site_zip_code=58237 site_time_zone_utc_offset=-6 -County "ND, Ward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801010.epw site_zip_code=58701 site_time_zone_utc_offset=-6 -County "ND, Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801030.epw site_zip_code=58341 site_time_zone_utc_offset=-6 -County "ND, Williams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801050.epw site_zip_code=58801 site_time_zone_utc_offset=-6 -County "NE, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100010.epw site_zip_code=68901 site_time_zone_utc_offset=-6 -County "NE, Antelope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100030.epw site_zip_code=68756 site_time_zone_utc_offset=-6 -County "NE, Arthur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100050.epw site_zip_code=69121 site_time_zone_utc_offset=-7 -County "NE, Banner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100070.epw site_zip_code=69345 site_time_zone_utc_offset=-7 -County "NE, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100090.epw site_zip_code=68833 site_time_zone_utc_offset=-6 -County "NE, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100110.epw site_zip_code=68620 site_time_zone_utc_offset=-6 -County "NE, Box Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100130.epw site_zip_code=69301 site_time_zone_utc_offset=-7 -County "NE, Boyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100150.epw site_zip_code=68777 site_time_zone_utc_offset=-6 -County "NE, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100170.epw site_zip_code=69210 site_time_zone_utc_offset=-6 -County "NE, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100190.epw site_zip_code=68845 site_time_zone_utc_offset=-6 -County "NE, Burt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100210.epw site_zip_code=68061 site_time_zone_utc_offset=-6 -County "NE, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100230.epw site_zip_code=68632 site_time_zone_utc_offset=-6 -County "NE, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100250.epw site_zip_code=68048 site_time_zone_utc_offset=-6 -County "NE, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100270.epw site_zip_code=68739 site_time_zone_utc_offset=-6 -County "NE, Chase County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100290.epw site_zip_code=69033 site_time_zone_utc_offset=-7 -County "NE, Cherry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100310.epw site_zip_code=69201 site_time_zone_utc_offset=-6 -County "NE, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100330.epw site_zip_code=69162 site_time_zone_utc_offset=-7 -County "NE, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100350.epw site_zip_code=68979 site_time_zone_utc_offset=-6 -County "NE, Colfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100370.epw site_zip_code=68661 site_time_zone_utc_offset=-6 -County "NE, Cuming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100390.epw site_zip_code=68788 site_time_zone_utc_offset=-6 -County "NE, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100410.epw site_zip_code=68822 site_time_zone_utc_offset=-6 -County "NE, Dakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100430.epw site_zip_code=68776 site_time_zone_utc_offset=-6 -County "NE, Dawes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100450.epw site_zip_code=69337 site_time_zone_utc_offset=-7 -County "NE, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100470.epw site_zip_code=68850 site_time_zone_utc_offset=-6 -County "NE, Deuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100490.epw site_zip_code=69129 site_time_zone_utc_offset=-7 -County "NE, Dixon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100510.epw site_zip_code=68770 site_time_zone_utc_offset=-6 -County "NE, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100530.epw site_zip_code=68025 site_time_zone_utc_offset=-6 -County "NE, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100550.epw site_zip_code=68022 site_time_zone_utc_offset=-6 -County "NE, Dundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100570.epw site_zip_code=69021 site_time_zone_utc_offset=-7 -County "NE, Fillmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100590.epw site_zip_code=68361 site_time_zone_utc_offset=-6 -County "NE, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100610.epw site_zip_code=68939 site_time_zone_utc_offset=-6 -County "NE, Frontier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100630.epw site_zip_code=69025 site_time_zone_utc_offset=-6 -County "NE, Furnas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100650.epw site_zip_code=69022 site_time_zone_utc_offset=-6 -County "NE, Gage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100670.epw site_zip_code=68310 site_time_zone_utc_offset=-6 -County "NE, Garden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100690.epw site_zip_code=69154 site_time_zone_utc_offset=-7 -County "NE, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100710.epw site_zip_code=68823 site_time_zone_utc_offset=-6 -County "NE, Gosper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100730.epw site_zip_code=68937 site_time_zone_utc_offset=-6 -County "NE, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100750.epw site_zip_code=69350 site_time_zone_utc_offset=-7 -County "NE, Greeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100770.epw site_zip_code=68665 site_time_zone_utc_offset=-6 -County "NE, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100790.epw site_zip_code=68801 site_time_zone_utc_offset=-6 -County "NE, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100810.epw site_zip_code=68818 site_time_zone_utc_offset=-6 -County "NE, Harlan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100830.epw site_zip_code=68920 site_time_zone_utc_offset=-6 -County "NE, Hayes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100850.epw site_zip_code=69032 site_time_zone_utc_offset=-6 -County "NE, Hitchcock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100870.epw site_zip_code=69024 site_time_zone_utc_offset=-6 -County "NE, Holt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100890.epw site_zip_code=68763 site_time_zone_utc_offset=-6 -County "NE, Hooker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100910.epw site_zip_code=69152 site_time_zone_utc_offset=-7 -County "NE, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100930.epw site_zip_code=68873 site_time_zone_utc_offset=-6 -County "NE, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100950.epw site_zip_code=68352 site_time_zone_utc_offset=-6 -County "NE, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100970.epw site_zip_code=68450 site_time_zone_utc_offset=-6 -County "NE, Kearney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100990.epw site_zip_code=68959 site_time_zone_utc_offset=-6 -County "NE, Keith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101010.epw site_zip_code=69153 site_time_zone_utc_offset=-7 -County "NE, Keya Paha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101030.epw site_zip_code=68778 site_time_zone_utc_offset=-6 -County "NE, Kimball County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101050.epw site_zip_code=69145 site_time_zone_utc_offset=-7 -County "NE, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101070.epw site_zip_code=68718 site_time_zone_utc_offset=-6 -County "NE, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101090.epw site_zip_code=68516 site_time_zone_utc_offset=-6 -County "NE, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101110.epw site_zip_code=69101 site_time_zone_utc_offset=-6 -County "NE, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101130.epw site_zip_code=69163 site_time_zone_utc_offset=-6 -County "NE, Loup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101150.epw site_zip_code=68823 site_time_zone_utc_offset=-6 -County "NE, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101190.epw site_zip_code=68701 site_time_zone_utc_offset=-6 -County "NE, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101170.epw site_zip_code=69167 site_time_zone_utc_offset=-6 -County "NE, Merrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101210.epw site_zip_code=68826 site_time_zone_utc_offset=-6 -County "NE, Morrill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101230.epw site_zip_code=69336 site_time_zone_utc_offset=-7 -County "NE, Nance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101250.epw site_zip_code=68638 site_time_zone_utc_offset=-6 -County "NE, Nemaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101270.epw site_zip_code=68305 site_time_zone_utc_offset=-6 -County "NE, Nuckolls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101290.epw site_zip_code=68978 site_time_zone_utc_offset=-6 -County "NE, Otoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101310.epw site_zip_code=68410 site_time_zone_utc_offset=-6 -County "NE, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101330.epw site_zip_code=68420 site_time_zone_utc_offset=-6 -County "NE, Perkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101350.epw site_zip_code=69140 site_time_zone_utc_offset=-7 -County "NE, Phelps County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101370.epw site_zip_code=68949 site_time_zone_utc_offset=-6 -County "NE, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101390.epw site_zip_code=68767 site_time_zone_utc_offset=-6 -County "NE, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101410.epw site_zip_code=68601 site_time_zone_utc_offset=-6 -County "NE, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101430.epw site_zip_code=68666 site_time_zone_utc_offset=-6 -County "NE, Red Willow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101450.epw site_zip_code=69001 site_time_zone_utc_offset=-6 -County "NE, Richardson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101470.epw site_zip_code=68355 site_time_zone_utc_offset=-6 -County "NE, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101490.epw site_zip_code=68714 site_time_zone_utc_offset=-6 -County "NE, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101510.epw site_zip_code=68333 site_time_zone_utc_offset=-6 -County "NE, Sarpy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101530.epw site_zip_code=68046 site_time_zone_utc_offset=-6 -County "NE, Saunders County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101550.epw site_zip_code=68066 site_time_zone_utc_offset=-6 -County "NE, Scotts Bluff County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101570.epw site_zip_code=69361 site_time_zone_utc_offset=-7 -County "NE, Seward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101590.epw site_zip_code=68434 site_time_zone_utc_offset=-6 -County "NE, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101610.epw site_zip_code=69343 site_time_zone_utc_offset=-7 -County "NE, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101630.epw site_zip_code=68853 site_time_zone_utc_offset=-6 -County "NE, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101650.epw site_zip_code=69346 site_time_zone_utc_offset=-7 -County "NE, Stanton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101670.epw site_zip_code=68779 site_time_zone_utc_offset=-6 -County "NE, Thayer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101690.epw site_zip_code=68370 site_time_zone_utc_offset=-6 -County "NE, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101710.epw site_zip_code=69166 site_time_zone_utc_offset=-6 -County "NE, Thurston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101730.epw site_zip_code=68071 site_time_zone_utc_offset=-6 -County "NE, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101750.epw site_zip_code=68862 site_time_zone_utc_offset=-6 -County "NE, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101770.epw site_zip_code=68008 site_time_zone_utc_offset=-6 -County "NE, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101790.epw site_zip_code=68787 site_time_zone_utc_offset=-6 -County "NE, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101810.epw site_zip_code=68970 site_time_zone_utc_offset=-6 -County "NE, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101830.epw site_zip_code=68637 site_time_zone_utc_offset=-6 -County "NE, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101850.epw site_zip_code=68467 site_time_zone_utc_offset=-6 -County "NH, Belknap County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300010.epw site_zip_code=03246 site_time_zone_utc_offset=-5 -County "NH, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300030.epw site_zip_code=03894 site_time_zone_utc_offset=-5 -County "NH, Cheshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300050.epw site_zip_code=03431 site_time_zone_utc_offset=-5 -County "NH, Coos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300070.epw site_zip_code=03570 site_time_zone_utc_offset=-5 -County "NH, Grafton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300090.epw site_zip_code=03766 site_time_zone_utc_offset=-5 -County "NH, Hillsborough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300110.epw site_zip_code=03103 site_time_zone_utc_offset=-5 -County "NH, Merrimack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300130.epw site_zip_code=03301 site_time_zone_utc_offset=-5 -County "NH, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300150.epw site_zip_code=03038 site_time_zone_utc_offset=-5 -County "NH, Strafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300170.epw site_zip_code=03820 site_time_zone_utc_offset=-5 -County "NH, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300190.epw site_zip_code=03743 site_time_zone_utc_offset=-5 -County "NJ, Atlantic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400010.epw site_zip_code=08401 site_time_zone_utc_offset=-5 -County "NJ, Bergen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400030.epw site_zip_code=07410 site_time_zone_utc_offset=-5 -County "NJ, Burlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400050.epw site_zip_code=08054 site_time_zone_utc_offset=-5 -County "NJ, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400070.epw site_zip_code=08021 site_time_zone_utc_offset=-5 -County "NJ, Cape May County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400090.epw site_zip_code=08260 site_time_zone_utc_offset=-5 -County "NJ, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400110.epw site_zip_code=08332 site_time_zone_utc_offset=-5 -County "NJ, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400130.epw site_zip_code=07111 site_time_zone_utc_offset=-5 -County "NJ, Gloucester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400150.epw site_zip_code=08096 site_time_zone_utc_offset=-5 -County "NJ, Hudson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400170.epw site_zip_code=07302 site_time_zone_utc_offset=-5 -County "NJ, Hunterdon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400190.epw site_zip_code=08822 site_time_zone_utc_offset=-5 -County "NJ, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400210.epw site_zip_code=08618 site_time_zone_utc_offset=-5 -County "NJ, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400230.epw site_zip_code=08831 site_time_zone_utc_offset=-5 -County "NJ, Monmouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400250.epw site_zip_code=07728 site_time_zone_utc_offset=-5 -County "NJ, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400270.epw site_zip_code=07960 site_time_zone_utc_offset=-5 -County "NJ, Ocean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400290.epw site_zip_code=08701 site_time_zone_utc_offset=-5 -County "NJ, Passaic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400310.epw site_zip_code=07055 site_time_zone_utc_offset=-5 -County "NJ, Salem County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400330.epw site_zip_code=08069 site_time_zone_utc_offset=-5 -County "NJ, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400350.epw site_zip_code=08873 site_time_zone_utc_offset=-5 -County "NJ, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400370.epw site_zip_code=07860 site_time_zone_utc_offset=-5 -County "NJ, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400390.epw site_zip_code=07083 site_time_zone_utc_offset=-5 -County "NJ, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400410.epw site_zip_code=08865 site_time_zone_utc_offset=-5 -County "NM, Bernalillo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500010.epw site_zip_code=87111 site_time_zone_utc_offset=-7 -County "NM, Catron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500030.epw site_zip_code=87829 site_time_zone_utc_offset=-7 -County "NM, Chaves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500050.epw site_zip_code=88203 site_time_zone_utc_offset=-7 -County "NM, Cibola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500060.epw site_zip_code=87020 site_time_zone_utc_offset=-7 -County "NM, Colfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500070.epw site_zip_code=87740 site_time_zone_utc_offset=-7 -County "NM, Curry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500090.epw site_zip_code=88101 site_time_zone_utc_offset=-7 -County "NM, De Baca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500110.epw site_zip_code=88119 site_time_zone_utc_offset=-7 -County "NM, Dona Ana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500130.epw site_zip_code=88001 site_time_zone_utc_offset=-7 -County "NM, Eddy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500150.epw site_zip_code=88220 site_time_zone_utc_offset=-7 -County "NM, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500170.epw site_zip_code=88061 site_time_zone_utc_offset=-7 -County "NM, Guadalupe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500190.epw site_zip_code=88435 site_time_zone_utc_offset=-7 -County "NM, Harding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500210.epw site_zip_code=87743 site_time_zone_utc_offset=-7 -County "NM, Hidalgo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500230.epw site_zip_code=88045 site_time_zone_utc_offset=-7 -County "NM, Lea County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500250.epw site_zip_code=88240 site_time_zone_utc_offset=-7 -County "NM, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500270.epw site_zip_code=88355 site_time_zone_utc_offset=-7 -County "NM, Los Alamos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500280.epw site_zip_code=87544 site_time_zone_utc_offset=-7 -County "NM, Luna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500290.epw site_zip_code=88030 site_time_zone_utc_offset=-7 -County "NM, McKinley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500310.epw site_zip_code=87301 site_time_zone_utc_offset=-7 -County "NM, Mora County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500330.epw site_zip_code=87722 site_time_zone_utc_offset=-7 -County "NM, Otero County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500350.epw site_zip_code=88310 site_time_zone_utc_offset=-7 -County "NM, Quay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500370.epw site_zip_code=88401 site_time_zone_utc_offset=-7 -County "NM, Rio Arriba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500390.epw site_zip_code=87532 site_time_zone_utc_offset=-7 -County "NM, Roosevelt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500410.epw site_zip_code=88130 site_time_zone_utc_offset=-7 -County "NM, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500450.epw site_zip_code=87401 site_time_zone_utc_offset=-7 -County "NM, San Miguel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500470.epw site_zip_code=87701 site_time_zone_utc_offset=-7 -County "NM, Sandoval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500430.epw site_zip_code=87124 site_time_zone_utc_offset=-7 -County "NM, Santa Fe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500490.epw site_zip_code=87507 site_time_zone_utc_offset=-7 -County "NM, Sierra County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500510.epw site_zip_code=87901 site_time_zone_utc_offset=-7 -County "NM, Socorro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500530.epw site_zip_code=87801 site_time_zone_utc_offset=-7 -County "NM, Taos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500550.epw site_zip_code=87571 site_time_zone_utc_offset=-7 -County "NM, Torrance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500570.epw site_zip_code=87035 site_time_zone_utc_offset=-7 -County "NM, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500590.epw site_zip_code=88415 site_time_zone_utc_offset=-7 -County "NM, Valencia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500610.epw site_zip_code=87031 site_time_zone_utc_offset=-7 -County "NV, Carson City" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3205100.epw site_zip_code=89701 site_time_zone_utc_offset=-8 -County "NV, Churchill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200010.epw site_zip_code=89406 site_time_zone_utc_offset=-8 -County "NV, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200030.epw site_zip_code=89052 site_time_zone_utc_offset=-8 -County "NV, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200050.epw site_zip_code=89460 site_time_zone_utc_offset=-8 -County "NV, Elko County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200070.epw site_zip_code=89801 site_time_zone_utc_offset=-8 -County "NV, Esmeralda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200090.epw site_zip_code=89010 site_time_zone_utc_offset=-8 -County "NV, Eureka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200110.epw site_zip_code=89316 site_time_zone_utc_offset=-8 -County "NV, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200130.epw site_zip_code=89445 site_time_zone_utc_offset=-8 -County "NV, Lander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200150.epw site_zip_code=89820 site_time_zone_utc_offset=-8 -County "NV, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200170.epw site_zip_code=89017 site_time_zone_utc_offset=-8 -County "NV, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200190.epw site_zip_code=89408 site_time_zone_utc_offset=-8 -County "NV, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200210.epw site_zip_code=89415 site_time_zone_utc_offset=-8 -County "NV, Nye County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200230.epw site_zip_code=89048 site_time_zone_utc_offset=-8 -County "NV, Pershing County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200270.epw site_zip_code=89419 site_time_zone_utc_offset=-8 -County "NV, Storey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200290.epw site_zip_code=89521 site_time_zone_utc_offset=-8 -County "NV, Washoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200310.epw site_zip_code=89502 site_time_zone_utc_offset=-8 -County "NV, White Pine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200330.epw site_zip_code=89301 site_time_zone_utc_offset=-8 -County "NY, Albany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600010.epw site_zip_code=12203 site_time_zone_utc_offset=-5 -County "NY, Allegany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600030.epw site_zip_code=14895 site_time_zone_utc_offset=-5 -County "NY, Bronx County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600050.epw site_zip_code=10467 site_time_zone_utc_offset=-5 -County "NY, Broome County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600070.epw site_zip_code=13760 site_time_zone_utc_offset=-5 -County "NY, Cattaraugus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600090.epw site_zip_code=14760 site_time_zone_utc_offset=-5 -County "NY, Cayuga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600110.epw site_zip_code=13021 site_time_zone_utc_offset=-5 -County "NY, Chautauqua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600130.epw site_zip_code=14701 site_time_zone_utc_offset=-5 -County "NY, Chemung County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600150.epw site_zip_code=14845 site_time_zone_utc_offset=-5 -County "NY, Chenango County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600170.epw site_zip_code=13815 site_time_zone_utc_offset=-5 -County "NY, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600190.epw site_zip_code=12901 site_time_zone_utc_offset=-5 -County "NY, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600210.epw site_zip_code=12534 site_time_zone_utc_offset=-5 -County "NY, Cortland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600230.epw site_zip_code=13045 site_time_zone_utc_offset=-5 -County "NY, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600250.epw site_zip_code=13856 site_time_zone_utc_offset=-5 -County "NY, Dutchess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600270.epw site_zip_code=12601 site_time_zone_utc_offset=-5 -County "NY, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600290.epw site_zip_code=14221 site_time_zone_utc_offset=-5 -County "NY, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600310.epw site_zip_code=12946 site_time_zone_utc_offset=-5 -County "NY, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600330.epw site_zip_code=12953 site_time_zone_utc_offset=-5 -County "NY, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600350.epw site_zip_code=12078 site_time_zone_utc_offset=-5 -County "NY, Genesee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600370.epw site_zip_code=14020 site_time_zone_utc_offset=-5 -County "NY, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600390.epw site_zip_code=12414 site_time_zone_utc_offset=-5 -County "NY, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600410.epw site_zip_code=12842 site_time_zone_utc_offset=-5 -County "NY, Herkimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600430.epw site_zip_code=13357 site_time_zone_utc_offset=-5 -County "NY, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600450.epw site_zip_code=13601 site_time_zone_utc_offset=-5 -County "NY, Kings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600470.epw site_zip_code=11226 site_time_zone_utc_offset=-5 -County "NY, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600490.epw site_zip_code=13367 site_time_zone_utc_offset=-5 -County "NY, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600510.epw site_zip_code=14454 site_time_zone_utc_offset=-5 -County "NY, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600530.epw site_zip_code=13032 site_time_zone_utc_offset=-5 -County "NY, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600550.epw site_zip_code=14580 site_time_zone_utc_offset=-5 -County "NY, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600570.epw site_zip_code=12010 site_time_zone_utc_offset=-5 -County "NY, Nassau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600590.epw site_zip_code=11758 site_time_zone_utc_offset=-5 -County "NY, New York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600610.epw site_zip_code=10025 site_time_zone_utc_offset=-5 -County "NY, Niagara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600630.epw site_zip_code=14094 site_time_zone_utc_offset=-5 -County "NY, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600650.epw site_zip_code=13440 site_time_zone_utc_offset=-5 -County "NY, Onondaga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600670.epw site_zip_code=13027 site_time_zone_utc_offset=-5 -County "NY, Ontario County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600690.epw site_zip_code=14424 site_time_zone_utc_offset=-5 -County "NY, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600710.epw site_zip_code=12550 site_time_zone_utc_offset=-5 -County "NY, Orleans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600730.epw site_zip_code=14411 site_time_zone_utc_offset=-5 -County "NY, Oswego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600750.epw site_zip_code=13126 site_time_zone_utc_offset=-5 -County "NY, Otsego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600770.epw site_zip_code=13820 site_time_zone_utc_offset=-5 -County "NY, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600790.epw site_zip_code=10512 site_time_zone_utc_offset=-5 -County "NY, Queens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600810.epw site_zip_code=11375 site_time_zone_utc_offset=-5 -County "NY, Rensselaer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600830.epw site_zip_code=12180 site_time_zone_utc_offset=-5 -County "NY, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600850.epw site_zip_code=10314 site_time_zone_utc_offset=-5 -County "NY, Rockland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600870.epw site_zip_code=10977 site_time_zone_utc_offset=-5 -County "NY, Saratoga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600910.epw site_zip_code=12866 site_time_zone_utc_offset=-5 -County "NY, Schenectady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600930.epw site_zip_code=12306 site_time_zone_utc_offset=-5 -County "NY, Schoharie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600950.epw site_zip_code=12043 site_time_zone_utc_offset=-5 -County "NY, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600970.epw site_zip_code=14891 site_time_zone_utc_offset=-5 -County "NY, Seneca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600990.epw site_zip_code=13148 site_time_zone_utc_offset=-5 -County "NY, St. Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600890.epw site_zip_code=13676 site_time_zone_utc_offset=-5 -County "NY, Steuben County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601010.epw site_zip_code=14830 site_time_zone_utc_offset=-5 -County "NY, Suffolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601030.epw site_zip_code=11746 site_time_zone_utc_offset=-5 -County "NY, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601050.epw site_zip_code=12701 site_time_zone_utc_offset=-5 -County "NY, Tioga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601070.epw site_zip_code=13827 site_time_zone_utc_offset=-5 -County "NY, Tompkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601090.epw site_zip_code=14850 site_time_zone_utc_offset=-5 -County "NY, Ulster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601110.epw site_zip_code=12401 site_time_zone_utc_offset=-5 -County "NY, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601130.epw site_zip_code=12804 site_time_zone_utc_offset=-5 -County "NY, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601150.epw site_zip_code=12839 site_time_zone_utc_offset=-5 -County "NY, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601170.epw site_zip_code=14513 site_time_zone_utc_offset=-5 -County "NY, Westchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601190.epw site_zip_code=10701 site_time_zone_utc_offset=-5 -County "NY, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601210.epw site_zip_code=14569 site_time_zone_utc_offset=-5 -County "NY, Yates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601230.epw site_zip_code=14527 site_time_zone_utc_offset=-5 -County "OH, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900010.epw site_zip_code=45693 site_time_zone_utc_offset=-5 -County "OH, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900030.epw site_zip_code=45805 site_time_zone_utc_offset=-5 -County "OH, Ashland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900050.epw site_zip_code=44805 site_time_zone_utc_offset=-5 -County "OH, Ashtabula County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900070.epw site_zip_code=44004 site_time_zone_utc_offset=-5 -County "OH, Athens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900090.epw site_zip_code=45701 site_time_zone_utc_offset=-5 -County "OH, Auglaize County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900110.epw site_zip_code=45895 site_time_zone_utc_offset=-5 -County "OH, Belmont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900130.epw site_zip_code=43950 site_time_zone_utc_offset=-5 -County "OH, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900150.epw site_zip_code=45121 site_time_zone_utc_offset=-5 -County "OH, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900170.epw site_zip_code=45011 site_time_zone_utc_offset=-5 -County "OH, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900190.epw site_zip_code=44615 site_time_zone_utc_offset=-5 -County "OH, Champaign County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900210.epw site_zip_code=43078 site_time_zone_utc_offset=-5 -County "OH, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900230.epw site_zip_code=45503 site_time_zone_utc_offset=-5 -County "OH, Clermont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900250.epw site_zip_code=45103 site_time_zone_utc_offset=-5 -County "OH, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900270.epw site_zip_code=45177 site_time_zone_utc_offset=-5 -County "OH, Columbiana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900290.epw site_zip_code=43920 site_time_zone_utc_offset=-5 -County "OH, Coshocton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900310.epw site_zip_code=43812 site_time_zone_utc_offset=-5 -County "OH, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900330.epw site_zip_code=44820 site_time_zone_utc_offset=-5 -County "OH, Cuyahoga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900350.epw site_zip_code=44107 site_time_zone_utc_offset=-5 -County "OH, Darke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900370.epw site_zip_code=45331 site_time_zone_utc_offset=-5 -County "OH, Defiance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900390.epw site_zip_code=43512 site_time_zone_utc_offset=-5 -County "OH, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900410.epw site_zip_code=43015 site_time_zone_utc_offset=-5 -County "OH, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900430.epw site_zip_code=44870 site_time_zone_utc_offset=-5 -County "OH, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900450.epw site_zip_code=43130 site_time_zone_utc_offset=-5 -County "OH, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900470.epw site_zip_code=43160 site_time_zone_utc_offset=-5 -County "OH, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900490.epw site_zip_code=43081 site_time_zone_utc_offset=-5 -County "OH, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900510.epw site_zip_code=43567 site_time_zone_utc_offset=-5 -County "OH, Gallia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900530.epw site_zip_code=45631 site_time_zone_utc_offset=-5 -County "OH, Geauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900550.epw site_zip_code=44024 site_time_zone_utc_offset=-5 -County "OH, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900570.epw site_zip_code=45324 site_time_zone_utc_offset=-5 -County "OH, Guernsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900590.epw site_zip_code=43725 site_time_zone_utc_offset=-5 -County "OH, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900610.epw site_zip_code=45238 site_time_zone_utc_offset=-5 -County "OH, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900630.epw site_zip_code=45840 site_time_zone_utc_offset=-5 -County "OH, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900650.epw site_zip_code=43326 site_time_zone_utc_offset=-5 -County "OH, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900670.epw site_zip_code=43907 site_time_zone_utc_offset=-5 -County "OH, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900690.epw site_zip_code=43545 site_time_zone_utc_offset=-5 -County "OH, Highland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900710.epw site_zip_code=45133 site_time_zone_utc_offset=-5 -County "OH, Hocking County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900730.epw site_zip_code=43138 site_time_zone_utc_offset=-5 -County "OH, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900750.epw site_zip_code=44654 site_time_zone_utc_offset=-5 -County "OH, Huron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900770.epw site_zip_code=44857 site_time_zone_utc_offset=-5 -County "OH, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900790.epw site_zip_code=45640 site_time_zone_utc_offset=-5 -County "OH, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900810.epw site_zip_code=43952 site_time_zone_utc_offset=-5 -County "OH, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900830.epw site_zip_code=43050 site_time_zone_utc_offset=-5 -County "OH, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900850.epw site_zip_code=44060 site_time_zone_utc_offset=-5 -County "OH, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900870.epw site_zip_code=45638 site_time_zone_utc_offset=-5 -County "OH, Licking County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900890.epw site_zip_code=43055 site_time_zone_utc_offset=-5 -County "OH, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900910.epw site_zip_code=43311 site_time_zone_utc_offset=-5 -County "OH, Lorain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900930.epw site_zip_code=44035 site_time_zone_utc_offset=-5 -County "OH, Lucas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900950.epw site_zip_code=43615 site_time_zone_utc_offset=-5 -County "OH, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900970.epw site_zip_code=43140 site_time_zone_utc_offset=-5 -County "OH, Mahoning County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900990.epw site_zip_code=44512 site_time_zone_utc_offset=-5 -County "OH, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901010.epw site_zip_code=43302 site_time_zone_utc_offset=-5 -County "OH, Medina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901030.epw site_zip_code=44256 site_time_zone_utc_offset=-5 -County "OH, Meigs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901050.epw site_zip_code=45769 site_time_zone_utc_offset=-5 -County "OH, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901070.epw site_zip_code=45822 site_time_zone_utc_offset=-5 -County "OH, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901090.epw site_zip_code=45373 site_time_zone_utc_offset=-5 -County "OH, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901110.epw site_zip_code=43793 site_time_zone_utc_offset=-5 -County "OH, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901130.epw site_zip_code=45424 site_time_zone_utc_offset=-5 -County "OH, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901150.epw site_zip_code=43756 site_time_zone_utc_offset=-5 -County "OH, Morrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901170.epw site_zip_code=43338 site_time_zone_utc_offset=-5 -County "OH, Muskingum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901190.epw site_zip_code=43701 site_time_zone_utc_offset=-5 -County "OH, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901210.epw site_zip_code=43724 site_time_zone_utc_offset=-5 -County "OH, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901230.epw site_zip_code=43452 site_time_zone_utc_offset=-5 -County "OH, Paulding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901250.epw site_zip_code=45879 site_time_zone_utc_offset=-5 -County "OH, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901270.epw site_zip_code=43764 site_time_zone_utc_offset=-5 -County "OH, Pickaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901290.epw site_zip_code=43113 site_time_zone_utc_offset=-5 -County "OH, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901310.epw site_zip_code=45690 site_time_zone_utc_offset=-5 -County "OH, Portage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901330.epw site_zip_code=44240 site_time_zone_utc_offset=-5 -County "OH, Preble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901350.epw site_zip_code=45320 site_time_zone_utc_offset=-5 -County "OH, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901370.epw site_zip_code=45875 site_time_zone_utc_offset=-5 -County "OH, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901390.epw site_zip_code=44903 site_time_zone_utc_offset=-5 -County "OH, Ross County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901410.epw site_zip_code=45601 site_time_zone_utc_offset=-5 -County "OH, Sandusky County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901430.epw site_zip_code=43420 site_time_zone_utc_offset=-5 -County "OH, Scioto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901450.epw site_zip_code=45662 site_time_zone_utc_offset=-5 -County "OH, Seneca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901470.epw site_zip_code=44883 site_time_zone_utc_offset=-5 -County "OH, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901490.epw site_zip_code=45365 site_time_zone_utc_offset=-5 -County "OH, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901510.epw site_zip_code=44646 site_time_zone_utc_offset=-5 -County "OH, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901530.epw site_zip_code=44224 site_time_zone_utc_offset=-5 -County "OH, Trumbull County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901550.epw site_zip_code=44483 site_time_zone_utc_offset=-5 -County "OH, Tuscarawas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901570.epw site_zip_code=44663 site_time_zone_utc_offset=-5 -County "OH, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901590.epw site_zip_code=43040 site_time_zone_utc_offset=-5 -County "OH, Van Wert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901610.epw site_zip_code=45891 site_time_zone_utc_offset=-5 -County "OH, Vinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901630.epw site_zip_code=45651 site_time_zone_utc_offset=-5 -County "OH, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901650.epw site_zip_code=45040 site_time_zone_utc_offset=-5 -County "OH, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901670.epw site_zip_code=45750 site_time_zone_utc_offset=-5 -County "OH, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901690.epw site_zip_code=44691 site_time_zone_utc_offset=-5 -County "OH, Williams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901710.epw site_zip_code=43506 site_time_zone_utc_offset=-5 -County "OH, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901730.epw site_zip_code=43551 site_time_zone_utc_offset=-5 -County "OH, Wyandot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901750.epw site_zip_code=43351 site_time_zone_utc_offset=-5 -County "OK, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000010.epw site_zip_code=74960 site_time_zone_utc_offset=-6 -County "OK, Alfalfa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000030.epw site_zip_code=73728 site_time_zone_utc_offset=-6 -County "OK, Atoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000050.epw site_zip_code=74525 site_time_zone_utc_offset=-6 -County "OK, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000070.epw site_zip_code=73932 site_time_zone_utc_offset=-6 -County "OK, Beckham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000090.epw site_zip_code=73644 site_time_zone_utc_offset=-6 -County "OK, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000110.epw site_zip_code=73772 site_time_zone_utc_offset=-6 -County "OK, Bryan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000130.epw site_zip_code=74701 site_time_zone_utc_offset=-6 -County "OK, Caddo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000150.epw site_zip_code=73005 site_time_zone_utc_offset=-6 -County "OK, Canadian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000170.epw site_zip_code=73099 site_time_zone_utc_offset=-6 -County "OK, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000190.epw site_zip_code=73401 site_time_zone_utc_offset=-6 -County "OK, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000210.epw site_zip_code=74464 site_time_zone_utc_offset=-6 -County "OK, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000230.epw site_zip_code=74743 site_time_zone_utc_offset=-6 -County "OK, Cimarron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000250.epw site_zip_code=73933 site_time_zone_utc_offset=-6 -County "OK, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000270.epw site_zip_code=73160 site_time_zone_utc_offset=-6 -County "OK, Coal County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000290.epw site_zip_code=74538 site_time_zone_utc_offset=-6 -County "OK, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000310.epw site_zip_code=73505 site_time_zone_utc_offset=-6 -County "OK, Cotton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000330.epw site_zip_code=73572 site_time_zone_utc_offset=-6 -County "OK, Craig County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000350.epw site_zip_code=74301 site_time_zone_utc_offset=-6 -County "OK, Creek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000370.epw site_zip_code=74066 site_time_zone_utc_offset=-6 -County "OK, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000390.epw site_zip_code=73096 site_time_zone_utc_offset=-6 -County "OK, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000410.epw site_zip_code=74344 site_time_zone_utc_offset=-6 -County "OK, Dewey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000430.epw site_zip_code=73859 site_time_zone_utc_offset=-6 -County "OK, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000450.epw site_zip_code=73858 site_time_zone_utc_offset=-6 -County "OK, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000470.epw site_zip_code=73703 site_time_zone_utc_offset=-6 -County "OK, Garvin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000490.epw site_zip_code=73075 site_time_zone_utc_offset=-6 -County "OK, Grady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000510.epw site_zip_code=73018 site_time_zone_utc_offset=-6 -County "OK, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000530.epw site_zip_code=73759 site_time_zone_utc_offset=-6 -County "OK, Greer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000550.epw site_zip_code=73554 site_time_zone_utc_offset=-6 -County "OK, Harmon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000570.epw site_zip_code=73550 site_time_zone_utc_offset=-6 -County "OK, Harper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000590.epw site_zip_code=73848 site_time_zone_utc_offset=-6 -County "OK, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000610.epw site_zip_code=74462 site_time_zone_utc_offset=-6 -County "OK, Hughes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000630.epw site_zip_code=74848 site_time_zone_utc_offset=-6 -County "OK, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000650.epw site_zip_code=73521 site_time_zone_utc_offset=-6 -County "OK, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000670.epw site_zip_code=73573 site_time_zone_utc_offset=-6 -County "OK, Johnston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000690.epw site_zip_code=73460 site_time_zone_utc_offset=-6 -County "OK, Kay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000710.epw site_zip_code=74601 site_time_zone_utc_offset=-6 -County "OK, Kingfisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000730.epw site_zip_code=73750 site_time_zone_utc_offset=-6 -County "OK, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000750.epw site_zip_code=73651 site_time_zone_utc_offset=-6 -County "OK, Latimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000770.epw site_zip_code=74578 site_time_zone_utc_offset=-6 -County "OK, Le Flore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000790.epw site_zip_code=74953 site_time_zone_utc_offset=-6 -County "OK, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000810.epw site_zip_code=74834 site_time_zone_utc_offset=-6 -County "OK, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000830.epw site_zip_code=73044 site_time_zone_utc_offset=-6 -County "OK, Love County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000850.epw site_zip_code=73448 site_time_zone_utc_offset=-6 -County "OK, Major County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000930.epw site_zip_code=73737 site_time_zone_utc_offset=-6 -County "OK, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000950.epw site_zip_code=73439 site_time_zone_utc_offset=-6 -County "OK, Mayes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000970.epw site_zip_code=74361 site_time_zone_utc_offset=-6 -County "OK, McClain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000870.epw site_zip_code=73080 site_time_zone_utc_offset=-6 -County "OK, McCurtain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000890.epw site_zip_code=74728 site_time_zone_utc_offset=-6 -County "OK, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000910.epw site_zip_code=74432 site_time_zone_utc_offset=-6 -County "OK, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000990.epw site_zip_code=73086 site_time_zone_utc_offset=-6 -County "OK, Muskogee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001010.epw site_zip_code=74403 site_time_zone_utc_offset=-6 -County "OK, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001030.epw site_zip_code=73077 site_time_zone_utc_offset=-6 -County "OK, Nowata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001050.epw site_zip_code=74048 site_time_zone_utc_offset=-6 -County "OK, Okfuskee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001070.epw site_zip_code=74859 site_time_zone_utc_offset=-6 -County "OK, Oklahoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001090.epw site_zip_code=73013 site_time_zone_utc_offset=-6 -County "OK, Okmulgee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001110.epw site_zip_code=74447 site_time_zone_utc_offset=-6 -County "OK, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001130.epw site_zip_code=74070 site_time_zone_utc_offset=-6 -County "OK, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001150.epw site_zip_code=74354 site_time_zone_utc_offset=-6 -County "OK, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001170.epw site_zip_code=74020 site_time_zone_utc_offset=-6 -County "OK, Payne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001190.epw site_zip_code=74074 site_time_zone_utc_offset=-6 -County "OK, Pittsburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001210.epw site_zip_code=74501 site_time_zone_utc_offset=-6 -County "OK, Pontotoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001230.epw site_zip_code=74820 site_time_zone_utc_offset=-6 -County "OK, Pottawatomie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001250.epw site_zip_code=74801 site_time_zone_utc_offset=-6 -County "OK, Pushmataha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001270.epw site_zip_code=74523 site_time_zone_utc_offset=-6 -County "OK, Roger Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001290.epw site_zip_code=73628 site_time_zone_utc_offset=-6 -County "OK, Rogers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001310.epw site_zip_code=74017 site_time_zone_utc_offset=-6 -County "OK, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001330.epw site_zip_code=74868 site_time_zone_utc_offset=-6 -County "OK, Sequoyah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001350.epw site_zip_code=74955 site_time_zone_utc_offset=-6 -County "OK, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001370.epw site_zip_code=73533 site_time_zone_utc_offset=-6 -County "OK, Texas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001390.epw site_zip_code=73942 site_time_zone_utc_offset=-6 -County "OK, Tillman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001410.epw site_zip_code=73542 site_time_zone_utc_offset=-6 -County "OK, Tulsa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001430.epw site_zip_code=74012 site_time_zone_utc_offset=-6 -County "OK, Wagoner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001450.epw site_zip_code=74014 site_time_zone_utc_offset=-6 -County "OK, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001470.epw site_zip_code=74006 site_time_zone_utc_offset=-6 -County "OK, Washita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001490.epw site_zip_code=73632 site_time_zone_utc_offset=-6 -County "OK, Woods County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001510.epw site_zip_code=73717 site_time_zone_utc_offset=-6 -County "OK, Woodward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001530.epw site_zip_code=73801 site_time_zone_utc_offset=-6 -County "OR, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100010.epw site_zip_code=97814 site_time_zone_utc_offset=-8 -County "OR, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100030.epw site_zip_code=97330 site_time_zone_utc_offset=-8 -County "OR, Clackamas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100050.epw site_zip_code=97045 site_time_zone_utc_offset=-8 -County "OR, Clatsop County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100070.epw site_zip_code=97103 site_time_zone_utc_offset=-8 -County "OR, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100090.epw site_zip_code=97051 site_time_zone_utc_offset=-8 -County "OR, Coos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100110.epw site_zip_code=97420 site_time_zone_utc_offset=-8 -County "OR, Crook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100130.epw site_zip_code=97754 site_time_zone_utc_offset=-8 -County "OR, Curry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100150.epw site_zip_code=97415 site_time_zone_utc_offset=-8 -County "OR, Deschutes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100170.epw site_zip_code=97702 site_time_zone_utc_offset=-8 -County "OR, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100190.epw site_zip_code=97471 site_time_zone_utc_offset=-8 -County "OR, Gilliam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100210.epw site_zip_code=97823 site_time_zone_utc_offset=-8 -County "OR, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100230.epw site_zip_code=97845 site_time_zone_utc_offset=-8 -County "OR, Harney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100250.epw site_zip_code=97720 site_time_zone_utc_offset=-8 -County "OR, Hood River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100270.epw site_zip_code=97031 site_time_zone_utc_offset=-8 -County "OR, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100290.epw site_zip_code=97504 site_time_zone_utc_offset=-8 -County "OR, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100310.epw site_zip_code=97741 site_time_zone_utc_offset=-8 -County "OR, Josephine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100330.epw site_zip_code=97526 site_time_zone_utc_offset=-8 -County "OR, Klamath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100350.epw site_zip_code=97603 site_time_zone_utc_offset=-8 -County "OR, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100370.epw site_zip_code=97630 site_time_zone_utc_offset=-8 -County "OR, Lane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100390.epw site_zip_code=97402 site_time_zone_utc_offset=-8 -County "OR, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100410.epw site_zip_code=97367 site_time_zone_utc_offset=-8 -County "OR, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100430.epw site_zip_code=97322 site_time_zone_utc_offset=-8 -County "OR, Malheur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100450.epw site_zip_code=97914 site_time_zone_utc_offset=-7 -County "OR, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100470.epw site_zip_code=97301 site_time_zone_utc_offset=-8 -County "OR, Morrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100490.epw site_zip_code=97818 site_time_zone_utc_offset=-8 -County "OR, Multnomah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100510.epw site_zip_code=97206 site_time_zone_utc_offset=-8 -County "OR, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100530.epw site_zip_code=97304 site_time_zone_utc_offset=-8 -County "OR, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100550.epw site_zip_code=97065 site_time_zone_utc_offset=-8 -County "OR, Tillamook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100570.epw site_zip_code=97141 site_time_zone_utc_offset=-8 -County "OR, Umatilla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100590.epw site_zip_code=97838 site_time_zone_utc_offset=-8 -County "OR, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100610.epw site_zip_code=97850 site_time_zone_utc_offset=-8 -County "OR, Wallowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100630.epw site_zip_code=97828 site_time_zone_utc_offset=-8 -County "OR, Wasco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100650.epw site_zip_code=97058 site_time_zone_utc_offset=-8 -County "OR, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100670.epw site_zip_code=97229 site_time_zone_utc_offset=-8 -County "OR, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100690.epw site_zip_code=97830 site_time_zone_utc_offset=-8 -County "OR, Yamhill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100710.epw site_zip_code=97128 site_time_zone_utc_offset=-8 -County "PA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200010.epw site_zip_code=17325 site_time_zone_utc_offset=-5 -County "PA, Allegheny County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200030.epw site_zip_code=15237 site_time_zone_utc_offset=-5 -County "PA, Armstrong County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200050.epw site_zip_code=16201 site_time_zone_utc_offset=-5 -County "PA, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200070.epw site_zip_code=15001 site_time_zone_utc_offset=-5 -County "PA, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200090.epw site_zip_code=15522 site_time_zone_utc_offset=-5 -County "PA, Berks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200110.epw site_zip_code=19606 site_time_zone_utc_offset=-5 -County "PA, Blair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200130.epw site_zip_code=16601 site_time_zone_utc_offset=-5 -County "PA, Bradford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200150.epw site_zip_code=18840 site_time_zone_utc_offset=-5 -County "PA, Bucks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200170.epw site_zip_code=19020 site_time_zone_utc_offset=-5 -County "PA, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200190.epw site_zip_code=16001 site_time_zone_utc_offset=-5 -County "PA, Cambria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200210.epw site_zip_code=15905 site_time_zone_utc_offset=-5 -County "PA, Cameron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200230.epw site_zip_code=15834 site_time_zone_utc_offset=-5 -County "PA, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200250.epw site_zip_code=18235 site_time_zone_utc_offset=-5 -County "PA, Centre County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200270.epw site_zip_code=16801 site_time_zone_utc_offset=-5 -County "PA, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200290.epw site_zip_code=19380 site_time_zone_utc_offset=-5 -County "PA, Clarion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200310.epw site_zip_code=16214 site_time_zone_utc_offset=-5 -County "PA, Clearfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200330.epw site_zip_code=15801 site_time_zone_utc_offset=-5 -County "PA, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200350.epw site_zip_code=17745 site_time_zone_utc_offset=-5 -County "PA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200370.epw site_zip_code=17815 site_time_zone_utc_offset=-5 -County "PA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200390.epw site_zip_code=16335 site_time_zone_utc_offset=-5 -County "PA, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200410.epw site_zip_code=17055 site_time_zone_utc_offset=-5 -County "PA, Dauphin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200430.epw site_zip_code=17112 site_time_zone_utc_offset=-5 -County "PA, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200450.epw site_zip_code=19063 site_time_zone_utc_offset=-5 -County "PA, Elk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200470.epw site_zip_code=15857 site_time_zone_utc_offset=-5 -County "PA, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200490.epw site_zip_code=16509 site_time_zone_utc_offset=-5 -County "PA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200510.epw site_zip_code=15401 site_time_zone_utc_offset=-5 -County "PA, Forest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200530.epw site_zip_code=16353 site_time_zone_utc_offset=-5 -County "PA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200550.epw site_zip_code=17268 site_time_zone_utc_offset=-5 -County "PA, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200570.epw site_zip_code=17233 site_time_zone_utc_offset=-5 -County "PA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200590.epw site_zip_code=15370 site_time_zone_utc_offset=-5 -County "PA, Huntingdon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200610.epw site_zip_code=16652 site_time_zone_utc_offset=-5 -County "PA, Indiana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200630.epw site_zip_code=15701 site_time_zone_utc_offset=-5 -County "PA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200650.epw site_zip_code=15767 site_time_zone_utc_offset=-5 -County "PA, Juniata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200670.epw site_zip_code=17059 site_time_zone_utc_offset=-5 -County "PA, Lackawanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200690.epw site_zip_code=18505 site_time_zone_utc_offset=-5 -County "PA, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200710.epw site_zip_code=17603 site_time_zone_utc_offset=-5 -County "PA, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200730.epw site_zip_code=16101 site_time_zone_utc_offset=-5 -County "PA, Lebanon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200750.epw site_zip_code=17042 site_time_zone_utc_offset=-5 -County "PA, Lehigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200770.epw site_zip_code=18103 site_time_zone_utc_offset=-5 -County "PA, Luzerne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200790.epw site_zip_code=18702 site_time_zone_utc_offset=-5 -County "PA, Lycoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200810.epw site_zip_code=17701 site_time_zone_utc_offset=-5 -County "PA, McKean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200830.epw site_zip_code=16701 site_time_zone_utc_offset=-5 -County "PA, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200850.epw site_zip_code=16148 site_time_zone_utc_offset=-5 -County "PA, Mifflin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200870.epw site_zip_code=17044 site_time_zone_utc_offset=-5 -County "PA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200890.epw site_zip_code=18301 site_time_zone_utc_offset=-5 -County "PA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200910.epw site_zip_code=19446 site_time_zone_utc_offset=-5 -County "PA, Montour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200930.epw site_zip_code=17821 site_time_zone_utc_offset=-5 -County "PA, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200950.epw site_zip_code=18042 site_time_zone_utc_offset=-5 -County "PA, Northumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200970.epw site_zip_code=17801 site_time_zone_utc_offset=-5 -County "PA, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200990.epw site_zip_code=17020 site_time_zone_utc_offset=-5 -County "PA, Philadelphia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201010.epw site_zip_code=19143 site_time_zone_utc_offset=-5 -County "PA, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201030.epw site_zip_code=18337 site_time_zone_utc_offset=-5 -County "PA, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201050.epw site_zip_code=16915 site_time_zone_utc_offset=-5 -County "PA, Schuylkill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201070.epw site_zip_code=17901 site_time_zone_utc_offset=-5 -County "PA, Snyder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201090.epw site_zip_code=17870 site_time_zone_utc_offset=-5 -County "PA, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201110.epw site_zip_code=15501 site_time_zone_utc_offset=-5 -County "PA, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201130.epw site_zip_code=18614 site_time_zone_utc_offset=-5 -County "PA, Susquehanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201150.epw site_zip_code=18801 site_time_zone_utc_offset=-5 -County "PA, Tioga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201170.epw site_zip_code=16901 site_time_zone_utc_offset=-5 -County "PA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201190.epw site_zip_code=17837 site_time_zone_utc_offset=-5 -County "PA, Venango County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201210.epw site_zip_code=16301 site_time_zone_utc_offset=-5 -County "PA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201230.epw site_zip_code=16365 site_time_zone_utc_offset=-5 -County "PA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201250.epw site_zip_code=15301 site_time_zone_utc_offset=-5 -County "PA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201270.epw site_zip_code=18431 site_time_zone_utc_offset=-5 -County "PA, Westmoreland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201290.epw site_zip_code=15601 site_time_zone_utc_offset=-5 -County "PA, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201310.epw site_zip_code=18657 site_time_zone_utc_offset=-5 -County "PA, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201330.epw site_zip_code=17331 site_time_zone_utc_offset=-5 -County "RI, Bristol County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400010.epw site_zip_code=02809 site_time_zone_utc_offset=-5 -County "RI, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400030.epw site_zip_code=02893 site_time_zone_utc_offset=-5 -County "RI, Newport County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400050.epw site_zip_code=02840 site_time_zone_utc_offset=-5 -County "RI, Providence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400070.epw site_zip_code=02860 site_time_zone_utc_offset=-5 -County "RI, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400090.epw site_zip_code=02891 site_time_zone_utc_offset=-5 -County "SC, Abbeville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500010.epw site_zip_code=29620 site_time_zone_utc_offset=-5 -County "SC, Aiken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500030.epw site_zip_code=29803 site_time_zone_utc_offset=-5 -County "SC, Allendale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500050.epw site_zip_code=29810 site_time_zone_utc_offset=-5 -County "SC, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500070.epw site_zip_code=29621 site_time_zone_utc_offset=-5 -County "SC, Bamberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500090.epw site_zip_code=29003 site_time_zone_utc_offset=-5 -County "SC, Barnwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500110.epw site_zip_code=29812 site_time_zone_utc_offset=-5 -County "SC, Beaufort County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500130.epw site_zip_code=29910 site_time_zone_utc_offset=-5 -County "SC, Berkeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500150.epw site_zip_code=29445 site_time_zone_utc_offset=-5 -County "SC, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500170.epw site_zip_code=29135 site_time_zone_utc_offset=-5 -County "SC, Charleston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500190.epw site_zip_code=29464 site_time_zone_utc_offset=-5 -County "SC, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500210.epw site_zip_code=29340 site_time_zone_utc_offset=-5 -County "SC, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500230.epw site_zip_code=29706 site_time_zone_utc_offset=-5 -County "SC, Chesterfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500250.epw site_zip_code=29520 site_time_zone_utc_offset=-5 -County "SC, Clarendon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500270.epw site_zip_code=29102 site_time_zone_utc_offset=-5 -County "SC, Colleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500290.epw site_zip_code=29488 site_time_zone_utc_offset=-5 -County "SC, Darlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500310.epw site_zip_code=29550 site_time_zone_utc_offset=-5 -County "SC, Dillon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500330.epw site_zip_code=29536 site_time_zone_utc_offset=-5 -County "SC, Dorchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500350.epw site_zip_code=29485 site_time_zone_utc_offset=-5 -County "SC, Edgefield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500370.epw site_zip_code=29860 site_time_zone_utc_offset=-5 -County "SC, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500390.epw site_zip_code=29180 site_time_zone_utc_offset=-5 -County "SC, Florence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500410.epw site_zip_code=29501 site_time_zone_utc_offset=-5 -County "SC, Georgetown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500430.epw site_zip_code=29440 site_time_zone_utc_offset=-5 -County "SC, Greenville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500450.epw site_zip_code=29681 site_time_zone_utc_offset=-5 -County "SC, Greenwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500470.epw site_zip_code=29649 site_time_zone_utc_offset=-5 -County "SC, Hampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500490.epw site_zip_code=29918 site_time_zone_utc_offset=-5 -County "SC, Horry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500510.epw site_zip_code=29579 site_time_zone_utc_offset=-5 -County "SC, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500530.epw site_zip_code=29936 site_time_zone_utc_offset=-5 -County "SC, Kershaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500550.epw site_zip_code=29020 site_time_zone_utc_offset=-5 -County "SC, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500570.epw site_zip_code=29720 site_time_zone_utc_offset=-5 -County "SC, Laurens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500590.epw site_zip_code=29360 site_time_zone_utc_offset=-5 -County "SC, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500610.epw site_zip_code=29010 site_time_zone_utc_offset=-5 -County "SC, Lexington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500630.epw site_zip_code=29072 site_time_zone_utc_offset=-5 -County "SC, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500670.epw site_zip_code=29571 site_time_zone_utc_offset=-5 -County "SC, Marlboro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500690.epw site_zip_code=29512 site_time_zone_utc_offset=-5 -County "SC, McCormick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500650.epw site_zip_code=29835 site_time_zone_utc_offset=-5 -County "SC, Newberry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500710.epw site_zip_code=29108 site_time_zone_utc_offset=-5 -County "SC, Oconee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500730.epw site_zip_code=29678 site_time_zone_utc_offset=-5 -County "SC, Orangeburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500750.epw site_zip_code=29115 site_time_zone_utc_offset=-5 -County "SC, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500770.epw site_zip_code=29640 site_time_zone_utc_offset=-5 -County "SC, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500790.epw site_zip_code=29223 site_time_zone_utc_offset=-5 -County "SC, Saluda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500810.epw site_zip_code=29138 site_time_zone_utc_offset=-5 -County "SC, Spartanburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500830.epw site_zip_code=29301 site_time_zone_utc_offset=-5 -County "SC, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500850.epw site_zip_code=29150 site_time_zone_utc_offset=-5 -County "SC, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500870.epw site_zip_code=29379 site_time_zone_utc_offset=-5 -County "SC, Williamsburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500890.epw site_zip_code=29556 site_time_zone_utc_offset=-5 -County "SC, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500910.epw site_zip_code=29732 site_time_zone_utc_offset=-5 -County "SD, Aurora County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600030.epw site_zip_code=57368 site_time_zone_utc_offset=-6 -County "SD, Beadle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600050.epw site_zip_code=57350 site_time_zone_utc_offset=-6 -County "SD, Bennett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600070.epw site_zip_code=57551 site_time_zone_utc_offset=-7 -County "SD, Bon Homme County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600090.epw site_zip_code=57066 site_time_zone_utc_offset=-6 -County "SD, Brookings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600110.epw site_zip_code=57006 site_time_zone_utc_offset=-6 -County "SD, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600130.epw site_zip_code=57401 site_time_zone_utc_offset=-6 -County "SD, Brule County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600150.epw site_zip_code=57325 site_time_zone_utc_offset=-6 -County "SD, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600170.epw site_zip_code=57341 site_time_zone_utc_offset=-6 -County "SD, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600190.epw site_zip_code=57717 site_time_zone_utc_offset=-7 -County "SD, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600210.epw site_zip_code=57632 site_time_zone_utc_offset=-6 -County "SD, Charles Mix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600230.epw site_zip_code=57380 site_time_zone_utc_offset=-6 -County "SD, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600250.epw site_zip_code=57225 site_time_zone_utc_offset=-6 -County "SD, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600270.epw site_zip_code=57069 site_time_zone_utc_offset=-6 -County "SD, Codington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600290.epw site_zip_code=57201 site_time_zone_utc_offset=-6 -County "SD, Corson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600310.epw site_zip_code=57642 site_time_zone_utc_offset=-7 -County "SD, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600330.epw site_zip_code=57730 site_time_zone_utc_offset=-7 -County "SD, Davison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600350.epw site_zip_code=57301 site_time_zone_utc_offset=-6 -County "SD, Day County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600370.epw site_zip_code=57274 site_time_zone_utc_offset=-6 -County "SD, Deuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600390.epw site_zip_code=57226 site_time_zone_utc_offset=-6 -County "SD, Dewey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600410.epw site_zip_code=57625 site_time_zone_utc_offset=-7 -County "SD, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600430.epw site_zip_code=57328 site_time_zone_utc_offset=-6 -County "SD, Edmunds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600450.epw site_zip_code=57451 site_time_zone_utc_offset=-6 -County "SD, Fall River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600470.epw site_zip_code=57747 site_time_zone_utc_offset=-7 -County "SD, Faulk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600490.epw site_zip_code=57438 site_time_zone_utc_offset=-6 -County "SD, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600510.epw site_zip_code=57252 site_time_zone_utc_offset=-6 -County "SD, Gregory County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600530.epw site_zip_code=57533 site_time_zone_utc_offset=-6 -County "SD, Haakon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600550.epw site_zip_code=57552 site_time_zone_utc_offset=-7 -County "SD, Hamlin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600570.epw site_zip_code=57223 site_time_zone_utc_offset=-6 -County "SD, Hand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600590.epw site_zip_code=57362 site_time_zone_utc_offset=-6 -County "SD, Hanson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600610.epw site_zip_code=57311 site_time_zone_utc_offset=-6 -County "SD, Harding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600630.epw site_zip_code=57720 site_time_zone_utc_offset=-7 -County "SD, Hughes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600650.epw site_zip_code=57501 site_time_zone_utc_offset=-6 -County "SD, Hutchinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600670.epw site_zip_code=57366 site_time_zone_utc_offset=-6 -County "SD, Hyde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600690.epw site_zip_code=57345 site_time_zone_utc_offset=-6 -County "SD, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600710.epw site_zip_code=57543 site_time_zone_utc_offset=-7 -County "SD, Jerauld County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600730.epw site_zip_code=57382 site_time_zone_utc_offset=-6 -County "SD, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600750.epw site_zip_code=57559 site_time_zone_utc_offset=-6 -County "SD, Kingsbury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600770.epw site_zip_code=57231 site_time_zone_utc_offset=-6 -County "SD, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600790.epw site_zip_code=57042 site_time_zone_utc_offset=-6 -County "SD, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600810.epw site_zip_code=57783 site_time_zone_utc_offset=-7 -County "SD, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600830.epw site_zip_code=57108 site_time_zone_utc_offset=-6 -County "SD, Lyman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600850.epw site_zip_code=57569 site_time_zone_utc_offset=-6 -County "SD, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600910.epw site_zip_code=57430 site_time_zone_utc_offset=-6 -County "SD, McCook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600870.epw site_zip_code=57058 site_time_zone_utc_offset=-6 -County "SD, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600890.epw site_zip_code=57437 site_time_zone_utc_offset=-6 -County "SD, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600930.epw site_zip_code=57785 site_time_zone_utc_offset=-7 -County "SD, Mellette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600950.epw site_zip_code=57579 site_time_zone_utc_offset=-6 -County "SD, Miner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600970.epw site_zip_code=57349 site_time_zone_utc_offset=-6 -County "SD, Minnehaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600990.epw site_zip_code=57106 site_time_zone_utc_offset=-6 -County "SD, Moody County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601010.epw site_zip_code=57028 site_time_zone_utc_offset=-6 -County "SD, Oglala Lakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601020.epw site_zip_code=57770 site_time_zone_utc_offset=-7 -County "SD, Pennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601030.epw site_zip_code=57701 site_time_zone_utc_offset=-7 -County "SD, Perkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601050.epw site_zip_code=57638 site_time_zone_utc_offset=-7 -County "SD, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601070.epw site_zip_code=57442 site_time_zone_utc_offset=-6 -County "SD, Roberts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601090.epw site_zip_code=57262 site_time_zone_utc_offset=-6 -County "SD, Sanborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601110.epw site_zip_code=57385 site_time_zone_utc_offset=-6 -County "SD, Spink County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601150.epw site_zip_code=57469 site_time_zone_utc_offset=-6 -County "SD, Stanley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601170.epw site_zip_code=57532 site_time_zone_utc_offset=-7 -County "SD, Sully County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601190.epw site_zip_code=57564 site_time_zone_utc_offset=-6 -County "SD, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601210.epw site_zip_code=57555 site_time_zone_utc_offset=-6 -County "SD, Tripp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601230.epw site_zip_code=57580 site_time_zone_utc_offset=-6 -County "SD, Turner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601250.epw site_zip_code=57053 site_time_zone_utc_offset=-6 -County "SD, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601270.epw site_zip_code=57049 site_time_zone_utc_offset=-6 -County "SD, Walworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601290.epw site_zip_code=57601 site_time_zone_utc_offset=-6 -County "SD, Yankton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601350.epw site_zip_code=57078 site_time_zone_utc_offset=-6 -County "SD, Ziebach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601370.epw site_zip_code=57623 site_time_zone_utc_offset=-7 -County "TN, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700010.epw site_zip_code=37830 site_time_zone_utc_offset=-5 -County "TN, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700030.epw site_zip_code=37160 site_time_zone_utc_offset=-6 -County "TN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700050.epw site_zip_code=38320 site_time_zone_utc_offset=-6 -County "TN, Bledsoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700070.epw site_zip_code=37367 site_time_zone_utc_offset=-6 -County "TN, Blount County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700090.epw site_zip_code=37803 site_time_zone_utc_offset=-5 -County "TN, Bradley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700110.epw site_zip_code=37312 site_time_zone_utc_offset=-5 -County "TN, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700130.epw site_zip_code=37766 site_time_zone_utc_offset=-5 -County "TN, Cannon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700150.epw site_zip_code=37190 site_time_zone_utc_offset=-6 -County "TN, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700170.epw site_zip_code=38344 site_time_zone_utc_offset=-6 -County "TN, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700190.epw site_zip_code=37643 site_time_zone_utc_offset=-5 -County "TN, Cheatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700210.epw site_zip_code=37015 site_time_zone_utc_offset=-6 -County "TN, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700230.epw site_zip_code=38340 site_time_zone_utc_offset=-6 -County "TN, Claiborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700250.epw site_zip_code=37879 site_time_zone_utc_offset=-5 -County "TN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700270.epw site_zip_code=38551 site_time_zone_utc_offset=-6 -County "TN, Cocke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700290.epw site_zip_code=37821 site_time_zone_utc_offset=-5 -County "TN, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700310.epw site_zip_code=37355 site_time_zone_utc_offset=-6 -County "TN, Crockett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700330.epw site_zip_code=38006 site_time_zone_utc_offset=-6 -County "TN, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700350.epw site_zip_code=38555 site_time_zone_utc_offset=-6 -County "TN, Davidson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700370.epw site_zip_code=37013 site_time_zone_utc_offset=-6 -County "TN, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700410.epw site_zip_code=37166 site_time_zone_utc_offset=-6 -County "TN, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700390.epw site_zip_code=38363 site_time_zone_utc_offset=-6 -County "TN, Dickson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700430.epw site_zip_code=37055 site_time_zone_utc_offset=-6 -County "TN, Dyer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700450.epw site_zip_code=38024 site_time_zone_utc_offset=-6 -County "TN, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700470.epw site_zip_code=38060 site_time_zone_utc_offset=-6 -County "TN, Fentress County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700490.epw site_zip_code=38556 site_time_zone_utc_offset=-6 -County "TN, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700510.epw site_zip_code=37398 site_time_zone_utc_offset=-6 -County "TN, Gibson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700530.epw site_zip_code=38343 site_time_zone_utc_offset=-6 -County "TN, Giles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700550.epw site_zip_code=38478 site_time_zone_utc_offset=-6 -County "TN, Grainger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700570.epw site_zip_code=37861 site_time_zone_utc_offset=-5 -County "TN, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700590.epw site_zip_code=37743 site_time_zone_utc_offset=-5 -County "TN, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700610.epw site_zip_code=37387 site_time_zone_utc_offset=-6 -County "TN, Hamblen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700630.epw site_zip_code=37814 site_time_zone_utc_offset=-5 -County "TN, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700650.epw site_zip_code=37421 site_time_zone_utc_offset=-5 -County "TN, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700670.epw site_zip_code=37869 site_time_zone_utc_offset=-5 -County "TN, Hardeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700690.epw site_zip_code=38008 site_time_zone_utc_offset=-6 -County "TN, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700710.epw site_zip_code=38372 site_time_zone_utc_offset=-6 -County "TN, Hawkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700730.epw site_zip_code=37857 site_time_zone_utc_offset=-5 -County "TN, Haywood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700750.epw site_zip_code=38012 site_time_zone_utc_offset=-6 -County "TN, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700770.epw site_zip_code=38351 site_time_zone_utc_offset=-6 -County "TN, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700790.epw site_zip_code=38242 site_time_zone_utc_offset=-6 -County "TN, Hickman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700810.epw site_zip_code=37033 site_time_zone_utc_offset=-6 -County "TN, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700830.epw site_zip_code=37061 site_time_zone_utc_offset=-6 -County "TN, Humphreys County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700850.epw site_zip_code=37185 site_time_zone_utc_offset=-6 -County "TN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700870.epw site_zip_code=38562 site_time_zone_utc_offset=-6 -County "TN, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700890.epw site_zip_code=37725 site_time_zone_utc_offset=-5 -County "TN, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700910.epw site_zip_code=37683 site_time_zone_utc_offset=-5 -County "TN, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700930.epw site_zip_code=37920 site_time_zone_utc_offset=-5 -County "TN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700950.epw site_zip_code=38079 site_time_zone_utc_offset=-6 -County "TN, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700970.epw site_zip_code=38063 site_time_zone_utc_offset=-6 -County "TN, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700990.epw site_zip_code=38464 site_time_zone_utc_offset=-6 -County "TN, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701010.epw site_zip_code=38462 site_time_zone_utc_offset=-6 -County "TN, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701030.epw site_zip_code=37334 site_time_zone_utc_offset=-6 -County "TN, Loudon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701050.epw site_zip_code=37774 site_time_zone_utc_offset=-5 -County "TN, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701110.epw site_zip_code=37083 site_time_zone_utc_offset=-6 -County "TN, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701130.epw site_zip_code=38305 site_time_zone_utc_offset=-6 -County "TN, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701150.epw site_zip_code=37397 site_time_zone_utc_offset=-6 -County "TN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701170.epw site_zip_code=37091 site_time_zone_utc_offset=-6 -County "TN, Maury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701190.epw site_zip_code=38401 site_time_zone_utc_offset=-6 -County "TN, McMinn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701070.epw site_zip_code=37303 site_time_zone_utc_offset=-5 -County "TN, McNairy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701090.epw site_zip_code=38375 site_time_zone_utc_offset=-6 -County "TN, Meigs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701210.epw site_zip_code=37322 site_time_zone_utc_offset=-5 -County "TN, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701230.epw site_zip_code=37354 site_time_zone_utc_offset=-5 -County "TN, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701250.epw site_zip_code=37042 site_time_zone_utc_offset=-6 -County "TN, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701270.epw site_zip_code=37352 site_time_zone_utc_offset=-6 -County "TN, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701290.epw site_zip_code=37887 site_time_zone_utc_offset=-5 -County "TN, Obion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701310.epw site_zip_code=38261 site_time_zone_utc_offset=-6 -County "TN, Overton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701330.epw site_zip_code=38570 site_time_zone_utc_offset=-6 -County "TN, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701350.epw site_zip_code=37096 site_time_zone_utc_offset=-6 -County "TN, Pickett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701370.epw site_zip_code=38549 site_time_zone_utc_offset=-6 -County "TN, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701390.epw site_zip_code=37307 site_time_zone_utc_offset=-5 -County "TN, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701410.epw site_zip_code=38501 site_time_zone_utc_offset=-6 -County "TN, Rhea County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701430.epw site_zip_code=37321 site_time_zone_utc_offset=-5 -County "TN, Roane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701450.epw site_zip_code=37748 site_time_zone_utc_offset=-5 -County "TN, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701470.epw site_zip_code=37172 site_time_zone_utc_offset=-6 -County "TN, Rutherford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701490.epw site_zip_code=37128 site_time_zone_utc_offset=-6 -County "TN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701510.epw site_zip_code=37841 site_time_zone_utc_offset=-5 -County "TN, Sequatchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701530.epw site_zip_code=37327 site_time_zone_utc_offset=-6 -County "TN, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701550.epw site_zip_code=37876 site_time_zone_utc_offset=-5 -County "TN, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701570.epw site_zip_code=38111 site_time_zone_utc_offset=-6 -County "TN, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701590.epw site_zip_code=37030 site_time_zone_utc_offset=-6 -County "TN, Stewart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701610.epw site_zip_code=37058 site_time_zone_utc_offset=-6 -County "TN, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701630.epw site_zip_code=37660 site_time_zone_utc_offset=-5 -County "TN, Sumner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701650.epw site_zip_code=37075 site_time_zone_utc_offset=-6 -County "TN, Tipton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701670.epw site_zip_code=38019 site_time_zone_utc_offset=-6 -County "TN, Trousdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701690.epw site_zip_code=37074 site_time_zone_utc_offset=-6 -County "TN, Unicoi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701710.epw site_zip_code=37650 site_time_zone_utc_offset=-5 -County "TN, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701730.epw site_zip_code=37807 site_time_zone_utc_offset=-5 -County "TN, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701750.epw site_zip_code=38585 site_time_zone_utc_offset=-6 -County "TN, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701770.epw site_zip_code=37110 site_time_zone_utc_offset=-6 -County "TN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701790.epw site_zip_code=37604 site_time_zone_utc_offset=-5 -County "TN, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701810.epw site_zip_code=38485 site_time_zone_utc_offset=-6 -County "TN, Weakley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701830.epw site_zip_code=38237 site_time_zone_utc_offset=-6 -County "TN, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701850.epw site_zip_code=38583 site_time_zone_utc_offset=-6 -County "TN, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701870.epw site_zip_code=37064 site_time_zone_utc_offset=-6 -County "TN, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701890.epw site_zip_code=37122 site_time_zone_utc_offset=-6 -County "TX, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800010.epw site_zip_code=75803 site_time_zone_utc_offset=-6 -County "TX, Andrews County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800030.epw site_zip_code=79714 site_time_zone_utc_offset=-6 -County "TX, Angelina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800050.epw site_zip_code=75904 site_time_zone_utc_offset=-6 -County "TX, Aransas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800070.epw site_zip_code=78382 site_time_zone_utc_offset=-6 -County "TX, Archer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800090.epw site_zip_code=76310 site_time_zone_utc_offset=-6 -County "TX, Armstrong County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800110.epw site_zip_code=79019 site_time_zone_utc_offset=-6 -County "TX, Atascosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800130.epw site_zip_code=78064 site_time_zone_utc_offset=-6 -County "TX, Austin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800150.epw site_zip_code=77474 site_time_zone_utc_offset=-6 -County "TX, Bailey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800170.epw site_zip_code=79347 site_time_zone_utc_offset=-6 -County "TX, Bandera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800190.epw site_zip_code=78003 site_time_zone_utc_offset=-6 -County "TX, Bastrop County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800210.epw site_zip_code=78602 site_time_zone_utc_offset=-6 -County "TX, Baylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800230.epw site_zip_code=76380 site_time_zone_utc_offset=-6 -County "TX, Bee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800250.epw site_zip_code=78102 site_time_zone_utc_offset=-6 -County "TX, Bell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800270.epw site_zip_code=76502 site_time_zone_utc_offset=-6 -County "TX, Bexar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800290.epw site_zip_code=78245 site_time_zone_utc_offset=-6 -County "TX, Blanco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800310.epw site_zip_code=78606 site_time_zone_utc_offset=-6 -County "TX, Borden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800330.epw site_zip_code=79351 site_time_zone_utc_offset=-6 -County "TX, Bosque County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800350.epw site_zip_code=76634 site_time_zone_utc_offset=-6 -County "TX, Bowie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800370.epw site_zip_code=75501 site_time_zone_utc_offset=-6 -County "TX, Brazoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800390.epw site_zip_code=77584 site_time_zone_utc_offset=-6 -County "TX, Brazos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800410.epw site_zip_code=77845 site_time_zone_utc_offset=-6 -County "TX, Brewster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800430.epw site_zip_code=79830 site_time_zone_utc_offset=-6 -County "TX, Briscoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800450.epw site_zip_code=79257 site_time_zone_utc_offset=-6 -County "TX, Brooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800470.epw site_zip_code=78355 site_time_zone_utc_offset=-6 -County "TX, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800490.epw site_zip_code=76801 site_time_zone_utc_offset=-6 -County "TX, Burleson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800510.epw site_zip_code=77836 site_time_zone_utc_offset=-6 -County "TX, Burnet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800530.epw site_zip_code=78654 site_time_zone_utc_offset=-6 -County "TX, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800550.epw site_zip_code=78644 site_time_zone_utc_offset=-6 -County "TX, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800570.epw site_zip_code=77979 site_time_zone_utc_offset=-6 -County "TX, Callahan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800590.epw site_zip_code=79510 site_time_zone_utc_offset=-6 -County "TX, Cameron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800610.epw site_zip_code=78521 site_time_zone_utc_offset=-6 -County "TX, Camp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800630.epw site_zip_code=75686 site_time_zone_utc_offset=-6 -County "TX, Carson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800650.epw site_zip_code=79068 site_time_zone_utc_offset=-6 -County "TX, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800670.epw site_zip_code=75551 site_time_zone_utc_offset=-6 -County "TX, Castro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800690.epw site_zip_code=79027 site_time_zone_utc_offset=-6 -County "TX, Chambers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800710.epw site_zip_code=77523 site_time_zone_utc_offset=-6 -County "TX, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800730.epw site_zip_code=75766 site_time_zone_utc_offset=-6 -County "TX, Childress County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800750.epw site_zip_code=79201 site_time_zone_utc_offset=-6 -County "TX, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800770.epw site_zip_code=76365 site_time_zone_utc_offset=-6 -County "TX, Cochran County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800790.epw site_zip_code=79346 site_time_zone_utc_offset=-6 -County "TX, Coke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800810.epw site_zip_code=76945 site_time_zone_utc_offset=-6 -County "TX, Coleman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800830.epw site_zip_code=76834 site_time_zone_utc_offset=-6 -County "TX, Collin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800850.epw site_zip_code=75035 site_time_zone_utc_offset=-6 -County "TX, Collingsworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800870.epw site_zip_code=79095 site_time_zone_utc_offset=-6 -County "TX, Colorado County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800890.epw site_zip_code=78934 site_time_zone_utc_offset=-6 -County "TX, Comal County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800910.epw site_zip_code=78130 site_time_zone_utc_offset=-6 -County "TX, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800930.epw site_zip_code=76442 site_time_zone_utc_offset=-6 -County "TX, Concho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800950.epw site_zip_code=76837 site_time_zone_utc_offset=-6 -County "TX, Cooke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800970.epw site_zip_code=76240 site_time_zone_utc_offset=-6 -County "TX, Coryell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800990.epw site_zip_code=76522 site_time_zone_utc_offset=-6 -County "TX, Cottle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801010.epw site_zip_code=79248 site_time_zone_utc_offset=-6 -County "TX, Crane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801030.epw site_zip_code=79731 site_time_zone_utc_offset=-6 -County "TX, Crockett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801050.epw site_zip_code=76943 site_time_zone_utc_offset=-6 -County "TX, Crosby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801070.epw site_zip_code=79322 site_time_zone_utc_offset=-6 -County "TX, Culberson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801090.epw site_zip_code=79847 site_time_zone_utc_offset=-6 -County "TX, Dallam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801110.epw site_zip_code=79022 site_time_zone_utc_offset=-6 -County "TX, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801130.epw site_zip_code=75243 site_time_zone_utc_offset=-6 -County "TX, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801150.epw site_zip_code=79331 site_time_zone_utc_offset=-6 -County "TX, DeWitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801230.epw site_zip_code=77954 site_time_zone_utc_offset=-6 -County "TX, Deaf Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801170.epw site_zip_code=79045 site_time_zone_utc_offset=-6 -County "TX, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801190.epw site_zip_code=75432 site_time_zone_utc_offset=-6 -County "TX, Denton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801210.epw site_zip_code=75056 site_time_zone_utc_offset=-6 -County "TX, Dickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801250.epw site_zip_code=79370 site_time_zone_utc_offset=-6 -County "TX, Dimmit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801270.epw site_zip_code=78834 site_time_zone_utc_offset=-6 -County "TX, Donley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801290.epw site_zip_code=79226 site_time_zone_utc_offset=-6 -County "TX, Duval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801310.epw site_zip_code=78384 site_time_zone_utc_offset=-6 -County "TX, Eastland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801330.epw site_zip_code=76437 site_time_zone_utc_offset=-6 -County "TX, Ector County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801350.epw site_zip_code=79762 site_time_zone_utc_offset=-6 -County "TX, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801370.epw site_zip_code=78880 site_time_zone_utc_offset=-6 -County "TX, El Paso County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801410.epw site_zip_code=79936 site_time_zone_utc_offset=-7 -County "TX, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801390.epw site_zip_code=75165 site_time_zone_utc_offset=-6 -County "TX, Erath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801430.epw site_zip_code=76401 site_time_zone_utc_offset=-6 -County "TX, Falls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801450.epw site_zip_code=76661 site_time_zone_utc_offset=-6 -County "TX, Fannin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801470.epw site_zip_code=75418 site_time_zone_utc_offset=-6 -County "TX, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801490.epw site_zip_code=78945 site_time_zone_utc_offset=-6 -County "TX, Fisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801510.epw site_zip_code=79546 site_time_zone_utc_offset=-6 -County "TX, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801530.epw site_zip_code=79235 site_time_zone_utc_offset=-6 -County "TX, Foard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801550.epw site_zip_code=79227 site_time_zone_utc_offset=-6 -County "TX, Fort Bend County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801570.epw site_zip_code=77494 site_time_zone_utc_offset=-6 -County "TX, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801590.epw site_zip_code=75457 site_time_zone_utc_offset=-6 -County "TX, Freestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801610.epw site_zip_code=75860 site_time_zone_utc_offset=-6 -County "TX, Frio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801630.epw site_zip_code=78061 site_time_zone_utc_offset=-6 -County "TX, Gaines County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801650.epw site_zip_code=79360 site_time_zone_utc_offset=-6 -County "TX, Galveston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801670.epw site_zip_code=77573 site_time_zone_utc_offset=-6 -County "TX, Garza County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801690.epw site_zip_code=79356 site_time_zone_utc_offset=-6 -County "TX, Gillespie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801710.epw site_zip_code=78624 site_time_zone_utc_offset=-6 -County "TX, Glasscock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801730.epw site_zip_code=79739 site_time_zone_utc_offset=-6 -County "TX, Goliad County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801750.epw site_zip_code=77963 site_time_zone_utc_offset=-6 -County "TX, Gonzales County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801770.epw site_zip_code=78629 site_time_zone_utc_offset=-6 -County "TX, Gray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801790.epw site_zip_code=79065 site_time_zone_utc_offset=-6 -County "TX, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801810.epw site_zip_code=75092 site_time_zone_utc_offset=-6 -County "TX, Gregg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801830.epw site_zip_code=75605 site_time_zone_utc_offset=-6 -County "TX, Grimes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801850.epw site_zip_code=77868 site_time_zone_utc_offset=-6 -County "TX, Guadalupe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801870.epw site_zip_code=78155 site_time_zone_utc_offset=-6 -County "TX, Hale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801890.epw site_zip_code=79072 site_time_zone_utc_offset=-6 -County "TX, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801910.epw site_zip_code=79245 site_time_zone_utc_offset=-6 -County "TX, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801930.epw site_zip_code=76531 site_time_zone_utc_offset=-6 -County "TX, Hansford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801950.epw site_zip_code=79081 site_time_zone_utc_offset=-6 -County "TX, Hardeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801970.epw site_zip_code=79252 site_time_zone_utc_offset=-6 -County "TX, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801990.epw site_zip_code=77657 site_time_zone_utc_offset=-6 -County "TX, Harris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802010.epw site_zip_code=77449 site_time_zone_utc_offset=-6 -County "TX, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802030.epw site_zip_code=75672 site_time_zone_utc_offset=-6 -County "TX, Hartley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802050.epw site_zip_code=79022 site_time_zone_utc_offset=-6 -County "TX, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802070.epw site_zip_code=79521 site_time_zone_utc_offset=-6 -County "TX, Hays County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802090.epw site_zip_code=78666 site_time_zone_utc_offset=-6 -County "TX, Hemphill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802110.epw site_zip_code=79014 site_time_zone_utc_offset=-6 -County "TX, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802130.epw site_zip_code=75156 site_time_zone_utc_offset=-6 -County "TX, Hidalgo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802150.epw site_zip_code=78572 site_time_zone_utc_offset=-6 -County "TX, Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802170.epw site_zip_code=76692 site_time_zone_utc_offset=-6 -County "TX, Hockley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802190.epw site_zip_code=79336 site_time_zone_utc_offset=-6 -County "TX, Hood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802210.epw site_zip_code=76048 site_time_zone_utc_offset=-6 -County "TX, Hopkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802230.epw site_zip_code=75482 site_time_zone_utc_offset=-6 -County "TX, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802250.epw site_zip_code=75835 site_time_zone_utc_offset=-6 -County "TX, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802270.epw site_zip_code=79720 site_time_zone_utc_offset=-6 -County "TX, Hudspeth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802290.epw site_zip_code=79839 site_time_zone_utc_offset=-7 -County "TX, Hunt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802310.epw site_zip_code=75401 site_time_zone_utc_offset=-6 -County "TX, Hutchinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802330.epw site_zip_code=79007 site_time_zone_utc_offset=-6 -County "TX, Irion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802350.epw site_zip_code=76941 site_time_zone_utc_offset=-6 -County "TX, Jack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802370.epw site_zip_code=76458 site_time_zone_utc_offset=-6 -County "TX, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802390.epw site_zip_code=77957 site_time_zone_utc_offset=-6 -County "TX, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802410.epw site_zip_code=75951 site_time_zone_utc_offset=-6 -County "TX, Jeff Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802430.epw site_zip_code=79734 site_time_zone_utc_offset=-6 -County "TX, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802450.epw site_zip_code=77642 site_time_zone_utc_offset=-6 -County "TX, Jim Hogg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802470.epw site_zip_code=78361 site_time_zone_utc_offset=-6 -County "TX, Jim Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802490.epw site_zip_code=78332 site_time_zone_utc_offset=-6 -County "TX, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802510.epw site_zip_code=76028 site_time_zone_utc_offset=-6 -County "TX, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802530.epw site_zip_code=79501 site_time_zone_utc_offset=-6 -County "TX, Karnes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802550.epw site_zip_code=78119 site_time_zone_utc_offset=-6 -County "TX, Kaufman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802570.epw site_zip_code=75126 site_time_zone_utc_offset=-6 -County "TX, Kendall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802590.epw site_zip_code=78006 site_time_zone_utc_offset=-6 -County "TX, Kenedy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802610.epw site_zip_code=78385 site_time_zone_utc_offset=-6 -County "TX, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802630.epw site_zip_code=79549 site_time_zone_utc_offset=-6 -County "TX, Kerr County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802650.epw site_zip_code=78028 site_time_zone_utc_offset=-6 -County "TX, Kimble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802670.epw site_zip_code=76849 site_time_zone_utc_offset=-6 -County "TX, King County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802690.epw site_zip_code=79248 site_time_zone_utc_offset=-6 -County "TX, Kinney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802710.epw site_zip_code=78832 site_time_zone_utc_offset=-6 -County "TX, Kleberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802730.epw site_zip_code=78363 site_time_zone_utc_offset=-6 -County "TX, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802750.epw site_zip_code=76371 site_time_zone_utc_offset=-6 -County "TX, La Salle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802830.epw site_zip_code=78014 site_time_zone_utc_offset=-6 -County "TX, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802770.epw site_zip_code=75460 site_time_zone_utc_offset=-6 -County "TX, Lamb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802790.epw site_zip_code=79339 site_time_zone_utc_offset=-6 -County "TX, Lampasas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802810.epw site_zip_code=76550 site_time_zone_utc_offset=-6 -County "TX, Lavaca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802850.epw site_zip_code=77964 site_time_zone_utc_offset=-6 -County "TX, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802870.epw site_zip_code=78942 site_time_zone_utc_offset=-6 -County "TX, Leon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802890.epw site_zip_code=75831 site_time_zone_utc_offset=-6 -County "TX, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802910.epw site_zip_code=77327 site_time_zone_utc_offset=-6 -County "TX, Limestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802930.epw site_zip_code=76667 site_time_zone_utc_offset=-6 -County "TX, Lipscomb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802950.epw site_zip_code=79005 site_time_zone_utc_offset=-6 -County "TX, Live Oak County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802970.epw site_zip_code=78022 site_time_zone_utc_offset=-6 -County "TX, Llano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802990.epw site_zip_code=78657 site_time_zone_utc_offset=-6 -County "TX, Loving County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803010.epw site_zip_code=79754 site_time_zone_utc_offset=-6 -County "TX, Lubbock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803030.epw site_zip_code=79424 site_time_zone_utc_offset=-6 -County "TX, Lynn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803050.epw site_zip_code=79373 site_time_zone_utc_offset=-6 -County "TX, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803130.epw site_zip_code=77864 site_time_zone_utc_offset=-6 -County "TX, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803150.epw site_zip_code=75657 site_time_zone_utc_offset=-6 -County "TX, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803170.epw site_zip_code=79782 site_time_zone_utc_offset=-6 -County "TX, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803190.epw site_zip_code=76856 site_time_zone_utc_offset=-6 -County "TX, Matagorda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803210.epw site_zip_code=77414 site_time_zone_utc_offset=-6 -County "TX, Maverick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803230.epw site_zip_code=78852 site_time_zone_utc_offset=-6 -County "TX, McCulloch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803070.epw site_zip_code=76825 site_time_zone_utc_offset=-6 -County "TX, McLennan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803090.epw site_zip_code=76706 site_time_zone_utc_offset=-6 -County "TX, McMullen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803110.epw site_zip_code=78072 site_time_zone_utc_offset=-6 -County "TX, Medina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803250.epw site_zip_code=78861 site_time_zone_utc_offset=-6 -County "TX, Menard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803270.epw site_zip_code=76859 site_time_zone_utc_offset=-6 -County "TX, Midland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803290.epw site_zip_code=79705 site_time_zone_utc_offset=-6 -County "TX, Milam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803310.epw site_zip_code=76567 site_time_zone_utc_offset=-6 -County "TX, Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803330.epw site_zip_code=76844 site_time_zone_utc_offset=-6 -County "TX, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803350.epw site_zip_code=79512 site_time_zone_utc_offset=-6 -County "TX, Montague County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803370.epw site_zip_code=76230 site_time_zone_utc_offset=-6 -County "TX, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803390.epw site_zip_code=77386 site_time_zone_utc_offset=-6 -County "TX, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803410.epw site_zip_code=79029 site_time_zone_utc_offset=-6 -County "TX, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803430.epw site_zip_code=75638 site_time_zone_utc_offset=-6 -County "TX, Motley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803450.epw site_zip_code=79234 site_time_zone_utc_offset=-6 -County "TX, Nacogdoches County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803470.epw site_zip_code=75964 site_time_zone_utc_offset=-6 -County "TX, Navarro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803490.epw site_zip_code=75110 site_time_zone_utc_offset=-6 -County "TX, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803510.epw site_zip_code=75966 site_time_zone_utc_offset=-6 -County "TX, Nolan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803530.epw site_zip_code=79556 site_time_zone_utc_offset=-6 -County "TX, Nueces County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803550.epw site_zip_code=78414 site_time_zone_utc_offset=-6 -County "TX, Ochiltree County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803570.epw site_zip_code=79070 site_time_zone_utc_offset=-6 -County "TX, Oldham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803590.epw site_zip_code=79092 site_time_zone_utc_offset=-6 -County "TX, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803610.epw site_zip_code=77630 site_time_zone_utc_offset=-6 -County "TX, Palo Pinto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803630.epw site_zip_code=76067 site_time_zone_utc_offset=-6 -County "TX, Panola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803650.epw site_zip_code=75633 site_time_zone_utc_offset=-6 -County "TX, Parker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803670.epw site_zip_code=76087 site_time_zone_utc_offset=-6 -County "TX, Parmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803690.epw site_zip_code=79035 site_time_zone_utc_offset=-6 -County "TX, Pecos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803710.epw site_zip_code=79735 site_time_zone_utc_offset=-6 -County "TX, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803730.epw site_zip_code=77351 site_time_zone_utc_offset=-6 -County "TX, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803750.epw site_zip_code=79107 site_time_zone_utc_offset=-6 -County "TX, Presidio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803770.epw site_zip_code=79845 site_time_zone_utc_offset=-6 -County "TX, Rains County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803790.epw site_zip_code=75440 site_time_zone_utc_offset=-6 -County "TX, Randall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803810.epw site_zip_code=79109 site_time_zone_utc_offset=-6 -County "TX, Reagan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803830.epw site_zip_code=76932 site_time_zone_utc_offset=-6 -County "TX, Real County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803850.epw site_zip_code=78873 site_time_zone_utc_offset=-6 -County "TX, Red River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803870.epw site_zip_code=75426 site_time_zone_utc_offset=-6 -County "TX, Reeves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803890.epw site_zip_code=79772 site_time_zone_utc_offset=-6 -County "TX, Refugio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803910.epw site_zip_code=78377 site_time_zone_utc_offset=-6 -County "TX, Roberts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803930.epw site_zip_code=79059 site_time_zone_utc_offset=-6 -County "TX, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803950.epw site_zip_code=77859 site_time_zone_utc_offset=-6 -County "TX, Rockwall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803970.epw site_zip_code=75087 site_time_zone_utc_offset=-6 -County "TX, Runnels County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803990.epw site_zip_code=76821 site_time_zone_utc_offset=-6 -County "TX, Rusk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804010.epw site_zip_code=75652 site_time_zone_utc_offset=-6 -County "TX, Sabine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804030.epw site_zip_code=75948 site_time_zone_utc_offset=-6 -County "TX, San Augustine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804050.epw site_zip_code=75972 site_time_zone_utc_offset=-6 -County "TX, San Jacinto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804070.epw site_zip_code=77331 site_time_zone_utc_offset=-6 -County "TX, San Patricio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804090.epw site_zip_code=78374 site_time_zone_utc_offset=-6 -County "TX, San Saba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804110.epw site_zip_code=76877 site_time_zone_utc_offset=-6 -County "TX, Schleicher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804130.epw site_zip_code=76936 site_time_zone_utc_offset=-6 -County "TX, Scurry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804150.epw site_zip_code=79549 site_time_zone_utc_offset=-6 -County "TX, Shackelford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804170.epw site_zip_code=76430 site_time_zone_utc_offset=-6 -County "TX, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804190.epw site_zip_code=75935 site_time_zone_utc_offset=-6 -County "TX, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804210.epw site_zip_code=79084 site_time_zone_utc_offset=-6 -County "TX, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804230.epw site_zip_code=75703 site_time_zone_utc_offset=-6 -County "TX, Somervell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804250.epw site_zip_code=76043 site_time_zone_utc_offset=-6 -County "TX, Starr County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804270.epw site_zip_code=78582 site_time_zone_utc_offset=-6 -County "TX, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804290.epw site_zip_code=76424 site_time_zone_utc_offset=-6 -County "TX, Sterling County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804310.epw site_zip_code=76951 site_time_zone_utc_offset=-6 -County "TX, Stonewall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804330.epw site_zip_code=79502 site_time_zone_utc_offset=-6 -County "TX, Sutton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804350.epw site_zip_code=76950 site_time_zone_utc_offset=-6 -County "TX, Swisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804370.epw site_zip_code=79088 site_time_zone_utc_offset=-6 -County "TX, Tarrant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804390.epw site_zip_code=76244 site_time_zone_utc_offset=-6 -County "TX, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804410.epw site_zip_code=79605 site_time_zone_utc_offset=-6 -County "TX, Terrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804430.epw site_zip_code=78851 site_time_zone_utc_offset=-6 -County "TX, Terry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804450.epw site_zip_code=79316 site_time_zone_utc_offset=-6 -County "TX, Throckmorton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804470.epw site_zip_code=76483 site_time_zone_utc_offset=-6 -County "TX, Titus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804490.epw site_zip_code=75455 site_time_zone_utc_offset=-6 -County "TX, Tom Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804510.epw site_zip_code=76904 site_time_zone_utc_offset=-6 -County "TX, Travis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804530.epw site_zip_code=78660 site_time_zone_utc_offset=-6 -County "TX, Trinity County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804550.epw site_zip_code=75862 site_time_zone_utc_offset=-6 -County "TX, Tyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804570.epw site_zip_code=75979 site_time_zone_utc_offset=-6 -County "TX, Upshur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804590.epw site_zip_code=75644 site_time_zone_utc_offset=-6 -County "TX, Upton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804610.epw site_zip_code=79778 site_time_zone_utc_offset=-6 -County "TX, Uvalde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804630.epw site_zip_code=78801 site_time_zone_utc_offset=-6 -County "TX, Val Verde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804650.epw site_zip_code=78840 site_time_zone_utc_offset=-6 -County "TX, Van Zandt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804670.epw site_zip_code=75103 site_time_zone_utc_offset=-6 -County "TX, Victoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804690.epw site_zip_code=77901 site_time_zone_utc_offset=-6 -County "TX, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804710.epw site_zip_code=77340 site_time_zone_utc_offset=-6 -County "TX, Waller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804730.epw site_zip_code=77423 site_time_zone_utc_offset=-6 -County "TX, Ward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804750.epw site_zip_code=79756 site_time_zone_utc_offset=-6 -County "TX, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804770.epw site_zip_code=77833 site_time_zone_utc_offset=-6 -County "TX, Webb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804790.epw site_zip_code=78045 site_time_zone_utc_offset=-6 -County "TX, Wharton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804810.epw site_zip_code=77437 site_time_zone_utc_offset=-6 -County "TX, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804830.epw site_zip_code=79079 site_time_zone_utc_offset=-6 -County "TX, Wichita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804850.epw site_zip_code=76311 site_time_zone_utc_offset=-6 -County "TX, Wilbarger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804870.epw site_zip_code=76384 site_time_zone_utc_offset=-6 -County "TX, Willacy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804890.epw site_zip_code=78580 site_time_zone_utc_offset=-6 -County "TX, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804910.epw site_zip_code=78641 site_time_zone_utc_offset=-6 -County "TX, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804930.epw site_zip_code=78114 site_time_zone_utc_offset=-6 -County "TX, Winkler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804950.epw site_zip_code=79745 site_time_zone_utc_offset=-6 -County "TX, Wise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804970.epw site_zip_code=76234 site_time_zone_utc_offset=-6 -County "TX, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804990.epw site_zip_code=75773 site_time_zone_utc_offset=-6 -County "TX, Yoakum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805010.epw site_zip_code=79323 site_time_zone_utc_offset=-6 -County "TX, Young County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805030.epw site_zip_code=76450 site_time_zone_utc_offset=-6 -County "TX, Zapata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805050.epw site_zip_code=78076 site_time_zone_utc_offset=-6 -County "TX, Zavala County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805070.epw site_zip_code=78839 site_time_zone_utc_offset=-6 -County "UT, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900010.epw site_zip_code=84713 site_time_zone_utc_offset=-7 -County "UT, Box Elder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900030.epw site_zip_code=84302 site_time_zone_utc_offset=-7 -County "UT, Cache County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900050.epw site_zip_code=84321 site_time_zone_utc_offset=-7 -County "UT, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900070.epw site_zip_code=84501 site_time_zone_utc_offset=-7 -County "UT, Daggett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900090.epw site_zip_code=84046 site_time_zone_utc_offset=-7 -County "UT, Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900110.epw site_zip_code=84015 site_time_zone_utc_offset=-7 -County "UT, Duchesne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900130.epw site_zip_code=84066 site_time_zone_utc_offset=-7 -County "UT, Emery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900150.epw site_zip_code=84528 site_time_zone_utc_offset=-7 -County "UT, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900170.epw site_zip_code=84726 site_time_zone_utc_offset=-7 -County "UT, Grand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900190.epw site_zip_code=84532 site_time_zone_utc_offset=-7 -County "UT, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900210.epw site_zip_code=84721 site_time_zone_utc_offset=-7 -County "UT, Juab County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900230.epw site_zip_code=84648 site_time_zone_utc_offset=-7 -County "UT, Kane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900250.epw site_zip_code=84741 site_time_zone_utc_offset=-7 -County "UT, Millard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900270.epw site_zip_code=84624 site_time_zone_utc_offset=-7 -County "UT, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900290.epw site_zip_code=84050 site_time_zone_utc_offset=-7 -County "UT, Piute County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900310.epw site_zip_code=84750 site_time_zone_utc_offset=-7 -County "UT, Rich County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900330.epw site_zip_code=84028 site_time_zone_utc_offset=-7 -County "UT, Salt Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900350.epw site_zip_code=84096 site_time_zone_utc_offset=-7 -County "UT, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900370.epw site_zip_code=84511 site_time_zone_utc_offset=-7 -County "UT, Sanpete County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900390.epw site_zip_code=84627 site_time_zone_utc_offset=-7 -County "UT, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900410.epw site_zip_code=84701 site_time_zone_utc_offset=-7 -County "UT, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900430.epw site_zip_code=84098 site_time_zone_utc_offset=-7 -County "UT, Tooele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900450.epw site_zip_code=84074 site_time_zone_utc_offset=-7 -County "UT, Uintah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900470.epw site_zip_code=84078 site_time_zone_utc_offset=-7 -County "UT, Utah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900490.epw site_zip_code=84043 site_time_zone_utc_offset=-7 -County "UT, Wasatch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900510.epw site_zip_code=84032 site_time_zone_utc_offset=-7 -County "UT, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900530.epw site_zip_code=84770 site_time_zone_utc_offset=-7 -County "UT, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900550.epw site_zip_code=84775 site_time_zone_utc_offset=-7 -County "UT, Weber County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900570.epw site_zip_code=84404 site_time_zone_utc_offset=-7 -County "VA, Accomack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100010.epw site_zip_code=23336 site_time_zone_utc_offset=-5 -County "VA, Albemarle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100030.epw site_zip_code=22901 site_time_zone_utc_offset=-5 -County "VA, Alexandria city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105100.epw site_zip_code=22304 site_time_zone_utc_offset=-5 -County "VA, Alleghany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100050.epw site_zip_code=24426 site_time_zone_utc_offset=-5 -County "VA, Amelia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100070.epw site_zip_code=23002 site_time_zone_utc_offset=-5 -County "VA, Amherst County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100090.epw site_zip_code=24572 site_time_zone_utc_offset=-5 -County "VA, Appomattox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100110.epw site_zip_code=24522 site_time_zone_utc_offset=-5 -County "VA, Arlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100130.epw site_zip_code=22204 site_time_zone_utc_offset=-5 -County "VA, Augusta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100150.epw site_zip_code=24401 site_time_zone_utc_offset=-5 -County "VA, Bath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100170.epw site_zip_code=24460 site_time_zone_utc_offset=-5 -County "VA, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100190.epw site_zip_code=24551 site_time_zone_utc_offset=-5 -County "VA, Bland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100210.epw site_zip_code=24315 site_time_zone_utc_offset=-5 -County "VA, Botetourt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100230.epw site_zip_code=24175 site_time_zone_utc_offset=-5 -County "VA, Bristol city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105200.epw site_zip_code=24201 site_time_zone_utc_offset=-5 -County "VA, Brunswick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100250.epw site_zip_code=23868 site_time_zone_utc_offset=-5 -County "VA, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100270.epw site_zip_code=24614 site_time_zone_utc_offset=-5 -County "VA, Buckingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100290.epw site_zip_code=23936 site_time_zone_utc_offset=-5 -County "VA, Buena Vista city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105300.epw site_zip_code=24416 site_time_zone_utc_offset=-5 -County "VA, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100310.epw site_zip_code=24502 site_time_zone_utc_offset=-5 -County "VA, Caroline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100330.epw site_zip_code=22546 site_time_zone_utc_offset=-5 -County "VA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100350.epw site_zip_code=24343 site_time_zone_utc_offset=-5 -County "VA, Charles City County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100360.epw site_zip_code=23030 site_time_zone_utc_offset=-5 -County "VA, Charlotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100370.epw site_zip_code=23923 site_time_zone_utc_offset=-5 -County "VA, Charlottesville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105400.epw site_zip_code=22903 site_time_zone_utc_offset=-5 -County "VA, Chesapeake city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105500.epw site_zip_code=23320 site_time_zone_utc_offset=-5 -County "VA, Chesterfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100410.epw site_zip_code=23112 site_time_zone_utc_offset=-5 -County "VA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100430.epw site_zip_code=22611 site_time_zone_utc_offset=-5 -County "VA, Colonial Heights city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105700.epw site_zip_code=23834 site_time_zone_utc_offset=-5 -County "VA, Covington city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105800.epw site_zip_code=24426 site_time_zone_utc_offset=-5 -County "VA, Craig County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100450.epw site_zip_code=24127 site_time_zone_utc_offset=-5 -County "VA, Culpeper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100470.epw site_zip_code=22701 site_time_zone_utc_offset=-5 -County "VA, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100490.epw site_zip_code=23040 site_time_zone_utc_offset=-5 -County "VA, Danville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105900.epw site_zip_code=24541 site_time_zone_utc_offset=-5 -County "VA, Dickenson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100510.epw site_zip_code=24228 site_time_zone_utc_offset=-5 -County "VA, Dinwiddie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100530.epw site_zip_code=23803 site_time_zone_utc_offset=-5 -County "VA, Emporia city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105950.epw site_zip_code=23847 site_time_zone_utc_offset=-5 -County "VA, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100570.epw site_zip_code=22560 site_time_zone_utc_offset=-5 -County "VA, Fairfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100590.epw site_zip_code=20171 site_time_zone_utc_offset=-5 -County "VA, Fairfax city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106000.epw site_zip_code=22030 site_time_zone_utc_offset=-5 -County "VA, Falls Church city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106100.epw site_zip_code=22046 site_time_zone_utc_offset=-5 -County "VA, Fauquier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100610.epw site_zip_code=20187 site_time_zone_utc_offset=-5 -County "VA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100630.epw site_zip_code=24091 site_time_zone_utc_offset=-5 -County "VA, Fluvanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100650.epw site_zip_code=22963 site_time_zone_utc_offset=-5 -County "VA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100670.epw site_zip_code=24151 site_time_zone_utc_offset=-5 -County "VA, Franklin city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106200.epw site_zip_code=23851 site_time_zone_utc_offset=-5 -County "VA, Frederick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100690.epw site_zip_code=22602 site_time_zone_utc_offset=-5 -County "VA, Fredericksburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106300.epw site_zip_code=22401 site_time_zone_utc_offset=-5 -County "VA, Galax city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106400.epw site_zip_code=24333 site_time_zone_utc_offset=-5 -County "VA, Giles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100710.epw site_zip_code=24134 site_time_zone_utc_offset=-5 -County "VA, Gloucester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100730.epw site_zip_code=23061 site_time_zone_utc_offset=-5 -County "VA, Goochland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100750.epw site_zip_code=23103 site_time_zone_utc_offset=-5 -County "VA, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100770.epw site_zip_code=24333 site_time_zone_utc_offset=-5 -County "VA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100790.epw site_zip_code=22968 site_time_zone_utc_offset=-5 -County "VA, Greensville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100810.epw site_zip_code=23847 site_time_zone_utc_offset=-5 -County "VA, Halifax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100830.epw site_zip_code=24592 site_time_zone_utc_offset=-5 -County "VA, Hampton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106500.epw site_zip_code=23666 site_time_zone_utc_offset=-5 -County "VA, Hanover County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100850.epw site_zip_code=23111 site_time_zone_utc_offset=-5 -County "VA, Harrisonburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106600.epw site_zip_code=22801 site_time_zone_utc_offset=-5 -County "VA, Henrico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100870.epw site_zip_code=23228 site_time_zone_utc_offset=-5 -County "VA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100890.epw site_zip_code=24112 site_time_zone_utc_offset=-5 -County "VA, Highland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100910.epw site_zip_code=24465 site_time_zone_utc_offset=-5 -County "VA, Hopewell city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106700.epw site_zip_code=23860 site_time_zone_utc_offset=-5 -County "VA, Isle of Wight County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100930.epw site_zip_code=23430 site_time_zone_utc_offset=-5 -County "VA, James City County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100950.epw site_zip_code=23188 site_time_zone_utc_offset=-5 -County "VA, King George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100990.epw site_zip_code=22485 site_time_zone_utc_offset=-5 -County "VA, King William County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101010.epw site_zip_code=23009 site_time_zone_utc_offset=-5 -County "VA, King and Queen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100970.epw site_zip_code=23156 site_time_zone_utc_offset=-5 -County "VA, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101030.epw site_zip_code=22503 site_time_zone_utc_offset=-5 -County "VA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101050.epw site_zip_code=24263 site_time_zone_utc_offset=-5 -County "VA, Lexington city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106780.epw site_zip_code=24450 site_time_zone_utc_offset=-5 -County "VA, Loudoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101070.epw site_zip_code=20189 site_time_zone_utc_offset=-5 -County "VA, Louisa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101090.epw site_zip_code=23093 site_time_zone_utc_offset=-5 -County "VA, Lunenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101110.epw site_zip_code=23974 site_time_zone_utc_offset=-5 -County "VA, Lynchburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106800.epw site_zip_code=24502 site_time_zone_utc_offset=-5 -County "VA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101130.epw site_zip_code=22727 site_time_zone_utc_offset=-5 -County "VA, Manassas Park city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106850.epw site_zip_code=20111 site_time_zone_utc_offset=-5 -County "VA, Manassas city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106830.epw site_zip_code=20110 site_time_zone_utc_offset=-5 -County "VA, Martinsville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106900.epw site_zip_code=24112 site_time_zone_utc_offset=-5 -County "VA, Mathews County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101150.epw site_zip_code=23109 site_time_zone_utc_offset=-5 -County "VA, Mecklenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101170.epw site_zip_code=23970 site_time_zone_utc_offset=-5 -County "VA, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101190.epw site_zip_code=23043 site_time_zone_utc_offset=-5 -County "VA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101210.epw site_zip_code=24060 site_time_zone_utc_offset=-5 -County "VA, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101250.epw site_zip_code=22967 site_time_zone_utc_offset=-5 -County "VA, New Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101270.epw site_zip_code=23141 site_time_zone_utc_offset=-5 -County "VA, Newport News city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107000.epw site_zip_code=23608 site_time_zone_utc_offset=-5 -County "VA, Norfolk city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107100.epw site_zip_code=23503 site_time_zone_utc_offset=-5 -County "VA, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101310.epw site_zip_code=23310 site_time_zone_utc_offset=-5 -County "VA, Northumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101330.epw site_zip_code=22473 site_time_zone_utc_offset=-5 -County "VA, Norton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107200.epw site_zip_code=24273 site_time_zone_utc_offset=-5 -County "VA, Nottoway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101350.epw site_zip_code=23824 site_time_zone_utc_offset=-5 -County "VA, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101370.epw site_zip_code=22508 site_time_zone_utc_offset=-5 -County "VA, Page County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101390.epw site_zip_code=22835 site_time_zone_utc_offset=-5 -County "VA, Patrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101410.epw site_zip_code=24171 site_time_zone_utc_offset=-5 -County "VA, Petersburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107300.epw site_zip_code=23803 site_time_zone_utc_offset=-5 -County "VA, Pittsylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101430.epw site_zip_code=24540 site_time_zone_utc_offset=-5 -County "VA, Poquoson city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107350.epw site_zip_code=23662 site_time_zone_utc_offset=-5 -County "VA, Portsmouth city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107400.epw site_zip_code=23703 site_time_zone_utc_offset=-5 -County "VA, Powhatan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101450.epw site_zip_code=23139 site_time_zone_utc_offset=-5 -County "VA, Prince Edward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101470.epw site_zip_code=23901 site_time_zone_utc_offset=-5 -County "VA, Prince George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101490.epw site_zip_code=23875 site_time_zone_utc_offset=-5 -County "VA, Prince William County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101530.epw site_zip_code=22191 site_time_zone_utc_offset=-5 -County "VA, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101550.epw site_zip_code=24301 site_time_zone_utc_offset=-5 -County "VA, Radford city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107500.epw site_zip_code=24141 site_time_zone_utc_offset=-5 -County "VA, Rappahannock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101570.epw site_zip_code=20106 site_time_zone_utc_offset=-5 -County "VA, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101590.epw site_zip_code=22572 site_time_zone_utc_offset=-5 -County "VA, Richmond city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107600.epw site_zip_code=23220 site_time_zone_utc_offset=-5 -County "VA, Roanoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101610.epw site_zip_code=24018 site_time_zone_utc_offset=-5 -County "VA, Roanoke city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107700.epw site_zip_code=24017 site_time_zone_utc_offset=-5 -County "VA, Rockbridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101630.epw site_zip_code=24450 site_time_zone_utc_offset=-5 -County "VA, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101650.epw site_zip_code=22801 site_time_zone_utc_offset=-5 -County "VA, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101670.epw site_zip_code=24266 site_time_zone_utc_offset=-5 -County "VA, Salem city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107750.epw site_zip_code=24153 site_time_zone_utc_offset=-5 -County "VA, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101690.epw site_zip_code=24251 site_time_zone_utc_offset=-5 -County "VA, Shenandoah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101710.epw site_zip_code=22657 site_time_zone_utc_offset=-5 -County "VA, Smyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101730.epw site_zip_code=24354 site_time_zone_utc_offset=-5 -County "VA, Southampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101750.epw site_zip_code=23851 site_time_zone_utc_offset=-5 -County "VA, Spotsylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101770.epw site_zip_code=22407 site_time_zone_utc_offset=-5 -County "VA, Stafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101790.epw site_zip_code=22554 site_time_zone_utc_offset=-5 -County "VA, Staunton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107900.epw site_zip_code=24401 site_time_zone_utc_offset=-5 -County "VA, Suffolk city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108000.epw site_zip_code=23434 site_time_zone_utc_offset=-5 -County "VA, Surry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101810.epw site_zip_code=23883 site_time_zone_utc_offset=-5 -County "VA, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101830.epw site_zip_code=23890 site_time_zone_utc_offset=-5 -County "VA, Tazewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101850.epw site_zip_code=24605 site_time_zone_utc_offset=-5 -County "VA, Virginia Beach city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108100.epw site_zip_code=23462 site_time_zone_utc_offset=-5 -County "VA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101870.epw site_zip_code=22630 site_time_zone_utc_offset=-5 -County "VA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101910.epw site_zip_code=24210 site_time_zone_utc_offset=-5 -County "VA, Waynesboro city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108200.epw site_zip_code=22980 site_time_zone_utc_offset=-5 -County "VA, Westmoreland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101930.epw site_zip_code=22443 site_time_zone_utc_offset=-5 -County "VA, Williamsburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108300.epw site_zip_code=23185 site_time_zone_utc_offset=-5 -County "VA, Winchester city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108400.epw site_zip_code=22601 site_time_zone_utc_offset=-5 -County "VA, Wise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101950.epw site_zip_code=24219 site_time_zone_utc_offset=-5 -County "VA, Wythe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101970.epw site_zip_code=24382 site_time_zone_utc_offset=-5 -County "VA, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101990.epw site_zip_code=23692 site_time_zone_utc_offset=-5 -County "VT, Addison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000010.epw site_zip_code=05753 site_time_zone_utc_offset=-5 -County "VT, Bennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000030.epw site_zip_code=05201 site_time_zone_utc_offset=-5 -County "VT, Caledonia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000050.epw site_zip_code=05819 site_time_zone_utc_offset=-5 -County "VT, Chittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000070.epw site_zip_code=05401 site_time_zone_utc_offset=-5 -County "VT, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000090.epw site_zip_code=05906 site_time_zone_utc_offset=-5 -County "VT, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000110.epw site_zip_code=05478 site_time_zone_utc_offset=-5 -County "VT, Grand Isle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000130.epw site_zip_code=05440 site_time_zone_utc_offset=-5 -County "VT, Lamoille County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000150.epw site_zip_code=05672 site_time_zone_utc_offset=-5 -County "VT, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000170.epw site_zip_code=05060 site_time_zone_utc_offset=-5 -County "VT, Orleans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000190.epw site_zip_code=05855 site_time_zone_utc_offset=-5 -County "VT, Rutland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000210.epw site_zip_code=05701 site_time_zone_utc_offset=-5 -County "VT, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000230.epw site_zip_code=05641 site_time_zone_utc_offset=-5 -County "VT, Windham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000250.epw site_zip_code=05301 site_time_zone_utc_offset=-5 -County "VT, Windsor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000270.epw site_zip_code=05156 site_time_zone_utc_offset=-5 -County "WA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300010.epw site_zip_code=99344 site_time_zone_utc_offset=-8 -County "WA, Asotin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300030.epw site_zip_code=99403 site_time_zone_utc_offset=-8 -County "WA, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300050.epw site_zip_code=99336 site_time_zone_utc_offset=-8 -County "WA, Chelan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300070.epw site_zip_code=98801 site_time_zone_utc_offset=-8 -County "WA, Clallam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300090.epw site_zip_code=98382 site_time_zone_utc_offset=-8 -County "WA, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300110.epw site_zip_code=98682 site_time_zone_utc_offset=-8 -County "WA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300130.epw site_zip_code=99328 site_time_zone_utc_offset=-8 -County "WA, Cowlitz County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300150.epw site_zip_code=98632 site_time_zone_utc_offset=-8 -County "WA, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300170.epw site_zip_code=98802 site_time_zone_utc_offset=-8 -County "WA, Ferry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300190.epw site_zip_code=99166 site_time_zone_utc_offset=-8 -County "WA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300210.epw site_zip_code=99301 site_time_zone_utc_offset=-8 -County "WA, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300230.epw site_zip_code=99347 site_time_zone_utc_offset=-8 -County "WA, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300250.epw site_zip_code=98837 site_time_zone_utc_offset=-8 -County "WA, Grays Harbor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300270.epw site_zip_code=98520 site_time_zone_utc_offset=-8 -County "WA, Island County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300290.epw site_zip_code=98277 site_time_zone_utc_offset=-8 -County "WA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300310.epw site_zip_code=98368 site_time_zone_utc_offset=-8 -County "WA, King County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300330.epw site_zip_code=98052 site_time_zone_utc_offset=-8 -County "WA, Kitsap County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300350.epw site_zip_code=98312 site_time_zone_utc_offset=-8 -County "WA, Kittitas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300370.epw site_zip_code=98926 site_time_zone_utc_offset=-8 -County "WA, Klickitat County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300390.epw site_zip_code=98672 site_time_zone_utc_offset=-8 -County "WA, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300410.epw site_zip_code=98531 site_time_zone_utc_offset=-8 -County "WA, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300430.epw site_zip_code=99122 site_time_zone_utc_offset=-8 -County "WA, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300450.epw site_zip_code=98584 site_time_zone_utc_offset=-8 -County "WA, Okanogan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300470.epw site_zip_code=98841 site_time_zone_utc_offset=-8 -County "WA, Pacific County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300490.epw site_zip_code=98640 site_time_zone_utc_offset=-8 -County "WA, Pend Oreille County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300510.epw site_zip_code=99156 site_time_zone_utc_offset=-8 -County "WA, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300530.epw site_zip_code=98391 site_time_zone_utc_offset=-8 -County "WA, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300550.epw site_zip_code=98250 site_time_zone_utc_offset=-8 -County "WA, Skagit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300570.epw site_zip_code=98273 site_time_zone_utc_offset=-8 -County "WA, Skamania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300590.epw site_zip_code=98648 site_time_zone_utc_offset=-8 -County "WA, Snohomish County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300610.epw site_zip_code=98012 site_time_zone_utc_offset=-8 -County "WA, Spokane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300630.epw site_zip_code=99208 site_time_zone_utc_offset=-8 -County "WA, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300650.epw site_zip_code=99114 site_time_zone_utc_offset=-8 -County "WA, Thurston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300670.epw site_zip_code=98501 site_time_zone_utc_offset=-8 -County "WA, Wahkiakum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300690.epw site_zip_code=98612 site_time_zone_utc_offset=-8 -County "WA, Walla Walla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300710.epw site_zip_code=99362 site_time_zone_utc_offset=-8 -County "WA, Whatcom County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300730.epw site_zip_code=98225 site_time_zone_utc_offset=-8 -County "WA, Whitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300750.epw site_zip_code=99163 site_time_zone_utc_offset=-8 -County "WA, Yakima County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300770.epw site_zip_code=98902 site_time_zone_utc_offset=-8 -County "WI, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500010.epw site_zip_code=53934 site_time_zone_utc_offset=-6 -County "WI, Ashland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500030.epw site_zip_code=54806 site_time_zone_utc_offset=-6 -County "WI, Barron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500050.epw site_zip_code=54868 site_time_zone_utc_offset=-6 -County "WI, Bayfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500070.epw site_zip_code=54891 site_time_zone_utc_offset=-6 -County "WI, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500090.epw site_zip_code=54115 site_time_zone_utc_offset=-6 -County "WI, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500110.epw site_zip_code=54755 site_time_zone_utc_offset=-6 -County "WI, Burnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500130.epw site_zip_code=54830 site_time_zone_utc_offset=-6 -County "WI, Calumet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500150.epw site_zip_code=54915 site_time_zone_utc_offset=-6 -County "WI, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500170.epw site_zip_code=54729 site_time_zone_utc_offset=-6 -County "WI, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500190.epw site_zip_code=54456 site_time_zone_utc_offset=-6 -County "WI, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500210.epw site_zip_code=53901 site_time_zone_utc_offset=-6 -County "WI, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500230.epw site_zip_code=53821 site_time_zone_utc_offset=-6 -County "WI, Dane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500250.epw site_zip_code=53711 site_time_zone_utc_offset=-6 -County "WI, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500270.epw site_zip_code=53916 site_time_zone_utc_offset=-6 -County "WI, Door County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500290.epw site_zip_code=54235 site_time_zone_utc_offset=-6 -County "WI, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500310.epw site_zip_code=54880 site_time_zone_utc_offset=-6 -County "WI, Dunn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500330.epw site_zip_code=54751 site_time_zone_utc_offset=-6 -County "WI, Eau Claire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500350.epw site_zip_code=54703 site_time_zone_utc_offset=-6 -County "WI, Florence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500370.epw site_zip_code=54121 site_time_zone_utc_offset=-6 -County "WI, Fond du Lac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500390.epw site_zip_code=54935 site_time_zone_utc_offset=-6 -County "WI, Forest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500410.epw site_zip_code=54520 site_time_zone_utc_offset=-6 -County "WI, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500430.epw site_zip_code=53818 site_time_zone_utc_offset=-6 -County "WI, Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500450.epw site_zip_code=53566 site_time_zone_utc_offset=-6 -County "WI, Green Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500470.epw site_zip_code=54923 site_time_zone_utc_offset=-6 -County "WI, Iowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500490.epw site_zip_code=53533 site_time_zone_utc_offset=-6 -County "WI, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500510.epw site_zip_code=54547 site_time_zone_utc_offset=-6 -County "WI, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500530.epw site_zip_code=54615 site_time_zone_utc_offset=-6 -County "WI, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500550.epw site_zip_code=53538 site_time_zone_utc_offset=-6 -County "WI, Juneau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500570.epw site_zip_code=53948 site_time_zone_utc_offset=-6 -County "WI, Kenosha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500590.epw site_zip_code=53142 site_time_zone_utc_offset=-6 -County "WI, Kewaunee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500610.epw site_zip_code=54216 site_time_zone_utc_offset=-6 -County "WI, La Crosse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500630.epw site_zip_code=54601 site_time_zone_utc_offset=-6 -County "WI, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500650.epw site_zip_code=53530 site_time_zone_utc_offset=-6 -County "WI, Langlade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500670.epw site_zip_code=54409 site_time_zone_utc_offset=-6 -County "WI, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500690.epw site_zip_code=54452 site_time_zone_utc_offset=-6 -County "WI, Manitowoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500710.epw site_zip_code=54220 site_time_zone_utc_offset=-6 -County "WI, Marathon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500730.epw site_zip_code=54401 site_time_zone_utc_offset=-6 -County "WI, Marinette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500750.epw site_zip_code=54143 site_time_zone_utc_offset=-6 -County "WI, Marquette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500770.epw site_zip_code=53949 site_time_zone_utc_offset=-6 -County "WI, Menominee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500780.epw site_zip_code=54135 site_time_zone_utc_offset=-6 -County "WI, Milwaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500790.epw site_zip_code=53209 site_time_zone_utc_offset=-6 -County "WI, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500810.epw site_zip_code=54656 site_time_zone_utc_offset=-6 -County "WI, Oconto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500830.epw site_zip_code=54153 site_time_zone_utc_offset=-6 -County "WI, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500850.epw site_zip_code=54501 site_time_zone_utc_offset=-6 -County "WI, Outagamie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500870.epw site_zip_code=54911 site_time_zone_utc_offset=-6 -County "WI, Ozaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500890.epw site_zip_code=53092 site_time_zone_utc_offset=-6 -County "WI, Pepin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500910.epw site_zip_code=54736 site_time_zone_utc_offset=-6 -County "WI, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500930.epw site_zip_code=54022 site_time_zone_utc_offset=-6 -County "WI, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500950.epw site_zip_code=54001 site_time_zone_utc_offset=-6 -County "WI, Portage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500970.epw site_zip_code=54481 site_time_zone_utc_offset=-6 -County "WI, Price County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500990.epw site_zip_code=54555 site_time_zone_utc_offset=-6 -County "WI, Racine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501010.epw site_zip_code=53402 site_time_zone_utc_offset=-6 -County "WI, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501030.epw site_zip_code=53581 site_time_zone_utc_offset=-6 -County "WI, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501050.epw site_zip_code=53511 site_time_zone_utc_offset=-6 -County "WI, Rusk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501070.epw site_zip_code=54848 site_time_zone_utc_offset=-6 -County "WI, Sauk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501110.epw site_zip_code=53913 site_time_zone_utc_offset=-6 -County "WI, Sawyer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501130.epw site_zip_code=54843 site_time_zone_utc_offset=-6 -County "WI, Shawano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501150.epw site_zip_code=54166 site_time_zone_utc_offset=-6 -County "WI, Sheboygan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501170.epw site_zip_code=53081 site_time_zone_utc_offset=-6 -County "WI, St. Croix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501090.epw site_zip_code=54016 site_time_zone_utc_offset=-6 -County "WI, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501190.epw site_zip_code=54451 site_time_zone_utc_offset=-6 -County "WI, Trempealeau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501210.epw site_zip_code=54612 site_time_zone_utc_offset=-6 -County "WI, Vernon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501230.epw site_zip_code=54665 site_time_zone_utc_offset=-6 -County "WI, Vilas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501250.epw site_zip_code=54521 site_time_zone_utc_offset=-6 -County "WI, Walworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501270.epw site_zip_code=53147 site_time_zone_utc_offset=-6 -County "WI, Washburn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501290.epw site_zip_code=54801 site_time_zone_utc_offset=-6 -County "WI, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501310.epw site_zip_code=53022 site_time_zone_utc_offset=-6 -County "WI, Waukesha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501330.epw site_zip_code=53051 site_time_zone_utc_offset=-6 -County "WI, Waupaca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501350.epw site_zip_code=54981 site_time_zone_utc_offset=-6 -County "WI, Waushara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501370.epw site_zip_code=54982 site_time_zone_utc_offset=-6 -County "WI, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501390.epw site_zip_code=54956 site_time_zone_utc_offset=-6 -County "WI, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501410.epw site_zip_code=54449 site_time_zone_utc_offset=-6 -County "WV, Barbour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400010.epw site_zip_code=26416 site_time_zone_utc_offset=-5 -County "WV, Berkeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400030.epw site_zip_code=25404 site_time_zone_utc_offset=-5 -County "WV, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400050.epw site_zip_code=25130 site_time_zone_utc_offset=-5 -County "WV, Braxton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400070.epw site_zip_code=26601 site_time_zone_utc_offset=-5 -County "WV, Brooke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400090.epw site_zip_code=26070 site_time_zone_utc_offset=-5 -County "WV, Cabell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400110.epw site_zip_code=25701 site_time_zone_utc_offset=-5 -County "WV, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400130.epw site_zip_code=26147 site_time_zone_utc_offset=-5 -County "WV, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400150.epw site_zip_code=25043 site_time_zone_utc_offset=-5 -County "WV, Doddridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400170.epw site_zip_code=26456 site_time_zone_utc_offset=-5 -County "WV, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400190.epw site_zip_code=25901 site_time_zone_utc_offset=-5 -County "WV, Gilmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400210.epw site_zip_code=26351 site_time_zone_utc_offset=-5 -County "WV, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400230.epw site_zip_code=26847 site_time_zone_utc_offset=-5 -County "WV, Greenbrier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400250.epw site_zip_code=24901 site_time_zone_utc_offset=-5 -County "WV, Hampshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400270.epw site_zip_code=26757 site_time_zone_utc_offset=-5 -County "WV, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400290.epw site_zip_code=26062 site_time_zone_utc_offset=-5 -County "WV, Hardy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400310.epw site_zip_code=26836 site_time_zone_utc_offset=-5 -County "WV, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400330.epw site_zip_code=26301 site_time_zone_utc_offset=-5 -County "WV, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400350.epw site_zip_code=25271 site_time_zone_utc_offset=-5 -County "WV, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400370.epw site_zip_code=25414 site_time_zone_utc_offset=-5 -County "WV, Kanawha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400390.epw site_zip_code=25177 site_time_zone_utc_offset=-5 -County "WV, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400410.epw site_zip_code=26452 site_time_zone_utc_offset=-5 -County "WV, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400430.epw site_zip_code=25506 site_time_zone_utc_offset=-5 -County "WV, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400450.epw site_zip_code=25601 site_time_zone_utc_offset=-5 -County "WV, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400490.epw site_zip_code=26554 site_time_zone_utc_offset=-5 -County "WV, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400510.epw site_zip_code=26041 site_time_zone_utc_offset=-5 -County "WV, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400530.epw site_zip_code=25550 site_time_zone_utc_offset=-5 -County "WV, McDowell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400470.epw site_zip_code=24801 site_time_zone_utc_offset=-5 -County "WV, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400550.epw site_zip_code=24701 site_time_zone_utc_offset=-5 -County "WV, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400570.epw site_zip_code=26726 site_time_zone_utc_offset=-5 -County "WV, Mingo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400590.epw site_zip_code=25661 site_time_zone_utc_offset=-5 -County "WV, Monongalia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400610.epw site_zip_code=26505 site_time_zone_utc_offset=-5 -County "WV, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400630.epw site_zip_code=24963 site_time_zone_utc_offset=-5 -County "WV, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400650.epw site_zip_code=25411 site_time_zone_utc_offset=-5 -County "WV, Nicholas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400670.epw site_zip_code=26651 site_time_zone_utc_offset=-5 -County "WV, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400690.epw site_zip_code=26003 site_time_zone_utc_offset=-5 -County "WV, Pendleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400710.epw site_zip_code=26807 site_time_zone_utc_offset=-5 -County "WV, Pleasants County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400730.epw site_zip_code=26170 site_time_zone_utc_offset=-5 -County "WV, Pocahontas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400750.epw site_zip_code=24954 site_time_zone_utc_offset=-5 -County "WV, Preston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400770.epw site_zip_code=26537 site_time_zone_utc_offset=-5 -County "WV, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400790.epw site_zip_code=25526 site_time_zone_utc_offset=-5 -County "WV, Raleigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400810.epw site_zip_code=25801 site_time_zone_utc_offset=-5 -County "WV, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400830.epw site_zip_code=26241 site_time_zone_utc_offset=-5 -County "WV, Ritchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400850.epw site_zip_code=26362 site_time_zone_utc_offset=-5 -County "WV, Roane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400870.epw site_zip_code=25276 site_time_zone_utc_offset=-5 -County "WV, Summers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400890.epw site_zip_code=25951 site_time_zone_utc_offset=-5 -County "WV, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400910.epw site_zip_code=26354 site_time_zone_utc_offset=-5 -County "WV, Tucker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400930.epw site_zip_code=26287 site_time_zone_utc_offset=-5 -County "WV, Tyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400950.epw site_zip_code=26175 site_time_zone_utc_offset=-5 -County "WV, Upshur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400970.epw site_zip_code=26201 site_time_zone_utc_offset=-5 -County "WV, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400990.epw site_zip_code=25704 site_time_zone_utc_offset=-5 -County "WV, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401010.epw site_zip_code=26288 site_time_zone_utc_offset=-5 -County "WV, Wetzel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401030.epw site_zip_code=26155 site_time_zone_utc_offset=-5 -County "WV, Wirt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401050.epw site_zip_code=26143 site_time_zone_utc_offset=-5 -County "WV, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401070.epw site_zip_code=26101 site_time_zone_utc_offset=-5 -County "WV, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401090.epw site_zip_code=25882 site_time_zone_utc_offset=-5 -County "WY, Albany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600010.epw site_zip_code=82070 site_time_zone_utc_offset=-7 -County "WY, Big Horn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600030.epw site_zip_code=82431 site_time_zone_utc_offset=-7 -County "WY, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600050.epw site_zip_code=82718 site_time_zone_utc_offset=-7 -County "WY, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600070.epw site_zip_code=82301 site_time_zone_utc_offset=-7 -County "WY, Converse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600090.epw site_zip_code=82633 site_time_zone_utc_offset=-7 -County "WY, Crook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600110.epw site_zip_code=82729 site_time_zone_utc_offset=-7 -County "WY, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600130.epw site_zip_code=82501 site_time_zone_utc_offset=-7 -County "WY, Goshen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600150.epw site_zip_code=82240 site_time_zone_utc_offset=-7 -County "WY, Hot Springs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600170.epw site_zip_code=82443 site_time_zone_utc_offset=-7 -County "WY, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600190.epw site_zip_code=82834 site_time_zone_utc_offset=-7 -County "WY, Laramie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600210.epw site_zip_code=82001 site_time_zone_utc_offset=-7 -County "WY, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600230.epw site_zip_code=83127 site_time_zone_utc_offset=-7 -County "WY, Natrona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600250.epw site_zip_code=82601 site_time_zone_utc_offset=-7 -County "WY, Niobrara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600270.epw site_zip_code=82225 site_time_zone_utc_offset=-7 -County "WY, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600290.epw site_zip_code=82414 site_time_zone_utc_offset=-7 -County "WY, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600310.epw site_zip_code=82201 site_time_zone_utc_offset=-7 -County "WY, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600330.epw site_zip_code=82801 site_time_zone_utc_offset=-7 -County "WY, Sublette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600350.epw site_zip_code=82941 site_time_zone_utc_offset=-7 -County "WY, Sweetwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600370.epw site_zip_code=82901 site_time_zone_utc_offset=-7 -County "WY, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600390.epw site_zip_code=83001 site_time_zone_utc_offset=-7 -County "WY, Uinta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600410.epw site_zip_code=82930 site_time_zone_utc_offset=-7 -County "WY, Washakie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600430.epw site_zip_code=82401 site_time_zone_utc_offset=-7 -County "WY, Weston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600450.epw site_zip_code=82701 site_time_zone_utc_offset=-7 -County Metro Status Metropolitan -County Metro Status Non-Metropolitan -County and PUMA "G0100010, G01002100" -County and PUMA "G0100030, G01002600" -County and PUMA "G0100050, G01002400" -County and PUMA "G0100070, G01001700" -County and PUMA "G0100090, G01000800" -County and PUMA "G0100110, G01002400" -County and PUMA "G0100130, G01002300" -County and PUMA "G0100150, G01001100" -County and PUMA "G0100170, G01001800" -County and PUMA "G0100190, G01001000" -County and PUMA "G0100210, G01001800" -County and PUMA "G0100230, G01002200" -County and PUMA "G0100250, G01002200" -County and PUMA "G0100270, G01001000" -County and PUMA "G0100290, G01001000" -County and PUMA "G0100310, G01002300" -County and PUMA "G0100330, G01000100" -County and PUMA "G0100350, G01002200" -County and PUMA "G0100370, G01001800" -County and PUMA "G0100390, G01002300" -County and PUMA "G0100410, G01002300" -County and PUMA "G0100430, G01000700" -County and PUMA "G0100450, G01002500" -County and PUMA "G0100470, G01001700" -County and PUMA "G0100490, G01000400" -County and PUMA "G0100510, G01002100" -County and PUMA "G0100530, G01002200" -County and PUMA "G0100550, G01000900" -County and PUMA "G0100570, G01001400" -County and PUMA "G0100590, G01000100" -County and PUMA "G0100610, G01002500" -County and PUMA "G0100630, G01001700" -County and PUMA "G0100650, G01001700" -County and PUMA "G0100670, G01002500" -County and PUMA "G0100690, G01002500" -County and PUMA "G0100710, G01000400" -County and PUMA "G0100730, G01001301" -County and PUMA "G0100730, G01001302" -County and PUMA "G0100730, G01001303" -County and PUMA "G0100730, G01001304" -County and PUMA "G0100730, G01001305" -County and PUMA "G0100750, G01001400" -County and PUMA "G0100770, G01000100" -County and PUMA "G0100790, G01000600" -County and PUMA "G0100810, G01001900" -County and PUMA "G0100830, G01000200" -County and PUMA "G0100850, G01002100" -County and PUMA "G0100870, G01002400" -County and PUMA "G0100890, G01000200" -County and PUMA "G0100890, G01000301" -County and PUMA "G0100890, G01000302" -County and PUMA "G0100890, G01000500" -County and PUMA "G0100910, G01001700" -County and PUMA "G0100930, G01000100" -County and PUMA "G0100930, G01001400" -County and PUMA "G0100950, G01000500" -County and PUMA "G0100970, G01002701" -County and PUMA "G0100970, G01002702" -County and PUMA "G0100970, G01002703" -County and PUMA "G0100990, G01002200" -County and PUMA "G0101010, G01002000" -County and PUMA "G0101010, G01002100" -County and PUMA "G0101030, G01000600" -County and PUMA "G0101050, G01001700" -County and PUMA "G0101070, G01001500" -County and PUMA "G0101090, G01002400" -County and PUMA "G0101110, G01001000" -County and PUMA "G0101130, G01002400" -County and PUMA "G0101150, G01000800" -County and PUMA "G0101170, G01001200" -County and PUMA "G0101190, G01001700" -County and PUMA "G0101210, G01001000" -County and PUMA "G0101230, G01001800" -County and PUMA "G0101250, G01001500" -County and PUMA "G0101250, G01001600" -County and PUMA "G0101270, G01001400" -County and PUMA "G0101290, G01002200" -County and PUMA "G0101310, G01002200" -County and PUMA "G0101330, G01000700" -County and PUMA "G0200130, G02000400" -County and PUMA "G0200160, G02000400" -County and PUMA "G0200200, G02000101" -County and PUMA "G0200200, G02000102" -County and PUMA "G0200500, G02000400" -County and PUMA "G0200600, G02000400" -County and PUMA "G0200680, G02000300" -County and PUMA "G0200700, G02000400" -County and PUMA "G0200900, G02000300" -County and PUMA "G0201000, G02000300" -County and PUMA "G0201050, G02000400" -County and PUMA "G0201100, G02000300" -County and PUMA "G0201220, G02000200" -County and PUMA "G0201300, G02000300" -County and PUMA "G0201500, G02000400" -County and PUMA "G0201580, G02000400" -County and PUMA "G0201640, G02000400" -County and PUMA "G0201700, G02000200" -County and PUMA "G0201800, G02000400" -County and PUMA "G0201850, G02000400" -County and PUMA "G0201880, G02000400" -County and PUMA "G0201950, G02000400" -County and PUMA "G0201980, G02000400" -County and PUMA "G0202200, G02000400" -County and PUMA "G0202300, G02000300" -County and PUMA "G0202400, G02000300" -County and PUMA "G0202610, G02000300" -County and PUMA "G0202750, G02000400" -County and PUMA "G0202820, G02000400" -County and PUMA "G0202900, G02000400" -County and PUMA "G0400010, G04000300" -County and PUMA "G0400030, G04000900" -County and PUMA "G0400050, G04000400" -County and PUMA "G0400070, G04000800" -County and PUMA "G0400090, G04000800" -County and PUMA "G0400110, G04000800" -County and PUMA "G0400120, G04000600" -County and PUMA "G0400130, G04000100" -County and PUMA "G0400130, G04000101" -County and PUMA "G0400130, G04000102" -County and PUMA "G0400130, G04000103" -County and PUMA "G0400130, G04000104" -County and PUMA "G0400130, G04000105" -County and PUMA "G0400130, G04000106" -County and PUMA "G0400130, G04000107" -County and PUMA "G0400130, G04000108" -County and PUMA "G0400130, G04000109" -County and PUMA "G0400130, G04000110" -County and PUMA "G0400130, G04000111" -County and PUMA "G0400130, G04000112" -County and PUMA "G0400130, G04000113" -County and PUMA "G0400130, G04000114" -County and PUMA "G0400130, G04000115" -County and PUMA "G0400130, G04000116" -County and PUMA "G0400130, G04000117" -County and PUMA "G0400130, G04000118" -County and PUMA "G0400130, G04000119" -County and PUMA "G0400130, G04000120" -County and PUMA "G0400130, G04000121" -County and PUMA "G0400130, G04000122" -County and PUMA "G0400130, G04000123" -County and PUMA "G0400130, G04000124" -County and PUMA "G0400130, G04000125" -County and PUMA "G0400130, G04000126" -County and PUMA "G0400130, G04000127" -County and PUMA "G0400130, G04000128" -County and PUMA "G0400130, G04000129" -County and PUMA "G0400130, G04000130" -County and PUMA "G0400130, G04000131" -County and PUMA "G0400130, G04000132" -County and PUMA "G0400130, G04000133" -County and PUMA "G0400130, G04000134" -County and PUMA "G0400150, G04000600" -County and PUMA "G0400170, G04000300" -County and PUMA "G0400190, G04000201" -County and PUMA "G0400190, G04000202" -County and PUMA "G0400190, G04000203" -County and PUMA "G0400190, G04000204" -County and PUMA "G0400190, G04000205" -County and PUMA "G0400190, G04000206" -County and PUMA "G0400190, G04000207" -County and PUMA "G0400190, G04000208" -County and PUMA "G0400190, G04000209" -County and PUMA "G0400210, G04000800" -County and PUMA "G0400210, G04000803" -County and PUMA "G0400210, G04000805" -County and PUMA "G0400210, G04000807" -County and PUMA "G0400230, G04000900" -County and PUMA "G0400250, G04000500" -County and PUMA "G0400270, G04000700" -County and PUMA "G0500010, G05001700" -County and PUMA "G0500010, G05001800" -County and PUMA "G0500030, G05001800" -County and PUMA "G0500050, G05000300" -County and PUMA "G0500070, G05000100" -County and PUMA "G0500090, G05000300" -County and PUMA "G0500110, G05001800" -County and PUMA "G0500130, G05001900" -County and PUMA "G0500150, G05000300" -County and PUMA "G0500170, G05001800" -County and PUMA "G0500190, G05001600" -County and PUMA "G0500210, G05000500" -County and PUMA "G0500230, G05000400" -County and PUMA "G0500250, G05001800" -County and PUMA "G0500270, G05001900" -County and PUMA "G0500290, G05001300" -County and PUMA "G0500310, G05000500" -County and PUMA "G0500310, G05000600" -County and PUMA "G0500330, G05001400" -County and PUMA "G0500350, G05000600" -County and PUMA "G0500370, G05000700" -County and PUMA "G0500390, G05001900" -County and PUMA "G0500410, G05001800" -County and PUMA "G0500430, G05001800" -County and PUMA "G0500450, G05001100" -County and PUMA "G0500470, G05001500" -County and PUMA "G0500490, G05000400" -County and PUMA "G0500510, G05001600" -County and PUMA "G0500530, G05001700" -County and PUMA "G0500550, G05000500" -County and PUMA "G0500570, G05002000" -County and PUMA "G0500590, G05001600" -County and PUMA "G0500610, G05001500" -County and PUMA "G0500630, G05000400" -County and PUMA "G0500650, G05000400" -County and PUMA "G0500670, G05000800" -County and PUMA "G0500690, G05001700" -County and PUMA "G0500710, G05001300" -County and PUMA "G0500730, G05002000" -County and PUMA "G0500750, G05000500" -County and PUMA "G0500770, G05000700" -County and PUMA "G0500790, G05001800" -County and PUMA "G0500810, G05002000" -County and PUMA "G0500830, G05001500" -County and PUMA "G0500850, G05001100" -County and PUMA "G0500870, G05000300" -County and PUMA "G0500890, G05000300" -County and PUMA "G0500910, G05002000" -County and PUMA "G0500930, G05000600" -County and PUMA "G0500950, G05000700" -County and PUMA "G0500970, G05001600" -County and PUMA "G0500990, G05002000" -County and PUMA "G0501010, G05000300" -County and PUMA "G0501030, G05001900" -County and PUMA "G0501050, G05001300" -County and PUMA "G0501070, G05000700" -County and PUMA "G0501090, G05002000" -County and PUMA "G0501110, G05000700" -County and PUMA "G0501130, G05001500" -County and PUMA "G0501150, G05001300" -County and PUMA "G0501170, G05000800" -County and PUMA "G0501190, G05000900" -County and PUMA "G0501190, G05001000" -County and PUMA "G0501210, G05000500" -County and PUMA "G0501230, G05000700" -County and PUMA "G0501250, G05001200" -County and PUMA "G0501270, G05001500" -County and PUMA "G0501290, G05000300" -County and PUMA "G0501310, G05001400" -County and PUMA "G0501330, G05001500" -County and PUMA "G0501350, G05000400" -County and PUMA "G0501370, G05000400" -County and PUMA "G0501390, G05001900" -County and PUMA "G0501410, G05000400" -County and PUMA "G0501430, G05000200" -County and PUMA "G0501450, G05000800" -County and PUMA "G0501470, G05000800" -County and PUMA "G0501490, G05001300" -County and PUMA "G0600010, G06000101" -County and PUMA "G0600010, G06000102" -County and PUMA "G0600010, G06000103" -County and PUMA "G0600010, G06000104" -County and PUMA "G0600010, G06000105" -County and PUMA "G0600010, G06000106" -County and PUMA "G0600010, G06000107" -County and PUMA "G0600010, G06000108" -County and PUMA "G0600010, G06000109" -County and PUMA "G0600010, G06000110" -County and PUMA "G0600030, G06000300" -County and PUMA "G0600050, G06000300" -County and PUMA "G0600070, G06000701" -County and PUMA "G0600070, G06000702" -County and PUMA "G0600090, G06000300" -County and PUMA "G0600110, G06001100" -County and PUMA "G0600130, G06001301" -County and PUMA "G0600130, G06001302" -County and PUMA "G0600130, G06001303" -County and PUMA "G0600130, G06001304" -County and PUMA "G0600130, G06001305" -County and PUMA "G0600130, G06001306" -County and PUMA "G0600130, G06001307" -County and PUMA "G0600130, G06001308" -County and PUMA "G0600130, G06001309" -County and PUMA "G0600150, G06001500" -County and PUMA "G0600170, G06001700" -County and PUMA "G0600190, G06001901" -County and PUMA "G0600190, G06001902" -County and PUMA "G0600190, G06001903" -County and PUMA "G0600190, G06001904" -County and PUMA "G0600190, G06001905" -County and PUMA "G0600190, G06001906" -County and PUMA "G0600190, G06001907" -County and PUMA "G0600210, G06001100" -County and PUMA "G0600230, G06002300" -County and PUMA "G0600250, G06002500" -County and PUMA "G0600270, G06000300" -County and PUMA "G0600290, G06002901" -County and PUMA "G0600290, G06002902" -County and PUMA "G0600290, G06002903" -County and PUMA "G0600290, G06002904" -County and PUMA "G0600290, G06002905" -County and PUMA "G0600310, G06003100" -County and PUMA "G0600330, G06003300" -County and PUMA "G0600350, G06001500" -County and PUMA "G0600370, G06003701" -County and PUMA "G0600370, G06003702" -County and PUMA "G0600370, G06003703" -County and PUMA "G0600370, G06003704" -County and PUMA "G0600370, G06003705" -County and PUMA "G0600370, G06003706" -County and PUMA "G0600370, G06003707" -County and PUMA "G0600370, G06003708" -County and PUMA "G0600370, G06003709" -County and PUMA "G0600370, G06003710" -County and PUMA "G0600370, G06003711" -County and PUMA "G0600370, G06003712" -County and PUMA "G0600370, G06003713" -County and PUMA "G0600370, G06003714" -County and PUMA "G0600370, G06003715" -County and PUMA "G0600370, G06003716" -County and PUMA "G0600370, G06003717" -County and PUMA "G0600370, G06003718" -County and PUMA "G0600370, G06003719" -County and PUMA "G0600370, G06003720" -County and PUMA "G0600370, G06003721" -County and PUMA "G0600370, G06003722" -County and PUMA "G0600370, G06003723" -County and PUMA "G0600370, G06003724" -County and PUMA "G0600370, G06003725" -County and PUMA "G0600370, G06003726" -County and PUMA "G0600370, G06003727" -County and PUMA "G0600370, G06003728" -County and PUMA "G0600370, G06003729" -County and PUMA "G0600370, G06003730" -County and PUMA "G0600370, G06003731" -County and PUMA "G0600370, G06003732" -County and PUMA "G0600370, G06003733" -County and PUMA "G0600370, G06003734" -County and PUMA "G0600370, G06003735" -County and PUMA "G0600370, G06003736" -County and PUMA "G0600370, G06003737" -County and PUMA "G0600370, G06003738" -County and PUMA "G0600370, G06003739" -County and PUMA "G0600370, G06003740" -County and PUMA "G0600370, G06003741" -County and PUMA "G0600370, G06003742" -County and PUMA "G0600370, G06003743" -County and PUMA "G0600370, G06003744" -County and PUMA "G0600370, G06003745" -County and PUMA "G0600370, G06003746" -County and PUMA "G0600370, G06003747" -County and PUMA "G0600370, G06003748" -County and PUMA "G0600370, G06003749" -County and PUMA "G0600370, G06003750" -County and PUMA "G0600370, G06003751" -County and PUMA "G0600370, G06003752" -County and PUMA "G0600370, G06003753" -County and PUMA "G0600370, G06003754" -County and PUMA "G0600370, G06003755" -County and PUMA "G0600370, G06003756" -County and PUMA "G0600370, G06003757" -County and PUMA "G0600370, G06003758" -County and PUMA "G0600370, G06003759" -County and PUMA "G0600370, G06003760" -County and PUMA "G0600370, G06003761" -County and PUMA "G0600370, G06003762" -County and PUMA "G0600370, G06003763" -County and PUMA "G0600370, G06003764" -County and PUMA "G0600370, G06003765" -County and PUMA "G0600370, G06003766" -County and PUMA "G0600370, G06003767" -County and PUMA "G0600370, G06003768" -County and PUMA "G0600370, G06003769" -County and PUMA "G0600390, G06003900" -County and PUMA "G0600410, G06004101" -County and PUMA "G0600410, G06004102" -County and PUMA "G0600430, G06000300" -County and PUMA "G0600450, G06003300" -County and PUMA "G0600470, G06004701" -County and PUMA "G0600470, G06004702" -County and PUMA "G0600490, G06001500" -County and PUMA "G0600510, G06000300" -County and PUMA "G0600530, G06005301" -County and PUMA "G0600530, G06005302" -County and PUMA "G0600530, G06005303" -County and PUMA "G0600550, G06005500" -County and PUMA "G0600570, G06005700" -County and PUMA "G0600590, G06005901" -County and PUMA "G0600590, G06005902" -County and PUMA "G0600590, G06005903" -County and PUMA "G0600590, G06005904" -County and PUMA "G0600590, G06005905" -County and PUMA "G0600590, G06005906" -County and PUMA "G0600590, G06005907" -County and PUMA "G0600590, G06005908" -County and PUMA "G0600590, G06005909" -County and PUMA "G0600590, G06005910" -County and PUMA "G0600590, G06005911" -County and PUMA "G0600590, G06005912" -County and PUMA "G0600590, G06005913" -County and PUMA "G0600590, G06005914" -County and PUMA "G0600590, G06005915" -County and PUMA "G0600590, G06005916" -County and PUMA "G0600590, G06005917" -County and PUMA "G0600590, G06005918" -County and PUMA "G0600610, G06006101" -County and PUMA "G0600610, G06006102" -County and PUMA "G0600610, G06006103" -County and PUMA "G0600630, G06001500" -County and PUMA "G0600650, G06006501" -County and PUMA "G0600650, G06006502" -County and PUMA "G0600650, G06006503" -County and PUMA "G0600650, G06006504" -County and PUMA "G0600650, G06006505" -County and PUMA "G0600650, G06006506" -County and PUMA "G0600650, G06006507" -County and PUMA "G0600650, G06006508" -County and PUMA "G0600650, G06006509" -County and PUMA "G0600650, G06006510" -County and PUMA "G0600650, G06006511" -County and PUMA "G0600650, G06006512" -County and PUMA "G0600650, G06006513" -County and PUMA "G0600650, G06006514" -County and PUMA "G0600650, G06006515" -County and PUMA "G0600670, G06006701" -County and PUMA "G0600670, G06006702" -County and PUMA "G0600670, G06006703" -County and PUMA "G0600670, G06006704" -County and PUMA "G0600670, G06006705" -County and PUMA "G0600670, G06006706" -County and PUMA "G0600670, G06006707" -County and PUMA "G0600670, G06006708" -County and PUMA "G0600670, G06006709" -County and PUMA "G0600670, G06006710" -County and PUMA "G0600670, G06006711" -County and PUMA "G0600670, G06006712" -County and PUMA "G0600690, G06005303" -County and PUMA "G0600710, G06007101" -County and PUMA "G0600710, G06007102" -County and PUMA "G0600710, G06007103" -County and PUMA "G0600710, G06007104" -County and PUMA "G0600710, G06007105" -County and PUMA "G0600710, G06007106" -County and PUMA "G0600710, G06007107" -County and PUMA "G0600710, G06007108" -County and PUMA "G0600710, G06007109" -County and PUMA "G0600710, G06007110" -County and PUMA "G0600710, G06007111" -County and PUMA "G0600710, G06007112" -County and PUMA "G0600710, G06007113" -County and PUMA "G0600710, G06007114" -County and PUMA "G0600710, G06007115" -County and PUMA "G0600730, G06007301" -County and PUMA "G0600730, G06007302" -County and PUMA "G0600730, G06007303" -County and PUMA "G0600730, G06007304" -County and PUMA "G0600730, G06007305" -County and PUMA "G0600730, G06007306" -County and PUMA "G0600730, G06007307" -County and PUMA "G0600730, G06007308" -County and PUMA "G0600730, G06007309" -County and PUMA "G0600730, G06007310" -County and PUMA "G0600730, G06007311" -County and PUMA "G0600730, G06007312" -County and PUMA "G0600730, G06007313" -County and PUMA "G0600730, G06007314" -County and PUMA "G0600730, G06007315" -County and PUMA "G0600730, G06007316" -County and PUMA "G0600730, G06007317" -County and PUMA "G0600730, G06007318" -County and PUMA "G0600730, G06007319" -County and PUMA "G0600730, G06007320" -County and PUMA "G0600730, G06007321" -County and PUMA "G0600730, G06007322" -County and PUMA "G0600750, G06007501" -County and PUMA "G0600750, G06007502" -County and PUMA "G0600750, G06007503" -County and PUMA "G0600750, G06007504" -County and PUMA "G0600750, G06007505" -County and PUMA "G0600750, G06007506" -County and PUMA "G0600750, G06007507" -County and PUMA "G0600770, G06007701" -County and PUMA "G0600770, G06007702" -County and PUMA "G0600770, G06007703" -County and PUMA "G0600770, G06007704" -County and PUMA "G0600790, G06007901" -County and PUMA "G0600790, G06007902" -County and PUMA "G0600810, G06008101" -County and PUMA "G0600810, G06008102" -County and PUMA "G0600810, G06008103" -County and PUMA "G0600810, G06008104" -County and PUMA "G0600810, G06008105" -County and PUMA "G0600810, G06008106" -County and PUMA "G0600830, G06008301" -County and PUMA "G0600830, G06008302" -County and PUMA "G0600830, G06008303" -County and PUMA "G0600850, G06008501" -County and PUMA "G0600850, G06008502" -County and PUMA "G0600850, G06008503" -County and PUMA "G0600850, G06008504" -County and PUMA "G0600850, G06008505" -County and PUMA "G0600850, G06008506" -County and PUMA "G0600850, G06008507" -County and PUMA "G0600850, G06008508" -County and PUMA "G0600850, G06008509" -County and PUMA "G0600850, G06008510" -County and PUMA "G0600850, G06008511" -County and PUMA "G0600850, G06008512" -County and PUMA "G0600850, G06008513" -County and PUMA "G0600850, G06008514" -County and PUMA "G0600870, G06008701" -County and PUMA "G0600870, G06008702" -County and PUMA "G0600890, G06008900" -County and PUMA "G0600910, G06005700" -County and PUMA "G0600930, G06001500" -County and PUMA "G0600950, G06009501" -County and PUMA "G0600950, G06009502" -County and PUMA "G0600950, G06009503" -County and PUMA "G0600970, G06009701" -County and PUMA "G0600970, G06009702" -County and PUMA "G0600970, G06009703" -County and PUMA "G0600990, G06009901" -County and PUMA "G0600990, G06009902" -County and PUMA "G0600990, G06009903" -County and PUMA "G0600990, G06009904" -County and PUMA "G0601010, G06010100" -County and PUMA "G0601030, G06001100" -County and PUMA "G0601050, G06001100" -County and PUMA "G0601070, G06010701" -County and PUMA "G0601070, G06010702" -County and PUMA "G0601070, G06010703" -County and PUMA "G0601090, G06000300" -County and PUMA "G0601110, G06011101" -County and PUMA "G0601110, G06011102" -County and PUMA "G0601110, G06011103" -County and PUMA "G0601110, G06011104" -County and PUMA "G0601110, G06011105" -County and PUMA "G0601110, G06011106" -County and PUMA "G0601130, G06011300" -County and PUMA "G0601150, G06010100" -County and PUMA "G0800010, G08000804" -County and PUMA "G0800010, G08000805" -County and PUMA "G0800010, G08000806" -County and PUMA "G0800010, G08000807" -County and PUMA "G0800010, G08000809" -County and PUMA "G0800010, G08000810" -County and PUMA "G0800010, G08000817" -County and PUMA "G0800010, G08000824" -County and PUMA "G0800030, G08000800" -County and PUMA "G0800050, G08000808" -County and PUMA "G0800050, G08000809" -County and PUMA "G0800050, G08000810" -County and PUMA "G0800050, G08000811" -County and PUMA "G0800050, G08000815" -County and PUMA "G0800050, G08000820" -County and PUMA "G0800050, G08000824" -County and PUMA "G0800070, G08000900" -County and PUMA "G0800090, G08000800" -County and PUMA "G0800110, G08000100" -County and PUMA "G0800130, G08000801" -County and PUMA "G0800130, G08000802" -County and PUMA "G0800130, G08000803" -County and PUMA "G0800130, G08000804" -County and PUMA "G0800140, G08000804" -County and PUMA "G0800140, G08000805" -County and PUMA "G0800150, G08000600" -County and PUMA "G0800170, G08000100" -County and PUMA "G0800190, G08000801" -County and PUMA "G0800210, G08000800" -County and PUMA "G0800230, G08000800" -County and PUMA "G0800250, G08000100" -County and PUMA "G0800270, G08000600" -County and PUMA "G0800290, G08001002" -County and PUMA "G0800310, G08000812" -County and PUMA "G0800310, G08000813" -County and PUMA "G0800310, G08000814" -County and PUMA "G0800310, G08000815" -County and PUMA "G0800310, G08000816" -County and PUMA "G0800330, G08000900" -County and PUMA "G0800350, G08000821" -County and PUMA "G0800350, G08000822" -County and PUMA "G0800350, G08000823" -County and PUMA "G0800370, G08000400" -County and PUMA "G0800390, G08000100" -County and PUMA "G0800390, G08000823" -County and PUMA "G0800410, G08004101" -County and PUMA "G0800410, G08004102" -County and PUMA "G0800410, G08004103" -County and PUMA "G0800410, G08004104" -County and PUMA "G0800410, G08004105" -County and PUMA "G0800410, G08004106" -County and PUMA "G0800430, G08000600" -County and PUMA "G0800450, G08000200" -County and PUMA "G0800470, G08000801" -County and PUMA "G0800490, G08000400" -County and PUMA "G0800510, G08000900" -County and PUMA "G0800530, G08000900" -County and PUMA "G0800550, G08000600" -County and PUMA "G0800570, G08000400" -County and PUMA "G0800590, G08000801" -County and PUMA "G0800590, G08000804" -County and PUMA "G0800590, G08000805" -County and PUMA "G0800590, G08000817" -County and PUMA "G0800590, G08000818" -County and PUMA "G0800590, G08000819" -County and PUMA "G0800590, G08000820" -County and PUMA "G0800590, G08000821" -County and PUMA "G0800610, G08000100" -County and PUMA "G0800630, G08000100" -County and PUMA "G0800650, G08000600" -County and PUMA "G0800670, G08000900" -County and PUMA "G0800690, G08000102" -County and PUMA "G0800690, G08000103" -County and PUMA "G0800710, G08000800" -County and PUMA "G0800730, G08000100" -County and PUMA "G0800750, G08000100" -County and PUMA "G0800770, G08001001" -County and PUMA "G0800770, G08001002" -County and PUMA "G0800790, G08000800" -County and PUMA "G0800810, G08000200" -County and PUMA "G0800830, G08000900" -County and PUMA "G0800850, G08001002" -County and PUMA "G0800870, G08000100" -County and PUMA "G0800890, G08000800" -County and PUMA "G0800910, G08001002" -County and PUMA "G0800930, G08000600" -County and PUMA "G0800950, G08000100" -County and PUMA "G0800970, G08000400" -County and PUMA "G0800990, G08000800" -County and PUMA "G0801010, G08000600" -County and PUMA "G0801010, G08000700" -County and PUMA "G0801010, G08000800" -County and PUMA "G0801030, G08000200" -County and PUMA "G0801050, G08000800" -County and PUMA "G0801070, G08000200" -County and PUMA "G0801090, G08000800" -County and PUMA "G0801110, G08000900" -County and PUMA "G0801130, G08001002" -County and PUMA "G0801150, G08000100" -County and PUMA "G0801170, G08000400" -County and PUMA "G0801190, G08004101" -County and PUMA "G0801210, G08000100" -County and PUMA "G0801230, G08000100" -County and PUMA "G0801230, G08000300" -County and PUMA "G0801230, G08000802" -County and PUMA "G0801230, G08000824" -County and PUMA "G0801250, G08000100" -County and PUMA "G0900010, G09000100" -County and PUMA "G0900010, G09000101" -County and PUMA "G0900010, G09000102" -County and PUMA "G0900010, G09000103" -County and PUMA "G0900010, G09000104" -County and PUMA "G0900010, G09000105" -County and PUMA "G0900030, G09000300" -County and PUMA "G0900030, G09000301" -County and PUMA "G0900030, G09000302" -County and PUMA "G0900030, G09000303" -County and PUMA "G0900030, G09000304" -County and PUMA "G0900030, G09000305" -County and PUMA "G0900030, G09000306" -County and PUMA "G0900050, G09000500" -County and PUMA "G0900070, G09000700" -County and PUMA "G0900090, G09000900" -County and PUMA "G0900090, G09000901" -County and PUMA "G0900090, G09000902" -County and PUMA "G0900090, G09000903" -County and PUMA "G0900090, G09000904" -County and PUMA "G0900090, G09000905" -County and PUMA "G0900090, G09000906" -County and PUMA "G0900110, G09001100" -County and PUMA "G0900110, G09001101" -County and PUMA "G0900130, G09001300" -County and PUMA "G0900150, G09001500" -County and PUMA "G1000010, G10000200" -County and PUMA "G1000030, G10000101" -County and PUMA "G1000030, G10000102" -County and PUMA "G1000030, G10000103" -County and PUMA "G1000030, G10000104" -County and PUMA "G1000050, G10000300" -County and PUMA "G1100010, G11000101" -County and PUMA "G1100010, G11000102" -County and PUMA "G1100010, G11000103" -County and PUMA "G1100010, G11000104" -County and PUMA "G1100010, G11000105" -County and PUMA "G1200010, G12000101" -County and PUMA "G1200010, G12000102" -County and PUMA "G1200030, G12008900" -County and PUMA "G1200050, G12000500" -County and PUMA "G1200070, G12002300" -County and PUMA "G1200090, G12000901" -County and PUMA "G1200090, G12000902" -County and PUMA "G1200090, G12000903" -County and PUMA "G1200090, G12000904" -County and PUMA "G1200110, G12001101" -County and PUMA "G1200110, G12001102" -County and PUMA "G1200110, G12001103" -County and PUMA "G1200110, G12001104" -County and PUMA "G1200110, G12001105" -County and PUMA "G1200110, G12001106" -County and PUMA "G1200110, G12001107" -County and PUMA "G1200110, G12001108" -County and PUMA "G1200110, G12001109" -County and PUMA "G1200110, G12001110" -County and PUMA "G1200110, G12001111" -County and PUMA "G1200110, G12001112" -County and PUMA "G1200110, G12001113" -County and PUMA "G1200110, G12001114" -County and PUMA "G1200130, G12006300" -County and PUMA "G1200150, G12001500" -County and PUMA "G1200170, G12001701" -County and PUMA "G1200190, G12001900" -County and PUMA "G1200210, G12002101" -County and PUMA "G1200210, G12002102" -County and PUMA "G1200210, G12002103" -County and PUMA "G1200230, G12002300" -County and PUMA "G1200270, G12002700" -County and PUMA "G1200290, G12002300" -County and PUMA "G1200310, G12003101" -County and PUMA "G1200310, G12003102" -County and PUMA "G1200310, G12003103" -County and PUMA "G1200310, G12003104" -County and PUMA "G1200310, G12003105" -County and PUMA "G1200310, G12003106" -County and PUMA "G1200310, G12003107" -County and PUMA "G1200330, G12003301" -County and PUMA "G1200330, G12003302" -County and PUMA "G1200350, G12003500" -County and PUMA "G1200370, G12006300" -County and PUMA "G1200390, G12006300" -County and PUMA "G1200410, G12002300" -County and PUMA "G1200430, G12009300" -County and PUMA "G1200450, G12006300" -County and PUMA "G1200470, G12012100" -County and PUMA "G1200490, G12002700" -County and PUMA "G1200510, G12009300" -County and PUMA "G1200530, G12005301" -County and PUMA "G1200550, G12002700" -County and PUMA "G1200550, G12009300" -County and PUMA "G1200570, G12005701" -County and PUMA "G1200570, G12005702" -County and PUMA "G1200570, G12005703" -County and PUMA "G1200570, G12005704" -County and PUMA "G1200570, G12005705" -County and PUMA "G1200570, G12005706" -County and PUMA "G1200570, G12005707" -County and PUMA "G1200570, G12005708" -County and PUMA "G1200590, G12000500" -County and PUMA "G1200610, G12006100" -County and PUMA "G1200630, G12006300" -County and PUMA "G1200650, G12006300" -County and PUMA "G1200670, G12012100" -County and PUMA "G1200690, G12006901" -County and PUMA "G1200690, G12006902" -County and PUMA "G1200690, G12006903" -County and PUMA "G1200710, G12007101" -County and PUMA "G1200710, G12007102" -County and PUMA "G1200710, G12007103" -County and PUMA "G1200710, G12007104" -County and PUMA "G1200710, G12007105" -County and PUMA "G1200730, G12007300" -County and PUMA "G1200730, G12007301" -County and PUMA "G1200750, G12002300" -County and PUMA "G1200770, G12006300" -County and PUMA "G1200790, G12012100" -County and PUMA "G1200810, G12008101" -County and PUMA "G1200810, G12008102" -County and PUMA "G1200810, G12008103" -County and PUMA "G1200830, G12008301" -County and PUMA "G1200830, G12008302" -County and PUMA "G1200830, G12008303" -County and PUMA "G1200850, G12008500" -County and PUMA "G1200860, G12008601" -County and PUMA "G1200860, G12008602" -County and PUMA "G1200860, G12008603" -County and PUMA "G1200860, G12008604" -County and PUMA "G1200860, G12008605" -County and PUMA "G1200860, G12008606" -County and PUMA "G1200860, G12008607" -County and PUMA "G1200860, G12008608" -County and PUMA "G1200860, G12008609" -County and PUMA "G1200860, G12008610" -County and PUMA "G1200860, G12008611" -County and PUMA "G1200860, G12008612" -County and PUMA "G1200860, G12008613" -County and PUMA "G1200860, G12008614" -County and PUMA "G1200860, G12008615" -County and PUMA "G1200860, G12008616" -County and PUMA "G1200860, G12008617" -County and PUMA "G1200860, G12008618" -County and PUMA "G1200860, G12008619" -County and PUMA "G1200860, G12008620" -County and PUMA "G1200860, G12008621" -County and PUMA "G1200860, G12008622" -County and PUMA "G1200860, G12008623" -County and PUMA "G1200860, G12008624" -County and PUMA "G1200860, G12008700" -County and PUMA "G1200870, G12008700" -County and PUMA "G1200890, G12008900" -County and PUMA "G1200910, G12009100" -County and PUMA "G1200930, G12009300" -County and PUMA "G1200950, G12009501" -County and PUMA "G1200950, G12009502" -County and PUMA "G1200950, G12009503" -County and PUMA "G1200950, G12009504" -County and PUMA "G1200950, G12009505" -County and PUMA "G1200950, G12009506" -County and PUMA "G1200950, G12009507" -County and PUMA "G1200950, G12009508" -County and PUMA "G1200950, G12009509" -County and PUMA "G1200950, G12009510" -County and PUMA "G1200970, G12009701" -County and PUMA "G1200970, G12009702" -County and PUMA "G1200990, G12009901" -County and PUMA "G1200990, G12009902" -County and PUMA "G1200990, G12009903" -County and PUMA "G1200990, G12009904" -County and PUMA "G1200990, G12009905" -County and PUMA "G1200990, G12009906" -County and PUMA "G1200990, G12009907" -County and PUMA "G1200990, G12009908" -County and PUMA "G1200990, G12009909" -County and PUMA "G1200990, G12009910" -County and PUMA "G1200990, G12009911" -County and PUMA "G1201010, G12010101" -County and PUMA "G1201010, G12010102" -County and PUMA "G1201010, G12010103" -County and PUMA "G1201010, G12010104" -County and PUMA "G1201030, G12010301" -County and PUMA "G1201030, G12010302" -County and PUMA "G1201030, G12010303" -County and PUMA "G1201030, G12010304" -County and PUMA "G1201030, G12010305" -County and PUMA "G1201030, G12010306" -County and PUMA "G1201030, G12010307" -County and PUMA "G1201030, G12010308" -County and PUMA "G1201050, G12010501" -County and PUMA "G1201050, G12010502" -County and PUMA "G1201050, G12010503" -County and PUMA "G1201050, G12010504" -County and PUMA "G1201070, G12010700" -County and PUMA "G1201090, G12010700" -County and PUMA "G1201090, G12010900" -County and PUMA "G1201110, G12011101" -County and PUMA "G1201110, G12011102" -County and PUMA "G1201130, G12011300" -County and PUMA "G1201150, G12011501" -County and PUMA "G1201150, G12011502" -County and PUMA "G1201150, G12011503" -County and PUMA "G1201170, G12011701" -County and PUMA "G1201170, G12011702" -County and PUMA "G1201170, G12011703" -County and PUMA "G1201170, G12011704" -County and PUMA "G1201190, G12006902" -County and PUMA "G1201190, G12006903" -County and PUMA "G1201210, G12012100" -County and PUMA "G1201230, G12012100" -County and PUMA "G1201250, G12002300" -County and PUMA "G1201270, G12003500" -County and PUMA "G1201270, G12012701" -County and PUMA "G1201270, G12012702" -County and PUMA "G1201270, G12012703" -County and PUMA "G1201270, G12012704" -County and PUMA "G1201290, G12006300" -County and PUMA "G1201310, G12000500" -County and PUMA "G1201330, G12000500" -County and PUMA "G1300010, G13001200" -County and PUMA "G1300030, G13000500" -County and PUMA "G1300050, G13000500" -County and PUMA "G1300070, G13001100" -County and PUMA "G1300090, G13001600" -County and PUMA "G1300110, G13003500" -County and PUMA "G1300130, G13003800" -County and PUMA "G1300150, G13002900" -County and PUMA "G1300170, G13000700" -County and PUMA "G1300190, G13000700" -County and PUMA "G1300210, G13001400" -County and PUMA "G1300230, G13001300" -County and PUMA "G1300250, G13000500" -County and PUMA "G1300270, G13000700" -County and PUMA "G1300290, G13000200" -County and PUMA "G1300310, G13000300" -County and PUMA "G1300330, G13004200" -County and PUMA "G1300350, G13001900" -County and PUMA "G1300370, G13001100" -County and PUMA "G1300390, G13000100" -County and PUMA "G1300430, G13001300" -County and PUMA "G1300450, G13002300" -County and PUMA "G1300470, G13002600" -County and PUMA "G1300490, G13000500" -County and PUMA "G1300510, G13000401" -County and PUMA "G1300510, G13000402" -County and PUMA "G1300530, G13001700" -County and PUMA "G1300550, G13002600" -County and PUMA "G1300570, G13003101" -County and PUMA "G1300570, G13003102" -County and PUMA "G1300590, G13003600" -County and PUMA "G1300610, G13001800" -County and PUMA "G1300630, G13005001" -County and PUMA "G1300630, G13005002" -County and PUMA "G1300650, G13000500" -County and PUMA "G1300670, G13003001" -County and PUMA "G1300670, G13003002" -County and PUMA "G1300670, G13003003" -County and PUMA "G1300670, G13003004" -County and PUMA "G1300670, G13003005" -County and PUMA "G1300690, G13000500" -County and PUMA "G1300710, G13000800" -County and PUMA "G1300730, G13004100" -County and PUMA "G1300750, G13000700" -County and PUMA "G1300770, G13002100" -County and PUMA "G1300790, G13001600" -County and PUMA "G1300810, G13001800" -County and PUMA "G1300830, G13002600" -County and PUMA "G1300850, G13003200" -County and PUMA "G1300870, G13001100" -County and PUMA "G1300890, G13001007" -County and PUMA "G1300890, G13001008" -County and PUMA "G1300890, G13002001" -County and PUMA "G1300890, G13002002" -County and PUMA "G1300890, G13002003" -County and PUMA "G1300890, G13002004" -County and PUMA "G1300910, G13001300" -County and PUMA "G1300930, G13001800" -County and PUMA "G1300950, G13000900" -County and PUMA "G1300970, G13004400" -County and PUMA "G1300990, G13001100" -County and PUMA "G1301010, G13000500" -County and PUMA "G1301030, G13000300" -County and PUMA "G1301050, G13003700" -County and PUMA "G1301070, G13001300" -County and PUMA "G1301090, G13001200" -County and PUMA "G1301110, G13002800" -County and PUMA "G1301130, G13002400" -County and PUMA "G1301150, G13002500" -County and PUMA "G1301170, G13003300" -County and PUMA "G1301190, G13003500" -County and PUMA "G1301210, G13001001" -County and PUMA "G1301210, G13001002" -County and PUMA "G1301210, G13001003" -County and PUMA "G1301210, G13001004" -County and PUMA "G1301210, G13001005" -County and PUMA "G1301210, G13001006" -County and PUMA "G1301210, G13001007" -County and PUMA "G1301210, G13004600" -County and PUMA "G1301230, G13002800" -County and PUMA "G1301250, G13004200" -County and PUMA "G1301270, G13000100" -County and PUMA "G1301290, G13002800" -County and PUMA "G1301310, G13001100" -County and PUMA "G1301330, G13003700" -County and PUMA "G1301350, G13004001" -County and PUMA "G1301350, G13004002" -County and PUMA "G1301350, G13004003" -County and PUMA "G1301350, G13004004" -County and PUMA "G1301350, G13004005" -County and PUMA "G1301350, G13004006" -County and PUMA "G1301370, G13003500" -County and PUMA "G1301390, G13003400" -County and PUMA "G1301410, G13004200" -County and PUMA "G1301430, G13002500" -County and PUMA "G1301450, G13001800" -County and PUMA "G1301470, G13003500" -County and PUMA "G1301490, G13002200" -County and PUMA "G1301510, G13006001" -County and PUMA "G1301510, G13006002" -County and PUMA "G1301530, G13001500" -County and PUMA "G1301550, G13000700" -County and PUMA "G1301570, G13003800" -County and PUMA "G1301590, G13003900" -County and PUMA "G1301610, G13001200" -County and PUMA "G1301630, G13004200" -County and PUMA "G1301650, G13004200" -County and PUMA "G1301670, G13001300" -County and PUMA "G1301690, G13001600" -County and PUMA "G1301710, G13001900" -County and PUMA "G1301730, G13000500" -County and PUMA "G1301750, G13001300" -County and PUMA "G1301770, G13000900" -County and PUMA "G1301790, G13000200" -County and PUMA "G1301810, G13004200" -County and PUMA "G1301830, G13000200" -County and PUMA "G1301850, G13000600" -County and PUMA "G1301870, G13003200" -County and PUMA "G1301890, G13004200" -County and PUMA "G1301910, G13000100" -County and PUMA "G1301930, G13001800" -County and PUMA "G1301950, G13003700" -County and PUMA "G1301970, G13001800" -County and PUMA "G1301990, G13002200" -County and PUMA "G1302010, G13001100" -County and PUMA "G1302050, G13001100" -County and PUMA "G1302070, G13001600" -County and PUMA "G1302090, G13001200" -County and PUMA "G1302110, G13003900" -County and PUMA "G1302130, G13002800" -County and PUMA "G1302150, G13001700" -County and PUMA "G1302170, G13004300" -County and PUMA "G1302190, G13003700" -County and PUMA "G1302210, G13003700" -County and PUMA "G1302230, G13004500" -County and PUMA "G1302250, G13001600" -County and PUMA "G1302270, G13002800" -County and PUMA "G1302290, G13000500" -County and PUMA "G1302310, G13001900" -County and PUMA "G1302330, G13002500" -County and PUMA "G1302350, G13001500" -County and PUMA "G1302370, G13001600" -County and PUMA "G1302390, G13001800" -County and PUMA "G1302410, G13003200" -County and PUMA "G1302430, G13001800" -County and PUMA "G1302450, G13004000" -County and PUMA "G1302470, G13004300" -County and PUMA "G1302490, G13001800" -County and PUMA "G1302510, G13000300" -County and PUMA "G1302530, G13001100" -County and PUMA "G1302550, G13001900" -County and PUMA "G1302570, G13003500" -County and PUMA "G1302590, G13001800" -County and PUMA "G1302610, G13001800" -County and PUMA "G1302630, G13001800" -County and PUMA "G1302650, G13004200" -County and PUMA "G1302670, G13001200" -County and PUMA "G1302690, G13001800" -County and PUMA "G1302710, G13001200" -County and PUMA "G1302730, G13001100" -County and PUMA "G1302750, G13000800" -County and PUMA "G1302770, G13000700" -County and PUMA "G1302790, G13001200" -County and PUMA "G1302810, G13003200" -County and PUMA "G1302830, G13001300" -County and PUMA "G1302850, G13002200" -County and PUMA "G1302870, G13000700" -County and PUMA "G1302890, G13001600" -County and PUMA "G1302910, G13003200" -County and PUMA "G1302930, G13001900" -County and PUMA "G1302950, G13002600" -County and PUMA "G1302970, G13003900" -County and PUMA "G1302990, G13000500" -County and PUMA "G1303010, G13004200" -County and PUMA "G1303030, G13004200" -County and PUMA "G1303050, G13001200" -County and PUMA "G1303070, G13001800" -County and PUMA "G1303090, G13001200" -County and PUMA "G1303110, G13003200" -County and PUMA "G1303130, G13002700" -County and PUMA "G1303150, G13001300" -County and PUMA "G1303170, G13004200" -County and PUMA "G1303190, G13001600" -County and PUMA "G1303210, G13000800" -County and PUMA "G1500010, G15000200" -County and PUMA "G1500030, G15000301" -County and PUMA "G1500030, G15000302" -County and PUMA "G1500030, G15000303" -County and PUMA "G1500030, G15000304" -County and PUMA "G1500030, G15000305" -County and PUMA "G1500030, G15000306" -County and PUMA "G1500030, G15000307" -County and PUMA "G1500030, G15000308" -County and PUMA "G1500050, G15000100" -County and PUMA "G1500070, G15000100" -County and PUMA "G1500090, G15000100" -County and PUMA "G1600010, G16000400" -County and PUMA "G1600010, G16000600" -County and PUMA "G1600010, G16000701" -County and PUMA "G1600010, G16000702" -County and PUMA "G1600010, G16000800" -County and PUMA "G1600030, G16000300" -County and PUMA "G1600050, G16001300" -County and PUMA "G1600070, G16001300" -County and PUMA "G1600090, G16000100" -County and PUMA "G1600110, G16001100" -County and PUMA "G1600110, G16001300" -County and PUMA "G1600130, G16001000" -County and PUMA "G1600150, G16000300" -County and PUMA "G1600170, G16000100" -County and PUMA "G1600190, G16001200" -County and PUMA "G1600210, G16000100" -County and PUMA "G1600230, G16000300" -County and PUMA "G1600250, G16001000" -County and PUMA "G1600270, G16000400" -County and PUMA "G1600270, G16000500" -County and PUMA "G1600270, G16000600" -County and PUMA "G1600290, G16001300" -County and PUMA "G1600310, G16000900" -County and PUMA "G1600330, G16000300" -County and PUMA "G1600350, G16000300" -County and PUMA "G1600370, G16000300" -County and PUMA "G1600390, G16001000" -County and PUMA "G1600410, G16001300" -County and PUMA "G1600430, G16001100" -County and PUMA "G1600450, G16000400" -County and PUMA "G1600470, G16001000" -County and PUMA "G1600490, G16000300" -County and PUMA "G1600510, G16001100" -County and PUMA "G1600530, G16001000" -County and PUMA "G1600550, G16000100" -County and PUMA "G1600550, G16000200" -County and PUMA "G1600570, G16000100" -County and PUMA "G1600590, G16000300" -County and PUMA "G1600610, G16000300" -County and PUMA "G1600630, G16001000" -County and PUMA "G1600650, G16001100" -County and PUMA "G1600670, G16001000" -County and PUMA "G1600690, G16000300" -County and PUMA "G1600710, G16001300" -County and PUMA "G1600730, G16000500" -County and PUMA "G1600750, G16000400" -County and PUMA "G1600770, G16001300" -County and PUMA "G1600790, G16000100" -County and PUMA "G1600810, G16001100" -County and PUMA "G1600830, G16000900" -County and PUMA "G1600850, G16000300" -County and PUMA "G1600870, G16000400" -County and PUMA "G1700010, G17000300" -County and PUMA "G1700030, G17000800" -County and PUMA "G1700050, G17000501" -County and PUMA "G1700070, G17002901" -County and PUMA "G1700090, G17000300" -County and PUMA "G1700110, G17002501" -County and PUMA "G1700130, G17000401" -County and PUMA "G1700150, G17000104" -County and PUMA "G1700170, G17000401" -County and PUMA "G1700190, G17002100" -County and PUMA "G1700210, G17001602" -County and PUMA "G1700230, G17000700" -County and PUMA "G1700250, G17000700" -County and PUMA "G1700270, G17000501" -County and PUMA "G1700290, G17000600" -County and PUMA "G1700310, G17003401" -County and PUMA "G1700310, G17003407" -County and PUMA "G1700310, G17003408" -County and PUMA "G1700310, G17003409" -County and PUMA "G1700310, G17003410" -County and PUMA "G1700310, G17003411" -County and PUMA "G1700310, G17003412" -County and PUMA "G1700310, G17003413" -County and PUMA "G1700310, G17003414" -County and PUMA "G1700310, G17003415" -County and PUMA "G1700310, G17003416" -County and PUMA "G1700310, G17003417" -County and PUMA "G1700310, G17003418" -County and PUMA "G1700310, G17003419" -County and PUMA "G1700310, G17003420" -County and PUMA "G1700310, G17003421" -County and PUMA "G1700310, G17003422" -County and PUMA "G1700310, G17003501" -County and PUMA "G1700310, G17003502" -County and PUMA "G1700310, G17003503" -County and PUMA "G1700310, G17003504" -County and PUMA "G1700310, G17003520" -County and PUMA "G1700310, G17003521" -County and PUMA "G1700310, G17003522" -County and PUMA "G1700310, G17003523" -County and PUMA "G1700310, G17003524" -County and PUMA "G1700310, G17003525" -County and PUMA "G1700310, G17003526" -County and PUMA "G1700310, G17003527" -County and PUMA "G1700310, G17003528" -County and PUMA "G1700310, G17003529" -County and PUMA "G1700310, G17003530" -County and PUMA "G1700310, G17003531" -County and PUMA "G1700310, G17003532" -County and PUMA "G1700330, G17000700" -County and PUMA "G1700350, G17000600" -County and PUMA "G1700370, G17002601" -County and PUMA "G1700390, G17001602" -County and PUMA "G1700410, G17000600" -County and PUMA "G1700430, G17003202" -County and PUMA "G1700430, G17003203" -County and PUMA "G1700430, G17003204" -County and PUMA "G1700430, G17003205" -County and PUMA "G1700430, G17003207" -County and PUMA "G1700430, G17003208" -County and PUMA "G1700430, G17003209" -County and PUMA "G1700450, G17000600" -County and PUMA "G1700470, G17000800" -County and PUMA "G1700490, G17000501" -County and PUMA "G1700510, G17000501" -County and PUMA "G1700530, G17002200" -County and PUMA "G1700550, G17000900" -County and PUMA "G1700570, G17000202" -County and PUMA "G1700590, G17000800" -County and PUMA "G1700610, G17000401" -County and PUMA "G1700630, G17003700" -County and PUMA "G1700650, G17000800" -County and PUMA "G1700670, G17000202" -County and PUMA "G1700690, G17000800" -County and PUMA "G1700710, G17000202" -County and PUMA "G1700730, G17000202" -County and PUMA "G1700750, G17002200" -County and PUMA "G1700770, G17000900" -County and PUMA "G1700790, G17000700" -County and PUMA "G1700810, G17001001" -County and PUMA "G1700830, G17000401" -County and PUMA "G1700850, G17000104" -County and PUMA "G1700870, G17000800" -County and PUMA "G1700890, G17003005" -County and PUMA "G1700890, G17003007" -County and PUMA "G1700890, G17003008" -County and PUMA "G1700890, G17003009" -County and PUMA "G1700910, G17002300" -County and PUMA "G1700930, G17003700" -County and PUMA "G1700950, G17002501" -County and PUMA "G1700970, G17003306" -County and PUMA "G1700970, G17003307" -County and PUMA "G1700970, G17003308" -County and PUMA "G1700970, G17003309" -County and PUMA "G1700970, G17003310" -County and PUMA "G1700990, G17002400" -County and PUMA "G1701010, G17000700" -County and PUMA "G1701030, G17000104" -County and PUMA "G1701050, G17002200" -County and PUMA "G1701070, G17001602" -County and PUMA "G1701090, G17000202" -County and PUMA "G1701110, G17003601" -County and PUMA "G1701110, G17003602" -County and PUMA "G1701130, G17002000" -County and PUMA "G1701150, G17001500" -County and PUMA "G1701170, G17000401" -County and PUMA "G1701190, G17001204" -County and PUMA "G1701190, G17001205" -County and PUMA "G1701210, G17001001" -County and PUMA "G1701230, G17002501" -County and PUMA "G1701250, G17000300" -County and PUMA "G1701270, G17000800" -County and PUMA "G1701290, G17001602" -County and PUMA "G1701310, G17000202" -County and PUMA "G1701330, G17001001" -County and PUMA "G1701350, G17000501" -County and PUMA "G1701370, G17000401" -County and PUMA "G1701390, G17001602" -County and PUMA "G1701410, G17002700" -County and PUMA "G1701430, G17001701" -County and PUMA "G1701450, G17000900" -County and PUMA "G1701470, G17001602" -County and PUMA "G1701490, G17000300" -County and PUMA "G1701510, G17000800" -County and PUMA "G1701530, G17000800" -County and PUMA "G1701550, G17002501" -County and PUMA "G1701570, G17001001" -County and PUMA "G1701590, G17000700" -County and PUMA "G1701610, G17000105" -County and PUMA "G1701630, G17001104" -County and PUMA "G1701630, G17001105" -County and PUMA "G1701650, G17000800" -County and PUMA "G1701670, G17001300" -County and PUMA "G1701690, G17000300" -County and PUMA "G1701710, G17000401" -County and PUMA "G1701730, G17001602" -County and PUMA "G1701750, G17002501" -County and PUMA "G1701770, G17002700" -County and PUMA "G1701790, G17001900" -County and PUMA "G1701810, G17000800" -County and PUMA "G1701830, G17002200" -County and PUMA "G1701850, G17000800" -County and PUMA "G1701870, G17000202" -County and PUMA "G1701890, G17001001" -County and PUMA "G1701910, G17000700" -County and PUMA "G1701930, G17000800" -County and PUMA "G1701950, G17000104" -County and PUMA "G1701970, G17003102" -County and PUMA "G1701970, G17003105" -County and PUMA "G1701970, G17003106" -County and PUMA "G1701970, G17003107" -County and PUMA "G1701970, G17003108" -County and PUMA "G1701990, G17000900" -County and PUMA "G1702010, G17002801" -County and PUMA "G1702010, G17002901" -County and PUMA "G1702030, G17002501" -County and PUMA "G1800010, G18000900" -County and PUMA "G1800030, G18001001" -County and PUMA "G1800030, G18001002" -County and PUMA "G1800030, G18001003" -County and PUMA "G1800050, G18002900" -County and PUMA "G1800070, G18001100" -County and PUMA "G1800090, G18001500" -County and PUMA "G1800110, G18001801" -County and PUMA "G1800130, G18002100" -County and PUMA "G1800150, G18001100" -County and PUMA "G1800170, G18001300" -County and PUMA "G1800190, G18003600" -County and PUMA "G1800210, G18001600" -County and PUMA "G1800230, G18001100" -County and PUMA "G1800250, G18003400" -County and PUMA "G1800270, G18002700" -County and PUMA "G1800290, G18003100" -County and PUMA "G1800310, G18003000" -County and PUMA "G1800330, G18000600" -County and PUMA "G1800350, G18002000" -County and PUMA "G1800370, G18003400" -County and PUMA "G1800390, G18000500" -County and PUMA "G1800410, G18002600" -County and PUMA "G1800430, G18003500" -County and PUMA "G1800450, G18001600" -County and PUMA "G1800470, G18003100" -County and PUMA "G1800490, G18000700" -County and PUMA "G1800510, G18003200" -County and PUMA "G1800530, G18001400" -County and PUMA "G1800550, G18002700" -County and PUMA "G1800570, G18001801" -County and PUMA "G1800570, G18001802" -County and PUMA "G1800570, G18001803" -County and PUMA "G1800590, G18002500" -County and PUMA "G1800610, G18003500" -County and PUMA "G1800630, G18002200" -County and PUMA "G1800650, G18001500" -County and PUMA "G1800670, G18001300" -County and PUMA "G1800690, G18000900" -County and PUMA "G1800710, G18002900" -County and PUMA "G1800730, G18000700" -County and PUMA "G1800750, G18001500" -County and PUMA "G1800770, G18003000" -County and PUMA "G1800790, G18003000" -County and PUMA "G1800810, G18002400" -County and PUMA "G1800830, G18003400" -County and PUMA "G1800850, G18000800" -County and PUMA "G1800870, G18000600" -County and PUMA "G1800890, G18000101" -County and PUMA "G1800890, G18000102" -County and PUMA "G1800890, G18000103" -County and PUMA "G1800890, G18000104" -County and PUMA "G1800910, G18000300" -County and PUMA "G1800930, G18002700" -County and PUMA "G1800950, G18001900" -County and PUMA "G1800970, G18002301" -County and PUMA "G1800970, G18002302" -County and PUMA "G1800970, G18002303" -County and PUMA "G1800970, G18002304" -County and PUMA "G1800970, G18002305" -County and PUMA "G1800970, G18002306" -County and PUMA "G1800970, G18002307" -County and PUMA "G1800990, G18000800" -County and PUMA "G1801010, G18002700" -County and PUMA "G1801030, G18001400" -County and PUMA "G1801050, G18002800" -County and PUMA "G1801070, G18001100" -County and PUMA "G1801090, G18002100" -County and PUMA "G1801110, G18000700" -County and PUMA "G1801130, G18000600" -County and PUMA "G1801150, G18003100" -County and PUMA "G1801170, G18002700" -County and PUMA "G1801190, G18002700" -County and PUMA "G1801210, G18001600" -County and PUMA "G1801230, G18003400" -County and PUMA "G1801250, G18003400" -County and PUMA "G1801270, G18000200" -County and PUMA "G1801290, G18003200" -County and PUMA "G1801310, G18000700" -County and PUMA "G1801330, G18002100" -County and PUMA "G1801350, G18001500" -County and PUMA "G1801370, G18003100" -County and PUMA "G1801390, G18002600" -County and PUMA "G1801410, G18000401" -County and PUMA "G1801410, G18000402" -County and PUMA "G1801430, G18003000" -County and PUMA "G1801450, G18002500" -County and PUMA "G1801470, G18003400" -County and PUMA "G1801490, G18000700" -County and PUMA "G1801510, G18000600" -County and PUMA "G1801530, G18001600" -County and PUMA "G1801550, G18003100" -County and PUMA "G1801570, G18001200" -County and PUMA "G1801590, G18001300" -County and PUMA "G1801610, G18002600" -County and PUMA "G1801630, G18003300" -County and PUMA "G1801650, G18001600" -County and PUMA "G1801670, G18001700" -County and PUMA "G1801690, G18001400" -County and PUMA "G1801710, G18001600" -County and PUMA "G1801730, G18003200" -County and PUMA "G1801750, G18003500" -County and PUMA "G1801770, G18002600" -County and PUMA "G1801790, G18000900" -County and PUMA "G1801810, G18001100" -County and PUMA "G1801830, G18000900" -County and PUMA "G1900010, G19001800" -County and PUMA "G1900030, G19001800" -County and PUMA "G1900050, G19000400" -County and PUMA "G1900070, G19001800" -County and PUMA "G1900090, G19001800" -County and PUMA "G1900110, G19001200" -County and PUMA "G1900130, G19000500" -County and PUMA "G1900150, G19001300" -County and PUMA "G1900170, G19000400" -County and PUMA "G1900190, G19000700" -County and PUMA "G1900210, G19001900" -County and PUMA "G1900230, G19000600" -County and PUMA "G1900250, G19001900" -County and PUMA "G1900270, G19001900" -County and PUMA "G1900290, G19002100" -County and PUMA "G1900310, G19000800" -County and PUMA "G1900330, G19000200" -County and PUMA "G1900350, G19001900" -County and PUMA "G1900370, G19000400" -County and PUMA "G1900390, G19001800" -County and PUMA "G1900410, G19000100" -County and PUMA "G1900430, G19000400" -County and PUMA "G1900450, G19000800" -County and PUMA "G1900470, G19001900" -County and PUMA "G1900490, G19001400" -County and PUMA "G1900490, G19001500" -County and PUMA "G1900510, G19002200" -County and PUMA "G1900530, G19001800" -County and PUMA "G1900550, G19000700" -County and PUMA "G1900570, G19002300" -County and PUMA "G1900590, G19000100" -County and PUMA "G1900610, G19000700" -County and PUMA "G1900630, G19000100" -County and PUMA "G1900650, G19000400" -County and PUMA "G1900670, G19000200" -County and PUMA "G1900690, G19000600" -County and PUMA "G1900710, G19002100" -County and PUMA "G1900730, G19001900" -County and PUMA "G1900750, G19000600" -County and PUMA "G1900770, G19001800" -County and PUMA "G1900790, G19000600" -County and PUMA "G1900810, G19000200" -County and PUMA "G1900830, G19000600" -County and PUMA "G1900850, G19002100" -County and PUMA "G1900870, G19002300" -County and PUMA "G1900890, G19000400" -County and PUMA "G1900910, G19000600" -County and PUMA "G1900930, G19001900" -County and PUMA "G1900950, G19001200" -County and PUMA "G1900970, G19000700" -County and PUMA "G1900990, G19001400" -County and PUMA "G1901010, G19002200" -County and PUMA "G1901030, G19001100" -County and PUMA "G1901050, G19000800" -County and PUMA "G1901070, G19002200" -County and PUMA "G1901090, G19000200" -County and PUMA "G1901110, G19002300" -County and PUMA "G1901130, G19001000" -County and PUMA "G1901150, G19002300" -County and PUMA "G1901170, G19001800" -County and PUMA "G1901190, G19000100" -County and PUMA "G1901210, G19001400" -County and PUMA "G1901230, G19002200" -County and PUMA "G1901250, G19001400" -County and PUMA "G1901270, G19001200" -County and PUMA "G1901290, G19002100" -County and PUMA "G1901310, G19000200" -County and PUMA "G1901330, G19001900" -County and PUMA "G1901350, G19001800" -County and PUMA "G1901370, G19002100" -County and PUMA "G1901390, G19000800" -County and PUMA "G1901410, G19000100" -County and PUMA "G1901430, G19000100" -County and PUMA "G1901450, G19002100" -County and PUMA "G1901470, G19000100" -County and PUMA "G1901490, G19002000" -County and PUMA "G1901510, G19001900" -County and PUMA "G1901530, G19001500" -County and PUMA "G1901530, G19001600" -County and PUMA "G1901530, G19001700" -County and PUMA "G1901550, G19002100" -County and PUMA "G1901570, G19001200" -County and PUMA "G1901590, G19001800" -County and PUMA "G1901610, G19001900" -County and PUMA "G1901630, G19000900" -County and PUMA "G1901650, G19002100" -County and PUMA "G1901670, G19000100" -County and PUMA "G1901690, G19001300" -County and PUMA "G1901710, G19001200" -County and PUMA "G1901730, G19001800" -County and PUMA "G1901750, G19001800" -County and PUMA "G1901770, G19002200" -County and PUMA "G1901790, G19002200" -County and PUMA "G1901810, G19001400" -County and PUMA "G1901830, G19002200" -County and PUMA "G1901850, G19001800" -County and PUMA "G1901870, G19000600" -County and PUMA "G1901890, G19000200" -County and PUMA "G1901910, G19000400" -County and PUMA "G1901930, G19002000" -County and PUMA "G1901950, G19000200" -County and PUMA "G1901970, G19000600" -County and PUMA "G2000010, G20001400" -County and PUMA "G2000030, G20001400" -County and PUMA "G2000050, G20000400" -County and PUMA "G2000070, G20001100" -County and PUMA "G2000090, G20001100" -County and PUMA "G2000110, G20001400" -County and PUMA "G2000130, G20000802" -County and PUMA "G2000150, G20001302" -County and PUMA "G2000150, G20001304" -County and PUMA "G2000170, G20000900" -County and PUMA "G2000190, G20000900" -County and PUMA "G2000210, G20001500" -County and PUMA "G2000230, G20000100" -County and PUMA "G2000250, G20001200" -County and PUMA "G2000270, G20000200" -County and PUMA "G2000290, G20000200" -County and PUMA "G2000310, G20000900" -County and PUMA "G2000330, G20001100" -County and PUMA "G2000350, G20000900" -County and PUMA "G2000350, G20001100" -County and PUMA "G2000370, G20001500" -County and PUMA "G2000390, G20000100" -County and PUMA "G2000410, G20000200" -County and PUMA "G2000430, G20000400" -County and PUMA "G2000450, G20000700" -County and PUMA "G2000470, G20001100" -County and PUMA "G2000490, G20000900" -County and PUMA "G2000510, G20000100" -County and PUMA "G2000530, G20000200" -County and PUMA "G2000550, G20001200" -County and PUMA "G2000570, G20001200" -County and PUMA "G2000590, G20001400" -County and PUMA "G2000610, G20000300" -County and PUMA "G2000630, G20000100" -County and PUMA "G2000650, G20000100" -County and PUMA "G2000670, G20001200" -County and PUMA "G2000690, G20001200" -County and PUMA "G2000710, G20000100" -County and PUMA "G2000730, G20000900" -County and PUMA "G2000750, G20001200" -County and PUMA "G2000770, G20001100" -County and PUMA "G2000790, G20001301" -County and PUMA "G2000810, G20001200" -County and PUMA "G2000830, G20001200" -County and PUMA "G2000850, G20000802" -County and PUMA "G2000870, G20000400" -County and PUMA "G2000890, G20000200" -County and PUMA "G2000910, G20000601" -County and PUMA "G2000910, G20000602" -County and PUMA "G2000910, G20000603" -County and PUMA "G2000910, G20000604" -County and PUMA "G2000930, G20001200" -County and PUMA "G2000950, G20001100" -County and PUMA "G2000970, G20001100" -County and PUMA "G2000990, G20001500" -County and PUMA "G2001010, G20000100" -County and PUMA "G2001030, G20000400" -County and PUMA "G2001050, G20000200" -County and PUMA "G2001070, G20001400" -County and PUMA "G2001090, G20000100" -County and PUMA "G2001110, G20000900" -County and PUMA "G2001130, G20001000" -County and PUMA "G2001150, G20000900" -County and PUMA "G2001170, G20000200" -County and PUMA "G2001190, G20001200" -County and PUMA "G2001210, G20001400" -County and PUMA "G2001230, G20000200" -County and PUMA "G2001250, G20001500" -County and PUMA "G2001270, G20000900" -County and PUMA "G2001290, G20001200" -County and PUMA "G2001310, G20000200" -County and PUMA "G2001330, G20001500" -County and PUMA "G2001350, G20000100" -County and PUMA "G2001370, G20000100" -County and PUMA "G2001390, G20000802" -County and PUMA "G2001410, G20000100" -County and PUMA "G2001430, G20000200" -County and PUMA "G2001450, G20001100" -County and PUMA "G2001470, G20000100" -County and PUMA "G2001490, G20000300" -County and PUMA "G2001510, G20001100" -County and PUMA "G2001530, G20000100" -County and PUMA "G2001550, G20001000" -County and PUMA "G2001570, G20000200" -County and PUMA "G2001590, G20001000" -County and PUMA "G2001610, G20000300" -County and PUMA "G2001630, G20000100" -County and PUMA "G2001650, G20001100" -County and PUMA "G2001670, G20000100" -County and PUMA "G2001690, G20000200" -County and PUMA "G2001710, G20000100" -County and PUMA "G2001730, G20001301" -County and PUMA "G2001730, G20001302" -County and PUMA "G2001730, G20001303" -County and PUMA "G2001730, G20001304" -County and PUMA "G2001750, G20001200" -County and PUMA "G2001770, G20000801" -County and PUMA "G2001770, G20000802" -County and PUMA "G2001790, G20000100" -County and PUMA "G2001810, G20000100" -County and PUMA "G2001830, G20000100" -County and PUMA "G2001850, G20001100" -County and PUMA "G2001870, G20001200" -County and PUMA "G2001890, G20001200" -County and PUMA "G2001910, G20001100" -County and PUMA "G2001930, G20000100" -County and PUMA "G2001950, G20000100" -County and PUMA "G2001970, G20000802" -County and PUMA "G2001990, G20000100" -County and PUMA "G2002010, G20000200" -County and PUMA "G2002030, G20000100" -County and PUMA "G2002050, G20000900" -County and PUMA "G2002070, G20000900" -County and PUMA "G2002090, G20000500" -County and PUMA "G2100010, G21000600" -County and PUMA "G2100030, G21000400" -County and PUMA "G2100050, G21002000" -County and PUMA "G2100070, G21000100" -County and PUMA "G2100090, G21000400" -County and PUMA "G2100110, G21002700" -County and PUMA "G2100130, G21000900" -County and PUMA "G2100150, G21002500" -County and PUMA "G2100170, G21002300" -County and PUMA "G2100190, G21002800" -County and PUMA "G2100210, G21002100" -County and PUMA "G2100230, G21002700" -County and PUMA "G2100250, G21001000" -County and PUMA "G2100270, G21001300" -County and PUMA "G2100290, G21001600" -County and PUMA "G2100310, G21000400" -County and PUMA "G2100330, G21000200" -County and PUMA "G2100350, G21000100" -County and PUMA "G2100370, G21002600" -County and PUMA "G2100390, G21000100" -County and PUMA "G2100410, G21002600" -County and PUMA "G2100430, G21002800" -County and PUMA "G2100450, G21000600" -County and PUMA "G2100470, G21000300" -County and PUMA "G2100490, G21002300" -County and PUMA "G2100510, G21000800" -County and PUMA "G2100530, G21000600" -County and PUMA "G2100550, G21000200" -County and PUMA "G2100570, G21000600" -County and PUMA "G2100590, G21001500" -County and PUMA "G2100610, G21000400" -County and PUMA "G2100630, G21002800" -County and PUMA "G2100650, G21002200" -County and PUMA "G2100670, G21001901" -County and PUMA "G2100670, G21001902" -County and PUMA "G2100690, G21002700" -County and PUMA "G2100710, G21001100" -County and PUMA "G2100730, G21002000" -County and PUMA "G2100750, G21000100" -County and PUMA "G2100770, G21002600" -County and PUMA "G2100790, G21002100" -County and PUMA "G2100810, G21002600" -County and PUMA "G2100830, G21000100" -County and PUMA "G2100850, G21001300" -County and PUMA "G2100870, G21000600" -County and PUMA "G2100890, G21002800" -County and PUMA "G2100910, G21001500" -County and PUMA "G2100930, G21001200" -County and PUMA "G2100930, G21001300" -County and PUMA "G2100950, G21000900" -County and PUMA "G2100970, G21002300" -County and PUMA "G2100990, G21000400" -County and PUMA "G2101010, G21001400" -County and PUMA "G2101030, G21001800" -County and PUMA "G2101050, G21000100" -County and PUMA "G2101070, G21000200" -County and PUMA "G2101090, G21000800" -County and PUMA "G2101110, G21001701" -County and PUMA "G2101110, G21001702" -County and PUMA "G2101110, G21001703" -County and PUMA "G2101110, G21001704" -County and PUMA "G2101110, G21001705" -County and PUMA "G2101110, G21001706" -County and PUMA "G2101130, G21002100" -County and PUMA "G2101150, G21001100" -County and PUMA "G2101170, G21002400" -County and PUMA "G2101190, G21001000" -County and PUMA "G2101210, G21000900" -County and PUMA "G2101230, G21001200" -County and PUMA "G2101250, G21000800" -County and PUMA "G2101270, G21002800" -County and PUMA "G2101290, G21001000" -County and PUMA "G2101310, G21001000" -County and PUMA "G2101330, G21001000" -County and PUMA "G2101350, G21002700" -County and PUMA "G2101370, G21002100" -County and PUMA "G2101390, G21000200" -County and PUMA "G2101410, G21000400" -County and PUMA "G2101430, G21000300" -County and PUMA "G2101450, G21000100" -County and PUMA "G2101470, G21000700" -County and PUMA "G2101490, G21001400" -County and PUMA "G2101510, G21002200" -County and PUMA "G2101530, G21001100" -County and PUMA "G2101550, G21001200" -County and PUMA "G2101570, G21000100" -County and PUMA "G2101590, G21001100" -County and PUMA "G2101610, G21002700" -County and PUMA "G2101630, G21001300" -County and PUMA "G2101650, G21002700" -County and PUMA "G2101670, G21002000" -County and PUMA "G2101690, G21000400" -County and PUMA "G2101710, G21000400" -County and PUMA "G2101730, G21002700" -County and PUMA "G2101750, G21002700" -County and PUMA "G2101770, G21000200" -County and PUMA "G2101790, G21001200" -County and PUMA "G2101810, G21002300" -County and PUMA "G2101830, G21001400" -County and PUMA "G2101850, G21001800" -County and PUMA "G2101870, G21002600" -County and PUMA "G2101890, G21001000" -County and PUMA "G2101910, G21002600" -County and PUMA "G2101930, G21001000" -County and PUMA "G2101950, G21001100" -County and PUMA "G2101970, G21002200" -County and PUMA "G2101990, G21000700" -County and PUMA "G2102010, G21002700" -County and PUMA "G2102030, G21000800" -County and PUMA "G2102050, G21002700" -County and PUMA "G2102070, G21000600" -County and PUMA "G2102090, G21002300" -County and PUMA "G2102110, G21001600" -County and PUMA "G2102110, G21001800" -County and PUMA "G2102130, G21000400" -County and PUMA "G2102150, G21001600" -County and PUMA "G2102170, G21000600" -County and PUMA "G2102190, G21000300" -County and PUMA "G2102210, G21000300" -County and PUMA "G2102230, G21001800" -County and PUMA "G2102250, G21001400" -County and PUMA "G2102270, G21000500" -County and PUMA "G2102290, G21001200" -County and PUMA "G2102310, G21000700" -County and PUMA "G2102330, G21001400" -County and PUMA "G2102350, G21000900" -County and PUMA "G2102370, G21001000" -County and PUMA "G2102390, G21002000" -County and PUMA "G2200010, G22001100" -County and PUMA "G2200030, G22000800" -County and PUMA "G2200050, G22001600" -County and PUMA "G2200070, G22002000" -County and PUMA "G2200090, G22000600" -County and PUMA "G2200110, G22000800" -County and PUMA "G2200130, G22000300" -County and PUMA "G2200150, G22000200" -County and PUMA "G2200170, G22000100" -County and PUMA "G2200170, G22000101" -County and PUMA "G2200190, G22000800" -County and PUMA "G2200190, G22000900" -County and PUMA "G2200210, G22000500" -County and PUMA "G2200230, G22000900" -County and PUMA "G2200250, G22000600" -County and PUMA "G2200270, G22000300" -County and PUMA "G2200290, G22000600" -County and PUMA "G2200310, G22000300" -County and PUMA "G2200330, G22001500" -County and PUMA "G2200330, G22001501" -County and PUMA "G2200330, G22001502" -County and PUMA "G2200350, G22000500" -County and PUMA "G2200370, G22001400" -County and PUMA "G2200390, G22001000" -County and PUMA "G2200410, G22000500" -County and PUMA "G2200430, G22000600" -County and PUMA "G2200450, G22001300" -County and PUMA "G2200470, G22001400" -County and PUMA "G2200490, G22000500" -County and PUMA "G2200510, G22002300" -County and PUMA "G2200510, G22002301" -County and PUMA "G2200510, G22002302" -County and PUMA "G2200510, G22002500" -County and PUMA "G2200530, G22000900" -County and PUMA "G2200550, G22001200" -County and PUMA "G2200550, G22001201" -County and PUMA "G2200570, G22002000" -County and PUMA "G2200590, G22000600" -County and PUMA "G2200610, G22000300" -County and PUMA "G2200630, G22001700" -County and PUMA "G2200650, G22000500" -County and PUMA "G2200670, G22000500" -County and PUMA "G2200690, G22000300" -County and PUMA "G2200710, G22002400" -County and PUMA "G2200710, G22002401" -County and PUMA "G2200710, G22002402" -County and PUMA "G2200730, G22000400" -County and PUMA "G2200750, G22002500" -County and PUMA "G2200770, G22001400" -County and PUMA "G2200790, G22000700" -County and PUMA "G2200810, G22000300" -County and PUMA "G2200830, G22000500" -County and PUMA "G2200850, G22000300" -County and PUMA "G2200870, G22002500" -County and PUMA "G2200890, G22001900" -County and PUMA "G2200910, G22001700" -County and PUMA "G2200930, G22001900" -County and PUMA "G2200950, G22001900" -County and PUMA "G2200970, G22001000" -County and PUMA "G2200990, G22001300" -County and PUMA "G2201010, G22001300" -County and PUMA "G2201030, G22002200" -County and PUMA "G2201030, G22002201" -County and PUMA "G2201050, G22001800" -County and PUMA "G2201070, G22000500" -County and PUMA "G2201090, G22002100" -County and PUMA "G2201110, G22000500" -County and PUMA "G2201130, G22001100" -County and PUMA "G2201150, G22000700" -County and PUMA "G2201170, G22001800" -County and PUMA "G2201190, G22000200" -County and PUMA "G2201210, G22001400" -County and PUMA "G2201230, G22000500" -County and PUMA "G2201250, G22001400" -County and PUMA "G2201270, G22000600" -County and PUMA "G2300010, G23000600" -County and PUMA "G2300030, G23000100" -County and PUMA "G2300050, G23000700" -County and PUMA "G2300050, G23000800" -County and PUMA "G2300050, G23000900" -County and PUMA "G2300050, G23001000" -County and PUMA "G2300070, G23000200" -County and PUMA "G2300090, G23000500" -County and PUMA "G2300110, G23000400" -County and PUMA "G2300130, G23000500" -County and PUMA "G2300150, G23000500" -County and PUMA "G2300170, G23000200" -County and PUMA "G2300190, G23000300" -County and PUMA "G2300210, G23000200" -County and PUMA "G2300230, G23000700" -County and PUMA "G2300250, G23000200" -County and PUMA "G2300270, G23000500" -County and PUMA "G2300290, G23000100" -County and PUMA "G2300310, G23000800" -County and PUMA "G2300310, G23000900" -County and PUMA "G2400010, G24000100" -County and PUMA "G2400030, G24001201" -County and PUMA "G2400030, G24001202" -County and PUMA "G2400030, G24001203" -County and PUMA "G2400030, G24001204" -County and PUMA "G2400050, G24000501" -County and PUMA "G2400050, G24000502" -County and PUMA "G2400050, G24000503" -County and PUMA "G2400050, G24000504" -County and PUMA "G2400050, G24000505" -County and PUMA "G2400050, G24000506" -County and PUMA "G2400050, G24000507" -County and PUMA "G2400090, G24001500" -County and PUMA "G2400110, G24001300" -County and PUMA "G2400130, G24000400" -County and PUMA "G2400150, G24000700" -County and PUMA "G2400170, G24001600" -County and PUMA "G2400190, G24001300" -County and PUMA "G2400210, G24000301" -County and PUMA "G2400210, G24000302" -County and PUMA "G2400230, G24000100" -County and PUMA "G2400250, G24000601" -County and PUMA "G2400250, G24000602" -County and PUMA "G2400270, G24000901" -County and PUMA "G2400270, G24000902" -County and PUMA "G2400290, G24001300" -County and PUMA "G2400310, G24001001" -County and PUMA "G2400310, G24001002" -County and PUMA "G2400310, G24001003" -County and PUMA "G2400310, G24001004" -County and PUMA "G2400310, G24001005" -County and PUMA "G2400310, G24001006" -County and PUMA "G2400310, G24001007" -County and PUMA "G2400330, G24001101" -County and PUMA "G2400330, G24001102" -County and PUMA "G2400330, G24001103" -County and PUMA "G2400330, G24001104" -County and PUMA "G2400330, G24001105" -County and PUMA "G2400330, G24001106" -County and PUMA "G2400330, G24001107" -County and PUMA "G2400350, G24001300" -County and PUMA "G2400370, G24001500" -County and PUMA "G2400390, G24001400" -County and PUMA "G2400410, G24001300" -County and PUMA "G2400430, G24000200" -County and PUMA "G2400450, G24001400" -County and PUMA "G2400470, G24001400" -County and PUMA "G2405100, G24000801" -County and PUMA "G2405100, G24000802" -County and PUMA "G2405100, G24000803" -County and PUMA "G2405100, G24000804" -County and PUMA "G2405100, G24000805" -County and PUMA "G2500010, G25004700" -County and PUMA "G2500010, G25004800" -County and PUMA "G2500030, G25000100" -County and PUMA "G2500050, G25004200" -County and PUMA "G2500050, G25004301" -County and PUMA "G2500050, G25004302" -County and PUMA "G2500050, G25004303" -County and PUMA "G2500050, G25004500" -County and PUMA "G2500050, G25004901" -County and PUMA "G2500070, G25004800" -County and PUMA "G2500090, G25000701" -County and PUMA "G2500090, G25000702" -County and PUMA "G2500090, G25000703" -County and PUMA "G2500090, G25000704" -County and PUMA "G2500090, G25001000" -County and PUMA "G2500090, G25001300" -County and PUMA "G2500090, G25002800" -County and PUMA "G2500110, G25000200" -County and PUMA "G2500130, G25001600" -County and PUMA "G2500130, G25001900" -County and PUMA "G2500130, G25001901" -County and PUMA "G2500130, G25001902" -County and PUMA "G2500150, G25000200" -County and PUMA "G2500150, G25001600" -County and PUMA "G2500170, G25000400" -County and PUMA "G2500170, G25000501" -County and PUMA "G2500170, G25000502" -County and PUMA "G2500170, G25000503" -County and PUMA "G2500170, G25000504" -County and PUMA "G2500170, G25000505" -County and PUMA "G2500170, G25000506" -County and PUMA "G2500170, G25000507" -County and PUMA "G2500170, G25000508" -County and PUMA "G2500170, G25001000" -County and PUMA "G2500170, G25001300" -County and PUMA "G2500170, G25001400" -County and PUMA "G2500170, G25002400" -County and PUMA "G2500170, G25002800" -County and PUMA "G2500170, G25003400" -County and PUMA "G2500170, G25003500" -County and PUMA "G2500190, G25004800" -County and PUMA "G2500210, G25002400" -County and PUMA "G2500210, G25003400" -County and PUMA "G2500210, G25003500" -County and PUMA "G2500210, G25003601" -County and PUMA "G2500210, G25003602" -County and PUMA "G2500210, G25003603" -County and PUMA "G2500210, G25003900" -County and PUMA "G2500210, G25004000" -County and PUMA "G2500210, G25004200" -County and PUMA "G2500230, G25003900" -County and PUMA "G2500230, G25004000" -County and PUMA "G2500230, G25004301" -County and PUMA "G2500230, G25004901" -County and PUMA "G2500230, G25004902" -County and PUMA "G2500230, G25004903" -County and PUMA "G2500250, G25003301" -County and PUMA "G2500250, G25003302" -County and PUMA "G2500250, G25003303" -County and PUMA "G2500250, G25003304" -County and PUMA "G2500250, G25003305" -County and PUMA "G2500250, G25003306" -County and PUMA "G2500270, G25000300" -County and PUMA "G2500270, G25000301" -County and PUMA "G2500270, G25000302" -County and PUMA "G2500270, G25000303" -County and PUMA "G2500270, G25000304" -County and PUMA "G2500270, G25000400" -County and PUMA "G2500270, G25001400" -County and PUMA "G2500270, G25002400" -County and PUMA "G2600010, G26000300" -County and PUMA "G2600030, G26000200" -County and PUMA "G2600050, G26000900" -County and PUMA "G2600070, G26000300" -County and PUMA "G2600090, G26000400" -County and PUMA "G2600110, G26001300" -County and PUMA "G2600130, G26000100" -County and PUMA "G2600150, G26002000" -County and PUMA "G2600170, G26001400" -County and PUMA "G2600190, G26000500" -County and PUMA "G2600210, G26002400" -County and PUMA "G2600230, G26002200" -County and PUMA "G2600250, G26002000" -County and PUMA "G2600270, G26002300" -County and PUMA "G2600290, G26000400" -County and PUMA "G2600310, G26000300" -County and PUMA "G2600330, G26000200" -County and PUMA "G2600350, G26001200" -County and PUMA "G2600370, G26001900" -County and PUMA "G2600390, G26000300" -County and PUMA "G2600410, G26000200" -County and PUMA "G2600430, G26000100" -County and PUMA "G2600450, G26001900" -County and PUMA "G2600470, G26000400" -County and PUMA "G2600490, G26001701" -County and PUMA "G2600490, G26001702" -County and PUMA "G2600490, G26001703" -County and PUMA "G2600490, G26001704" -County and PUMA "G2600510, G26001300" -County and PUMA "G2600530, G26000100" -County and PUMA "G2600550, G26000500" -County and PUMA "G2600570, G26001200" -County and PUMA "G2600590, G26002500" -County and PUMA "G2600610, G26000100" -County and PUMA "G2600630, G26001600" -County and PUMA "G2600650, G26001801" -County and PUMA "G2600650, G26001802" -County and PUMA "G2600670, G26001100" -County and PUMA "G2600690, G26001300" -County and PUMA "G2600710, G26000100" -County and PUMA "G2600730, G26001200" -County and PUMA "G2600750, G26002600" -County and PUMA "G2600770, G26002101" -County and PUMA "G2600770, G26002102" -County and PUMA "G2600790, G26000400" -County and PUMA "G2600810, G26001001" -County and PUMA "G2600810, G26001002" -County and PUMA "G2600810, G26001003" -County and PUMA "G2600810, G26001004" -County and PUMA "G2600830, G26000100" -County and PUMA "G2600850, G26000600" -County and PUMA "G2600870, G26001701" -County and PUMA "G2600890, G26000500" -County and PUMA "G2600910, G26002500" -County and PUMA "G2600930, G26002800" -County and PUMA "G2600950, G26000200" -County and PUMA "G2600970, G26000200" -County and PUMA "G2600990, G26003001" -County and PUMA "G2600990, G26003002" -County and PUMA "G2600990, G26003003" -County and PUMA "G2600990, G26003004" -County and PUMA "G2600990, G26003005" -County and PUMA "G2600990, G26003006" -County and PUMA "G2601010, G26000500" -County and PUMA "G2601030, G26000100" -County and PUMA "G2601050, G26000600" -County and PUMA "G2601070, G26001100" -County and PUMA "G2601090, G26000200" -County and PUMA "G2601110, G26001400" -County and PUMA "G2601130, G26000400" -County and PUMA "G2601150, G26003300" -County and PUMA "G2601170, G26001100" -County and PUMA "G2601190, G26000300" -County and PUMA "G2601210, G26000700" -County and PUMA "G2601230, G26000600" -County and PUMA "G2601250, G26002901" -County and PUMA "G2601250, G26002902" -County and PUMA "G2601250, G26002903" -County and PUMA "G2601250, G26002904" -County and PUMA "G2601250, G26002905" -County and PUMA "G2601250, G26002906" -County and PUMA "G2601250, G26002907" -County and PUMA "G2601250, G26002908" -County and PUMA "G2601270, G26000600" -County and PUMA "G2601290, G26001300" -County and PUMA "G2601310, G26000100" -County and PUMA "G2601330, G26001100" -County and PUMA "G2601350, G26000300" -County and PUMA "G2601370, G26000300" -County and PUMA "G2601390, G26000801" -County and PUMA "G2601390, G26000802" -County and PUMA "G2601410, G26000300" -County and PUMA "G2601430, G26001300" -County and PUMA "G2601450, G26001500" -County and PUMA "G2601470, G26003100" -County and PUMA "G2601490, G26002200" -County and PUMA "G2601510, G26001600" -County and PUMA "G2601530, G26000200" -County and PUMA "G2601550, G26001704" -County and PUMA "G2601570, G26001600" -County and PUMA "G2601590, G26002300" -County and PUMA "G2601610, G26002701" -County and PUMA "G2601610, G26002702" -County and PUMA "G2601610, G26002703" -County and PUMA "G2601630, G26003201" -County and PUMA "G2601630, G26003202" -County and PUMA "G2601630, G26003203" -County and PUMA "G2601630, G26003204" -County and PUMA "G2601630, G26003205" -County and PUMA "G2601630, G26003206" -County and PUMA "G2601630, G26003207" -County and PUMA "G2601630, G26003208" -County and PUMA "G2601630, G26003209" -County and PUMA "G2601630, G26003210" -County and PUMA "G2601630, G26003211" -County and PUMA "G2601630, G26003212" -County and PUMA "G2601630, G26003213" -County and PUMA "G2601650, G26000400" -County and PUMA "G2700010, G27000300" -County and PUMA "G2700030, G27001101" -County and PUMA "G2700030, G27001102" -County and PUMA "G2700030, G27001103" -County and PUMA "G2700050, G27000200" -County and PUMA "G2700070, G27000200" -County and PUMA "G2700090, G27001000" -County and PUMA "G2700110, G27000800" -County and PUMA "G2700130, G27002200" -County and PUMA "G2700150, G27002000" -County and PUMA "G2700170, G27000300" -County and PUMA "G2700170, G27000400" -County and PUMA "G2700190, G27001700" -County and PUMA "G2700210, G27000300" -County and PUMA "G2700230, G27002000" -County and PUMA "G2700250, G27000600" -County and PUMA "G2700270, G27000100" -County and PUMA "G2700290, G27000200" -County and PUMA "G2700310, G27000400" -County and PUMA "G2700330, G27002100" -County and PUMA "G2700350, G27000700" -County and PUMA "G2700370, G27001501" -County and PUMA "G2700370, G27001502" -County and PUMA "G2700370, G27001503" -County and PUMA "G2700390, G27002400" -County and PUMA "G2700410, G27000800" -County and PUMA "G2700430, G27002100" -County and PUMA "G2700450, G27002600" -County and PUMA "G2700470, G27002400" -County and PUMA "G2700490, G27002300" -County and PUMA "G2700510, G27000800" -County and PUMA "G2700530, G27001401" -County and PUMA "G2700530, G27001402" -County and PUMA "G2700530, G27001403" -County and PUMA "G2700530, G27001404" -County and PUMA "G2700530, G27001405" -County and PUMA "G2700530, G27001406" -County and PUMA "G2700530, G27001407" -County and PUMA "G2700530, G27001408" -County and PUMA "G2700530, G27001409" -County and PUMA "G2700530, G27001410" -County and PUMA "G2700550, G27002600" -County and PUMA "G2700570, G27000200" -County and PUMA "G2700590, G27000600" -County and PUMA "G2700610, G27000300" -County and PUMA "G2700630, G27002100" -County and PUMA "G2700650, G27000600" -County and PUMA "G2700670, G27001900" -County and PUMA "G2700690, G27000100" -County and PUMA "G2700710, G27000400" -County and PUMA "G2700730, G27002000" -County and PUMA "G2700750, G27000400" -County and PUMA "G2700770, G27000200" -County and PUMA "G2700790, G27002300" -County and PUMA "G2700810, G27002000" -County and PUMA "G2700830, G27002000" -County and PUMA "G2700850, G27001900" -County and PUMA "G2700870, G27000200" -County and PUMA "G2700890, G27000100" -County and PUMA "G2700910, G27002100" -County and PUMA "G2700930, G27001900" -County and PUMA "G2700950, G27000600" -County and PUMA "G2700970, G27000700" -County and PUMA "G2700990, G27002400" -County and PUMA "G2701010, G27002100" -County and PUMA "G2701030, G27002200" -County and PUMA "G2701050, G27002100" -County and PUMA "G2701070, G27000100" -County and PUMA "G2701090, G27002500" -County and PUMA "G2701110, G27000800" -County and PUMA "G2701130, G27000100" -County and PUMA "G2701150, G27000600" -County and PUMA "G2701170, G27002100" -County and PUMA "G2701190, G27000100" -County and PUMA "G2701210, G27000800" -County and PUMA "G2701230, G27001301" -County and PUMA "G2701230, G27001302" -County and PUMA "G2701230, G27001303" -County and PUMA "G2701230, G27001304" -County and PUMA "G2701250, G27000100" -County and PUMA "G2701270, G27002000" -County and PUMA "G2701290, G27001900" -County and PUMA "G2701310, G27002300" -County and PUMA "G2701330, G27002100" -County and PUMA "G2701350, G27000100" -County and PUMA "G2701370, G27000400" -County and PUMA "G2701370, G27000500" -County and PUMA "G2701390, G27001600" -County and PUMA "G2701390, G27001700" -County and PUMA "G2701410, G27001000" -County and PUMA "G2701430, G27001900" -County and PUMA "G2701450, G27000900" -County and PUMA "G2701470, G27002400" -County and PUMA "G2701490, G27000800" -County and PUMA "G2701510, G27000800" -County and PUMA "G2701530, G27000700" -County and PUMA "G2701550, G27000800" -County and PUMA "G2701570, G27002600" -County and PUMA "G2701590, G27000700" -County and PUMA "G2701610, G27002200" -County and PUMA "G2701630, G27001201" -County and PUMA "G2701630, G27001202" -County and PUMA "G2701650, G27002100" -County and PUMA "G2701670, G27000800" -County and PUMA "G2701690, G27002600" -County and PUMA "G2701710, G27001800" -County and PUMA "G2701730, G27002000" -County and PUMA "G2800010, G28001600" -County and PUMA "G2800030, G28000200" -County and PUMA "G2800050, G28001600" -County and PUMA "G2800070, G28000700" -County and PUMA "G2800090, G28000200" -County and PUMA "G2800110, G28000800" -County and PUMA "G2800130, G28000400" -County and PUMA "G2800150, G28000700" -County and PUMA "G2800170, G28000400" -County and PUMA "G2800190, G28000600" -County and PUMA "G2800210, G28001600" -County and PUMA "G2800230, G28001500" -County and PUMA "G2800250, G28000600" -County and PUMA "G2800270, G28000300" -County and PUMA "G2800290, G28001200" -County and PUMA "G2800310, G28001700" -County and PUMA "G2800330, G28000100" -County and PUMA "G2800350, G28001800" -County and PUMA "G2800370, G28001600" -County and PUMA "G2800390, G28001900" -County and PUMA "G2800410, G28001700" -County and PUMA "G2800430, G28000700" -County and PUMA "G2800450, G28001900" -County and PUMA "G2800470, G28002000" -County and PUMA "G2800490, G28001000" -County and PUMA "G2800490, G28001100" -County and PUMA "G2800490, G28001200" -County and PUMA "G2800510, G28000700" -County and PUMA "G2800530, G28000800" -County and PUMA "G2800550, G28000800" -County and PUMA "G2800570, G28000400" -County and PUMA "G2800590, G28002100" -County and PUMA "G2800610, G28001400" -County and PUMA "G2800630, G28001600" -County and PUMA "G2800650, G28001700" -County and PUMA "G2800670, G28001700" -County and PUMA "G2800690, G28001400" -County and PUMA "G2800710, G28000400" -County and PUMA "G2800730, G28001800" -County and PUMA "G2800750, G28001500" -County and PUMA "G2800770, G28001600" -County and PUMA "G2800790, G28001400" -County and PUMA "G2800810, G28000500" -County and PUMA "G2800830, G28000700" -County and PUMA "G2800850, G28001600" -County and PUMA "G2800870, G28000600" -County and PUMA "G2800890, G28000900" -County and PUMA "G2800890, G28001000" -County and PUMA "G2800910, G28001800" -County and PUMA "G2800930, G28000200" -County and PUMA "G2800950, G28000400" -County and PUMA "G2800970, G28000700" -County and PUMA "G2800990, G28001400" -County and PUMA "G2801010, G28001500" -County and PUMA "G2801030, G28000600" -County and PUMA "G2801050, G28000600" -County and PUMA "G2801070, G28000300" -County and PUMA "G2801090, G28001900" -County and PUMA "G2801110, G28001800" -County and PUMA "G2801130, G28001600" -County and PUMA "G2801150, G28000500" -County and PUMA "G2801170, G28000200" -County and PUMA "G2801190, G28000300" -County and PUMA "G2801210, G28001300" -County and PUMA "G2801230, G28001400" -County and PUMA "G2801250, G28000800" -County and PUMA "G2801270, G28001300" -County and PUMA "G2801290, G28001400" -County and PUMA "G2801310, G28001900" -County and PUMA "G2801330, G28000800" -County and PUMA "G2801350, G28000300" -County and PUMA "G2801370, G28000300" -County and PUMA "G2801390, G28000200" -County and PUMA "G2801410, G28000200" -County and PUMA "G2801430, G28000300" -County and PUMA "G2801450, G28000500" -County and PUMA "G2801470, G28001600" -County and PUMA "G2801490, G28001200" -County and PUMA "G2801510, G28000800" -County and PUMA "G2801530, G28001700" -County and PUMA "G2801550, G28000600" -County and PUMA "G2801570, G28001600" -County and PUMA "G2801590, G28000600" -County and PUMA "G2801610, G28000700" -County and PUMA "G2801630, G28000900" -County and PUMA "G2900010, G29000300" -County and PUMA "G2900030, G29000200" -County and PUMA "G2900050, G29000100" -County and PUMA "G2900070, G29000400" -County and PUMA "G2900090, G29002700" -County and PUMA "G2900110, G29001200" -County and PUMA "G2900130, G29001100" -County and PUMA "G2900150, G29001300" -County and PUMA "G2900170, G29002200" -County and PUMA "G2900190, G29000600" -County and PUMA "G2900210, G29000200" -County and PUMA "G2900230, G29002400" -County and PUMA "G2900250, G29000800" -County and PUMA "G2900270, G29000500" -County and PUMA "G2900290, G29001400" -County and PUMA "G2900310, G29002200" -County and PUMA "G2900330, G29000700" -County and PUMA "G2900350, G29002400" -County and PUMA "G2900370, G29001100" -County and PUMA "G2900390, G29001200" -County and PUMA "G2900410, G29000700" -County and PUMA "G2900430, G29002601" -County and PUMA "G2900450, G29000300" -County and PUMA "G2900470, G29000901" -County and PUMA "G2900470, G29000902" -County and PUMA "G2900470, G29000903" -County and PUMA "G2900490, G29000800" -County and PUMA "G2900510, G29000500" -County and PUMA "G2900530, G29000700" -County and PUMA "G2900550, G29001500" -County and PUMA "G2900570, G29001200" -County and PUMA "G2900590, G29001300" -County and PUMA "G2900610, G29000100" -County and PUMA "G2900630, G29000200" -County and PUMA "G2900650, G29001500" -County and PUMA "G2900670, G29002500" -County and PUMA "G2900690, G29002300" -County and PUMA "G2900710, G29001600" -County and PUMA "G2900730, G29001500" -County and PUMA "G2900750, G29000100" -County and PUMA "G2900770, G29002601" -County and PUMA "G2900770, G29002602" -County and PUMA "G2900770, G29002603" -County and PUMA "G2900790, G29000100" -County and PUMA "G2900810, G29000100" -County and PUMA "G2900830, G29001200" -County and PUMA "G2900850, G29001300" -County and PUMA "G2900870, G29000100" -County and PUMA "G2900890, G29000700" -County and PUMA "G2900910, G29002500" -County and PUMA "G2900930, G29002400" -County and PUMA "G2900950, G29001001" -County and PUMA "G2900950, G29001002" -County and PUMA "G2900950, G29001003" -County and PUMA "G2900950, G29001004" -County and PUMA "G2900950, G29001005" -County and PUMA "G2900970, G29002800" -County and PUMA "G2900990, G29002001" -County and PUMA "G2900990, G29002002" -County and PUMA "G2901010, G29000800" -County and PUMA "G2901030, G29000300" -County and PUMA "G2901050, G29001300" -County and PUMA "G2901070, G29000800" -County and PUMA "G2901090, G29001200" -County and PUMA "G2901110, G29000300" -County and PUMA "G2901130, G29000400" -County and PUMA "G2901150, G29000100" -County and PUMA "G2901170, G29000100" -County and PUMA "G2901190, G29002700" -County and PUMA "G2901210, G29000300" -County and PUMA "G2901230, G29002400" -County and PUMA "G2901250, G29001500" -County and PUMA "G2901270, G29000300" -County and PUMA "G2901290, G29000100" -County and PUMA "G2901310, G29001400" -County and PUMA "G2901330, G29002300" -County and PUMA "G2901350, G29000500" -County and PUMA "G2901370, G29000300" -County and PUMA "G2901390, G29000400" -County and PUMA "G2901410, G29001400" -County and PUMA "G2901430, G29002300" -County and PUMA "G2901450, G29002800" -County and PUMA "G2901470, G29000100" -County and PUMA "G2901490, G29002500" -County and PUMA "G2901510, G29000500" -County and PUMA "G2901530, G29002500" -County and PUMA "G2901550, G29002300" -County and PUMA "G2901570, G29002100" -County and PUMA "G2901590, G29000700" -County and PUMA "G2901610, G29001500" -County and PUMA "G2901630, G29000400" -County and PUMA "G2901650, G29000903" -County and PUMA "G2901670, G29001300" -County and PUMA "G2901690, G29001400" -County and PUMA "G2901710, G29000100" -County and PUMA "G2901730, G29000300" -County and PUMA "G2901750, G29000700" -County and PUMA "G2901770, G29000800" -County and PUMA "G2901790, G29002400" -County and PUMA "G2901810, G29002400" -County and PUMA "G2901830, G29001701" -County and PUMA "G2901830, G29001702" -County and PUMA "G2901830, G29001703" -County and PUMA "G2901850, G29001200" -County and PUMA "G2901860, G29002100" -County and PUMA "G2901870, G29002100" -County and PUMA "G2901890, G29001801" -County and PUMA "G2901890, G29001802" -County and PUMA "G2901890, G29001803" -County and PUMA "G2901890, G29001804" -County and PUMA "G2901890, G29001805" -County and PUMA "G2901890, G29001806" -County and PUMA "G2901890, G29001807" -County and PUMA "G2901890, G29001808" -County and PUMA "G2901950, G29000700" -County and PUMA "G2901970, G29000300" -County and PUMA "G2901990, G29000300" -County and PUMA "G2902010, G29002200" -County and PUMA "G2902030, G29002500" -County and PUMA "G2902050, G29000300" -County and PUMA "G2902070, G29002300" -County and PUMA "G2902090, G29002700" -County and PUMA "G2902110, G29000100" -County and PUMA "G2902130, G29002700" -County and PUMA "G2902150, G29002500" -County and PUMA "G2902170, G29001200" -County and PUMA "G2902190, G29000400" -County and PUMA "G2902210, G29002100" -County and PUMA "G2902230, G29002400" -County and PUMA "G2902250, G29002601" -County and PUMA "G2902270, G29000100" -County and PUMA "G2902290, G29002500" -County and PUMA "G2905100, G29001901" -County and PUMA "G2905100, G29001902" -County and PUMA "G3000010, G30000300" -County and PUMA "G3000030, G30000600" -County and PUMA "G3000050, G30000400" -County and PUMA "G3000070, G30000300" -County and PUMA "G3000090, G30000500" -County and PUMA "G3000110, G30000600" -County and PUMA "G3000130, G30000400" -County and PUMA "G3000150, G30000400" -County and PUMA "G3000170, G30000600" -County and PUMA "G3000190, G30000600" -County and PUMA "G3000210, G30000600" -County and PUMA "G3000230, G30000300" -County and PUMA "G3000250, G30000600" -County and PUMA "G3000270, G30000400" -County and PUMA "G3000290, G30000100" -County and PUMA "G3000310, G30000500" -County and PUMA "G3000330, G30000600" -County and PUMA "G3000350, G30000100" -County and PUMA "G3000370, G30000600" -County and PUMA "G3000390, G30000300" -County and PUMA "G3000410, G30000400" -County and PUMA "G3000430, G30000300" -County and PUMA "G3000450, G30000400" -County and PUMA "G3000470, G30000200" -County and PUMA "G3000490, G30000300" -County and PUMA "G3000510, G30000400" -County and PUMA "G3000530, G30000100" -County and PUMA "G3000550, G30000600" -County and PUMA "G3000570, G30000300" -County and PUMA "G3000590, G30000400" -County and PUMA "G3000610, G30000200" -County and PUMA "G3000630, G30000200" -County and PUMA "G3000650, G30000600" -County and PUMA "G3000670, G30000500" -County and PUMA "G3000690, G30000400" -County and PUMA "G3000710, G30000600" -County and PUMA "G3000730, G30000400" -County and PUMA "G3000750, G30000600" -County and PUMA "G3000770, G30000300" -County and PUMA "G3000790, G30000600" -County and PUMA "G3000810, G30000200" -County and PUMA "G3000830, G30000600" -County and PUMA "G3000850, G30000600" -County and PUMA "G3000870, G30000600" -County and PUMA "G3000890, G30000200" -County and PUMA "G3000910, G30000600" -County and PUMA "G3000930, G30000300" -County and PUMA "G3000950, G30000500" -County and PUMA "G3000970, G30000500" -County and PUMA "G3000990, G30000400" -County and PUMA "G3001010, G30000400" -County and PUMA "G3001030, G30000600" -County and PUMA "G3001050, G30000600" -County and PUMA "G3001070, G30000400" -County and PUMA "G3001090, G30000600" -County and PUMA "G3001110, G30000600" -County and PUMA "G3001110, G30000700" -County and PUMA "G3100010, G31000500" -County and PUMA "G3100030, G31000200" -County and PUMA "G3100050, G31000400" -County and PUMA "G3100070, G31000100" -County and PUMA "G3100090, G31000300" -County and PUMA "G3100110, G31000200" -County and PUMA "G3100130, G31000100" -County and PUMA "G3100150, G31000100" -County and PUMA "G3100170, G31000100" -County and PUMA "G3100190, G31000500" -County and PUMA "G3100210, G31000200" -County and PUMA "G3100230, G31000600" -County and PUMA "G3100250, G31000701" -County and PUMA "G3100270, G31000200" -County and PUMA "G3100290, G31000400" -County and PUMA "G3100310, G31000100" -County and PUMA "G3100330, G31000100" -County and PUMA "G3100350, G31000500" -County and PUMA "G3100370, G31000200" -County and PUMA "G3100390, G31000200" -County and PUMA "G3100410, G31000300" -County and PUMA "G3100430, G31000200" -County and PUMA "G3100450, G31000100" -County and PUMA "G3100470, G31000400" -County and PUMA "G3100490, G31000100" -County and PUMA "G3100510, G31000200" -County and PUMA "G3100530, G31000701" -County and PUMA "G3100550, G31000901" -County and PUMA "G3100550, G31000902" -County and PUMA "G3100550, G31000903" -County and PUMA "G3100550, G31000904" -County and PUMA "G3100570, G31000400" -County and PUMA "G3100590, G31000600" -County and PUMA "G3100610, G31000500" -County and PUMA "G3100630, G31000400" -County and PUMA "G3100650, G31000400" -County and PUMA "G3100670, G31000600" -County and PUMA "G3100690, G31000100" -County and PUMA "G3100710, G31000300" -County and PUMA "G3100730, G31000400" -County and PUMA "G3100750, G31000400" -County and PUMA "G3100770, G31000300" -County and PUMA "G3100790, G31000300" -County and PUMA "G3100810, G31000300" -County and PUMA "G3100830, G31000500" -County and PUMA "G3100850, G31000400" -County and PUMA "G3100870, G31000400" -County and PUMA "G3100890, G31000100" -County and PUMA "G3100910, G31000400" -County and PUMA "G3100930, G31000300" -County and PUMA "G3100950, G31000600" -County and PUMA "G3100970, G31000600" -County and PUMA "G3100990, G31000500" -County and PUMA "G3101010, G31000400" -County and PUMA "G3101030, G31000100" -County and PUMA "G3101050, G31000100" -County and PUMA "G3101070, G31000200" -County and PUMA "G3101090, G31000801" -County and PUMA "G3101090, G31000802" -County and PUMA "G3101110, G31000400" -County and PUMA "G3101130, G31000400" -County and PUMA "G3101150, G31000300" -County and PUMA "G3101170, G31000400" -County and PUMA "G3101190, G31000200" -County and PUMA "G3101210, G31000300" -County and PUMA "G3101230, G31000100" -County and PUMA "G3101250, G31000200" -County and PUMA "G3101270, G31000600" -County and PUMA "G3101290, G31000500" -County and PUMA "G3101310, G31000600" -County and PUMA "G3101330, G31000600" -County and PUMA "G3101350, G31000400" -County and PUMA "G3101370, G31000500" -County and PUMA "G3101390, G31000200" -County and PUMA "G3101410, G31000200" -County and PUMA "G3101430, G31000600" -County and PUMA "G3101450, G31000400" -County and PUMA "G3101470, G31000600" -County and PUMA "G3101490, G31000100" -County and PUMA "G3101510, G31000600" -County and PUMA "G3101530, G31000702" -County and PUMA "G3101550, G31000701" -County and PUMA "G3101570, G31000100" -County and PUMA "G3101590, G31000600" -County and PUMA "G3101610, G31000100" -County and PUMA "G3101630, G31000300" -County and PUMA "G3101650, G31000100" -County and PUMA "G3101670, G31000200" -County and PUMA "G3101690, G31000600" -County and PUMA "G3101710, G31000400" -County and PUMA "G3101730, G31000200" -County and PUMA "G3101750, G31000300" -County and PUMA "G3101770, G31000701" -County and PUMA "G3101790, G31000200" -County and PUMA "G3101810, G31000500" -County and PUMA "G3101830, G31000300" -County and PUMA "G3101850, G31000600" -County and PUMA "G3200010, G32000300" -County and PUMA "G3200030, G32000401" -County and PUMA "G3200030, G32000402" -County and PUMA "G3200030, G32000403" -County and PUMA "G3200030, G32000404" -County and PUMA "G3200030, G32000405" -County and PUMA "G3200030, G32000406" -County and PUMA "G3200030, G32000407" -County and PUMA "G3200030, G32000408" -County and PUMA "G3200030, G32000409" -County and PUMA "G3200030, G32000410" -County and PUMA "G3200030, G32000411" -County and PUMA "G3200030, G32000412" -County and PUMA "G3200030, G32000413" -County and PUMA "G3200050, G32000200" -County and PUMA "G3200070, G32000300" -County and PUMA "G3200090, G32000300" -County and PUMA "G3200110, G32000300" -County and PUMA "G3200130, G32000300" -County and PUMA "G3200150, G32000300" -County and PUMA "G3200170, G32000300" -County and PUMA "G3200190, G32000200" -County and PUMA "G3200210, G32000300" -County and PUMA "G3200230, G32000300" -County and PUMA "G3200270, G32000300" -County and PUMA "G3200290, G32000200" -County and PUMA "G3200310, G32000101" -County and PUMA "G3200310, G32000102" -County and PUMA "G3200310, G32000103" -County and PUMA "G3200330, G32000300" -County and PUMA "G3205100, G32000200" -County and PUMA "G3300010, G33000200" -County and PUMA "G3300030, G33000200" -County and PUMA "G3300030, G33000300" -County and PUMA "G3300050, G33000500" -County and PUMA "G3300070, G33000100" -County and PUMA "G3300090, G33000100" -County and PUMA "G3300110, G33000600" -County and PUMA "G3300110, G33000700" -County and PUMA "G3300110, G33000800" -County and PUMA "G3300110, G33000900" -County and PUMA "G3300130, G33000200" -County and PUMA "G3300130, G33000400" -County and PUMA "G3300130, G33000700" -County and PUMA "G3300150, G33000300" -County and PUMA "G3300150, G33000700" -County and PUMA "G3300150, G33001000" -County and PUMA "G3300170, G33000300" -County and PUMA "G3300190, G33000500" -County and PUMA "G3400010, G34000101" -County and PUMA "G3400010, G34000102" -County and PUMA "G3400010, G34002600" -County and PUMA "G3400030, G34000301" -County and PUMA "G3400030, G34000302" -County and PUMA "G3400030, G34000303" -County and PUMA "G3400030, G34000304" -County and PUMA "G3400030, G34000305" -County and PUMA "G3400030, G34000306" -County and PUMA "G3400030, G34000307" -County and PUMA "G3400030, G34000308" -County and PUMA "G3400050, G34002001" -County and PUMA "G3400050, G34002002" -County and PUMA "G3400050, G34002003" -County and PUMA "G3400070, G34002101" -County and PUMA "G3400070, G34002102" -County and PUMA "G3400070, G34002103" -County and PUMA "G3400070, G34002104" -County and PUMA "G3400090, G34002600" -County and PUMA "G3400110, G34002400" -County and PUMA "G3400110, G34002500" -County and PUMA "G3400130, G34001301" -County and PUMA "G3400130, G34001302" -County and PUMA "G3400130, G34001401" -County and PUMA "G3400130, G34001402" -County and PUMA "G3400130, G34001403" -County and PUMA "G3400130, G34001404" -County and PUMA "G3400150, G34002201" -County and PUMA "G3400150, G34002202" -County and PUMA "G3400170, G34000601" -County and PUMA "G3400170, G34000602" -County and PUMA "G3400170, G34000701" -County and PUMA "G3400170, G34000702" -County and PUMA "G3400170, G34000703" -County and PUMA "G3400190, G34000800" -County and PUMA "G3400210, G34002301" -County and PUMA "G3400210, G34002302" -County and PUMA "G3400210, G34002303" -County and PUMA "G3400230, G34000901" -County and PUMA "G3400230, G34000902" -County and PUMA "G3400230, G34000903" -County and PUMA "G3400230, G34000904" -County and PUMA "G3400230, G34000905" -County and PUMA "G3400230, G34000906" -County and PUMA "G3400230, G34000907" -County and PUMA "G3400250, G34001101" -County and PUMA "G3400250, G34001102" -County and PUMA "G3400250, G34001103" -County and PUMA "G3400250, G34001104" -County and PUMA "G3400250, G34001105" -County and PUMA "G3400250, G34001106" -County and PUMA "G3400270, G34001501" -County and PUMA "G3400270, G34001502" -County and PUMA "G3400270, G34001503" -County and PUMA "G3400270, G34001504" -County and PUMA "G3400290, G34001201" -County and PUMA "G3400290, G34001202" -County and PUMA "G3400290, G34001203" -County and PUMA "G3400290, G34001204" -County and PUMA "G3400290, G34001205" -County and PUMA "G3400310, G34000400" -County and PUMA "G3400310, G34000501" -County and PUMA "G3400310, G34000502" -County and PUMA "G3400310, G34000503" -County and PUMA "G3400330, G34002500" -County and PUMA "G3400350, G34001001" -County and PUMA "G3400350, G34001002" -County and PUMA "G3400350, G34001003" -County and PUMA "G3400370, G34001600" -County and PUMA "G3400390, G34001800" -County and PUMA "G3400390, G34001901" -County and PUMA "G3400390, G34001902" -County and PUMA "G3400390, G34001903" -County and PUMA "G3400390, G34001904" -County and PUMA "G3400410, G34001700" -County and PUMA "G3500010, G35000700" -County and PUMA "G3500010, G35000801" -County and PUMA "G3500010, G35000802" -County and PUMA "G3500010, G35000803" -County and PUMA "G3500010, G35000804" -County and PUMA "G3500010, G35000805" -County and PUMA "G3500010, G35000806" -County and PUMA "G3500030, G35000900" -County and PUMA "G3500050, G35001100" -County and PUMA "G3500060, G35000100" -County and PUMA "G3500070, G35000400" -County and PUMA "G3500090, G35000400" -County and PUMA "G3500110, G35000400" -County and PUMA "G3500130, G35001001" -County and PUMA "G3500130, G35001002" -County and PUMA "G3500150, G35001200" -County and PUMA "G3500170, G35000900" -County and PUMA "G3500190, G35000400" -County and PUMA "G3500210, G35000400" -County and PUMA "G3500230, G35000900" -County and PUMA "G3500250, G35001200" -County and PUMA "G3500270, G35001100" -County and PUMA "G3500280, G35000300" -County and PUMA "G3500290, G35000900" -County and PUMA "G3500310, G35000100" -County and PUMA "G3500330, G35000300" -County and PUMA "G3500350, G35001100" -County and PUMA "G3500370, G35000400" -County and PUMA "G3500390, G35000300" -County and PUMA "G3500410, G35000400" -County and PUMA "G3500430, G35000600" -County and PUMA "G3500450, G35000100" -County and PUMA "G3500450, G35000200" -County and PUMA "G3500470, G35000300" -County and PUMA "G3500490, G35000500" -County and PUMA "G3500510, G35000900" -County and PUMA "G3500530, G35000900" -County and PUMA "G3500550, G35000300" -County and PUMA "G3500570, G35000900" -County and PUMA "G3500590, G35000400" -County and PUMA "G3500610, G35000700" -County and PUMA "G3600010, G36002001" -County and PUMA "G3600010, G36002002" -County and PUMA "G3600030, G36002500" -County and PUMA "G3600050, G36003701" -County and PUMA "G3600050, G36003702" -County and PUMA "G3600050, G36003703" -County and PUMA "G3600050, G36003704" -County and PUMA "G3600050, G36003705" -County and PUMA "G3600050, G36003706" -County and PUMA "G3600050, G36003707" -County and PUMA "G3600050, G36003708" -County and PUMA "G3600050, G36003709" -County and PUMA "G3600050, G36003710" -County and PUMA "G3600070, G36002201" -County and PUMA "G3600070, G36002202" -County and PUMA "G3600070, G36002203" -County and PUMA "G3600090, G36002500" -County and PUMA "G3600110, G36000704" -County and PUMA "G3600130, G36002600" -County and PUMA "G3600150, G36002401" -County and PUMA "G3600150, G36002402" -County and PUMA "G3600170, G36002203" -County and PUMA "G3600190, G36000200" -County and PUMA "G3600210, G36002100" -County and PUMA "G3600230, G36001500" -County and PUMA "G3600250, G36002203" -County and PUMA "G3600270, G36002801" -County and PUMA "G3600270, G36002802" -County and PUMA "G3600290, G36001201" -County and PUMA "G3600290, G36001202" -County and PUMA "G3600290, G36001203" -County and PUMA "G3600290, G36001204" -County and PUMA "G3600290, G36001205" -County and PUMA "G3600290, G36001206" -County and PUMA "G3600290, G36001207" -County and PUMA "G3600310, G36000200" -County and PUMA "G3600330, G36000200" -County and PUMA "G3600350, G36001600" -County and PUMA "G3600370, G36001000" -County and PUMA "G3600390, G36002100" -County and PUMA "G3600410, G36000200" -County and PUMA "G3600430, G36000401" -County and PUMA "G3600430, G36000403" -County and PUMA "G3600450, G36000500" -County and PUMA "G3600470, G36004001" -County and PUMA "G3600470, G36004002" -County and PUMA "G3600470, G36004003" -County and PUMA "G3600470, G36004004" -County and PUMA "G3600470, G36004005" -County and PUMA "G3600470, G36004006" -County and PUMA "G3600470, G36004007" -County and PUMA "G3600470, G36004008" -County and PUMA "G3600470, G36004009" -County and PUMA "G3600470, G36004010" -County and PUMA "G3600470, G36004011" -County and PUMA "G3600470, G36004012" -County and PUMA "G3600470, G36004013" -County and PUMA "G3600470, G36004014" -County and PUMA "G3600470, G36004015" -County and PUMA "G3600470, G36004016" -County and PUMA "G3600470, G36004017" -County and PUMA "G3600470, G36004018" -County and PUMA "G3600490, G36000500" -County and PUMA "G3600510, G36001300" -County and PUMA "G3600530, G36001500" -County and PUMA "G3600550, G36000901" -County and PUMA "G3600550, G36000902" -County and PUMA "G3600550, G36000903" -County and PUMA "G3600550, G36000904" -County and PUMA "G3600550, G36000905" -County and PUMA "G3600550, G36000906" -County and PUMA "G3600570, G36001600" -County and PUMA "G3600590, G36003201" -County and PUMA "G3600590, G36003202" -County and PUMA "G3600590, G36003203" -County and PUMA "G3600590, G36003204" -County and PUMA "G3600590, G36003205" -County and PUMA "G3600590, G36003206" -County and PUMA "G3600590, G36003207" -County and PUMA "G3600590, G36003208" -County and PUMA "G3600590, G36003209" -County and PUMA "G3600590, G36003210" -County and PUMA "G3600590, G36003211" -County and PUMA "G3600590, G36003212" -County and PUMA "G3600610, G36003801" -County and PUMA "G3600610, G36003802" -County and PUMA "G3600610, G36003803" -County and PUMA "G3600610, G36003804" -County and PUMA "G3600610, G36003805" -County and PUMA "G3600610, G36003806" -County and PUMA "G3600610, G36003807" -County and PUMA "G3600610, G36003808" -County and PUMA "G3600610, G36003809" -County and PUMA "G3600610, G36003810" -County and PUMA "G3600630, G36001101" -County and PUMA "G3600630, G36001102" -County and PUMA "G3600650, G36000401" -County and PUMA "G3600650, G36000402" -County and PUMA "G3600650, G36000403" -County and PUMA "G3600670, G36000701" -County and PUMA "G3600670, G36000702" -County and PUMA "G3600670, G36000703" -County and PUMA "G3600670, G36000704" -County and PUMA "G3600690, G36001400" -County and PUMA "G3600710, G36002901" -County and PUMA "G3600710, G36002902" -County and PUMA "G3600710, G36002903" -County and PUMA "G3600730, G36001000" -County and PUMA "G3600750, G36000600" -County and PUMA "G3600770, G36000403" -County and PUMA "G3600790, G36003101" -County and PUMA "G3600810, G36004101" -County and PUMA "G3600810, G36004102" -County and PUMA "G3600810, G36004103" -County and PUMA "G3600810, G36004104" -County and PUMA "G3600810, G36004105" -County and PUMA "G3600810, G36004106" -County and PUMA "G3600810, G36004107" -County and PUMA "G3600810, G36004108" -County and PUMA "G3600810, G36004109" -County and PUMA "G3600810, G36004110" -County and PUMA "G3600810, G36004111" -County and PUMA "G3600810, G36004112" -County and PUMA "G3600810, G36004113" -County and PUMA "G3600810, G36004114" -County and PUMA "G3600830, G36001900" -County and PUMA "G3600850, G36003901" -County and PUMA "G3600850, G36003902" -County and PUMA "G3600850, G36003903" -County and PUMA "G3600870, G36003001" -County and PUMA "G3600870, G36003002" -County and PUMA "G3600870, G36003003" -County and PUMA "G3600890, G36000100" -County and PUMA "G3600910, G36001801" -County and PUMA "G3600910, G36001802" -County and PUMA "G3600930, G36001700" -County and PUMA "G3600950, G36000403" -County and PUMA "G3600970, G36002402" -County and PUMA "G3600990, G36000800" -County and PUMA "G3601010, G36002401" -County and PUMA "G3601010, G36002402" -County and PUMA "G3601030, G36003301" -County and PUMA "G3601030, G36003302" -County and PUMA "G3601030, G36003303" -County and PUMA "G3601030, G36003304" -County and PUMA "G3601030, G36003305" -County and PUMA "G3601030, G36003306" -County and PUMA "G3601030, G36003307" -County and PUMA "G3601030, G36003308" -County and PUMA "G3601030, G36003309" -County and PUMA "G3601030, G36003310" -County and PUMA "G3601030, G36003311" -County and PUMA "G3601030, G36003312" -County and PUMA "G3601030, G36003313" -County and PUMA "G3601050, G36002701" -County and PUMA "G3601070, G36002202" -County and PUMA "G3601090, G36002300" -County and PUMA "G3601110, G36002701" -County and PUMA "G3601110, G36002702" -County and PUMA "G3601130, G36000300" -County and PUMA "G3601150, G36000300" -County and PUMA "G3601170, G36000800" -County and PUMA "G3601190, G36003101" -County and PUMA "G3601190, G36003102" -County and PUMA "G3601190, G36003103" -County and PUMA "G3601190, G36003104" -County and PUMA "G3601190, G36003105" -County and PUMA "G3601190, G36003106" -County and PUMA "G3601190, G36003107" -County and PUMA "G3601210, G36001300" -County and PUMA "G3601230, G36001400" -County and PUMA "G3700010, G37001600" -County and PUMA "G3700030, G37002000" -County and PUMA "G3700050, G37000200" -County and PUMA "G3700070, G37005300" -County and PUMA "G3700090, G37000100" -County and PUMA "G3700110, G37000100" -County and PUMA "G3700130, G37004400" -County and PUMA "G3700150, G37000800" -County and PUMA "G3700170, G37004900" -County and PUMA "G3700190, G37004800" -County and PUMA "G3700210, G37002201" -County and PUMA "G3700210, G37002202" -County and PUMA "G3700230, G37002100" -County and PUMA "G3700250, G37003200" -County and PUMA "G3700250, G37003300" -County and PUMA "G3700270, G37002000" -County and PUMA "G3700290, G37000700" -County and PUMA "G3700310, G37004400" -County and PUMA "G3700330, G37000400" -County and PUMA "G3700350, G37002800" -County and PUMA "G3700370, G37001500" -County and PUMA "G3700390, G37002400" -County and PUMA "G3700410, G37000700" -County and PUMA "G3700430, G37002400" -County and PUMA "G3700450, G37002600" -County and PUMA "G3700450, G37002700" -County and PUMA "G3700470, G37004900" -County and PUMA "G3700490, G37004300" -County and PUMA "G3700510, G37005001" -County and PUMA "G3700510, G37005002" -County and PUMA "G3700510, G37005003" -County and PUMA "G3700530, G37000700" -County and PUMA "G3700550, G37000800" -County and PUMA "G3700570, G37003500" -County and PUMA "G3700590, G37001900" -County and PUMA "G3700610, G37003900" -County and PUMA "G3700630, G37001301" -County and PUMA "G3700630, G37001302" -County and PUMA "G3700650, G37000900" -County and PUMA "G3700670, G37001801" -County and PUMA "G3700670, G37001802" -County and PUMA "G3700670, G37001803" -County and PUMA "G3700690, G37000500" -County and PUMA "G3700710, G37003001" -County and PUMA "G3700710, G37003002" -County and PUMA "G3700730, G37000700" -County and PUMA "G3700750, G37002300" -County and PUMA "G3700770, G37000400" -County and PUMA "G3700790, G37001000" -County and PUMA "G3700810, G37001701" -County and PUMA "G3700810, G37001702" -County and PUMA "G3700810, G37001703" -County and PUMA "G3700810, G37001704" -County and PUMA "G3700830, G37000600" -County and PUMA "G3700850, G37003800" -County and PUMA "G3700870, G37002300" -County and PUMA "G3700890, G37002500" -County and PUMA "G3700910, G37000600" -County and PUMA "G3700930, G37005200" -County and PUMA "G3700950, G37000800" -County and PUMA "G3700970, G37001900" -County and PUMA "G3700970, G37002900" -County and PUMA "G3700990, G37002300" -County and PUMA "G3700990, G37002400" -County and PUMA "G3701010, G37001100" -County and PUMA "G3701030, G37004100" -County and PUMA "G3701050, G37001500" -County and PUMA "G3701070, G37004100" -County and PUMA "G3701090, G37002700" -County and PUMA "G3701110, G37002100" -County and PUMA "G3701130, G37002400" -County and PUMA "G3701150, G37002300" -County and PUMA "G3701170, G37000800" -County and PUMA "G3701190, G37003101" -County and PUMA "G3701190, G37003102" -County and PUMA "G3701190, G37003103" -County and PUMA "G3701190, G37003104" -County and PUMA "G3701190, G37003105" -County and PUMA "G3701190, G37003106" -County and PUMA "G3701190, G37003107" -County and PUMA "G3701190, G37003108" -County and PUMA "G3701210, G37000100" -County and PUMA "G3701230, G37003700" -County and PUMA "G3701250, G37003700" -County and PUMA "G3701270, G37000900" -County and PUMA "G3701290, G37004600" -County and PUMA "G3701290, G37004700" -County and PUMA "G3701310, G37000600" -County and PUMA "G3701330, G37004100" -County and PUMA "G3701330, G37004500" -County and PUMA "G3701350, G37001400" -County and PUMA "G3701370, G37004400" -County and PUMA "G3701390, G37000700" -County and PUMA "G3701410, G37004600" -County and PUMA "G3701430, G37000700" -County and PUMA "G3701450, G37000400" -County and PUMA "G3701470, G37004200" -County and PUMA "G3701490, G37002600" -County and PUMA "G3701510, G37003600" -County and PUMA "G3701530, G37005200" -County and PUMA "G3701550, G37004900" -County and PUMA "G3701550, G37005100" -County and PUMA "G3701570, G37000300" -County and PUMA "G3701590, G37003400" -County and PUMA "G3701610, G37002600" -County and PUMA "G3701630, G37003900" -County and PUMA "G3701650, G37005200" -County and PUMA "G3701670, G37003300" -County and PUMA "G3701690, G37000300" -County and PUMA "G3701710, G37000200" -County and PUMA "G3701730, G37002300" -County and PUMA "G3701750, G37002500" -County and PUMA "G3701770, G37000800" -County and PUMA "G3701790, G37005300" -County and PUMA "G3701790, G37005400" -County and PUMA "G3701810, G37000500" -County and PUMA "G3701830, G37001201" -County and PUMA "G3701830, G37001202" -County and PUMA "G3701830, G37001203" -County and PUMA "G3701830, G37001204" -County and PUMA "G3701830, G37001205" -County and PUMA "G3701830, G37001206" -County and PUMA "G3701830, G37001207" -County and PUMA "G3701830, G37001208" -County and PUMA "G3701850, G37000500" -County and PUMA "G3701850, G37000600" -County and PUMA "G3701870, G37000800" -County and PUMA "G3701890, G37000100" -County and PUMA "G3701910, G37004000" -County and PUMA "G3701930, G37000200" -County and PUMA "G3701950, G37001000" -County and PUMA "G3701970, G37001900" -County and PUMA "G3701990, G37000100" -County and PUMA "G3800010, G38000100" -County and PUMA "G3800030, G38000200" -County and PUMA "G3800050, G38000200" -County and PUMA "G3800070, G38000100" -County and PUMA "G3800090, G38000200" -County and PUMA "G3800110, G38000100" -County and PUMA "G3800130, G38000100" -County and PUMA "G3800150, G38000300" -County and PUMA "G3800170, G38000500" -County and PUMA "G3800190, G38000400" -County and PUMA "G3800210, G38000200" -County and PUMA "G3800230, G38000100" -County and PUMA "G3800250, G38000100" -County and PUMA "G3800270, G38000200" -County and PUMA "G3800290, G38000300" -County and PUMA "G3800310, G38000200" -County and PUMA "G3800330, G38000100" -County and PUMA "G3800350, G38000400" -County and PUMA "G3800370, G38000100" -County and PUMA "G3800390, G38000400" -County and PUMA "G3800410, G38000100" -County and PUMA "G3800430, G38000300" -County and PUMA "G3800450, G38000200" -County and PUMA "G3800470, G38000300" -County and PUMA "G3800490, G38000100" -County and PUMA "G3800510, G38000300" -County and PUMA "G3800530, G38000100" -County and PUMA "G3800550, G38000100" -County and PUMA "G3800570, G38000100" -County and PUMA "G3800590, G38000300" -County and PUMA "G3800610, G38000100" -County and PUMA "G3800630, G38000200" -County and PUMA "G3800650, G38000100" -County and PUMA "G3800670, G38000400" -County and PUMA "G3800690, G38000200" -County and PUMA "G3800710, G38000200" -County and PUMA "G3800730, G38000200" -County and PUMA "G3800750, G38000100" -County and PUMA "G3800770, G38000200" -County and PUMA "G3800790, G38000200" -County and PUMA "G3800810, G38000200" -County and PUMA "G3800830, G38000200" -County and PUMA "G3800850, G38000100" -County and PUMA "G3800870, G38000100" -County and PUMA "G3800890, G38000100" -County and PUMA "G3800910, G38000400" -County and PUMA "G3800930, G38000200" -County and PUMA "G3800950, G38000400" -County and PUMA "G3800970, G38000400" -County and PUMA "G3800990, G38000400" -County and PUMA "G3801010, G38000100" -County and PUMA "G3801030, G38000200" -County and PUMA "G3801050, G38000100" -County and PUMA "G3900010, G39005200" -County and PUMA "G3900030, G39002500" -County and PUMA "G3900050, G39002100" -County and PUMA "G3900070, G39001300" -County and PUMA "G3900090, G39005000" -County and PUMA "G3900110, G39002600" -County and PUMA "G3900130, G39003500" -County and PUMA "G3900150, G39005700" -County and PUMA "G3900170, G39005401" -County and PUMA "G3900170, G39005402" -County and PUMA "G3900170, G39005403" -County and PUMA "G3900190, G39003300" -County and PUMA "G3900210, G39002700" -County and PUMA "G3900230, G39004300" -County and PUMA "G3900250, G39005600" -County and PUMA "G3900250, G39005700" -County and PUMA "G3900270, G39005200" -County and PUMA "G3900290, G39003400" -County and PUMA "G3900310, G39002900" -County and PUMA "G3900330, G39002300" -County and PUMA "G3900350, G39000901" -County and PUMA "G3900350, G39000902" -County and PUMA "G3900350, G39000903" -County and PUMA "G3900350, G39000904" -County and PUMA "G3900350, G39000905" -County and PUMA "G3900350, G39000906" -County and PUMA "G3900350, G39000907" -County and PUMA "G3900350, G39000908" -County and PUMA "G3900350, G39000909" -County and PUMA "G3900350, G39000910" -County and PUMA "G3900370, G39004500" -County and PUMA "G3900390, G39000100" -County and PUMA "G3900410, G39004000" -County and PUMA "G3900430, G39000700" -County and PUMA "G3900450, G39003900" -County and PUMA "G3900470, G39004800" -County and PUMA "G3900490, G39004101" -County and PUMA "G3900490, G39004102" -County and PUMA "G3900490, G39004103" -County and PUMA "G3900490, G39004104" -County and PUMA "G3900490, G39004105" -County and PUMA "G3900490, G39004106" -County and PUMA "G3900490, G39004107" -County and PUMA "G3900490, G39004108" -County and PUMA "G3900490, G39004109" -County and PUMA "G3900490, G39004110" -County and PUMA "G3900490, G39004111" -County and PUMA "G3900510, G39000200" -County and PUMA "G3900530, G39005000" -County and PUMA "G3900550, G39001200" -County and PUMA "G3900570, G39004700" -County and PUMA "G3900590, G39002900" -County and PUMA "G3900610, G39005501" -County and PUMA "G3900610, G39005502" -County and PUMA "G3900610, G39005503" -County and PUMA "G3900610, G39005504" -County and PUMA "G3900610, G39005505" -County and PUMA "G3900610, G39005506" -County and PUMA "G3900610, G39005507" -County and PUMA "G3900630, G39002400" -County and PUMA "G3900650, G39002700" -County and PUMA "G3900670, G39003000" -County and PUMA "G3900690, G39000100" -County and PUMA "G3900710, G39005200" -County and PUMA "G3900730, G39004900" -County and PUMA "G3900750, G39002900" -County and PUMA "G3900770, G39002100" -County and PUMA "G3900790, G39004900" -County and PUMA "G3900810, G39003500" -County and PUMA "G3900830, G39002800" -County and PUMA "G3900850, G39001000" -County and PUMA "G3900850, G39001100" -County and PUMA "G3900850, G39001200" -County and PUMA "G3900870, G39005100" -County and PUMA "G3900890, G39003800" -County and PUMA "G3900910, G39002700" -County and PUMA "G3900930, G39000801" -County and PUMA "G3900930, G39000802" -County and PUMA "G3900950, G39000200" -County and PUMA "G3900950, G39000300" -County and PUMA "G3900950, G39000400" -County and PUMA "G3900950, G39000500" -County and PUMA "G3900950, G39000600" -County and PUMA "G3900970, G39004200" -County and PUMA "G3900990, G39001400" -County and PUMA "G3900990, G39001500" -County and PUMA "G3901010, G39002800" -County and PUMA "G3901030, G39001900" -County and PUMA "G3901050, G39005000" -County and PUMA "G3901070, G39002600" -County and PUMA "G3901090, G39004400" -County and PUMA "G3901110, G39003600" -County and PUMA "G3901130, G39004601" -County and PUMA "G3901130, G39004602" -County and PUMA "G3901130, G39004603" -County and PUMA "G3901130, G39004604" -County and PUMA "G3901150, G39003600" -County and PUMA "G3901170, G39002800" -County and PUMA "G3901190, G39003700" -County and PUMA "G3901210, G39003600" -County and PUMA "G3901230, G39000600" -County and PUMA "G3901250, G39000100" -County and PUMA "G3901270, G39003700" -County and PUMA "G3901290, G39004200" -County and PUMA "G3901310, G39004900" -County and PUMA "G3901330, G39001700" -County and PUMA "G3901350, G39004500" -County and PUMA "G3901370, G39002400" -County and PUMA "G3901390, G39002200" -County and PUMA "G3901410, G39004800" -County and PUMA "G3901430, G39000700" -County and PUMA "G3901450, G39005100" -County and PUMA "G3901470, G39002300" -County and PUMA "G3901490, G39004500" -County and PUMA "G3901510, G39003100" -County and PUMA "G3901510, G39003200" -County and PUMA "G3901510, G39003300" -County and PUMA "G3901530, G39001801" -County and PUMA "G3901530, G39001802" -County and PUMA "G3901530, G39001803" -County and PUMA "G3901530, G39001804" -County and PUMA "G3901530, G39001805" -County and PUMA "G3901550, G39001400" -County and PUMA "G3901550, G39001600" -County and PUMA "G3901570, G39003000" -County and PUMA "G3901590, G39004200" -County and PUMA "G3901610, G39002600" -County and PUMA "G3901630, G39004900" -County and PUMA "G3901650, G39005301" -County and PUMA "G3901650, G39005302" -County and PUMA "G3901670, G39003600" -County and PUMA "G3901690, G39002000" -County and PUMA "G3901710, G39000100" -County and PUMA "G3901730, G39000200" -County and PUMA "G3901730, G39000300" -County and PUMA "G3901730, G39000600" -County and PUMA "G3901750, G39002300" -County and PUMA "G4000010, G40000200" -County and PUMA "G4000030, G40000500" -County and PUMA "G4000050, G40000702" -County and PUMA "G4000070, G40000500" -County and PUMA "G4000090, G40000400" -County and PUMA "G4000110, G40000500" -County and PUMA "G4000130, G40000702" -County and PUMA "G4000150, G40000602" -County and PUMA "G4000170, G40000800" -County and PUMA "G4000190, G40000701" -County and PUMA "G4000210, G40000200" -County and PUMA "G4000230, G40000300" -County and PUMA "G4000250, G40000500" -County and PUMA "G4000270, G40000900" -County and PUMA "G4000290, G40000702" -County and PUMA "G4000310, G40000601" -County and PUMA "G4000310, G40000602" -County and PUMA "G4000330, G40000602" -County and PUMA "G4000350, G40000100" -County and PUMA "G4000370, G40001204" -County and PUMA "G4000370, G40001501" -County and PUMA "G4000370, G40001601" -County and PUMA "G4000390, G40000400" -County and PUMA "G4000410, G40000100" -County and PUMA "G4000430, G40000500" -County and PUMA "G4000450, G40000500" -County and PUMA "G4000470, G40001400" -County and PUMA "G4000490, G40000701" -County and PUMA "G4000510, G40001101" -County and PUMA "G4000530, G40000500" -County and PUMA "G4000550, G40000400" -County and PUMA "G4000570, G40000400" -County and PUMA "G4000590, G40000500" -County and PUMA "G4000610, G40000300" -County and PUMA "G4000630, G40001501" -County and PUMA "G4000650, G40000400" -County and PUMA "G4000670, G40000602" -County and PUMA "G4000690, G40000702" -County and PUMA "G4000710, G40001400" -County and PUMA "G4000730, G40000500" -County and PUMA "G4000750, G40000400" -County and PUMA "G4000770, G40000300" -County and PUMA "G4000790, G40000300" -County and PUMA "G4000810, G40001102" -County and PUMA "G4000830, G40001102" -County and PUMA "G4000850, G40000701" -County and PUMA "G4000870, G40001101" -County and PUMA "G4000890, G40000300" -County and PUMA "G4000910, G40001302" -County and PUMA "G4000930, G40000500" -County and PUMA "G4000950, G40000702" -County and PUMA "G4000970, G40000100" -County and PUMA "G4000990, G40000701" -County and PUMA "G4001010, G40001302" -County and PUMA "G4001030, G40001400" -County and PUMA "G4001050, G40000100" -County and PUMA "G4001070, G40001501" -County and PUMA "G4001090, G40001001" -County and PUMA "G4001090, G40001002" -County and PUMA "G4001090, G40001003" -County and PUMA "G4001090, G40001004" -County and PUMA "G4001090, G40001005" -County and PUMA "G4001090, G40001006" -County and PUMA "G4001110, G40001302" -County and PUMA "G4001130, G40001204" -County and PUMA "G4001130, G40001601" -County and PUMA "G4001150, G40000100" -County and PUMA "G4001170, G40001601" -County and PUMA "G4001190, G40001501" -County and PUMA "G4001210, G40000300" -County and PUMA "G4001230, G40000701" -County and PUMA "G4001230, G40000702" -County and PUMA "G4001250, G40001101" -County and PUMA "G4001250, G40001102" -County and PUMA "G4001270, G40000300" -County and PUMA "G4001290, G40000400" -County and PUMA "G4001310, G40000100" -County and PUMA "G4001310, G40001301" -County and PUMA "G4001330, G40001501" -County and PUMA "G4001350, G40000200" -County and PUMA "G4001370, G40000602" -County and PUMA "G4001390, G40000500" -County and PUMA "G4001410, G40000602" -County and PUMA "G4001430, G40001201" -County and PUMA "G4001430, G40001202" -County and PUMA "G4001430, G40001203" -County and PUMA "G4001430, G40001204" -County and PUMA "G4001450, G40001301" -County and PUMA "G4001450, G40001302" -County and PUMA "G4001470, G40001601" -County and PUMA "G4001490, G40000400" -County and PUMA "G4001510, G40000500" -County and PUMA "G4001530, G40000500" -County and PUMA "G4100010, G41000100" -County and PUMA "G4100030, G41000600" -County and PUMA "G4100050, G41001317" -County and PUMA "G4100050, G41001318" -County and PUMA "G4100050, G41001319" -County and PUMA "G4100070, G41000500" -County and PUMA "G4100090, G41000500" -County and PUMA "G4100110, G41000800" -County and PUMA "G4100130, G41000200" -County and PUMA "G4100150, G41000800" -County and PUMA "G4100170, G41000400" -County and PUMA "G4100190, G41001000" -County and PUMA "G4100210, G41000200" -County and PUMA "G4100230, G41000200" -County and PUMA "G4100250, G41000300" -County and PUMA "G4100270, G41000200" -County and PUMA "G4100290, G41000901" -County and PUMA "G4100290, G41000902" -County and PUMA "G4100310, G41000200" -County and PUMA "G4100330, G41000800" -County and PUMA "G4100350, G41000300" -County and PUMA "G4100370, G41000300" -County and PUMA "G4100390, G41000703" -County and PUMA "G4100390, G41000704" -County and PUMA "G4100390, G41000705" -County and PUMA "G4100410, G41000500" -County and PUMA "G4100430, G41000600" -County and PUMA "G4100450, G41000300" -County and PUMA "G4100470, G41001103" -County and PUMA "G4100470, G41001104" -County and PUMA "G4100470, G41001105" -County and PUMA "G4100490, G41000200" -County and PUMA "G4100510, G41001301" -County and PUMA "G4100510, G41001302" -County and PUMA "G4100510, G41001303" -County and PUMA "G4100510, G41001305" -County and PUMA "G4100510, G41001314" -County and PUMA "G4100510, G41001316" -County and PUMA "G4100530, G41001200" -County and PUMA "G4100550, G41000200" -County and PUMA "G4100570, G41000500" -County and PUMA "G4100590, G41000100" -County and PUMA "G4100610, G41000100" -County and PUMA "G4100630, G41000100" -County and PUMA "G4100650, G41000200" -County and PUMA "G4100670, G41001320" -County and PUMA "G4100670, G41001321" -County and PUMA "G4100670, G41001322" -County and PUMA "G4100670, G41001323" -County and PUMA "G4100670, G41001324" -County and PUMA "G4100690, G41000200" -County and PUMA "G4100710, G41001200" -County and PUMA "G4200010, G42003701" -County and PUMA "G4200030, G42001701" -County and PUMA "G4200030, G42001702" -County and PUMA "G4200030, G42001801" -County and PUMA "G4200030, G42001802" -County and PUMA "G4200030, G42001803" -County and PUMA "G4200030, G42001804" -County and PUMA "G4200030, G42001805" -County and PUMA "G4200030, G42001806" -County and PUMA "G4200030, G42001807" -County and PUMA "G4200050, G42001900" -County and PUMA "G4200070, G42001501" -County and PUMA "G4200070, G42001502" -County and PUMA "G4200090, G42003800" -County and PUMA "G4200110, G42002701" -County and PUMA "G4200110, G42002702" -County and PUMA "G4200110, G42002703" -County and PUMA "G4200130, G42002200" -County and PUMA "G4200150, G42000400" -County and PUMA "G4200170, G42003001" -County and PUMA "G4200170, G42003002" -County and PUMA "G4200170, G42003003" -County and PUMA "G4200170, G42003004" -County and PUMA "G4200190, G42001600" -County and PUMA "G4200210, G42002100" -County and PUMA "G4200230, G42000300" -County and PUMA "G4200250, G42002801" -County and PUMA "G4200270, G42001200" -County and PUMA "G4200290, G42003401" -County and PUMA "G4200290, G42003402" -County and PUMA "G4200290, G42003403" -County and PUMA "G4200290, G42003404" -County and PUMA "G4200310, G42001300" -County and PUMA "G4200330, G42000300" -County and PUMA "G4200350, G42000900" -County and PUMA "G4200370, G42000803" -County and PUMA "G4200390, G42000200" -County and PUMA "G4200410, G42002301" -County and PUMA "G4200410, G42002302" -County and PUMA "G4200430, G42002401" -County and PUMA "G4200430, G42002402" -County and PUMA "G4200450, G42003301" -County and PUMA "G4200450, G42003302" -County and PUMA "G4200450, G42003303" -County and PUMA "G4200450, G42003304" -County and PUMA "G4200470, G42000300" -County and PUMA "G4200490, G42000101" -County and PUMA "G4200490, G42000102" -County and PUMA "G4200510, G42003900" -County and PUMA "G4200530, G42001300" -County and PUMA "G4200550, G42003701" -County and PUMA "G4200550, G42003702" -County and PUMA "G4200570, G42003800" -County and PUMA "G4200590, G42004002" -County and PUMA "G4200610, G42002200" -County and PUMA "G4200630, G42001900" -County and PUMA "G4200650, G42001300" -County and PUMA "G4200670, G42001100" -County and PUMA "G4200690, G42000701" -County and PUMA "G4200690, G42000702" -County and PUMA "G4200710, G42003501" -County and PUMA "G4200710, G42003502" -County and PUMA "G4200710, G42003503" -County and PUMA "G4200710, G42003504" -County and PUMA "G4200730, G42001501" -County and PUMA "G4200750, G42002500" -County and PUMA "G4200770, G42002801" -County and PUMA "G4200770, G42002802" -County and PUMA "G4200770, G42002803" -County and PUMA "G4200770, G42002901" -County and PUMA "G4200790, G42000801" -County and PUMA "G4200790, G42000802" -County and PUMA "G4200790, G42000803" -County and PUMA "G4200810, G42000900" -County and PUMA "G4200830, G42000300" -County and PUMA "G4200850, G42001400" -County and PUMA "G4200870, G42001100" -County and PUMA "G4200890, G42000600" -County and PUMA "G4200910, G42003101" -County and PUMA "G4200910, G42003102" -County and PUMA "G4200910, G42003103" -County and PUMA "G4200910, G42003104" -County and PUMA "G4200910, G42003105" -County and PUMA "G4200910, G42003106" -County and PUMA "G4200930, G42001000" -County and PUMA "G4200950, G42002901" -County and PUMA "G4200950, G42002902" -County and PUMA "G4200970, G42001000" -County and PUMA "G4200990, G42002301" -County and PUMA "G4201010, G42003201" -County and PUMA "G4201010, G42003202" -County and PUMA "G4201010, G42003203" -County and PUMA "G4201010, G42003204" -County and PUMA "G4201010, G42003205" -County and PUMA "G4201010, G42003206" -County and PUMA "G4201010, G42003207" -County and PUMA "G4201010, G42003208" -County and PUMA "G4201010, G42003209" -County and PUMA "G4201010, G42003210" -County and PUMA "G4201010, G42003211" -County and PUMA "G4201030, G42000500" -County and PUMA "G4201050, G42000300" -County and PUMA "G4201070, G42002600" -County and PUMA "G4201090, G42001100" -County and PUMA "G4201110, G42003800" -County and PUMA "G4201130, G42000400" -County and PUMA "G4201150, G42000500" -County and PUMA "G4201170, G42000400" -County and PUMA "G4201190, G42001100" -County and PUMA "G4201210, G42001300" -County and PUMA "G4201230, G42000200" -County and PUMA "G4201250, G42004001" -County and PUMA "G4201250, G42004002" -County and PUMA "G4201270, G42000500" -County and PUMA "G4201290, G42002001" -County and PUMA "G4201290, G42002002" -County and PUMA "G4201290, G42002003" -County and PUMA "G4201310, G42000702" -County and PUMA "G4201330, G42003601" -County and PUMA "G4201330, G42003602" -County and PUMA "G4201330, G42003603" -County and PUMA "G4400010, G44000300" -County and PUMA "G4400030, G44000201" -County and PUMA "G4400050, G44000300" -County and PUMA "G4400070, G44000101" -County and PUMA "G4400070, G44000102" -County and PUMA "G4400070, G44000103" -County and PUMA "G4400070, G44000104" -County and PUMA "G4400090, G44000400" -County and PUMA "G4500010, G45001600" -County and PUMA "G4500030, G45001500" -County and PUMA "G4500050, G45001300" -County and PUMA "G4500070, G45000200" -County and PUMA "G4500090, G45001300" -County and PUMA "G4500110, G45001300" -County and PUMA "G4500130, G45001400" -County and PUMA "G4500150, G45001201" -County and PUMA "G4500150, G45001202" -County and PUMA "G4500150, G45001203" -County and PUMA "G4500150, G45001204" -County and PUMA "G4500170, G45000605" -County and PUMA "G4500190, G45001201" -County and PUMA "G4500190, G45001202" -County and PUMA "G4500190, G45001203" -County and PUMA "G4500190, G45001204" -County and PUMA "G4500210, G45000400" -County and PUMA "G4500230, G45000400" -County and PUMA "G4500250, G45000700" -County and PUMA "G4500270, G45000800" -County and PUMA "G4500290, G45001300" -County and PUMA "G4500310, G45000900" -County and PUMA "G4500330, G45001000" -County and PUMA "G4500350, G45001201" -County and PUMA "G4500350, G45001204" -County and PUMA "G4500370, G45001500" -County and PUMA "G4500390, G45000603" -County and PUMA "G4500410, G45000900" -County and PUMA "G4500430, G45001000" -County and PUMA "G4500450, G45000102" -County and PUMA "G4500450, G45000103" -County and PUMA "G4500450, G45000104" -County and PUMA "G4500450, G45000105" -County and PUMA "G4500470, G45001600" -County and PUMA "G4500490, G45001300" -County and PUMA "G4500510, G45001101" -County and PUMA "G4500510, G45001102" -County and PUMA "G4500530, G45001400" -County and PUMA "G4500550, G45000605" -County and PUMA "G4500570, G45000700" -County and PUMA "G4500590, G45000105" -County and PUMA "G4500610, G45000800" -County and PUMA "G4500630, G45000601" -County and PUMA "G4500630, G45000602" -County and PUMA "G4500650, G45001600" -County and PUMA "G4500670, G45001000" -County and PUMA "G4500690, G45000700" -County and PUMA "G4500710, G45000400" -County and PUMA "G4500730, G45000101" -County and PUMA "G4500750, G45001300" -County and PUMA "G4500770, G45000101" -County and PUMA "G4500790, G45000603" -County and PUMA "G4500790, G45000604" -County and PUMA "G4500790, G45000605" -County and PUMA "G4500810, G45000601" -County and PUMA "G4500830, G45000301" -County and PUMA "G4500830, G45000302" -County and PUMA "G4500850, G45000800" -County and PUMA "G4500870, G45000400" -County and PUMA "G4500890, G45000800" -County and PUMA "G4500910, G45000501" -County and PUMA "G4500910, G45000502" -County and PUMA "G4600030, G46000400" -County and PUMA "G4600050, G46000400" -County and PUMA "G4600070, G46000200" -County and PUMA "G4600090, G46000400" -County and PUMA "G4600110, G46000400" -County and PUMA "G4600130, G46000300" -County and PUMA "G4600150, G46000400" -County and PUMA "G4600170, G46000200" -County and PUMA "G4600190, G46000100" -County and PUMA "G4600210, G46000300" -County and PUMA "G4600230, G46000200" -County and PUMA "G4600250, G46000300" -County and PUMA "G4600270, G46000500" -County and PUMA "G4600290, G46000300" -County and PUMA "G4600310, G46000200" -County and PUMA "G4600330, G46000100" -County and PUMA "G4600350, G46000400" -County and PUMA "G4600370, G46000300" -County and PUMA "G4600390, G46000300" -County and PUMA "G4600410, G46000200" -County and PUMA "G4600430, G46000400" -County and PUMA "G4600450, G46000300" -County and PUMA "G4600470, G46000200" -County and PUMA "G4600490, G46000300" -County and PUMA "G4600510, G46000300" -County and PUMA "G4600530, G46000200" -County and PUMA "G4600550, G46000200" -County and PUMA "G4600570, G46000300" -County and PUMA "G4600590, G46000400" -County and PUMA "G4600610, G46000400" -County and PUMA "G4600630, G46000100" -County and PUMA "G4600650, G46000200" -County and PUMA "G4600670, G46000400" -County and PUMA "G4600690, G46000200" -County and PUMA "G4600710, G46000200" -County and PUMA "G4600730, G46000400" -County and PUMA "G4600750, G46000200" -County and PUMA "G4600770, G46000400" -County and PUMA "G4600790, G46000400" -County and PUMA "G4600810, G46000100" -County and PUMA "G4600830, G46000500" -County and PUMA "G4600830, G46000600" -County and PUMA "G4600850, G46000200" -County and PUMA "G4600870, G46000500" -County and PUMA "G4600890, G46000300" -County and PUMA "G4600910, G46000300" -County and PUMA "G4600930, G46000100" -County and PUMA "G4600950, G46000200" -County and PUMA "G4600970, G46000400" -County and PUMA "G4600990, G46000500" -County and PUMA "G4600990, G46000600" -County and PUMA "G4601010, G46000400" -County and PUMA "G4601020, G46000200" -County and PUMA "G4601030, G46000100" -County and PUMA "G4601050, G46000100" -County and PUMA "G4601070, G46000300" -County and PUMA "G4601090, G46000300" -County and PUMA "G4601110, G46000400" -County and PUMA "G4601150, G46000300" -County and PUMA "G4601170, G46000200" -County and PUMA "G4601190, G46000200" -County and PUMA "G4601210, G46000200" -County and PUMA "G4601230, G46000200" -County and PUMA "G4601250, G46000500" -County and PUMA "G4601270, G46000500" -County and PUMA "G4601290, G46000300" -County and PUMA "G4601350, G46000500" -County and PUMA "G4601370, G46000200" -County and PUMA "G4700010, G47001601" -County and PUMA "G4700030, G47002700" -County and PUMA "G4700050, G47000200" -County and PUMA "G4700070, G47002100" -County and PUMA "G4700090, G47001700" -County and PUMA "G4700110, G47001900" -County and PUMA "G4700130, G47000900" -County and PUMA "G4700150, G47000600" -County and PUMA "G4700170, G47000200" -County and PUMA "G4700190, G47001200" -County and PUMA "G4700210, G47000400" -County and PUMA "G4700230, G47003000" -County and PUMA "G4700250, G47000900" -County and PUMA "G4700270, G47000700" -County and PUMA "G4700290, G47001400" -County and PUMA "G4700310, G47002200" -County and PUMA "G4700330, G47000100" -County and PUMA "G4700350, G47000800" -County and PUMA "G4700370, G47002501" -County and PUMA "G4700370, G47002502" -County and PUMA "G4700370, G47002503" -County and PUMA "G4700370, G47002504" -County and PUMA "G4700370, G47002505" -County and PUMA "G4700390, G47002900" -County and PUMA "G4700410, G47000600" -County and PUMA "G4700430, G47000400" -County and PUMA "G4700450, G47000100" -County and PUMA "G4700470, G47003100" -County and PUMA "G4700490, G47000800" -County and PUMA "G4700510, G47002200" -County and PUMA "G4700530, G47000100" -County and PUMA "G4700550, G47002800" -County and PUMA "G4700570, G47001400" -County and PUMA "G4700590, G47001200" -County and PUMA "G4700610, G47002100" -County and PUMA "G4700630, G47001400" -County and PUMA "G4700650, G47002001" -County and PUMA "G4700650, G47002002" -County and PUMA "G4700650, G47002003" -County and PUMA "G4700670, G47000900" -County and PUMA "G4700690, G47002900" -County and PUMA "G4700710, G47002900" -County and PUMA "G4700730, G47001000" -County and PUMA "G4700750, G47002900" -County and PUMA "G4700770, G47002900" -County and PUMA "G4700790, G47000200" -County and PUMA "G4700810, G47000400" -County and PUMA "G4700830, G47000200" -County and PUMA "G4700850, G47000200" -County and PUMA "G4700870, G47000700" -County and PUMA "G4700890, G47001500" -County and PUMA "G4700910, G47001200" -County and PUMA "G4700930, G47001601" -County and PUMA "G4700930, G47001602" -County and PUMA "G4700930, G47001603" -County and PUMA "G4700930, G47001604" -County and PUMA "G4700950, G47000100" -County and PUMA "G4700970, G47003100" -County and PUMA "G4700990, G47002800" -County and PUMA "G4701010, G47002800" -County and PUMA "G4701030, G47002200" -County and PUMA "G4701050, G47001800" -County and PUMA "G4701070, G47001900" -County and PUMA "G4701090, G47002900" -County and PUMA "G4701110, G47000600" -County and PUMA "G4701130, G47003000" -County and PUMA "G4701150, G47002100" -County and PUMA "G4701170, G47002700" -County and PUMA "G4701190, G47002700" -County and PUMA "G4701210, G47002100" -County and PUMA "G4701230, G47001800" -County and PUMA "G4701250, G47000300" -County and PUMA "G4701270, G47002200" -County and PUMA "G4701290, G47000900" -County and PUMA "G4701310, G47000100" -County and PUMA "G4701330, G47000700" -County and PUMA "G4701350, G47002800" -County and PUMA "G4701370, G47000700" -County and PUMA "G4701390, G47001900" -County and PUMA "G4701410, G47000700" -County and PUMA "G4701430, G47002100" -County and PUMA "G4701450, G47001800" -County and PUMA "G4701470, G47000400" -County and PUMA "G4701490, G47002401" -County and PUMA "G4701490, G47002402" -County and PUMA "G4701510, G47000900" -County and PUMA "G4701530, G47002100" -County and PUMA "G4701550, G47001500" -County and PUMA "G4701570, G47003201" -County and PUMA "G4701570, G47003202" -County and PUMA "G4701570, G47003203" -County and PUMA "G4701570, G47003204" -County and PUMA "G4701570, G47003205" -County and PUMA "G4701570, G47003206" -County and PUMA "G4701570, G47003207" -County and PUMA "G4701570, G47003208" -County and PUMA "G4701590, G47000600" -County and PUMA "G4701610, G47000300" -County and PUMA "G4701630, G47001000" -County and PUMA "G4701630, G47001100" -County and PUMA "G4701650, G47000500" -County and PUMA "G4701670, G47003100" -County and PUMA "G4701690, G47000600" -County and PUMA "G4701710, G47001200" -County and PUMA "G4701730, G47001601" -County and PUMA "G4701750, G47000800" -County and PUMA "G4701770, G47000600" -County and PUMA "G4701790, G47001300" -County and PUMA "G4701810, G47002800" -County and PUMA "G4701830, G47000200" -County and PUMA "G4701850, G47000800" -County and PUMA "G4701870, G47002600" -County and PUMA "G4701890, G47002300" -County and PUMA "G4800010, G48001800" -County and PUMA "G4800030, G48003200" -County and PUMA "G4800050, G48004000" -County and PUMA "G4800070, G48006500" -County and PUMA "G4800090, G48000600" -County and PUMA "G4800110, G48000100" -County and PUMA "G4800130, G48006100" -County and PUMA "G4800150, G48005000" -County and PUMA "G4800170, G48000400" -County and PUMA "G4800190, G48006100" -County and PUMA "G4800210, G48005100" -County and PUMA "G4800230, G48000600" -County and PUMA "G4800250, G48006500" -County and PUMA "G4800270, G48003501" -County and PUMA "G4800270, G48003502" -County and PUMA "G4800290, G48005901" -County and PUMA "G4800290, G48005902" -County and PUMA "G4800290, G48005903" -County and PUMA "G4800290, G48005904" -County and PUMA "G4800290, G48005905" -County and PUMA "G4800290, G48005906" -County and PUMA "G4800290, G48005907" -County and PUMA "G4800290, G48005908" -County and PUMA "G4800290, G48005909" -County and PUMA "G4800290, G48005910" -County and PUMA "G4800290, G48005911" -County and PUMA "G4800290, G48005912" -County and PUMA "G4800290, G48005913" -County and PUMA "G4800290, G48005914" -County and PUMA "G4800290, G48005915" -County and PUMA "G4800290, G48005916" -County and PUMA "G4800310, G48006000" -County and PUMA "G4800330, G48002800" -County and PUMA "G4800350, G48003700" -County and PUMA "G4800370, G48001100" -County and PUMA "G4800390, G48004801" -County and PUMA "G4800390, G48004802" -County and PUMA "G4800390, G48004803" -County and PUMA "G4800410, G48003602" -County and PUMA "G4800430, G48003200" -County and PUMA "G4800450, G48000100" -County and PUMA "G4800470, G48006900" -County and PUMA "G4800490, G48002600" -County and PUMA "G4800510, G48003601" -County and PUMA "G4800530, G48003400" -County and PUMA "G4800550, G48005100" -County and PUMA "G4800570, G48005600" -County and PUMA "G4800590, G48002600" -County and PUMA "G4800610, G48006701" -County and PUMA "G4800610, G48006702" -County and PUMA "G4800610, G48006703" -County and PUMA "G4800630, G48001300" -County and PUMA "G4800650, G48000100" -County and PUMA "G4800670, G48001100" -County and PUMA "G4800690, G48000100" -County and PUMA "G4800710, G48004400" -County and PUMA "G4800730, G48001700" -County and PUMA "G4800750, G48000100" -County and PUMA "G4800770, G48000600" -County and PUMA "G4800790, G48000400" -County and PUMA "G4800810, G48002800" -County and PUMA "G4800830, G48002600" -County and PUMA "G4800850, G48001901" -County and PUMA "G4800850, G48001902" -County and PUMA "G4800850, G48001903" -County and PUMA "G4800850, G48001904" -County and PUMA "G4800850, G48001905" -County and PUMA "G4800850, G48001906" -County and PUMA "G4800850, G48001907" -County and PUMA "G4800870, G48000100" -County and PUMA "G4800890, G48005000" -County and PUMA "G4800910, G48005800" -County and PUMA "G4800930, G48002600" -County and PUMA "G4800950, G48002800" -County and PUMA "G4800970, G48000800" -County and PUMA "G4800990, G48003400" -County and PUMA "G4801010, G48000600" -County and PUMA "G4801030, G48003200" -County and PUMA "G4801050, G48002800" -County and PUMA "G4801070, G48000400" -County and PUMA "G4801090, G48003200" -County and PUMA "G4801110, G48000100" -County and PUMA "G4801130, G48002301" -County and PUMA "G4801130, G48002302" -County and PUMA "G4801130, G48002303" -County and PUMA "G4801130, G48002304" -County and PUMA "G4801130, G48002305" -County and PUMA "G4801130, G48002306" -County and PUMA "G4801130, G48002307" -County and PUMA "G4801130, G48002308" -County and PUMA "G4801130, G48002309" -County and PUMA "G4801130, G48002310" -County and PUMA "G4801130, G48002311" -County and PUMA "G4801130, G48002312" -County and PUMA "G4801130, G48002313" -County and PUMA "G4801130, G48002314" -County and PUMA "G4801130, G48002315" -County and PUMA "G4801130, G48002316" -County and PUMA "G4801130, G48002317" -County and PUMA "G4801130, G48002318" -County and PUMA "G4801130, G48002319" -County and PUMA "G4801130, G48002320" -County and PUMA "G4801130, G48002321" -County and PUMA "G4801130, G48002322" -County and PUMA "G4801150, G48002800" -County and PUMA "G4801170, G48000100" -County and PUMA "G4801190, G48001000" -County and PUMA "G4801210, G48002001" -County and PUMA "G4801210, G48002002" -County and PUMA "G4801210, G48002003" -County and PUMA "G4801210, G48002004" -County and PUMA "G4801210, G48002005" -County and PUMA "G4801210, G48002006" -County and PUMA "G4801230, G48005500" -County and PUMA "G4801250, G48000400" -County and PUMA "G4801270, G48006200" -County and PUMA "G4801290, G48000100" -County and PUMA "G4801310, G48006400" -County and PUMA "G4801330, G48002600" -County and PUMA "G4801350, G48003100" -County and PUMA "G4801370, G48006200" -County and PUMA "G4801390, G48002101" -County and PUMA "G4801410, G48003301" -County and PUMA "G4801410, G48003302" -County and PUMA "G4801410, G48003303" -County and PUMA "G4801410, G48003304" -County and PUMA "G4801410, G48003305" -County and PUMA "G4801410, G48003306" -County and PUMA "G4801430, G48002200" -County and PUMA "G4801450, G48003700" -County and PUMA "G4801470, G48000800" -County and PUMA "G4801490, G48005100" -County and PUMA "G4801510, G48002600" -County and PUMA "G4801530, G48000400" -County and PUMA "G4801550, G48000600" -County and PUMA "G4801570, G48004901" -County and PUMA "G4801570, G48004902" -County and PUMA "G4801570, G48004903" -County and PUMA "G4801570, G48004904" -County and PUMA "G4801570, G48004905" -County and PUMA "G4801590, G48001000" -County and PUMA "G4801610, G48003700" -County and PUMA "G4801630, G48006100" -County and PUMA "G4801650, G48003200" -County and PUMA "G4801670, G48004701" -County and PUMA "G4801670, G48004702" -County and PUMA "G4801690, G48000400" -County and PUMA "G4801710, G48006000" -County and PUMA "G4801730, G48002800" -County and PUMA "G4801750, G48005500" -County and PUMA "G4801770, G48005500" -County and PUMA "G4801790, G48000100" -County and PUMA "G4801810, G48000800" -County and PUMA "G4801830, G48001600" -County and PUMA "G4801850, G48003601" -County and PUMA "G4801870, G48005700" -County and PUMA "G4801890, G48000400" -County and PUMA "G4801910, G48000100" -County and PUMA "G4801930, G48003400" -County and PUMA "G4801950, G48000100" -County and PUMA "G4801970, G48000600" -County and PUMA "G4801990, G48004200" -County and PUMA "G4802010, G48004601" -County and PUMA "G4802010, G48004602" -County and PUMA "G4802010, G48004603" -County and PUMA "G4802010, G48004604" -County and PUMA "G4802010, G48004605" -County and PUMA "G4802010, G48004606" -County and PUMA "G4802010, G48004607" -County and PUMA "G4802010, G48004608" -County and PUMA "G4802010, G48004609" -County and PUMA "G4802010, G48004610" -County and PUMA "G4802010, G48004611" -County and PUMA "G4802010, G48004612" -County and PUMA "G4802010, G48004613" -County and PUMA "G4802010, G48004614" -County and PUMA "G4802010, G48004615" -County and PUMA "G4802010, G48004616" -County and PUMA "G4802010, G48004617" -County and PUMA "G4802010, G48004618" -County and PUMA "G4802010, G48004619" -County and PUMA "G4802010, G48004620" -County and PUMA "G4802010, G48004621" -County and PUMA "G4802010, G48004622" -County and PUMA "G4802010, G48004623" -County and PUMA "G4802010, G48004624" -County and PUMA "G4802010, G48004625" -County and PUMA "G4802010, G48004626" -County and PUMA "G4802010, G48004627" -County and PUMA "G4802010, G48004628" -County and PUMA "G4802010, G48004629" -County and PUMA "G4802010, G48004630" -County and PUMA "G4802010, G48004631" -County and PUMA "G4802010, G48004632" -County and PUMA "G4802010, G48004633" -County and PUMA "G4802010, G48004634" -County and PUMA "G4802010, G48004635" -County and PUMA "G4802010, G48004636" -County and PUMA "G4802010, G48004637" -County and PUMA "G4802010, G48004638" -County and PUMA "G4802030, G48001200" -County and PUMA "G4802050, G48000100" -County and PUMA "G4802070, G48002600" -County and PUMA "G4802090, G48005400" -County and PUMA "G4802110, G48000100" -County and PUMA "G4802130, G48001800" -County and PUMA "G4802150, G48006801" -County and PUMA "G4802150, G48006802" -County and PUMA "G4802150, G48006803" -County and PUMA "G4802150, G48006804" -County and PUMA "G4802150, G48006805" -County and PUMA "G4802150, G48006806" -County and PUMA "G4802150, G48006807" -County and PUMA "G4802170, G48003700" -County and PUMA "G4802190, G48000400" -County and PUMA "G4802210, G48002200" -County and PUMA "G4802230, G48001000" -County and PUMA "G4802250, G48003900" -County and PUMA "G4802270, G48002800" -County and PUMA "G4802290, G48003200" -County and PUMA "G4802310, G48000900" -County and PUMA "G4802330, G48000100" -County and PUMA "G4802350, G48002800" -County and PUMA "G4802370, G48000600" -County and PUMA "G4802390, G48005500" -County and PUMA "G4802410, G48004100" -County and PUMA "G4802430, G48003200" -County and PUMA "G4802450, G48004301" -County and PUMA "G4802450, G48004302" -County and PUMA "G4802470, G48006400" -County and PUMA "G4802490, G48006900" -County and PUMA "G4802510, G48002102" -County and PUMA "G4802530, G48002600" -County and PUMA "G4802550, G48005500" -County and PUMA "G4802570, G48001400" -County and PUMA "G4802590, G48006000" -County and PUMA "G4802610, G48006900" -County and PUMA "G4802630, G48002600" -County and PUMA "G4802650, G48006000" -County and PUMA "G4802670, G48002800" -County and PUMA "G4802690, G48000400" -County and PUMA "G4802710, G48006200" -County and PUMA "G4802730, G48006900" -County and PUMA "G4802750, G48002600" -County and PUMA "G4802770, G48001000" -County and PUMA "G4802790, G48000400" -County and PUMA "G4802810, G48003400" -County and PUMA "G4802830, G48006200" -County and PUMA "G4802850, G48005500" -County and PUMA "G4802870, G48005100" -County and PUMA "G4802890, G48003601" -County and PUMA "G4802910, G48004400" -County and PUMA "G4802930, G48003700" -County and PUMA "G4802950, G48000100" -County and PUMA "G4802970, G48006400" -County and PUMA "G4802990, G48003400" -County and PUMA "G4803010, G48003200" -County and PUMA "G4803030, G48000501" -County and PUMA "G4803030, G48000502" -County and PUMA "G4803050, G48000400" -County and PUMA "G4803070, G48002800" -County and PUMA "G4803090, G48003801" -County and PUMA "G4803090, G48003802" -County and PUMA "G4803110, G48006400" -County and PUMA "G4803130, G48003601" -County and PUMA "G4803150, G48001200" -County and PUMA "G4803170, G48002800" -County and PUMA "G4803190, G48002800" -County and PUMA "G4803210, G48005000" -County and PUMA "G4803230, G48006200" -County and PUMA "G4803250, G48006100" -County and PUMA "G4803270, G48002800" -County and PUMA "G4803290, G48003000" -County and PUMA "G4803310, G48003601" -County and PUMA "G4803330, G48003400" -County and PUMA "G4803350, G48002600" -County and PUMA "G4803370, G48000600" -County and PUMA "G4803390, G48004501" -County and PUMA "G4803390, G48004502" -County and PUMA "G4803390, G48004503" -County and PUMA "G4803390, G48004504" -County and PUMA "G4803410, G48000100" -County and PUMA "G4803430, G48001000" -County and PUMA "G4803450, G48000400" -County and PUMA "G4803470, G48004000" -County and PUMA "G4803490, G48003700" -County and PUMA "G4803510, G48004100" -County and PUMA "G4803530, G48002600" -County and PUMA "G4803550, G48006601" -County and PUMA "G4803550, G48006602" -County and PUMA "G4803550, G48006603" -County and PUMA "G4803570, G48000100" -County and PUMA "G4803590, G48000100" -County and PUMA "G4803610, G48004200" -County and PUMA "G4803630, G48002200" -County and PUMA "G4803650, G48001700" -County and PUMA "G4803670, G48002400" -County and PUMA "G4803690, G48000100" -County and PUMA "G4803710, G48003200" -County and PUMA "G4803730, G48003900" -County and PUMA "G4803750, G48000200" -County and PUMA "G4803770, G48003200" -County and PUMA "G4803790, G48001300" -County and PUMA "G4803810, G48000300" -County and PUMA "G4803830, G48002800" -County and PUMA "G4803850, G48006200" -County and PUMA "G4803870, G48001000" -County and PUMA "G4803890, G48003200" -County and PUMA "G4803910, G48006500" -County and PUMA "G4803930, G48000100" -County and PUMA "G4803950, G48003601" -County and PUMA "G4803970, G48000900" -County and PUMA "G4803990, G48002600" -County and PUMA "G4804010, G48001700" -County and PUMA "G4804030, G48004100" -County and PUMA "G4804050, G48004100" -County and PUMA "G4804070, G48003900" -County and PUMA "G4804090, G48006500" -County and PUMA "G4804110, G48003400" -County and PUMA "G4804130, G48002800" -County and PUMA "G4804150, G48002600" -County and PUMA "G4804170, G48002600" -County and PUMA "G4804190, G48004100" -County and PUMA "G4804210, G48000100" -County and PUMA "G4804230, G48001501" -County and PUMA "G4804230, G48001502" -County and PUMA "G4804250, G48002200" -County and PUMA "G4804270, G48006400" -County and PUMA "G4804290, G48002600" -County and PUMA "G4804310, G48002800" -County and PUMA "G4804330, G48002600" -County and PUMA "G4804350, G48002800" -County and PUMA "G4804370, G48000100" -County and PUMA "G4804390, G48002501" -County and PUMA "G4804390, G48002502" -County and PUMA "G4804390, G48002503" -County and PUMA "G4804390, G48002504" -County and PUMA "G4804390, G48002505" -County and PUMA "G4804390, G48002506" -County and PUMA "G4804390, G48002507" -County and PUMA "G4804390, G48002508" -County and PUMA "G4804390, G48002509" -County and PUMA "G4804390, G48002510" -County and PUMA "G4804390, G48002511" -County and PUMA "G4804390, G48002512" -County and PUMA "G4804390, G48002513" -County and PUMA "G4804390, G48002514" -County and PUMA "G4804390, G48002515" -County and PUMA "G4804390, G48002516" -County and PUMA "G4804410, G48002700" -County and PUMA "G4804430, G48003200" -County and PUMA "G4804450, G48000400" -County and PUMA "G4804470, G48002600" -County and PUMA "G4804490, G48001000" -County and PUMA "G4804510, G48002900" -County and PUMA "G4804530, G48005301" -County and PUMA "G4804530, G48005302" -County and PUMA "G4804530, G48005303" -County and PUMA "G4804530, G48005304" -County and PUMA "G4804530, G48005305" -County and PUMA "G4804530, G48005306" -County and PUMA "G4804530, G48005307" -County and PUMA "G4804530, G48005308" -County and PUMA "G4804530, G48005309" -County and PUMA "G4804550, G48003900" -County and PUMA "G4804570, G48004100" -County and PUMA "G4804590, G48001200" -County and PUMA "G4804610, G48002800" -County and PUMA "G4804630, G48006200" -County and PUMA "G4804650, G48006200" -County and PUMA "G4804670, G48001300" -County and PUMA "G4804690, G48005600" -County and PUMA "G4804710, G48003900" -County and PUMA "G4804730, G48005000" -County and PUMA "G4804750, G48003200" -County and PUMA "G4804770, G48003601" -County and PUMA "G4804790, G48006301" -County and PUMA "G4804790, G48006302" -County and PUMA "G4804810, G48005000" -County and PUMA "G4804830, G48000100" -County and PUMA "G4804850, G48000700" -County and PUMA "G4804870, G48000600" -County and PUMA "G4804890, G48006900" -County and PUMA "G4804910, G48005201" -County and PUMA "G4804910, G48005202" -County and PUMA "G4804910, G48005203" -County and PUMA "G4804910, G48005204" -County and PUMA "G4804930, G48005500" -County and PUMA "G4804950, G48003200" -County and PUMA "G4804970, G48000600" -County and PUMA "G4804990, G48001300" -County and PUMA "G4805010, G48000400" -County and PUMA "G4805030, G48000600" -County and PUMA "G4805050, G48006400" -County and PUMA "G4805070, G48006200" -County and PUMA "G4900010, G49021001" -County and PUMA "G4900030, G49003001" -County and PUMA "G4900050, G49005001" -County and PUMA "G4900070, G49013001" -County and PUMA "G4900090, G49013001" -County and PUMA "G4900110, G49011001" -County and PUMA "G4900110, G49011002" -County and PUMA "G4900130, G49013001" -County and PUMA "G4900150, G49013001" -County and PUMA "G4900170, G49021001" -County and PUMA "G4900190, G49013001" -County and PUMA "G4900210, G49021001" -County and PUMA "G4900230, G49021001" -County and PUMA "G4900250, G49021001" -County and PUMA "G4900270, G49021001" -County and PUMA "G4900290, G49005001" -County and PUMA "G4900310, G49021001" -County and PUMA "G4900330, G49005001" -County and PUMA "G4900350, G49035001" -County and PUMA "G4900350, G49035002" -County and PUMA "G4900350, G49035003" -County and PUMA "G4900350, G49035004" -County and PUMA "G4900350, G49035005" -County and PUMA "G4900350, G49035006" -County and PUMA "G4900350, G49035007" -County and PUMA "G4900350, G49035008" -County and PUMA "G4900350, G49035009" -County and PUMA "G4900370, G49013001" -County and PUMA "G4900390, G49021001" -County and PUMA "G4900410, G49021001" -County and PUMA "G4900430, G49005001" -County and PUMA "G4900450, G49003001" -County and PUMA "G4900470, G49013001" -County and PUMA "G4900490, G49049001" -County and PUMA "G4900490, G49049002" -County and PUMA "G4900490, G49049003" -County and PUMA "G4900490, G49049004" -County and PUMA "G4900510, G49013001" -County and PUMA "G4900530, G49053001" -County and PUMA "G4900550, G49021001" -County and PUMA "G4900570, G49057001" -County and PUMA "G4900570, G49057002" -County and PUMA "G5000010, G50000400" -County and PUMA "G5000030, G50000400" -County and PUMA "G5000050, G50000200" -County and PUMA "G5000070, G50000100" -County and PUMA "G5000090, G50000200" -County and PUMA "G5000110, G50000100" -County and PUMA "G5000130, G50000100" -County and PUMA "G5000150, G50000200" -County and PUMA "G5000170, G50000300" -County and PUMA "G5000190, G50000200" -County and PUMA "G5000210, G50000400" -County and PUMA "G5000230, G50000200" -County and PUMA "G5000250, G50000300" -County and PUMA "G5000270, G50000300" -County and PUMA "G5100010, G51051125" -County and PUMA "G5100030, G51051089" -County and PUMA "G5100030, G51051090" -County and PUMA "G5100050, G51051045" -County and PUMA "G5100070, G51051105" -County and PUMA "G5100090, G51051095" -County and PUMA "G5100110, G51051095" -County and PUMA "G5100130, G51001301" -County and PUMA "G5100130, G51001302" -County and PUMA "G5100150, G51051080" -County and PUMA "G5100170, G51051080" -County and PUMA "G5100190, G51051095" -County and PUMA "G5100210, G51051020" -County and PUMA "G5100230, G51051045" -County and PUMA "G5100250, G51051105" -County and PUMA "G5100270, G51051010" -County and PUMA "G5100290, G51051105" -County and PUMA "G5100310, G51051096" -County and PUMA "G5100330, G51051120" -County and PUMA "G5100350, G51051020" -County and PUMA "G5100360, G51051215" -County and PUMA "G5100370, G51051105" -County and PUMA "G5100410, G51004101" -County and PUMA "G5100410, G51004102" -County and PUMA "G5100410, G51004103" -County and PUMA "G5100430, G51051084" -County and PUMA "G5100450, G51051045" -County and PUMA "G5100470, G51051087" -County and PUMA "G5100490, G51051105" -County and PUMA "G5100510, G51051010" -County and PUMA "G5100530, G51051135" -County and PUMA "G5100570, G51051125" -County and PUMA "G5100590, G51059301" -County and PUMA "G5100590, G51059302" -County and PUMA "G5100590, G51059303" -County and PUMA "G5100590, G51059304" -County and PUMA "G5100590, G51059305" -County and PUMA "G5100590, G51059306" -County and PUMA "G5100590, G51059307" -County and PUMA "G5100590, G51059308" -County and PUMA "G5100590, G51059309" -County and PUMA "G5100610, G51051087" -County and PUMA "G5100630, G51051040" -County and PUMA "G5100650, G51051089" -County and PUMA "G5100670, G51051045" -County and PUMA "G5100690, G51051084" -County and PUMA "G5100710, G51051040" -County and PUMA "G5100730, G51051125" -County and PUMA "G5100750, G51051215" -County and PUMA "G5100770, G51051020" -County and PUMA "G5100790, G51051090" -County and PUMA "G5100810, G51051135" -County and PUMA "G5100830, G51051105" -County and PUMA "G5100850, G51051215" -County and PUMA "G5100870, G51051224" -County and PUMA "G5100870, G51051225" -County and PUMA "G5100890, G51051097" -County and PUMA "G5100910, G51051080" -County and PUMA "G5100930, G51051145" -County and PUMA "G5100950, G51051206" -County and PUMA "G5100970, G51051125" -County and PUMA "G5100990, G51051120" -County and PUMA "G5101010, G51051215" -County and PUMA "G5101030, G51051125" -County and PUMA "G5101050, G51051010" -County and PUMA "G5101070, G51010701" -County and PUMA "G5101070, G51010702" -County and PUMA "G5101070, G51010703" -County and PUMA "G5101090, G51051089" -County and PUMA "G5101110, G51051105" -County and PUMA "G5101130, G51051087" -County and PUMA "G5101150, G51051125" -County and PUMA "G5101170, G51051105" -County and PUMA "G5101190, G51051125" -County and PUMA "G5101210, G51051040" -County and PUMA "G5101250, G51051089" -County and PUMA "G5101270, G51051215" -County and PUMA "G5101310, G51051125" -County and PUMA "G5101330, G51051125" -County and PUMA "G5101350, G51051105" -County and PUMA "G5101370, G51051087" -County and PUMA "G5101390, G51051085" -County and PUMA "G5101410, G51051097" -County and PUMA "G5101430, G51051097" -County and PUMA "G5101450, G51051215" -County and PUMA "G5101470, G51051105" -County and PUMA "G5101490, G51051135" -County and PUMA "G5101530, G51051244" -County and PUMA "G5101530, G51051245" -County and PUMA "G5101530, G51051246" -County and PUMA "G5101550, G51051040" -County and PUMA "G5101570, G51051087" -County and PUMA "G5101590, G51051125" -County and PUMA "G5101610, G51051044" -County and PUMA "G5101610, G51051045" -County and PUMA "G5101630, G51051080" -County and PUMA "G5101650, G51051110" -County and PUMA "G5101670, G51051010" -County and PUMA "G5101690, G51051010" -County and PUMA "G5101710, G51051085" -County and PUMA "G5101730, G51051020" -County and PUMA "G5101750, G51051145" -County and PUMA "G5101770, G51051120" -County and PUMA "G5101790, G51051115" -County and PUMA "G5101810, G51051135" -County and PUMA "G5101830, G51051135" -County and PUMA "G5101850, G51051010" -County and PUMA "G5101870, G51051085" -County and PUMA "G5101910, G51051020" -County and PUMA "G5101930, G51051125" -County and PUMA "G5101950, G51051010" -County and PUMA "G5101970, G51051020" -County and PUMA "G5101990, G51051206" -County and PUMA "G5105100, G51051255" -County and PUMA "G5105200, G51051020" -County and PUMA "G5105300, G51051080" -County and PUMA "G5105400, G51051090" -County and PUMA "G5105500, G51055001" -County and PUMA "G5105500, G51055002" -County and PUMA "G5105700, G51051135" -County and PUMA "G5105800, G51051045" -County and PUMA "G5105900, G51051097" -County and PUMA "G5105950, G51051135" -County and PUMA "G5106000, G51059303" -County and PUMA "G5106100, G51059308" -County and PUMA "G5106200, G51051145" -County and PUMA "G5106300, G51051115" -County and PUMA "G5106400, G51051020" -County and PUMA "G5106500, G51051186" -County and PUMA "G5106600, G51051110" -County and PUMA "G5106700, G51051135" -County and PUMA "G5106780, G51051080" -County and PUMA "G5106800, G51051096" -County and PUMA "G5106830, G51051245" -County and PUMA "G5106850, G51051245" -County and PUMA "G5106900, G51051097" -County and PUMA "G5107000, G51051175" -County and PUMA "G5107100, G51051154" -County and PUMA "G5107100, G51051155" -County and PUMA "G5107200, G51051010" -County and PUMA "G5107300, G51051135" -County and PUMA "G5107350, G51051206" -County and PUMA "G5107400, G51051155" -County and PUMA "G5107500, G51051040" -County and PUMA "G5107600, G51051235" -County and PUMA "G5107700, G51051044" -County and PUMA "G5107750, G51051044" -County and PUMA "G5107900, G51051080" -County and PUMA "G5108000, G51051145" -County and PUMA "G5108100, G51051164" -County and PUMA "G5108100, G51051165" -County and PUMA "G5108100, G51051167" -County and PUMA "G5108200, G51051080" -County and PUMA "G5108300, G51051206" -County and PUMA "G5108400, G51051084" -County and PUMA "G5300010, G53010600" -County and PUMA "G5300030, G53010600" -County and PUMA "G5300050, G53010701" -County and PUMA "G5300050, G53010702" -County and PUMA "G5300050, G53010703" -County and PUMA "G5300070, G53010300" -County and PUMA "G5300090, G53011900" -County and PUMA "G5300110, G53011101" -County and PUMA "G5300110, G53011102" -County and PUMA "G5300110, G53011103" -County and PUMA "G5300110, G53011104" -County and PUMA "G5300130, G53010600" -County and PUMA "G5300150, G53011200" -County and PUMA "G5300170, G53010300" -County and PUMA "G5300190, G53010400" -County and PUMA "G5300210, G53010701" -County and PUMA "G5300210, G53010703" -County and PUMA "G5300230, G53010600" -County and PUMA "G5300250, G53010800" -County and PUMA "G5300270, G53011300" -County and PUMA "G5300290, G53010200" -County and PUMA "G5300310, G53011900" -County and PUMA "G5300330, G53011601" -County and PUMA "G5300330, G53011602" -County and PUMA "G5300330, G53011603" -County and PUMA "G5300330, G53011604" -County and PUMA "G5300330, G53011605" -County and PUMA "G5300330, G53011606" -County and PUMA "G5300330, G53011607" -County and PUMA "G5300330, G53011608" -County and PUMA "G5300330, G53011609" -County and PUMA "G5300330, G53011610" -County and PUMA "G5300330, G53011611" -County and PUMA "G5300330, G53011612" -County and PUMA "G5300330, G53011613" -County and PUMA "G5300330, G53011614" -County and PUMA "G5300330, G53011615" -County and PUMA "G5300330, G53011616" -County and PUMA "G5300350, G53011801" -County and PUMA "G5300350, G53011802" -County and PUMA "G5300370, G53010800" -County and PUMA "G5300390, G53011000" -County and PUMA "G5300410, G53011000" -County and PUMA "G5300430, G53010600" -County and PUMA "G5300450, G53011300" -County and PUMA "G5300470, G53010400" -County and PUMA "G5300490, G53011200" -County and PUMA "G5300510, G53010400" -County and PUMA "G5300530, G53011501" -County and PUMA "G5300530, G53011502" -County and PUMA "G5300530, G53011503" -County and PUMA "G5300530, G53011504" -County and PUMA "G5300530, G53011505" -County and PUMA "G5300530, G53011506" -County and PUMA "G5300530, G53011507" -County and PUMA "G5300550, G53010200" -County and PUMA "G5300570, G53010200" -County and PUMA "G5300590, G53011000" -County and PUMA "G5300610, G53011701" -County and PUMA "G5300610, G53011702" -County and PUMA "G5300610, G53011703" -County and PUMA "G5300610, G53011704" -County and PUMA "G5300610, G53011705" -County and PUMA "G5300610, G53011706" -County and PUMA "G5300630, G53010501" -County and PUMA "G5300630, G53010502" -County and PUMA "G5300630, G53010503" -County and PUMA "G5300630, G53010504" -County and PUMA "G5300650, G53010400" -County and PUMA "G5300670, G53011401" -County and PUMA "G5300670, G53011402" -County and PUMA "G5300690, G53011200" -County and PUMA "G5300710, G53010703" -County and PUMA "G5300730, G53010100" -County and PUMA "G5300750, G53010600" -County and PUMA "G5300770, G53010901" -County and PUMA "G5300770, G53010902" -County and PUMA "G5400010, G54000500" -County and PUMA "G5400030, G54000400" -County and PUMA "G5400050, G54000900" -County and PUMA "G5400070, G54000600" -County and PUMA "G5400090, G54000100" -County and PUMA "G5400110, G54000800" -County and PUMA "G5400130, G54000600" -County and PUMA "G5400150, G54001000" -County and PUMA "G5400170, G54000200" -County and PUMA "G5400190, G54001200" -County and PUMA "G5400210, G54000600" -County and PUMA "G5400230, G54000500" -County and PUMA "G5400250, G54001100" -County and PUMA "G5400270, G54000400" -County and PUMA "G5400290, G54000100" -County and PUMA "G5400310, G54000500" -County and PUMA "G5400330, G54000200" -County and PUMA "G5400350, G54000600" -County and PUMA "G5400370, G54000400" -County and PUMA "G5400390, G54001000" -County and PUMA "G5400410, G54000500" -County and PUMA "G5400430, G54000900" -County and PUMA "G5400450, G54001300" -County and PUMA "G5400470, G54001300" -County and PUMA "G5400490, G54000200" -County and PUMA "G5400510, G54000100" -County and PUMA "G5400530, G54000800" -County and PUMA "G5400550, G54001200" -County and PUMA "G5400570, G54000400" -County and PUMA "G5400590, G54001300" -County and PUMA "G5400610, G54000300" -County and PUMA "G5400630, G54001100" -County and PUMA "G5400650, G54000400" -County and PUMA "G5400670, G54001100" -County and PUMA "G5400690, G54000100" -County and PUMA "G5400710, G54000500" -County and PUMA "G5400730, G54000700" -County and PUMA "G5400750, G54001100" -County and PUMA "G5400770, G54000300" -County and PUMA "G5400790, G54000900" -County and PUMA "G5400810, G54001200" -County and PUMA "G5400830, G54000500" -County and PUMA "G5400850, G54000600" -County and PUMA "G5400870, G54000600" -County and PUMA "G5400890, G54001100" -County and PUMA "G5400910, G54000200" -County and PUMA "G5400930, G54000500" -County and PUMA "G5400950, G54000600" -County and PUMA "G5400970, G54000500" -County and PUMA "G5400990, G54000800" -County and PUMA "G5401010, G54001100" -County and PUMA "G5401030, G54000600" -County and PUMA "G5401050, G54000700" -County and PUMA "G5401070, G54000700" -County and PUMA "G5401090, G54001300" -County and PUMA "G5500010, G55001601" -County and PUMA "G5500030, G55000100" -County and PUMA "G5500050, G55055101" -County and PUMA "G5500070, G55000100" -County and PUMA "G5500090, G55000200" -County and PUMA "G5500090, G55000300" -County and PUMA "G5500110, G55000700" -County and PUMA "G5500130, G55000100" -County and PUMA "G5500150, G55001401" -County and PUMA "G5500170, G55055101" -County and PUMA "G5500170, G55055103" -County and PUMA "G5500190, G55055101" -County and PUMA "G5500210, G55001000" -County and PUMA "G5500230, G55000700" -County and PUMA "G5500250, G55000101" -County and PUMA "G5500250, G55000102" -County and PUMA "G5500250, G55000103" -County and PUMA "G5500270, G55001001" -County and PUMA "G5500290, G55001300" -County and PUMA "G5500310, G55000100" -County and PUMA "G5500330, G55055102" -County and PUMA "G5500350, G55055103" -County and PUMA "G5500370, G55001300" -County and PUMA "G5500390, G55001401" -County and PUMA "G5500410, G55000600" -County and PUMA "G5500430, G55000800" -County and PUMA "G5500450, G55000800" -County and PUMA "G5500470, G55001400" -County and PUMA "G5500490, G55000800" -County and PUMA "G5500510, G55000100" -County and PUMA "G5500530, G55000700" -County and PUMA "G5500550, G55001001" -County and PUMA "G5500570, G55001601" -County and PUMA "G5500590, G55010000" -County and PUMA "G5500610, G55001301" -County and PUMA "G5500630, G55000900" -County and PUMA "G5500650, G55000800" -County and PUMA "G5500670, G55000600" -County and PUMA "G5500690, G55000600" -County and PUMA "G5500710, G55001301" -County and PUMA "G5500730, G55001600" -County and PUMA "G5500750, G55001300" -County and PUMA "G5500770, G55001400" -County and PUMA "G5500780, G55001400" -County and PUMA "G5500790, G55040101" -County and PUMA "G5500790, G55040301" -County and PUMA "G5500790, G55040701" -County and PUMA "G5500790, G55041001" -County and PUMA "G5500790, G55041002" -County and PUMA "G5500790, G55041003" -County and PUMA "G5500790, G55041004" -County and PUMA "G5500790, G55041005" -County and PUMA "G5500810, G55000700" -County and PUMA "G5500830, G55001300" -County and PUMA "G5500850, G55000600" -County and PUMA "G5500870, G55001500" -County and PUMA "G5500890, G55020000" -County and PUMA "G5500910, G55000700" -County and PUMA "G5500930, G55000700" -County and PUMA "G5500950, G55055101" -County and PUMA "G5500970, G55001601" -County and PUMA "G5500990, G55000100" -County and PUMA "G5501010, G55030000" -County and PUMA "G5501030, G55000800" -County and PUMA "G5501050, G55002400" -County and PUMA "G5501070, G55000100" -County and PUMA "G5501090, G55055102" -County and PUMA "G5501110, G55001000" -County and PUMA "G5501130, G55000100" -County and PUMA "G5501150, G55001400" -County and PUMA "G5501170, G55002500" -County and PUMA "G5501190, G55000100" -County and PUMA "G5501210, G55000700" -County and PUMA "G5501230, G55000700" -County and PUMA "G5501250, G55000600" -County and PUMA "G5501270, G55050000" -County and PUMA "G5501290, G55000100" -County and PUMA "G5501310, G55020000" -County and PUMA "G5501330, G55070101" -County and PUMA "G5501330, G55070201" -County and PUMA "G5501330, G55070301" -County and PUMA "G5501350, G55001400" -County and PUMA "G5501370, G55001400" -County and PUMA "G5501390, G55001501" -County and PUMA "G5501410, G55001601" -County and PUMA "G5600010, G56000300" -County and PUMA "G5600030, G56000100" -County and PUMA "G5600050, G56000200" -County and PUMA "G5600070, G56000400" -County and PUMA "G5600090, G56000400" -County and PUMA "G5600110, G56000200" -County and PUMA "G5600130, G56000500" -County and PUMA "G5600150, G56000200" -County and PUMA "G5600170, G56000500" -County and PUMA "G5600190, G56000200" -County and PUMA "G5600210, G56000300" -County and PUMA "G5600230, G56000100" -County and PUMA "G5600250, G56000400" -County and PUMA "G5600270, G56000200" -County and PUMA "G5600290, G56000100" -County and PUMA "G5600310, G56000200" -County and PUMA "G5600330, G56000100" -County and PUMA "G5600350, G56000500" -County and PUMA "G5600370, G56000500" -County and PUMA "G5600390, G56000100" -County and PUMA "G5600410, G56000500" -County and PUMA "G5600430, G56000200" -County and PUMA "G5600450, G56000200" -County and PUMA "G7200010, G72000401" -County and PUMA "G7200030, G72000101" -County and PUMA "G7200050, G72000102" -County and PUMA "G7200070, G72000602" -County and PUMA "G7200090, G72000602" -County and PUMA "G7200110, G72000101" -County and PUMA "G7200130, G72000301" -County and PUMA "G7200150, G72000701" -County and PUMA "G7200170, G72000301" -County and PUMA "G7200190, G72000601" -County and PUMA "G7200210, G72000801" -County and PUMA "G7200210, G72000802" -County and PUMA "G7200230, G72000201" -County and PUMA "G7200250, G72001001" -County and PUMA "G7200270, G72000302" -County and PUMA "G7200290, G72000902" -County and PUMA "G7200310, G72000901" -County and PUMA "G7200310, G72000902" -County and PUMA "G7200330, G72000803" -County and PUMA "G7200350, G72000602" -County and PUMA "G7200370, G72001101" -County and PUMA "G7200390, G72000501" -County and PUMA "G7200410, G72000602" -County and PUMA "G7200430, G72000403" -County and PUMA "G7200450, G72000601" -County and PUMA "G7200470, G72000601" -County and PUMA "G7200490, G72001101" -County and PUMA "G7200510, G72000502" -County and PUMA "G7200530, G72001101" -County and PUMA "G7200540, G72000301" -County and PUMA "G7200550, G72000401" -County and PUMA "G7200570, G72000701" -County and PUMA "G7200590, G72000401" -County and PUMA "G7200610, G72000803" -County and PUMA "G7200630, G72001002" -County and PUMA "G7200650, G72000302" -County and PUMA "G7200670, G72000202" -County and PUMA "G7200690, G72001102" -County and PUMA "G7200710, G72000102" -County and PUMA "G7200730, G72000402" -County and PUMA "G7200750, G72000403" -County and PUMA "G7200770, G72001002" -County and PUMA "G7200790, G72000201" -County and PUMA "G7200810, G72000302" -County and PUMA "G7200830, G72000202" -County and PUMA "G7200850, G72001002" -County and PUMA "G7200870, G72000902" -County and PUMA "G7200890, G72001101" -County and PUMA "G7200910, G72000501" -County and PUMA "G7200930, G72000202" -County and PUMA "G7200950, G72000701" -County and PUMA "G7200970, G72000202" -County and PUMA "G7200990, G72000101" -County and PUMA "G7201010, G72000501" -County and PUMA "G7201030, G72001102" -County and PUMA "G7201050, G72000601" -County and PUMA "G7201070, G72000601" -County and PUMA "G7201090, G72000701" -County and PUMA "G7201110, G72000401" -County and PUMA "G7201130, G72000402" -County and PUMA "G7201150, G72000102" -County and PUMA "G7201170, G72000101" -County and PUMA "G7201190, G72001101" -County and PUMA "G7201210, G72000201" -County and PUMA "G7201230, G72000701" -County and PUMA "G7201250, G72000201" -County and PUMA "G7201270, G72000804" -County and PUMA "G7201270, G72000805" -County and PUMA "G7201270, G72000806" -County and PUMA "G7201290, G72001002" -County and PUMA "G7201310, G72000101" -County and PUMA "G7201330, G72000403" -County and PUMA "G7201350, G72000503" -County and PUMA "G7201370, G72000502" -County and PUMA "G7201390, G72000902" -County and PUMA "G7201410, G72000302" -County and PUMA "G7201430, G72000503" -County and PUMA "G7201450, G72000501" -County and PUMA "G7201470, G72001101" -County and PUMA "G7201490, G72000403" -County and PUMA "G7201510, G72001102" -County and PUMA "G7201530, G72000401" -Custom State AK -Custom State Others -Dehumidifier "65 pints/day, 50% RH" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=1.8 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 -Dehumidifier "65 pints/day, 50% RH, 2.0 EF" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=2 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 -Dehumidifier "65 pints/day, 60% RH" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=1.8 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.6 dehumidifier_fraction_dehumidification_load_served=1 -Dehumidifier None ResStockArguments dehumidifier_type=none dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=0 dehumidifier_capacity=40 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 -Dishwasher 144 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=144 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=13 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 199 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=199 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=18 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 220 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=220 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=19 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 255 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=255 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=21 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 270 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=270 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=22 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 290 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=290 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=23 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 318 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=318 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=25 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher None ResStockArguments dishwasher_present=false dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=0 dishwasher_label_electric_rate=0 dishwasher_label_gas_rate=0 dishwasher_label_annual_gas_cost=0 dishwasher_label_usage=0 dishwasher_place_setting_capacity=0 -Dishwasher Void -Dishwasher Usage Level 100% Usage ResStockArguments dishwasher_usage_multiplier=1.0 -Dishwasher Usage Level 120% Usage ResStockArguments dishwasher_usage_multiplier=1.2 -Dishwasher Usage Level 80% Usage ResStockArguments dishwasher_usage_multiplier=0.8 -Door Area 20 ft^2 ResStockArguments door_area=20 -Door Area 30 ft^2 ResStockArguments door_area=30 -Door Area 40 ft^2 ResStockArguments door_area=40 -Doors Fiberglass ResStockArguments door_rvalue=5 -Doors Steel ResStockArguments door_rvalue=5 -Doors Wood ResStockArguments door_rvalue=2.1 -Duct Leakage and Insulation "0% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0 ducts_return_leakage_to_outside_value=0 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "10% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "10% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "10% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "10% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "14% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "14% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "14% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "14% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "15% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "15% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "15% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "15% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "20% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "20% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "20% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "20% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "22.5% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "22.5% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "22.5% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "22.5% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "24% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "24% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "24% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "24% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "30% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "30% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "30% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "30% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "34% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "34% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "34% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "34% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "53% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "53% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "53% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "53% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "6% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "6% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "6% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "6% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "7.5% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "7.5% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "7.5% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "7.5% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "85% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "85% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "85% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation "85% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Leakage and Insulation None ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0 ducts_return_leakage_to_outside_value=0 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto ducts_supply_fraction_rectangular=auto ducts_return_fraction_rectangular=auto -Duct Location Attic ResStockArguments ducts_supply_location=attic ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=attic ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location Crawlspace ResStockArguments ducts_supply_location=crawlspace ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=crawlspace ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location Garage ResStockArguments ducts_supply_location=garage ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=garage ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location Heated Basement ResStockArguments ducts_supply_location=basement - conditioned ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=basement - conditioned ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location Living Space ResStockArguments ducts_supply_location=conditioned space ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=conditioned space ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location None ResStockArguments ducts_supply_location=conditioned space ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=conditioned space ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=0 -Duct Location Unheated Basement ResStockArguments ducts_supply_location=basement - unconditioned ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=basement - unconditioned ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Eaves 1 ft ResStockArguments geometry_eaves_depth=1 -Eaves 2 ft ResStockArguments geometry_eaves_depth=2 -Eaves 3 ft ResStockArguments geometry_eaves_depth=3 -Eaves None ResStockArguments geometry_eaves_depth=0 -Electric Vehicle "EV, 4000 miles, 0.3 kWh/mi" ResStockArguments misc_plug_loads_vehicle_present=true misc_plug_loads_vehicle_annual_kwh=1481 misc_plug_loads_vehicle_usage_multiplier=1.0 misc_plug_loads_vehicle_2_usage_multiplier=1.0 -Electric Vehicle "EV, 5000 miles, 0.3 kWh/mi" ResStockArguments misc_plug_loads_vehicle_present=true misc_plug_loads_vehicle_annual_kwh=1852 misc_plug_loads_vehicle_usage_multiplier=1.0 misc_plug_loads_vehicle_2_usage_multiplier=1.0 -Electric Vehicle None ResStockArguments misc_plug_loads_vehicle_present=false misc_plug_loads_vehicle_annual_kwh=0 misc_plug_loads_vehicle_usage_multiplier=0 misc_plug_loads_vehicle_2_usage_multiplier=0 -Energystar Climate Zone 2023 North-Central -Energystar Climate Zone 2023 Northern -Energystar Climate Zone 2023 South-Central -Energystar Climate Zone 2023 Southern -Energystar Climate Zone 2023 Void -Federal Poverty Level 0-100% -Federal Poverty Level 100-150% -Federal Poverty Level 150-200% -Federal Poverty Level 200-300% -Federal Poverty Level 300-400% -Federal Poverty Level 400%+ -Federal Poverty Level Not Available -Generation And Emissions Assessment Region AZNMc -Generation And Emissions Assessment Region CAMXc -Generation And Emissions Assessment Region ERCTc -Generation And Emissions Assessment Region FRCCc -Generation And Emissions Assessment Region MROEc -Generation And Emissions Assessment Region MROWc -Generation And Emissions Assessment Region NEWEc -Generation And Emissions Assessment Region NWPPc -Generation And Emissions Assessment Region NYSTc -Generation And Emissions Assessment Region None -Generation And Emissions Assessment Region RFCEc -Generation And Emissions Assessment Region RFCMc -Generation And Emissions Assessment Region RFCWc -Generation And Emissions Assessment Region RMPAc -Generation And Emissions Assessment Region SPNOc -Generation And Emissions Assessment Region SPSOc -Generation And Emissions Assessment Region SRMVc -Generation And Emissions Assessment Region SRMWc -Generation And Emissions Assessment Region SRSOc -Generation And Emissions Assessment Region SRTVc -Generation And Emissions Assessment Region SRVCc -Geometry Attic Type Finished Attic or Cathedral Ceilings ResStockArguments geometry_attic_type=ConditionedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 -Geometry Attic Type None ResStockArguments geometry_attic_type=FlatRoof geometry_roof_type=gable geometry_roof_pitch=6:12 -Geometry Attic Type Unvented Attic ResStockArguments geometry_attic_type=UnventedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 -Geometry Attic Type Vented Attic ResStockArguments geometry_attic_type=VentedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 -Geometry Building Horizontal Location MF Left ResStockArguments geometry_unit_horizontal_location=Left -Geometry Building Horizontal Location MF Middle ResStockArguments geometry_unit_horizontal_location=Middle -Geometry Building Horizontal Location MF None -Geometry Building Horizontal Location MF Not Applicable ResStockArguments geometry_unit_horizontal_location=None -Geometry Building Horizontal Location MF Right ResStockArguments geometry_unit_horizontal_location=Right -Geometry Building Horizontal Location SFA Left ResStockArguments geometry_unit_horizontal_location=Left -Geometry Building Horizontal Location SFA Middle ResStockArguments geometry_unit_horizontal_location=Middle -Geometry Building Horizontal Location SFA None -Geometry Building Horizontal Location SFA Right ResStockArguments geometry_unit_horizontal_location=Right -Geometry Building Level MF Bottom ResStockArguments geometry_unit_level=Bottom -Geometry Building Level MF Middle ResStockArguments geometry_unit_level=Middle -Geometry Building Level MF None -Geometry Building Level MF Top ResStockArguments geometry_unit_level=Top -Geometry Building Number Units MF 10 ResStockArguments geometry_building_num_units=10 -Geometry Building Number Units MF 102 ResStockArguments geometry_building_num_units=102 -Geometry Building Number Units MF 11 ResStockArguments geometry_building_num_units=11 -Geometry Building Number Units MF 116 ResStockArguments geometry_building_num_units=116 -Geometry Building Number Units MF 12 ResStockArguments geometry_building_num_units=12 -Geometry Building Number Units MF 13 ResStockArguments geometry_building_num_units=13 -Geometry Building Number Units MF 14 ResStockArguments geometry_building_num_units=14 -Geometry Building Number Units MF 15 ResStockArguments geometry_building_num_units=15 -Geometry Building Number Units MF 16 ResStockArguments geometry_building_num_units=16 -Geometry Building Number Units MF 17 ResStockArguments geometry_building_num_units=17 -Geometry Building Number Units MF 18 ResStockArguments geometry_building_num_units=18 -Geometry Building Number Units MF 183 ResStockArguments geometry_building_num_units=183 -Geometry Building Number Units MF 19 ResStockArguments geometry_building_num_units=19 -Geometry Building Number Units MF 2 ResStockArguments geometry_building_num_units=2 -Geometry Building Number Units MF 20 ResStockArguments geometry_building_num_units=20 -Geometry Building Number Units MF 21 ResStockArguments geometry_building_num_units=21 -Geometry Building Number Units MF 24 ResStockArguments geometry_building_num_units=24 -Geometry Building Number Units MF 3 ResStockArguments geometry_building_num_units=3 -Geometry Building Number Units MF 30 ResStockArguments geometry_building_num_units=30 -Geometry Building Number Units MF 323 ResStockArguments geometry_building_num_units=323 -Geometry Building Number Units MF 326 ResStockArguments geometry_building_num_units=326 -Geometry Building Number Units MF 36 ResStockArguments geometry_building_num_units=36 -Geometry Building Number Units MF 4 ResStockArguments geometry_building_num_units=4 -Geometry Building Number Units MF 43 ResStockArguments geometry_building_num_units=43 -Geometry Building Number Units MF 5 ResStockArguments geometry_building_num_units=5 -Geometry Building Number Units MF 6 ResStockArguments geometry_building_num_units=6 -Geometry Building Number Units MF 67 ResStockArguments geometry_building_num_units=67 -Geometry Building Number Units MF 7 ResStockArguments geometry_building_num_units=7 -Geometry Building Number Units MF 8 ResStockArguments geometry_building_num_units=8 -Geometry Building Number Units MF 9 ResStockArguments geometry_building_num_units=9 -Geometry Building Number Units MF None -Geometry Building Number Units SFA 10 ResStockArguments geometry_building_num_units=10 -Geometry Building Number Units SFA 12 ResStockArguments geometry_building_num_units=12 -Geometry Building Number Units SFA 144 ResStockArguments geometry_building_num_units=144 -Geometry Building Number Units SFA 15 ResStockArguments geometry_building_num_units=15 -Geometry Building Number Units SFA 16 ResStockArguments geometry_building_num_units=16 -Geometry Building Number Units SFA 2 ResStockArguments geometry_building_num_units=2 -Geometry Building Number Units SFA 20 ResStockArguments geometry_building_num_units=20 -Geometry Building Number Units SFA 24 ResStockArguments geometry_building_num_units=24 -Geometry Building Number Units SFA 3 ResStockArguments geometry_building_num_units=3 -Geometry Building Number Units SFA 30 ResStockArguments geometry_building_num_units=30 -Geometry Building Number Units SFA 36 ResStockArguments geometry_building_num_units=36 -Geometry Building Number Units SFA 4 ResStockArguments geometry_building_num_units=4 -Geometry Building Number Units SFA 5 ResStockArguments geometry_building_num_units=5 -Geometry Building Number Units SFA 50 ResStockArguments geometry_building_num_units=50 -Geometry Building Number Units SFA 6 ResStockArguments geometry_building_num_units=6 -Geometry Building Number Units SFA 60 ResStockArguments geometry_building_num_units=60 -Geometry Building Number Units SFA 7 ResStockArguments geometry_building_num_units=7 -Geometry Building Number Units SFA 8 ResStockArguments geometry_building_num_units=8 -Geometry Building Number Units SFA 9 ResStockArguments geometry_building_num_units=9 -Geometry Building Number Units SFA 90 ResStockArguments geometry_building_num_units=90 -Geometry Building Number Units SFA None -Geometry Building Type ACS 10 to 19 Unit -Geometry Building Type ACS 2 Unit -Geometry Building Type ACS 20 to 49 Unit -Geometry Building Type ACS 3 or 4 Unit -Geometry Building Type ACS 5 to 9 Unit -Geometry Building Type ACS 50 or more Unit -Geometry Building Type ACS Mobile Home -Geometry Building Type ACS Single-Family Attached -Geometry Building Type ACS Single-Family Detached -Geometry Building Type Height "Multifamily with 5+ units, 1-3 stories" -Geometry Building Type Height "Multifamily with 5+ units, 4-7 stories" -Geometry Building Type Height "Multifamily with 5+ units, 8+ stories" -Geometry Building Type Height Mobile Home -Geometry Building Type Height Multifamily with 2-4 Units -Geometry Building Type Height Single-Family Attached -Geometry Building Type Height Single-Family Detached -Geometry Building Type RECS Mobile Home ResStockArguments geometry_unit_type=single-family detached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=1.8 -Geometry Building Type RECS Multi-Family with 2 - 4 Units ResStockArguments geometry_unit_type=apartment unit geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 -Geometry Building Type RECS Multi-Family with 5+ Units ResStockArguments geometry_unit_type=apartment unit geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 -Geometry Building Type RECS Single-Family Attached ResStockArguments geometry_unit_type=single-family attached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 -Geometry Building Type RECS Single-Family Detached ResStockArguments geometry_unit_type=single-family detached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=1.8 -Geometry Floor Area 0-499 ResStockArguments geometry_unit_cfa_bin=0-499 geometry_unit_cfa=auto geometry_garage_protrusion=0.75 -Geometry Floor Area 1000-1499 ResStockArguments geometry_unit_cfa_bin=1000-1499 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 1500-1999 ResStockArguments geometry_unit_cfa_bin=1500-1999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 2000-2499 ResStockArguments geometry_unit_cfa_bin=2000-2499 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 2500-2999 ResStockArguments geometry_unit_cfa_bin=2500-2999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 3000-3999 ResStockArguments geometry_unit_cfa_bin=3000-3999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 4000+ ResStockArguments geometry_unit_cfa_bin=4000+ geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 500-749 ResStockArguments geometry_unit_cfa_bin=500-749 geometry_unit_cfa=auto geometry_garage_protrusion=0.75 -Geometry Floor Area 750-999 ResStockArguments geometry_unit_cfa_bin=750-999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area Bin 0-1499 -Geometry Floor Area Bin 1500-2499 -Geometry Floor Area Bin 2500-3999 -Geometry Floor Area Bin 4000+ -Geometry Foundation Type Ambient ResStockArguments geometry_foundation_type=Ambient geometry_foundation_height=4 geometry_foundation_height_above_grade=4 geometry_rim_joist_height=0 -Geometry Foundation Type Conditioned Crawlspace ResStockArguments geometry_foundation_type=ConditionedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Foundation Type Heated Basement ResStockArguments geometry_foundation_type=ConditionedBasement geometry_foundation_height=8 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Foundation Type Slab ResStockArguments geometry_foundation_type=SlabOnGrade geometry_foundation_height=0 geometry_foundation_height_above_grade=0 geometry_rim_joist_height=0 -Geometry Foundation Type Unheated Basement ResStockArguments geometry_foundation_type=UnconditionedBasement geometry_foundation_height=8 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Foundation Type Unvented Crawlspace ResStockArguments geometry_foundation_type=UnventedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Foundation Type Vented Crawlspace ResStockArguments geometry_foundation_type=VentedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Garage 1 Car ResStockArguments geometry_garage_width=12 geometry_garage_depth=24 geometry_garage_position=Right -Geometry Garage 2 Car ResStockArguments geometry_garage_width=24 geometry_garage_depth=24 geometry_garage_position=Right -Geometry Garage 3 Car ResStockArguments geometry_garage_width=36 geometry_garage_depth=24 geometry_garage_position=Right -Geometry Garage None ResStockArguments geometry_garage_width=0 geometry_garage_depth=24 geometry_garage_position=Right -Geometry Heated Basement No -Geometry Heated Basement Yes -Geometry Number Units ACS bins 10 to 19 Units -Geometry Number Units ACS bins 20 to 49 Units -Geometry Number Units ACS bins 5 to 9 Units -Geometry Number Units ACS bins 50 or more -Geometry Number Units ACS bins <5 -Geometry Space Combination "Mobile Home, Ambient, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Slab, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Slab, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage" -Geometry Space Combination Void -Geometry Stories 1 ResStockArguments geometry_num_floors_above_grade=1 -Geometry Stories 10 ResStockArguments geometry_num_floors_above_grade=10 -Geometry Stories 11 ResStockArguments geometry_num_floors_above_grade=11 -Geometry Stories 12 ResStockArguments geometry_num_floors_above_grade=12 -Geometry Stories 13 ResStockArguments geometry_num_floors_above_grade=13 -Geometry Stories 14 ResStockArguments geometry_num_floors_above_grade=14 -Geometry Stories 15 ResStockArguments geometry_num_floors_above_grade=15 -Geometry Stories 2 ResStockArguments geometry_num_floors_above_grade=2 -Geometry Stories 20 ResStockArguments geometry_num_floors_above_grade=20 -Geometry Stories 21 ResStockArguments geometry_num_floors_above_grade=21 -Geometry Stories 3 ResStockArguments geometry_num_floors_above_grade=3 -Geometry Stories 35 ResStockArguments geometry_num_floors_above_grade=35 -Geometry Stories 4 ResStockArguments geometry_num_floors_above_grade=4 -Geometry Stories 5 ResStockArguments geometry_num_floors_above_grade=5 -Geometry Stories 6 ResStockArguments geometry_num_floors_above_grade=6 -Geometry Stories 7 ResStockArguments geometry_num_floors_above_grade=7 -Geometry Stories 8 ResStockArguments geometry_num_floors_above_grade=8 -Geometry Stories 9 ResStockArguments geometry_num_floors_above_grade=9 -Geometry Stories Low Rise 1 -Geometry Stories Low Rise 2 -Geometry Stories Low Rise 3 -Geometry Stories Low Rise 4+ -Geometry Story Bin 8+ -Geometry Story Bin <8 -Geometry Wall Exterior Finish "Aluminum, Light" ResStockArguments wall_siding_type=aluminum siding wall_color=light exterior_finish_r=0.6 -Geometry Wall Exterior Finish "Brick, Light" ResStockArguments wall_siding_type=brick veneer wall_color=light exterior_finish_r=0.7 -Geometry Wall Exterior Finish "Brick, Medium/Dark" ResStockArguments wall_siding_type=brick veneer wall_color=medium dark exterior_finish_r=0.7 -Geometry Wall Exterior Finish "Fiber-Cement, Light" ResStockArguments wall_siding_type=fiber cement siding wall_color=light exterior_finish_r=0.2 -Geometry Wall Exterior Finish "Shingle, Asbestos, Medium" ResStockArguments wall_siding_type=asbestos siding wall_color=medium exterior_finish_r=0.6 -Geometry Wall Exterior Finish "Shingle, Composition, Medium" ResStockArguments wall_siding_type=composite shingle siding wall_color=medium exterior_finish_r=0.6 -Geometry Wall Exterior Finish "Stucco, Light" ResStockArguments wall_siding_type=stucco wall_color=light exterior_finish_r=0.2 -Geometry Wall Exterior Finish "Stucco, Medium/Dark" ResStockArguments wall_siding_type=stucco wall_color=medium dark exterior_finish_r=0.2 -Geometry Wall Exterior Finish "Vinyl, Light" ResStockArguments wall_siding_type=vinyl siding wall_color=light exterior_finish_r=0.6 -Geometry Wall Exterior Finish "Wood, Medium/Dark" ResStockArguments wall_siding_type=wood siding wall_color=medium dark exterior_finish_r=1.4 -Geometry Wall Exterior Finish None ResStockArguments wall_siding_type=none wall_color=medium exterior_finish_r=0 -Geometry Wall Type Brick -Geometry Wall Type Concrete -Geometry Wall Type Steel Frame -Geometry Wall Type Void -Geometry Wall Type Wood Frame -Ground Thermal Conductivity 0.5 ResStockArguments site_ground_conductivity=0.5 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 0.8 ResStockArguments site_ground_conductivity=0.8 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 1.1 ResStockArguments site_ground_conductivity=1.1 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 1.4 ResStockArguments site_ground_conductivity=1.4 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 1.7 ResStockArguments site_ground_conductivity=1.7 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 2 ResStockArguments site_ground_conductivity=2.0 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 2.3 ResStockArguments site_ground_conductivity=2.3 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -Ground Thermal Conductivity 2.6 ResStockArguments site_ground_conductivity=2.6 site_ground_diffusivity=auto site_soil_and_moisture_type=auto -HVAC Cooling Autosizing Factor 40% Oversized ResStockArguments cooling_system_cooling_autosizing_factor=1.4 heat_pump_cooling_autosizing_factor=auto -HVAC Cooling Autosizing Factor None -HVAC Cooling Efficiency "AC, SEER 10" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=10 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 13" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 14" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=14 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 15" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=15 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 18" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=18 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 24.5" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=24.5 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 8" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=8 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "Room AC, EER 10.7" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=10.7 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "Room AC, EER 12.0" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=12 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "Room AC, EER 8.5" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=8.5 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "Room AC, EER 9.8" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=9.8 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency Ducted Heat Pump ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency Evaporative Cooler ResStockArguments cooling_system_type=evaporative cooler cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency Non-Ducted Heat Pump ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency None ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency Shared Cooling -HVAC Cooling Partial Space Conditioning 100% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=1 -HVAC Cooling Partial Space Conditioning 20% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.2 -HVAC Cooling Partial Space Conditioning 40% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.4 -HVAC Cooling Partial Space Conditioning 60% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.6 -HVAC Cooling Partial Space Conditioning 80% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.8 -HVAC Cooling Partial Space Conditioning <10% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.1 -HVAC Cooling Partial Space Conditioning None ResStockArguments cooling_system_fraction_cool_load_served=0 -HVAC Cooling Partial Space Conditioning Void -HVAC Cooling Type Central AC -HVAC Cooling Type Ducted Heat Pump -HVAC Cooling Type Evaporative or Swamp Cooler -HVAC Cooling Type Non-Ducted Heat Pump -HVAC Cooling Type None -HVAC Cooling Type Room AC -HVAC Detailed Performance Data Default ResStockArguments hvac_perf_data_capacity_type=auto hvac_perf_data_heating_outdoor_temperatures=auto hvac_perf_data_heating_min_speed_capacities=auto hvac_perf_data_heating_max_speed_capacities=auto hvac_perf_data_heating_min_speed_cops=auto hvac_perf_data_heating_max_speed_cops=auto hvac_perf_data_cooling_outdoor_temperatures=auto hvac_perf_data_cooling_min_speed_capacities=auto hvac_perf_data_cooling_max_speed_capacities=auto hvac_perf_data_cooling_min_speed_cops=auto hvac_perf_data_cooling_max_speed_cops=auto -HVAC Has Ducts No ResStockArguments hvac_blower_fan_watts_per_cfm=auto -HVAC Has Ducts Void -HVAC Has Ducts Yes ResStockArguments hvac_blower_fan_watts_per_cfm=auto -HVAC Has Shared System Cooling Only -HVAC Has Shared System Heating Only -HVAC Has Shared System Heating and Cooling -HVAC Has Shared System None -HVAC Has Shared System Void -HVAC Has Zonal Electric Heating No -HVAC Has Zonal Electric Heating Yes -HVAC Heating Autosizing Factor 40% Oversized ResStockArguments heating_system_heating_autosizing_factor=1.4 heating_system_2_heating_autosizing_factor=auto heat_pump_heating_autosizing_factor=auto heat_pump_backup_heating_autosizing_factor=auto -HVAC Heating Autosizing Factor None -HVAC Heating Efficiency "ASHP, SEER 10, 6.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=6.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 10.3, 7.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 11.5, 7.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=11.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 13, 7.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=13 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 13, 8.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=13 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 14, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 14.3, 8.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 15, 8.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 15, 9.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 16, 9.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 17, 8.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 18, 9.3 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 22, 10 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=10 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=22 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 14, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Electric Baseboard, 100% Efficiency" ResStockArguments heating_system_type=ElectricResistance heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Electric Boiler, 100% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Electric Furnace, 100% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Electric Wall Furnace, 100% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 72% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.72 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.76 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.8 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 82% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.82 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 85% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.85 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.9 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 95% AFUE, OAT Reset" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.95 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 96% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.96 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 60% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.6 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 68% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.68 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 72% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.72 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 76% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.76 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 80% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.8 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 85% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.85 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 90% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.9 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 92.5% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.925 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 96% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.96 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Wall/Floor Furnace, 60% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=0.6 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Wall/Floor Furnace, 68% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=0.68 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "GSHP, EER 16.6, COP 3.6" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=3.6 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=16.6 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=vertical geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "GSHP, EER 20.2, COP 4.2" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=4.2 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=20.2 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=vertical geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 14.5, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 14.5, 8.2 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 17, 9.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 17, 9.5 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 18.0, 9.6 HSPF, 60% Conditioned" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.6 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=0.6 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=0.6 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 18.0, 9.6 HSPF, 60% Conditioned, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.6 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=0.6 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=0.6 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 25, 12.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=12.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=25.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 25, 12.7 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=12.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=25.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 29.3, 14 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=14 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=29.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 29.3, 14 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=14 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=29.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 33, 13.3 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=13.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=33.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 33, 13.3 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=13.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=33.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency None ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=6.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency Shared Heating -HVAC Heating Efficiency Void -HVAC Heating Type Ducted Heat Pump -HVAC Heating Type Ducted Heating -HVAC Heating Type Non-Ducted Heat Pump -HVAC Heating Type Non-Ducted Heating -HVAC Heating Type None -HVAC Heating Type And Fuel Electricity ASHP -HVAC Heating Type And Fuel Electricity Baseboard -HVAC Heating Type And Fuel Electricity Electric Boiler -HVAC Heating Type And Fuel Electricity Electric Furnace -HVAC Heating Type And Fuel Electricity Electric Wall Furnace -HVAC Heating Type And Fuel Electricity MSHP -HVAC Heating Type And Fuel Electricity Other -HVAC Heating Type And Fuel Electricity Shared Heating -HVAC Heating Type And Fuel Fuel Oil Fuel Boiler -HVAC Heating Type And Fuel Fuel Oil Fuel Furnace -HVAC Heating Type And Fuel Fuel Oil Fuel Wall/Floor Furnace -HVAC Heating Type And Fuel Fuel Oil Shared Heating -HVAC Heating Type And Fuel Natural Gas Fuel Boiler -HVAC Heating Type And Fuel Natural Gas Fuel Furnace -HVAC Heating Type And Fuel Natural Gas Fuel Wall/Floor Furnace -HVAC Heating Type And Fuel Natural Gas Shared Heating -HVAC Heating Type And Fuel None -HVAC Heating Type And Fuel Other Fuel Fuel Boiler -HVAC Heating Type And Fuel Other Fuel Fuel Furnace -HVAC Heating Type And Fuel Other Fuel Fuel Wall/Floor Furnace -HVAC Heating Type And Fuel Other Fuel Shared Heating -HVAC Heating Type And Fuel Propane Fuel Boiler -HVAC Heating Type And Fuel Propane Fuel Furnace -HVAC Heating Type And Fuel Propane Fuel Wall/Floor Furnace -HVAC Heating Type And Fuel Propane Shared Heating -HVAC Heating Type And Fuel Void -HVAC Secondary Heating Efficiency "Electric Baseboard, 100% Efficiency" ResStockArguments heating_system_2_type=ElectricResistance heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Electric Portable Heater, 100% Efficiency" ResStockArguments heating_system_2_type=SpaceHeater heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Boiler, 60% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.76 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.8 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.90 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Boiler, 92.5% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.925 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Fireplace, 60% AFUE" ResStockArguments heating_system_2_type=Fireplace heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Furnace, 60% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Furnace, 76% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.76 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Furnace, 80% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.8 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Furnace, 92.5% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.925 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency None ResStockArguments heating_system_2_type=none heating_system_2_heating_efficiency=0 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency Shared Heating ResStockArguments heating_system_2_type=none heating_system_2_heating_efficiency=0 heating_system_2_heating_capacity=auto heating_system_2_heating_autosizing_limit=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency Void -HVAC Secondary Heating Fuel Electricity ResStockArguments heating_system_2_fuel=electricity -HVAC Secondary Heating Fuel Fuel Oil ResStockArguments heating_system_2_fuel=fuel oil -HVAC Secondary Heating Fuel Natural Gas ResStockArguments heating_system_2_fuel=natural gas -HVAC Secondary Heating Fuel None ResStockArguments heating_system_2_fuel=electricity -HVAC Secondary Heating Fuel Other Fuel ResStockArguments heating_system_2_fuel=wood -HVAC Secondary Heating Fuel Propane ResStockArguments heating_system_2_fuel=propane -HVAC Secondary Heating Fuel Wood ResStockArguments heating_system_2_fuel=wood -HVAC Secondary Heating Partial Space Conditioning 0% ResStockArguments heating_system_2_fraction_heat_load_served=0 -HVAC Secondary Heating Partial Space Conditioning 10% ResStockArguments heating_system_2_fraction_heat_load_served=0.1 -HVAC Secondary Heating Partial Space Conditioning 20% ResStockArguments heating_system_2_fraction_heat_load_served=0.2 -HVAC Secondary Heating Partial Space Conditioning 30% ResStockArguments heating_system_2_fraction_heat_load_served=0.3 -HVAC Secondary Heating Partial Space Conditioning 40% ResStockArguments heating_system_2_fraction_heat_load_served=0.4 -HVAC Secondary Heating Partial Space Conditioning 49% ResStockArguments heating_system_2_fraction_heat_load_served=0.49 -HVAC Secondary Heating Partial Space Conditioning None ResStockArguments heating_system_2_fraction_heat_load_served=0 -HVAC Secondary Heating Partial Space Conditioning Void -HVAC Secondary Heating Type Ducted Heating -HVAC Secondary Heating Type Non-Ducted Heating -HVAC Secondary Heating Type None -HVAC Shared Efficiencies "Boiler Baseboards Heating Only, Electricity" ResStockArguments heating_system_type=Shared Boiler w/ Baseboard heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Shared Efficiencies "Boiler Baseboards Heating Only, Fuel" ResStockArguments heating_system_type=Shared Boiler w/ Baseboard heating_system_heating_efficiency=0.78 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Shared Efficiencies "Fan Coil Heating and Cooling, Electricity" ResStockArguments heating_system_type=Shared Boiler w/ Ductless Fan Coil heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Shared Efficiencies "Fan Coil Heating and Cooling, Fuel" ResStockArguments heating_system_type=Shared Boiler w/ Ductless Fan Coil heating_system_heating_efficiency=0.78 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Shared Efficiencies Fan Coil Cooling Only ResStockArguments cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false -HVAC Shared Efficiencies None -HVAC Shared Efficiencies Void -HVAC System Is Faulted No -HVAC System Is Faulted Yes -HVAC System Is Scaled No -HVAC System Is Scaled Yes -HVAC System Single Speed AC Airflow 154.8 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=154.8 -HVAC System Single Speed AC Airflow 204.4 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=204.4 -HVAC System Single Speed AC Airflow 254.0 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=254.0 -HVAC System Single Speed AC Airflow 303.5 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=303.5 -HVAC System Single Speed AC Airflow 353.1 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=353.1 -HVAC System Single Speed AC Airflow 402.7 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=402.7 -HVAC System Single Speed AC Airflow 452.3 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=452.3 -HVAC System Single Speed AC Airflow 501.9 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=501.9 -HVAC System Single Speed AC Airflow 551.5 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=551.5 -HVAC System Single Speed AC Airflow 601.0 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=601.0 -HVAC System Single Speed AC Airflow 650.6 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=650.6 -HVAC System Single Speed AC Airflow 700.2 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=700.2 -HVAC System Single Speed AC Airflow None -HVAC System Single Speed AC Charge 0.570 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.570 -HVAC System Single Speed AC Charge 0.709 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.709 -HVAC System Single Speed AC Charge 0.848 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.848 -HVAC System Single Speed AC Charge 0.988 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.988 -HVAC System Single Speed AC Charge 1.127 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.127 -HVAC System Single Speed AC Charge 1.266 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.266 -HVAC System Single Speed AC Charge 1.405 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.405 -HVAC System Single Speed AC Charge None -HVAC System Single Speed ASHP Airflow 154.8 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=154.8 -HVAC System Single Speed ASHP Airflow 204.4 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=204.4 -HVAC System Single Speed ASHP Airflow 254.0 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=254.0 -HVAC System Single Speed ASHP Airflow 303.5 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=303.5 -HVAC System Single Speed ASHP Airflow 353.1 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=353.1 -HVAC System Single Speed ASHP Airflow 402.7 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=402.7 -HVAC System Single Speed ASHP Airflow 452.3 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=452.3 -HVAC System Single Speed ASHP Airflow 501.9 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=501.9 -HVAC System Single Speed ASHP Airflow 551.5 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=551.5 -HVAC System Single Speed ASHP Airflow 601.0 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=601.0 -HVAC System Single Speed ASHP Airflow 650.6 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=650.6 -HVAC System Single Speed ASHP Airflow 700.2 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=700.2 -HVAC System Single Speed ASHP Airflow None -HVAC System Single Speed ASHP Charge 0.570 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.570 -HVAC System Single Speed ASHP Charge 0.709 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.709 -HVAC System Single Speed ASHP Charge 0.848 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.848 -HVAC System Single Speed ASHP Charge 0.988 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.988 -HVAC System Single Speed ASHP Charge 1.127 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.127 -HVAC System Single Speed ASHP Charge 1.266 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.266 -HVAC System Single Speed ASHP Charge 1.405 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.405 -HVAC System Single Speed ASHP Charge None -Has PV No -Has PV Yes -Heat Pump Backup Use Existing System ResStockArguments heat_pump_backup_use_existing_system=true -Heating Fuel Electricity ResStockArguments heating_system_fuel=electricity -Heating Fuel Fuel Oil ResStockArguments heating_system_fuel=fuel oil -Heating Fuel Natural Gas ResStockArguments heating_system_fuel=natural gas -Heating Fuel None ResStockArguments heating_system_fuel=natural gas -Heating Fuel Other Fuel ResStockArguments heating_system_fuel=wood -Heating Fuel Propane ResStockArguments heating_system_fuel=propane -Heating Fuel Wood ResStockArguments heating_system_fuel=wood -Heating Setpoint 55F ResStockArguments hvac_control_heating_weekday_setpoint_temp=55 hvac_control_heating_weekend_setpoint_temp=55 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 60F ResStockArguments hvac_control_heating_weekday_setpoint_temp=60 hvac_control_heating_weekend_setpoint_temp=60 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 62F ResStockArguments hvac_control_heating_weekday_setpoint_temp=62 hvac_control_heating_weekend_setpoint_temp=62 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 63F ResStockArguments hvac_control_heating_weekday_setpoint_temp=63 hvac_control_heating_weekend_setpoint_temp=63 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 64F ResStockArguments hvac_control_heating_weekday_setpoint_temp=64 hvac_control_heating_weekend_setpoint_temp=64 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 65F ResStockArguments hvac_control_heating_weekday_setpoint_temp=65 hvac_control_heating_weekend_setpoint_temp=65 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 66F ResStockArguments hvac_control_heating_weekday_setpoint_temp=66 hvac_control_heating_weekend_setpoint_temp=66 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 67F ResStockArguments hvac_control_heating_weekday_setpoint_temp=67 hvac_control_heating_weekend_setpoint_temp=67 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 68F ResStockArguments hvac_control_heating_weekday_setpoint_temp=68 hvac_control_heating_weekend_setpoint_temp=68 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 69F ResStockArguments hvac_control_heating_weekday_setpoint_temp=69 hvac_control_heating_weekend_setpoint_temp=69 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 70F ResStockArguments hvac_control_heating_weekday_setpoint_temp=70 hvac_control_heating_weekend_setpoint_temp=70 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 71F ResStockArguments hvac_control_heating_weekday_setpoint_temp=71 hvac_control_heating_weekend_setpoint_temp=71 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 71F w/ Building America season ResStockArguments hvac_control_heating_weekday_setpoint_temp=71 hvac_control_heating_weekend_setpoint_temp=71 use_auto_heating_season=true hvac_control_heating_season_period=auto -Heating Setpoint 72F ResStockArguments hvac_control_heating_weekday_setpoint_temp=72 hvac_control_heating_weekend_setpoint_temp=72 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 73F ResStockArguments hvac_control_heating_weekday_setpoint_temp=73 hvac_control_heating_weekend_setpoint_temp=73 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 74F ResStockArguments hvac_control_heating_weekday_setpoint_temp=74 hvac_control_heating_weekend_setpoint_temp=74 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 75F ResStockArguments hvac_control_heating_weekday_setpoint_temp=75 hvac_control_heating_weekend_setpoint_temp=75 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 76F ResStockArguments hvac_control_heating_weekday_setpoint_temp=76 hvac_control_heating_weekend_setpoint_temp=76 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 78F ResStockArguments hvac_control_heating_weekday_setpoint_temp=78 hvac_control_heating_weekend_setpoint_temp=78 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 80F ResStockArguments hvac_control_heating_weekday_setpoint_temp=80 hvac_control_heating_weekend_setpoint_temp=80 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint Has Offset No -Heating Setpoint Has Offset Yes -Heating Setpoint Offset Magnitude 0F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=0 hvac_control_heating_weekend_setpoint_offset_magnitude=0 -Heating Setpoint Offset Magnitude 12F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=12 hvac_control_heating_weekend_setpoint_offset_magnitude=12 -Heating Setpoint Offset Magnitude 3F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=3 hvac_control_heating_weekend_setpoint_offset_magnitude=3 -Heating Setpoint Offset Magnitude 6F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=6 hvac_control_heating_weekend_setpoint_offset_magnitude=6 -Heating Setpoint Offset Period Day ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day and Night ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1" -Heating Setpoint Offset Period Day and Night +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1" -Heating Setpoint Offset Period Day and Night +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Heating Setpoint Offset Period Day and Night +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Heating Setpoint Offset Period Day and Night +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0" -Heating Setpoint Offset Period Day and Night +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0" -Heating Setpoint Offset Period Day and Night -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1" -Heating Setpoint Offset Period Day and Night -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1" -Heating Setpoint Offset Period Day and Night -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1" -Heating Setpoint Offset Period Day and Night -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1" -Heating Setpoint Offset Period Day and Night -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" -Heating Setpoint Offset Period Night ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" -Heating Setpoint Offset Period Night +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" -Heating Setpoint Offset Period Night +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Night +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Night +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Night +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Night -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" -Heating Setpoint Offset Period Night -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" -Heating Setpoint Offset Period Night -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" -Heating Setpoint Offset Period Night -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" -Heating Setpoint Offset Period Night -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" -Heating Setpoint Offset Period None ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Holiday Lighting No Exterior Use ResStockArguments holiday_lighting_present=false holiday_lighting_daily_kwh=0 holiday_lighting_period=auto -Holiday Lighting None ResStockArguments holiday_lighting_present=false holiday_lighting_daily_kwh=0 holiday_lighting_period=auto -Hot Water Distribution "R-2, Demand" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=presence sensor demand control hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Distribution "R-2, Timer" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=timer hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Distribution "R-5, Timer" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=timer hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=5 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Distribution R-2 ResStockArguments hot_water_distribution_system_type=Standard hot_water_distribution_standard_piping_length=auto hot_water_distribution_recirc_control_type=no control hot_water_distribution_recirc_piping_length=0 hot_water_distribution_recirc_branch_piping_length=0 hot_water_distribution_recirc_pump_power=0 hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Distribution Uninsulated ResStockArguments hot_water_distribution_system_type=Standard hot_water_distribution_standard_piping_length=auto hot_water_distribution_recirc_control_type=no control hot_water_distribution_recirc_piping_length=0 hot_water_distribution_recirc_branch_piping_length=0 hot_water_distribution_recirc_pump_power=0 hot_water_distribution_pipe_r=0 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Fixtures "100% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=1.0 -Hot Water Fixtures "200% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=2.0 -Hot Water Fixtures "50% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=0.5 -Hot Water Fixtures 100% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.0 -Hot Water Fixtures 110% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.1 -Hot Water Fixtures 120% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.2 -Hot Water Fixtures 130% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.3 -Hot Water Fixtures 140% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.4 -Hot Water Fixtures 150% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.5 -Hot Water Fixtures 160% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.6 -Hot Water Fixtures 170% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.7 -Hot Water Fixtures 180% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.8 -Hot Water Fixtures 190% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.9 -Hot Water Fixtures 200% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=2.0 -Hot Water Fixtures 40% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.4 -Hot Water Fixtures 50% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.5 -Hot Water Fixtures 60% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.6 -Hot Water Fixtures 70% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.7 -Hot Water Fixtures 80% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.8 -Hot Water Fixtures 90% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.9 -Household Has Tribal Persons No -Household Has Tribal Persons Not Available -Household Has Tribal Persons Yes -ISO RTO Region CAISO -ISO RTO Region ERCOT -ISO RTO Region MISO -ISO RTO Region NEISO -ISO RTO Region NYISO -ISO RTO Region None -ISO RTO Region PJM -ISO RTO Region SPP -Income 10000-14999 -Income 100000-119999 -Income 120000-139999 -Income 140000-159999 -Income 15000-19999 -Income 160000-179999 -Income 180000-199999 -Income 20000-24999 -Income 200000+ -Income 25000-29999 -Income 30000-34999 -Income 35000-39999 -Income 40000-44999 -Income 45000-49999 -Income 50000-59999 -Income 60000-69999 -Income 70000-79999 -Income 80000-99999 -Income <10000 -Income Not Available -Income RECS2015 100000-119999 -Income RECS2015 120000-139999 -Income RECS2015 140000+ -Income RECS2015 20000-39999 -Income RECS2015 40000-59999 -Income RECS2015 60000-79999 -Income RECS2015 80000-99999 -Income RECS2015 <20000 -Income RECS2015 Not Available -Income RECS2020 100000-149999 -Income RECS2020 150000+ -Income RECS2020 20000-39999 -Income RECS2020 40000-59999 -Income RECS2020 60000-99999 -Income RECS2020 <20000 -Income RECS2020 Not Available -Infiltration "7 ACH50, 0.5 Shelter Coefficient" ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 0.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 0.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 0.75 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.75 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 1 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=1 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 1.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=1.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 10 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=10 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 11.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=11.25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 15 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=15 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 18.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=18.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 2 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=2 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 2.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=2.25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 20 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=20 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 3 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=3 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 3.75 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=3.75 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 30 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=30 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 4 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=4 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 4.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=4.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 40 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=40 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 5.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=5.25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 50 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=50 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 6 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=6 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 7 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 7.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 8 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=8 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration Reduction 15% ResStockArguments air_leakage_percent_reduction=15 -Infiltration Reduction 20% ResStockArguments air_leakage_percent_reduction=20 -Infiltration Reduction 25% ResStockArguments air_leakage_percent_reduction=25 -Insulation Ceiling None ResStockArguments ceiling_assembly_r=0 ceiling_insulation_r=0 -Insulation Ceiling R-13 ResStockArguments ceiling_assembly_r=14.6 ceiling_insulation_r=13 -Insulation Ceiling R-19 ResStockArguments ceiling_assembly_r=20.6 ceiling_insulation_r=19 -Insulation Ceiling R-30 ResStockArguments ceiling_assembly_r=31.6 ceiling_insulation_r=30 -Insulation Ceiling R-38 ResStockArguments ceiling_assembly_r=39.6 ceiling_insulation_r=38 -Insulation Ceiling R-49 ResStockArguments ceiling_assembly_r=50.6 ceiling_insulation_r=49 -Insulation Ceiling R-60 ResStockArguments ceiling_assembly_r=61.6 ceiling_insulation_r=60 -Insulation Ceiling R-7 ResStockArguments ceiling_assembly_r=8.7 ceiling_insulation_r=7 -Insulation Ceiling Uninsulated ResStockArguments ceiling_assembly_r=2.1 ceiling_insulation_r=0 -Insulation Floor Ceiling R-13 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=17.8 floor_over_garage_assembly_r=17.8 -Insulation Floor Ceiling R-19 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=22.6 floor_over_garage_assembly_r=22.6 -Insulation Floor Ceiling R-30 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=30.3 floor_over_garage_assembly_r=30.3 -Insulation Floor Ceiling R-38 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=35.1 floor_over_garage_assembly_r=35.1 -Insulation Floor None ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=0 floor_over_garage_assembly_r=5.3 -Insulation Floor Uninsulated ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=5.3 floor_over_garage_assembly_r=5.3 -Insulation Foundation Wall "Wall R-10, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=10 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto -Insulation Foundation Wall "Wall R-13, Interior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=13 foundation_wall_insulation_location=interior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto -Insulation Foundation Wall "Wall R-15, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=15 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto -Insulation Foundation Wall "Wall R-5, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=5 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto -Insulation Foundation Wall None ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=0 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=0 foundation_wall_assembly_r=auto -Insulation Foundation Wall Uninsulated ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=0 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=0 foundation_wall_assembly_r=auto -Insulation Rim Joist "R-10, Exterior" ResStockArguments rim_joist_continuous_exterior_r=10 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Rim Joist "R-13, Interior" ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=13 rim_joist_assembly_interior_r=10.4 rim_joist_assembly_r=auto -Insulation Rim Joist "R-15, Exterior" ResStockArguments rim_joist_continuous_exterior_r=15 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Rim Joist "R-5, Exterior" ResStockArguments rim_joist_continuous_exterior_r=5 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Rim Joist None ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Rim Joist Uninsulated ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Roof "Finished, R-13" ResStockArguments roof_assembly_r=14.3 -Insulation Roof "Finished, R-19" ResStockArguments roof_assembly_r=21.2 -Insulation Roof "Finished, R-30" ResStockArguments roof_assembly_r=29.7 -Insulation Roof "Finished, R-38" ResStockArguments roof_assembly_r=36.5 -Insulation Roof "Finished, R-49" ResStockArguments roof_assembly_r=47.0 -Insulation Roof "Finished, R-7" ResStockArguments roof_assembly_r=10.2 -Insulation Roof "Finished, Uninsulated" ResStockArguments roof_assembly_r=3.7 -Insulation Roof "Unfinished, Uninsulated" ResStockArguments roof_assembly_r=2.3 -Insulation Sheathing R-10 ResStockArguments wall_continuous_exterior_r=10 -Insulation Sheathing R-15 ResStockArguments wall_continuous_exterior_r=15 -Insulation Sheathing R-5 ResStockArguments wall_continuous_exterior_r=5 -Insulation Slab "2ft R10 Perimeter, Vertical" ResStockArguments slab_perimeter_insulation_r=10 slab_perimeter_depth=2 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "2ft R10 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=10 slab_under_width=2 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "2ft R5 Perimeter, Vertical" ResStockArguments slab_perimeter_insulation_r=5 slab_perimeter_depth=2 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "2ft R5 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=5 slab_under_width=2 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "4ft R5 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=5 slab_under_width=4 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "R10 Whole Slab, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=10 slab_under_width=999 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab None ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab Uninsulated ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Wall "Brick, 12-in, 3-wythe, R-11" ResStockArguments wall_type=StructuralBrick wall_assembly_r=13.3 -Insulation Wall "Brick, 12-in, 3-wythe, R-15" ResStockArguments wall_type=StructuralBrick wall_assembly_r=15.9 -Insulation Wall "Brick, 12-in, 3-wythe, R-19" ResStockArguments wall_type=StructuralBrick wall_assembly_r=18.3 -Insulation Wall "Brick, 12-in, 3-wythe, R-7" ResStockArguments wall_type=StructuralBrick wall_assembly_r=10.3 -Insulation Wall "Brick, 12-in, 3-wythe, Uninsulated" ResStockArguments wall_type=StructuralBrick wall_assembly_r=4.9 -Insulation Wall "CMU, 12-in Hollow" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=4.9 -Insulation Wall "CMU, 12-in Hollow, R-10" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=12.9 -Insulation Wall "CMU, 6-in Concrete Filled" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=3.7 -Insulation Wall "CMU, 6-in Concrete-Filled, R-10" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=11.4 -Insulation Wall "CMU, 6-in Hollow, R-11" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=12.4 -Insulation Wall "CMU, 6-in Hollow, R-15" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=15 -Insulation Wall "CMU, 6-in Hollow, R-19" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=17.4 -Insulation Wall "CMU, 6-in Hollow, R-7" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=9.4 -Insulation Wall "CMU, 6-in Hollow, Uninsulated" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=4 -Insulation Wall "Double Wood Stud, R-33" ResStockArguments wall_type=DoubleWoodStud wall_assembly_r=28.1 -Insulation Wall "Double Wood Stud, R-45, Grade 3" ResStockArguments wall_type=DoubleWoodStud wall_assembly_r=25.1 -Insulation Wall "Generic, 10-in Grid ICF" ResStockArguments wall_type=WoodStud wall_assembly_r=12.4 -Insulation Wall "Generic, T-Mass Wall w/Metal Ties" ResStockArguments wall_type=WoodStud wall_assembly_r=9 -Insulation Wall "ICF, 2-in EPS, 12-in Concrete, 2-in EPS" ResStockArguments wall_type=InsulatedConcreteForms wall_assembly_r=22.5 -Insulation Wall "ICF, 2-in EPS, 4-in Concrete, 2-in EPS" ResStockArguments wall_type=InsulatedConcreteForms wall_assembly_r=20.4 -Insulation Wall "SIP, 3.6 in EPS Core, OSB int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=15.5 -Insulation Wall "SIP, 9.4 in EPS Core, Gypsum int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=35.8 -Insulation Wall "SIP, 9.4 in EPS Core, OSB int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=36 -Insulation Wall "Steel Stud, R-13" ResStockArguments wall_type=SteelFrame wall_assembly_r=7.9 -Insulation Wall "Steel Stud, R-25, Grade 3" ResStockArguments wall_type=SteelFrame wall_assembly_r=10.4 -Insulation Wall "Steel Stud, Uninsulated" ResStockArguments wall_type=SteelFrame wall_assembly_r=3 -Insulation Wall "Wood Stud, R-11" ResStockArguments wall_type=WoodStud wall_assembly_r=10.3 -Insulation Wall "Wood Stud, R-11, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=15.3 -Insulation Wall "Wood Stud, R-13" ResStockArguments wall_type=WoodStud wall_assembly_r=11.3 -Insulation Wall "Wood Stud, R-13, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=16.3 -Insulation Wall "Wood Stud, R-15" ResStockArguments wall_type=WoodStud wall_assembly_r=12.1 -Insulation Wall "Wood Stud, R-15, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=17.1 -Insulation Wall "Wood Stud, R-19" ResStockArguments wall_type=WoodStud wall_assembly_r=15.4 -Insulation Wall "Wood Stud, R-19, Grade 2" ResStockArguments wall_type=WoodStud wall_assembly_r=14.5 -Insulation Wall "Wood Stud, R-19, Grade 2, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=19.5 -Insulation Wall "Wood Stud, R-19, Grade 3" ResStockArguments wall_type=WoodStud wall_assembly_r=13.4 -Insulation Wall "Wood Stud, R-19, Grade 3, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=18.4 -Insulation Wall "Wood Stud, R-19, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=20.4 -Insulation Wall "Wood Stud, R-23 Closed Cell Spray Foam, 2x4, 16 in o.c." ResStockArguments wall_type=WoodStud wall_assembly_r=14.7 -Insulation Wall "Wood Stud, R-23 Closed Cell Spray Foam, 2x4, 16 in o.c., R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=19.7 -Insulation Wall "Wood Stud, R-36" ResStockArguments wall_type=WoodStud wall_assembly_r=22.3 -Insulation Wall "Wood Stud, R-36, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=27.3 -Insulation Wall "Wood Stud, R-7" ResStockArguments wall_type=WoodStud wall_assembly_r=8.7 -Insulation Wall "Wood Stud, R-7, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=13.7 -Insulation Wall "Wood Stud, Uninsulated" ResStockArguments wall_type=WoodStud wall_assembly_r=3.4 -Insulation Wall "Wood Stud, Uninsulated, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=8.4 -Insulation Wall Void -Interior Shading "Summer = 0.5, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.5 window_interior_shading_winter=0.7 -Interior Shading "Summer = 0.5, Winter = 0.95" ResStockArguments window_interior_shading_summer=0.5 window_interior_shading_winter=0.95 -Interior Shading "Summer = 0.6, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.6 window_interior_shading_winter=0.7 -Interior Shading "Summer = 0.7, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.7 -Interior Shading "Summer = 0.7, Winter = 0.85" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.85 -Interior Shading "Summer = 0.7, Winter = 0.95" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.95 -Lighting 100% CFL ResStockArguments lighting_present=true lighting_interior_fraction_cfl=1 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=1 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=1 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 -Lighting 100% Incandescent ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 -Lighting 100% LED ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=1 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=1 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=1 -Lighting 20% LED ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0.2 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0.2 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0.2 -Lighting 60% CFL ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0.6 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0.6 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0.6 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 -Lighting None ResStockArguments lighting_present=false lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 -Lighting Interior Use 100% Usage ResStockArguments lighting_interior_usage_multiplier=1.0 -Lighting Interior Use 95% Usage ResStockArguments lighting_interior_usage_multiplier=0.95 -Lighting Interior Use None ResStockArguments lighting_interior_usage_multiplier=0.0 -Lighting Other Use 100% Usage ResStockArguments lighting_exterior_usage_multiplier=1.0 lighting_garage_usage_multiplier=1.0 -Lighting Other Use 95% Usage ResStockArguments lighting_exterior_usage_multiplier=0.95 lighting_garage_usage_multiplier=0.95 -Lighting Other Use None ResStockArguments lighting_exterior_usage_multiplier=0.0 lighting_garage_usage_multiplier=0.0 -Location Region CR02 -Location Region CR03 -Location Region CR04 -Location Region CR05 -Location Region CR06 -Location Region CR07 -Location Region CR08 -Location Region CR09 -Location Region CR10 -Location Region CR11 -Location Region CRAK -Location Region CRHI -Mechanical Ventilation "ERV, 72%" ResStockArguments mech_vent_fan_type=energy recovery ventilator mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0.48 mech_vent_sensible_recovery_efficiency=0.72 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Mechanical Ventilation "HRV, 60%" ResStockArguments mech_vent_fan_type=heat recovery ventilator mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0.6 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Mechanical Ventilation Exhaust ResStockArguments mech_vent_fan_type=exhaust only mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Mechanical Ventilation None ResStockArguments mech_vent_fan_type=none mech_vent_flow_rate=0 mech_vent_hours_in_operation=0 mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=0 mech_vent_num_units_served=0 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Mechanical Ventilation Supply ResStockArguments mech_vent_fan_type=supply only mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Metropolitan and Micropolitan Statistical Area "Aberdeen, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Aberdeen, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Abilene, TX MSA" -Metropolitan and Micropolitan Statistical Area "Ada, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Adrian, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Akron, OH MSA" -Metropolitan and Micropolitan Statistical Area "Alamogordo, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Albany, GA MSA" -Metropolitan and Micropolitan Statistical Area "Albany, OR MSA" -Metropolitan and Micropolitan Statistical Area "Albany-Schenectady-Troy, NY MSA" -Metropolitan and Micropolitan Statistical Area "Albemarle, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Albert Lea, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Albertville, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Albuquerque, NM MSA" -Metropolitan and Micropolitan Statistical Area "Alexandria, LA MSA" -Metropolitan and Micropolitan Statistical Area "Alexandria, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Alice, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Allentown-Bethlehem-Easton, PA-NJ MSA" -Metropolitan and Micropolitan Statistical Area "Alma, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Alpena, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Altoona, PA MSA" -Metropolitan and Micropolitan Statistical Area "Altus, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Amarillo, TX MSA" -Metropolitan and Micropolitan Statistical Area "Americus, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Ames, IA MSA" -Metropolitan and Micropolitan Statistical Area "Amsterdam, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Anchorage, AK MSA" -Metropolitan and Micropolitan Statistical Area "Andrews, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Angola, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Ann Arbor, MI MSA" -Metropolitan and Micropolitan Statistical Area "Anniston-Oxford-Jacksonville, AL MSA" -Metropolitan and Micropolitan Statistical Area "Appleton, WI MSA" -Metropolitan and Micropolitan Statistical Area "Arcadia, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Ardmore, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Arkadelphia, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Arkansas City-Winfield, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Asheville, NC MSA" -Metropolitan and Micropolitan Statistical Area "Ashland, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Ashtabula, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Astoria, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Atchison, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Athens, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Athens, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Athens, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Athens-Clarke County, GA MSA" -Metropolitan and Micropolitan Statistical Area "Atlanta-Sandy Springs-Roswell, GA MSA" -Metropolitan and Micropolitan Statistical Area "Atlantic City-Hammonton, NJ MSA" -Metropolitan and Micropolitan Statistical Area "Auburn, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Auburn, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Auburn-Opelika, AL MSA" -Metropolitan and Micropolitan Statistical Area "Augusta-Richmond County, GA-SC MSA" -Metropolitan and Micropolitan Statistical Area "Augusta-Waterville, ME MicroSA" -Metropolitan and Micropolitan Statistical Area "Austin, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Austin-Round Rock, TX MSA" -Metropolitan and Micropolitan Statistical Area "Bainbridge, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Bakersfield, CA MSA" -Metropolitan and Micropolitan Statistical Area "Baltimore-Columbia-Towson, MD MSA" -Metropolitan and Micropolitan Statistical Area "Bangor, ME MSA" -Metropolitan and Micropolitan Statistical Area "Baraboo, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Bardstown, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Barnstable Town, MA MSA" -Metropolitan and Micropolitan Statistical Area "Barre, VT MicroSA" -Metropolitan and Micropolitan Statistical Area "Bartlesville, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Bastrop, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Batavia, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Batesville, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Baton Rouge, LA MSA" -Metropolitan and Micropolitan Statistical Area "Battle Creek, MI MSA" -Metropolitan and Micropolitan Statistical Area "Bay City, MI MSA" -Metropolitan and Micropolitan Statistical Area "Bay City, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Beatrice, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Beaumont-Port Arthur, TX MSA" -Metropolitan and Micropolitan Statistical Area "Beaver Dam, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Beckley, WV MSA" -Metropolitan and Micropolitan Statistical Area "Bedford, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Beeville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Bellefontaine, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Bellingham, WA MSA" -Metropolitan and Micropolitan Statistical Area "Bemidji, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Bend-Redmond, OR MSA" -Metropolitan and Micropolitan Statistical Area "Bennettsville, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Bennington, VT MicroSA" -Metropolitan and Micropolitan Statistical Area "Berlin, NH-VT MicroSA" -Metropolitan and Micropolitan Statistical Area "Big Rapids, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Big Spring, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Big Stone Gap, VA MicroSA" -Metropolitan and Micropolitan Statistical Area "Billings, MT MSA" -Metropolitan and Micropolitan Statistical Area "Binghamton, NY MSA" -Metropolitan and Micropolitan Statistical Area "Birmingham-Hoover, AL MSA" -Metropolitan and Micropolitan Statistical Area "Bismarck, ND MSA" -Metropolitan and Micropolitan Statistical Area "Blackfoot, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Blacksburg-Christiansburg-Radford, VA MSA" -Metropolitan and Micropolitan Statistical Area "Bloomington, IL MSA" -Metropolitan and Micropolitan Statistical Area "Bloomington, IN MSA" -Metropolitan and Micropolitan Statistical Area "Bloomsburg-Berwick, PA MSA" -Metropolitan and Micropolitan Statistical Area "Bluefield, WV-VA MicroSA" -Metropolitan and Micropolitan Statistical Area "Blytheville, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Bogalusa, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Boise City, ID MSA" -Metropolitan and Micropolitan Statistical Area "Boone, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Boone, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Borger, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Boston-Cambridge-Newton, MA-NH MSA" -Metropolitan and Micropolitan Statistical Area "Boulder, CO MSA" -Metropolitan and Micropolitan Statistical Area "Bowling Green, KY MSA" -Metropolitan and Micropolitan Statistical Area "Bozeman, MT MicroSA" -Metropolitan and Micropolitan Statistical Area "Bradford, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Brainerd, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Branson, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Breckenridge, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Bremerton-Silverdale, WA MSA" -Metropolitan and Micropolitan Statistical Area "Brenham, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Brevard, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Bridgeport-Stamford-Norwalk, CT MSA" -Metropolitan and Micropolitan Statistical Area "Brookhaven, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Brookings, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Brookings, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Brownsville-Harlingen, TX MSA" -Metropolitan and Micropolitan Statistical Area "Brownwood, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Brunswick, GA MSA" -Metropolitan and Micropolitan Statistical Area "Bucyrus, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Buffalo-Cheektowaga-Niagara Falls, NY MSA" -Metropolitan and Micropolitan Statistical Area "Burley, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Burlington, IA-IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Burlington, NC MSA" -Metropolitan and Micropolitan Statistical Area "Burlington-South Burlington, VT MSA" -Metropolitan and Micropolitan Statistical Area "Butte-Silver Bow, MT MicroSA" -Metropolitan and Micropolitan Statistical Area "Cadillac, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Calhoun, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "California-Lexington Park, MD MSA" -Metropolitan and Micropolitan Statistical Area "Cambridge, MD MicroSA" -Metropolitan and Micropolitan Statistical Area "Cambridge, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Camden, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Campbellsville, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Canon City, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Canton, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Canton-Massillon, OH MSA" -Metropolitan and Micropolitan Statistical Area "Cape Coral-Fort Myers, FL MSA" -Metropolitan and Micropolitan Statistical Area "Cape Girardeau, MO-IL MSA" -Metropolitan and Micropolitan Statistical Area "Carbondale-Marion, IL MSA" -Metropolitan and Micropolitan Statistical Area "Carlsbad-Artesia, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Carson City, NV MSA" -Metropolitan and Micropolitan Statistical Area "Casper, WY MSA" -Metropolitan and Micropolitan Statistical Area "Cedar City, UT MicroSA" -Metropolitan and Micropolitan Statistical Area "Cedar Rapids, IA MSA" -Metropolitan and Micropolitan Statistical Area "Cedartown, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Celina, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Centralia, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Centralia, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Chambersburg-Waynesboro, PA MSA" -Metropolitan and Micropolitan Statistical Area "Champaign-Urbana, IL MSA" -Metropolitan and Micropolitan Statistical Area "Charleston, WV MSA" -Metropolitan and Micropolitan Statistical Area "Charleston-Mattoon, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Charleston-North Charleston, SC MSA" -Metropolitan and Micropolitan Statistical Area "Charlotte-Concord-Gastonia, NC-SC MSA" -Metropolitan and Micropolitan Statistical Area "Charlottesville, VA MSA" -Metropolitan and Micropolitan Statistical Area "Chattanooga, TN-GA MSA" -Metropolitan and Micropolitan Statistical Area "Cheyenne, WY MSA" -Metropolitan and Micropolitan Statistical Area "Chicago-Naperville-Elgin, IL-IN-WI MSA" -Metropolitan and Micropolitan Statistical Area "Chico, CA MSA" -Metropolitan and Micropolitan Statistical Area "Chillicothe, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Cincinnati, OH-KY-IN MSA" -Metropolitan and Micropolitan Statistical Area "Claremont-Lebanon, NH-VT MicroSA" -Metropolitan and Micropolitan Statistical Area "Clarksburg, WV MicroSA" -Metropolitan and Micropolitan Statistical Area "Clarksdale, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Clarksville, TN-KY MSA" -Metropolitan and Micropolitan Statistical Area "Clearlake, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Cleveland, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Cleveland, TN MSA" -Metropolitan and Micropolitan Statistical Area "Cleveland-Elyria, OH MSA" -Metropolitan and Micropolitan Statistical Area "Clewiston, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Clinton, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Clovis, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Coeur d'Alene, ID MSA" -Metropolitan and Micropolitan Statistical Area "Coffeyville, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Coldwater, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "College Station-Bryan, TX MSA" -Metropolitan and Micropolitan Statistical Area "Colorado Springs, CO MSA" -Metropolitan and Micropolitan Statistical Area "Columbia, MO MSA" -Metropolitan and Micropolitan Statistical Area "Columbia, SC MSA" -Metropolitan and Micropolitan Statistical Area "Columbus, GA-AL MSA" -Metropolitan and Micropolitan Statistical Area "Columbus, IN MSA" -Metropolitan and Micropolitan Statistical Area "Columbus, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Columbus, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Columbus, OH MSA" -Metropolitan and Micropolitan Statistical Area "Concord, NH MicroSA" -Metropolitan and Micropolitan Statistical Area "Connersville, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Cookeville, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Coos Bay, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Cordele, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Corinth, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Cornelia, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Corning, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Corpus Christi, TX MSA" -Metropolitan and Micropolitan Statistical Area "Corsicana, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Cortland, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Corvallis, OR MSA" -Metropolitan and Micropolitan Statistical Area "Coshocton, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Craig, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Crawfordsville, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Crescent City, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Crestview-Fort Walton Beach-Destin, FL MSA" -Metropolitan and Micropolitan Statistical Area "Crossville, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Cullman, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Cullowhee, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Cumberland, MD-WV MSA" -Metropolitan and Micropolitan Statistical Area "Dallas-Fort Worth-Arlington, TX MSA" -Metropolitan and Micropolitan Statistical Area "Dalton, GA MSA" -Metropolitan and Micropolitan Statistical Area "Danville, IL MSA" -Metropolitan and Micropolitan Statistical Area "Danville, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Danville, VA MicroSA" -Metropolitan and Micropolitan Statistical Area "Daphne-Fairhope-Foley, AL MSA" -Metropolitan and Micropolitan Statistical Area "Davenport-Moline-Rock Island, IA-IL MSA" -Metropolitan and Micropolitan Statistical Area "Dayton, OH MSA" -Metropolitan and Micropolitan Statistical Area "Dayton, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "DeRidder, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Decatur, AL MSA" -Metropolitan and Micropolitan Statistical Area "Decatur, IL MSA" -Metropolitan and Micropolitan Statistical Area "Decatur, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Defiance, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Del Rio, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Deltona-Daytona Beach-Ormond Beach, FL MSA" -Metropolitan and Micropolitan Statistical Area "Deming, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Denver-Aurora-Lakewood, CO MSA" -Metropolitan and Micropolitan Statistical Area "Des Moines-West Des Moines, IA MSA" -Metropolitan and Micropolitan Statistical Area "Detroit-Warren-Dearborn, MI MSA" -Metropolitan and Micropolitan Statistical Area "Dickinson, ND MicroSA" -Metropolitan and Micropolitan Statistical Area "Dixon, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Dodge City, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Dothan, AL MSA" -Metropolitan and Micropolitan Statistical Area "Douglas, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Dover, DE MSA" -Metropolitan and Micropolitan Statistical Area "DuBois, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Dublin, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Dubuque, IA MSA" -Metropolitan and Micropolitan Statistical Area "Duluth, MN-WI MSA" -Metropolitan and Micropolitan Statistical Area "Dumas, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Duncan, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Dunn, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Durango, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Durant, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Durham-Chapel Hill, NC MSA" -Metropolitan and Micropolitan Statistical Area "Dyersburg, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Eagle Pass, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "East Stroudsburg, PA MSA" -Metropolitan and Micropolitan Statistical Area "Easton, MD MicroSA" -Metropolitan and Micropolitan Statistical Area "Eau Claire, WI MSA" -Metropolitan and Micropolitan Statistical Area "Edwards, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Effingham, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "El Campo, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "El Centro, CA MSA" -Metropolitan and Micropolitan Statistical Area "El Dorado, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "El Paso, TX MSA" -Metropolitan and Micropolitan Statistical Area "Elizabeth City, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Elizabethtown-Fort Knox, KY MSA" -Metropolitan and Micropolitan Statistical Area "Elk City, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Elkhart-Goshen, IN MSA" -Metropolitan and Micropolitan Statistical Area "Elkins, WV MicroSA" -Metropolitan and Micropolitan Statistical Area "Elko, NV MicroSA" -Metropolitan and Micropolitan Statistical Area "Ellensburg, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Elmira, NY MSA" -Metropolitan and Micropolitan Statistical Area "Emporia, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Enid, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Enterprise, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Erie, PA MSA" -Metropolitan and Micropolitan Statistical Area "Escanaba, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Espanola, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Eugene, OR MSA" -Metropolitan and Micropolitan Statistical Area "Eureka-Arcata-Fortuna, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Evanston, WY MicroSA" -Metropolitan and Micropolitan Statistical Area "Evansville, IN-KY MSA" -Metropolitan and Micropolitan Statistical Area "Fairbanks, AK MSA" -Metropolitan and Micropolitan Statistical Area "Fairfield, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Fairmont, WV MicroSA" -Metropolitan and Micropolitan Statistical Area "Fallon, NV MicroSA" -Metropolitan and Micropolitan Statistical Area "Fargo, ND-MN MSA" -Metropolitan and Micropolitan Statistical Area "Faribault-Northfield, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Farmington, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Farmington, NM MSA" -Metropolitan and Micropolitan Statistical Area "Fayetteville, NC MSA" -Metropolitan and Micropolitan Statistical Area "Fayetteville-Springdale-Rogers, AR-MO MSA" -Metropolitan and Micropolitan Statistical Area "Fergus Falls, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Fernley, NV MicroSA" -Metropolitan and Micropolitan Statistical Area "Findlay, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Fitzgerald, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Flagstaff, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Flint, MI MSA" -Metropolitan and Micropolitan Statistical Area "Florence, SC MSA" -Metropolitan and Micropolitan Statistical Area "Florence-Muscle Shoals, AL MSA" -Metropolitan and Micropolitan Statistical Area "Fond du Lac, WI MSA" -Metropolitan and Micropolitan Statistical Area "Forest City, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Forrest City, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Fort Collins, CO MSA" -Metropolitan and Micropolitan Statistical Area "Fort Dodge, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Fort Leonard Wood, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Fort Madison-Keokuk, IA-IL-MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Fort Morgan, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Fort Polk South, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Fort Smith, AR-OK MSA" -Metropolitan and Micropolitan Statistical Area "Fort Wayne, IN MSA" -Metropolitan and Micropolitan Statistical Area "Frankfort, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Frankfort, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Fredericksburg, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Freeport, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Fremont, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Fremont, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Fresno, CA MSA" -Metropolitan and Micropolitan Statistical Area "Gadsden, AL MSA" -Metropolitan and Micropolitan Statistical Area "Gaffney, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Gainesville, FL MSA" -Metropolitan and Micropolitan Statistical Area "Gainesville, GA MSA" -Metropolitan and Micropolitan Statistical Area "Gainesville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Galesburg, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Gallup, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Garden City, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Gardnerville Ranchos, NV MicroSA" -Metropolitan and Micropolitan Statistical Area "Georgetown, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Gettysburg, PA MSA" -Metropolitan and Micropolitan Statistical Area "Gillette, WY MicroSA" -Metropolitan and Micropolitan Statistical Area "Glasgow, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Glens Falls, NY MSA" -Metropolitan and Micropolitan Statistical Area "Glenwood Springs, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Gloversville, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Goldsboro, NC MSA" -Metropolitan and Micropolitan Statistical Area "Grand Forks, ND-MN MSA" -Metropolitan and Micropolitan Statistical Area "Grand Island, NE MSA" -Metropolitan and Micropolitan Statistical Area "Grand Junction, CO MSA" -Metropolitan and Micropolitan Statistical Area "Grand Rapids-Wyoming, MI MSA" -Metropolitan and Micropolitan Statistical Area "Grants Pass, OR MSA" -Metropolitan and Micropolitan Statistical Area "Grants, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Great Bend, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Great Falls, MT MSA" -Metropolitan and Micropolitan Statistical Area "Greeley, CO MSA" -Metropolitan and Micropolitan Statistical Area "Green Bay, WI MSA" -Metropolitan and Micropolitan Statistical Area "Greeneville, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Greenfield Town, MA MicroSA" -Metropolitan and Micropolitan Statistical Area "Greensboro-High Point, NC MSA" -Metropolitan and Micropolitan Statistical Area "Greensburg, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Greenville, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Greenville, NC MSA" -Metropolitan and Micropolitan Statistical Area "Greenville, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Greenville-Anderson-Mauldin, SC MSA" -Metropolitan and Micropolitan Statistical Area "Greenwood, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Greenwood, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Grenada, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Gulfport-Biloxi-Pascagoula, MS MSA" -Metropolitan and Micropolitan Statistical Area "Guymon, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Hagerstown-Martinsburg, MD-WV MSA" -Metropolitan and Micropolitan Statistical Area "Hailey, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Hammond, LA MSA" -Metropolitan and Micropolitan Statistical Area "Hanford-Corcoran, CA MSA" -Metropolitan and Micropolitan Statistical Area "Hannibal, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Harrisburg-Carlisle, PA MSA" -Metropolitan and Micropolitan Statistical Area "Harrison, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Harrisonburg, VA MSA" -Metropolitan and Micropolitan Statistical Area "Hartford-West Hartford-East Hartford, CT MSA" -Metropolitan and Micropolitan Statistical Area "Hastings, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Hattiesburg, MS MSA" -Metropolitan and Micropolitan Statistical Area "Hays, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Heber, UT MicroSA" -Metropolitan and Micropolitan Statistical Area "Helena, MT MicroSA" -Metropolitan and Micropolitan Statistical Area "Helena-West Helena, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Henderson, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Hereford, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Hermiston-Pendleton, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Hickory-Lenoir-Morganton, NC MSA" -Metropolitan and Micropolitan Statistical Area "Hillsdale, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Hilo, HI MicroSA" -Metropolitan and Micropolitan Statistical Area "Hilton Head Island-Bluffton-Beaufort, SC MSA" -Metropolitan and Micropolitan Statistical Area "Hinesville, GA MSA" -Metropolitan and Micropolitan Statistical Area "Hobbs, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Holland, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Homosassa Springs, FL MSA" -Metropolitan and Micropolitan Statistical Area "Hood River, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Hot Springs, AR MSA" -Metropolitan and Micropolitan Statistical Area "Houghton, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Houma-Thibodaux, LA MSA" -Metropolitan and Micropolitan Statistical Area "Houston-The Woodlands-Sugar Land, TX MSA" -Metropolitan and Micropolitan Statistical Area "Hudson, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Huntingdon, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Huntington, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Huntington-Ashland, WV-KY-OH MSA" -Metropolitan and Micropolitan Statistical Area "Huntsville, AL MSA" -Metropolitan and Micropolitan Statistical Area "Huntsville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Huron, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Hutchinson, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Hutchinson, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Idaho Falls, ID MSA" -Metropolitan and Micropolitan Statistical Area "Indiana, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Indianapolis-Carmel-Anderson, IN MSA" -Metropolitan and Micropolitan Statistical Area "Indianola, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Ionia, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Iowa City, IA MSA" -Metropolitan and Micropolitan Statistical Area "Iron Mountain, MI-WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Ithaca, NY MSA" -Metropolitan and Micropolitan Statistical Area "Jackson, MI MSA" -Metropolitan and Micropolitan Statistical Area "Jackson, MS MSA" -Metropolitan and Micropolitan Statistical Area "Jackson, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Jackson, TN MSA" -Metropolitan and Micropolitan Statistical Area "Jackson, WY-ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Jacksonville, FL MSA" -Metropolitan and Micropolitan Statistical Area "Jacksonville, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Jacksonville, NC MSA" -Metropolitan and Micropolitan Statistical Area "Jacksonville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Jamestown, ND MicroSA" -Metropolitan and Micropolitan Statistical Area "Jamestown-Dunkirk-Fredonia, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Janesville-Beloit, WI MSA" -Metropolitan and Micropolitan Statistical Area "Jasper, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Jefferson City, MO MSA" -Metropolitan and Micropolitan Statistical Area "Jefferson, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Jesup, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Johnson City, TN MSA" -Metropolitan and Micropolitan Statistical Area "Johnstown, PA MSA" -Metropolitan and Micropolitan Statistical Area "Jonesboro, AR MSA" -Metropolitan and Micropolitan Statistical Area "Joplin, MO MSA" -Metropolitan and Micropolitan Statistical Area "Junction City, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Juneau, AK MicroSA" -Metropolitan and Micropolitan Statistical Area "Kahului-Wailuku-Lahaina, HI MSA" -Metropolitan and Micropolitan Statistical Area "Kalamazoo-Portage, MI MSA" -Metropolitan and Micropolitan Statistical Area "Kalispell, MT MicroSA" -Metropolitan and Micropolitan Statistical Area "Kankakee, IL MSA" -Metropolitan and Micropolitan Statistical Area "Kansas City, MO-KS MSA" -Metropolitan and Micropolitan Statistical Area "Kapaa, HI MicroSA" -Metropolitan and Micropolitan Statistical Area "Kearney, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Keene, NH MicroSA" -Metropolitan and Micropolitan Statistical Area "Kendallville, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Kennett, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Kennewick-Richland, WA MSA" -Metropolitan and Micropolitan Statistical Area "Kerrville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Ketchikan, AK MicroSA" -Metropolitan and Micropolitan Statistical Area "Key West, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Kill Devil Hills, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Killeen-Temple, TX MSA" -Metropolitan and Micropolitan Statistical Area "Kingsport-Bristol-Bristol, TN-VA MSA" -Metropolitan and Micropolitan Statistical Area "Kingston, NY MSA" -Metropolitan and Micropolitan Statistical Area "Kingsville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Kinston, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Kirksville, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Klamath Falls, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Knoxville, TN MSA" -Metropolitan and Micropolitan Statistical Area "Kokomo, IN MSA" -Metropolitan and Micropolitan Statistical Area "La Crosse-Onalaska, WI-MN MSA" -Metropolitan and Micropolitan Statistical Area "La Grande, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "LaGrange, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Laconia, NH MicroSA" -Metropolitan and Micropolitan Statistical Area "Lafayette, LA MSA" -Metropolitan and Micropolitan Statistical Area "Lafayette-West Lafayette, IN MSA" -Metropolitan and Micropolitan Statistical Area "Lake Charles, LA MSA" -Metropolitan and Micropolitan Statistical Area "Lake City, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Lake Havasu City-Kingman, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Lakeland-Winter Haven, FL MSA" -Metropolitan and Micropolitan Statistical Area "Lamesa, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Lancaster, PA MSA" -Metropolitan and Micropolitan Statistical Area "Lansing-East Lansing, MI MSA" -Metropolitan and Micropolitan Statistical Area "Laramie, WY MicroSA" -Metropolitan and Micropolitan Statistical Area "Laredo, TX MSA" -Metropolitan and Micropolitan Statistical Area "Las Cruces, NM MSA" -Metropolitan and Micropolitan Statistical Area "Las Vegas, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Las Vegas-Henderson-Paradise, NV MSA" -Metropolitan and Micropolitan Statistical Area "Laurel, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Laurinburg, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Lawrence, KS MSA" -Metropolitan and Micropolitan Statistical Area "Lawrenceburg, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Lawton, OK MSA" -Metropolitan and Micropolitan Statistical Area "Lebanon, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Lebanon, PA MSA" -Metropolitan and Micropolitan Statistical Area "Levelland, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Lewisburg, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Lewisburg, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Lewiston, ID-WA MSA" -Metropolitan and Micropolitan Statistical Area "Lewiston-Auburn, ME MSA" -Metropolitan and Micropolitan Statistical Area "Lewistown, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Lexington, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Lexington-Fayette, KY MSA" -Metropolitan and Micropolitan Statistical Area "Liberal, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Lima, OH MSA" -Metropolitan and Micropolitan Statistical Area "Lincoln, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Lincoln, NE MSA" -Metropolitan and Micropolitan Statistical Area "Little Rock-North Little Rock-Conway, AR MSA" -Metropolitan and Micropolitan Statistical Area "Lock Haven, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Logan, UT-ID MSA" -Metropolitan and Micropolitan Statistical Area "Logan, WV MicroSA" -Metropolitan and Micropolitan Statistical Area "Logansport, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "London, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Longview, TX MSA" -Metropolitan and Micropolitan Statistical Area "Longview, WA MSA" -Metropolitan and Micropolitan Statistical Area "Los Alamos, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Los Angeles-Long Beach-Anaheim, CA MSA" -Metropolitan and Micropolitan Statistical Area "Louisville/Jefferson County, KY-IN MSA" -Metropolitan and Micropolitan Statistical Area "Lubbock, TX MSA" -Metropolitan and Micropolitan Statistical Area "Ludington, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Lufkin, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Lumberton, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Lynchburg, VA MSA" -Metropolitan and Micropolitan Statistical Area "Macomb, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Macon, GA MSA" -Metropolitan and Micropolitan Statistical Area "Madera, CA MSA" -Metropolitan and Micropolitan Statistical Area "Madison, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Madison, WI MSA" -Metropolitan and Micropolitan Statistical Area "Madisonville, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Magnolia, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Malone, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Malvern, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Manchester-Nashua, NH MSA" -Metropolitan and Micropolitan Statistical Area "Manhattan, KS MSA" -Metropolitan and Micropolitan Statistical Area "Manitowoc, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Mankato-North Mankato, MN MSA" -Metropolitan and Micropolitan Statistical Area "Mansfield, OH MSA" -Metropolitan and Micropolitan Statistical Area "Marietta, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Marinette, WI-MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Marion, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Marion, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Marion, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Marquette, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Marshall, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Marshall, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Marshall, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Marshalltown, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Martin, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Martinsville, VA MicroSA" -Metropolitan and Micropolitan Statistical Area "Maryville, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Mason City, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Mayfield, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Maysville, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "McAlester, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "McAllen-Edinburg-Mission, TX MSA" -Metropolitan and Micropolitan Statistical Area "McComb, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "McMinnville, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "McPherson, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Meadville, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Medford, OR MSA" -Metropolitan and Micropolitan Statistical Area "Memphis, TN-MS-AR MSA" -Metropolitan and Micropolitan Statistical Area "Menomonie, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Merced, CA MSA" -Metropolitan and Micropolitan Statistical Area "Meridian, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Merrill, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Mexico, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Miami, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Miami-Fort Lauderdale-West Palm Beach, FL MSA" -Metropolitan and Micropolitan Statistical Area "Michigan City-La Porte, IN MSA" -Metropolitan and Micropolitan Statistical Area "Middlesborough, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Midland, MI MSA" -Metropolitan and Micropolitan Statistical Area "Midland, TX MSA" -Metropolitan and Micropolitan Statistical Area "Milledgeville, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Milwaukee-Waukesha-West Allis, WI MSA" -Metropolitan and Micropolitan Statistical Area "Mineral Wells, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Minneapolis-St. Paul-Bloomington, MN-WI MSA" -Metropolitan and Micropolitan Statistical Area "Minot, ND MicroSA" -Metropolitan and Micropolitan Statistical Area "Missoula, MT MSA" -Metropolitan and Micropolitan Statistical Area "Mitchell, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Moberly, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Mobile, AL MSA" -Metropolitan and Micropolitan Statistical Area "Modesto, CA MSA" -Metropolitan and Micropolitan Statistical Area "Monroe, LA MSA" -Metropolitan and Micropolitan Statistical Area "Monroe, MI MSA" -Metropolitan and Micropolitan Statistical Area "Montgomery, AL MSA" -Metropolitan and Micropolitan Statistical Area "Montrose, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Morehead City, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Morgan City, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Morgantown, WV MSA" -Metropolitan and Micropolitan Statistical Area "Morristown, TN MSA" -Metropolitan and Micropolitan Statistical Area "Moscow, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Moses Lake, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Moultrie, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Airy, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Pleasant, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Pleasant, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Sterling, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Vernon, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Vernon, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Mount Vernon-Anacortes, WA MSA" -Metropolitan and Micropolitan Statistical Area "Mountain Home, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Mountain Home, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Muncie, IN MSA" -Metropolitan and Micropolitan Statistical Area "Murray, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Muscatine, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Muskegon, MI MSA" -Metropolitan and Micropolitan Statistical Area "Muskogee, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Myrtle Beach-Conway-North Myrtle Beach, SC-NC MSA" -Metropolitan and Micropolitan Statistical Area "Nacogdoches, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Napa, CA MSA" -Metropolitan and Micropolitan Statistical Area "Naples-Immokalee-Marco Island, FL MSA" -Metropolitan and Micropolitan Statistical Area "Nashville-Davidson--Murfreesboro--Franklin, TN MSA" -Metropolitan and Micropolitan Statistical Area "Natchez, MS-LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Natchitoches, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "New Bern, NC MSA" -Metropolitan and Micropolitan Statistical Area "New Castle, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "New Castle, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "New Haven-Milford, CT MSA" -Metropolitan and Micropolitan Statistical Area "New Orleans-Metairie, LA MSA" -Metropolitan and Micropolitan Statistical Area "New Philadelphia-Dover, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "New Ulm, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "New York-Newark-Jersey City, NY-NJ-PA MSA" -Metropolitan and Micropolitan Statistical Area "Newberry, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Newport, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Newport, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Newton, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Niles-Benton Harbor, MI MSA" -Metropolitan and Micropolitan Statistical Area "Nogales, AZ MicroSA" -Metropolitan and Micropolitan Statistical Area "Norfolk, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "North Platte, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "North Port-Sarasota-Bradenton, FL MSA" -Metropolitan and Micropolitan Statistical Area "North Vernon, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "North Wilkesboro, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Norwalk, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Norwich-New London, CT MSA" -Metropolitan and Micropolitan Statistical Area "Oak Harbor, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Ocala, FL MSA" -Metropolitan and Micropolitan Statistical Area "Ocean City, NJ MSA" -Metropolitan and Micropolitan Statistical Area "Odessa, TX MSA" -Metropolitan and Micropolitan Statistical Area "Ogden-Clearfield, UT MSA" -Metropolitan and Micropolitan Statistical Area "Ogdensburg-Massena, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Oil City, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Okeechobee, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Oklahoma City, OK MSA" -Metropolitan and Micropolitan Statistical Area "Olean, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Olympia-Tumwater, WA MSA" -Metropolitan and Micropolitan Statistical Area "Omaha-Council Bluffs, NE-IA MSA" -Metropolitan and Micropolitan Statistical Area "Oneonta, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Ontario, OR-ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Opelousas, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Orangeburg, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Orlando-Kissimmee-Sanford, FL MSA" -Metropolitan and Micropolitan Statistical Area "Oshkosh-Neenah, WI MSA" -Metropolitan and Micropolitan Statistical Area "Oskaloosa, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Othello, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Ottawa, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Ottawa-Peru, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Ottumwa, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Owatonna, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Owensboro, KY MSA" -Metropolitan and Micropolitan Statistical Area "Owosso, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Oxford, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Oxford, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Oxnard-Thousand Oaks-Ventura, CA MSA" -Metropolitan and Micropolitan Statistical Area "Ozark, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Paducah, KY-IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Pahrump, NV MicroSA" -Metropolitan and Micropolitan Statistical Area "Palatka, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Palestine, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Palm Bay-Melbourne-Titusville, FL MSA" -Metropolitan and Micropolitan Statistical Area "Pampa, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Panama City, FL MSA" -Metropolitan and Micropolitan Statistical Area "Paragould, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Paris, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Paris, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Parkersburg-Vienna, WV MSA" -Metropolitan and Micropolitan Statistical Area "Parsons, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Payson, AZ MicroSA" -Metropolitan and Micropolitan Statistical Area "Pecos, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Pensacola-Ferry Pass-Brent, FL MSA" -Metropolitan and Micropolitan Statistical Area "Peoria, IL MSA" -Metropolitan and Micropolitan Statistical Area "Peru, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Philadelphia-Camden-Wilmington, PA-NJ-DE-MD MSA" -Metropolitan and Micropolitan Statistical Area "Phoenix-Mesa-Scottsdale, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Picayune, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Pierre, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Pine Bluff, AR MSA" -Metropolitan and Micropolitan Statistical Area "Pinehurst-Southern Pines, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Pittsburg, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Pittsburgh, PA MSA" -Metropolitan and Micropolitan Statistical Area "Pittsfield, MA MSA" -Metropolitan and Micropolitan Statistical Area "Plainview, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Platteville, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Plattsburgh, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Plymouth, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Pocatello, ID MSA" -Metropolitan and Micropolitan Statistical Area "Point Pleasant, WV-OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Ponca City, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Pontiac, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Poplar Bluff, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Port Angeles, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Port Clinton, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Port Lavaca, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Port St. Lucie, FL MSA" -Metropolitan and Micropolitan Statistical Area "Portales, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Portland-South Portland, ME MSA" -Metropolitan and Micropolitan Statistical Area "Portland-Vancouver-Hillsboro, OR-WA MSA" -Metropolitan and Micropolitan Statistical Area "Portsmouth, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Pottsville, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Prescott, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Price, UT MicroSA" -Metropolitan and Micropolitan Statistical Area "Prineville, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Providence-Warwick, RI-MA MSA" -Metropolitan and Micropolitan Statistical Area "Provo-Orem, UT MSA" -Metropolitan and Micropolitan Statistical Area "Pueblo, CO MSA" -Metropolitan and Micropolitan Statistical Area "Pullman, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Punta Gorda, FL MSA" -Metropolitan and Micropolitan Statistical Area "Quincy, IL-MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Racine, WI MSA" -Metropolitan and Micropolitan Statistical Area "Raleigh, NC MSA" -Metropolitan and Micropolitan Statistical Area "Rapid City, SD MSA" -Metropolitan and Micropolitan Statistical Area "Raymondville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Reading, PA MSA" -Metropolitan and Micropolitan Statistical Area "Red Bluff, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Red Wing, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Redding, CA MSA" -Metropolitan and Micropolitan Statistical Area "Reno, NV MSA" -Metropolitan and Micropolitan Statistical Area "Rexburg, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Richmond, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Richmond, VA MSA" -Metropolitan and Micropolitan Statistical Area "Richmond-Berea, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Rio Grande City, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Riverside-San Bernardino-Ontario, CA MSA" -Metropolitan and Micropolitan Statistical Area "Riverton, WY MicroSA" -Metropolitan and Micropolitan Statistical Area "Roanoke Rapids, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Roanoke, VA MSA" -Metropolitan and Micropolitan Statistical Area "Rochelle, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Rochester, MN MSA" -Metropolitan and Micropolitan Statistical Area "Rochester, NY MSA" -Metropolitan and Micropolitan Statistical Area "Rock Springs, WY MicroSA" -Metropolitan and Micropolitan Statistical Area "Rockford, IL MSA" -Metropolitan and Micropolitan Statistical Area "Rockingham, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Rocky Mount, NC MSA" -Metropolitan and Micropolitan Statistical Area "Rolla, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Rome, GA MSA" -Metropolitan and Micropolitan Statistical Area "Roseburg, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "Roswell, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Russellville, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Ruston, LA MicroSA" -Metropolitan and Micropolitan Statistical Area "Rutland, VT MicroSA" -Metropolitan and Micropolitan Statistical Area "Sacramento--Roseville--Arden-Arcade, CA MSA" -Metropolitan and Micropolitan Statistical Area "Safford, AZ MicroSA" -Metropolitan and Micropolitan Statistical Area "Saginaw, MI MSA" -Metropolitan and Micropolitan Statistical Area "Salem, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Salem, OR MSA" -Metropolitan and Micropolitan Statistical Area "Salina, KS MicroSA" -Metropolitan and Micropolitan Statistical Area "Salinas, CA MSA" -Metropolitan and Micropolitan Statistical Area "Salisbury, MD-DE MSA" -Metropolitan and Micropolitan Statistical Area "Salt Lake City, UT MSA" -Metropolitan and Micropolitan Statistical Area "San Angelo, TX MSA" -Metropolitan and Micropolitan Statistical Area "San Antonio-New Braunfels, TX MSA" -Metropolitan and Micropolitan Statistical Area "San Diego-Carlsbad, CA MSA" -Metropolitan and Micropolitan Statistical Area "San Francisco-Oakland-Hayward, CA MSA" -Metropolitan and Micropolitan Statistical Area "San Jose-Sunnyvale-Santa Clara, CA MSA" -Metropolitan and Micropolitan Statistical Area "San Luis Obispo-Paso Robles-Arroyo Grande, CA MSA" -Metropolitan and Micropolitan Statistical Area "Sandpoint, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Sandusky, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Sanford, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Santa Cruz-Watsonville, CA MSA" -Metropolitan and Micropolitan Statistical Area "Santa Fe, NM MSA" -Metropolitan and Micropolitan Statistical Area "Santa Maria-Santa Barbara, CA MSA" -Metropolitan and Micropolitan Statistical Area "Santa Rosa, CA MSA" -Metropolitan and Micropolitan Statistical Area "Sault Ste. Marie, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Savannah, GA MSA" -Metropolitan and Micropolitan Statistical Area "Sayre, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Scottsbluff, NE MicroSA" -Metropolitan and Micropolitan Statistical Area "Scottsboro, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Scranton--Wilkes-Barre--Hazleton, PA MSA" -Metropolitan and Micropolitan Statistical Area "Searcy, AR MicroSA" -Metropolitan and Micropolitan Statistical Area "Seattle-Tacoma-Bellevue, WA MSA" -Metropolitan and Micropolitan Statistical Area "Sebastian-Vero Beach, FL MSA" -Metropolitan and Micropolitan Statistical Area "Sebring, FL MSA" -Metropolitan and Micropolitan Statistical Area "Sedalia, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Selinsgrove, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Selma, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Seneca Falls, NY MicroSA" -Metropolitan and Micropolitan Statistical Area "Seneca, SC MicroSA" -Metropolitan and Micropolitan Statistical Area "Sevierville, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Seymour, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Shawano, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Shawnee, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Sheboygan, WI MSA" -Metropolitan and Micropolitan Statistical Area "Shelby, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Shelbyville, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Shelton, WA MicroSA" -Metropolitan and Micropolitan Statistical Area "Sheridan, WY MicroSA" -Metropolitan and Micropolitan Statistical Area "Sherman-Denison, TX MSA" -Metropolitan and Micropolitan Statistical Area "Show Low, AZ MicroSA" -Metropolitan and Micropolitan Statistical Area "Shreveport-Bossier City, LA MSA" -Metropolitan and Micropolitan Statistical Area "Sidney, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Sierra Vista-Douglas, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Sikeston, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Silver City, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Sioux City, IA-NE-SD MSA" -Metropolitan and Micropolitan Statistical Area "Sioux Falls, SD MSA" -Metropolitan and Micropolitan Statistical Area "Snyder, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Somerset, KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Somerset, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Sonora, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "South Bend-Mishawaka, IN-MI MSA" -Metropolitan and Micropolitan Statistical Area "Spartanburg, SC MSA" -Metropolitan and Micropolitan Statistical Area "Spearfish, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Spencer, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Spirit Lake, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Spokane-Spokane Valley, WA MSA" -Metropolitan and Micropolitan Statistical Area "Springfield, IL MSA" -Metropolitan and Micropolitan Statistical Area "Springfield, MA MSA" -Metropolitan and Micropolitan Statistical Area "Springfield, MO MSA" -Metropolitan and Micropolitan Statistical Area "Springfield, OH MSA" -Metropolitan and Micropolitan Statistical Area "St. Cloud, MN MSA" -Metropolitan and Micropolitan Statistical Area "St. George, UT MSA" -Metropolitan and Micropolitan Statistical Area "St. Joseph, MO-KS MSA" -Metropolitan and Micropolitan Statistical Area "St. Louis, MO-IL MSA" -Metropolitan and Micropolitan Statistical Area "St. Marys, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Starkville, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "State College, PA MSA" -Metropolitan and Micropolitan Statistical Area "Statesboro, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Staunton-Waynesboro, VA MSA" -Metropolitan and Micropolitan Statistical Area "Steamboat Springs, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Stephenville, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Sterling, CO MicroSA" -Metropolitan and Micropolitan Statistical Area "Sterling, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Stevens Point, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Stillwater, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Stockton-Lodi, CA MSA" -Metropolitan and Micropolitan Statistical Area "Storm Lake, IA MicroSA" -Metropolitan and Micropolitan Statistical Area "Sturgis, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Sulphur Springs, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Summerville, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Summit Park, UT MicroSA" -Metropolitan and Micropolitan Statistical Area "Sumter, SC MSA" -Metropolitan and Micropolitan Statistical Area "Sunbury, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Susanville, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Sweetwater, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Syracuse, NY MSA" -Metropolitan and Micropolitan Statistical Area "Tahlequah, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Talladega-Sylacauga, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Tallahassee, FL MSA" -Metropolitan and Micropolitan Statistical Area "Tampa-St. Petersburg-Clearwater, FL MSA" -Metropolitan and Micropolitan Statistical Area "Taos, NM MicroSA" -Metropolitan and Micropolitan Statistical Area "Taylorville, IL MicroSA" -Metropolitan and Micropolitan Statistical Area "Terre Haute, IN MSA" -Metropolitan and Micropolitan Statistical Area "Texarkana, TX-AR MSA" -Metropolitan and Micropolitan Statistical Area "The Dalles, OR MicroSA" -Metropolitan and Micropolitan Statistical Area "The Villages, FL MSA" -Metropolitan and Micropolitan Statistical Area "Thomaston, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Thomasville, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Tiffin, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Tifton, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Toccoa, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Toledo, OH MSA" -Metropolitan and Micropolitan Statistical Area "Topeka, KS MSA" -Metropolitan and Micropolitan Statistical Area "Torrington, CT MicroSA" -Metropolitan and Micropolitan Statistical Area "Traverse City, MI MicroSA" -Metropolitan and Micropolitan Statistical Area "Trenton, NJ MSA" -Metropolitan and Micropolitan Statistical Area "Troy, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Truckee-Grass Valley, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Tucson, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Tullahoma-Manchester, TN MicroSA" -Metropolitan and Micropolitan Statistical Area "Tulsa, OK MSA" -Metropolitan and Micropolitan Statistical Area "Tupelo, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Tuscaloosa, AL MSA" -Metropolitan and Micropolitan Statistical Area "Twin Falls, ID MicroSA" -Metropolitan and Micropolitan Statistical Area "Tyler, TX MSA" -Metropolitan and Micropolitan Statistical Area "Ukiah, CA MicroSA" -Metropolitan and Micropolitan Statistical Area "Union City, TN-KY MicroSA" -Metropolitan and Micropolitan Statistical Area "Urban Honolulu, HI MSA" -Metropolitan and Micropolitan Statistical Area "Urbana, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Utica-Rome, NY MSA" -Metropolitan and Micropolitan Statistical Area "Uvalde, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Valdosta, GA MSA" -Metropolitan and Micropolitan Statistical Area "Vallejo-Fairfield, CA MSA" -Metropolitan and Micropolitan Statistical Area "Valley, AL MicroSA" -Metropolitan and Micropolitan Statistical Area "Van Wert, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Vermillion, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Vernal, UT MicroSA" -Metropolitan and Micropolitan Statistical Area "Vernon, TX MicroSA" -Metropolitan and Micropolitan Statistical Area "Vicksburg, MS MicroSA" -Metropolitan and Micropolitan Statistical Area "Victoria, TX MSA" -Metropolitan and Micropolitan Statistical Area "Vidalia, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Vincennes, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Vineland-Bridgeton, NJ MSA" -Metropolitan and Micropolitan Statistical Area "Vineyard Haven, MA MicroSA" -Metropolitan and Micropolitan Statistical Area "Virginia Beach-Norfolk-Newport News, VA-NC MSA" -Metropolitan and Micropolitan Statistical Area "Visalia-Porterville, CA MSA" -Metropolitan and Micropolitan Statistical Area "Wabash, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Waco, TX MSA" -Metropolitan and Micropolitan Statistical Area "Wahpeton, ND-MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Walla Walla, WA MSA" -Metropolitan and Micropolitan Statistical Area "Wapakoneta, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Warner Robins, GA MSA" -Metropolitan and Micropolitan Statistical Area "Warren, PA MicroSA" -Metropolitan and Micropolitan Statistical Area "Warrensburg, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Warsaw, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Washington Court House, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Washington, IN MicroSA" -Metropolitan and Micropolitan Statistical Area "Washington, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Washington-Arlington-Alexandria, DC-VA-MD-WV MSA" -Metropolitan and Micropolitan Statistical Area "Waterloo-Cedar Falls, IA MSA" -Metropolitan and Micropolitan Statistical Area "Watertown, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "Watertown-Fort Atkinson, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Watertown-Fort Drum, NY MSA" -Metropolitan and Micropolitan Statistical Area "Wauchula, FL MicroSA" -Metropolitan and Micropolitan Statistical Area "Wausau, WI MSA" -Metropolitan and Micropolitan Statistical Area "Waycross, GA MicroSA" -Metropolitan and Micropolitan Statistical Area "Weatherford, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Weirton-Steubenville, WV-OH MSA" -Metropolitan and Micropolitan Statistical Area "Wenatchee, WA MSA" -Metropolitan and Micropolitan Statistical Area "West Plains, MO MicroSA" -Metropolitan and Micropolitan Statistical Area "Wheeling, WV-OH MSA" -Metropolitan and Micropolitan Statistical Area "Whitewater-Elkhorn, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Wichita Falls, TX MSA" -Metropolitan and Micropolitan Statistical Area "Wichita, KS MSA" -Metropolitan and Micropolitan Statistical Area "Williamsport, PA MSA" -Metropolitan and Micropolitan Statistical Area "Williston, ND MicroSA" -Metropolitan and Micropolitan Statistical Area "Willmar, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Wilmington, NC MSA" -Metropolitan and Micropolitan Statistical Area "Wilmington, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Wilson, NC MicroSA" -Metropolitan and Micropolitan Statistical Area "Winchester, VA-WV MSA" -Metropolitan and Micropolitan Statistical Area "Winnemucca, NV MicroSA" -Metropolitan and Micropolitan Statistical Area "Winona, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Winston-Salem, NC MSA" -Metropolitan and Micropolitan Statistical Area "Wisconsin Rapids-Marshfield, WI MicroSA" -Metropolitan and Micropolitan Statistical Area "Woodward, OK MicroSA" -Metropolitan and Micropolitan Statistical Area "Wooster, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Worcester, MA-CT MSA" -Metropolitan and Micropolitan Statistical Area "Worthington, MN MicroSA" -Metropolitan and Micropolitan Statistical Area "Yakima, WA MSA" -Metropolitan and Micropolitan Statistical Area "Yankton, SD MicroSA" -Metropolitan and Micropolitan Statistical Area "York-Hanover, PA MSA" -Metropolitan and Micropolitan Statistical Area "Youngstown-Warren-Boardman, OH-PA MSA" -Metropolitan and Micropolitan Statistical Area "Yuba City, CA MSA" -Metropolitan and Micropolitan Statistical Area "Yuma, AZ MSA" -Metropolitan and Micropolitan Statistical Area "Zanesville, OH MicroSA" -Metropolitan and Micropolitan Statistical Area "Zapata, TX MicroSA" -Metropolitan and Micropolitan Statistical Area None -Misc Extra Refrigerator "EF 15.9, Fed Standard, bottom freezer-reference fridge" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=573 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator "EF 19.8, bottom freezer" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=458 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator "EF 6.9, Average Installed" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1102 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator "EF 6.9, National Average" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1102 extra_refrigerator_usage_multiplier=0.221 -Misc Extra Refrigerator EF 10.2 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=748 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 10.5 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=727 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 15.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=480 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 17.6 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=433 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 19.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=383 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 21.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=348 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 6.7 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1139 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator None ResStockArguments extra_refrigerator_present=false extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=0 extra_refrigerator_usage_multiplier=0 -Misc Extra Refrigerator Void -Misc Freezer "EF 12, Average Installed" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=935 freezer_usage_multiplier=1.0 -Misc Freezer "EF 12, National Average" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=935 freezer_usage_multiplier=0.342 -Misc Freezer "EF 16, 2001 Fed Standard-reference freezer" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=712 freezer_usage_multiplier=1.0 -Misc Freezer "EF 18, 2008 Energy Star" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=641 freezer_usage_multiplier=1.0 -Misc Freezer "EF 20, 2008 Energy Star Most Efficient" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=568 freezer_usage_multiplier=1.0 -Misc Freezer None ResStockArguments freezer_present=false freezer_location=auto freezer_rated_annual_kwh=0 freezer_usage_multiplier=0 -Misc Freezer Void -Misc Gas Fireplace Gas Fireplace ResStockArguments misc_fuel_loads_fireplace_present=true misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=auto misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=1.0 -Misc Gas Fireplace National Average ResStockArguments misc_fuel_loads_fireplace_present=true misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=auto misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=0.032 -Misc Gas Fireplace None ResStockArguments misc_fuel_loads_fireplace_present=false misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=0 misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=0 -Misc Gas Grill Gas Grill ResStockArguments misc_fuel_loads_grill_present=true misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=auto misc_fuel_loads_grill_usage_multiplier=1.0 -Misc Gas Grill National Average ResStockArguments misc_fuel_loads_grill_present=true misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=auto misc_fuel_loads_grill_usage_multiplier=0.029 -Misc Gas Grill None ResStockArguments misc_fuel_loads_grill_present=false misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=0 misc_fuel_loads_grill_usage_multiplier=0 -Misc Gas Lighting Gas Lighting ResStockArguments misc_fuel_loads_lighting_present=true misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=auto misc_fuel_loads_lighting_usage_multiplier=1.0 -Misc Gas Lighting National Average ResStockArguments misc_fuel_loads_lighting_present=true misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=auto misc_fuel_loads_lighting_usage_multiplier=0.012 -Misc Gas Lighting None ResStockArguments misc_fuel_loads_lighting_present=false misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=0 misc_fuel_loads_lighting_usage_multiplier=0 -Misc Hot Tub Spa Electricity ResStockArguments permanent_spa_present=true permanent_spa_pump_annual_kwh=auto permanent_spa_pump_usage_multiplier=1.0 permanent_spa_heater_type=electric resistance permanent_spa_heater_annual_kwh=auto permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=1.0 -Misc Hot Tub Spa Natural Gas ResStockArguments permanent_spa_present=true permanent_spa_pump_annual_kwh=auto permanent_spa_pump_usage_multiplier=1.0 permanent_spa_heater_type=gas fired permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=auto permanent_spa_heater_usage_multiplier=1.0 -Misc Hot Tub Spa None ResStockArguments permanent_spa_present=false permanent_spa_pump_annual_kwh=0 permanent_spa_pump_usage_multiplier=0 permanent_spa_heater_type=none permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=0 -Misc Hot Tub Spa Other Fuel ResStockArguments permanent_spa_present=false permanent_spa_pump_annual_kwh=0 permanent_spa_pump_usage_multiplier=0 permanent_spa_heater_type=none permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=0 -Misc Hot Tub Spa Void -Misc Pool Has Pool ResStockArguments pool_present=true -Misc Pool None ResStockArguments pool_present=false -Misc Pool Void -Misc Pool Heater "Electric, 78F" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.8 -Misc Pool Heater "Electric, Covered" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.3 -Misc Pool Heater "Electric, Covered, 78F" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.2 -Misc Pool Heater "Gas, 78F" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.8 -Misc Pool Heater "Gas, Covered" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.3 -Misc Pool Heater "Gas, Covered, 78F" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.2 -Misc Pool Heater Electricity ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=1.0 -Misc Pool Heater Natural Gas ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=1.0 -Misc Pool Heater None ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 -Misc Pool Heater Other Fuel ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 -Misc Pool Heater Solar ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 -Misc Pool Heater Unheated ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 -Misc Pool Pump 0.75 HP Pump ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=0.75 -Misc Pool Pump 1.0 HP Pump ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=1.0 -Misc Pool Pump National Average ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=0.075 -Misc Pool Pump None ResStockArguments pool_pump_annual_kwh=0 pool_pump_usage_multiplier=0 -Misc Well Pump High Efficiency ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=0.67 misc_plug_loads_well_pump_2_usage_multiplier=1.0 -Misc Well Pump National Average ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=0.127 misc_plug_loads_well_pump_2_usage_multiplier=1.0 -Misc Well Pump None ResStockArguments misc_plug_loads_well_pump_present=false misc_plug_loads_well_pump_annual_kwh=0 misc_plug_loads_well_pump_usage_multiplier=0 misc_plug_loads_well_pump_2_usage_multiplier=0 -Misc Well Pump Typical Efficiency ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=1.0 misc_plug_loads_well_pump_2_usage_multiplier=1.0 -Natural Ventilation "Cooling Season, 7 days/wk" ResStockArguments window_fraction_operable=0.67 -Natural Ventilation None ResStockArguments window_fraction_operable=0 -Neighbors "Left/Right at 15ft, Front/Back at 80ft" ResStockArguments neighbor_front_distance=80 neighbor_back_distance=80 neighbor_left_distance=15 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 12 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=12 neighbor_right_distance=12 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 2 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=2 neighbor_right_distance=2 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 27 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=27 neighbor_right_distance=27 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 4 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=4 neighbor_right_distance=4 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 7 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=7 neighbor_right_distance=7 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Back at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=15 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Front at 15ft ResStockArguments neighbor_front_distance=15 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Left at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=15 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Left/Right at 10ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=10 neighbor_right_distance=10 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Left/Right at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=15 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Left/Right at 20ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=20 neighbor_right_distance=20 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors None ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Right at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Occupants 0 ResStockArguments geometry_unit_num_occupants=0 general_water_use_usage_multiplier=auto -Occupants 1 ResStockArguments geometry_unit_num_occupants=1 general_water_use_usage_multiplier=auto -Occupants 10+ ResStockArguments geometry_unit_num_occupants=11 general_water_use_usage_multiplier=auto -Occupants 2 ResStockArguments geometry_unit_num_occupants=2 general_water_use_usage_multiplier=auto -Occupants 3 ResStockArguments geometry_unit_num_occupants=3 general_water_use_usage_multiplier=auto -Occupants 4 ResStockArguments geometry_unit_num_occupants=4 general_water_use_usage_multiplier=auto -Occupants 5 ResStockArguments geometry_unit_num_occupants=5 general_water_use_usage_multiplier=auto -Occupants 6 ResStockArguments geometry_unit_num_occupants=6 general_water_use_usage_multiplier=auto -Occupants 7 ResStockArguments geometry_unit_num_occupants=7 general_water_use_usage_multiplier=auto -Occupants 8 ResStockArguments geometry_unit_num_occupants=8 general_water_use_usage_multiplier=auto -Occupants 9 ResStockArguments geometry_unit_num_occupants=9 general_water_use_usage_multiplier=auto -Orientation ENE ResStockArguments geometry_unit_orientation=68 -Orientation ESE ResStockArguments geometry_unit_orientation=113 -Orientation East ResStockArguments geometry_unit_orientation=90 -Orientation NNE ResStockArguments geometry_unit_orientation=23 -Orientation NNW ResStockArguments geometry_unit_orientation=338 -Orientation North ResStockArguments geometry_unit_orientation=0 -Orientation Northeast ResStockArguments geometry_unit_orientation=45 -Orientation Northwest ResStockArguments geometry_unit_orientation=315 -Orientation SSE ResStockArguments geometry_unit_orientation=158 -Orientation SSW ResStockArguments geometry_unit_orientation=203 -Orientation South ResStockArguments geometry_unit_orientation=180 -Orientation Southeast ResStockArguments geometry_unit_orientation=135 -Orientation Southwest ResStockArguments geometry_unit_orientation=225 -Orientation WNW ResStockArguments geometry_unit_orientation=293 -Orientation WSW ResStockArguments geometry_unit_orientation=248 -Orientation West ResStockArguments geometry_unit_orientation=270 -Overhangs "2ft, All Windows" ResStockArguments overhangs_front_depth=2 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=2 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=2 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=2 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs "2ft, Back Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=2 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs "2ft, Front Windows" ResStockArguments overhangs_front_depth=2 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs "2ft, Left Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=2 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs "2ft, Right Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=2 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs None ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -PUMA "AK, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AK, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AK, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AK, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AK, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AL, 02703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AR, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00115" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00116" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00117" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00118" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00119" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00120" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00121" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00122" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00123" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00124" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00125" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00126" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00127" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00128" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00129" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00130" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00131" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00132" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00133" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00134" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "AZ, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 01907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 02905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03709" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03710" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03711" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03712" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03713" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03714" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03715" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03716" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03717" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03718" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03719" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03720" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03721" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03722" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03723" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03724" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03725" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03726" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03727" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03728" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03729" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03730" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03731" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03732" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03733" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03734" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03735" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03736" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03737" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03738" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03739" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03740" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03741" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03742" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03743" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03744" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03745" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03746" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03747" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03748" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03749" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03750" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03751" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03752" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03753" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03754" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03755" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03756" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03757" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03758" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03759" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03760" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03761" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03762" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03763" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03764" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03765" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03766" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03767" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03768" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03769" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 04701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 04702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05911" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05912" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05913" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05914" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05915" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05916" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05917" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 05918" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06511" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06512" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06513" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06514" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06515" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06709" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06710" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06711" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 06712" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07115" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07311" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07312" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07313" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07314" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07315" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07316" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07317" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07318" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07319" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07320" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07321" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07322" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 07902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08511" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08512" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08513" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08514" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 08900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 09904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 10100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 10701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 10702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 10703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CA, 11300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00808" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00809" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00810" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00811" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00812" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00813" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00814" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00815" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00816" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00817" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00818" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00819" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00820" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00821" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00822" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00823" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00824" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 04104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 04105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CO, 04106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "CT, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DC, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DC, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DC, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DC, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DC, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DE, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DE, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DE, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DE, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DE, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "DE, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 02103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 05708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 06100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 06300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 06901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 06902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 06903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 07301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08606" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08607" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08608" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08609" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08610" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08611" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08612" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08613" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08614" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08615" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08616" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08617" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08618" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08619" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08620" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08621" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08622" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08623" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08624" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 08900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 09911" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 10900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 11704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 12100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 12701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 12702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 12703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "FL, 12704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 04600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 05001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 05002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 06001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "GA, 06002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "HI, 00308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ID, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03009" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03407" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03408" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03409" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03410" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03411" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03412" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03413" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03414" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03415" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03416" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03417" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03418" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03419" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03420" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03421" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03422" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03520" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03521" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03522" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03523" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03524" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03525" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03526" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03527" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03528" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03529" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03530" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03531" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03532" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IL, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "IN, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KS, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "KY, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "LA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 00704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MA, 04903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MD, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ME, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 02908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03210" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03211" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03212" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03213" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MI, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01405" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01406" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01407" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01408" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01409" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01410" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MN, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01808" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MO, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MS, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "MT, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 04900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NC, 05400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ND, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ND, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ND, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ND, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "ND, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NE, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NH, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 00907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 01904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NJ, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NM, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00405" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00406" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00407" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00408" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00409" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00410" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00411" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00412" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NV, 00413" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 02903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03210" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03211" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03212" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03311" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03312" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03313" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03709" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03710" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03808" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03809" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03810" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 03903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04009" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04010" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04011" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04012" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04013" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04014" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04015" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04016" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04017" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04018" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "NY, 04114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 00910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 04900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OH, 05700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OK, 01601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01314" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01316" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01317" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01318" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01319" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01320" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01321" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01322" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01323" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "OR, 01324" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03210" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03211" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 04001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "PA, 04002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "RI, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SC, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SD, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SD, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SD, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SD, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SD, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "SD, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TN, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 01907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02311" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02312" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02313" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02314" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02315" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02316" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02317" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02318" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02319" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02320" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02321" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02322" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02511" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02512" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02513" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02514" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02515" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02516" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04606" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04607" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04608" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04609" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04610" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04611" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04612" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04613" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04614" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04615" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04616" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04617" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04618" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04619" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04620" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04621" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04622" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04623" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04624" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04625" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04626" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04627" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04628" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04629" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04630" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04631" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04632" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04633" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04634" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04635" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04636" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04637" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04638" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 04905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05911" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05912" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05913" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05914" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05915" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 05916" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "TX, 06900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 05001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 11001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 11002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 13001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 21001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 35009" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 49001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 49002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 49003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 49004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 53001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 57001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "UT, 57002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 10701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 10702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 10703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51010" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51020" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51040" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51044" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51045" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51080" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51084" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51085" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51087" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51089" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51090" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51095" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51096" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51097" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51115" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51120" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51125" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51135" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51145" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51154" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51155" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51164" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51165" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51167" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51175" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51186" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51215" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51224" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51225" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51235" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51244" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51245" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51246" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 51255" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 55001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 55002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VA, 59309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VT, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VT, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VT, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "VT, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 10902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11606" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11607" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11608" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11609" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11610" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11611" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11612" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11613" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11614" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11615" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11616" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WA, 11900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 01601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 10000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 20000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 30000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 40101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 40301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 40701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 41001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 41002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 41003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 41004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 41005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 50000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 55101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 55102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 55103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 70101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 70201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WI, 70301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WV, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WY, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WY, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WY, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WY, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA "WY, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto -PUMA Metro Status "In metro area, not/partially in principal city" -PUMA Metro Status "In metro area, principal city" -PUMA Metro Status Not/partially in metro area -PV Orientation East ResStockArguments pv_system_array_azimuth=90 pv_system_2_array_azimuth=0 -PV Orientation None ResStockArguments pv_system_array_azimuth=180 pv_system_2_array_azimuth=0 -PV Orientation North ResStockArguments pv_system_array_azimuth=0 pv_system_2_array_azimuth=0 -PV Orientation Northeast ResStockArguments pv_system_array_azimuth=45 pv_system_2_array_azimuth=0 -PV Orientation Northwest ResStockArguments pv_system_array_azimuth=315 pv_system_2_array_azimuth=0 -PV Orientation South ResStockArguments pv_system_array_azimuth=180 pv_system_2_array_azimuth=0 -PV Orientation Southeast ResStockArguments pv_system_array_azimuth=135 pv_system_2_array_azimuth=0 -PV Orientation Southwest ResStockArguments pv_system_array_azimuth=225 pv_system_2_array_azimuth=0 -PV Orientation West ResStockArguments pv_system_array_azimuth=270 pv_system_2_array_azimuth=0 -PV System Size 1.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=1000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 11.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=11000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 13.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=13000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 3.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=3000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 5.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=5000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 7.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=7000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 9.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=9000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size None ResStockArguments pv_system_present=false pv_system_module_type=auto pv_system_max_power_output=0 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -Plug Load Diversity 100% ResStockArguments misc_plug_loads_other_2_usage_multiplier=1.0 misc_plug_loads_television_2_usage_multiplier=1.0 -Plug Load Diversity 150% ResStockArguments misc_plug_loads_other_2_usage_multiplier=1.5 misc_plug_loads_television_2_usage_multiplier=1.5 -Plug Load Diversity 200% ResStockArguments misc_plug_loads_other_2_usage_multiplier=2.0 misc_plug_loads_television_2_usage_multiplier=2.0 -Plug Load Diversity 25% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.25 misc_plug_loads_television_2_usage_multiplier=0.25 -Plug Load Diversity 400% ResStockArguments misc_plug_loads_other_2_usage_multiplier=4.0 misc_plug_loads_television_2_usage_multiplier=4.0 -Plug Load Diversity 50% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.5 misc_plug_loads_television_2_usage_multiplier=0.5 -Plug Load Diversity 75% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.75 misc_plug_loads_television_2_usage_multiplier=0.75 -Plug Loads 100% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.0 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.0 -Plug Loads 101% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.01 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.01 -Plug Loads 102% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.02 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.02 -Plug Loads 103% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.03 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.03 -Plug Loads 104% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.04 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.04 -Plug Loads 105% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.05 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.05 -Plug Loads 106% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.06 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.06 -Plug Loads 108% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.08 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.08 -Plug Loads 110% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.1 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.1 -Plug Loads 113% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.13 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.13 -Plug Loads 119% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.19 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.19 -Plug Loads 121% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.21 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.21 -Plug Loads 123% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.23 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.23 -Plug Loads 134% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.34 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.34 -Plug Loads 137% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.37 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.37 -Plug Loads 140% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.4 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.4 -Plug Loads 144% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.44 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.44 -Plug Loads 166% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.66 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=1.66 -Plug Loads 78% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.78 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.78 -Plug Loads 79% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.79 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.79 -Plug Loads 82% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.82 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.82 -Plug Loads 84% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.84 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.84 -Plug Loads 85% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.85 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.85 -Plug Loads 86% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.86 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.86 -Plug Loads 89% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.89 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.89 -Plug Loads 91% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.91 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.91 -Plug Loads 93% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.93 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.93 -Plug Loads 94% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.94 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.94 -Plug Loads 95% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.95 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.95 -Plug Loads 96% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.96 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.96 -Plug Loads 97% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.97 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.97 -Plug Loads 99% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.99 misc_plug_loads_television_present=true misc_plug_loads_television_annual_kwh=auto misc_plug_loads_television_usage_multiplier=0.99 -Power Outage Summer ResStockArguments schedules_power_outage_periods=Jul 1 5 - Jul 31 14 schedules_power_outage_periods_window_natvent_availability=always available -REEDS Balancing Area 1 -REEDS Balancing Area 10 -REEDS Balancing Area 100 -REEDS Balancing Area 101 -REEDS Balancing Area 102 -REEDS Balancing Area 103 -REEDS Balancing Area 104 -REEDS Balancing Area 105 -REEDS Balancing Area 106 -REEDS Balancing Area 107 -REEDS Balancing Area 108 -REEDS Balancing Area 109 -REEDS Balancing Area 11 -REEDS Balancing Area 110 -REEDS Balancing Area 111 -REEDS Balancing Area 112 -REEDS Balancing Area 113 -REEDS Balancing Area 114 -REEDS Balancing Area 115 -REEDS Balancing Area 116 -REEDS Balancing Area 117 -REEDS Balancing Area 118 -REEDS Balancing Area 119 -REEDS Balancing Area 12 -REEDS Balancing Area 120 -REEDS Balancing Area 121 -REEDS Balancing Area 122 -REEDS Balancing Area 123 -REEDS Balancing Area 124 -REEDS Balancing Area 125 -REEDS Balancing Area 126 -REEDS Balancing Area 127 -REEDS Balancing Area 128 -REEDS Balancing Area 129 -REEDS Balancing Area 13 -REEDS Balancing Area 130 -REEDS Balancing Area 131 -REEDS Balancing Area 132 -REEDS Balancing Area 133 -REEDS Balancing Area 134 -REEDS Balancing Area 14 -REEDS Balancing Area 15 -REEDS Balancing Area 16 -REEDS Balancing Area 17 -REEDS Balancing Area 18 -REEDS Balancing Area 19 -REEDS Balancing Area 2 -REEDS Balancing Area 20 -REEDS Balancing Area 21 -REEDS Balancing Area 22 -REEDS Balancing Area 23 -REEDS Balancing Area 24 -REEDS Balancing Area 25 -REEDS Balancing Area 26 -REEDS Balancing Area 27 -REEDS Balancing Area 28 -REEDS Balancing Area 29 -REEDS Balancing Area 3 -REEDS Balancing Area 30 -REEDS Balancing Area 31 -REEDS Balancing Area 32 -REEDS Balancing Area 33 -REEDS Balancing Area 34 -REEDS Balancing Area 35 -REEDS Balancing Area 36 -REEDS Balancing Area 37 -REEDS Balancing Area 38 -REEDS Balancing Area 39 -REEDS Balancing Area 4 -REEDS Balancing Area 40 -REEDS Balancing Area 41 -REEDS Balancing Area 42 -REEDS Balancing Area 43 -REEDS Balancing Area 44 -REEDS Balancing Area 45 -REEDS Balancing Area 46 -REEDS Balancing Area 47 -REEDS Balancing Area 48 -REEDS Balancing Area 49 -REEDS Balancing Area 5 -REEDS Balancing Area 50 -REEDS Balancing Area 51 -REEDS Balancing Area 52 -REEDS Balancing Area 53 -REEDS Balancing Area 54 -REEDS Balancing Area 55 -REEDS Balancing Area 56 -REEDS Balancing Area 57 -REEDS Balancing Area 58 -REEDS Balancing Area 59 -REEDS Balancing Area 6 -REEDS Balancing Area 60 -REEDS Balancing Area 61 -REEDS Balancing Area 62 -REEDS Balancing Area 63 -REEDS Balancing Area 64 -REEDS Balancing Area 65 -REEDS Balancing Area 66 -REEDS Balancing Area 67 -REEDS Balancing Area 68 -REEDS Balancing Area 69 -REEDS Balancing Area 7 -REEDS Balancing Area 70 -REEDS Balancing Area 71 -REEDS Balancing Area 72 -REEDS Balancing Area 73 -REEDS Balancing Area 74 -REEDS Balancing Area 75 -REEDS Balancing Area 76 -REEDS Balancing Area 77 -REEDS Balancing Area 78 -REEDS Balancing Area 79 -REEDS Balancing Area 8 -REEDS Balancing Area 80 -REEDS Balancing Area 81 -REEDS Balancing Area 82 -REEDS Balancing Area 83 -REEDS Balancing Area 84 -REEDS Balancing Area 85 -REEDS Balancing Area 86 -REEDS Balancing Area 87 -REEDS Balancing Area 88 -REEDS Balancing Area 89 -REEDS Balancing Area 9 -REEDS Balancing Area 90 -REEDS Balancing Area 91 -REEDS Balancing Area 92 -REEDS Balancing Area 93 -REEDS Balancing Area 94 -REEDS Balancing Area 95 -REEDS Balancing Area 96 -REEDS Balancing Area 97 -REEDS Balancing Area 98 -REEDS Balancing Area 99 -REEDS Balancing Area None -Radiant Barrier No ResStockArguments radiant_barrier_attic_location=none radiant_barrier_grade=1 -Radiant Barrier None ResStockArguments radiant_barrier_attic_location=none radiant_barrier_grade=1 -Radiant Barrier Yes ResStockArguments radiant_barrier_attic_location=Attic roof only radiant_barrier_grade=1 -Range Spot Vent Hour Hour0 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=0 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour1 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=1 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour10 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=10 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour11 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=11 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour12 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=12 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour13 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=13 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour14 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=14 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour15 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=15 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour16 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=16 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour17 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=17 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour18 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=18 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour19 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=19 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour2 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=2 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour20 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=20 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour21 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=21 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour22 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=22 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour23 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=23 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour3 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=3 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour4 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=4 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour5 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=5 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour6 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=6 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour7 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=7 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour8 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=8 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour9 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=9 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Refrigerator EF 10.2 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=748 -Refrigerator EF 10.5 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=727 -Refrigerator EF 15.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=480 -Refrigerator EF 17.6 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=433 -Refrigerator EF 19.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=383 -Refrigerator EF 21.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=348 -Refrigerator EF 6.7 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=1139 -Refrigerator None ResStockArguments refrigerator_present=false refrigerator_location=auto refrigerator_rated_annual_kwh=0 -Refrigerator Void -Refrigerator Usage Level 100% Usage ResStockArguments refrigerator_usage_multiplier=1.0 -Refrigerator Usage Level 105% Usage ResStockArguments refrigerator_usage_multiplier=1.05 -Refrigerator Usage Level 95% Usage ResStockArguments refrigerator_usage_multiplier=0.95 -Roof Material "Asphalt Shingles, Dark" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=dark -Roof Material "Asphalt Shingles, Light" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=light -Roof Material "Asphalt Shingles, Medium" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=medium -Roof Material "Asphalt Shingles, White or cool colors" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=reflective -Roof Material "Composition Shingles, White or Cool Colors" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=reflective -Roof Material "Metal, Cool Colors" ResStockArguments roof_material_type=metal surfacing roof_color=reflective -Roof Material "Metal, Dark" ResStockArguments roof_material_type=metal surfacing roof_color=dark -Roof Material "Metal, Light" ResStockArguments roof_material_type=metal surfacing roof_color=light -Roof Material "Metal, Medium" ResStockArguments roof_material_type=metal surfacing roof_color=medium -Roof Material "Metal, White" ResStockArguments roof_material_type=metal surfacing roof_color=reflective -Roof Material "Tile, Clay or Ceramic" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium -Roof Material "Tile, Clay or Ceramic, White or Cool Colors" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective -Roof Material "Tile, Concrete" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium -Roof Material "Tile, Concrete, White or Cool Colors" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective -Roof Material "Tile, Dark" ResStockArguments roof_material_type=slate or tile shingles roof_color=dark -Roof Material "Tile, Light" ResStockArguments roof_material_type=slate or tile shingles roof_color=light -Roof Material "Tile, Medium" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium -Roof Material "Tile, White" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective -Roof Material Composition Shingles ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=medium -Roof Material Galvanized Steel ResStockArguments roof_material_type=metal surfacing roof_color=medium -Roof Material Slate ResStockArguments roof_material_type=slate or tile shingles roof_color=medium -Roof Material Wood Shingles ResStockArguments roof_material_type=wood shingles or shakes roof_color=medium -Solar Hot Water "40 sqft, South, 10 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=10 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, South, Latitude - 15 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=latitude-15 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, South, Roof Pitch" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, West, 70 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=70 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, West, Latitude + 15 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=latitude+15 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, West, Roof Pitch" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water None ResStockArguments solar_thermal_system_type=none solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -State AK ResStockArguments site_state_code=AK -State AL ResStockArguments site_state_code=AL -State AR ResStockArguments site_state_code=AR -State AZ ResStockArguments site_state_code=AZ -State CA ResStockArguments site_state_code=CA -State CO ResStockArguments site_state_code=CO -State CT ResStockArguments site_state_code=CT -State DC ResStockArguments site_state_code=DC -State DE ResStockArguments site_state_code=DE -State FL ResStockArguments site_state_code=FL -State GA ResStockArguments site_state_code=GA -State HI ResStockArguments site_state_code=HI -State IA ResStockArguments site_state_code=IA -State ID ResStockArguments site_state_code=ID -State IL ResStockArguments site_state_code=IL -State IN ResStockArguments site_state_code=IN -State KS ResStockArguments site_state_code=KS -State KY ResStockArguments site_state_code=KY -State LA ResStockArguments site_state_code=LA -State MA ResStockArguments site_state_code=MA -State MD ResStockArguments site_state_code=MD -State ME ResStockArguments site_state_code=ME -State MI ResStockArguments site_state_code=MI -State MN ResStockArguments site_state_code=MN -State MO ResStockArguments site_state_code=MO -State MS ResStockArguments site_state_code=MS -State MT ResStockArguments site_state_code=MT -State NC ResStockArguments site_state_code=NC -State ND ResStockArguments site_state_code=ND -State NE ResStockArguments site_state_code=NE -State NH ResStockArguments site_state_code=NH -State NJ ResStockArguments site_state_code=NJ -State NM ResStockArguments site_state_code=NM -State NV ResStockArguments site_state_code=NV -State NY ResStockArguments site_state_code=NY -State OH ResStockArguments site_state_code=OH -State OK ResStockArguments site_state_code=OK -State OR ResStockArguments site_state_code=OR -State PA ResStockArguments site_state_code=PA -State RI ResStockArguments site_state_code=RI -State SC ResStockArguments site_state_code=SC -State SD ResStockArguments site_state_code=SD -State TN ResStockArguments site_state_code=TN -State TX ResStockArguments site_state_code=TX -State UT ResStockArguments site_state_code=UT -State VA ResStockArguments site_state_code=VA -State VT ResStockArguments site_state_code=VT -State WA ResStockArguments site_state_code=WA -State WI ResStockArguments site_state_code=WI -State WV ResStockArguments site_state_code=WV -State WY ResStockArguments site_state_code=WY -State Metro Median Income 0-30% -State Metro Median Income 100-120% -State Metro Median Income 120-150% -State Metro Median Income 150%+ -State Metro Median Income 30-60% -State Metro Median Income 60-80% -State Metro Median Income 80-100% -State Metro Median Income Not Available -Storm Windows Clear ResStockArguments window_storm_type=clear -Storm Windows Low-E ResStockArguments window_storm_type=low-e -Tenure Not Available -Tenure Owner -Tenure Renter -Usage Level Average -Usage Level High -Usage Level Low -Usage Level Medium -Vacancy Status Occupied -Vacancy Status Vacant ResStockArguments schedules_vacancy_periods=Jan 1 - Dec 31 -Vintage 1940s ResStockArguments vintage=1940s year_built=auto -Vintage 1950s ResStockArguments vintage=1950s year_built=auto -Vintage 1960s ResStockArguments vintage=1960s year_built=auto -Vintage 1970s ResStockArguments vintage=1970s year_built=auto -Vintage 1980s ResStockArguments vintage=1980s year_built=auto -Vintage 1990s ResStockArguments vintage=1990s year_built=auto -Vintage 2000s ResStockArguments vintage=2000s year_built=auto -Vintage 2010s ResStockArguments vintage=2010s year_built=auto -Vintage <1940 ResStockArguments vintage=<1940 year_built=auto -Vintage <1950 ResStockArguments vintage=<1950 year_built=auto -Vintage ACS 1940-59 -Vintage ACS 1960-79 -Vintage ACS 1980-99 -Vintage ACS 2000-09 -Vintage ACS 2010s -Vintage ACS <1940 -Water Heater Efficiency "Electric Heat Pump, 50 gal, 3.45 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Electric Heat Pump, 50 gal, 3.45 UEF, 140F" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=140 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Electric Heat Pump, 66 gal, 3.35 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=66 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.35 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Electric Heat Pump, 80 gal, 3.45 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=80 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Natural Gas Premium, Condensing" ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Natural Gas Tankless, Condensing" ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=natural gas water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.96 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Propane Premium, Condensing" ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Electric Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=electricity water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.95 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Electric Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=electricity water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.92 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Electric Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=electricity water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.99 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency FIXME Fuel Oil Indirect ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.62 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Fuel Oil Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.68 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Fuel Oil Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.62 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Natural Gas Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.67 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Natural Gas Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Natural Gas Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=natural gas water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Other Fuel ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=wood water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Propane Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.67 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Propane Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Propane Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=propane water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Fuel Electricity -Water Heater Fuel Fuel Oil -Water Heater Fuel Natural Gas -Water Heater Fuel Other Fuel -Water Heater Fuel Propane -Water Heater In Unit No -Water Heater In Unit Yes -Water Heater Location Attic ResStockArguments water_heater_location=attic -Water Heater Location Conditioned Mechanical Room ResStockArguments water_heater_location=other heated space -Water Heater Location Crawlspace ResStockArguments water_heater_location=crawlspace -Water Heater Location Garage ResStockArguments water_heater_location=garage -Water Heater Location Heated Basement ResStockArguments water_heater_location=basement - conditioned -Water Heater Location Living Space ResStockArguments water_heater_location=conditioned space -Water Heater Location Outside ResStockArguments water_heater_location=other exterior -Water Heater Location Unheated Basement ResStockArguments water_heater_location=basement - unconditioned -Window Areas F10 B30 L10 R10 ResStockArguments window_front_wwr=0.1 window_back_wwr=0.3 window_left_wwr=0.1 window_right_wwr=0.1 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F12 B12 L12 R12 ResStockArguments window_front_wwr=0.12 window_back_wwr=0.12 window_left_wwr=0.12 window_right_wwr=0.12 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F15 B15 L0 R0 ResStockArguments window_front_wwr=0.15 window_back_wwr=0.15 window_left_wwr=0 window_right_wwr=0 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F15 B15 L15 R15 ResStockArguments window_front_wwr=0.15 window_back_wwr=0.15 window_left_wwr=0.15 window_right_wwr=0.15 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F18 B18 L18 R18 ResStockArguments window_front_wwr=0.18 window_back_wwr=0.18 window_left_wwr=0.18 window_right_wwr=0.18 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F30 B30 L30 R30 ResStockArguments window_front_wwr=0.30 window_back_wwr=0.30 window_left_wwr=0.30 window_right_wwr=0.30 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F6 B6 L6 R6 ResStockArguments window_front_wwr=0.06 window_back_wwr=0.06 window_left_wwr=0.06 window_right_wwr=0.06 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F9 B9 L9 R9 ResStockArguments window_front_wwr=0.09 window_back_wwr=0.09 window_left_wwr=0.09 window_right_wwr=0.09 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas None ResStockArguments window_front_wwr=0.0 window_back_wwr=0.0 window_left_wwr=0.0 window_right_wwr=0.0 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Windows "Double, Clear, Metal, Air" ResStockArguments window_ufactor=0.76 window_shgc=0.67 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Metal, Air, Exterior Clear Storm" ResStockArguments window_ufactor=0.55 window_shgc=0.51 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.49 window_shgc=0.44 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Non-metal, Air" ResStockArguments window_ufactor=0.49 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Non-metal, Air, Exterior Clear Storm" ResStockArguments window_ufactor=0.34 window_shgc=0.49 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Non-metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.28 window_shgc=0.42 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Thermal-Break, Air" ResStockArguments window_ufactor=0.63 window_shgc=0.62 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Low-E, H-Gain" ResStockArguments window_ufactor=0.29 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Low-E, L-Gain" ResStockArguments window_ufactor=0.26 window_shgc=0.31 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Low-E, Non-metal, Air, L-Gain" ResStockArguments window_ufactor=0.37 window_shgc=0.3 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Low-E, Non-metal, Air, M-Gain" ResStockArguments window_ufactor=0.38 window_shgc=0.44 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Metal" ResStockArguments window_ufactor=1.16 window_shgc=0.76 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Metal, Exterior Clear Storm" ResStockArguments window_ufactor=0.67 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.57 window_shgc=0.47 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Non-metal" ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Non-metal, Exterior Clear Storm" ResStockArguments window_ufactor=0.47 window_shgc=0.54 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Non-metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.36 window_shgc=0.46 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Triple, Low-E, Insulated, Argon, H-Gain" ResStockArguments window_ufactor=0.18 window_shgc=0.40 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Triple, Low-E, Insulated, Argon, L-Gain" ResStockArguments window_ufactor=0.17 window_shgc=0.27 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Triple, Low-E, Non-metal, Air, L-Gain" ResStockArguments window_ufactor=0.29 window_shgc=0.26 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows No Windows ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows Void -Load Flexibility default LoadFlexibility \ No newline at end of file +Parameter Name Option Name Measure Dir Measure Arg 1 Measure Arg 2 ... +AHS Region "CBSA Atlanta-Sandy Springs-Roswell, GA" +AHS Region "CBSA Boston-Cambridge-Newton, MA-NH" +AHS Region "CBSA Chicago-Naperville-Elgin, IL-IN-WI" +AHS Region "CBSA Dallas-Fort Worth-Arlington, TX" +AHS Region "CBSA Detroit-Warren-Dearborn, MI" +AHS Region "CBSA Houston-The Woodlands-Sugar Land, TX" +AHS Region "CBSA Los Angeles-Long Beach-Anaheim, CA" +AHS Region "CBSA Miami-Fort Lauderdale-West Palm Beach, FL" +AHS Region "CBSA New York-Newark-Jersey City, NY-NJ-PA" +AHS Region "CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD" +AHS Region "CBSA Phoenix-Mesa-Scottsdale, AZ" +AHS Region "CBSA Riverside-San Bernardino-Ontario, CA" +AHS Region "CBSA San Francisco-Oakland-Hayward, CA" +AHS Region "CBSA Seattle-Tacoma-Bellevue, WA" +AHS Region "CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV" +AHS Region Non-CBSA East North Central +AHS Region Non-CBSA East South Central +AHS Region Non-CBSA Middle Atlantic +AHS Region Non-CBSA Mountain +AHS Region Non-CBSA New England +AHS Region Non-CBSA Pacific +AHS Region Non-CBSA South Atlantic +AHS Region Non-CBSA West North Central +AHS Region Non-CBSA West South Central +AIANNH Area No +AIANNH Area Yes +ASHRAE IECC Climate Zone 2004 1A ResStockArguments site_iecc_zone=1A site_type=auto +ASHRAE IECC Climate Zone 2004 2A ResStockArguments site_iecc_zone=2A site_type=auto +ASHRAE IECC Climate Zone 2004 2B ResStockArguments site_iecc_zone=2B site_type=auto +ASHRAE IECC Climate Zone 2004 3A ResStockArguments site_iecc_zone=3A site_type=auto +ASHRAE IECC Climate Zone 2004 3B ResStockArguments site_iecc_zone=3B site_type=auto +ASHRAE IECC Climate Zone 2004 3C ResStockArguments site_iecc_zone=3C site_type=auto +ASHRAE IECC Climate Zone 2004 4A ResStockArguments site_iecc_zone=4A site_type=auto +ASHRAE IECC Climate Zone 2004 4B ResStockArguments site_iecc_zone=4B site_type=auto +ASHRAE IECC Climate Zone 2004 4C ResStockArguments site_iecc_zone=4C site_type=auto +ASHRAE IECC Climate Zone 2004 5A ResStockArguments site_iecc_zone=5A site_type=auto +ASHRAE IECC Climate Zone 2004 5B ResStockArguments site_iecc_zone=5B site_type=auto +ASHRAE IECC Climate Zone 2004 6A ResStockArguments site_iecc_zone=6A site_type=auto +ASHRAE IECC Climate Zone 2004 6B ResStockArguments site_iecc_zone=6B site_type=auto +ASHRAE IECC Climate Zone 2004 7A ResStockArguments site_iecc_zone=7 site_type=auto +ASHRAE IECC Climate Zone 2004 7AK ResStockArguments site_iecc_zone=7 site_type=auto +ASHRAE IECC Climate Zone 2004 7B ResStockArguments site_iecc_zone=7 site_type=auto +ASHRAE IECC Climate Zone 2004 8AK ResStockArguments site_iecc_zone=8 site_type=auto +ASHRAE IECC Climate Zone 2004 - 2A Split "2A - FL, GA, AL, MS" +ASHRAE IECC Climate Zone 2004 - 2A Split "2A - TX, LA" +ASHRAE IECC Climate Zone 2004 - 2A Split 1A +ASHRAE IECC Climate Zone 2004 - 2A Split 2B +ASHRAE IECC Climate Zone 2004 - 2A Split 3A +ASHRAE IECC Climate Zone 2004 - 2A Split 3B +ASHRAE IECC Climate Zone 2004 - 2A Split 3C +ASHRAE IECC Climate Zone 2004 - 2A Split 4A +ASHRAE IECC Climate Zone 2004 - 2A Split 4B +ASHRAE IECC Climate Zone 2004 - 2A Split 4C +ASHRAE IECC Climate Zone 2004 - 2A Split 5A +ASHRAE IECC Climate Zone 2004 - 2A Split 5B +ASHRAE IECC Climate Zone 2004 - 2A Split 6A +ASHRAE IECC Climate Zone 2004 - 2A Split 6B +ASHRAE IECC Climate Zone 2004 - 2A Split 7A +ASHRAE IECC Climate Zone 2004 - 2A Split 7AK +ASHRAE IECC Climate Zone 2004 - 2A Split 7B +ASHRAE IECC Climate Zone 2004 - 2A Split 8AK +Area Median Income 0-30% +Area Median Income 100-120% +Area Median Income 120-150% +Area Median Income 150%+ +Area Median Income 30-60% +Area Median Income 60-80% +Area Median Income 80-100% +Area Median Income Not Available +Bathroom Spot Vent Hour Hour0 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=0 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour1 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=1 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour10 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=10 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour11 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=11 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour12 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=12 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour13 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=13 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour14 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=14 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour15 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=15 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour16 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=16 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour17 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=17 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour18 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=18 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour19 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=19 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour2 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=2 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour20 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=20 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour21 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=21 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour22 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=22 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour23 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=23 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour3 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=3 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour4 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=4 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour5 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=5 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour6 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=6 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour7 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=7 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour8 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=8 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour9 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=9 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Battery "20 kWh, 80% Round Trip Efficiency" ResStockArguments battery_present=true battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=0.8 +Battery "20 kWh, Garage" ResStockArguments battery_present=true battery_location=garage battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto +Battery "20 kWh, Outside" ResStockArguments battery_present=true battery_location=outside battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto +Battery 10 kWh ResStockArguments battery_present=true battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto +Battery None ResStockArguments battery_present=false battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto +Bedrooms 1 ResStockArguments geometry_unit_num_bedrooms=1 geometry_unit_num_bathrooms=auto +Bedrooms 2 ResStockArguments geometry_unit_num_bedrooms=2 geometry_unit_num_bathrooms=auto +Bedrooms 3 ResStockArguments geometry_unit_num_bedrooms=3 geometry_unit_num_bathrooms=auto +Bedrooms 4 ResStockArguments geometry_unit_num_bedrooms=4 geometry_unit_num_bathrooms=auto +Bedrooms 5 ResStockArguments geometry_unit_num_bedrooms=5 geometry_unit_num_bathrooms=auto +Building America Climate Zone Cold +Building America Climate Zone Hot-Dry +Building America Climate Zone Hot-Humid +Building America Climate Zone Marine +Building America Climate Zone Mixed-Dry +Building America Climate Zone Mixed-Humid +Building America Climate Zone Subarctic +Building America Climate Zone Very Cold +CEC Climate Zone 1 +CEC Climate Zone 10 +CEC Climate Zone 11 +CEC Climate Zone 12 +CEC Climate Zone 13 +CEC Climate Zone 14 +CEC Climate Zone 15 +CEC Climate Zone 16 +CEC Climate Zone 2 +CEC Climate Zone 3 +CEC Climate Zone 4 +CEC Climate Zone 5 +CEC Climate Zone 6 +CEC Climate Zone 7 +CEC Climate Zone 8 +CEC Climate Zone 9 +CEC Climate Zone None +Ceiling Fan "Premium Efficiency, 0.5F Offset" ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=140.8 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0.5 +Ceiling Fan "Standard Efficiency, 0.5F Offset" ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=70.4 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0.5 +Ceiling Fan "Standard Efficiency, No usage" ResStockArguments ceiling_fan_present=false ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=0 ceiling_fan_quantity=0 ceiling_fan_cooling_setpoint_temp_offset=0 +Ceiling Fan None ResStockArguments ceiling_fan_present=false ceiling_fan_label_energy_use=0 ceiling_fan_efficiency=0 ceiling_fan_quantity=0 ceiling_fan_cooling_setpoint_temp_offset=0 +Ceiling Fan Premium Efficiency ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=140.8 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0 +Ceiling Fan Standard Efficiency ResStockArguments ceiling_fan_present=true ceiling_fan_label_energy_use=auto ceiling_fan_efficiency=70.4 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0 +Census Division East North Central +Census Division East South Central +Census Division Middle Atlantic +Census Division Mountain +Census Division New England +Census Division Pacific +Census Division South Atlantic +Census Division West North Central +Census Division West South Central +Census Division RECS East North Central +Census Division RECS East South Central +Census Division RECS Middle Atlantic +Census Division RECS Mountain North +Census Division RECS Mountain South +Census Division RECS New England +Census Division RECS Pacific +Census Division RECS South Atlantic +Census Division RECS West North Central +Census Division RECS West South Central +Census Region Midwest +Census Region Northeast +Census Region South +Census Region West +City "AK, Anchorage" ResStockArguments site_city=auto +City "AL, Auburn" ResStockArguments site_city=auto +City "AL, Birmingham" ResStockArguments site_city=auto +City "AL, Decatur" ResStockArguments site_city=auto +City "AL, Dothan" ResStockArguments site_city=auto +City "AL, Florence" ResStockArguments site_city=auto +City "AL, Gadsden" ResStockArguments site_city=auto +City "AL, Hoover" ResStockArguments site_city=auto +City "AL, Huntsville" ResStockArguments site_city=auto +City "AL, Madison" ResStockArguments site_city=auto +City "AL, Mobile" ResStockArguments site_city=auto +City "AL, Montgomery" ResStockArguments site_city=auto +City "AL, Phenix City" ResStockArguments site_city=auto +City "AL, Tuscaloosa" ResStockArguments site_city=auto +City "AR, Bentonville" ResStockArguments site_city=auto +City "AR, Conway" ResStockArguments site_city=auto +City "AR, Fayetteville" ResStockArguments site_city=auto +City "AR, Fort Smith" ResStockArguments site_city=auto +City "AR, Hot Springs" ResStockArguments site_city=auto +City "AR, Jonesboro" ResStockArguments site_city=auto +City "AR, Little Rock" ResStockArguments site_city=auto +City "AR, North Little Rock" ResStockArguments site_city=auto +City "AR, Pine Bluff" ResStockArguments site_city=auto +City "AR, Rogers" ResStockArguments site_city=auto +City "AR, Springdale" ResStockArguments site_city=auto +City "AZ, Apache Junction" ResStockArguments site_city=auto +City "AZ, Avondale" ResStockArguments site_city=auto +City "AZ, Buckeye" ResStockArguments site_city=auto +City "AZ, Bullhead City" ResStockArguments site_city=auto +City "AZ, Casa Grande" ResStockArguments site_city=auto +City "AZ, Casas Adobes" ResStockArguments site_city=auto +City "AZ, Catalina Foothills" ResStockArguments site_city=auto +City "AZ, Chandler" ResStockArguments site_city=auto +City "AZ, Flagstaff" ResStockArguments site_city=auto +City "AZ, Fortuna Foothills" ResStockArguments site_city=auto +City "AZ, Gilbert" ResStockArguments site_city=auto +City "AZ, Glendale" ResStockArguments site_city=auto +City "AZ, Goodyear" ResStockArguments site_city=auto +City "AZ, Green Valley" ResStockArguments site_city=auto +City "AZ, Lake Havasu City" ResStockArguments site_city=auto +City "AZ, Marana" ResStockArguments site_city=auto +City "AZ, Maricopa" ResStockArguments site_city=auto +City "AZ, Mesa" ResStockArguments site_city=auto +City "AZ, Oro Valley" ResStockArguments site_city=auto +City "AZ, Peoria" ResStockArguments site_city=auto +City "AZ, Phoenix" ResStockArguments site_city=auto +City "AZ, Prescott Valley" ResStockArguments site_city=auto +City "AZ, Prescott" ResStockArguments site_city=auto +City "AZ, San Tan Valley" ResStockArguments site_city=auto +City "AZ, Scottsdale" ResStockArguments site_city=auto +City "AZ, Sierra Vista" ResStockArguments site_city=auto +City "AZ, Sun City West" ResStockArguments site_city=auto +City "AZ, Sun City" ResStockArguments site_city=auto +City "AZ, Surprise" ResStockArguments site_city=auto +City "AZ, Tempe" ResStockArguments site_city=auto +City "AZ, Tucson" ResStockArguments site_city=auto +City "AZ, Yuma" ResStockArguments site_city=auto +City "CA, Alameda" ResStockArguments site_city=auto +City "CA, Alhambra" ResStockArguments site_city=auto +City "CA, Aliso Viejo" ResStockArguments site_city=auto +City "CA, Altadena" ResStockArguments site_city=auto +City "CA, Anaheim" ResStockArguments site_city=auto +City "CA, Antioch" ResStockArguments site_city=auto +City "CA, Apple Valley" ResStockArguments site_city=auto +City "CA, Arcadia" ResStockArguments site_city=auto +City "CA, Arden-Arcade" ResStockArguments site_city=auto +City "CA, Bakersfield" ResStockArguments site_city=auto +City "CA, Baldwin Park" ResStockArguments site_city=auto +City "CA, Bellflower" ResStockArguments site_city=auto +City "CA, Berkeley" ResStockArguments site_city=auto +City "CA, Beverly Hills" ResStockArguments site_city=auto +City "CA, Brea" ResStockArguments site_city=auto +City "CA, Brentwood" ResStockArguments site_city=auto +City "CA, Buena Park" ResStockArguments site_city=auto +City "CA, Burbank" ResStockArguments site_city=auto +City "CA, Camarillo" ResStockArguments site_city=auto +City "CA, Campbell" ResStockArguments site_city=auto +City "CA, Carlsbad" ResStockArguments site_city=auto +City "CA, Carmichael" ResStockArguments site_city=auto +City "CA, Carson" ResStockArguments site_city=auto +City "CA, Castro Valley" ResStockArguments site_city=auto +City "CA, Cathedral City" ResStockArguments site_city=auto +City "CA, Cerritos" ResStockArguments site_city=auto +City "CA, Chico" ResStockArguments site_city=auto +City "CA, Chino Hills" ResStockArguments site_city=auto +City "CA, Chino" ResStockArguments site_city=auto +City "CA, Chula Vista" ResStockArguments site_city=auto +City "CA, Citrus Heights" ResStockArguments site_city=auto +City "CA, Clovis" ResStockArguments site_city=auto +City "CA, Colton" ResStockArguments site_city=auto +City "CA, Compton" ResStockArguments site_city=auto +City "CA, Concord" ResStockArguments site_city=auto +City "CA, Corona" ResStockArguments site_city=auto +City "CA, Costa Mesa" ResStockArguments site_city=auto +City "CA, Covina" ResStockArguments site_city=auto +City "CA, Culver City" ResStockArguments site_city=auto +City "CA, Cupertino" ResStockArguments site_city=auto +City "CA, Cypress" ResStockArguments site_city=auto +City "CA, Daly City" ResStockArguments site_city=auto +City "CA, Dana Point" ResStockArguments site_city=auto +City "CA, Danville" ResStockArguments site_city=auto +City "CA, Davis" ResStockArguments site_city=auto +City "CA, Diamond Bar" ResStockArguments site_city=auto +City "CA, Downey" ResStockArguments site_city=auto +City "CA, Dublin" ResStockArguments site_city=auto +City "CA, East Los Angeles" ResStockArguments site_city=auto +City "CA, El Cajon" ResStockArguments site_city=auto +City "CA, El Dorado Hills" ResStockArguments site_city=auto +City "CA, El Monte" ResStockArguments site_city=auto +City "CA, Elk Grove" ResStockArguments site_city=auto +City "CA, Encinitas" ResStockArguments site_city=auto +City "CA, Escondido" ResStockArguments site_city=auto +City "CA, Fairfield" ResStockArguments site_city=auto +City "CA, Florence-Graham" ResStockArguments site_city=auto +City "CA, Florin" ResStockArguments site_city=auto +City "CA, Folsom" ResStockArguments site_city=auto +City "CA, Fontana" ResStockArguments site_city=auto +City "CA, Fountain Valley" ResStockArguments site_city=auto +City "CA, Fremont" ResStockArguments site_city=auto +City "CA, Fresno" ResStockArguments site_city=auto +City "CA, Fullerton" ResStockArguments site_city=auto +City "CA, Garden Grove" ResStockArguments site_city=auto +City "CA, Gardena" ResStockArguments site_city=auto +City "CA, Gilroy" ResStockArguments site_city=auto +City "CA, Glendale" ResStockArguments site_city=auto +City "CA, Glendora" ResStockArguments site_city=auto +City "CA, Hacienda Heights" ResStockArguments site_city=auto +City "CA, Hanford" ResStockArguments site_city=auto +City "CA, Hawthorne" ResStockArguments site_city=auto +City "CA, Hayward" ResStockArguments site_city=auto +City "CA, Hemet" ResStockArguments site_city=auto +City "CA, Hesperia" ResStockArguments site_city=auto +City "CA, Highland" ResStockArguments site_city=auto +City "CA, Huntington Beach" ResStockArguments site_city=auto +City "CA, Huntington Park" ResStockArguments site_city=auto +City "CA, Indio" ResStockArguments site_city=auto +City "CA, Inglewood" ResStockArguments site_city=auto +City "CA, Irvine" ResStockArguments site_city=auto +City "CA, La Habra" ResStockArguments site_city=auto +City "CA, La Mesa" ResStockArguments site_city=auto +City "CA, La Quinta" ResStockArguments site_city=auto +City "CA, Laguna Niguel" ResStockArguments site_city=auto +City "CA, Lake Elsinore" ResStockArguments site_city=auto +City "CA, Lake Forest" ResStockArguments site_city=auto +City "CA, Lakewood" ResStockArguments site_city=auto +City "CA, Lancaster" ResStockArguments site_city=auto +City "CA, Lincoln" ResStockArguments site_city=auto +City "CA, Livermore" ResStockArguments site_city=auto +City "CA, Lodi" ResStockArguments site_city=auto +City "CA, Long Beach" ResStockArguments site_city=auto +City "CA, Los Angeles" ResStockArguments site_city=auto +City "CA, Lynwood" ResStockArguments site_city=auto +City "CA, Madera" ResStockArguments site_city=auto +City "CA, Manhattan Beach" ResStockArguments site_city=auto +City "CA, Manteca" ResStockArguments site_city=auto +City "CA, Martinez" ResStockArguments site_city=auto +City "CA, Menifee" ResStockArguments site_city=auto +City "CA, Merced" ResStockArguments site_city=auto +City "CA, Milpitas" ResStockArguments site_city=auto +City "CA, Mission Viejo" ResStockArguments site_city=auto +City "CA, Modesto" ResStockArguments site_city=auto +City "CA, Montebello" ResStockArguments site_city=auto +City "CA, Monterey Park" ResStockArguments site_city=auto +City "CA, Moreno Valley" ResStockArguments site_city=auto +City "CA, Mountain View" ResStockArguments site_city=auto +City "CA, Murrieta" ResStockArguments site_city=auto +City "CA, Napa" ResStockArguments site_city=auto +City "CA, National City" ResStockArguments site_city=auto +City "CA, Newport Beach" ResStockArguments site_city=auto +City "CA, North Highlands" ResStockArguments site_city=auto +City "CA, Norwalk" ResStockArguments site_city=auto +City "CA, Novato" ResStockArguments site_city=auto +City "CA, Oakland" ResStockArguments site_city=auto +City "CA, Oceanside" ResStockArguments site_city=auto +City "CA, Ontario" ResStockArguments site_city=auto +City "CA, Orange" ResStockArguments site_city=auto +City "CA, Oxnard" ResStockArguments site_city=auto +City "CA, Palm Desert" ResStockArguments site_city=auto +City "CA, Palm Springs" ResStockArguments site_city=auto +City "CA, Palmdale" ResStockArguments site_city=auto +City "CA, Palo Alto" ResStockArguments site_city=auto +City "CA, Pasadena" ResStockArguments site_city=auto +City "CA, Perris" ResStockArguments site_city=auto +City "CA, Petaluma" ResStockArguments site_city=auto +City "CA, Pico Rivera" ResStockArguments site_city=auto +City "CA, Pittsburg" ResStockArguments site_city=auto +City "CA, Placentia" ResStockArguments site_city=auto +City "CA, Pleasanton" ResStockArguments site_city=auto +City "CA, Pomona" ResStockArguments site_city=auto +City "CA, Porterville" ResStockArguments site_city=auto +City "CA, Poway" ResStockArguments site_city=auto +City "CA, Rancho Cordova" ResStockArguments site_city=auto +City "CA, Rancho Cucamonga" ResStockArguments site_city=auto +City "CA, Rancho Palos Verdes" ResStockArguments site_city=auto +City "CA, Rancho Santa Margarita" ResStockArguments site_city=auto +City "CA, Redding" ResStockArguments site_city=auto +City "CA, Redlands" ResStockArguments site_city=auto +City "CA, Redondo Beach" ResStockArguments site_city=auto +City "CA, Redwood City" ResStockArguments site_city=auto +City "CA, Rialto" ResStockArguments site_city=auto +City "CA, Richmond" ResStockArguments site_city=auto +City "CA, Riverside" ResStockArguments site_city=auto +City "CA, Rocklin" ResStockArguments site_city=auto +City "CA, Rohnert Park" ResStockArguments site_city=auto +City "CA, Rosemead" ResStockArguments site_city=auto +City "CA, Roseville" ResStockArguments site_city=auto +City "CA, Rowland Heights" ResStockArguments site_city=auto +City "CA, Sacramento" ResStockArguments site_city=auto +City "CA, Salinas" ResStockArguments site_city=auto +City "CA, San Bernardino" ResStockArguments site_city=auto +City "CA, San Bruno" ResStockArguments site_city=auto +City "CA, San Buenaventura Ventura" ResStockArguments site_city=auto +City "CA, San Clemente" ResStockArguments site_city=auto +City "CA, San Diego" ResStockArguments site_city=auto +City "CA, San Francisco" ResStockArguments site_city=auto +City "CA, San Jose" ResStockArguments site_city=auto +City "CA, San Leandro" ResStockArguments site_city=auto +City "CA, San Luis Obispo" ResStockArguments site_city=auto +City "CA, San Marcos" ResStockArguments site_city=auto +City "CA, San Mateo" ResStockArguments site_city=auto +City "CA, San Rafael" ResStockArguments site_city=auto +City "CA, San Ramon" ResStockArguments site_city=auto +City "CA, Santa Ana" ResStockArguments site_city=auto +City "CA, Santa Barbara" ResStockArguments site_city=auto +City "CA, Santa Clara" ResStockArguments site_city=auto +City "CA, Santa Clarita" ResStockArguments site_city=auto +City "CA, Santa Cruz" ResStockArguments site_city=auto +City "CA, Santa Maria" ResStockArguments site_city=auto +City "CA, Santa Monica" ResStockArguments site_city=auto +City "CA, Santa Rosa" ResStockArguments site_city=auto +City "CA, Santee" ResStockArguments site_city=auto +City "CA, Simi Valley" ResStockArguments site_city=auto +City "CA, South Gate" ResStockArguments site_city=auto +City "CA, South Lake Tahoe" ResStockArguments site_city=auto +City "CA, South San Francisco" ResStockArguments site_city=auto +City "CA, South Whittier" ResStockArguments site_city=auto +City "CA, Stockton" ResStockArguments site_city=auto +City "CA, Sunnyvale" ResStockArguments site_city=auto +City "CA, Temecula" ResStockArguments site_city=auto +City "CA, Thousand Oaks" ResStockArguments site_city=auto +City "CA, Torrance" ResStockArguments site_city=auto +City "CA, Tracy" ResStockArguments site_city=auto +City "CA, Tulare" ResStockArguments site_city=auto +City "CA, Turlock" ResStockArguments site_city=auto +City "CA, Tustin" ResStockArguments site_city=auto +City "CA, Union City" ResStockArguments site_city=auto +City "CA, Upland" ResStockArguments site_city=auto +City "CA, Vacaville" ResStockArguments site_city=auto +City "CA, Vallejo" ResStockArguments site_city=auto +City "CA, Victorville" ResStockArguments site_city=auto +City "CA, Visalia" ResStockArguments site_city=auto +City "CA, Vista" ResStockArguments site_city=auto +City "CA, Walnut Creek" ResStockArguments site_city=auto +City "CA, West Covina" ResStockArguments site_city=auto +City "CA, West Hollywood" ResStockArguments site_city=auto +City "CA, West Sacramento" ResStockArguments site_city=auto +City "CA, Westminster" ResStockArguments site_city=auto +City "CA, Whittier" ResStockArguments site_city=auto +City "CA, Woodland" ResStockArguments site_city=auto +City "CA, Yorba Linda" ResStockArguments site_city=auto +City "CA, Yuba City" ResStockArguments site_city=auto +City "CA, Yucaipa" ResStockArguments site_city=auto +City "CO, Arvada" ResStockArguments site_city=auto +City "CO, Aurora" ResStockArguments site_city=auto +City "CO, Boulder" ResStockArguments site_city=auto +City "CO, Broomfield" ResStockArguments site_city=auto +City "CO, Castle Rock" ResStockArguments site_city=auto +City "CO, Centennial" ResStockArguments site_city=auto +City "CO, Colorado Springs" ResStockArguments site_city=auto +City "CO, Commerce City" ResStockArguments site_city=auto +City "CO, Denver" ResStockArguments site_city=auto +City "CO, Englewood" ResStockArguments site_city=auto +City "CO, Fort Collins" ResStockArguments site_city=auto +City "CO, Grand Junction" ResStockArguments site_city=auto +City "CO, Greeley" ResStockArguments site_city=auto +City "CO, Highlands Ranch" ResStockArguments site_city=auto +City "CO, Lakewood" ResStockArguments site_city=auto +City "CO, Littleton" ResStockArguments site_city=auto +City "CO, Longmont" ResStockArguments site_city=auto +City "CO, Loveland" ResStockArguments site_city=auto +City "CO, Parker" ResStockArguments site_city=auto +City "CO, Pueblo" ResStockArguments site_city=auto +City "CO, Thornton" ResStockArguments site_city=auto +City "CO, Westminster" ResStockArguments site_city=auto +City "CT, Bridgeport" ResStockArguments site_city=auto +City "CT, Bristol" ResStockArguments site_city=auto +City "CT, Danbury" ResStockArguments site_city=auto +City "CT, East Hartford" ResStockArguments site_city=auto +City "CT, Hartford" ResStockArguments site_city=auto +City "CT, Meriden" ResStockArguments site_city=auto +City "CT, Middletown" ResStockArguments site_city=auto +City "CT, Milford City Balance" ResStockArguments site_city=auto +City "CT, New Britain" ResStockArguments site_city=auto +City "CT, New Haven" ResStockArguments site_city=auto +City "CT, Norwalk" ResStockArguments site_city=auto +City "CT, Norwich" ResStockArguments site_city=auto +City "CT, Shelton" ResStockArguments site_city=auto +City "CT, Stamford" ResStockArguments site_city=auto +City "CT, Stratford" ResStockArguments site_city=auto +City "CT, Torrington" ResStockArguments site_city=auto +City "CT, Waterbury" ResStockArguments site_city=auto +City "CT, West Hartford" ResStockArguments site_city=auto +City "CT, West Haven" ResStockArguments site_city=auto +City "DC, Washington" ResStockArguments site_city=auto +City "DE, Dover" ResStockArguments site_city=auto +City "DE, Wilmington" ResStockArguments site_city=auto +City "FL, Alafaya" ResStockArguments site_city=auto +City "FL, Altamonte Springs" ResStockArguments site_city=auto +City "FL, Apopka" ResStockArguments site_city=auto +City "FL, Aventura" ResStockArguments site_city=auto +City "FL, Boca Raton" ResStockArguments site_city=auto +City "FL, Bonita Springs" ResStockArguments site_city=auto +City "FL, Boynton Beach" ResStockArguments site_city=auto +City "FL, Bradenton" ResStockArguments site_city=auto +City "FL, Brandon" ResStockArguments site_city=auto +City "FL, Cape Coral" ResStockArguments site_city=auto +City "FL, Carrollwood" ResStockArguments site_city=auto +City "FL, Clearwater" ResStockArguments site_city=auto +City "FL, Coconut Creek" ResStockArguments site_city=auto +City "FL, Coral Gables" ResStockArguments site_city=auto +City "FL, Coral Springs" ResStockArguments site_city=auto +City "FL, Country Club" ResStockArguments site_city=auto +City "FL, Dania Beach" ResStockArguments site_city=auto +City "FL, Davie" ResStockArguments site_city=auto +City "FL, Daytona Beach" ResStockArguments site_city=auto +City "FL, Deerfield Beach" ResStockArguments site_city=auto +City "FL, Delray Beach" ResStockArguments site_city=auto +City "FL, Deltona" ResStockArguments site_city=auto +City "FL, Doral" ResStockArguments site_city=auto +City "FL, Dunedin" ResStockArguments site_city=auto +City "FL, East Lake" ResStockArguments site_city=auto +City "FL, Estero" ResStockArguments site_city=auto +City "FL, Fort Lauderdale" ResStockArguments site_city=auto +City "FL, Fort Myers" ResStockArguments site_city=auto +City "FL, Fort Pierce" ResStockArguments site_city=auto +City "FL, Fountainebleau" ResStockArguments site_city=auto +City "FL, Four Corners" ResStockArguments site_city=auto +City "FL, Gainesville" ResStockArguments site_city=auto +City "FL, Greenacres" ResStockArguments site_city=auto +City "FL, Hallandale Beach" ResStockArguments site_city=auto +City "FL, Hialeah" ResStockArguments site_city=auto +City "FL, Hollywood" ResStockArguments site_city=auto +City "FL, Homestead" ResStockArguments site_city=auto +City "FL, Jacksonville" ResStockArguments site_city=auto +City "FL, Jupiter" ResStockArguments site_city=auto +City "FL, Kendale Lakes" ResStockArguments site_city=auto +City "FL, Kendall" ResStockArguments site_city=auto +City "FL, Kissimmee" ResStockArguments site_city=auto +City "FL, Lake Worth" ResStockArguments site_city=auto +City "FL, Lakeland" ResStockArguments site_city=auto +City "FL, Largo" ResStockArguments site_city=auto +City "FL, Lauderhill" ResStockArguments site_city=auto +City "FL, Lehigh Acres" ResStockArguments site_city=auto +City "FL, Marco Island" ResStockArguments site_city=auto +City "FL, Margate" ResStockArguments site_city=auto +City "FL, Melbourne" ResStockArguments site_city=auto +City "FL, Merritt Island" ResStockArguments site_city=auto +City "FL, Miami Beach" ResStockArguments site_city=auto +City "FL, Miami Gardens" ResStockArguments site_city=auto +City "FL, Miami" ResStockArguments site_city=auto +City "FL, Miramar" ResStockArguments site_city=auto +City "FL, Naples" ResStockArguments site_city=auto +City "FL, New Smyrna Beach" ResStockArguments site_city=auto +City "FL, North Fort Myers" ResStockArguments site_city=auto +City "FL, North Miami Beach" ResStockArguments site_city=auto +City "FL, North Miami" ResStockArguments site_city=auto +City "FL, North Port" ResStockArguments site_city=auto +City "FL, Oakland Park" ResStockArguments site_city=auto +City "FL, Ocala" ResStockArguments site_city=auto +City "FL, Orlando" ResStockArguments site_city=auto +City "FL, Ormond Beach" ResStockArguments site_city=auto +City "FL, Palm Bay" ResStockArguments site_city=auto +City "FL, Palm Beach Gardens" ResStockArguments site_city=auto +City "FL, Palm Coast" ResStockArguments site_city=auto +City "FL, Palm Harbor" ResStockArguments site_city=auto +City "FL, Panama City Beach" ResStockArguments site_city=auto +City "FL, Panama City" ResStockArguments site_city=auto +City "FL, Pembroke Pines" ResStockArguments site_city=auto +City "FL, Pensacola" ResStockArguments site_city=auto +City "FL, Pine Hills" ResStockArguments site_city=auto +City "FL, Pinellas Park" ResStockArguments site_city=auto +City "FL, Plantation" ResStockArguments site_city=auto +City "FL, Poinciana" ResStockArguments site_city=auto +City "FL, Pompano Beach" ResStockArguments site_city=auto +City "FL, Port Charlotte" ResStockArguments site_city=auto +City "FL, Port Orange" ResStockArguments site_city=auto +City "FL, Port St Lucie" ResStockArguments site_city=auto +City "FL, Riverview" ResStockArguments site_city=auto +City "FL, Riviera Beach" ResStockArguments site_city=auto +City "FL, Sanford" ResStockArguments site_city=auto +City "FL, Sarasota" ResStockArguments site_city=auto +City "FL, Spring Hill" ResStockArguments site_city=auto +City "FL, St Cloud" ResStockArguments site_city=auto +City "FL, St Petersburg" ResStockArguments site_city=auto +City "FL, Sun City Center" ResStockArguments site_city=auto +City "FL, Sunny Isles Beach" ResStockArguments site_city=auto +City "FL, Sunrise" ResStockArguments site_city=auto +City "FL, Tallahassee" ResStockArguments site_city=auto +City "FL, Tamarac" ResStockArguments site_city=auto +City "FL, Tamiami" ResStockArguments site_city=auto +City "FL, Tampa" ResStockArguments site_city=auto +City "FL, The Hammocks" ResStockArguments site_city=auto +City "FL, The Villages" ResStockArguments site_city=auto +City "FL, Titusville" ResStockArguments site_city=auto +City "FL, Town N Country" ResStockArguments site_city=auto +City "FL, University" ResStockArguments site_city=auto +City "FL, Venice" ResStockArguments site_city=auto +City "FL, Wellington" ResStockArguments site_city=auto +City "FL, Wesley Chapel" ResStockArguments site_city=auto +City "FL, West Palm Beach" ResStockArguments site_city=auto +City "FL, Weston" ResStockArguments site_city=auto +City "FL, Winter Haven" ResStockArguments site_city=auto +City "GA, Albany" ResStockArguments site_city=auto +City "GA, Alpharetta" ResStockArguments site_city=auto +City "GA, Athens-Clarke County Unified Government Balance" ResStockArguments site_city=auto +City "GA, Atlanta" ResStockArguments site_city=auto +City "GA, Augusta-Richmond County Consolidated Government Balance" ResStockArguments site_city=auto +City "GA, Columbus" ResStockArguments site_city=auto +City "GA, Dunwoody" ResStockArguments site_city=auto +City "GA, East Point" ResStockArguments site_city=auto +City "GA, Hinesville" ResStockArguments site_city=auto +City "GA, Johns Creek" ResStockArguments site_city=auto +City "GA, Mableton" ResStockArguments site_city=auto +City "GA, Macon" ResStockArguments site_city=auto +City "GA, Marietta" ResStockArguments site_city=auto +City "GA, Newnan" ResStockArguments site_city=auto +City "GA, North Atlanta" ResStockArguments site_city=auto +City "GA, Rome" ResStockArguments site_city=auto +City "GA, Roswell" ResStockArguments site_city=auto +City "GA, Sandy Springs" ResStockArguments site_city=auto +City "GA, Savannah" ResStockArguments site_city=auto +City "GA, Smyrna" ResStockArguments site_city=auto +City "GA, Valdosta" ResStockArguments site_city=auto +City "GA, Warner Robins" ResStockArguments site_city=auto +City "HI, East Honolulu" ResStockArguments site_city=auto +City "HI, Hilo" ResStockArguments site_city=auto +City "HI, Kailua" ResStockArguments site_city=auto +City "HI, Urban Honolulu" ResStockArguments site_city=auto +City "IA, Ames" ResStockArguments site_city=auto +City "IA, Ankeny" ResStockArguments site_city=auto +City "IA, Cedar Falls" ResStockArguments site_city=auto +City "IA, Cedar Rapids" ResStockArguments site_city=auto +City "IA, Council Bluffs" ResStockArguments site_city=auto +City "IA, Davenport" ResStockArguments site_city=auto +City "IA, Des Moines" ResStockArguments site_city=auto +City "IA, Dubuque" ResStockArguments site_city=auto +City "IA, Iowa City" ResStockArguments site_city=auto +City "IA, Marion" ResStockArguments site_city=auto +City "IA, Sioux City" ResStockArguments site_city=auto +City "IA, Urbandale" ResStockArguments site_city=auto +City "IA, Waterloo" ResStockArguments site_city=auto +City "IA, West Des Moines" ResStockArguments site_city=auto +City "ID, Boise City" ResStockArguments site_city=auto +City "ID, Caldwell" ResStockArguments site_city=auto +City "ID, Coeur Dalene" ResStockArguments site_city=auto +City "ID, Idaho Falls" ResStockArguments site_city=auto +City "ID, Meridian" ResStockArguments site_city=auto +City "ID, Nampa" ResStockArguments site_city=auto +City "ID, Pocatello" ResStockArguments site_city=auto +City "ID, Twin Falls" ResStockArguments site_city=auto +City "IL, Arlington Heights" ResStockArguments site_city=auto +City "IL, Aurora" ResStockArguments site_city=auto +City "IL, Belleville" ResStockArguments site_city=auto +City "IL, Berwyn" ResStockArguments site_city=auto +City "IL, Bloomington" ResStockArguments site_city=auto +City "IL, Bolingbrook" ResStockArguments site_city=auto +City "IL, Buffalo Grove" ResStockArguments site_city=auto +City "IL, Calumet City" ResStockArguments site_city=auto +City "IL, Carol Stream" ResStockArguments site_city=auto +City "IL, Champaign" ResStockArguments site_city=auto +City "IL, Chicago" ResStockArguments site_city=auto +City "IL, Cicero" ResStockArguments site_city=auto +City "IL, Crystal Lake" ResStockArguments site_city=auto +City "IL, Decatur" ResStockArguments site_city=auto +City "IL, Dekalb" ResStockArguments site_city=auto +City "IL, Des Plaines" ResStockArguments site_city=auto +City "IL, Downers Grove" ResStockArguments site_city=auto +City "IL, Elgin" ResStockArguments site_city=auto +City "IL, Elmhurst" ResStockArguments site_city=auto +City "IL, Evanston" ResStockArguments site_city=auto +City "IL, Glenview" ResStockArguments site_city=auto +City "IL, Hoffman Estates" ResStockArguments site_city=auto +City "IL, Joliet" ResStockArguments site_city=auto +City "IL, Lombard" ResStockArguments site_city=auto +City "IL, Moline" ResStockArguments site_city=auto +City "IL, Mount Prospect" ResStockArguments site_city=auto +City "IL, Naperville" ResStockArguments site_city=auto +City "IL, Normal" ResStockArguments site_city=auto +City "IL, Oak Lawn" ResStockArguments site_city=auto +City "IL, Oak Park" ResStockArguments site_city=auto +City "IL, Orland Park" ResStockArguments site_city=auto +City "IL, Palatine" ResStockArguments site_city=auto +City "IL, Peoria" ResStockArguments site_city=auto +City "IL, Quincy" ResStockArguments site_city=auto +City "IL, Rock Island" ResStockArguments site_city=auto +City "IL, Rockford" ResStockArguments site_city=auto +City "IL, Schaumburg" ResStockArguments site_city=auto +City "IL, Skokie" ResStockArguments site_city=auto +City "IL, Springfield" ResStockArguments site_city=auto +City "IL, Tinley Park" ResStockArguments site_city=auto +City "IL, Urbana" ResStockArguments site_city=auto +City "IL, Waukegan" ResStockArguments site_city=auto +City "IL, Wheaton" ResStockArguments site_city=auto +City "IL, Wheeling" ResStockArguments site_city=auto +City "IN, Anderson" ResStockArguments site_city=auto +City "IN, Bloomington" ResStockArguments site_city=auto +City "IN, Carmel" ResStockArguments site_city=auto +City "IN, Columbus" ResStockArguments site_city=auto +City "IN, Elkhart" ResStockArguments site_city=auto +City "IN, Evansville" ResStockArguments site_city=auto +City "IN, Fishers" ResStockArguments site_city=auto +City "IN, Fort Wayne" ResStockArguments site_city=auto +City "IN, Gary" ResStockArguments site_city=auto +City "IN, Greenwood" ResStockArguments site_city=auto +City "IN, Hammond" ResStockArguments site_city=auto +City "IN, Indianapolis City Balance" ResStockArguments site_city=auto +City "IN, Jeffersonville" ResStockArguments site_city=auto +City "IN, Kokomo" ResStockArguments site_city=auto +City "IN, Lafayette" ResStockArguments site_city=auto +City "IN, Lawrence" ResStockArguments site_city=auto +City "IN, Mishawaka" ResStockArguments site_city=auto +City "IN, Muncie" ResStockArguments site_city=auto +City "IN, New Albany" ResStockArguments site_city=auto +City "IN, Noblesville" ResStockArguments site_city=auto +City "IN, Portage" ResStockArguments site_city=auto +City "IN, Richmond" ResStockArguments site_city=auto +City "IN, South Bend" ResStockArguments site_city=auto +City "IN, Terre Haute" ResStockArguments site_city=auto +City "KS, Hutchinson" ResStockArguments site_city=auto +City "KS, Kansas City" ResStockArguments site_city=auto +City "KS, Lawrence" ResStockArguments site_city=auto +City "KS, Lenexa" ResStockArguments site_city=auto +City "KS, Manhattan" ResStockArguments site_city=auto +City "KS, Olathe" ResStockArguments site_city=auto +City "KS, Overland Park" ResStockArguments site_city=auto +City "KS, Salina" ResStockArguments site_city=auto +City "KS, Shawnee" ResStockArguments site_city=auto +City "KS, Topeka" ResStockArguments site_city=auto +City "KS, Wichita" ResStockArguments site_city=auto +City "KY, Bowling Green" ResStockArguments site_city=auto +City "KY, Covington" ResStockArguments site_city=auto +City "KY, Lexington-Fayette" ResStockArguments site_city=auto +City "KY, Louisville Jefferson County Metro Government Balance" ResStockArguments site_city=auto +City "KY, Owensboro" ResStockArguments site_city=auto +City "LA, Alexandria" ResStockArguments site_city=auto +City "LA, Baton Rouge" ResStockArguments site_city=auto +City "LA, Bossier City" ResStockArguments site_city=auto +City "LA, Kenner" ResStockArguments site_city=auto +City "LA, Lafayette" ResStockArguments site_city=auto +City "LA, Lake Charles" ResStockArguments site_city=auto +City "LA, Metairie" ResStockArguments site_city=auto +City "LA, Monroe" ResStockArguments site_city=auto +City "LA, New Orleans" ResStockArguments site_city=auto +City "LA, Shreveport" ResStockArguments site_city=auto +City "MA, Arlington" ResStockArguments site_city=auto +City "MA, Attleboro" ResStockArguments site_city=auto +City "MA, Barnstable Town" ResStockArguments site_city=auto +City "MA, Beverly" ResStockArguments site_city=auto +City "MA, Boston" ResStockArguments site_city=auto +City "MA, Brockton" ResStockArguments site_city=auto +City "MA, Brookline" ResStockArguments site_city=auto +City "MA, Cambridge" ResStockArguments site_city=auto +City "MA, Chicopee" ResStockArguments site_city=auto +City "MA, Everett" ResStockArguments site_city=auto +City "MA, Fall River" ResStockArguments site_city=auto +City "MA, Fitchburg" ResStockArguments site_city=auto +City "MA, Framingham" ResStockArguments site_city=auto +City "MA, Haverhill" ResStockArguments site_city=auto +City "MA, Holyoke" ResStockArguments site_city=auto +City "MA, Lawrence" ResStockArguments site_city=auto +City "MA, Leominster" ResStockArguments site_city=auto +City "MA, Lowell" ResStockArguments site_city=auto +City "MA, Lynn" ResStockArguments site_city=auto +City "MA, Malden" ResStockArguments site_city=auto +City "MA, Marlborough" ResStockArguments site_city=auto +City "MA, Medford" ResStockArguments site_city=auto +City "MA, Methuen Town" ResStockArguments site_city=auto +City "MA, New Bedford" ResStockArguments site_city=auto +City "MA, Newton" ResStockArguments site_city=auto +City "MA, Peabody" ResStockArguments site_city=auto +City "MA, Pittsfield" ResStockArguments site_city=auto +City "MA, Quincy" ResStockArguments site_city=auto +City "MA, Revere" ResStockArguments site_city=auto +City "MA, Salem" ResStockArguments site_city=auto +City "MA, Somerville" ResStockArguments site_city=auto +City "MA, Springfield" ResStockArguments site_city=auto +City "MA, Taunton" ResStockArguments site_city=auto +City "MA, Waltham" ResStockArguments site_city=auto +City "MA, Watertown Town" ResStockArguments site_city=auto +City "MA, Westfield" ResStockArguments site_city=auto +City "MA, Weymouth Town" ResStockArguments site_city=auto +City "MA, Woburn" ResStockArguments site_city=auto +City "MA, Worcester" ResStockArguments site_city=auto +City "MD, Annapolis" ResStockArguments site_city=auto +City "MD, Aspen Hill" ResStockArguments site_city=auto +City "MD, Baltimore" ResStockArguments site_city=auto +City "MD, Bel Air South" ResStockArguments site_city=auto +City "MD, Bethesda" ResStockArguments site_city=auto +City "MD, Bowie" ResStockArguments site_city=auto +City "MD, Catonsville" ResStockArguments site_city=auto +City "MD, Columbia" ResStockArguments site_city=auto +City "MD, Dundalk" ResStockArguments site_city=auto +City "MD, Ellicott City" ResStockArguments site_city=auto +City "MD, Essex" ResStockArguments site_city=auto +City "MD, Frederick" ResStockArguments site_city=auto +City "MD, Gaithersburg" ResStockArguments site_city=auto +City "MD, Germantown" ResStockArguments site_city=auto +City "MD, Glen Burnie" ResStockArguments site_city=auto +City "MD, Hagerstown" ResStockArguments site_city=auto +City "MD, North Bethesda" ResStockArguments site_city=auto +City "MD, Ocean City" ResStockArguments site_city=auto +City "MD, Odenton" ResStockArguments site_city=auto +City "MD, Potomac" ResStockArguments site_city=auto +City "MD, Rockville" ResStockArguments site_city=auto +City "MD, Severn" ResStockArguments site_city=auto +City "MD, Silver Spring" ResStockArguments site_city=auto +City "MD, Towson" ResStockArguments site_city=auto +City "MD, Waldorf" ResStockArguments site_city=auto +City "MD, Wheaton" ResStockArguments site_city=auto +City "MD, Woodlawn" ResStockArguments site_city=auto +City "ME, Bangor" ResStockArguments site_city=auto +City "ME, Lewiston" ResStockArguments site_city=auto +City "ME, Portland" ResStockArguments site_city=auto +City "MI, Ann Arbor" ResStockArguments site_city=auto +City "MI, Battle Creek" ResStockArguments site_city=auto +City "MI, Bay City" ResStockArguments site_city=auto +City "MI, Dearborn Heights" ResStockArguments site_city=auto +City "MI, Dearborn" ResStockArguments site_city=auto +City "MI, Detroit" ResStockArguments site_city=auto +City "MI, Farmington Hills" ResStockArguments site_city=auto +City "MI, Flint" ResStockArguments site_city=auto +City "MI, Grand Rapids" ResStockArguments site_city=auto +City "MI, Jackson" ResStockArguments site_city=auto +City "MI, Kalamazoo" ResStockArguments site_city=auto +City "MI, Kentwood" ResStockArguments site_city=auto +City "MI, Lansing" ResStockArguments site_city=auto +City "MI, Lincoln Park" ResStockArguments site_city=auto +City "MI, Livonia" ResStockArguments site_city=auto +City "MI, Midland" ResStockArguments site_city=auto +City "MI, Muskegon" ResStockArguments site_city=auto +City "MI, Novi" ResStockArguments site_city=auto +City "MI, Pontiac" ResStockArguments site_city=auto +City "MI, Portage" ResStockArguments site_city=auto +City "MI, Rochester Hills" ResStockArguments site_city=auto +City "MI, Roseville" ResStockArguments site_city=auto +City "MI, Royal Oak" ResStockArguments site_city=auto +City "MI, Saginaw" ResStockArguments site_city=auto +City "MI, Southfield" ResStockArguments site_city=auto +City "MI, St Clair Shores" ResStockArguments site_city=auto +City "MI, Sterling Heights" ResStockArguments site_city=auto +City "MI, Taylor" ResStockArguments site_city=auto +City "MI, Troy" ResStockArguments site_city=auto +City "MI, Warren" ResStockArguments site_city=auto +City "MI, Westland" ResStockArguments site_city=auto +City "MI, Wyoming" ResStockArguments site_city=auto +City "MN, Apple Valley" ResStockArguments site_city=auto +City "MN, Blaine" ResStockArguments site_city=auto +City "MN, Bloomington" ResStockArguments site_city=auto +City "MN, Brooklyn Park" ResStockArguments site_city=auto +City "MN, Burnsville" ResStockArguments site_city=auto +City "MN, Coon Rapids" ResStockArguments site_city=auto +City "MN, Duluth" ResStockArguments site_city=auto +City "MN, Eagan" ResStockArguments site_city=auto +City "MN, Eden Prairie" ResStockArguments site_city=auto +City "MN, Edina" ResStockArguments site_city=auto +City "MN, Lakeville" ResStockArguments site_city=auto +City "MN, Mankato" ResStockArguments site_city=auto +City "MN, Maple Grove" ResStockArguments site_city=auto +City "MN, Maplewood" ResStockArguments site_city=auto +City "MN, Minneapolis" ResStockArguments site_city=auto +City "MN, Minnetonka" ResStockArguments site_city=auto +City "MN, Moorhead" ResStockArguments site_city=auto +City "MN, Plymouth" ResStockArguments site_city=auto +City "MN, Richfield" ResStockArguments site_city=auto +City "MN, Rochester" ResStockArguments site_city=auto +City "MN, Roseville" ResStockArguments site_city=auto +City "MN, St Cloud" ResStockArguments site_city=auto +City "MN, St Louis Park" ResStockArguments site_city=auto +City "MN, St Paul" ResStockArguments site_city=auto +City "MN, Woodbury" ResStockArguments site_city=auto +City "MO, Blue Springs" ResStockArguments site_city=auto +City "MO, Cape Girardeau" ResStockArguments site_city=auto +City "MO, Chesterfield" ResStockArguments site_city=auto +City "MO, Columbia" ResStockArguments site_city=auto +City "MO, Florissant" ResStockArguments site_city=auto +City "MO, Independence" ResStockArguments site_city=auto +City "MO, Jefferson City" ResStockArguments site_city=auto +City "MO, Joplin" ResStockArguments site_city=auto +City "MO, Kansas City" ResStockArguments site_city=auto +City "MO, Lees Summit" ResStockArguments site_city=auto +City "MO, Ofallon" ResStockArguments site_city=auto +City "MO, Springfield" ResStockArguments site_city=auto +City "MO, St Charles" ResStockArguments site_city=auto +City "MO, St Joseph" ResStockArguments site_city=auto +City "MO, St Louis" ResStockArguments site_city=auto +City "MO, St Peters" ResStockArguments site_city=auto +City "MO, University City" ResStockArguments site_city=auto +City "MS, Biloxi" ResStockArguments site_city=auto +City "MS, Gulfport" ResStockArguments site_city=auto +City "MS, Hattiesburg" ResStockArguments site_city=auto +City "MS, Jackson" ResStockArguments site_city=auto +City "MS, Meridian" ResStockArguments site_city=auto +City "MS, Southaven" ResStockArguments site_city=auto +City "MS, Tupelo" ResStockArguments site_city=auto +City "MT, Billings" ResStockArguments site_city=auto +City "MT, Bozeman" ResStockArguments site_city=auto +City "MT, Butte-Silver Bow Balance" ResStockArguments site_city=auto +City "MT, Great Falls" ResStockArguments site_city=auto +City "MT, Missoula" ResStockArguments site_city=auto +City "NC, Asheville" ResStockArguments site_city=auto +City "NC, Burlington" ResStockArguments site_city=auto +City "NC, Cary" ResStockArguments site_city=auto +City "NC, Chapel Hill" ResStockArguments site_city=auto +City "NC, Charlotte" ResStockArguments site_city=auto +City "NC, Concord" ResStockArguments site_city=auto +City "NC, Durham" ResStockArguments site_city=auto +City "NC, Fayetteville" ResStockArguments site_city=auto +City "NC, Gastonia" ResStockArguments site_city=auto +City "NC, Goldsboro" ResStockArguments site_city=auto +City "NC, Greensboro" ResStockArguments site_city=auto +City "NC, Greenville" ResStockArguments site_city=auto +City "NC, Hickory" ResStockArguments site_city=auto +City "NC, High Point" ResStockArguments site_city=auto +City "NC, Huntersville" ResStockArguments site_city=auto +City "NC, Jacksonville" ResStockArguments site_city=auto +City "NC, Kannapolis" ResStockArguments site_city=auto +City "NC, Raleigh" ResStockArguments site_city=auto +City "NC, Rocky Mount" ResStockArguments site_city=auto +City "NC, Wilmington" ResStockArguments site_city=auto +City "NC, Wilson" ResStockArguments site_city=auto +City "NC, Winston-Salem" ResStockArguments site_city=auto +City "ND, Bismarck" ResStockArguments site_city=auto +City "ND, Fargo" ResStockArguments site_city=auto +City "ND, Grand Forks" ResStockArguments site_city=auto +City "ND, Minot" ResStockArguments site_city=auto +City "NE, Bellevue" ResStockArguments site_city=auto +City "NE, Grand Island" ResStockArguments site_city=auto +City "NE, Lincoln" ResStockArguments site_city=auto +City "NE, Omaha" ResStockArguments site_city=auto +City "NH, Concord" ResStockArguments site_city=auto +City "NH, Manchester" ResStockArguments site_city=auto +City "NH, Nashua" ResStockArguments site_city=auto +City "NJ, Atlantic City" ResStockArguments site_city=auto +City "NJ, Bayonne" ResStockArguments site_city=auto +City "NJ, Camden" ResStockArguments site_city=auto +City "NJ, Clifton" ResStockArguments site_city=auto +City "NJ, East Orange" ResStockArguments site_city=auto +City "NJ, Elizabeth" ResStockArguments site_city=auto +City "NJ, Fort Lee" ResStockArguments site_city=auto +City "NJ, Hackensack" ResStockArguments site_city=auto +City "NJ, Hoboken" ResStockArguments site_city=auto +City "NJ, Jersey City" ResStockArguments site_city=auto +City "NJ, Linden" ResStockArguments site_city=auto +City "NJ, New Brunswick" ResStockArguments site_city=auto +City "NJ, Newark" ResStockArguments site_city=auto +City "NJ, Ocean City" ResStockArguments site_city=auto +City "NJ, Passaic" ResStockArguments site_city=auto +City "NJ, Paterson" ResStockArguments site_city=auto +City "NJ, Perth Amboy" ResStockArguments site_city=auto +City "NJ, Plainfield" ResStockArguments site_city=auto +City "NJ, Sayreville" ResStockArguments site_city=auto +City "NJ, Toms River" ResStockArguments site_city=auto +City "NJ, Trenton" ResStockArguments site_city=auto +City "NJ, Union City" ResStockArguments site_city=auto +City "NJ, Vineland" ResStockArguments site_city=auto +City "NJ, West New York" ResStockArguments site_city=auto +City "NM, Albuquerque" ResStockArguments site_city=auto +City "NM, Clovis" ResStockArguments site_city=auto +City "NM, Farmington" ResStockArguments site_city=auto +City "NM, Las Cruces" ResStockArguments site_city=auto +City "NM, Rio Rancho" ResStockArguments site_city=auto +City "NM, Roswell" ResStockArguments site_city=auto +City "NM, Santa Fe" ResStockArguments site_city=auto +City "NM, South Valley" ResStockArguments site_city=auto +City "NV, Carson City" ResStockArguments site_city=auto +City "NV, Enterprise" ResStockArguments site_city=auto +City "NV, Henderson" ResStockArguments site_city=auto +City "NV, Las Vegas" ResStockArguments site_city=auto +City "NV, North Las Vegas" ResStockArguments site_city=auto +City "NV, Pahrump" ResStockArguments site_city=auto +City "NV, Paradise" ResStockArguments site_city=auto +City "NV, Reno" ResStockArguments site_city=auto +City "NV, Sparks" ResStockArguments site_city=auto +City "NV, Spring Valley" ResStockArguments site_city=auto +City "NV, Sunrise Manor" ResStockArguments site_city=auto +City "NV, Whitney" ResStockArguments site_city=auto +City "NY, Albany" ResStockArguments site_city=auto +City "NY, Binghamton" ResStockArguments site_city=auto +City "NY, Brighton" ResStockArguments site_city=auto +City "NY, Buffalo" ResStockArguments site_city=auto +City "NY, Cheektowaga" ResStockArguments site_city=auto +City "NY, Coram" ResStockArguments site_city=auto +City "NY, Hempstead" ResStockArguments site_city=auto +City "NY, Irondequoit" ResStockArguments site_city=auto +City "NY, Levittown" ResStockArguments site_city=auto +City "NY, Long Beach" ResStockArguments site_city=auto +City "NY, Mount Vernon" ResStockArguments site_city=auto +City "NY, New Rochelle" ResStockArguments site_city=auto +City "NY, New York" ResStockArguments site_city=auto +City "NY, Niagara Falls" ResStockArguments site_city=auto +City "NY, Rochester" ResStockArguments site_city=auto +City "NY, Rome" ResStockArguments site_city=auto +City "NY, Schenectady" ResStockArguments site_city=auto +City "NY, Syracuse" ResStockArguments site_city=auto +City "NY, Tonawanda" ResStockArguments site_city=auto +City "NY, Troy" ResStockArguments site_city=auto +City "NY, Utica" ResStockArguments site_city=auto +City "NY, West Seneca" ResStockArguments site_city=auto +City "NY, White Plains" ResStockArguments site_city=auto +City "NY, Yonkers" ResStockArguments site_city=auto +City "OH, Akron" ResStockArguments site_city=auto +City "OH, Beavercreek" ResStockArguments site_city=auto +City "OH, Boardman" ResStockArguments site_city=auto +City "OH, Canton" ResStockArguments site_city=auto +City "OH, Cincinnati" ResStockArguments site_city=auto +City "OH, Cleveland Heights" ResStockArguments site_city=auto +City "OH, Cleveland" ResStockArguments site_city=auto +City "OH, Columbus" ResStockArguments site_city=auto +City "OH, Cuyahoga Falls" ResStockArguments site_city=auto +City "OH, Dayton" ResStockArguments site_city=auto +City "OH, Delaware" ResStockArguments site_city=auto +City "OH, Dublin" ResStockArguments site_city=auto +City "OH, Elyria" ResStockArguments site_city=auto +City "OH, Euclid" ResStockArguments site_city=auto +City "OH, Fairborn" ResStockArguments site_city=auto +City "OH, Fairfield" ResStockArguments site_city=auto +City "OH, Findlay" ResStockArguments site_city=auto +City "OH, Grove City" ResStockArguments site_city=auto +City "OH, Hamilton" ResStockArguments site_city=auto +City "OH, Huber Heights" ResStockArguments site_city=auto +City "OH, Kettering" ResStockArguments site_city=auto +City "OH, Lakewood" ResStockArguments site_city=auto +City "OH, Lancaster" ResStockArguments site_city=auto +City "OH, Lima" ResStockArguments site_city=auto +City "OH, Lorain" ResStockArguments site_city=auto +City "OH, Mansfield" ResStockArguments site_city=auto +City "OH, Marion" ResStockArguments site_city=auto +City "OH, Mentor" ResStockArguments site_city=auto +City "OH, Middletown" ResStockArguments site_city=auto +City "OH, Newark" ResStockArguments site_city=auto +City "OH, Parma" ResStockArguments site_city=auto +City "OH, Springfield" ResStockArguments site_city=auto +City "OH, Stow" ResStockArguments site_city=auto +City "OH, Strongsville" ResStockArguments site_city=auto +City "OH, Toledo" ResStockArguments site_city=auto +City "OH, Warren" ResStockArguments site_city=auto +City "OH, Youngstown" ResStockArguments site_city=auto +City "OK, Bartlesville" ResStockArguments site_city=auto +City "OK, Broken Arrow" ResStockArguments site_city=auto +City "OK, Edmond" ResStockArguments site_city=auto +City "OK, Enid" ResStockArguments site_city=auto +City "OK, Lawton" ResStockArguments site_city=auto +City "OK, Midwest City" ResStockArguments site_city=auto +City "OK, Moore" ResStockArguments site_city=auto +City "OK, Muskogee" ResStockArguments site_city=auto +City "OK, Norman" ResStockArguments site_city=auto +City "OK, Oklahoma City" ResStockArguments site_city=auto +City "OK, Stillwater" ResStockArguments site_city=auto +City "OK, Tulsa" ResStockArguments site_city=auto +City "OR, Albany" ResStockArguments site_city=auto +City "OR, Aloha" ResStockArguments site_city=auto +City "OR, Beaverton" ResStockArguments site_city=auto +City "OR, Bend" ResStockArguments site_city=auto +City "OR, Corvallis" ResStockArguments site_city=auto +City "OR, Eugene" ResStockArguments site_city=auto +City "OR, Grants Pass" ResStockArguments site_city=auto +City "OR, Gresham" ResStockArguments site_city=auto +City "OR, Hillsboro" ResStockArguments site_city=auto +City "OR, Lake Oswego" ResStockArguments site_city=auto +City "OR, Medford" ResStockArguments site_city=auto +City "OR, Portland" ResStockArguments site_city=auto +City "OR, Salem" ResStockArguments site_city=auto +City "OR, Springfield" ResStockArguments site_city=auto +City "OR, Tigard" ResStockArguments site_city=auto +City "PA, Allentown" ResStockArguments site_city=auto +City "PA, Altoona" ResStockArguments site_city=auto +City "PA, Bethlehem" ResStockArguments site_city=auto +City "PA, Erie" ResStockArguments site_city=auto +City "PA, Harrisburg" ResStockArguments site_city=auto +City "PA, Lancaster" ResStockArguments site_city=auto +City "PA, Levittown" ResStockArguments site_city=auto +City "PA, Philadelphia" ResStockArguments site_city=auto +City "PA, Pittsburgh" ResStockArguments site_city=auto +City "PA, Reading" ResStockArguments site_city=auto +City "PA, Scranton" ResStockArguments site_city=auto +City "PA, Wilkes-Barre" ResStockArguments site_city=auto +City "PA, York" ResStockArguments site_city=auto +City "RI, Cranston" ResStockArguments site_city=auto +City "RI, East Providence" ResStockArguments site_city=auto +City "RI, Pawtucket" ResStockArguments site_city=auto +City "RI, Providence" ResStockArguments site_city=auto +City "RI, Warwick" ResStockArguments site_city=auto +City "RI, Woonsocket" ResStockArguments site_city=auto +City "SC, Charleston" ResStockArguments site_city=auto +City "SC, Columbia" ResStockArguments site_city=auto +City "SC, Florence" ResStockArguments site_city=auto +City "SC, Goose Creek" ResStockArguments site_city=auto +City "SC, Greenville" ResStockArguments site_city=auto +City "SC, Hilton Head Island" ResStockArguments site_city=auto +City "SC, Mount Pleasant" ResStockArguments site_city=auto +City "SC, Myrtle Beach" ResStockArguments site_city=auto +City "SC, North Charleston" ResStockArguments site_city=auto +City "SC, North Myrtle Beach" ResStockArguments site_city=auto +City "SC, Rock Hill" ResStockArguments site_city=auto +City "SC, Spartanburg" ResStockArguments site_city=auto +City "SC, Summerville" ResStockArguments site_city=auto +City "SC, Sumter" ResStockArguments site_city=auto +City "SD, Rapid City" ResStockArguments site_city=auto +City "SD, Sioux Falls" ResStockArguments site_city=auto +City "TN, Bartlett" ResStockArguments site_city=auto +City "TN, Chattanooga" ResStockArguments site_city=auto +City "TN, Clarksville" ResStockArguments site_city=auto +City "TN, Cleveland" ResStockArguments site_city=auto +City "TN, Collierville" ResStockArguments site_city=auto +City "TN, Columbia" ResStockArguments site_city=auto +City "TN, Franklin" ResStockArguments site_city=auto +City "TN, Germantown" ResStockArguments site_city=auto +City "TN, Hendersonville" ResStockArguments site_city=auto +City "TN, Jackson" ResStockArguments site_city=auto +City "TN, Johnson City" ResStockArguments site_city=auto +City "TN, Kingsport" ResStockArguments site_city=auto +City "TN, Knoxville" ResStockArguments site_city=auto +City "TN, Memphis" ResStockArguments site_city=auto +City "TN, Murfreesboro" ResStockArguments site_city=auto +City "TN, Nashville-Davidson Metropolitan Government Balance" ResStockArguments site_city=auto +City "TN, Smyrna" ResStockArguments site_city=auto +City "TX, Abilene" ResStockArguments site_city=auto +City "TX, Allen" ResStockArguments site_city=auto +City "TX, Amarillo" ResStockArguments site_city=auto +City "TX, Arlington" ResStockArguments site_city=auto +City "TX, Atascocita" ResStockArguments site_city=auto +City "TX, Austin" ResStockArguments site_city=auto +City "TX, Baytown" ResStockArguments site_city=auto +City "TX, Beaumont" ResStockArguments site_city=auto +City "TX, Bedford" ResStockArguments site_city=auto +City "TX, Brownsville" ResStockArguments site_city=auto +City "TX, Bryan" ResStockArguments site_city=auto +City "TX, Burleson" ResStockArguments site_city=auto +City "TX, Carrollton" ResStockArguments site_city=auto +City "TX, Cedar Hill" ResStockArguments site_city=auto +City "TX, Cedar Park" ResStockArguments site_city=auto +City "TX, College Station" ResStockArguments site_city=auto +City "TX, Conroe" ResStockArguments site_city=auto +City "TX, Coppell" ResStockArguments site_city=auto +City "TX, Corpus Christi" ResStockArguments site_city=auto +City "TX, Dallas" ResStockArguments site_city=auto +City "TX, Denton" ResStockArguments site_city=auto +City "TX, Desoto" ResStockArguments site_city=auto +City "TX, Edinburg" ResStockArguments site_city=auto +City "TX, El Paso" ResStockArguments site_city=auto +City "TX, Euless" ResStockArguments site_city=auto +City "TX, Flower Mound" ResStockArguments site_city=auto +City "TX, Fort Worth" ResStockArguments site_city=auto +City "TX, Frisco" ResStockArguments site_city=auto +City "TX, Galveston" ResStockArguments site_city=auto +City "TX, Garland" ResStockArguments site_city=auto +City "TX, Georgetown" ResStockArguments site_city=auto +City "TX, Grand Prairie" ResStockArguments site_city=auto +City "TX, Grapevine" ResStockArguments site_city=auto +City "TX, Haltom City" ResStockArguments site_city=auto +City "TX, Harlingen" ResStockArguments site_city=auto +City "TX, Houston" ResStockArguments site_city=auto +City "TX, Hurst" ResStockArguments site_city=auto +City "TX, Irving" ResStockArguments site_city=auto +City "TX, Keller" ResStockArguments site_city=auto +City "TX, Killeen" ResStockArguments site_city=auto +City "TX, Laredo" ResStockArguments site_city=auto +City "TX, League City" ResStockArguments site_city=auto +City "TX, Lewisville" ResStockArguments site_city=auto +City "TX, Longview" ResStockArguments site_city=auto +City "TX, Lubbock" ResStockArguments site_city=auto +City "TX, Lufkin" ResStockArguments site_city=auto +City "TX, Mansfield" ResStockArguments site_city=auto +City "TX, Mcallen" ResStockArguments site_city=auto +City "TX, Mckinney" ResStockArguments site_city=auto +City "TX, Mesquite" ResStockArguments site_city=auto +City "TX, Midland" ResStockArguments site_city=auto +City "TX, Mission" ResStockArguments site_city=auto +City "TX, Missouri City" ResStockArguments site_city=auto +City "TX, New Braunfels" ResStockArguments site_city=auto +City "TX, North Richland Hills" ResStockArguments site_city=auto +City "TX, Odessa" ResStockArguments site_city=auto +City "TX, Pasadena" ResStockArguments site_city=auto +City "TX, Pearland" ResStockArguments site_city=auto +City "TX, Pflugerville" ResStockArguments site_city=auto +City "TX, Pharr" ResStockArguments site_city=auto +City "TX, Plano" ResStockArguments site_city=auto +City "TX, Port Arthur" ResStockArguments site_city=auto +City "TX, Richardson" ResStockArguments site_city=auto +City "TX, Round Rock" ResStockArguments site_city=auto +City "TX, Rowlett" ResStockArguments site_city=auto +City "TX, San Angelo" ResStockArguments site_city=auto +City "TX, San Antonio" ResStockArguments site_city=auto +City "TX, San Marcos" ResStockArguments site_city=auto +City "TX, Sherman" ResStockArguments site_city=auto +City "TX, Spring" ResStockArguments site_city=auto +City "TX, Sugar Land" ResStockArguments site_city=auto +City "TX, Temple" ResStockArguments site_city=auto +City "TX, Texarkana" ResStockArguments site_city=auto +City "TX, Texas City" ResStockArguments site_city=auto +City "TX, The Colony" ResStockArguments site_city=auto +City "TX, The Woodlands" ResStockArguments site_city=auto +City "TX, Tyler" ResStockArguments site_city=auto +City "TX, Victoria" ResStockArguments site_city=auto +City "TX, Waco" ResStockArguments site_city=auto +City "TX, Wichita Falls" ResStockArguments site_city=auto +City "TX, Wylie" ResStockArguments site_city=auto +City "UT, Layton" ResStockArguments site_city=auto +City "UT, Lehi" ResStockArguments site_city=auto +City "UT, Logan" ResStockArguments site_city=auto +City "UT, Millcreek" ResStockArguments site_city=auto +City "UT, Murray" ResStockArguments site_city=auto +City "UT, Ogden" ResStockArguments site_city=auto +City "UT, Orem" ResStockArguments site_city=auto +City "UT, Provo" ResStockArguments site_city=auto +City "UT, Salt Lake City" ResStockArguments site_city=auto +City "UT, Sandy" ResStockArguments site_city=auto +City "UT, South Jordan" ResStockArguments site_city=auto +City "UT, St George" ResStockArguments site_city=auto +City "UT, Taylorsville" ResStockArguments site_city=auto +City "UT, West Jordan" ResStockArguments site_city=auto +City "UT, West Valley City" ResStockArguments site_city=auto +City "VA, Alexandria" ResStockArguments site_city=auto +City "VA, Arlington" ResStockArguments site_city=auto +City "VA, Ashburn" ResStockArguments site_city=auto +City "VA, Blacksburg" ResStockArguments site_city=auto +City "VA, Centreville" ResStockArguments site_city=auto +City "VA, Charlottesville" ResStockArguments site_city=auto +City "VA, Chesapeake" ResStockArguments site_city=auto +City "VA, Dale City" ResStockArguments site_city=auto +City "VA, Danville" ResStockArguments site_city=auto +City "VA, Hampton" ResStockArguments site_city=auto +City "VA, Harrisonburg" ResStockArguments site_city=auto +City "VA, Lake Ridge" ResStockArguments site_city=auto +City "VA, Leesburg" ResStockArguments site_city=auto +City "VA, Lynchburg" ResStockArguments site_city=auto +City "VA, Mclean" ResStockArguments site_city=auto +City "VA, Mechanicsville" ResStockArguments site_city=auto +City "VA, Newport News" ResStockArguments site_city=auto +City "VA, Norfolk" ResStockArguments site_city=auto +City "VA, Petersburg" ResStockArguments site_city=auto +City "VA, Portsmouth" ResStockArguments site_city=auto +City "VA, Reston" ResStockArguments site_city=auto +City "VA, Richmond" ResStockArguments site_city=auto +City "VA, Roanoke" ResStockArguments site_city=auto +City "VA, Suffolk" ResStockArguments site_city=auto +City "VA, Tuckahoe" ResStockArguments site_city=auto +City "VA, Virginia Beach" ResStockArguments site_city=auto +City "VT, Burlington" ResStockArguments site_city=auto +City "WA, Auburn" ResStockArguments site_city=auto +City "WA, Bellevue" ResStockArguments site_city=auto +City "WA, Bellingham" ResStockArguments site_city=auto +City "WA, Bremerton" ResStockArguments site_city=auto +City "WA, Edmonds" ResStockArguments site_city=auto +City "WA, Everett" ResStockArguments site_city=auto +City "WA, Federal Way" ResStockArguments site_city=auto +City "WA, Kennewick" ResStockArguments site_city=auto +City "WA, Kent" ResStockArguments site_city=auto +City "WA, Kirkland" ResStockArguments site_city=auto +City "WA, Lacey" ResStockArguments site_city=auto +City "WA, Lakewood" ResStockArguments site_city=auto +City "WA, Longview" ResStockArguments site_city=auto +City "WA, Marysville" ResStockArguments site_city=auto +City "WA, Olympia" ResStockArguments site_city=auto +City "WA, Pasco" ResStockArguments site_city=auto +City "WA, Puyallup" ResStockArguments site_city=auto +City "WA, Redmond" ResStockArguments site_city=auto +City "WA, Renton" ResStockArguments site_city=auto +City "WA, Richland" ResStockArguments site_city=auto +City "WA, Sammamish" ResStockArguments site_city=auto +City "WA, Seattle" ResStockArguments site_city=auto +City "WA, Shoreline" ResStockArguments site_city=auto +City "WA, South Hill" ResStockArguments site_city=auto +City "WA, Spokane Valley" ResStockArguments site_city=auto +City "WA, Spokane" ResStockArguments site_city=auto +City "WA, Tacoma" ResStockArguments site_city=auto +City "WA, Vancouver" ResStockArguments site_city=auto +City "WA, Yakima" ResStockArguments site_city=auto +City "WI, Appleton" ResStockArguments site_city=auto +City "WI, Beloit" ResStockArguments site_city=auto +City "WI, Eau Claire" ResStockArguments site_city=auto +City "WI, Fond Du Lac" ResStockArguments site_city=auto +City "WI, Green Bay" ResStockArguments site_city=auto +City "WI, Greenfield" ResStockArguments site_city=auto +City "WI, Janesville" ResStockArguments site_city=auto +City "WI, Kenosha" ResStockArguments site_city=auto +City "WI, La Crosse" ResStockArguments site_city=auto +City "WI, Madison" ResStockArguments site_city=auto +City "WI, Manitowoc" ResStockArguments site_city=auto +City "WI, Menomonee Falls" ResStockArguments site_city=auto +City "WI, Milwaukee" ResStockArguments site_city=auto +City "WI, New Berlin" ResStockArguments site_city=auto +City "WI, Oshkosh" ResStockArguments site_city=auto +City "WI, Racine" ResStockArguments site_city=auto +City "WI, Sheboygan" ResStockArguments site_city=auto +City "WI, Waukesha" ResStockArguments site_city=auto +City "WI, Wausau" ResStockArguments site_city=auto +City "WI, Wauwatosa" ResStockArguments site_city=auto +City "WI, West Allis" ResStockArguments site_city=auto +City "WV, Charleston" ResStockArguments site_city=auto +City "WV, Huntington" ResStockArguments site_city=auto +City "WV, Parkersburg" ResStockArguments site_city=auto +City "WY, Casper" ResStockArguments site_city=auto +City "WY, Cheyenne" ResStockArguments site_city=auto +City In another census Place ResStockArguments site_city=auto +City Not in a census Place ResStockArguments site_city=auto +Clothes Dryer "Electric, Heat Pump, Ventless" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=4.5 clothes_dryer_vented_flow_rate=0 +Clothes Dryer "Electric Heat Pump, 120V" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=4.5 clothes_dryer_vented_flow_rate=0 +Clothes Dryer "Electric, Premium" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.42 clothes_dryer_vented_flow_rate=auto +Clothes Dryer "Electric, Premium, EnergyStar" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.93 clothes_dryer_vented_flow_rate=auto +Clothes Dryer "Electric, Premium, Heat Pump, Ventless" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=5.2 clothes_dryer_vented_flow_rate=0 +Clothes Dryer "Gas, Premium" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.03 clothes_dryer_vented_flow_rate=auto +Clothes Dryer Electric ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.70 clothes_dryer_vented_flow_rate=auto +Clothes Dryer Gas ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.39 clothes_dryer_vented_flow_rate=auto +Clothes Dryer None ResStockArguments clothes_dryer_present=false clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.70 clothes_dryer_vented_flow_rate=auto +Clothes Dryer Propane ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=propane clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.39 clothes_dryer_vented_flow_rate=auto +Clothes Dryer Void +Clothes Dryer Usage Level 100% Usage ResStockArguments clothes_dryer_usage_multiplier=1.0 +Clothes Dryer Usage Level 120% Usage ResStockArguments clothes_dryer_usage_multiplier=1.2 +Clothes Dryer Usage Level 80% Usage ResStockArguments clothes_dryer_usage_multiplier=0.8 +Clothes Washer "EnergyStar, Cold Only" ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.07 clothes_washer_rated_annual_kwh=123 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=9 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.68 +Clothes Washer CEE Advanced Tier ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=3.1 clothes_washer_rated_annual_kwh=120 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=14 clothes_washer_label_usage=7.538462 clothes_washer_capacity=5.8 +Clothes Washer EnergyStar ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.07 clothes_washer_rated_annual_kwh=123 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=9 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.68 +Clothes Washer EnergyStar More Efficient ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.83 clothes_washer_rated_annual_kwh=90 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=8 clothes_washer_label_usage=7.538462 clothes_washer_capacity=4.5 +Clothes Washer EnergyStar Most Efficient ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.92 clothes_washer_rated_annual_kwh=75 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=7 clothes_washer_label_usage=7.538462 clothes_washer_capacity=4.5 +Clothes Washer None ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=0 clothes_washer_rated_annual_kwh=0 clothes_washer_label_electric_rate=0 clothes_washer_label_gas_rate=0 clothes_washer_label_annual_gas_cost=0 clothes_washer_label_usage=0 clothes_washer_capacity=0 +Clothes Washer Standard ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=0.95 clothes_washer_rated_annual_kwh=387 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=24 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.5 +Clothes Washer Void +Clothes Washer Presence None ResStockArguments clothes_washer_present=false +Clothes Washer Presence Void +Clothes Washer Presence Yes ResStockArguments clothes_washer_present=true +Clothes Washer Usage Level 100% Usage ResStockArguments clothes_washer_usage_multiplier=1.0 +Clothes Washer Usage Level 120% Usage ResStockArguments clothes_washer_usage_multiplier=1.2 +Clothes Washer Usage Level 80% Usage ResStockArguments clothes_washer_usage_multiplier=0.8 +Cooking Range Electric Induction ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=electricity cooking_range_oven_is_induction=true cooking_range_oven_is_convection=auto +Cooking Range Electric Resistance ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=electricity cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto +Cooking Range "Electric Induction, 120V, battery powered" ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=electricity cooking_range_oven_is_induction=true cooking_range_oven_is_convection=auto +Cooking Range Gas ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=natural gas cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto +Cooking Range None ResStockArguments cooking_range_oven_present=false cooking_range_oven_location=auto cooking_range_oven_fuel_type=natural gas cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto +Cooking Range Propane ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=propane cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto +Cooking Range Void +Cooking Range Usage Level 100% Usage ResStockArguments cooking_range_oven_usage_multiplier=1.0 +Cooking Range Usage Level 120% Usage ResStockArguments cooking_range_oven_usage_multiplier=1.2 +Cooking Range Usage Level 80% Usage ResStockArguments cooking_range_oven_usage_multiplier=0.8 +Cooling Setpoint 60F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=60 hvac_control_cooling_weekend_setpoint_temp=60 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 62F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=62 hvac_control_cooling_weekend_setpoint_temp=62 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 64F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=64 hvac_control_cooling_weekend_setpoint_temp=64 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 65F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=65 hvac_control_cooling_weekend_setpoint_temp=65 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 66F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=66 hvac_control_cooling_weekend_setpoint_temp=66 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 67F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=67 hvac_control_cooling_weekend_setpoint_temp=67 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 68F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=68 hvac_control_cooling_weekend_setpoint_temp=68 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 69F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=69 hvac_control_cooling_weekend_setpoint_temp=69 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 70F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=70 hvac_control_cooling_weekend_setpoint_temp=70 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 72F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=72 hvac_control_cooling_weekend_setpoint_temp=72 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 73F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=73 hvac_control_cooling_weekend_setpoint_temp=73 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 74F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=74 hvac_control_cooling_weekend_setpoint_temp=74 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 75F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=75 hvac_control_cooling_weekend_setpoint_temp=75 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 76F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=76 hvac_control_cooling_weekend_setpoint_temp=76 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 76F w/ Building America season ResStockArguments hvac_control_cooling_weekday_setpoint_temp=76 hvac_control_cooling_weekend_setpoint_temp=76 use_auto_cooling_season=true hvac_control_cooling_season_period=auto +Cooling Setpoint 77F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=77 hvac_control_cooling_weekend_setpoint_temp=77 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 78F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=78 hvac_control_cooling_weekend_setpoint_temp=78 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 80F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=80 hvac_control_cooling_weekend_setpoint_temp=80 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint Has Offset No +Cooling Setpoint Has Offset Yes +Cooling Setpoint Offset Magnitude 0F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=0 hvac_control_cooling_weekend_setpoint_offset_magnitude=0 +Cooling Setpoint Offset Magnitude 2F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=2 hvac_control_cooling_weekend_setpoint_offset_magnitude=2 +Cooling Setpoint Offset Magnitude 5F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=5 hvac_control_cooling_weekend_setpoint_offset_magnitude=5 +Cooling Setpoint Offset Magnitude 9F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=9 hvac_control_cooling_weekend_setpoint_offset_magnitude=9 +Cooling Setpoint Offset Period Day Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup and Night Setback ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day Setup and Night Setback +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day Setup and Night Setback +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day Setup and Night Setback +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day Setup and Night Setback -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" +Cooling Setpoint Offset Period Day and Night Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1" +Cooling Setpoint Offset Period Day and Night Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1" +Cooling Setpoint Offset Period Day and Night Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day and Night Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day and Night Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day and Night Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day and Night Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1" +Cooling Setpoint Offset Period Day and Night Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1" +Cooling Setpoint Offset Period Day and Night Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1" +Cooling Setpoint Offset Period Day and Night Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1" +Cooling Setpoint Offset Period Day and Night Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1" +Cooling Setpoint Offset Period Night Setback ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" +Cooling Setpoint Offset Period Night Setback +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" +Cooling Setpoint Offset Period Night Setback +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setback +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setback +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setback +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setback -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" +Cooling Setpoint Offset Period Night Setback -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" +Cooling Setpoint Offset Period Night Setback -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" +Cooling Setpoint Offset Period Night Setback -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" +Cooling Setpoint Offset Period Night Setback -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" +Cooling Setpoint Offset Period Night Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1" +Cooling Setpoint Offset Period Night Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1" +Cooling Setpoint Offset Period Night Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1" +Cooling Setpoint Offset Period Night Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1" +Cooling Setpoint Offset Period Night Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1" +Cooling Setpoint Offset Period Night Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1" +Cooling Setpoint Offset Period Night Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1" +Cooling Setpoint Offset Period None ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Corridor Double Exterior ResStockArguments geometry_corridor_position=Double Exterior geometry_corridor_width=10 +Corridor Double-Loaded Interior ResStockArguments geometry_corridor_position=Double-Loaded Interior geometry_corridor_width=10 +Corridor None ResStockArguments geometry_corridor_position=None geometry_corridor_width=0 +Corridor Not Applicable ResStockArguments geometry_corridor_position=None geometry_corridor_width=0 +Corridor Single Exterior Front ResStockArguments geometry_corridor_position=Single Exterior (Front) geometry_corridor_width=10 +County "AK, Aleutians East Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200130.epw site_zip_code=99661 site_time_zone_utc_offset=-9 +County "AK, Aleutians West Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200160.epw site_zip_code=99685 site_time_zone_utc_offset=-9 +County "AK, Anchorage Municipality" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200200.epw site_zip_code=99501 site_time_zone_utc_offset=-9 +County "AK, Bethel Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200500.epw site_zip_code=99545 site_time_zone_utc_offset=-9 +County "AK, Bristol Bay Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200600.epw site_zip_code=99633 site_time_zone_utc_offset=-9 +County "AK, Denali Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200680.epw site_zip_code=99743 site_time_zone_utc_offset=-9 +County "AK, Dillingham Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200700.epw site_zip_code=99576 site_time_zone_utc_offset=-9 +County "AK, Fairbanks North Star Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200900.epw site_zip_code=99709 site_time_zone_utc_offset=-9 +County "AK, Haines Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201000.epw site_zip_code=99827 site_time_zone_utc_offset=-9 +County "AK, Hoonah-Angoon Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201050.epw site_zip_code=99829 site_time_zone_utc_offset=-9 +County "AK, Juneau City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201100.epw site_zip_code=99802 site_time_zone_utc_offset=-9 +County "AK, Kenai Peninsula Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201220.epw site_zip_code=99611 site_time_zone_utc_offset=-9 +County "AK, Ketchikan Gateway Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201300.epw site_zip_code=99901 site_time_zone_utc_offset=-9 +County "AK, Kodiak Island Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201500.epw site_zip_code=99615 site_time_zone_utc_offset=-9 +County "AK, Kusilvak Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202700.epw site_zip_code=99604 site_time_zone_utc_offset=-9 +County "AK, Lake and Peninsula Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201640.epw site_zip_code=99653 site_time_zone_utc_offset=-9 +County "AK, Matanuska-Susitna Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201700.epw site_zip_code=99645 site_time_zone_utc_offset=-9 +County "AK, Nome Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201800.epw site_zip_code=99762 site_time_zone_utc_offset=-9 +County "AK, North Slope Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201850.epw site_zip_code=99723 site_time_zone_utc_offset=-9 +County "AK, Northwest Arctic Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201880.epw site_zip_code=99752 site_time_zone_utc_offset=-9 +County "AK, Petersburg Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201950.epw site_zip_code=99833 site_time_zone_utc_offset=-9 +County "AK, Prince of Wales-Hyder Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201980.epw site_zip_code=99926 site_time_zone_utc_offset=-9 +County "AK, Sitka City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202200.epw site_zip_code=99835 site_time_zone_utc_offset=-9 +County "AK, Skagway Municipality" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202300.epw site_zip_code=99840 site_time_zone_utc_offset=-9 +County "AK, Southeast Fairbanks Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202400.epw site_zip_code=99731 site_time_zone_utc_offset=-9 +County "AK, Valdez-Cordova Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202610.epw site_zip_code=99686 site_time_zone_utc_offset=-9 +County "AK, Wrangell City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202750.epw site_zip_code=99903 site_time_zone_utc_offset=-9 +County "AK, Yakutat City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202820.epw site_zip_code=99689 site_time_zone_utc_offset=-9 +County "AK, Yukon-Koyukuk Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202900.epw site_zip_code=99740 site_time_zone_utc_offset=-9 +County "AL, Autauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100010.epw site_zip_code=36067 site_time_zone_utc_offset=-6 +County "AL, Baldwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100030.epw site_zip_code=36535 site_time_zone_utc_offset=-6 +County "AL, Barbour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100050.epw site_zip_code=36027 site_time_zone_utc_offset=-6 +County "AL, Bibb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100070.epw site_zip_code=35042 site_time_zone_utc_offset=-6 +County "AL, Blount County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100090.epw site_zip_code=35121 site_time_zone_utc_offset=-6 +County "AL, Bullock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100110.epw site_zip_code=36089 site_time_zone_utc_offset=-6 +County "AL, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100130.epw site_zip_code=36037 site_time_zone_utc_offset=-6 +County "AL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100150.epw site_zip_code=36201 site_time_zone_utc_offset=-6 +County "AL, Chambers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100170.epw site_zip_code=36863 site_time_zone_utc_offset=-6 +County "AL, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100190.epw site_zip_code=35960 site_time_zone_utc_offset=-6 +County "AL, Chilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100210.epw site_zip_code=35045 site_time_zone_utc_offset=-6 +County "AL, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100230.epw site_zip_code=36904 site_time_zone_utc_offset=-6 +County "AL, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100250.epw site_zip_code=36545 site_time_zone_utc_offset=-6 +County "AL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100270.epw site_zip_code=36251 site_time_zone_utc_offset=-6 +County "AL, Cleburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100290.epw site_zip_code=36264 site_time_zone_utc_offset=-6 +County "AL, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100310.epw site_zip_code=36330 site_time_zone_utc_offset=-6 +County "AL, Colbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100330.epw site_zip_code=35674 site_time_zone_utc_offset=-6 +County "AL, Conecuh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100350.epw site_zip_code=36401 site_time_zone_utc_offset=-6 +County "AL, Coosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100370.epw site_zip_code=35151 site_time_zone_utc_offset=-6 +County "AL, Covington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100390.epw site_zip_code=36420 site_time_zone_utc_offset=-6 +County "AL, Crenshaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100410.epw site_zip_code=36049 site_time_zone_utc_offset=-6 +County "AL, Cullman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100430.epw site_zip_code=35055 site_time_zone_utc_offset=-6 +County "AL, Dale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100450.epw site_zip_code=36360 site_time_zone_utc_offset=-6 +County "AL, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100470.epw site_zip_code=36701 site_time_zone_utc_offset=-6 +County "AL, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100490.epw site_zip_code=35967 site_time_zone_utc_offset=-6 +County "AL, Elmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100510.epw site_zip_code=36092 site_time_zone_utc_offset=-6 +County "AL, Escambia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100530.epw site_zip_code=36426 site_time_zone_utc_offset=-6 +County "AL, Etowah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100550.epw site_zip_code=35901 site_time_zone_utc_offset=-6 +County "AL, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100570.epw site_zip_code=35555 site_time_zone_utc_offset=-6 +County "AL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100590.epw site_zip_code=35653 site_time_zone_utc_offset=-6 +County "AL, Geneva County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100610.epw site_zip_code=36375 site_time_zone_utc_offset=-6 +County "AL, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100630.epw site_zip_code=35462 site_time_zone_utc_offset=-6 +County "AL, Hale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100650.epw site_zip_code=36744 site_time_zone_utc_offset=-6 +County "AL, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100670.epw site_zip_code=36310 site_time_zone_utc_offset=-6 +County "AL, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100690.epw site_zip_code=36301 site_time_zone_utc_offset=-6 +County "AL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100710.epw site_zip_code=35768 site_time_zone_utc_offset=-6 +County "AL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100730.epw site_zip_code=35215 site_time_zone_utc_offset=-6 +County "AL, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100750.epw site_zip_code=35586 site_time_zone_utc_offset=-6 +County "AL, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100770.epw site_zip_code=35630 site_time_zone_utc_offset=-6 +County "AL, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100790.epw site_zip_code=35650 site_time_zone_utc_offset=-6 +County "AL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100810.epw site_zip_code=36830 site_time_zone_utc_offset=-6 +County "AL, Limestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100830.epw site_zip_code=35611 site_time_zone_utc_offset=-6 +County "AL, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100850.epw site_zip_code=36040 site_time_zone_utc_offset=-6 +County "AL, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100870.epw site_zip_code=36083 site_time_zone_utc_offset=-6 +County "AL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100890.epw site_zip_code=35758 site_time_zone_utc_offset=-6 +County "AL, Marengo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100910.epw site_zip_code=36732 site_time_zone_utc_offset=-6 +County "AL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100930.epw site_zip_code=35570 site_time_zone_utc_offset=-6 +County "AL, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100950.epw site_zip_code=35976 site_time_zone_utc_offset=-6 +County "AL, Mobile County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100970.epw site_zip_code=36695 site_time_zone_utc_offset=-6 +County "AL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100990.epw site_zip_code=36460 site_time_zone_utc_offset=-6 +County "AL, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101010.epw site_zip_code=36117 site_time_zone_utc_offset=-6 +County "AL, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101030.epw site_zip_code=35601 site_time_zone_utc_offset=-6 +County "AL, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101050.epw site_zip_code=36756 site_time_zone_utc_offset=-6 +County "AL, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101070.epw site_zip_code=35466 site_time_zone_utc_offset=-6 +County "AL, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101090.epw site_zip_code=36081 site_time_zone_utc_offset=-6 +County "AL, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101110.epw site_zip_code=36274 site_time_zone_utc_offset=-6 +County "AL, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101130.epw site_zip_code=36869 site_time_zone_utc_offset=-6 +County "AL, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101170.epw site_zip_code=35242 site_time_zone_utc_offset=-6 +County "AL, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101150.epw site_zip_code=35120 site_time_zone_utc_offset=-6 +County "AL, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101190.epw site_zip_code=36925 site_time_zone_utc_offset=-6 +County "AL, Talladega County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101210.epw site_zip_code=35160 site_time_zone_utc_offset=-6 +County "AL, Tallapoosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101230.epw site_zip_code=35010 site_time_zone_utc_offset=-6 +County "AL, Tuscaloosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101250.epw site_zip_code=35401 site_time_zone_utc_offset=-6 +County "AL, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101270.epw site_zip_code=35504 site_time_zone_utc_offset=-6 +County "AL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101290.epw site_zip_code=36558 site_time_zone_utc_offset=-6 +County "AL, Wilcox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101310.epw site_zip_code=36726 site_time_zone_utc_offset=-6 +County "AL, Winston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101330.epw site_zip_code=35565 site_time_zone_utc_offset=-6 +County "AR, Arkansas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500010.epw site_zip_code=72160 site_time_zone_utc_offset=-6 +County "AR, Ashley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500030.epw site_zip_code=71635 site_time_zone_utc_offset=-6 +County "AR, Baxter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500050.epw site_zip_code=72653 site_time_zone_utc_offset=-6 +County "AR, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500070.epw site_zip_code=72712 site_time_zone_utc_offset=-6 +County "AR, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500090.epw site_zip_code=72601 site_time_zone_utc_offset=-6 +County "AR, Bradley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500110.epw site_zip_code=71671 site_time_zone_utc_offset=-6 +County "AR, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500130.epw site_zip_code=71744 site_time_zone_utc_offset=-6 +County "AR, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500150.epw site_zip_code=72616 site_time_zone_utc_offset=-6 +County "AR, Chicot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500170.epw site_zip_code=71653 site_time_zone_utc_offset=-6 +County "AR, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500190.epw site_zip_code=71923 site_time_zone_utc_offset=-6 +County "AR, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500210.epw site_zip_code=72454 site_time_zone_utc_offset=-6 +County "AR, Cleburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500230.epw site_zip_code=72543 site_time_zone_utc_offset=-6 +County "AR, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500250.epw site_zip_code=71665 site_time_zone_utc_offset=-6 +County "AR, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500270.epw site_zip_code=71753 site_time_zone_utc_offset=-6 +County "AR, Conway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500290.epw site_zip_code=72110 site_time_zone_utc_offset=-6 +County "AR, Craighead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500310.epw site_zip_code=72401 site_time_zone_utc_offset=-6 +County "AR, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500330.epw site_zip_code=72956 site_time_zone_utc_offset=-6 +County "AR, Crittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500350.epw site_zip_code=72301 site_time_zone_utc_offset=-6 +County "AR, Cross County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500370.epw site_zip_code=72396 site_time_zone_utc_offset=-6 +County "AR, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500390.epw site_zip_code=71742 site_time_zone_utc_offset=-6 +County "AR, Desha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500410.epw site_zip_code=71639 site_time_zone_utc_offset=-6 +County "AR, Drew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500430.epw site_zip_code=71655 site_time_zone_utc_offset=-6 +County "AR, Faulkner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500450.epw site_zip_code=72034 site_time_zone_utc_offset=-6 +County "AR, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500470.epw site_zip_code=72949 site_time_zone_utc_offset=-6 +County "AR, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500490.epw site_zip_code=72554 site_time_zone_utc_offset=-6 +County "AR, Garland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500510.epw site_zip_code=71913 site_time_zone_utc_offset=-6 +County "AR, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500530.epw site_zip_code=72150 site_time_zone_utc_offset=-6 +County "AR, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500550.epw site_zip_code=72450 site_time_zone_utc_offset=-6 +County "AR, Hempstead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500570.epw site_zip_code=71801 site_time_zone_utc_offset=-6 +County "AR, Hot Spring County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500590.epw site_zip_code=72104 site_time_zone_utc_offset=-6 +County "AR, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500610.epw site_zip_code=71852 site_time_zone_utc_offset=-6 +County "AR, Independence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500630.epw site_zip_code=72501 site_time_zone_utc_offset=-6 +County "AR, Izard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500650.epw site_zip_code=72556 site_time_zone_utc_offset=-6 +County "AR, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500670.epw site_zip_code=72112 site_time_zone_utc_offset=-6 +County "AR, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500690.epw site_zip_code=71603 site_time_zone_utc_offset=-6 +County "AR, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500710.epw site_zip_code=72830 site_time_zone_utc_offset=-6 +County "AR, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500730.epw site_zip_code=71860 site_time_zone_utc_offset=-6 +County "AR, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500750.epw site_zip_code=72476 site_time_zone_utc_offset=-6 +County "AR, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500770.epw site_zip_code=72360 site_time_zone_utc_offset=-6 +County "AR, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500790.epw site_zip_code=71667 site_time_zone_utc_offset=-6 +County "AR, Little River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500810.epw site_zip_code=71822 site_time_zone_utc_offset=-6 +County "AR, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500830.epw site_zip_code=72927 site_time_zone_utc_offset=-6 +County "AR, Lonoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500850.epw site_zip_code=72023 site_time_zone_utc_offset=-6 +County "AR, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500870.epw site_zip_code=72740 site_time_zone_utc_offset=-6 +County "AR, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500890.epw site_zip_code=72687 site_time_zone_utc_offset=-6 +County "AR, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500910.epw site_zip_code=71854 site_time_zone_utc_offset=-6 +County "AR, Mississippi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500930.epw site_zip_code=72315 site_time_zone_utc_offset=-6 +County "AR, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500950.epw site_zip_code=72021 site_time_zone_utc_offset=-6 +County "AR, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500970.epw site_zip_code=71957 site_time_zone_utc_offset=-6 +County "AR, Nevada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500990.epw site_zip_code=71857 site_time_zone_utc_offset=-6 +County "AR, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501010.epw site_zip_code=72641 site_time_zone_utc_offset=-6 +County "AR, Ouachita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501030.epw site_zip_code=71701 site_time_zone_utc_offset=-6 +County "AR, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501050.epw site_zip_code=72126 site_time_zone_utc_offset=-6 +County "AR, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501070.epw site_zip_code=72390 site_time_zone_utc_offset=-6 +County "AR, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501090.epw site_zip_code=71943 site_time_zone_utc_offset=-6 +County "AR, Poinsett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501110.epw site_zip_code=72472 site_time_zone_utc_offset=-6 +County "AR, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501130.epw site_zip_code=71953 site_time_zone_utc_offset=-6 +County "AR, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501150.epw site_zip_code=72802 site_time_zone_utc_offset=-6 +County "AR, Prairie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501170.epw site_zip_code=72040 site_time_zone_utc_offset=-6 +County "AR, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501190.epw site_zip_code=72076 site_time_zone_utc_offset=-6 +County "AR, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501210.epw site_zip_code=72455 site_time_zone_utc_offset=-6 +County "AR, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501250.epw site_zip_code=72019 site_time_zone_utc_offset=-6 +County "AR, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501270.epw site_zip_code=72958 site_time_zone_utc_offset=-6 +County "AR, Searcy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501290.epw site_zip_code=72650 site_time_zone_utc_offset=-6 +County "AR, Sebastian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501310.epw site_zip_code=72903 site_time_zone_utc_offset=-6 +County "AR, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501330.epw site_zip_code=71832 site_time_zone_utc_offset=-6 +County "AR, Sharp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501350.epw site_zip_code=72529 site_time_zone_utc_offset=-6 +County "AR, St. Francis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501230.epw site_zip_code=72335 site_time_zone_utc_offset=-6 +County "AR, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501370.epw site_zip_code=72560 site_time_zone_utc_offset=-6 +County "AR, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501390.epw site_zip_code=71730 site_time_zone_utc_offset=-6 +County "AR, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501410.epw site_zip_code=72031 site_time_zone_utc_offset=-6 +County "AR, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501430.epw site_zip_code=72701 site_time_zone_utc_offset=-6 +County "AR, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501450.epw site_zip_code=72143 site_time_zone_utc_offset=-6 +County "AR, Woodruff County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501470.epw site_zip_code=72006 site_time_zone_utc_offset=-6 +County "AR, Yell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501490.epw site_zip_code=72834 site_time_zone_utc_offset=-6 +County "AZ, Apache County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400010.epw site_zip_code=85936 site_time_zone_utc_offset=-7 +County "AZ, Cochise County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400030.epw site_zip_code=85635 site_time_zone_utc_offset=-7 +County "AZ, Coconino County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400050.epw site_zip_code=86001 site_time_zone_utc_offset=-7 +County "AZ, Gila County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400070.epw site_zip_code=85541 site_time_zone_utc_offset=-7 +County "AZ, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400090.epw site_zip_code=85546 site_time_zone_utc_offset=-7 +County "AZ, Greenlee County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400110.epw site_zip_code=85534 site_time_zone_utc_offset=-7 +County "AZ, La Paz County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400120.epw site_zip_code=85344 site_time_zone_utc_offset=-7 +County "AZ, Maricopa County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400130.epw site_zip_code=85281 site_time_zone_utc_offset=-7 +County "AZ, Mohave County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400150.epw site_zip_code=86442 site_time_zone_utc_offset=-7 +County "AZ, Navajo County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400170.epw site_zip_code=85901 site_time_zone_utc_offset=-7 +County "AZ, Pima County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400190.epw site_zip_code=85705 site_time_zone_utc_offset=-7 +County "AZ, Pinal County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400210.epw site_zip_code=85122 site_time_zone_utc_offset=-7 +County "AZ, Santa Cruz County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400230.epw site_zip_code=85621 site_time_zone_utc_offset=-7 +County "AZ, Yavapai County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400250.epw site_zip_code=86314 site_time_zone_utc_offset=-7 +County "AZ, Yuma County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400270.epw site_zip_code=85364 site_time_zone_utc_offset=-7 +County "CA, Alameda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600010.epw site_zip_code=94501 site_time_zone_utc_offset=-8 +County "CA, Alpine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600030.epw site_zip_code=96120 site_time_zone_utc_offset=-8 +County "CA, Amador County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600050.epw site_zip_code=95642 site_time_zone_utc_offset=-8 +County "CA, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600070.epw site_zip_code=95928 site_time_zone_utc_offset=-8 +County "CA, Calaveras County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600090.epw site_zip_code=95252 site_time_zone_utc_offset=-8 +County "CA, Colusa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600110.epw site_zip_code=95932 site_time_zone_utc_offset=-8 +County "CA, Contra Costa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600130.epw site_zip_code=94565 site_time_zone_utc_offset=-8 +County "CA, Del Norte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600150.epw site_zip_code=95531 site_time_zone_utc_offset=-8 +County "CA, El Dorado County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600170.epw site_zip_code=95762 site_time_zone_utc_offset=-8 +County "CA, Fresno County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600190.epw site_zip_code=93722 site_time_zone_utc_offset=-8 +County "CA, Glenn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600210.epw site_zip_code=95963 site_time_zone_utc_offset=-8 +County "CA, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600230.epw site_zip_code=95501 site_time_zone_utc_offset=-8 +County "CA, Imperial County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600250.epw site_zip_code=92243 site_time_zone_utc_offset=-8 +County "CA, Inyo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600270.epw site_zip_code=93514 site_time_zone_utc_offset=-8 +County "CA, Kern County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600290.epw site_zip_code=93306 site_time_zone_utc_offset=-8 +County "CA, Kings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600310.epw site_zip_code=93230 site_time_zone_utc_offset=-8 +County "CA, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600330.epw site_zip_code=95422 site_time_zone_utc_offset=-8 +County "CA, Lassen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600350.epw site_zip_code=96130 site_time_zone_utc_offset=-8 +County "CA, Los Angeles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600370.epw site_zip_code=90250 site_time_zone_utc_offset=-8 +County "CA, Madera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600390.epw site_zip_code=93637 site_time_zone_utc_offset=-8 +County "CA, Marin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600410.epw site_zip_code=94901 site_time_zone_utc_offset=-8 +County "CA, Mariposa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600430.epw site_zip_code=95338 site_time_zone_utc_offset=-8 +County "CA, Mendocino County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600450.epw site_zip_code=95482 site_time_zone_utc_offset=-8 +County "CA, Merced County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600470.epw site_zip_code=93635 site_time_zone_utc_offset=-8 +County "CA, Modoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600490.epw site_zip_code=96101 site_time_zone_utc_offset=-8 +County "CA, Mono County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600510.epw site_zip_code=93546 site_time_zone_utc_offset=-8 +County "CA, Monterey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600530.epw site_zip_code=93906 site_time_zone_utc_offset=-8 +County "CA, Napa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600550.epw site_zip_code=94558 site_time_zone_utc_offset=-8 +County "CA, Nevada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600570.epw site_zip_code=95945 site_time_zone_utc_offset=-8 +County "CA, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600590.epw site_zip_code=92683 site_time_zone_utc_offset=-8 +County "CA, Placer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600610.epw site_zip_code=95747 site_time_zone_utc_offset=-8 +County "CA, Plumas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600630.epw site_zip_code=96122 site_time_zone_utc_offset=-8 +County "CA, Riverside County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600650.epw site_zip_code=92503 site_time_zone_utc_offset=-8 +County "CA, Sacramento County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600670.epw site_zip_code=95630 site_time_zone_utc_offset=-8 +County "CA, San Benito County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600690.epw site_zip_code=95023 site_time_zone_utc_offset=-8 +County "CA, San Bernardino County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600710.epw site_zip_code=92336 site_time_zone_utc_offset=-8 +County "CA, San Diego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600730.epw site_zip_code=92101 site_time_zone_utc_offset=-8 +County "CA, San Francisco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600750.epw site_zip_code=94109 site_time_zone_utc_offset=-8 +County "CA, San Joaquin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600770.epw site_zip_code=95206 site_time_zone_utc_offset=-8 +County "CA, San Luis Obispo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600790.epw site_zip_code=93446 site_time_zone_utc_offset=-8 +County "CA, San Mateo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600810.epw site_zip_code=94080 site_time_zone_utc_offset=-8 +County "CA, Santa Barbara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600830.epw site_zip_code=93436 site_time_zone_utc_offset=-8 +County "CA, Santa Clara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600850.epw site_zip_code=95035 site_time_zone_utc_offset=-8 +County "CA, Santa Cruz County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600870.epw site_zip_code=95076 site_time_zone_utc_offset=-8 +County "CA, Shasta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600890.epw site_zip_code=96003 site_time_zone_utc_offset=-8 +County "CA, Sierra County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600910.epw site_zip_code=95960 site_time_zone_utc_offset=-8 +County "CA, Siskiyou County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600930.epw site_zip_code=96097 site_time_zone_utc_offset=-8 +County "CA, Solano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600950.epw site_zip_code=94533 site_time_zone_utc_offset=-8 +County "CA, Sonoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600970.epw site_zip_code=95403 site_time_zone_utc_offset=-8 +County "CA, Stanislaus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600990.epw site_zip_code=95355 site_time_zone_utc_offset=-8 +County "CA, Sutter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601010.epw site_zip_code=95991 site_time_zone_utc_offset=-8 +County "CA, Tehama County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601030.epw site_zip_code=96080 site_time_zone_utc_offset=-8 +County "CA, Trinity County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601050.epw site_zip_code=96091 site_time_zone_utc_offset=-8 +County "CA, Tulare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601070.epw site_zip_code=93274 site_time_zone_utc_offset=-8 +County "CA, Tuolumne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601090.epw site_zip_code=95370 site_time_zone_utc_offset=-8 +County "CA, Ventura County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601110.epw site_zip_code=93065 site_time_zone_utc_offset=-8 +County "CA, Yolo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601130.epw site_zip_code=95616 site_time_zone_utc_offset=-8 +County "CA, Yuba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601150.epw site_zip_code=95901 site_time_zone_utc_offset=-8 +County "CO, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800010.epw site_zip_code=80229 site_time_zone_utc_offset=-7 +County "CO, Alamosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800030.epw site_zip_code=81101 site_time_zone_utc_offset=-7 +County "CO, Arapahoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800050.epw site_zip_code=80013 site_time_zone_utc_offset=-7 +County "CO, Archuleta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800070.epw site_zip_code=81147 site_time_zone_utc_offset=-7 +County "CO, Baca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800090.epw site_zip_code=81073 site_time_zone_utc_offset=-7 +County "CO, Bent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800110.epw site_zip_code=81054 site_time_zone_utc_offset=-7 +County "CO, Boulder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800130.epw site_zip_code=80501 site_time_zone_utc_offset=-7 +County "CO, Broomfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800140.epw site_zip_code=80020 site_time_zone_utc_offset=-7 +County "CO, Chaffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800150.epw site_zip_code=81201 site_time_zone_utc_offset=-7 +County "CO, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800170.epw site_zip_code=80810 site_time_zone_utc_offset=-7 +County "CO, Clear Creek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800190.epw site_zip_code=80439 site_time_zone_utc_offset=-7 +County "CO, Conejos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800210.epw site_zip_code=81120 site_time_zone_utc_offset=-7 +County "CO, Costilla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800230.epw site_zip_code=81133 site_time_zone_utc_offset=-7 +County "CO, Crowley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800250.epw site_zip_code=81063 site_time_zone_utc_offset=-7 +County "CO, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800270.epw site_zip_code=81252 site_time_zone_utc_offset=-7 +County "CO, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800290.epw site_zip_code=81416 site_time_zone_utc_offset=-7 +County "CO, Denver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800310.epw site_zip_code=80211 site_time_zone_utc_offset=-7 +County "CO, Dolores County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800330.epw site_zip_code=81324 site_time_zone_utc_offset=-7 +County "CO, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800350.epw site_zip_code=80134 site_time_zone_utc_offset=-7 +County "CO, Eagle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800370.epw site_zip_code=81620 site_time_zone_utc_offset=-7 +County "CO, El Paso County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800410.epw site_zip_code=80918 site_time_zone_utc_offset=-7 +County "CO, Elbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800390.epw site_zip_code=80107 site_time_zone_utc_offset=-7 +County "CO, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800430.epw site_zip_code=81212 site_time_zone_utc_offset=-7 +County "CO, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800450.epw site_zip_code=81601 site_time_zone_utc_offset=-7 +County "CO, Gilpin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800470.epw site_zip_code=80422 site_time_zone_utc_offset=-7 +County "CO, Grand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800490.epw site_zip_code=80459 site_time_zone_utc_offset=-7 +County "CO, Gunnison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800510.epw site_zip_code=81230 site_time_zone_utc_offset=-7 +County "CO, Hinsdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800530.epw site_zip_code=81235 site_time_zone_utc_offset=-7 +County "CO, Huerfano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800550.epw site_zip_code=81089 site_time_zone_utc_offset=-7 +County "CO, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800570.epw site_zip_code=80480 site_time_zone_utc_offset=-7 +County "CO, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800590.epw site_zip_code=80127 site_time_zone_utc_offset=-7 +County "CO, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800610.epw site_zip_code=81036 site_time_zone_utc_offset=-7 +County "CO, Kit Carson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800630.epw site_zip_code=80807 site_time_zone_utc_offset=-7 +County "CO, La Plata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800670.epw site_zip_code=81301 site_time_zone_utc_offset=-7 +County "CO, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800650.epw site_zip_code=80461 site_time_zone_utc_offset=-7 +County "CO, Larimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800690.epw site_zip_code=80525 site_time_zone_utc_offset=-7 +County "CO, Las Animas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800710.epw site_zip_code=81082 site_time_zone_utc_offset=-7 +County "CO, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800730.epw site_zip_code=80828 site_time_zone_utc_offset=-7 +County "CO, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800750.epw site_zip_code=80751 site_time_zone_utc_offset=-7 +County "CO, Mesa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800770.epw site_zip_code=81504 site_time_zone_utc_offset=-7 +County "CO, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800790.epw site_zip_code=81130 site_time_zone_utc_offset=-7 +County "CO, Moffat County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800810.epw site_zip_code=81625 site_time_zone_utc_offset=-7 +County "CO, Montezuma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800830.epw site_zip_code=81321 site_time_zone_utc_offset=-7 +County "CO, Montrose County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800850.epw site_zip_code=81401 site_time_zone_utc_offset=-7 +County "CO, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800870.epw site_zip_code=80701 site_time_zone_utc_offset=-7 +County "CO, Otero County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800890.epw site_zip_code=81050 site_time_zone_utc_offset=-7 +County "CO, Ouray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800910.epw site_zip_code=81432 site_time_zone_utc_offset=-7 +County "CO, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800930.epw site_zip_code=80421 site_time_zone_utc_offset=-7 +County "CO, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800950.epw site_zip_code=80734 site_time_zone_utc_offset=-7 +County "CO, Pitkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800970.epw site_zip_code=81612 site_time_zone_utc_offset=-7 +County "CO, Prowers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800990.epw site_zip_code=81052 site_time_zone_utc_offset=-7 +County "CO, Pueblo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801010.epw site_zip_code=81001 site_time_zone_utc_offset=-7 +County "CO, Rio Blanco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801030.epw site_zip_code=81648 site_time_zone_utc_offset=-7 +County "CO, Rio Grande County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801050.epw site_zip_code=81144 site_time_zone_utc_offset=-7 +County "CO, Routt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801070.epw site_zip_code=80487 site_time_zone_utc_offset=-7 +County "CO, Saguache County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801090.epw site_zip_code=81125 site_time_zone_utc_offset=-7 +County "CO, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801110.epw site_zip_code=81433 site_time_zone_utc_offset=-7 +County "CO, San Miguel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801130.epw site_zip_code=81435 site_time_zone_utc_offset=-7 +County "CO, Sedgwick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801150.epw site_zip_code=80737 site_time_zone_utc_offset=-7 +County "CO, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801170.epw site_zip_code=80424 site_time_zone_utc_offset=-7 +County "CO, Teller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801190.epw site_zip_code=80863 site_time_zone_utc_offset=-7 +County "CO, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801210.epw site_zip_code=80720 site_time_zone_utc_offset=-7 +County "CO, Weld County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801230.epw site_zip_code=80634 site_time_zone_utc_offset=-7 +County "CO, Yuma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801250.epw site_zip_code=80759 site_time_zone_utc_offset=-7 +County "CT, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900010.epw site_zip_code=06902 site_time_zone_utc_offset=-5 +County "CT, Hartford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900030.epw site_zip_code=06010 site_time_zone_utc_offset=-5 +County "CT, Litchfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900050.epw site_zip_code=06790 site_time_zone_utc_offset=-5 +County "CT, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900070.epw site_zip_code=06457 site_time_zone_utc_offset=-5 +County "CT, New Haven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900090.epw site_zip_code=06516 site_time_zone_utc_offset=-5 +County "CT, New London County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900110.epw site_zip_code=06360 site_time_zone_utc_offset=-5 +County "CT, Tolland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900130.epw site_zip_code=06066 site_time_zone_utc_offset=-5 +County "CT, Windham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900150.epw site_zip_code=06226 site_time_zone_utc_offset=-5 +County "DC, District of Columbia" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1100010.epw site_zip_code=20002 site_time_zone_utc_offset=-5 +County "DE, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000010.epw site_zip_code=19904 site_time_zone_utc_offset=-5 +County "DE, New Castle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000030.epw site_zip_code=19720 site_time_zone_utc_offset=-5 +County "DE, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000050.epw site_zip_code=19966 site_time_zone_utc_offset=-5 +County "FL, Alachua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200010.epw site_zip_code=32608 site_time_zone_utc_offset=-5 +County "FL, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200030.epw site_zip_code=32063 site_time_zone_utc_offset=-5 +County "FL, Bay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200050.epw site_zip_code=32404 site_time_zone_utc_offset=-6 +County "FL, Bradford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200070.epw site_zip_code=32091 site_time_zone_utc_offset=-5 +County "FL, Brevard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200090.epw site_zip_code=32940 site_time_zone_utc_offset=-5 +County "FL, Broward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200110.epw site_zip_code=33027 site_time_zone_utc_offset=-5 +County "FL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200130.epw site_zip_code=32424 site_time_zone_utc_offset=-6 +County "FL, Charlotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200150.epw site_zip_code=33950 site_time_zone_utc_offset=-5 +County "FL, Citrus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200170.epw site_zip_code=34446 site_time_zone_utc_offset=-5 +County "FL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200190.epw site_zip_code=32068 site_time_zone_utc_offset=-5 +County "FL, Collier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200210.epw site_zip_code=34112 site_time_zone_utc_offset=-5 +County "FL, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200230.epw site_zip_code=32025 site_time_zone_utc_offset=-5 +County "FL, DeSoto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200270.epw site_zip_code=34266 site_time_zone_utc_offset=-5 +County "FL, Dixie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200290.epw site_zip_code=32680 site_time_zone_utc_offset=-5 +County "FL, Duval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200310.epw site_zip_code=32256 site_time_zone_utc_offset=-5 +County "FL, Escambia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200330.epw site_zip_code=32507 site_time_zone_utc_offset=-6 +County "FL, Flagler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200350.epw site_zip_code=32137 site_time_zone_utc_offset=-5 +County "FL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200370.epw site_zip_code=32328 site_time_zone_utc_offset=-5 +County "FL, Gadsden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200390.epw site_zip_code=32351 site_time_zone_utc_offset=-5 +County "FL, Gilchrist County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200410.epw site_zip_code=32693 site_time_zone_utc_offset=-5 +County "FL, Glades County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200430.epw site_zip_code=33471 site_time_zone_utc_offset=-5 +County "FL, Gulf County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200450.epw site_zip_code=32456 site_time_zone_utc_offset=-6 +County "FL, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200470.epw site_zip_code=32052 site_time_zone_utc_offset=-5 +County "FL, Hardee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200490.epw site_zip_code=33873 site_time_zone_utc_offset=-5 +County "FL, Hendry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200510.epw site_zip_code=33440 site_time_zone_utc_offset=-5 +County "FL, Hernando County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200530.epw site_zip_code=34609 site_time_zone_utc_offset=-5 +County "FL, Highlands County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200550.epw site_zip_code=33870 site_time_zone_utc_offset=-5 +County "FL, Hillsborough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200570.epw site_zip_code=33647 site_time_zone_utc_offset=-5 +County "FL, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200590.epw site_zip_code=32425 site_time_zone_utc_offset=-6 +County "FL, Indian River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200610.epw site_zip_code=32958 site_time_zone_utc_offset=-5 +County "FL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200630.epw site_zip_code=32446 site_time_zone_utc_offset=-6 +County "FL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200650.epw site_zip_code=32344 site_time_zone_utc_offset=-5 +County "FL, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200670.epw site_zip_code=32066 site_time_zone_utc_offset=-5 +County "FL, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200690.epw site_zip_code=34711 site_time_zone_utc_offset=-5 +County "FL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200710.epw site_zip_code=34135 site_time_zone_utc_offset=-5 +County "FL, Leon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200730.epw site_zip_code=32303 site_time_zone_utc_offset=-5 +County "FL, Levy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200750.epw site_zip_code=32696 site_time_zone_utc_offset=-5 +County "FL, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200770.epw site_zip_code=32321 site_time_zone_utc_offset=-5 +County "FL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200790.epw site_zip_code=32340 site_time_zone_utc_offset=-5 +County "FL, Manatee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200810.epw site_zip_code=34221 site_time_zone_utc_offset=-5 +County "FL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200830.epw site_zip_code=34491 site_time_zone_utc_offset=-5 +County "FL, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200850.epw site_zip_code=34997 site_time_zone_utc_offset=-5 +County "FL, Miami-Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200860.epw site_zip_code=33160 site_time_zone_utc_offset=-5 +County "FL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200870.epw site_zip_code=33040 site_time_zone_utc_offset=-5 +County "FL, Nassau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200890.epw site_zip_code=32034 site_time_zone_utc_offset=-5 +County "FL, Okaloosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200910.epw site_zip_code=32541 site_time_zone_utc_offset=-6 +County "FL, Okeechobee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200930.epw site_zip_code=34974 site_time_zone_utc_offset=-5 +County "FL, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200950.epw site_zip_code=34787 site_time_zone_utc_offset=-5 +County "FL, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200970.epw site_zip_code=34746 site_time_zone_utc_offset=-5 +County "FL, Palm Beach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200990.epw site_zip_code=33411 site_time_zone_utc_offset=-5 +County "FL, Pasco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201010.epw site_zip_code=34668 site_time_zone_utc_offset=-5 +County "FL, Pinellas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201030.epw site_zip_code=34698 site_time_zone_utc_offset=-5 +County "FL, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201050.epw site_zip_code=33810 site_time_zone_utc_offset=-5 +County "FL, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201070.epw site_zip_code=32177 site_time_zone_utc_offset=-5 +County "FL, Santa Rosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201130.epw site_zip_code=32566 site_time_zone_utc_offset=-6 +County "FL, Sarasota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201150.epw site_zip_code=34293 site_time_zone_utc_offset=-5 +County "FL, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201170.epw site_zip_code=32771 site_time_zone_utc_offset=-5 +County "FL, St. Johns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201090.epw site_zip_code=32259 site_time_zone_utc_offset=-5 +County "FL, St. Lucie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201110.epw site_zip_code=34953 site_time_zone_utc_offset=-5 +County "FL, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201190.epw site_zip_code=32162 site_time_zone_utc_offset=-5 +County "FL, Suwannee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201210.epw site_zip_code=32060 site_time_zone_utc_offset=-5 +County "FL, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201230.epw site_zip_code=32348 site_time_zone_utc_offset=-5 +County "FL, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201250.epw site_zip_code=32054 site_time_zone_utc_offset=-5 +County "FL, Volusia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201270.epw site_zip_code=32174 site_time_zone_utc_offset=-5 +County "FL, Wakulla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201290.epw site_zip_code=32327 site_time_zone_utc_offset=-5 +County "FL, Walton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201310.epw site_zip_code=32459 site_time_zone_utc_offset=-6 +County "FL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201330.epw site_zip_code=32428 site_time_zone_utc_offset=-6 +County "GA, Appling County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300010.epw site_zip_code=31513 site_time_zone_utc_offset=-5 +County "GA, Atkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300030.epw site_zip_code=31642 site_time_zone_utc_offset=-5 +County "GA, Bacon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300050.epw site_zip_code=31510 site_time_zone_utc_offset=-5 +County "GA, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300070.epw site_zip_code=39870 site_time_zone_utc_offset=-5 +County "GA, Baldwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300090.epw site_zip_code=31061 site_time_zone_utc_offset=-5 +County "GA, Banks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300110.epw site_zip_code=30547 site_time_zone_utc_offset=-5 +County "GA, Barrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300130.epw site_zip_code=30680 site_time_zone_utc_offset=-5 +County "GA, Bartow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300150.epw site_zip_code=30120 site_time_zone_utc_offset=-5 +County "GA, Ben Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300170.epw site_zip_code=31750 site_time_zone_utc_offset=-5 +County "GA, Berrien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300190.epw site_zip_code=31639 site_time_zone_utc_offset=-5 +County "GA, Bibb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300210.epw site_zip_code=31204 site_time_zone_utc_offset=-5 +County "GA, Bleckley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300230.epw site_zip_code=31014 site_time_zone_utc_offset=-5 +County "GA, Brantley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300250.epw site_zip_code=31553 site_time_zone_utc_offset=-5 +County "GA, Brooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300270.epw site_zip_code=31643 site_time_zone_utc_offset=-5 +County "GA, Bryan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300290.epw site_zip_code=31324 site_time_zone_utc_offset=-5 +County "GA, Bulloch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300310.epw site_zip_code=30458 site_time_zone_utc_offset=-5 +County "GA, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300330.epw site_zip_code=30830 site_time_zone_utc_offset=-5 +County "GA, Butts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300350.epw site_zip_code=30233 site_time_zone_utc_offset=-5 +County "GA, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300370.epw site_zip_code=39846 site_time_zone_utc_offset=-5 +County "GA, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300390.epw site_zip_code=31558 site_time_zone_utc_offset=-5 +County "GA, Candler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300430.epw site_zip_code=30439 site_time_zone_utc_offset=-5 +County "GA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300450.epw site_zip_code=30117 site_time_zone_utc_offset=-5 +County "GA, Catoosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300470.epw site_zip_code=30736 site_time_zone_utc_offset=-5 +County "GA, Charlton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300490.epw site_zip_code=31537 site_time_zone_utc_offset=-5 +County "GA, Chatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300510.epw site_zip_code=31419 site_time_zone_utc_offset=-5 +County "GA, Chattahoochee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300530.epw site_zip_code=31905 site_time_zone_utc_offset=-5 +County "GA, Chattooga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300550.epw site_zip_code=30747 site_time_zone_utc_offset=-5 +County "GA, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300570.epw site_zip_code=30188 site_time_zone_utc_offset=-5 +County "GA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300590.epw site_zip_code=30606 site_time_zone_utc_offset=-5 +County "GA, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300610.epw site_zip_code=39851 site_time_zone_utc_offset=-5 +County "GA, Clayton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300630.epw site_zip_code=30236 site_time_zone_utc_offset=-5 +County "GA, Clinch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300650.epw site_zip_code=31634 site_time_zone_utc_offset=-5 +County "GA, Cobb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300670.epw site_zip_code=30080 site_time_zone_utc_offset=-5 +County "GA, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300690.epw site_zip_code=31533 site_time_zone_utc_offset=-5 +County "GA, Colquitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300710.epw site_zip_code=31768 site_time_zone_utc_offset=-5 +County "GA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300730.epw site_zip_code=30809 site_time_zone_utc_offset=-5 +County "GA, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300750.epw site_zip_code=31620 site_time_zone_utc_offset=-5 +County "GA, Coweta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300770.epw site_zip_code=30263 site_time_zone_utc_offset=-5 +County "GA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300790.epw site_zip_code=31078 site_time_zone_utc_offset=-5 +County "GA, Crisp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300810.epw site_zip_code=31015 site_time_zone_utc_offset=-5 +County "GA, Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300830.epw site_zip_code=30752 site_time_zone_utc_offset=-5 +County "GA, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300850.epw site_zip_code=30534 site_time_zone_utc_offset=-5 +County "GA, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300890.epw site_zip_code=30058 site_time_zone_utc_offset=-5 +County "GA, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300870.epw site_zip_code=39819 site_time_zone_utc_offset=-5 +County "GA, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300910.epw site_zip_code=31023 site_time_zone_utc_offset=-5 +County "GA, Dooly County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300930.epw site_zip_code=31092 site_time_zone_utc_offset=-5 +County "GA, Dougherty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300950.epw site_zip_code=31705 site_time_zone_utc_offset=-5 +County "GA, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300970.epw site_zip_code=30135 site_time_zone_utc_offset=-5 +County "GA, Early County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300990.epw site_zip_code=39823 site_time_zone_utc_offset=-5 +County "GA, Echols County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301010.epw site_zip_code=31636 site_time_zone_utc_offset=-5 +County "GA, Effingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301030.epw site_zip_code=31326 site_time_zone_utc_offset=-5 +County "GA, Elbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301050.epw site_zip_code=30635 site_time_zone_utc_offset=-5 +County "GA, Emanuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301070.epw site_zip_code=30401 site_time_zone_utc_offset=-5 +County "GA, Evans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301090.epw site_zip_code=30417 site_time_zone_utc_offset=-5 +County "GA, Fannin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301110.epw site_zip_code=30513 site_time_zone_utc_offset=-5 +County "GA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301130.epw site_zip_code=30269 site_time_zone_utc_offset=-5 +County "GA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301150.epw site_zip_code=30165 site_time_zone_utc_offset=-5 +County "GA, Forsyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301170.epw site_zip_code=30040 site_time_zone_utc_offset=-5 +County "GA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301190.epw site_zip_code=30553 site_time_zone_utc_offset=-5 +County "GA, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301210.epw site_zip_code=30318 site_time_zone_utc_offset=-5 +County "GA, Gilmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301230.epw site_zip_code=30540 site_time_zone_utc_offset=-5 +County "GA, Glascock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301250.epw site_zip_code=30810 site_time_zone_utc_offset=-5 +County "GA, Glynn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301270.epw site_zip_code=31525 site_time_zone_utc_offset=-5 +County "GA, Gordon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301290.epw site_zip_code=30701 site_time_zone_utc_offset=-5 +County "GA, Grady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301310.epw site_zip_code=39828 site_time_zone_utc_offset=-5 +County "GA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301330.epw site_zip_code=30642 site_time_zone_utc_offset=-5 +County "GA, Gwinnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301350.epw site_zip_code=30044 site_time_zone_utc_offset=-5 +County "GA, Habersham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301370.epw site_zip_code=30531 site_time_zone_utc_offset=-5 +County "GA, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301390.epw site_zip_code=30542 site_time_zone_utc_offset=-5 +County "GA, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301410.epw site_zip_code=31087 site_time_zone_utc_offset=-5 +County "GA, Haralson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301430.epw site_zip_code=30110 site_time_zone_utc_offset=-5 +County "GA, Harris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301450.epw site_zip_code=31804 site_time_zone_utc_offset=-5 +County "GA, Hart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301470.epw site_zip_code=30643 site_time_zone_utc_offset=-5 +County "GA, Heard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301490.epw site_zip_code=30217 site_time_zone_utc_offset=-5 +County "GA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301510.epw site_zip_code=30253 site_time_zone_utc_offset=-5 +County "GA, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301530.epw site_zip_code=31088 site_time_zone_utc_offset=-5 +County "GA, Irwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301550.epw site_zip_code=31774 site_time_zone_utc_offset=-5 +County "GA, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301570.epw site_zip_code=30549 site_time_zone_utc_offset=-5 +County "GA, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301590.epw site_zip_code=31064 site_time_zone_utc_offset=-5 +County "GA, Jeff Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301610.epw site_zip_code=31539 site_time_zone_utc_offset=-5 +County "GA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301630.epw site_zip_code=30434 site_time_zone_utc_offset=-5 +County "GA, Jenkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301650.epw site_zip_code=30442 site_time_zone_utc_offset=-5 +County "GA, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301670.epw site_zip_code=31096 site_time_zone_utc_offset=-5 +County "GA, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301690.epw site_zip_code=31032 site_time_zone_utc_offset=-5 +County "GA, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301710.epw site_zip_code=30204 site_time_zone_utc_offset=-5 +County "GA, Lanier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301730.epw site_zip_code=31635 site_time_zone_utc_offset=-5 +County "GA, Laurens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301750.epw site_zip_code=31021 site_time_zone_utc_offset=-5 +County "GA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301770.epw site_zip_code=31763 site_time_zone_utc_offset=-5 +County "GA, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301790.epw site_zip_code=31313 site_time_zone_utc_offset=-5 +County "GA, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301810.epw site_zip_code=30817 site_time_zone_utc_offset=-5 +County "GA, Long County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301830.epw site_zip_code=31316 site_time_zone_utc_offset=-5 +County "GA, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301850.epw site_zip_code=31601 site_time_zone_utc_offset=-5 +County "GA, Lumpkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301870.epw site_zip_code=30533 site_time_zone_utc_offset=-5 +County "GA, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301930.epw site_zip_code=31063 site_time_zone_utc_offset=-5 +County "GA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301950.epw site_zip_code=30633 site_time_zone_utc_offset=-5 +County "GA, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301970.epw site_zip_code=31803 site_time_zone_utc_offset=-5 +County "GA, McDuffie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301890.epw site_zip_code=30824 site_time_zone_utc_offset=-5 +County "GA, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301910.epw site_zip_code=31331 site_time_zone_utc_offset=-5 +County "GA, Meriwether County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301990.epw site_zip_code=31816 site_time_zone_utc_offset=-5 +County "GA, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302010.epw site_zip_code=39837 site_time_zone_utc_offset=-5 +County "GA, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302050.epw site_zip_code=31730 site_time_zone_utc_offset=-5 +County "GA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302070.epw site_zip_code=31029 site_time_zone_utc_offset=-5 +County "GA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302090.epw site_zip_code=30445 site_time_zone_utc_offset=-5 +County "GA, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302110.epw site_zip_code=30650 site_time_zone_utc_offset=-5 +County "GA, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302130.epw site_zip_code=30705 site_time_zone_utc_offset=-5 +County "GA, Muscogee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302150.epw site_zip_code=31907 site_time_zone_utc_offset=-5 +County "GA, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302170.epw site_zip_code=30016 site_time_zone_utc_offset=-5 +County "GA, Oconee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302190.epw site_zip_code=30677 site_time_zone_utc_offset=-5 +County "GA, Oglethorpe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302210.epw site_zip_code=30683 site_time_zone_utc_offset=-5 +County "GA, Paulding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302230.epw site_zip_code=30132 site_time_zone_utc_offset=-5 +County "GA, Peach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302250.epw site_zip_code=31030 site_time_zone_utc_offset=-5 +County "GA, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302270.epw site_zip_code=30143 site_time_zone_utc_offset=-5 +County "GA, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302290.epw site_zip_code=31516 site_time_zone_utc_offset=-5 +County "GA, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302310.epw site_zip_code=30292 site_time_zone_utc_offset=-5 +County "GA, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302330.epw site_zip_code=30125 site_time_zone_utc_offset=-5 +County "GA, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302350.epw site_zip_code=31036 site_time_zone_utc_offset=-5 +County "GA, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302370.epw site_zip_code=31024 site_time_zone_utc_offset=-5 +County "GA, Quitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302390.epw site_zip_code=39854 site_time_zone_utc_offset=-5 +County "GA, Rabun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302410.epw site_zip_code=30525 site_time_zone_utc_offset=-5 +County "GA, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302430.epw site_zip_code=39840 site_time_zone_utc_offset=-5 +County "GA, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302450.epw site_zip_code=30909 site_time_zone_utc_offset=-5 +County "GA, Rockdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302470.epw site_zip_code=30094 site_time_zone_utc_offset=-5 +County "GA, Schley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302490.epw site_zip_code=31806 site_time_zone_utc_offset=-5 +County "GA, Screven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302510.epw site_zip_code=30467 site_time_zone_utc_offset=-5 +County "GA, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302530.epw site_zip_code=39845 site_time_zone_utc_offset=-5 +County "GA, Spalding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302550.epw site_zip_code=30223 site_time_zone_utc_offset=-5 +County "GA, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302570.epw site_zip_code=30577 site_time_zone_utc_offset=-5 +County "GA, Stewart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302590.epw site_zip_code=31825 site_time_zone_utc_offset=-5 +County "GA, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302610.epw site_zip_code=31709 site_time_zone_utc_offset=-5 +County "GA, Talbot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302630.epw site_zip_code=31827 site_time_zone_utc_offset=-5 +County "GA, Taliaferro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302650.epw site_zip_code=30631 site_time_zone_utc_offset=-5 +County "GA, Tattnall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302670.epw site_zip_code=30427 site_time_zone_utc_offset=-5 +County "GA, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302690.epw site_zip_code=31006 site_time_zone_utc_offset=-5 +County "GA, Telfair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302710.epw site_zip_code=31055 site_time_zone_utc_offset=-5 +County "GA, Terrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302730.epw site_zip_code=39842 site_time_zone_utc_offset=-5 +County "GA, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302750.epw site_zip_code=31792 site_time_zone_utc_offset=-5 +County "GA, Tift County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302770.epw site_zip_code=31794 site_time_zone_utc_offset=-5 +County "GA, Toombs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302790.epw site_zip_code=30474 site_time_zone_utc_offset=-5 +County "GA, Towns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302810.epw site_zip_code=30546 site_time_zone_utc_offset=-5 +County "GA, Treutlen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302830.epw site_zip_code=30457 site_time_zone_utc_offset=-5 +County "GA, Troup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302850.epw site_zip_code=30241 site_time_zone_utc_offset=-5 +County "GA, Turner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302870.epw site_zip_code=31714 site_time_zone_utc_offset=-5 +County "GA, Twiggs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302890.epw site_zip_code=31044 site_time_zone_utc_offset=-5 +County "GA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302910.epw site_zip_code=30512 site_time_zone_utc_offset=-5 +County "GA, Upson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302930.epw site_zip_code=30286 site_time_zone_utc_offset=-5 +County "GA, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302950.epw site_zip_code=30741 site_time_zone_utc_offset=-5 +County "GA, Walton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302970.epw site_zip_code=30052 site_time_zone_utc_offset=-5 +County "GA, Ware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302990.epw site_zip_code=31503 site_time_zone_utc_offset=-5 +County "GA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303010.epw site_zip_code=30828 site_time_zone_utc_offset=-5 +County "GA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303030.epw site_zip_code=31082 site_time_zone_utc_offset=-5 +County "GA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303050.epw site_zip_code=31545 site_time_zone_utc_offset=-5 +County "GA, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303070.epw site_zip_code=31824 site_time_zone_utc_offset=-5 +County "GA, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303090.epw site_zip_code=30428 site_time_zone_utc_offset=-5 +County "GA, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303110.epw site_zip_code=30528 site_time_zone_utc_offset=-5 +County "GA, Whitfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303130.epw site_zip_code=30721 site_time_zone_utc_offset=-5 +County "GA, Wilcox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303150.epw site_zip_code=31001 site_time_zone_utc_offset=-5 +County "GA, Wilkes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303170.epw site_zip_code=30673 site_time_zone_utc_offset=-5 +County "GA, Wilkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303190.epw site_zip_code=31031 site_time_zone_utc_offset=-5 +County "GA, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303210.epw site_zip_code=31791 site_time_zone_utc_offset=-5 +County "HI, Hawaii County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500010.epw site_zip_code=96721 site_time_zone_utc_offset=-10 +County "HI, Honolulu County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500030.epw site_zip_code=96813 site_time_zone_utc_offset=-10 +County "HI, Kalawao County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500050.epw site_zip_code=96742 site_time_zone_utc_offset=-10 +County "HI, Kauai County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500070.epw site_zip_code=96746 site_time_zone_utc_offset=-10 +County "HI, Maui County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500090.epw site_zip_code=96793 site_time_zone_utc_offset=-10 +County "IA, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900010.epw site_zip_code=50849 site_time_zone_utc_offset=-6 +County "IA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900030.epw site_zip_code=50841 site_time_zone_utc_offset=-6 +County "IA, Allamakee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900050.epw site_zip_code=52172 site_time_zone_utc_offset=-6 +County "IA, Appanoose County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900070.epw site_zip_code=52544 site_time_zone_utc_offset=-6 +County "IA, Audubon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900090.epw site_zip_code=50025 site_time_zone_utc_offset=-6 +County "IA, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900110.epw site_zip_code=52349 site_time_zone_utc_offset=-6 +County "IA, Black Hawk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900130.epw site_zip_code=50613 site_time_zone_utc_offset=-6 +County "IA, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900150.epw site_zip_code=50036 site_time_zone_utc_offset=-6 +County "IA, Bremer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900170.epw site_zip_code=50677 site_time_zone_utc_offset=-6 +County "IA, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900190.epw site_zip_code=50644 site_time_zone_utc_offset=-6 +County "IA, Buena Vista County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900210.epw site_zip_code=50588 site_time_zone_utc_offset=-6 +County "IA, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900230.epw site_zip_code=50665 site_time_zone_utc_offset=-6 +County "IA, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900250.epw site_zip_code=50563 site_time_zone_utc_offset=-6 +County "IA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900270.epw site_zip_code=51401 site_time_zone_utc_offset=-6 +County "IA, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900290.epw site_zip_code=50022 site_time_zone_utc_offset=-6 +County "IA, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900310.epw site_zip_code=52772 site_time_zone_utc_offset=-6 +County "IA, Cerro Gordo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900330.epw site_zip_code=50401 site_time_zone_utc_offset=-6 +County "IA, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900350.epw site_zip_code=51012 site_time_zone_utc_offset=-6 +County "IA, Chickasaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900370.epw site_zip_code=50659 site_time_zone_utc_offset=-6 +County "IA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900390.epw site_zip_code=50213 site_time_zone_utc_offset=-6 +County "IA, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900410.epw site_zip_code=51301 site_time_zone_utc_offset=-6 +County "IA, Clayton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900430.epw site_zip_code=52052 site_time_zone_utc_offset=-6 +County "IA, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900450.epw site_zip_code=52732 site_time_zone_utc_offset=-6 +County "IA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900470.epw site_zip_code=51442 site_time_zone_utc_offset=-6 +County "IA, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900490.epw site_zip_code=50263 site_time_zone_utc_offset=-6 +County "IA, Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900510.epw site_zip_code=52537 site_time_zone_utc_offset=-6 +County "IA, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900530.epw site_zip_code=50144 site_time_zone_utc_offset=-6 +County "IA, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900550.epw site_zip_code=52057 site_time_zone_utc_offset=-6 +County "IA, Des Moines County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900570.epw site_zip_code=52601 site_time_zone_utc_offset=-6 +County "IA, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900590.epw site_zip_code=51360 site_time_zone_utc_offset=-6 +County "IA, Dubuque County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900610.epw site_zip_code=52001 site_time_zone_utc_offset=-6 +County "IA, Emmet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900630.epw site_zip_code=51334 site_time_zone_utc_offset=-6 +County "IA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900650.epw site_zip_code=50662 site_time_zone_utc_offset=-6 +County "IA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900670.epw site_zip_code=50616 site_time_zone_utc_offset=-6 +County "IA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900690.epw site_zip_code=50441 site_time_zone_utc_offset=-6 +County "IA, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900710.epw site_zip_code=51652 site_time_zone_utc_offset=-6 +County "IA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900730.epw site_zip_code=50129 site_time_zone_utc_offset=-6 +County "IA, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900750.epw site_zip_code=50638 site_time_zone_utc_offset=-6 +County "IA, Guthrie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900770.epw site_zip_code=50216 site_time_zone_utc_offset=-6 +County "IA, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900790.epw site_zip_code=50595 site_time_zone_utc_offset=-6 +County "IA, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900810.epw site_zip_code=50438 site_time_zone_utc_offset=-6 +County "IA, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900830.epw site_zip_code=50126 site_time_zone_utc_offset=-6 +County "IA, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900850.epw site_zip_code=51555 site_time_zone_utc_offset=-6 +County "IA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900870.epw site_zip_code=52641 site_time_zone_utc_offset=-6 +County "IA, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900890.epw site_zip_code=52136 site_time_zone_utc_offset=-6 +County "IA, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900910.epw site_zip_code=50548 site_time_zone_utc_offset=-6 +County "IA, Ida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900930.epw site_zip_code=51445 site_time_zone_utc_offset=-6 +County "IA, Iowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900950.epw site_zip_code=52361 site_time_zone_utc_offset=-6 +County "IA, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900970.epw site_zip_code=52060 site_time_zone_utc_offset=-6 +County "IA, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900990.epw site_zip_code=50208 site_time_zone_utc_offset=-6 +County "IA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901010.epw site_zip_code=52556 site_time_zone_utc_offset=-6 +County "IA, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901030.epw site_zip_code=52240 site_time_zone_utc_offset=-6 +County "IA, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901050.epw site_zip_code=52205 site_time_zone_utc_offset=-6 +County "IA, Keokuk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901070.epw site_zip_code=52591 site_time_zone_utc_offset=-6 +County "IA, Kossuth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901090.epw site_zip_code=50511 site_time_zone_utc_offset=-6 +County "IA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901110.epw site_zip_code=52627 site_time_zone_utc_offset=-6 +County "IA, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901130.epw site_zip_code=52404 site_time_zone_utc_offset=-6 +County "IA, Louisa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901150.epw site_zip_code=52653 site_time_zone_utc_offset=-6 +County "IA, Lucas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901170.epw site_zip_code=50049 site_time_zone_utc_offset=-6 +County "IA, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901190.epw site_zip_code=51246 site_time_zone_utc_offset=-6 +County "IA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901210.epw site_zip_code=50273 site_time_zone_utc_offset=-6 +County "IA, Mahaska County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901230.epw site_zip_code=52577 site_time_zone_utc_offset=-6 +County "IA, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901250.epw site_zip_code=50219 site_time_zone_utc_offset=-6 +County "IA, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901270.epw site_zip_code=50158 site_time_zone_utc_offset=-6 +County "IA, Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901290.epw site_zip_code=51534 site_time_zone_utc_offset=-6 +County "IA, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901310.epw site_zip_code=50461 site_time_zone_utc_offset=-6 +County "IA, Monona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901330.epw site_zip_code=51040 site_time_zone_utc_offset=-6 +County "IA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901350.epw site_zip_code=52531 site_time_zone_utc_offset=-6 +County "IA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901370.epw site_zip_code=51566 site_time_zone_utc_offset=-6 +County "IA, Muscatine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901390.epw site_zip_code=52761 site_time_zone_utc_offset=-6 +County "IA, O'Brien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901410.epw site_zip_code=51201 site_time_zone_utc_offset=-6 +County "IA, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901430.epw site_zip_code=51249 site_time_zone_utc_offset=-6 +County "IA, Page County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901450.epw site_zip_code=51632 site_time_zone_utc_offset=-6 +County "IA, Palo Alto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901470.epw site_zip_code=50536 site_time_zone_utc_offset=-6 +County "IA, Plymouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901490.epw site_zip_code=51031 site_time_zone_utc_offset=-6 +County "IA, Pocahontas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901510.epw site_zip_code=50574 site_time_zone_utc_offset=-6 +County "IA, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901530.epw site_zip_code=50023 site_time_zone_utc_offset=-6 +County "IA, Pottawattamie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901550.epw site_zip_code=51503 site_time_zone_utc_offset=-6 +County "IA, Poweshiek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901570.epw site_zip_code=50112 site_time_zone_utc_offset=-6 +County "IA, Ringgold County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901590.epw site_zip_code=50854 site_time_zone_utc_offset=-6 +County "IA, Sac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901610.epw site_zip_code=50583 site_time_zone_utc_offset=-6 +County "IA, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901630.epw site_zip_code=52722 site_time_zone_utc_offset=-6 +County "IA, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901650.epw site_zip_code=51537 site_time_zone_utc_offset=-6 +County "IA, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901670.epw site_zip_code=51250 site_time_zone_utc_offset=-6 +County "IA, Story County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901690.epw site_zip_code=50010 site_time_zone_utc_offset=-6 +County "IA, Tama County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901710.epw site_zip_code=52339 site_time_zone_utc_offset=-6 +County "IA, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901730.epw site_zip_code=50833 site_time_zone_utc_offset=-6 +County "IA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901750.epw site_zip_code=50801 site_time_zone_utc_offset=-6 +County "IA, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901770.epw site_zip_code=52565 site_time_zone_utc_offset=-6 +County "IA, Wapello County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901790.epw site_zip_code=52501 site_time_zone_utc_offset=-6 +County "IA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901810.epw site_zip_code=50125 site_time_zone_utc_offset=-6 +County "IA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901830.epw site_zip_code=52353 site_time_zone_utc_offset=-6 +County "IA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901850.epw site_zip_code=50060 site_time_zone_utc_offset=-6 +County "IA, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901870.epw site_zip_code=50501 site_time_zone_utc_offset=-6 +County "IA, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901890.epw site_zip_code=50436 site_time_zone_utc_offset=-6 +County "IA, Winneshiek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901910.epw site_zip_code=52101 site_time_zone_utc_offset=-6 +County "IA, Woodbury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901930.epw site_zip_code=51106 site_time_zone_utc_offset=-6 +County "IA, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901950.epw site_zip_code=50459 site_time_zone_utc_offset=-6 +County "IA, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901970.epw site_zip_code=50533 site_time_zone_utc_offset=-6 +County "ID, Ada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600010.epw site_zip_code=83646 site_time_zone_utc_offset=-7 +County "ID, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600030.epw site_zip_code=83612 site_time_zone_utc_offset=-7 +County "ID, Bannock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600050.epw site_zip_code=83201 site_time_zone_utc_offset=-7 +County "ID, Bear Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600070.epw site_zip_code=83254 site_time_zone_utc_offset=-7 +County "ID, Benewah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600090.epw site_zip_code=83861 site_time_zone_utc_offset=-8 +County "ID, Bingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600110.epw site_zip_code=83221 site_time_zone_utc_offset=-7 +County "ID, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600130.epw site_zip_code=83333 site_time_zone_utc_offset=-7 +County "ID, Boise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600150.epw site_zip_code=83716 site_time_zone_utc_offset=-7 +County "ID, Bonner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600170.epw site_zip_code=83864 site_time_zone_utc_offset=-8 +County "ID, Bonneville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600190.epw site_zip_code=83401 site_time_zone_utc_offset=-7 +County "ID, Boundary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600210.epw site_zip_code=83805 site_time_zone_utc_offset=-8 +County "ID, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600230.epw site_zip_code=83213 site_time_zone_utc_offset=-7 +County "ID, Camas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600250.epw site_zip_code=83327 site_time_zone_utc_offset=-7 +County "ID, Canyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600270.epw site_zip_code=83686 site_time_zone_utc_offset=-7 +County "ID, Caribou County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600290.epw site_zip_code=83276 site_time_zone_utc_offset=-7 +County "ID, Cassia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600310.epw site_zip_code=83318 site_time_zone_utc_offset=-7 +County "ID, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600330.epw site_zip_code=83423 site_time_zone_utc_offset=-7 +County "ID, Clearwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600350.epw site_zip_code=83544 site_time_zone_utc_offset=-8 +County "ID, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600370.epw site_zip_code=83226 site_time_zone_utc_offset=-7 +County "ID, Elmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600390.epw site_zip_code=83647 site_time_zone_utc_offset=-7 +County "ID, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600410.epw site_zip_code=83263 site_time_zone_utc_offset=-7 +County "ID, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600430.epw site_zip_code=83445 site_time_zone_utc_offset=-7 +County "ID, Gem County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600450.epw site_zip_code=83617 site_time_zone_utc_offset=-7 +County "ID, Gooding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600470.epw site_zip_code=83330 site_time_zone_utc_offset=-7 +County "ID, Idaho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600490.epw site_zip_code=83530 site_time_zone_utc_offset=-8 +County "ID, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600510.epw site_zip_code=83442 site_time_zone_utc_offset=-7 +County "ID, Jerome County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600530.epw site_zip_code=83338 site_time_zone_utc_offset=-7 +County "ID, Kootenai County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600550.epw site_zip_code=83854 site_time_zone_utc_offset=-8 +County "ID, Latah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600570.epw site_zip_code=83843 site_time_zone_utc_offset=-8 +County "ID, Lemhi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600590.epw site_zip_code=83467 site_time_zone_utc_offset=-7 +County "ID, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600610.epw site_zip_code=83536 site_time_zone_utc_offset=-8 +County "ID, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600630.epw site_zip_code=83352 site_time_zone_utc_offset=-7 +County "ID, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600650.epw site_zip_code=83440 site_time_zone_utc_offset=-7 +County "ID, Minidoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600670.epw site_zip_code=83350 site_time_zone_utc_offset=-7 +County "ID, Nez Perce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600690.epw site_zip_code=83501 site_time_zone_utc_offset=-8 +County "ID, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600710.epw site_zip_code=83252 site_time_zone_utc_offset=-7 +County "ID, Owyhee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600730.epw site_zip_code=83628 site_time_zone_utc_offset=-7 +County "ID, Payette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600750.epw site_zip_code=83661 site_time_zone_utc_offset=-7 +County "ID, Power County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600770.epw site_zip_code=83211 site_time_zone_utc_offset=-7 +County "ID, Shoshone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600790.epw site_zip_code=83837 site_time_zone_utc_offset=-8 +County "ID, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600810.epw site_zip_code=83455 site_time_zone_utc_offset=-7 +County "ID, Twin Falls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600830.epw site_zip_code=83301 site_time_zone_utc_offset=-7 +County "ID, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600850.epw site_zip_code=83638 site_time_zone_utc_offset=-7 +County "ID, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600870.epw site_zip_code=83672 site_time_zone_utc_offset=-7 +County "IL, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700010.epw site_zip_code=62301 site_time_zone_utc_offset=-6 +County "IL, Alexander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700030.epw site_zip_code=62914 site_time_zone_utc_offset=-6 +County "IL, Bond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700050.epw site_zip_code=62246 site_time_zone_utc_offset=-6 +County "IL, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700070.epw site_zip_code=61008 site_time_zone_utc_offset=-6 +County "IL, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700090.epw site_zip_code=62353 site_time_zone_utc_offset=-6 +County "IL, Bureau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700110.epw site_zip_code=61356 site_time_zone_utc_offset=-6 +County "IL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700130.epw site_zip_code=62047 site_time_zone_utc_offset=-6 +County "IL, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700150.epw site_zip_code=61074 site_time_zone_utc_offset=-6 +County "IL, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700170.epw site_zip_code=62618 site_time_zone_utc_offset=-6 +County "IL, Champaign County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700190.epw site_zip_code=61820 site_time_zone_utc_offset=-6 +County "IL, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700210.epw site_zip_code=62568 site_time_zone_utc_offset=-6 +County "IL, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700230.epw site_zip_code=62441 site_time_zone_utc_offset=-6 +County "IL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700250.epw site_zip_code=62839 site_time_zone_utc_offset=-6 +County "IL, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700270.epw site_zip_code=62231 site_time_zone_utc_offset=-6 +County "IL, Coles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700290.epw site_zip_code=61938 site_time_zone_utc_offset=-6 +County "IL, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700310.epw site_zip_code=60657 site_time_zone_utc_offset=-6 +County "IL, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700330.epw site_zip_code=62454 site_time_zone_utc_offset=-6 +County "IL, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700350.epw site_zip_code=62428 site_time_zone_utc_offset=-6 +County "IL, De Witt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700390.epw site_zip_code=61727 site_time_zone_utc_offset=-6 +County "IL, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700370.epw site_zip_code=60115 site_time_zone_utc_offset=-6 +County "IL, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700410.epw site_zip_code=61953 site_time_zone_utc_offset=-6 +County "IL, DuPage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700430.epw site_zip_code=60148 site_time_zone_utc_offset=-6 +County "IL, Edgar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700450.epw site_zip_code=61944 site_time_zone_utc_offset=-6 +County "IL, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700470.epw site_zip_code=62806 site_time_zone_utc_offset=-6 +County "IL, Effingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700490.epw site_zip_code=62401 site_time_zone_utc_offset=-6 +County "IL, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700510.epw site_zip_code=62471 site_time_zone_utc_offset=-6 +County "IL, Ford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700530.epw site_zip_code=60957 site_time_zone_utc_offset=-6 +County "IL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700550.epw site_zip_code=62896 site_time_zone_utc_offset=-6 +County "IL, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700570.epw site_zip_code=61520 site_time_zone_utc_offset=-6 +County "IL, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700590.epw site_zip_code=62984 site_time_zone_utc_offset=-6 +County "IL, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700610.epw site_zip_code=62016 site_time_zone_utc_offset=-6 +County "IL, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700630.epw site_zip_code=60450 site_time_zone_utc_offset=-6 +County "IL, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700650.epw site_zip_code=62859 site_time_zone_utc_offset=-6 +County "IL, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700670.epw site_zip_code=62321 site_time_zone_utc_offset=-6 +County "IL, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700690.epw site_zip_code=62931 site_time_zone_utc_offset=-6 +County "IL, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700710.epw site_zip_code=61469 site_time_zone_utc_offset=-6 +County "IL, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700730.epw site_zip_code=61443 site_time_zone_utc_offset=-6 +County "IL, Iroquois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700750.epw site_zip_code=60970 site_time_zone_utc_offset=-6 +County "IL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700770.epw site_zip_code=62901 site_time_zone_utc_offset=-6 +County "IL, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700790.epw site_zip_code=62448 site_time_zone_utc_offset=-6 +County "IL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700810.epw site_zip_code=62864 site_time_zone_utc_offset=-6 +County "IL, Jersey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700830.epw site_zip_code=62052 site_time_zone_utc_offset=-6 +County "IL, Jo Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700850.epw site_zip_code=61036 site_time_zone_utc_offset=-6 +County "IL, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700870.epw site_zip_code=62995 site_time_zone_utc_offset=-6 +County "IL, Kane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700890.epw site_zip_code=60506 site_time_zone_utc_offset=-6 +County "IL, Kankakee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700910.epw site_zip_code=60901 site_time_zone_utc_offset=-6 +County "IL, Kendall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700930.epw site_zip_code=60543 site_time_zone_utc_offset=-6 +County "IL, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700950.epw site_zip_code=61401 site_time_zone_utc_offset=-6 +County "IL, LaSalle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700990.epw site_zip_code=61350 site_time_zone_utc_offset=-6 +County "IL, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700970.epw site_zip_code=60085 site_time_zone_utc_offset=-6 +County "IL, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701010.epw site_zip_code=62439 site_time_zone_utc_offset=-6 +County "IL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701030.epw site_zip_code=61021 site_time_zone_utc_offset=-6 +County "IL, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701050.epw site_zip_code=61764 site_time_zone_utc_offset=-6 +County "IL, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701070.epw site_zip_code=62656 site_time_zone_utc_offset=-6 +County "IL, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701150.epw site_zip_code=62521 site_time_zone_utc_offset=-6 +County "IL, Macoupin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701170.epw site_zip_code=62626 site_time_zone_utc_offset=-6 +County "IL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701190.epw site_zip_code=62040 site_time_zone_utc_offset=-6 +County "IL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701210.epw site_zip_code=62801 site_time_zone_utc_offset=-6 +County "IL, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701230.epw site_zip_code=61540 site_time_zone_utc_offset=-6 +County "IL, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701250.epw site_zip_code=62644 site_time_zone_utc_offset=-6 +County "IL, Massac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701270.epw site_zip_code=62960 site_time_zone_utc_offset=-6 +County "IL, McDonough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701090.epw site_zip_code=61455 site_time_zone_utc_offset=-6 +County "IL, McHenry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701110.epw site_zip_code=60014 site_time_zone_utc_offset=-6 +County "IL, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701130.epw site_zip_code=61761 site_time_zone_utc_offset=-6 +County "IL, Menard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701290.epw site_zip_code=62675 site_time_zone_utc_offset=-6 +County "IL, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701310.epw site_zip_code=61231 site_time_zone_utc_offset=-6 +County "IL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701330.epw site_zip_code=62298 site_time_zone_utc_offset=-6 +County "IL, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701350.epw site_zip_code=62056 site_time_zone_utc_offset=-6 +County "IL, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701370.epw site_zip_code=62650 site_time_zone_utc_offset=-6 +County "IL, Moultrie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701390.epw site_zip_code=61951 site_time_zone_utc_offset=-6 +County "IL, Ogle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701410.epw site_zip_code=61068 site_time_zone_utc_offset=-6 +County "IL, Peoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701430.epw site_zip_code=61604 site_time_zone_utc_offset=-6 +County "IL, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701450.epw site_zip_code=62832 site_time_zone_utc_offset=-6 +County "IL, Piatt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701470.epw site_zip_code=61856 site_time_zone_utc_offset=-6 +County "IL, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701490.epw site_zip_code=62363 site_time_zone_utc_offset=-6 +County "IL, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701510.epw site_zip_code=62938 site_time_zone_utc_offset=-6 +County "IL, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701530.epw site_zip_code=62964 site_time_zone_utc_offset=-6 +County "IL, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701550.epw site_zip_code=61326 site_time_zone_utc_offset=-6 +County "IL, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701570.epw site_zip_code=62286 site_time_zone_utc_offset=-6 +County "IL, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701590.epw site_zip_code=62450 site_time_zone_utc_offset=-6 +County "IL, Rock Island County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701610.epw site_zip_code=61265 site_time_zone_utc_offset=-6 +County "IL, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701650.epw site_zip_code=62946 site_time_zone_utc_offset=-6 +County "IL, Sangamon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701670.epw site_zip_code=62704 site_time_zone_utc_offset=-6 +County "IL, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701690.epw site_zip_code=62681 site_time_zone_utc_offset=-6 +County "IL, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701710.epw site_zip_code=62694 site_time_zone_utc_offset=-6 +County "IL, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701730.epw site_zip_code=62565 site_time_zone_utc_offset=-6 +County "IL, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701630.epw site_zip_code=62269 site_time_zone_utc_offset=-6 +County "IL, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701750.epw site_zip_code=61491 site_time_zone_utc_offset=-6 +County "IL, Stephenson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701770.epw site_zip_code=61032 site_time_zone_utc_offset=-6 +County "IL, Tazewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701790.epw site_zip_code=61554 site_time_zone_utc_offset=-6 +County "IL, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701810.epw site_zip_code=62906 site_time_zone_utc_offset=-6 +County "IL, Vermilion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701830.epw site_zip_code=61832 site_time_zone_utc_offset=-6 +County "IL, Wabash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701850.epw site_zip_code=62863 site_time_zone_utc_offset=-6 +County "IL, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701870.epw site_zip_code=61462 site_time_zone_utc_offset=-6 +County "IL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701890.epw site_zip_code=62263 site_time_zone_utc_offset=-6 +County "IL, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701910.epw site_zip_code=62837 site_time_zone_utc_offset=-6 +County "IL, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701930.epw site_zip_code=62821 site_time_zone_utc_offset=-6 +County "IL, Whiteside County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701950.epw site_zip_code=61081 site_time_zone_utc_offset=-6 +County "IL, Will County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701970.epw site_zip_code=60435 site_time_zone_utc_offset=-6 +County "IL, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701990.epw site_zip_code=62959 site_time_zone_utc_offset=-6 +County "IL, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1702010.epw site_zip_code=61107 site_time_zone_utc_offset=-6 +County "IL, Woodford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1702030.epw site_zip_code=61548 site_time_zone_utc_offset=-6 +County "IN, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800010.epw site_zip_code=46733 site_time_zone_utc_offset=-5 +County "IN, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800030.epw site_zip_code=46835 site_time_zone_utc_offset=-5 +County "IN, Bartholomew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800050.epw site_zip_code=47201 site_time_zone_utc_offset=-5 +County "IN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800070.epw site_zip_code=47944 site_time_zone_utc_offset=-5 +County "IN, Blackford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800090.epw site_zip_code=47348 site_time_zone_utc_offset=-5 +County "IN, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800110.epw site_zip_code=46077 site_time_zone_utc_offset=-5 +County "IN, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800130.epw site_zip_code=47448 site_time_zone_utc_offset=-5 +County "IN, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800150.epw site_zip_code=46923 site_time_zone_utc_offset=-5 +County "IN, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800170.epw site_zip_code=46947 site_time_zone_utc_offset=-5 +County "IN, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800190.epw site_zip_code=47130 site_time_zone_utc_offset=-5 +County "IN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800210.epw site_zip_code=47834 site_time_zone_utc_offset=-5 +County "IN, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800230.epw site_zip_code=46041 site_time_zone_utc_offset=-5 +County "IN, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800250.epw site_zip_code=47118 site_time_zone_utc_offset=-5 +County "IN, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800270.epw site_zip_code=47501 site_time_zone_utc_offset=-5 +County "IN, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800330.epw site_zip_code=46706 site_time_zone_utc_offset=-5 +County "IN, Dearborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800290.epw site_zip_code=47025 site_time_zone_utc_offset=-5 +County "IN, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800310.epw site_zip_code=47240 site_time_zone_utc_offset=-5 +County "IN, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800350.epw site_zip_code=47304 site_time_zone_utc_offset=-5 +County "IN, Dubois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800370.epw site_zip_code=47546 site_time_zone_utc_offset=-5 +County "IN, Elkhart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800390.epw site_zip_code=46514 site_time_zone_utc_offset=-5 +County "IN, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800410.epw site_zip_code=47331 site_time_zone_utc_offset=-5 +County "IN, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800430.epw site_zip_code=47150 site_time_zone_utc_offset=-5 +County "IN, Fountain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800450.epw site_zip_code=47918 site_time_zone_utc_offset=-5 +County "IN, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800470.epw site_zip_code=47012 site_time_zone_utc_offset=-5 +County "IN, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800490.epw site_zip_code=46975 site_time_zone_utc_offset=-5 +County "IN, Gibson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800510.epw site_zip_code=47670 site_time_zone_utc_offset=-6 +County "IN, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800530.epw site_zip_code=46953 site_time_zone_utc_offset=-5 +County "IN, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800550.epw site_zip_code=47441 site_time_zone_utc_offset=-5 +County "IN, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800570.epw site_zip_code=46032 site_time_zone_utc_offset=-5 +County "IN, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800590.epw site_zip_code=46140 site_time_zone_utc_offset=-5 +County "IN, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800610.epw site_zip_code=47112 site_time_zone_utc_offset=-5 +County "IN, Hendricks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800630.epw site_zip_code=46112 site_time_zone_utc_offset=-5 +County "IN, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800650.epw site_zip_code=47362 site_time_zone_utc_offset=-5 +County "IN, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800670.epw site_zip_code=46901 site_time_zone_utc_offset=-5 +County "IN, Huntington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800690.epw site_zip_code=46750 site_time_zone_utc_offset=-5 +County "IN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800710.epw site_zip_code=47274 site_time_zone_utc_offset=-5 +County "IN, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800730.epw site_zip_code=47978 site_time_zone_utc_offset=-6 +County "IN, Jay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800750.epw site_zip_code=47371 site_time_zone_utc_offset=-5 +County "IN, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800770.epw site_zip_code=47250 site_time_zone_utc_offset=-5 +County "IN, Jennings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800790.epw site_zip_code=47265 site_time_zone_utc_offset=-5 +County "IN, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800810.epw site_zip_code=46143 site_time_zone_utc_offset=-5 +County "IN, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800830.epw site_zip_code=47591 site_time_zone_utc_offset=-5 +County "IN, Kosciusko County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800850.epw site_zip_code=46580 site_time_zone_utc_offset=-5 +County "IN, LaGrange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800870.epw site_zip_code=46761 site_time_zone_utc_offset=-5 +County "IN, LaPorte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800910.epw site_zip_code=46360 site_time_zone_utc_offset=-6 +County "IN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800890.epw site_zip_code=46307 site_time_zone_utc_offset=-6 +County "IN, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800930.epw site_zip_code=47421 site_time_zone_utc_offset=-5 +County "IN, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800950.epw site_zip_code=46016 site_time_zone_utc_offset=-5 +County "IN, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800970.epw site_zip_code=46227 site_time_zone_utc_offset=-5 +County "IN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800990.epw site_zip_code=46563 site_time_zone_utc_offset=-5 +County "IN, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801010.epw site_zip_code=47581 site_time_zone_utc_offset=-5 +County "IN, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801030.epw site_zip_code=46970 site_time_zone_utc_offset=-5 +County "IN, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801050.epw site_zip_code=47401 site_time_zone_utc_offset=-5 +County "IN, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801070.epw site_zip_code=47933 site_time_zone_utc_offset=-5 +County "IN, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801090.epw site_zip_code=46151 site_time_zone_utc_offset=-5 +County "IN, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801110.epw site_zip_code=46349 site_time_zone_utc_offset=-6 +County "IN, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801130.epw site_zip_code=46755 site_time_zone_utc_offset=-5 +County "IN, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801150.epw site_zip_code=47040 site_time_zone_utc_offset=-5 +County "IN, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801170.epw site_zip_code=47454 site_time_zone_utc_offset=-5 +County "IN, Owen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801190.epw site_zip_code=47460 site_time_zone_utc_offset=-5 +County "IN, Parke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801210.epw site_zip_code=47872 site_time_zone_utc_offset=-5 +County "IN, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801230.epw site_zip_code=47586 site_time_zone_utc_offset=-6 +County "IN, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801250.epw site_zip_code=47567 site_time_zone_utc_offset=-5 +County "IN, Porter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801270.epw site_zip_code=46383 site_time_zone_utc_offset=-6 +County "IN, Posey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801290.epw site_zip_code=47620 site_time_zone_utc_offset=-6 +County "IN, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801310.epw site_zip_code=46996 site_time_zone_utc_offset=-5 +County "IN, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801330.epw site_zip_code=46135 site_time_zone_utc_offset=-5 +County "IN, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801350.epw site_zip_code=47394 site_time_zone_utc_offset=-5 +County "IN, Ripley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801370.epw site_zip_code=47006 site_time_zone_utc_offset=-5 +County "IN, Rush County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801390.epw site_zip_code=46173 site_time_zone_utc_offset=-5 +County "IN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801430.epw site_zip_code=47170 site_time_zone_utc_offset=-5 +County "IN, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801450.epw site_zip_code=46176 site_time_zone_utc_offset=-5 +County "IN, Spencer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801470.epw site_zip_code=47635 site_time_zone_utc_offset=-6 +County "IN, St. Joseph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801410.epw site_zip_code=46544 site_time_zone_utc_offset=-5 +County "IN, Starke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801490.epw site_zip_code=46534 site_time_zone_utc_offset=-6 +County "IN, Steuben County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801510.epw site_zip_code=46703 site_time_zone_utc_offset=-5 +County "IN, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801530.epw site_zip_code=47882 site_time_zone_utc_offset=-5 +County "IN, Switzerland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801550.epw site_zip_code=47043 site_time_zone_utc_offset=-5 +County "IN, Tippecanoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801570.epw site_zip_code=47906 site_time_zone_utc_offset=-5 +County "IN, Tipton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801590.epw site_zip_code=46072 site_time_zone_utc_offset=-5 +County "IN, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801610.epw site_zip_code=47353 site_time_zone_utc_offset=-5 +County "IN, Vanderburgh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801630.epw site_zip_code=47714 site_time_zone_utc_offset=-6 +County "IN, Vermillion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801650.epw site_zip_code=47842 site_time_zone_utc_offset=-5 +County "IN, Vigo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801670.epw site_zip_code=47802 site_time_zone_utc_offset=-5 +County "IN, Wabash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801690.epw site_zip_code=46992 site_time_zone_utc_offset=-5 +County "IN, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801710.epw site_zip_code=47993 site_time_zone_utc_offset=-5 +County "IN, Warrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801730.epw site_zip_code=47630 site_time_zone_utc_offset=-6 +County "IN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801750.epw site_zip_code=47167 site_time_zone_utc_offset=-5 +County "IN, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801770.epw site_zip_code=47374 site_time_zone_utc_offset=-5 +County "IN, Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801790.epw site_zip_code=46714 site_time_zone_utc_offset=-5 +County "IN, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801810.epw site_zip_code=47960 site_time_zone_utc_offset=-5 +County "IN, Whitley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801830.epw site_zip_code=46725 site_time_zone_utc_offset=-5 +County "KS, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000010.epw site_zip_code=66749 site_time_zone_utc_offset=-6 +County "KS, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000030.epw site_zip_code=66032 site_time_zone_utc_offset=-6 +County "KS, Atchison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000050.epw site_zip_code=66002 site_time_zone_utc_offset=-6 +County "KS, Barber County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000070.epw site_zip_code=67104 site_time_zone_utc_offset=-6 +County "KS, Barton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000090.epw site_zip_code=67530 site_time_zone_utc_offset=-6 +County "KS, Bourbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000110.epw site_zip_code=66701 site_time_zone_utc_offset=-6 +County "KS, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000130.epw site_zip_code=66434 site_time_zone_utc_offset=-6 +County "KS, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000150.epw site_zip_code=67042 site_time_zone_utc_offset=-6 +County "KS, Chase County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000170.epw site_zip_code=66845 site_time_zone_utc_offset=-6 +County "KS, Chautauqua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000190.epw site_zip_code=67361 site_time_zone_utc_offset=-6 +County "KS, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000210.epw site_zip_code=66713 site_time_zone_utc_offset=-6 +County "KS, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000230.epw site_zip_code=67756 site_time_zone_utc_offset=-6 +County "KS, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000250.epw site_zip_code=67865 site_time_zone_utc_offset=-6 +County "KS, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000270.epw site_zip_code=67432 site_time_zone_utc_offset=-6 +County "KS, Cloud County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000290.epw site_zip_code=66901 site_time_zone_utc_offset=-6 +County "KS, Coffey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000310.epw site_zip_code=66839 site_time_zone_utc_offset=-6 +County "KS, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000330.epw site_zip_code=67029 site_time_zone_utc_offset=-6 +County "KS, Cowley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000350.epw site_zip_code=67005 site_time_zone_utc_offset=-6 +County "KS, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000370.epw site_zip_code=66762 site_time_zone_utc_offset=-6 +County "KS, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000390.epw site_zip_code=67749 site_time_zone_utc_offset=-6 +County "KS, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000410.epw site_zip_code=67410 site_time_zone_utc_offset=-6 +County "KS, Doniphan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000430.epw site_zip_code=66090 site_time_zone_utc_offset=-6 +County "KS, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000450.epw site_zip_code=66049 site_time_zone_utc_offset=-6 +County "KS, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000470.epw site_zip_code=67547 site_time_zone_utc_offset=-6 +County "KS, Elk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000490.epw site_zip_code=67349 site_time_zone_utc_offset=-6 +County "KS, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000510.epw site_zip_code=67601 site_time_zone_utc_offset=-6 +County "KS, Ellsworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000530.epw site_zip_code=67439 site_time_zone_utc_offset=-6 +County "KS, Finney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000550.epw site_zip_code=67846 site_time_zone_utc_offset=-6 +County "KS, Ford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000570.epw site_zip_code=67801 site_time_zone_utc_offset=-6 +County "KS, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000590.epw site_zip_code=66067 site_time_zone_utc_offset=-6 +County "KS, Geary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000610.epw site_zip_code=66441 site_time_zone_utc_offset=-6 +County "KS, Gove County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000630.epw site_zip_code=67752 site_time_zone_utc_offset=-6 +County "KS, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000650.epw site_zip_code=67642 site_time_zone_utc_offset=-6 +County "KS, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000670.epw site_zip_code=67880 site_time_zone_utc_offset=-6 +County "KS, Gray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000690.epw site_zip_code=67867 site_time_zone_utc_offset=-6 +County "KS, Greeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000710.epw site_zip_code=67879 site_time_zone_utc_offset=-7 +County "KS, Greenwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000730.epw site_zip_code=67045 site_time_zone_utc_offset=-6 +County "KS, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000750.epw site_zip_code=67878 site_time_zone_utc_offset=-7 +County "KS, Harper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000770.epw site_zip_code=67003 site_time_zone_utc_offset=-6 +County "KS, Harvey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000790.epw site_zip_code=67114 site_time_zone_utc_offset=-6 +County "KS, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000810.epw site_zip_code=67877 site_time_zone_utc_offset=-6 +County "KS, Hodgeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000830.epw site_zip_code=67854 site_time_zone_utc_offset=-6 +County "KS, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000850.epw site_zip_code=66436 site_time_zone_utc_offset=-6 +County "KS, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000870.epw site_zip_code=66512 site_time_zone_utc_offset=-6 +County "KS, Jewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000890.epw site_zip_code=66956 site_time_zone_utc_offset=-6 +County "KS, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000910.epw site_zip_code=66062 site_time_zone_utc_offset=-6 +County "KS, Kearny County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000930.epw site_zip_code=67860 site_time_zone_utc_offset=-6 +County "KS, Kingman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000950.epw site_zip_code=67068 site_time_zone_utc_offset=-6 +County "KS, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000970.epw site_zip_code=67054 site_time_zone_utc_offset=-6 +County "KS, Labette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000990.epw site_zip_code=67357 site_time_zone_utc_offset=-6 +County "KS, Lane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001010.epw site_zip_code=67839 site_time_zone_utc_offset=-6 +County "KS, Leavenworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001030.epw site_zip_code=66048 site_time_zone_utc_offset=-6 +County "KS, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001050.epw site_zip_code=67455 site_time_zone_utc_offset=-6 +County "KS, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001070.epw site_zip_code=66040 site_time_zone_utc_offset=-6 +County "KS, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001090.epw site_zip_code=67748 site_time_zone_utc_offset=-6 +County "KS, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001110.epw site_zip_code=66801 site_time_zone_utc_offset=-6 +County "KS, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001150.epw site_zip_code=67063 site_time_zone_utc_offset=-6 +County "KS, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001170.epw site_zip_code=66508 site_time_zone_utc_offset=-6 +County "KS, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001130.epw site_zip_code=67460 site_time_zone_utc_offset=-6 +County "KS, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001190.epw site_zip_code=67864 site_time_zone_utc_offset=-6 +County "KS, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001210.epw site_zip_code=66071 site_time_zone_utc_offset=-6 +County "KS, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001230.epw site_zip_code=67420 site_time_zone_utc_offset=-6 +County "KS, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001250.epw site_zip_code=67301 site_time_zone_utc_offset=-6 +County "KS, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001270.epw site_zip_code=66846 site_time_zone_utc_offset=-6 +County "KS, Morton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001290.epw site_zip_code=67950 site_time_zone_utc_offset=-6 +County "KS, Nemaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001310.epw site_zip_code=66538 site_time_zone_utc_offset=-6 +County "KS, Neosho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001330.epw site_zip_code=66720 site_time_zone_utc_offset=-6 +County "KS, Ness County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001350.epw site_zip_code=67560 site_time_zone_utc_offset=-6 +County "KS, Norton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001370.epw site_zip_code=67654 site_time_zone_utc_offset=-6 +County "KS, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001390.epw site_zip_code=66523 site_time_zone_utc_offset=-6 +County "KS, Osborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001410.epw site_zip_code=67473 site_time_zone_utc_offset=-6 +County "KS, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001430.epw site_zip_code=67467 site_time_zone_utc_offset=-6 +County "KS, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001450.epw site_zip_code=67550 site_time_zone_utc_offset=-6 +County "KS, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001470.epw site_zip_code=67661 site_time_zone_utc_offset=-6 +County "KS, Pottawatomie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001490.epw site_zip_code=66547 site_time_zone_utc_offset=-6 +County "KS, Pratt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001510.epw site_zip_code=67124 site_time_zone_utc_offset=-6 +County "KS, Rawlins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001530.epw site_zip_code=67730 site_time_zone_utc_offset=-6 +County "KS, Reno County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001550.epw site_zip_code=67501 site_time_zone_utc_offset=-6 +County "KS, Republic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001570.epw site_zip_code=66935 site_time_zone_utc_offset=-6 +County "KS, Rice County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001590.epw site_zip_code=67554 site_time_zone_utc_offset=-6 +County "KS, Riley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001610.epw site_zip_code=66502 site_time_zone_utc_offset=-6 +County "KS, Rooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001630.epw site_zip_code=67663 site_time_zone_utc_offset=-6 +County "KS, Rush County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001650.epw site_zip_code=67548 site_time_zone_utc_offset=-6 +County "KS, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001670.epw site_zip_code=67665 site_time_zone_utc_offset=-6 +County "KS, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001690.epw site_zip_code=67401 site_time_zone_utc_offset=-6 +County "KS, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001710.epw site_zip_code=67871 site_time_zone_utc_offset=-6 +County "KS, Sedgwick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001730.epw site_zip_code=67212 site_time_zone_utc_offset=-6 +County "KS, Seward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001750.epw site_zip_code=67901 site_time_zone_utc_offset=-6 +County "KS, Shawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001770.epw site_zip_code=66614 site_time_zone_utc_offset=-6 +County "KS, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001790.epw site_zip_code=67740 site_time_zone_utc_offset=-6 +County "KS, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001810.epw site_zip_code=67735 site_time_zone_utc_offset=-7 +County "KS, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001830.epw site_zip_code=66967 site_time_zone_utc_offset=-6 +County "KS, Stafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001850.epw site_zip_code=67576 site_time_zone_utc_offset=-6 +County "KS, Stanton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001870.epw site_zip_code=67855 site_time_zone_utc_offset=-6 +County "KS, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001890.epw site_zip_code=67951 site_time_zone_utc_offset=-6 +County "KS, Sumner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001910.epw site_zip_code=67152 site_time_zone_utc_offset=-6 +County "KS, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001930.epw site_zip_code=67701 site_time_zone_utc_offset=-6 +County "KS, Trego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001950.epw site_zip_code=67672 site_time_zone_utc_offset=-6 +County "KS, Wabaunsee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001970.epw site_zip_code=66401 site_time_zone_utc_offset=-6 +County "KS, Wallace County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001990.epw site_zip_code=67758 site_time_zone_utc_offset=-7 +County "KS, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002010.epw site_zip_code=66968 site_time_zone_utc_offset=-6 +County "KS, Wichita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002030.epw site_zip_code=67861 site_time_zone_utc_offset=-6 +County "KS, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002050.epw site_zip_code=66736 site_time_zone_utc_offset=-6 +County "KS, Woodson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002070.epw site_zip_code=66783 site_time_zone_utc_offset=-6 +County "KS, Wyandotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002090.epw site_zip_code=66102 site_time_zone_utc_offset=-6 +County "KY, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100010.epw site_zip_code=42728 site_time_zone_utc_offset=-6 +County "KY, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100030.epw site_zip_code=42164 site_time_zone_utc_offset=-6 +County "KY, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100050.epw site_zip_code=40342 site_time_zone_utc_offset=-5 +County "KY, Ballard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100070.epw site_zip_code=42053 site_time_zone_utc_offset=-6 +County "KY, Barren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100090.epw site_zip_code=42141 site_time_zone_utc_offset=-6 +County "KY, Bath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100110.epw site_zip_code=40360 site_time_zone_utc_offset=-5 +County "KY, Bell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100130.epw site_zip_code=40965 site_time_zone_utc_offset=-5 +County "KY, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100150.epw site_zip_code=41042 site_time_zone_utc_offset=-5 +County "KY, Bourbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100170.epw site_zip_code=40361 site_time_zone_utc_offset=-5 +County "KY, Boyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100190.epw site_zip_code=41102 site_time_zone_utc_offset=-5 +County "KY, Boyle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100210.epw site_zip_code=40422 site_time_zone_utc_offset=-5 +County "KY, Bracken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100230.epw site_zip_code=41004 site_time_zone_utc_offset=-5 +County "KY, Breathitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100250.epw site_zip_code=41339 site_time_zone_utc_offset=-5 +County "KY, Breckinridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100270.epw site_zip_code=40143 site_time_zone_utc_offset=-6 +County "KY, Bullitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100290.epw site_zip_code=40165 site_time_zone_utc_offset=-5 +County "KY, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100310.epw site_zip_code=42261 site_time_zone_utc_offset=-6 +County "KY, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100330.epw site_zip_code=42445 site_time_zone_utc_offset=-6 +County "KY, Calloway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100350.epw site_zip_code=42071 site_time_zone_utc_offset=-6 +County "KY, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100370.epw site_zip_code=41071 site_time_zone_utc_offset=-5 +County "KY, Carlisle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100390.epw site_zip_code=42023 site_time_zone_utc_offset=-6 +County "KY, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100410.epw site_zip_code=41008 site_time_zone_utc_offset=-5 +County "KY, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100430.epw site_zip_code=41143 site_time_zone_utc_offset=-5 +County "KY, Casey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100450.epw site_zip_code=42539 site_time_zone_utc_offset=-5 +County "KY, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100470.epw site_zip_code=42240 site_time_zone_utc_offset=-6 +County "KY, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100490.epw site_zip_code=40391 site_time_zone_utc_offset=-5 +County "KY, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100510.epw site_zip_code=40962 site_time_zone_utc_offset=-5 +County "KY, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100530.epw site_zip_code=42602 site_time_zone_utc_offset=-6 +County "KY, Crittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100550.epw site_zip_code=42064 site_time_zone_utc_offset=-6 +County "KY, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100570.epw site_zip_code=42717 site_time_zone_utc_offset=-6 +County "KY, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100590.epw site_zip_code=42301 site_time_zone_utc_offset=-6 +County "KY, Edmonson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100610.epw site_zip_code=42210 site_time_zone_utc_offset=-6 +County "KY, Elliott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100630.epw site_zip_code=41171 site_time_zone_utc_offset=-5 +County "KY, Estill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100650.epw site_zip_code=40336 site_time_zone_utc_offset=-5 +County "KY, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100670.epw site_zip_code=40509 site_time_zone_utc_offset=-5 +County "KY, Fleming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100690.epw site_zip_code=41041 site_time_zone_utc_offset=-5 +County "KY, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100710.epw site_zip_code=41653 site_time_zone_utc_offset=-5 +County "KY, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100730.epw site_zip_code=40601 site_time_zone_utc_offset=-5 +County "KY, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100750.epw site_zip_code=42041 site_time_zone_utc_offset=-6 +County "KY, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100770.epw site_zip_code=41095 site_time_zone_utc_offset=-5 +County "KY, Garrard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100790.epw site_zip_code=40444 site_time_zone_utc_offset=-5 +County "KY, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100810.epw site_zip_code=41035 site_time_zone_utc_offset=-5 +County "KY, Graves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100830.epw site_zip_code=42066 site_time_zone_utc_offset=-6 +County "KY, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100850.epw site_zip_code=42754 site_time_zone_utc_offset=-6 +County "KY, Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100870.epw site_zip_code=42743 site_time_zone_utc_offset=-6 +County "KY, Greenup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100890.epw site_zip_code=41144 site_time_zone_utc_offset=-5 +County "KY, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100910.epw site_zip_code=42348 site_time_zone_utc_offset=-6 +County "KY, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100930.epw site_zip_code=42701 site_time_zone_utc_offset=-5 +County "KY, Harlan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100950.epw site_zip_code=40831 site_time_zone_utc_offset=-5 +County "KY, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100970.epw site_zip_code=41031 site_time_zone_utc_offset=-5 +County "KY, Hart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100990.epw site_zip_code=42765 site_time_zone_utc_offset=-6 +County "KY, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101010.epw site_zip_code=42420 site_time_zone_utc_offset=-6 +County "KY, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101030.epw site_zip_code=40019 site_time_zone_utc_offset=-5 +County "KY, Hickman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101050.epw site_zip_code=42031 site_time_zone_utc_offset=-6 +County "KY, Hopkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101070.epw site_zip_code=42431 site_time_zone_utc_offset=-6 +County "KY, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101090.epw site_zip_code=40447 site_time_zone_utc_offset=-5 +County "KY, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101110.epw site_zip_code=40214 site_time_zone_utc_offset=-5 +County "KY, Jessamine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101130.epw site_zip_code=40356 site_time_zone_utc_offset=-5 +County "KY, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101150.epw site_zip_code=41240 site_time_zone_utc_offset=-5 +County "KY, Kenton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101170.epw site_zip_code=41017 site_time_zone_utc_offset=-5 +County "KY, Knott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101190.epw site_zip_code=41822 site_time_zone_utc_offset=-5 +County "KY, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101210.epw site_zip_code=40906 site_time_zone_utc_offset=-5 +County "KY, Larue County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101230.epw site_zip_code=42748 site_time_zone_utc_offset=-5 +County "KY, Laurel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101250.epw site_zip_code=40741 site_time_zone_utc_offset=-5 +County "KY, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101270.epw site_zip_code=41230 site_time_zone_utc_offset=-5 +County "KY, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101290.epw site_zip_code=41311 site_time_zone_utc_offset=-5 +County "KY, Leslie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101310.epw site_zip_code=41749 site_time_zone_utc_offset=-5 +County "KY, Letcher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101330.epw site_zip_code=41858 site_time_zone_utc_offset=-5 +County "KY, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101350.epw site_zip_code=41179 site_time_zone_utc_offset=-5 +County "KY, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101370.epw site_zip_code=40484 site_time_zone_utc_offset=-5 +County "KY, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101390.epw site_zip_code=42045 site_time_zone_utc_offset=-6 +County "KY, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101410.epw site_zip_code=42276 site_time_zone_utc_offset=-6 +County "KY, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101430.epw site_zip_code=42038 site_time_zone_utc_offset=-6 +County "KY, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101510.epw site_zip_code=40475 site_time_zone_utc_offset=-5 +County "KY, Magoffin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101530.epw site_zip_code=41465 site_time_zone_utc_offset=-5 +County "KY, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101550.epw site_zip_code=40033 site_time_zone_utc_offset=-5 +County "KY, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101570.epw site_zip_code=42025 site_time_zone_utc_offset=-6 +County "KY, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101590.epw site_zip_code=41224 site_time_zone_utc_offset=-5 +County "KY, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101610.epw site_zip_code=41056 site_time_zone_utc_offset=-5 +County "KY, McCracken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101450.epw site_zip_code=42001 site_time_zone_utc_offset=-6 +County "KY, McCreary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101470.epw site_zip_code=42653 site_time_zone_utc_offset=-5 +County "KY, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101490.epw site_zip_code=42327 site_time_zone_utc_offset=-6 +County "KY, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101630.epw site_zip_code=40108 site_time_zone_utc_offset=-5 +County "KY, Menifee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101650.epw site_zip_code=40322 site_time_zone_utc_offset=-5 +County "KY, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101670.epw site_zip_code=40330 site_time_zone_utc_offset=-5 +County "KY, Metcalfe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101690.epw site_zip_code=42129 site_time_zone_utc_offset=-6 +County "KY, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101710.epw site_zip_code=42167 site_time_zone_utc_offset=-6 +County "KY, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101730.epw site_zip_code=40353 site_time_zone_utc_offset=-5 +County "KY, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101750.epw site_zip_code=41472 site_time_zone_utc_offset=-5 +County "KY, Muhlenberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101770.epw site_zip_code=42345 site_time_zone_utc_offset=-6 +County "KY, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101790.epw site_zip_code=40004 site_time_zone_utc_offset=-5 +County "KY, Nicholas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101810.epw site_zip_code=40311 site_time_zone_utc_offset=-5 +County "KY, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101830.epw site_zip_code=42320 site_time_zone_utc_offset=-6 +County "KY, Oldham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101850.epw site_zip_code=40014 site_time_zone_utc_offset=-5 +County "KY, Owen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101870.epw site_zip_code=40359 site_time_zone_utc_offset=-5 +County "KY, Owsley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101890.epw site_zip_code=41314 site_time_zone_utc_offset=-5 +County "KY, Pendleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101910.epw site_zip_code=41040 site_time_zone_utc_offset=-5 +County "KY, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101930.epw site_zip_code=41701 site_time_zone_utc_offset=-5 +County "KY, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101950.epw site_zip_code=41501 site_time_zone_utc_offset=-5 +County "KY, Powell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101970.epw site_zip_code=40380 site_time_zone_utc_offset=-5 +County "KY, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101990.epw site_zip_code=42503 site_time_zone_utc_offset=-5 +County "KY, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102010.epw site_zip_code=41064 site_time_zone_utc_offset=-5 +County "KY, Rockcastle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102030.epw site_zip_code=40456 site_time_zone_utc_offset=-5 +County "KY, Rowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102050.epw site_zip_code=40351 site_time_zone_utc_offset=-5 +County "KY, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102070.epw site_zip_code=42642 site_time_zone_utc_offset=-6 +County "KY, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102090.epw site_zip_code=40324 site_time_zone_utc_offset=-5 +County "KY, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102110.epw site_zip_code=40065 site_time_zone_utc_offset=-5 +County "KY, Simpson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102130.epw site_zip_code=42134 site_time_zone_utc_offset=-6 +County "KY, Spencer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102150.epw site_zip_code=40071 site_time_zone_utc_offset=-5 +County "KY, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102170.epw site_zip_code=42718 site_time_zone_utc_offset=-5 +County "KY, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102190.epw site_zip_code=42220 site_time_zone_utc_offset=-6 +County "KY, Trigg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102210.epw site_zip_code=42211 site_time_zone_utc_offset=-6 +County "KY, Trimble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102230.epw site_zip_code=40006 site_time_zone_utc_offset=-5 +County "KY, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102250.epw site_zip_code=42437 site_time_zone_utc_offset=-6 +County "KY, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102270.epw site_zip_code=42101 site_time_zone_utc_offset=-6 +County "KY, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102290.epw site_zip_code=40069 site_time_zone_utc_offset=-5 +County "KY, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102310.epw site_zip_code=42633 site_time_zone_utc_offset=-5 +County "KY, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102330.epw site_zip_code=42450 site_time_zone_utc_offset=-6 +County "KY, Whitley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102350.epw site_zip_code=40769 site_time_zone_utc_offset=-5 +County "KY, Wolfe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102370.epw site_zip_code=41301 site_time_zone_utc_offset=-5 +County "KY, Woodford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102390.epw site_zip_code=40383 site_time_zone_utc_offset=-5 +County "LA, Acadia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200010.epw site_zip_code=70526 site_time_zone_utc_offset=-6 +County "LA, Allen Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200030.epw site_zip_code=71463 site_time_zone_utc_offset=-6 +County "LA, Ascension Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200050.epw site_zip_code=70737 site_time_zone_utc_offset=-6 +County "LA, Assumption Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200070.epw site_zip_code=70339 site_time_zone_utc_offset=-6 +County "LA, Avoyelles Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200090.epw site_zip_code=71351 site_time_zone_utc_offset=-6 +County "LA, Beauregard Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200110.epw site_zip_code=70634 site_time_zone_utc_offset=-6 +County "LA, Bienville Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200130.epw site_zip_code=71001 site_time_zone_utc_offset=-6 +County "LA, Bossier Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200150.epw site_zip_code=71111 site_time_zone_utc_offset=-6 +County "LA, Caddo Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200170.epw site_zip_code=71106 site_time_zone_utc_offset=-6 +County "LA, Calcasieu Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200190.epw site_zip_code=70605 site_time_zone_utc_offset=-6 +County "LA, Caldwell Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200210.epw site_zip_code=71418 site_time_zone_utc_offset=-6 +County "LA, Cameron Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200230.epw site_zip_code=70607 site_time_zone_utc_offset=-6 +County "LA, Catahoula Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200250.epw site_zip_code=71343 site_time_zone_utc_offset=-6 +County "LA, Claiborne Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200270.epw site_zip_code=71040 site_time_zone_utc_offset=-6 +County "LA, Concordia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200290.epw site_zip_code=71334 site_time_zone_utc_offset=-6 +County "LA, De Soto Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200310.epw site_zip_code=71052 site_time_zone_utc_offset=-6 +County "LA, East Baton Rouge Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200330.epw site_zip_code=70816 site_time_zone_utc_offset=-6 +County "LA, East Carroll Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200350.epw site_zip_code=71254 site_time_zone_utc_offset=-6 +County "LA, East Feliciana Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200370.epw site_zip_code=70722 site_time_zone_utc_offset=-6 +County "LA, Evangeline Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200390.epw site_zip_code=70586 site_time_zone_utc_offset=-6 +County "LA, Franklin Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200410.epw site_zip_code=71295 site_time_zone_utc_offset=-6 +County "LA, Grant Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200430.epw site_zip_code=71467 site_time_zone_utc_offset=-6 +County "LA, Iberia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200450.epw site_zip_code=70560 site_time_zone_utc_offset=-6 +County "LA, Iberville Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200470.epw site_zip_code=70764 site_time_zone_utc_offset=-6 +County "LA, Jackson Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200490.epw site_zip_code=71251 site_time_zone_utc_offset=-6 +County "LA, Jefferson Davis Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200530.epw site_zip_code=70546 site_time_zone_utc_offset=-6 +County "LA, Jefferson Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200510.epw site_zip_code=70072 site_time_zone_utc_offset=-6 +County "LA, La Salle Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200590.epw site_zip_code=71342 site_time_zone_utc_offset=-6 +County "LA, Lafayette Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200550.epw site_zip_code=70506 site_time_zone_utc_offset=-6 +County "LA, Lafourche Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200570.epw site_zip_code=70301 site_time_zone_utc_offset=-6 +County "LA, Lincoln Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200610.epw site_zip_code=71270 site_time_zone_utc_offset=-6 +County "LA, Livingston Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200630.epw site_zip_code=70726 site_time_zone_utc_offset=-6 +County "LA, Madison Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200650.epw site_zip_code=71282 site_time_zone_utc_offset=-6 +County "LA, Morehouse Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200670.epw site_zip_code=71220 site_time_zone_utc_offset=-6 +County "LA, Natchitoches Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200690.epw site_zip_code=71457 site_time_zone_utc_offset=-6 +County "LA, Orleans Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200710.epw site_zip_code=70119 site_time_zone_utc_offset=-6 +County "LA, Ouachita Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200730.epw site_zip_code=71203 site_time_zone_utc_offset=-6 +County "LA, Plaquemines Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200750.epw site_zip_code=70037 site_time_zone_utc_offset=-6 +County "LA, Pointe Coupee Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200770.epw site_zip_code=70760 site_time_zone_utc_offset=-6 +County "LA, Rapides Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200790.epw site_zip_code=71360 site_time_zone_utc_offset=-6 +County "LA, Red River Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200810.epw site_zip_code=71019 site_time_zone_utc_offset=-6 +County "LA, Richland Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200830.epw site_zip_code=71269 site_time_zone_utc_offset=-6 +County "LA, Sabine Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200850.epw site_zip_code=71449 site_time_zone_utc_offset=-6 +County "LA, St. Bernard Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200870.epw site_zip_code=70043 site_time_zone_utc_offset=-6 +County "LA, St. Charles Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200890.epw site_zip_code=70070 site_time_zone_utc_offset=-6 +County "LA, St. Helena Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200910.epw site_zip_code=70441 site_time_zone_utc_offset=-6 +County "LA, St. James Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200930.epw site_zip_code=70090 site_time_zone_utc_offset=-6 +County "LA, St. John the Baptist Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200950.epw site_zip_code=70068 site_time_zone_utc_offset=-6 +County "LA, St. Landry Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200970.epw site_zip_code=70570 site_time_zone_utc_offset=-6 +County "LA, St. Martin Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200990.epw site_zip_code=70517 site_time_zone_utc_offset=-6 +County "LA, St. Mary Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201010.epw site_zip_code=70380 site_time_zone_utc_offset=-6 +County "LA, St. Tammany Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201030.epw site_zip_code=70433 site_time_zone_utc_offset=-6 +County "LA, Tangipahoa Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201050.epw site_zip_code=70454 site_time_zone_utc_offset=-6 +County "LA, Tensas Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201070.epw site_zip_code=71366 site_time_zone_utc_offset=-6 +County "LA, Terrebonne Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201090.epw site_zip_code=70360 site_time_zone_utc_offset=-6 +County "LA, Union Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201110.epw site_zip_code=71241 site_time_zone_utc_offset=-6 +County "LA, Vermilion Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201130.epw site_zip_code=70510 site_time_zone_utc_offset=-6 +County "LA, Vernon Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201150.epw site_zip_code=71446 site_time_zone_utc_offset=-6 +County "LA, Washington Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201170.epw site_zip_code=70427 site_time_zone_utc_offset=-6 +County "LA, Webster Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201190.epw site_zip_code=71055 site_time_zone_utc_offset=-6 +County "LA, West Baton Rouge Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201210.epw site_zip_code=70767 site_time_zone_utc_offset=-6 +County "LA, West Carroll Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201230.epw site_zip_code=71263 site_time_zone_utc_offset=-6 +County "LA, West Feliciana Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201250.epw site_zip_code=70775 site_time_zone_utc_offset=-6 +County "LA, Winn Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201270.epw site_zip_code=71483 site_time_zone_utc_offset=-6 +County "MA, Barnstable County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500010.epw site_zip_code=02536 site_time_zone_utc_offset=-5 +County "MA, Berkshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500030.epw site_zip_code=01201 site_time_zone_utc_offset=-5 +County "MA, Bristol County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500050.epw site_zip_code=02780 site_time_zone_utc_offset=-5 +County "MA, Dukes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500070.epw site_zip_code=02568 site_time_zone_utc_offset=-5 +County "MA, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500090.epw site_zip_code=01960 site_time_zone_utc_offset=-5 +County "MA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500110.epw site_zip_code=01301 site_time_zone_utc_offset=-5 +County "MA, Hampden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500130.epw site_zip_code=01085 site_time_zone_utc_offset=-5 +County "MA, Hampshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500150.epw site_zip_code=01002 site_time_zone_utc_offset=-5 +County "MA, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500170.epw site_zip_code=02148 site_time_zone_utc_offset=-5 +County "MA, Nantucket County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500190.epw site_zip_code=02554 site_time_zone_utc_offset=-5 +County "MA, Norfolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500210.epw site_zip_code=02169 site_time_zone_utc_offset=-5 +County "MA, Plymouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500230.epw site_zip_code=02360 site_time_zone_utc_offset=-5 +County "MA, Suffolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500250.epw site_zip_code=02151 site_time_zone_utc_offset=-5 +County "MA, Worcester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500270.epw site_zip_code=01453 site_time_zone_utc_offset=-5 +County "MD, Allegany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400010.epw site_zip_code=21502 site_time_zone_utc_offset=-5 +County "MD, Anne Arundel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400030.epw site_zip_code=21122 site_time_zone_utc_offset=-5 +County "MD, Baltimore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400050.epw site_zip_code=21117 site_time_zone_utc_offset=-5 +County "MD, Baltimore city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2405100.epw site_zip_code=21215 site_time_zone_utc_offset=-5 +County "MD, Calvert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400090.epw site_zip_code=20657 site_time_zone_utc_offset=-5 +County "MD, Caroline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400110.epw site_zip_code=21629 site_time_zone_utc_offset=-5 +County "MD, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400130.epw site_zip_code=21157 site_time_zone_utc_offset=-5 +County "MD, Cecil County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400150.epw site_zip_code=21921 site_time_zone_utc_offset=-5 +County "MD, Charles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400170.epw site_zip_code=20603 site_time_zone_utc_offset=-5 +County "MD, Dorchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400190.epw site_zip_code=21613 site_time_zone_utc_offset=-5 +County "MD, Frederick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400210.epw site_zip_code=21702 site_time_zone_utc_offset=-5 +County "MD, Garrett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400230.epw site_zip_code=21550 site_time_zone_utc_offset=-5 +County "MD, Harford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400250.epw site_zip_code=21014 site_time_zone_utc_offset=-5 +County "MD, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400270.epw site_zip_code=21044 site_time_zone_utc_offset=-5 +County "MD, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400290.epw site_zip_code=21620 site_time_zone_utc_offset=-5 +County "MD, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400310.epw site_zip_code=20906 site_time_zone_utc_offset=-5 +County "MD, Prince George's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400330.epw site_zip_code=20774 site_time_zone_utc_offset=-5 +County "MD, Queen Anne's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400350.epw site_zip_code=21666 site_time_zone_utc_offset=-5 +County "MD, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400390.epw site_zip_code=21853 site_time_zone_utc_offset=-5 +County "MD, St. Mary's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400370.epw site_zip_code=20653 site_time_zone_utc_offset=-5 +County "MD, Talbot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400410.epw site_zip_code=21601 site_time_zone_utc_offset=-5 +County "MD, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400430.epw site_zip_code=21740 site_time_zone_utc_offset=-5 +County "MD, Wicomico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400450.epw site_zip_code=21804 site_time_zone_utc_offset=-5 +County "MD, Worcester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400470.epw site_zip_code=21842 site_time_zone_utc_offset=-5 +County "ME, Androscoggin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300010.epw site_zip_code=04240 site_time_zone_utc_offset=-5 +County "ME, Aroostook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300030.epw site_zip_code=04769 site_time_zone_utc_offset=-5 +County "ME, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300050.epw site_zip_code=04103 site_time_zone_utc_offset=-5 +County "ME, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300070.epw site_zip_code=04938 site_time_zone_utc_offset=-5 +County "ME, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300090.epw site_zip_code=04605 site_time_zone_utc_offset=-5 +County "ME, Kennebec County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300110.epw site_zip_code=04901 site_time_zone_utc_offset=-5 +County "ME, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300130.epw site_zip_code=04841 site_time_zone_utc_offset=-5 +County "ME, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300150.epw site_zip_code=04572 site_time_zone_utc_offset=-5 +County "ME, Oxford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300170.epw site_zip_code=04276 site_time_zone_utc_offset=-5 +County "ME, Penobscot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300190.epw site_zip_code=04401 site_time_zone_utc_offset=-5 +County "ME, Piscataquis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300210.epw site_zip_code=04426 site_time_zone_utc_offset=-5 +County "ME, Sagadahoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300230.epw site_zip_code=04530 site_time_zone_utc_offset=-5 +County "ME, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300250.epw site_zip_code=04976 site_time_zone_utc_offset=-5 +County "ME, Waldo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300270.epw site_zip_code=04915 site_time_zone_utc_offset=-5 +County "ME, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300290.epw site_zip_code=04654 site_time_zone_utc_offset=-5 +County "ME, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300310.epw site_zip_code=04005 site_time_zone_utc_offset=-5 +County "MI, Alcona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600010.epw site_zip_code=48740 site_time_zone_utc_offset=-5 +County "MI, Alger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600030.epw site_zip_code=49862 site_time_zone_utc_offset=-5 +County "MI, Allegan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600050.epw site_zip_code=49010 site_time_zone_utc_offset=-5 +County "MI, Alpena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600070.epw site_zip_code=49707 site_time_zone_utc_offset=-5 +County "MI, Antrim County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600090.epw site_zip_code=49615 site_time_zone_utc_offset=-5 +County "MI, Arenac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600110.epw site_zip_code=48658 site_time_zone_utc_offset=-5 +County "MI, Baraga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600130.epw site_zip_code=49946 site_time_zone_utc_offset=-5 +County "MI, Barry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600150.epw site_zip_code=49058 site_time_zone_utc_offset=-5 +County "MI, Bay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600170.epw site_zip_code=48706 site_time_zone_utc_offset=-5 +County "MI, Benzie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600190.epw site_zip_code=49635 site_time_zone_utc_offset=-5 +County "MI, Berrien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600210.epw site_zip_code=49022 site_time_zone_utc_offset=-5 +County "MI, Branch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600230.epw site_zip_code=49036 site_time_zone_utc_offset=-5 +County "MI, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600250.epw site_zip_code=49015 site_time_zone_utc_offset=-5 +County "MI, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600270.epw site_zip_code=49047 site_time_zone_utc_offset=-5 +County "MI, Charlevoix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600290.epw site_zip_code=49720 site_time_zone_utc_offset=-5 +County "MI, Cheboygan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600310.epw site_zip_code=49721 site_time_zone_utc_offset=-5 +County "MI, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600330.epw site_zip_code=49783 site_time_zone_utc_offset=-5 +County "MI, Clare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600350.epw site_zip_code=48625 site_time_zone_utc_offset=-5 +County "MI, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600370.epw site_zip_code=48820 site_time_zone_utc_offset=-5 +County "MI, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600390.epw site_zip_code=49738 site_time_zone_utc_offset=-5 +County "MI, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600410.epw site_zip_code=49829 site_time_zone_utc_offset=-5 +County "MI, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600430.epw site_zip_code=49801 site_time_zone_utc_offset=-6 +County "MI, Eaton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600450.epw site_zip_code=48917 site_time_zone_utc_offset=-5 +County "MI, Emmet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600470.epw site_zip_code=49770 site_time_zone_utc_offset=-5 +County "MI, Genesee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600490.epw site_zip_code=48439 site_time_zone_utc_offset=-5 +County "MI, Gladwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600510.epw site_zip_code=48624 site_time_zone_utc_offset=-5 +County "MI, Gogebic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600530.epw site_zip_code=49938 site_time_zone_utc_offset=-6 +County "MI, Grand Traverse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600550.epw site_zip_code=49686 site_time_zone_utc_offset=-5 +County "MI, Gratiot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600570.epw site_zip_code=48801 site_time_zone_utc_offset=-5 +County "MI, Hillsdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600590.epw site_zip_code=49242 site_time_zone_utc_offset=-5 +County "MI, Houghton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600610.epw site_zip_code=49931 site_time_zone_utc_offset=-5 +County "MI, Huron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600630.epw site_zip_code=48413 site_time_zone_utc_offset=-5 +County "MI, Ingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600650.epw site_zip_code=48823 site_time_zone_utc_offset=-5 +County "MI, Ionia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600670.epw site_zip_code=48846 site_time_zone_utc_offset=-5 +County "MI, Iosco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600690.epw site_zip_code=48750 site_time_zone_utc_offset=-5 +County "MI, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600710.epw site_zip_code=49935 site_time_zone_utc_offset=-6 +County "MI, Isabella County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600730.epw site_zip_code=48858 site_time_zone_utc_offset=-5 +County "MI, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600750.epw site_zip_code=49201 site_time_zone_utc_offset=-5 +County "MI, Kalamazoo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600770.epw site_zip_code=49009 site_time_zone_utc_offset=-5 +County "MI, Kalkaska County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600790.epw site_zip_code=49646 site_time_zone_utc_offset=-5 +County "MI, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600810.epw site_zip_code=49503 site_time_zone_utc_offset=-5 +County "MI, Keweenaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600830.epw site_zip_code=49950 site_time_zone_utc_offset=-5 +County "MI, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600850.epw site_zip_code=49304 site_time_zone_utc_offset=-5 +County "MI, Lapeer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600870.epw site_zip_code=48446 site_time_zone_utc_offset=-5 +County "MI, Leelanau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600890.epw site_zip_code=49684 site_time_zone_utc_offset=-5 +County "MI, Lenawee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600910.epw site_zip_code=49221 site_time_zone_utc_offset=-5 +County "MI, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600930.epw site_zip_code=48843 site_time_zone_utc_offset=-5 +County "MI, Luce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600950.epw site_zip_code=49868 site_time_zone_utc_offset=-5 +County "MI, Mackinac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600970.epw site_zip_code=49781 site_time_zone_utc_offset=-5 +County "MI, Macomb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600990.epw site_zip_code=48038 site_time_zone_utc_offset=-5 +County "MI, Manistee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601010.epw site_zip_code=49660 site_time_zone_utc_offset=-5 +County "MI, Marquette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601030.epw site_zip_code=49855 site_time_zone_utc_offset=-5 +County "MI, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601050.epw site_zip_code=49431 site_time_zone_utc_offset=-5 +County "MI, Mecosta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601070.epw site_zip_code=49307 site_time_zone_utc_offset=-5 +County "MI, Menominee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601090.epw site_zip_code=49858 site_time_zone_utc_offset=-6 +County "MI, Midland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601110.epw site_zip_code=48642 site_time_zone_utc_offset=-5 +County "MI, Missaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601130.epw site_zip_code=49651 site_time_zone_utc_offset=-5 +County "MI, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601150.epw site_zip_code=48162 site_time_zone_utc_offset=-5 +County "MI, Montcalm County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601170.epw site_zip_code=48838 site_time_zone_utc_offset=-5 +County "MI, Montmorency County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601190.epw site_zip_code=49709 site_time_zone_utc_offset=-5 +County "MI, Muskegon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601210.epw site_zip_code=49442 site_time_zone_utc_offset=-5 +County "MI, Newaygo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601230.epw site_zip_code=49337 site_time_zone_utc_offset=-5 +County "MI, Oakland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601250.epw site_zip_code=48307 site_time_zone_utc_offset=-5 +County "MI, Oceana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601270.epw site_zip_code=49420 site_time_zone_utc_offset=-5 +County "MI, Ogemaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601290.epw site_zip_code=48661 site_time_zone_utc_offset=-5 +County "MI, Ontonagon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601310.epw site_zip_code=49953 site_time_zone_utc_offset=-5 +County "MI, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601330.epw site_zip_code=49631 site_time_zone_utc_offset=-5 +County "MI, Oscoda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601350.epw site_zip_code=48647 site_time_zone_utc_offset=-5 +County "MI, Otsego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601370.epw site_zip_code=49735 site_time_zone_utc_offset=-5 +County "MI, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601390.epw site_zip_code=49424 site_time_zone_utc_offset=-5 +County "MI, Presque Isle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601410.epw site_zip_code=49779 site_time_zone_utc_offset=-5 +County "MI, Roscommon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601430.epw site_zip_code=48629 site_time_zone_utc_offset=-5 +County "MI, Saginaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601450.epw site_zip_code=48601 site_time_zone_utc_offset=-5 +County "MI, Sanilac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601510.epw site_zip_code=48450 site_time_zone_utc_offset=-5 +County "MI, Schoolcraft County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601530.epw site_zip_code=49854 site_time_zone_utc_offset=-5 +County "MI, Shiawassee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601550.epw site_zip_code=48867 site_time_zone_utc_offset=-5 +County "MI, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601470.epw site_zip_code=48060 site_time_zone_utc_offset=-5 +County "MI, St. Joseph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601490.epw site_zip_code=49091 site_time_zone_utc_offset=-5 +County "MI, Tuscola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601570.epw site_zip_code=48723 site_time_zone_utc_offset=-5 +County "MI, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601590.epw site_zip_code=49090 site_time_zone_utc_offset=-5 +County "MI, Washtenaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601610.epw site_zip_code=48197 site_time_zone_utc_offset=-5 +County "MI, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601630.epw site_zip_code=48180 site_time_zone_utc_offset=-5 +County "MI, Wexford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601650.epw site_zip_code=49601 site_time_zone_utc_offset=-5 +County "MN, Aitkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700010.epw site_zip_code=56431 site_time_zone_utc_offset=-6 +County "MN, Anoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700030.epw site_zip_code=55303 site_time_zone_utc_offset=-6 +County "MN, Becker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700050.epw site_zip_code=56501 site_time_zone_utc_offset=-6 +County "MN, Beltrami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700070.epw site_zip_code=56601 site_time_zone_utc_offset=-6 +County "MN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700090.epw site_zip_code=56379 site_time_zone_utc_offset=-6 +County "MN, Big Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700110.epw site_zip_code=56278 site_time_zone_utc_offset=-6 +County "MN, Blue Earth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700130.epw site_zip_code=56001 site_time_zone_utc_offset=-6 +County "MN, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700150.epw site_zip_code=56073 site_time_zone_utc_offset=-6 +County "MN, Carlton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700170.epw site_zip_code=55720 site_time_zone_utc_offset=-6 +County "MN, Carver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700190.epw site_zip_code=55318 site_time_zone_utc_offset=-6 +County "MN, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700210.epw site_zip_code=56474 site_time_zone_utc_offset=-6 +County "MN, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700230.epw site_zip_code=56265 site_time_zone_utc_offset=-6 +County "MN, Chisago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700250.epw site_zip_code=55056 site_time_zone_utc_offset=-6 +County "MN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700270.epw site_zip_code=56560 site_time_zone_utc_offset=-6 +County "MN, Clearwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700290.epw site_zip_code=56621 site_time_zone_utc_offset=-6 +County "MN, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700310.epw site_zip_code=55604 site_time_zone_utc_offset=-6 +County "MN, Cottonwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700330.epw site_zip_code=56101 site_time_zone_utc_offset=-6 +County "MN, Crow Wing County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700350.epw site_zip_code=56401 site_time_zone_utc_offset=-6 +County "MN, Dakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700370.epw site_zip_code=55124 site_time_zone_utc_offset=-6 +County "MN, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700390.epw site_zip_code=55944 site_time_zone_utc_offset=-6 +County "MN, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700410.epw site_zip_code=56308 site_time_zone_utc_offset=-6 +County "MN, Faribault County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700430.epw site_zip_code=56013 site_time_zone_utc_offset=-6 +County "MN, Fillmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700450.epw site_zip_code=55975 site_time_zone_utc_offset=-6 +County "MN, Freeborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700470.epw site_zip_code=56007 site_time_zone_utc_offset=-6 +County "MN, Goodhue County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700490.epw site_zip_code=55066 site_time_zone_utc_offset=-6 +County "MN, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700510.epw site_zip_code=56531 site_time_zone_utc_offset=-6 +County "MN, Hennepin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700530.epw site_zip_code=55408 site_time_zone_utc_offset=-6 +County "MN, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700550.epw site_zip_code=55947 site_time_zone_utc_offset=-6 +County "MN, Hubbard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700570.epw site_zip_code=56470 site_time_zone_utc_offset=-6 +County "MN, Isanti County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700590.epw site_zip_code=55008 site_time_zone_utc_offset=-6 +County "MN, Itasca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700610.epw site_zip_code=55744 site_time_zone_utc_offset=-6 +County "MN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700630.epw site_zip_code=56143 site_time_zone_utc_offset=-6 +County "MN, Kanabec County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700650.epw site_zip_code=55051 site_time_zone_utc_offset=-6 +County "MN, Kandiyohi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700670.epw site_zip_code=56201 site_time_zone_utc_offset=-6 +County "MN, Kittson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700690.epw site_zip_code=56728 site_time_zone_utc_offset=-6 +County "MN, Koochiching County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700710.epw site_zip_code=56649 site_time_zone_utc_offset=-6 +County "MN, Lac qui Parle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700730.epw site_zip_code=56256 site_time_zone_utc_offset=-6 +County "MN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700750.epw site_zip_code=55616 site_time_zone_utc_offset=-6 +County "MN, Lake of the Woods County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700770.epw site_zip_code=56623 site_time_zone_utc_offset=-6 +County "MN, Le Sueur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700790.epw site_zip_code=56058 site_time_zone_utc_offset=-6 +County "MN, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700810.epw site_zip_code=56178 site_time_zone_utc_offset=-6 +County "MN, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700830.epw site_zip_code=56258 site_time_zone_utc_offset=-6 +County "MN, Mahnomen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700870.epw site_zip_code=56557 site_time_zone_utc_offset=-6 +County "MN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700890.epw site_zip_code=56762 site_time_zone_utc_offset=-6 +County "MN, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700910.epw site_zip_code=56031 site_time_zone_utc_offset=-6 +County "MN, McLeod County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700850.epw site_zip_code=55350 site_time_zone_utc_offset=-6 +County "MN, Meeker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700930.epw site_zip_code=55355 site_time_zone_utc_offset=-6 +County "MN, Mille Lacs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700950.epw site_zip_code=56353 site_time_zone_utc_offset=-6 +County "MN, Morrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700970.epw site_zip_code=56345 site_time_zone_utc_offset=-6 +County "MN, Mower County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700990.epw site_zip_code=55912 site_time_zone_utc_offset=-6 +County "MN, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701010.epw site_zip_code=56172 site_time_zone_utc_offset=-6 +County "MN, Nicollet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701030.epw site_zip_code=56003 site_time_zone_utc_offset=-6 +County "MN, Nobles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701050.epw site_zip_code=56187 site_time_zone_utc_offset=-6 +County "MN, Norman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701070.epw site_zip_code=56510 site_time_zone_utc_offset=-6 +County "MN, Olmsted County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701090.epw site_zip_code=55901 site_time_zone_utc_offset=-6 +County "MN, Otter Tail County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701110.epw site_zip_code=56537 site_time_zone_utc_offset=-6 +County "MN, Pennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701130.epw site_zip_code=56701 site_time_zone_utc_offset=-6 +County "MN, Pine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701150.epw site_zip_code=55063 site_time_zone_utc_offset=-6 +County "MN, Pipestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701170.epw site_zip_code=56164 site_time_zone_utc_offset=-6 +County "MN, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701190.epw site_zip_code=56721 site_time_zone_utc_offset=-6 +County "MN, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701210.epw site_zip_code=56334 site_time_zone_utc_offset=-6 +County "MN, Ramsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701230.epw site_zip_code=55106 site_time_zone_utc_offset=-6 +County "MN, Red Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701250.epw site_zip_code=56750 site_time_zone_utc_offset=-6 +County "MN, Redwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701270.epw site_zip_code=56283 site_time_zone_utc_offset=-6 +County "MN, Renville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701290.epw site_zip_code=56277 site_time_zone_utc_offset=-6 +County "MN, Rice County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701310.epw site_zip_code=55021 site_time_zone_utc_offset=-6 +County "MN, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701330.epw site_zip_code=56156 site_time_zone_utc_offset=-6 +County "MN, Roseau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701350.epw site_zip_code=56751 site_time_zone_utc_offset=-6 +County "MN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701390.epw site_zip_code=55379 site_time_zone_utc_offset=-6 +County "MN, Sherburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701410.epw site_zip_code=55330 site_time_zone_utc_offset=-6 +County "MN, Sibley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701430.epw site_zip_code=55334 site_time_zone_utc_offset=-6 +County "MN, St. Louis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701370.epw site_zip_code=55811 site_time_zone_utc_offset=-6 +County "MN, Stearns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701450.epw site_zip_code=56301 site_time_zone_utc_offset=-6 +County "MN, Steele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701470.epw site_zip_code=55060 site_time_zone_utc_offset=-6 +County "MN, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701490.epw site_zip_code=56267 site_time_zone_utc_offset=-6 +County "MN, Swift County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701510.epw site_zip_code=56215 site_time_zone_utc_offset=-6 +County "MN, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701530.epw site_zip_code=56347 site_time_zone_utc_offset=-6 +County "MN, Traverse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701550.epw site_zip_code=56296 site_time_zone_utc_offset=-6 +County "MN, Wabasha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701570.epw site_zip_code=55041 site_time_zone_utc_offset=-6 +County "MN, Wadena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701590.epw site_zip_code=56482 site_time_zone_utc_offset=-6 +County "MN, Waseca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701610.epw site_zip_code=56093 site_time_zone_utc_offset=-6 +County "MN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701630.epw site_zip_code=55125 site_time_zone_utc_offset=-6 +County "MN, Watonwan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701650.epw site_zip_code=56081 site_time_zone_utc_offset=-6 +County "MN, Wilkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701670.epw site_zip_code=56520 site_time_zone_utc_offset=-6 +County "MN, Winona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701690.epw site_zip_code=55987 site_time_zone_utc_offset=-6 +County "MN, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701710.epw site_zip_code=55313 site_time_zone_utc_offset=-6 +County "MN, Yellow Medicine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701730.epw site_zip_code=56220 site_time_zone_utc_offset=-6 +County "MO, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900010.epw site_zip_code=63501 site_time_zone_utc_offset=-6 +County "MO, Andrew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900030.epw site_zip_code=64485 site_time_zone_utc_offset=-6 +County "MO, Atchison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900050.epw site_zip_code=64491 site_time_zone_utc_offset=-6 +County "MO, Audrain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900070.epw site_zip_code=65265 site_time_zone_utc_offset=-6 +County "MO, Barry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900090.epw site_zip_code=65625 site_time_zone_utc_offset=-6 +County "MO, Barton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900110.epw site_zip_code=64759 site_time_zone_utc_offset=-6 +County "MO, Bates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900130.epw site_zip_code=64730 site_time_zone_utc_offset=-6 +County "MO, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900150.epw site_zip_code=65355 site_time_zone_utc_offset=-6 +County "MO, Bollinger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900170.epw site_zip_code=63764 site_time_zone_utc_offset=-6 +County "MO, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900190.epw site_zip_code=65203 site_time_zone_utc_offset=-6 +County "MO, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900210.epw site_zip_code=64506 site_time_zone_utc_offset=-6 +County "MO, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900230.epw site_zip_code=63901 site_time_zone_utc_offset=-6 +County "MO, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900250.epw site_zip_code=64644 site_time_zone_utc_offset=-6 +County "MO, Callaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900270.epw site_zip_code=65251 site_time_zone_utc_offset=-6 +County "MO, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900290.epw site_zip_code=65020 site_time_zone_utc_offset=-6 +County "MO, Cape Girardeau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900310.epw site_zip_code=63701 site_time_zone_utc_offset=-6 +County "MO, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900330.epw site_zip_code=64633 site_time_zone_utc_offset=-6 +County "MO, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900350.epw site_zip_code=63965 site_time_zone_utc_offset=-6 +County "MO, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900370.epw site_zip_code=64012 site_time_zone_utc_offset=-6 +County "MO, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900390.epw site_zip_code=64744 site_time_zone_utc_offset=-6 +County "MO, Chariton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900410.epw site_zip_code=65281 site_time_zone_utc_offset=-6 +County "MO, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900430.epw site_zip_code=65714 site_time_zone_utc_offset=-6 +County "MO, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900450.epw site_zip_code=63445 site_time_zone_utc_offset=-6 +County "MO, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900470.epw site_zip_code=64118 site_time_zone_utc_offset=-6 +County "MO, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900490.epw site_zip_code=64429 site_time_zone_utc_offset=-6 +County "MO, Cole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900510.epw site_zip_code=65109 site_time_zone_utc_offset=-6 +County "MO, Cooper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900530.epw site_zip_code=65233 site_time_zone_utc_offset=-6 +County "MO, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900550.epw site_zip_code=65453 site_time_zone_utc_offset=-6 +County "MO, Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900570.epw site_zip_code=65661 site_time_zone_utc_offset=-6 +County "MO, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900590.epw site_zip_code=65622 site_time_zone_utc_offset=-6 +County "MO, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900610.epw site_zip_code=64640 site_time_zone_utc_offset=-6 +County "MO, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900630.epw site_zip_code=64429 site_time_zone_utc_offset=-6 +County "MO, Dent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900650.epw site_zip_code=65560 site_time_zone_utc_offset=-6 +County "MO, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900670.epw site_zip_code=65608 site_time_zone_utc_offset=-6 +County "MO, Dunklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900690.epw site_zip_code=63857 site_time_zone_utc_offset=-6 +County "MO, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900710.epw site_zip_code=63090 site_time_zone_utc_offset=-6 +County "MO, Gasconade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900730.epw site_zip_code=65066 site_time_zone_utc_offset=-6 +County "MO, Gentry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900750.epw site_zip_code=64402 site_time_zone_utc_offset=-6 +County "MO, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900770.epw site_zip_code=65807 site_time_zone_utc_offset=-6 +County "MO, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900790.epw site_zip_code=64683 site_time_zone_utc_offset=-6 +County "MO, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900810.epw site_zip_code=64424 site_time_zone_utc_offset=-6 +County "MO, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900830.epw site_zip_code=64735 site_time_zone_utc_offset=-6 +County "MO, Hickory County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900850.epw site_zip_code=65779 site_time_zone_utc_offset=-6 +County "MO, Holt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900870.epw site_zip_code=64470 site_time_zone_utc_offset=-6 +County "MO, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900890.epw site_zip_code=65248 site_time_zone_utc_offset=-6 +County "MO, Howell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900910.epw site_zip_code=65775 site_time_zone_utc_offset=-6 +County "MO, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900930.epw site_zip_code=63650 site_time_zone_utc_offset=-6 +County "MO, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900950.epw site_zip_code=64055 site_time_zone_utc_offset=-6 +County "MO, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900970.epw site_zip_code=64801 site_time_zone_utc_offset=-6 +County "MO, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900990.epw site_zip_code=63010 site_time_zone_utc_offset=-6 +County "MO, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901010.epw site_zip_code=64093 site_time_zone_utc_offset=-6 +County "MO, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901030.epw site_zip_code=63537 site_time_zone_utc_offset=-6 +County "MO, Laclede County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901050.epw site_zip_code=65536 site_time_zone_utc_offset=-6 +County "MO, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901070.epw site_zip_code=64076 site_time_zone_utc_offset=-6 +County "MO, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901090.epw site_zip_code=65605 site_time_zone_utc_offset=-6 +County "MO, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901110.epw site_zip_code=63435 site_time_zone_utc_offset=-6 +County "MO, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901130.epw site_zip_code=63379 site_time_zone_utc_offset=-6 +County "MO, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901150.epw site_zip_code=64628 site_time_zone_utc_offset=-6 +County "MO, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901170.epw site_zip_code=64601 site_time_zone_utc_offset=-6 +County "MO, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901210.epw site_zip_code=63552 site_time_zone_utc_offset=-6 +County "MO, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901230.epw site_zip_code=63645 site_time_zone_utc_offset=-6 +County "MO, Maries County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901250.epw site_zip_code=65582 site_time_zone_utc_offset=-6 +County "MO, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901270.epw site_zip_code=63401 site_time_zone_utc_offset=-6 +County "MO, McDonald County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901190.epw site_zip_code=64831 site_time_zone_utc_offset=-6 +County "MO, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901290.epw site_zip_code=64673 site_time_zone_utc_offset=-6 +County "MO, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901310.epw site_zip_code=65026 site_time_zone_utc_offset=-6 +County "MO, Mississippi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901330.epw site_zip_code=63845 site_time_zone_utc_offset=-6 +County "MO, Moniteau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901350.epw site_zip_code=65018 site_time_zone_utc_offset=-6 +County "MO, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901370.epw site_zip_code=65275 site_time_zone_utc_offset=-6 +County "MO, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901390.epw site_zip_code=63361 site_time_zone_utc_offset=-6 +County "MO, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901410.epw site_zip_code=65037 site_time_zone_utc_offset=-6 +County "MO, New Madrid County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901430.epw site_zip_code=63873 site_time_zone_utc_offset=-6 +County "MO, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901450.epw site_zip_code=64850 site_time_zone_utc_offset=-6 +County "MO, Nodaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901470.epw site_zip_code=64468 site_time_zone_utc_offset=-6 +County "MO, Oregon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901490.epw site_zip_code=65606 site_time_zone_utc_offset=-6 +County "MO, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901510.epw site_zip_code=65051 site_time_zone_utc_offset=-6 +County "MO, Ozark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901530.epw site_zip_code=65655 site_time_zone_utc_offset=-6 +County "MO, Pemiscot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901550.epw site_zip_code=63830 site_time_zone_utc_offset=-6 +County "MO, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901570.epw site_zip_code=63775 site_time_zone_utc_offset=-6 +County "MO, Pettis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901590.epw site_zip_code=65301 site_time_zone_utc_offset=-6 +County "MO, Phelps County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901610.epw site_zip_code=65401 site_time_zone_utc_offset=-6 +County "MO, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901630.epw site_zip_code=63334 site_time_zone_utc_offset=-6 +County "MO, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901650.epw site_zip_code=64151 site_time_zone_utc_offset=-6 +County "MO, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901670.epw site_zip_code=65613 site_time_zone_utc_offset=-6 +County "MO, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901690.epw site_zip_code=65473 site_time_zone_utc_offset=-6 +County "MO, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901710.epw site_zip_code=63565 site_time_zone_utc_offset=-6 +County "MO, Ralls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901730.epw site_zip_code=63459 site_time_zone_utc_offset=-6 +County "MO, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901750.epw site_zip_code=65270 site_time_zone_utc_offset=-6 +County "MO, Ray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901770.epw site_zip_code=64085 site_time_zone_utc_offset=-6 +County "MO, Reynolds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901790.epw site_zip_code=63638 site_time_zone_utc_offset=-6 +County "MO, Ripley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901810.epw site_zip_code=63935 site_time_zone_utc_offset=-6 +County "MO, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901950.epw site_zip_code=65340 site_time_zone_utc_offset=-6 +County "MO, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901970.epw site_zip_code=63548 site_time_zone_utc_offset=-6 +County "MO, Scotland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901990.epw site_zip_code=63555 site_time_zone_utc_offset=-6 +County "MO, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902010.epw site_zip_code=63801 site_time_zone_utc_offset=-6 +County "MO, Shannon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902030.epw site_zip_code=65588 site_time_zone_utc_offset=-6 +County "MO, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902050.epw site_zip_code=63468 site_time_zone_utc_offset=-6 +County "MO, St. Charles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901830.epw site_zip_code=63376 site_time_zone_utc_offset=-6 +County "MO, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901850.epw site_zip_code=64776 site_time_zone_utc_offset=-6 +County "MO, St. Francois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901870.epw site_zip_code=63640 site_time_zone_utc_offset=-6 +County "MO, St. Louis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901890.epw site_zip_code=63021 site_time_zone_utc_offset=-6 +County "MO, St. Louis city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2905100.epw site_zip_code=63116 site_time_zone_utc_offset=-6 +County "MO, Ste. Genevieve County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901860.epw site_zip_code=63670 site_time_zone_utc_offset=-6 +County "MO, Stoddard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902070.epw site_zip_code=63841 site_time_zone_utc_offset=-6 +County "MO, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902090.epw site_zip_code=65737 site_time_zone_utc_offset=-6 +County "MO, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902110.epw site_zip_code=63556 site_time_zone_utc_offset=-6 +County "MO, Taney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902130.epw site_zip_code=65616 site_time_zone_utc_offset=-6 +County "MO, Texas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902150.epw site_zip_code=65483 site_time_zone_utc_offset=-6 +County "MO, Vernon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902170.epw site_zip_code=64772 site_time_zone_utc_offset=-6 +County "MO, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902190.epw site_zip_code=63383 site_time_zone_utc_offset=-6 +County "MO, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902210.epw site_zip_code=63664 site_time_zone_utc_offset=-6 +County "MO, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902230.epw site_zip_code=63957 site_time_zone_utc_offset=-6 +County "MO, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902250.epw site_zip_code=65706 site_time_zone_utc_offset=-6 +County "MO, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902270.epw site_zip_code=64456 site_time_zone_utc_offset=-6 +County "MO, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902290.epw site_zip_code=65711 site_time_zone_utc_offset=-6 +County "MS, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800010.epw site_zip_code=39120 site_time_zone_utc_offset=-6 +County "MS, Alcorn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800030.epw site_zip_code=38834 site_time_zone_utc_offset=-6 +County "MS, Amite County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800050.epw site_zip_code=39645 site_time_zone_utc_offset=-6 +County "MS, Attala County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800070.epw site_zip_code=39090 site_time_zone_utc_offset=-6 +County "MS, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800090.epw site_zip_code=38603 site_time_zone_utc_offset=-6 +County "MS, Bolivar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800110.epw site_zip_code=38732 site_time_zone_utc_offset=-6 +County "MS, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800130.epw site_zip_code=38916 site_time_zone_utc_offset=-6 +County "MS, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800150.epw site_zip_code=38917 site_time_zone_utc_offset=-6 +County "MS, Chickasaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800170.epw site_zip_code=38851 site_time_zone_utc_offset=-6 +County "MS, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800190.epw site_zip_code=39735 site_time_zone_utc_offset=-6 +County "MS, Claiborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800210.epw site_zip_code=39150 site_time_zone_utc_offset=-6 +County "MS, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800230.epw site_zip_code=39355 site_time_zone_utc_offset=-6 +County "MS, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800250.epw site_zip_code=39773 site_time_zone_utc_offset=-6 +County "MS, Coahoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800270.epw site_zip_code=38614 site_time_zone_utc_offset=-6 +County "MS, Copiah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800290.epw site_zip_code=39059 site_time_zone_utc_offset=-6 +County "MS, Covington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800310.epw site_zip_code=39428 site_time_zone_utc_offset=-6 +County "MS, DeSoto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800330.epw site_zip_code=38654 site_time_zone_utc_offset=-6 +County "MS, Forrest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800350.epw site_zip_code=39401 site_time_zone_utc_offset=-6 +County "MS, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800370.epw site_zip_code=39653 site_time_zone_utc_offset=-6 +County "MS, George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800390.epw site_zip_code=39452 site_time_zone_utc_offset=-6 +County "MS, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800410.epw site_zip_code=39451 site_time_zone_utc_offset=-6 +County "MS, Grenada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800430.epw site_zip_code=38901 site_time_zone_utc_offset=-6 +County "MS, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800450.epw site_zip_code=39520 site_time_zone_utc_offset=-6 +County "MS, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800470.epw site_zip_code=39503 site_time_zone_utc_offset=-6 +County "MS, Hinds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800490.epw site_zip_code=39209 site_time_zone_utc_offset=-6 +County "MS, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800510.epw site_zip_code=39095 site_time_zone_utc_offset=-6 +County "MS, Humphreys County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800530.epw site_zip_code=39038 site_time_zone_utc_offset=-6 +County "MS, Issaquena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800550.epw site_zip_code=39159 site_time_zone_utc_offset=-6 +County "MS, Itawamba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800570.epw site_zip_code=38843 site_time_zone_utc_offset=-6 +County "MS, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800590.epw site_zip_code=39564 site_time_zone_utc_offset=-6 +County "MS, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800610.epw site_zip_code=39422 site_time_zone_utc_offset=-6 +County "MS, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800630.epw site_zip_code=39069 site_time_zone_utc_offset=-6 +County "MS, Jefferson Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800650.epw site_zip_code=39474 site_time_zone_utc_offset=-6 +County "MS, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800670.epw site_zip_code=39443 site_time_zone_utc_offset=-6 +County "MS, Kemper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800690.epw site_zip_code=39328 site_time_zone_utc_offset=-6 +County "MS, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800710.epw site_zip_code=38655 site_time_zone_utc_offset=-6 +County "MS, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800730.epw site_zip_code=39402 site_time_zone_utc_offset=-6 +County "MS, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800750.epw site_zip_code=39301 site_time_zone_utc_offset=-6 +County "MS, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800770.epw site_zip_code=39654 site_time_zone_utc_offset=-6 +County "MS, Leake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800790.epw site_zip_code=39051 site_time_zone_utc_offset=-6 +County "MS, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800810.epw site_zip_code=38801 site_time_zone_utc_offset=-6 +County "MS, Leflore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800830.epw site_zip_code=38930 site_time_zone_utc_offset=-6 +County "MS, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800850.epw site_zip_code=39601 site_time_zone_utc_offset=-6 +County "MS, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800870.epw site_zip_code=39702 site_time_zone_utc_offset=-6 +County "MS, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800890.epw site_zip_code=39110 site_time_zone_utc_offset=-6 +County "MS, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800910.epw site_zip_code=39429 site_time_zone_utc_offset=-6 +County "MS, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800930.epw site_zip_code=38611 site_time_zone_utc_offset=-6 +County "MS, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800950.epw site_zip_code=38821 site_time_zone_utc_offset=-6 +County "MS, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800970.epw site_zip_code=38967 site_time_zone_utc_offset=-6 +County "MS, Neshoba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800990.epw site_zip_code=39350 site_time_zone_utc_offset=-6 +County "MS, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801010.epw site_zip_code=39345 site_time_zone_utc_offset=-6 +County "MS, Noxubee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801030.epw site_zip_code=39341 site_time_zone_utc_offset=-6 +County "MS, Oktibbeha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801050.epw site_zip_code=39759 site_time_zone_utc_offset=-6 +County "MS, Panola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801070.epw site_zip_code=38606 site_time_zone_utc_offset=-6 +County "MS, Pearl River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801090.epw site_zip_code=39466 site_time_zone_utc_offset=-6 +County "MS, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801110.epw site_zip_code=39476 site_time_zone_utc_offset=-6 +County "MS, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801130.epw site_zip_code=39648 site_time_zone_utc_offset=-6 +County "MS, Pontotoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801150.epw site_zip_code=38863 site_time_zone_utc_offset=-6 +County "MS, Prentiss County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801170.epw site_zip_code=38829 site_time_zone_utc_offset=-6 +County "MS, Quitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801190.epw site_zip_code=38646 site_time_zone_utc_offset=-6 +County "MS, Rankin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801210.epw site_zip_code=39047 site_time_zone_utc_offset=-6 +County "MS, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801230.epw site_zip_code=39074 site_time_zone_utc_offset=-6 +County "MS, Sharkey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801250.epw site_zip_code=39159 site_time_zone_utc_offset=-6 +County "MS, Simpson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801270.epw site_zip_code=39111 site_time_zone_utc_offset=-6 +County "MS, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801290.epw site_zip_code=39168 site_time_zone_utc_offset=-6 +County "MS, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801310.epw site_zip_code=39577 site_time_zone_utc_offset=-6 +County "MS, Sunflower County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801330.epw site_zip_code=38751 site_time_zone_utc_offset=-6 +County "MS, Tallahatchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801350.epw site_zip_code=38921 site_time_zone_utc_offset=-6 +County "MS, Tate County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801370.epw site_zip_code=38668 site_time_zone_utc_offset=-6 +County "MS, Tippah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801390.epw site_zip_code=38663 site_time_zone_utc_offset=-6 +County "MS, Tishomingo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801410.epw site_zip_code=38852 site_time_zone_utc_offset=-6 +County "MS, Tunica County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801430.epw site_zip_code=38676 site_time_zone_utc_offset=-6 +County "MS, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801450.epw site_zip_code=38652 site_time_zone_utc_offset=-6 +County "MS, Walthall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801470.epw site_zip_code=39667 site_time_zone_utc_offset=-6 +County "MS, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801490.epw site_zip_code=39180 site_time_zone_utc_offset=-6 +County "MS, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801510.epw site_zip_code=38701 site_time_zone_utc_offset=-6 +County "MS, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801530.epw site_zip_code=39367 site_time_zone_utc_offset=-6 +County "MS, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801550.epw site_zip_code=39744 site_time_zone_utc_offset=-6 +County "MS, Wilkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801570.epw site_zip_code=39669 site_time_zone_utc_offset=-6 +County "MS, Winston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801590.epw site_zip_code=39339 site_time_zone_utc_offset=-6 +County "MS, Yalobusha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801610.epw site_zip_code=38965 site_time_zone_utc_offset=-6 +County "MS, Yazoo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801630.epw site_zip_code=39194 site_time_zone_utc_offset=-6 +County "MT, Beaverhead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000010.epw site_zip_code=59725 site_time_zone_utc_offset=-7 +County "MT, Big Horn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000030.epw site_zip_code=59034 site_time_zone_utc_offset=-7 +County "MT, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000050.epw site_zip_code=59526 site_time_zone_utc_offset=-7 +County "MT, Broadwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000070.epw site_zip_code=59644 site_time_zone_utc_offset=-7 +County "MT, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000090.epw site_zip_code=59068 site_time_zone_utc_offset=-7 +County "MT, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000110.epw site_zip_code=59324 site_time_zone_utc_offset=-7 +County "MT, Cascade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000130.epw site_zip_code=59405 site_time_zone_utc_offset=-7 +County "MT, Chouteau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000150.epw site_zip_code=59442 site_time_zone_utc_offset=-7 +County "MT, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000170.epw site_zip_code=59301 site_time_zone_utc_offset=-7 +County "MT, Daniels County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000190.epw site_zip_code=59263 site_time_zone_utc_offset=-7 +County "MT, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000210.epw site_zip_code=59330 site_time_zone_utc_offset=-7 +County "MT, Deer Lodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000230.epw site_zip_code=59711 site_time_zone_utc_offset=-7 +County "MT, Fallon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000250.epw site_zip_code=59313 site_time_zone_utc_offset=-7 +County "MT, Fergus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000270.epw site_zip_code=59457 site_time_zone_utc_offset=-7 +County "MT, Flathead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000290.epw site_zip_code=59901 site_time_zone_utc_offset=-7 +County "MT, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000310.epw site_zip_code=59718 site_time_zone_utc_offset=-7 +County "MT, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000330.epw site_zip_code=59337 site_time_zone_utc_offset=-7 +County "MT, Glacier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000350.epw site_zip_code=59427 site_time_zone_utc_offset=-7 +County "MT, Golden Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000370.epw site_zip_code=59074 site_time_zone_utc_offset=-7 +County "MT, Granite County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000390.epw site_zip_code=59858 site_time_zone_utc_offset=-7 +County "MT, Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000410.epw site_zip_code=59501 site_time_zone_utc_offset=-7 +County "MT, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000430.epw site_zip_code=59634 site_time_zone_utc_offset=-7 +County "MT, Judith Basin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000450.epw site_zip_code=59479 site_time_zone_utc_offset=-7 +County "MT, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000470.epw site_zip_code=59860 site_time_zone_utc_offset=-7 +County "MT, Lewis and Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000490.epw site_zip_code=59601 site_time_zone_utc_offset=-7 +County "MT, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000510.epw site_zip_code=59522 site_time_zone_utc_offset=-7 +County "MT, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000530.epw site_zip_code=59923 site_time_zone_utc_offset=-7 +County "MT, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000570.epw site_zip_code=59729 site_time_zone_utc_offset=-7 +County "MT, McCone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000550.epw site_zip_code=59215 site_time_zone_utc_offset=-7 +County "MT, Meagher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000590.epw site_zip_code=59645 site_time_zone_utc_offset=-7 +County "MT, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000610.epw site_zip_code=59872 site_time_zone_utc_offset=-7 +County "MT, Missoula County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000630.epw site_zip_code=59801 site_time_zone_utc_offset=-7 +County "MT, Musselshell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000650.epw site_zip_code=59072 site_time_zone_utc_offset=-7 +County "MT, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000670.epw site_zip_code=59047 site_time_zone_utc_offset=-7 +County "MT, Petroleum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000690.epw site_zip_code=59087 site_time_zone_utc_offset=-7 +County "MT, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000710.epw site_zip_code=59538 site_time_zone_utc_offset=-7 +County "MT, Pondera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000730.epw site_zip_code=59425 site_time_zone_utc_offset=-7 +County "MT, Powder River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000750.epw site_zip_code=59317 site_time_zone_utc_offset=-7 +County "MT, Powell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000770.epw site_zip_code=59722 site_time_zone_utc_offset=-7 +County "MT, Prairie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000790.epw site_zip_code=59349 site_time_zone_utc_offset=-7 +County "MT, Ravalli County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000810.epw site_zip_code=59840 site_time_zone_utc_offset=-7 +County "MT, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000830.epw site_zip_code=59270 site_time_zone_utc_offset=-7 +County "MT, Roosevelt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000850.epw site_zip_code=59201 site_time_zone_utc_offset=-7 +County "MT, Rosebud County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000870.epw site_zip_code=59327 site_time_zone_utc_offset=-7 +County "MT, Sanders County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000890.epw site_zip_code=59859 site_time_zone_utc_offset=-7 +County "MT, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000910.epw site_zip_code=59254 site_time_zone_utc_offset=-7 +County "MT, Silver Bow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000930.epw site_zip_code=59701 site_time_zone_utc_offset=-7 +County "MT, Stillwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000950.epw site_zip_code=59019 site_time_zone_utc_offset=-7 +County "MT, Sweet Grass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000970.epw site_zip_code=59011 site_time_zone_utc_offset=-7 +County "MT, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000990.epw site_zip_code=59422 site_time_zone_utc_offset=-7 +County "MT, Toole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001010.epw site_zip_code=59474 site_time_zone_utc_offset=-7 +County "MT, Treasure County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001030.epw site_zip_code=59038 site_time_zone_utc_offset=-7 +County "MT, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001050.epw site_zip_code=59230 site_time_zone_utc_offset=-7 +County "MT, Wheatland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001070.epw site_zip_code=59036 site_time_zone_utc_offset=-7 +County "MT, Wibaux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001090.epw site_zip_code=59353 site_time_zone_utc_offset=-7 +County "MT, Yellowstone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001110.epw site_zip_code=59102 site_time_zone_utc_offset=-7 +County "NC, Alamance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700010.epw site_zip_code=27215 site_time_zone_utc_offset=-5 +County "NC, Alexander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700030.epw site_zip_code=28681 site_time_zone_utc_offset=-5 +County "NC, Alleghany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700050.epw site_zip_code=28675 site_time_zone_utc_offset=-5 +County "NC, Anson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700070.epw site_zip_code=28170 site_time_zone_utc_offset=-5 +County "NC, Ashe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700090.epw site_zip_code=28694 site_time_zone_utc_offset=-5 +County "NC, Avery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700110.epw site_zip_code=28657 site_time_zone_utc_offset=-5 +County "NC, Beaufort County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700130.epw site_zip_code=27889 site_time_zone_utc_offset=-5 +County "NC, Bertie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700150.epw site_zip_code=27983 site_time_zone_utc_offset=-5 +County "NC, Bladen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700170.epw site_zip_code=28337 site_time_zone_utc_offset=-5 +County "NC, Brunswick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700190.epw site_zip_code=28451 site_time_zone_utc_offset=-5 +County "NC, Buncombe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700210.epw site_zip_code=28806 site_time_zone_utc_offset=-5 +County "NC, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700230.epw site_zip_code=28655 site_time_zone_utc_offset=-5 +County "NC, Cabarrus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700250.epw site_zip_code=28027 site_time_zone_utc_offset=-5 +County "NC, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700270.epw site_zip_code=28645 site_time_zone_utc_offset=-5 +County "NC, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700290.epw site_zip_code=27921 site_time_zone_utc_offset=-5 +County "NC, Carteret County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700310.epw site_zip_code=28570 site_time_zone_utc_offset=-5 +County "NC, Caswell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700330.epw site_zip_code=27379 site_time_zone_utc_offset=-5 +County "NC, Catawba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700350.epw site_zip_code=28601 site_time_zone_utc_offset=-5 +County "NC, Chatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700370.epw site_zip_code=27312 site_time_zone_utc_offset=-5 +County "NC, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700390.epw site_zip_code=28906 site_time_zone_utc_offset=-5 +County "NC, Chowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700410.epw site_zip_code=27932 site_time_zone_utc_offset=-5 +County "NC, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700430.epw site_zip_code=28904 site_time_zone_utc_offset=-5 +County "NC, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700450.epw site_zip_code=28150 site_time_zone_utc_offset=-5 +County "NC, Columbus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700470.epw site_zip_code=28472 site_time_zone_utc_offset=-5 +County "NC, Craven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700490.epw site_zip_code=28562 site_time_zone_utc_offset=-5 +County "NC, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700510.epw site_zip_code=28314 site_time_zone_utc_offset=-5 +County "NC, Currituck County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700530.epw site_zip_code=27958 site_time_zone_utc_offset=-5 +County "NC, Dare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700550.epw site_zip_code=27949 site_time_zone_utc_offset=-5 +County "NC, Davidson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700570.epw site_zip_code=27360 site_time_zone_utc_offset=-5 +County "NC, Davie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700590.epw site_zip_code=27028 site_time_zone_utc_offset=-5 +County "NC, Duplin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700610.epw site_zip_code=28466 site_time_zone_utc_offset=-5 +County "NC, Durham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700630.epw site_zip_code=27703 site_time_zone_utc_offset=-5 +County "NC, Edgecombe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700650.epw site_zip_code=27801 site_time_zone_utc_offset=-5 +County "NC, Forsyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700670.epw site_zip_code=27284 site_time_zone_utc_offset=-5 +County "NC, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700690.epw site_zip_code=27549 site_time_zone_utc_offset=-5 +County "NC, Gaston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700710.epw site_zip_code=28054 site_time_zone_utc_offset=-5 +County "NC, Gates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700730.epw site_zip_code=27937 site_time_zone_utc_offset=-5 +County "NC, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700750.epw site_zip_code=28771 site_time_zone_utc_offset=-5 +County "NC, Granville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700770.epw site_zip_code=27565 site_time_zone_utc_offset=-5 +County "NC, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700790.epw site_zip_code=28580 site_time_zone_utc_offset=-5 +County "NC, Guilford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700810.epw site_zip_code=27406 site_time_zone_utc_offset=-5 +County "NC, Halifax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700830.epw site_zip_code=27870 site_time_zone_utc_offset=-5 +County "NC, Harnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700850.epw site_zip_code=27546 site_time_zone_utc_offset=-5 +County "NC, Haywood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700870.epw site_zip_code=28786 site_time_zone_utc_offset=-5 +County "NC, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700890.epw site_zip_code=28792 site_time_zone_utc_offset=-5 +County "NC, Hertford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700910.epw site_zip_code=27910 site_time_zone_utc_offset=-5 +County "NC, Hoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700930.epw site_zip_code=28376 site_time_zone_utc_offset=-5 +County "NC, Hyde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700950.epw site_zip_code=27824 site_time_zone_utc_offset=-5 +County "NC, Iredell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700970.epw site_zip_code=28117 site_time_zone_utc_offset=-5 +County "NC, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700990.epw site_zip_code=28779 site_time_zone_utc_offset=-5 +County "NC, Johnston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701010.epw site_zip_code=27520 site_time_zone_utc_offset=-5 +County "NC, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701030.epw site_zip_code=28585 site_time_zone_utc_offset=-5 +County "NC, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701050.epw site_zip_code=27330 site_time_zone_utc_offset=-5 +County "NC, Lenoir County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701070.epw site_zip_code=28501 site_time_zone_utc_offset=-5 +County "NC, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701090.epw site_zip_code=28092 site_time_zone_utc_offset=-5 +County "NC, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701130.epw site_zip_code=28734 site_time_zone_utc_offset=-5 +County "NC, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701150.epw site_zip_code=28753 site_time_zone_utc_offset=-5 +County "NC, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701170.epw site_zip_code=27892 site_time_zone_utc_offset=-5 +County "NC, McDowell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701110.epw site_zip_code=28752 site_time_zone_utc_offset=-5 +County "NC, Mecklenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701190.epw site_zip_code=28269 site_time_zone_utc_offset=-5 +County "NC, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701210.epw site_zip_code=28777 site_time_zone_utc_offset=-5 +County "NC, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701230.epw site_zip_code=27371 site_time_zone_utc_offset=-5 +County "NC, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701250.epw site_zip_code=28374 site_time_zone_utc_offset=-5 +County "NC, Nash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701270.epw site_zip_code=27804 site_time_zone_utc_offset=-5 +County "NC, New Hanover County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701290.epw site_zip_code=28412 site_time_zone_utc_offset=-5 +County "NC, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701310.epw site_zip_code=27831 site_time_zone_utc_offset=-5 +County "NC, Onslow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701330.epw site_zip_code=28540 site_time_zone_utc_offset=-5 +County "NC, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701350.epw site_zip_code=27514 site_time_zone_utc_offset=-5 +County "NC, Pamlico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701370.epw site_zip_code=28571 site_time_zone_utc_offset=-5 +County "NC, Pasquotank County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701390.epw site_zip_code=27909 site_time_zone_utc_offset=-5 +County "NC, Pender County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701410.epw site_zip_code=28443 site_time_zone_utc_offset=-5 +County "NC, Perquimans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701430.epw site_zip_code=27944 site_time_zone_utc_offset=-5 +County "NC, Person County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701450.epw site_zip_code=27574 site_time_zone_utc_offset=-5 +County "NC, Pitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701470.epw site_zip_code=27858 site_time_zone_utc_offset=-5 +County "NC, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701490.epw site_zip_code=28782 site_time_zone_utc_offset=-5 +County "NC, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701510.epw site_zip_code=27205 site_time_zone_utc_offset=-5 +County "NC, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701530.epw site_zip_code=28379 site_time_zone_utc_offset=-5 +County "NC, Robeson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701550.epw site_zip_code=28358 site_time_zone_utc_offset=-5 +County "NC, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701570.epw site_zip_code=27320 site_time_zone_utc_offset=-5 +County "NC, Rowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701590.epw site_zip_code=28146 site_time_zone_utc_offset=-5 +County "NC, Rutherford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701610.epw site_zip_code=28043 site_time_zone_utc_offset=-5 +County "NC, Sampson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701630.epw site_zip_code=28328 site_time_zone_utc_offset=-5 +County "NC, Scotland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701650.epw site_zip_code=28352 site_time_zone_utc_offset=-5 +County "NC, Stanly County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701670.epw site_zip_code=28001 site_time_zone_utc_offset=-5 +County "NC, Stokes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701690.epw site_zip_code=27021 site_time_zone_utc_offset=-5 +County "NC, Surry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701710.epw site_zip_code=27030 site_time_zone_utc_offset=-5 +County "NC, Swain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701730.epw site_zip_code=28713 site_time_zone_utc_offset=-5 +County "NC, Transylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701750.epw site_zip_code=28712 site_time_zone_utc_offset=-5 +County "NC, Tyrrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701770.epw site_zip_code=27925 site_time_zone_utc_offset=-5 +County "NC, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701790.epw site_zip_code=28173 site_time_zone_utc_offset=-5 +County "NC, Vance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701810.epw site_zip_code=27537 site_time_zone_utc_offset=-5 +County "NC, Wake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701830.epw site_zip_code=27610 site_time_zone_utc_offset=-5 +County "NC, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701850.epw site_zip_code=27589 site_time_zone_utc_offset=-5 +County "NC, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701870.epw site_zip_code=27962 site_time_zone_utc_offset=-5 +County "NC, Watauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701890.epw site_zip_code=28607 site_time_zone_utc_offset=-5 +County "NC, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701910.epw site_zip_code=27530 site_time_zone_utc_offset=-5 +County "NC, Wilkes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701930.epw site_zip_code=28659 site_time_zone_utc_offset=-5 +County "NC, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701950.epw site_zip_code=27893 site_time_zone_utc_offset=-5 +County "NC, Yadkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701970.epw site_zip_code=27055 site_time_zone_utc_offset=-5 +County "NC, Yancey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701990.epw site_zip_code=28714 site_time_zone_utc_offset=-5 +County "ND, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800010.epw site_zip_code=58639 site_time_zone_utc_offset=-7 +County "ND, Barnes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800030.epw site_zip_code=58072 site_time_zone_utc_offset=-6 +County "ND, Benson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800050.epw site_zip_code=58348 site_time_zone_utc_offset=-6 +County "ND, Billings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800070.epw site_zip_code=58622 site_time_zone_utc_offset=-7 +County "ND, Bottineau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800090.epw site_zip_code=58318 site_time_zone_utc_offset=-6 +County "ND, Bowman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800110.epw site_zip_code=58623 site_time_zone_utc_offset=-7 +County "ND, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800130.epw site_zip_code=58773 site_time_zone_utc_offset=-6 +County "ND, Burleigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800150.epw site_zip_code=58503 site_time_zone_utc_offset=-6 +County "ND, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800170.epw site_zip_code=58103 site_time_zone_utc_offset=-6 +County "ND, Cavalier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800190.epw site_zip_code=58249 site_time_zone_utc_offset=-6 +County "ND, Dickey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800210.epw site_zip_code=58474 site_time_zone_utc_offset=-6 +County "ND, Divide County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800230.epw site_zip_code=58730 site_time_zone_utc_offset=-6 +County "ND, Dunn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800250.epw site_zip_code=58640 site_time_zone_utc_offset=-7 +County "ND, Eddy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800270.epw site_zip_code=58356 site_time_zone_utc_offset=-6 +County "ND, Emmons County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800290.epw site_zip_code=58552 site_time_zone_utc_offset=-6 +County "ND, Foster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800310.epw site_zip_code=58421 site_time_zone_utc_offset=-6 +County "ND, Golden Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800330.epw site_zip_code=58621 site_time_zone_utc_offset=-7 +County "ND, Grand Forks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800350.epw site_zip_code=58201 site_time_zone_utc_offset=-6 +County "ND, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800370.epw site_zip_code=58533 site_time_zone_utc_offset=-7 +County "ND, Griggs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800390.epw site_zip_code=58425 site_time_zone_utc_offset=-6 +County "ND, Hettinger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800410.epw site_zip_code=58646 site_time_zone_utc_offset=-7 +County "ND, Kidder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800430.epw site_zip_code=58482 site_time_zone_utc_offset=-6 +County "ND, LaMoure County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800450.epw site_zip_code=58458 site_time_zone_utc_offset=-6 +County "ND, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800470.epw site_zip_code=58561 site_time_zone_utc_offset=-6 +County "ND, McHenry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800490.epw site_zip_code=58790 site_time_zone_utc_offset=-6 +County "ND, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800510.epw site_zip_code=58495 site_time_zone_utc_offset=-6 +County "ND, McKenzie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800530.epw site_zip_code=58854 site_time_zone_utc_offset=-7 +County "ND, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800550.epw site_zip_code=58540 site_time_zone_utc_offset=-6 +County "ND, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800570.epw site_zip_code=58545 site_time_zone_utc_offset=-6 +County "ND, Morton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800590.epw site_zip_code=58554 site_time_zone_utc_offset=-6 +County "ND, Mountrail County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800610.epw site_zip_code=58763 site_time_zone_utc_offset=-6 +County "ND, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800630.epw site_zip_code=58344 site_time_zone_utc_offset=-6 +County "ND, Oliver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800650.epw site_zip_code=58530 site_time_zone_utc_offset=-6 +County "ND, Pembina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800670.epw site_zip_code=58220 site_time_zone_utc_offset=-6 +County "ND, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800690.epw site_zip_code=58368 site_time_zone_utc_offset=-6 +County "ND, Ramsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800710.epw site_zip_code=58301 site_time_zone_utc_offset=-6 +County "ND, Ransom County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800730.epw site_zip_code=58054 site_time_zone_utc_offset=-6 +County "ND, Renville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800750.epw site_zip_code=58761 site_time_zone_utc_offset=-6 +County "ND, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800770.epw site_zip_code=58075 site_time_zone_utc_offset=-6 +County "ND, Rolette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800790.epw site_zip_code=58367 site_time_zone_utc_offset=-6 +County "ND, Sargent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800810.epw site_zip_code=58060 site_time_zone_utc_offset=-6 +County "ND, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800830.epw site_zip_code=58463 site_time_zone_utc_offset=-6 +County "ND, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800850.epw site_zip_code=58538 site_time_zone_utc_offset=-6 +County "ND, Slope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800870.epw site_zip_code=58620 site_time_zone_utc_offset=-7 +County "ND, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800890.epw site_zip_code=58601 site_time_zone_utc_offset=-7 +County "ND, Steele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800910.epw site_zip_code=58230 site_time_zone_utc_offset=-6 +County "ND, Stutsman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800930.epw site_zip_code=58401 site_time_zone_utc_offset=-6 +County "ND, Towner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800950.epw site_zip_code=58324 site_time_zone_utc_offset=-6 +County "ND, Traill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800970.epw site_zip_code=58257 site_time_zone_utc_offset=-6 +County "ND, Walsh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800990.epw site_zip_code=58237 site_time_zone_utc_offset=-6 +County "ND, Ward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801010.epw site_zip_code=58701 site_time_zone_utc_offset=-6 +County "ND, Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801030.epw site_zip_code=58341 site_time_zone_utc_offset=-6 +County "ND, Williams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801050.epw site_zip_code=58801 site_time_zone_utc_offset=-6 +County "NE, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100010.epw site_zip_code=68901 site_time_zone_utc_offset=-6 +County "NE, Antelope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100030.epw site_zip_code=68756 site_time_zone_utc_offset=-6 +County "NE, Arthur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100050.epw site_zip_code=69121 site_time_zone_utc_offset=-7 +County "NE, Banner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100070.epw site_zip_code=69345 site_time_zone_utc_offset=-7 +County "NE, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100090.epw site_zip_code=68833 site_time_zone_utc_offset=-6 +County "NE, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100110.epw site_zip_code=68620 site_time_zone_utc_offset=-6 +County "NE, Box Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100130.epw site_zip_code=69301 site_time_zone_utc_offset=-7 +County "NE, Boyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100150.epw site_zip_code=68777 site_time_zone_utc_offset=-6 +County "NE, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100170.epw site_zip_code=69210 site_time_zone_utc_offset=-6 +County "NE, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100190.epw site_zip_code=68845 site_time_zone_utc_offset=-6 +County "NE, Burt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100210.epw site_zip_code=68061 site_time_zone_utc_offset=-6 +County "NE, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100230.epw site_zip_code=68632 site_time_zone_utc_offset=-6 +County "NE, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100250.epw site_zip_code=68048 site_time_zone_utc_offset=-6 +County "NE, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100270.epw site_zip_code=68739 site_time_zone_utc_offset=-6 +County "NE, Chase County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100290.epw site_zip_code=69033 site_time_zone_utc_offset=-7 +County "NE, Cherry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100310.epw site_zip_code=69201 site_time_zone_utc_offset=-6 +County "NE, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100330.epw site_zip_code=69162 site_time_zone_utc_offset=-7 +County "NE, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100350.epw site_zip_code=68979 site_time_zone_utc_offset=-6 +County "NE, Colfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100370.epw site_zip_code=68661 site_time_zone_utc_offset=-6 +County "NE, Cuming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100390.epw site_zip_code=68788 site_time_zone_utc_offset=-6 +County "NE, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100410.epw site_zip_code=68822 site_time_zone_utc_offset=-6 +County "NE, Dakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100430.epw site_zip_code=68776 site_time_zone_utc_offset=-6 +County "NE, Dawes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100450.epw site_zip_code=69337 site_time_zone_utc_offset=-7 +County "NE, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100470.epw site_zip_code=68850 site_time_zone_utc_offset=-6 +County "NE, Deuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100490.epw site_zip_code=69129 site_time_zone_utc_offset=-7 +County "NE, Dixon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100510.epw site_zip_code=68770 site_time_zone_utc_offset=-6 +County "NE, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100530.epw site_zip_code=68025 site_time_zone_utc_offset=-6 +County "NE, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100550.epw site_zip_code=68022 site_time_zone_utc_offset=-6 +County "NE, Dundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100570.epw site_zip_code=69021 site_time_zone_utc_offset=-7 +County "NE, Fillmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100590.epw site_zip_code=68361 site_time_zone_utc_offset=-6 +County "NE, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100610.epw site_zip_code=68939 site_time_zone_utc_offset=-6 +County "NE, Frontier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100630.epw site_zip_code=69025 site_time_zone_utc_offset=-6 +County "NE, Furnas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100650.epw site_zip_code=69022 site_time_zone_utc_offset=-6 +County "NE, Gage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100670.epw site_zip_code=68310 site_time_zone_utc_offset=-6 +County "NE, Garden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100690.epw site_zip_code=69154 site_time_zone_utc_offset=-7 +County "NE, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100710.epw site_zip_code=68823 site_time_zone_utc_offset=-6 +County "NE, Gosper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100730.epw site_zip_code=68937 site_time_zone_utc_offset=-6 +County "NE, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100750.epw site_zip_code=69350 site_time_zone_utc_offset=-7 +County "NE, Greeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100770.epw site_zip_code=68665 site_time_zone_utc_offset=-6 +County "NE, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100790.epw site_zip_code=68801 site_time_zone_utc_offset=-6 +County "NE, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100810.epw site_zip_code=68818 site_time_zone_utc_offset=-6 +County "NE, Harlan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100830.epw site_zip_code=68920 site_time_zone_utc_offset=-6 +County "NE, Hayes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100850.epw site_zip_code=69032 site_time_zone_utc_offset=-6 +County "NE, Hitchcock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100870.epw site_zip_code=69024 site_time_zone_utc_offset=-6 +County "NE, Holt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100890.epw site_zip_code=68763 site_time_zone_utc_offset=-6 +County "NE, Hooker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100910.epw site_zip_code=69152 site_time_zone_utc_offset=-7 +County "NE, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100930.epw site_zip_code=68873 site_time_zone_utc_offset=-6 +County "NE, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100950.epw site_zip_code=68352 site_time_zone_utc_offset=-6 +County "NE, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100970.epw site_zip_code=68450 site_time_zone_utc_offset=-6 +County "NE, Kearney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100990.epw site_zip_code=68959 site_time_zone_utc_offset=-6 +County "NE, Keith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101010.epw site_zip_code=69153 site_time_zone_utc_offset=-7 +County "NE, Keya Paha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101030.epw site_zip_code=68778 site_time_zone_utc_offset=-6 +County "NE, Kimball County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101050.epw site_zip_code=69145 site_time_zone_utc_offset=-7 +County "NE, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101070.epw site_zip_code=68718 site_time_zone_utc_offset=-6 +County "NE, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101090.epw site_zip_code=68516 site_time_zone_utc_offset=-6 +County "NE, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101110.epw site_zip_code=69101 site_time_zone_utc_offset=-6 +County "NE, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101130.epw site_zip_code=69163 site_time_zone_utc_offset=-6 +County "NE, Loup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101150.epw site_zip_code=68823 site_time_zone_utc_offset=-6 +County "NE, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101190.epw site_zip_code=68701 site_time_zone_utc_offset=-6 +County "NE, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101170.epw site_zip_code=69167 site_time_zone_utc_offset=-6 +County "NE, Merrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101210.epw site_zip_code=68826 site_time_zone_utc_offset=-6 +County "NE, Morrill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101230.epw site_zip_code=69336 site_time_zone_utc_offset=-7 +County "NE, Nance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101250.epw site_zip_code=68638 site_time_zone_utc_offset=-6 +County "NE, Nemaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101270.epw site_zip_code=68305 site_time_zone_utc_offset=-6 +County "NE, Nuckolls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101290.epw site_zip_code=68978 site_time_zone_utc_offset=-6 +County "NE, Otoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101310.epw site_zip_code=68410 site_time_zone_utc_offset=-6 +County "NE, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101330.epw site_zip_code=68420 site_time_zone_utc_offset=-6 +County "NE, Perkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101350.epw site_zip_code=69140 site_time_zone_utc_offset=-7 +County "NE, Phelps County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101370.epw site_zip_code=68949 site_time_zone_utc_offset=-6 +County "NE, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101390.epw site_zip_code=68767 site_time_zone_utc_offset=-6 +County "NE, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101410.epw site_zip_code=68601 site_time_zone_utc_offset=-6 +County "NE, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101430.epw site_zip_code=68666 site_time_zone_utc_offset=-6 +County "NE, Red Willow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101450.epw site_zip_code=69001 site_time_zone_utc_offset=-6 +County "NE, Richardson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101470.epw site_zip_code=68355 site_time_zone_utc_offset=-6 +County "NE, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101490.epw site_zip_code=68714 site_time_zone_utc_offset=-6 +County "NE, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101510.epw site_zip_code=68333 site_time_zone_utc_offset=-6 +County "NE, Sarpy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101530.epw site_zip_code=68046 site_time_zone_utc_offset=-6 +County "NE, Saunders County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101550.epw site_zip_code=68066 site_time_zone_utc_offset=-6 +County "NE, Scotts Bluff County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101570.epw site_zip_code=69361 site_time_zone_utc_offset=-7 +County "NE, Seward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101590.epw site_zip_code=68434 site_time_zone_utc_offset=-6 +County "NE, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101610.epw site_zip_code=69343 site_time_zone_utc_offset=-7 +County "NE, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101630.epw site_zip_code=68853 site_time_zone_utc_offset=-6 +County "NE, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101650.epw site_zip_code=69346 site_time_zone_utc_offset=-7 +County "NE, Stanton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101670.epw site_zip_code=68779 site_time_zone_utc_offset=-6 +County "NE, Thayer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101690.epw site_zip_code=68370 site_time_zone_utc_offset=-6 +County "NE, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101710.epw site_zip_code=69166 site_time_zone_utc_offset=-6 +County "NE, Thurston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101730.epw site_zip_code=68071 site_time_zone_utc_offset=-6 +County "NE, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101750.epw site_zip_code=68862 site_time_zone_utc_offset=-6 +County "NE, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101770.epw site_zip_code=68008 site_time_zone_utc_offset=-6 +County "NE, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101790.epw site_zip_code=68787 site_time_zone_utc_offset=-6 +County "NE, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101810.epw site_zip_code=68970 site_time_zone_utc_offset=-6 +County "NE, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101830.epw site_zip_code=68637 site_time_zone_utc_offset=-6 +County "NE, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101850.epw site_zip_code=68467 site_time_zone_utc_offset=-6 +County "NH, Belknap County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300010.epw site_zip_code=03246 site_time_zone_utc_offset=-5 +County "NH, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300030.epw site_zip_code=03894 site_time_zone_utc_offset=-5 +County "NH, Cheshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300050.epw site_zip_code=03431 site_time_zone_utc_offset=-5 +County "NH, Coos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300070.epw site_zip_code=03570 site_time_zone_utc_offset=-5 +County "NH, Grafton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300090.epw site_zip_code=03766 site_time_zone_utc_offset=-5 +County "NH, Hillsborough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300110.epw site_zip_code=03103 site_time_zone_utc_offset=-5 +County "NH, Merrimack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300130.epw site_zip_code=03301 site_time_zone_utc_offset=-5 +County "NH, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300150.epw site_zip_code=03038 site_time_zone_utc_offset=-5 +County "NH, Strafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300170.epw site_zip_code=03820 site_time_zone_utc_offset=-5 +County "NH, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300190.epw site_zip_code=03743 site_time_zone_utc_offset=-5 +County "NJ, Atlantic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400010.epw site_zip_code=08401 site_time_zone_utc_offset=-5 +County "NJ, Bergen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400030.epw site_zip_code=07410 site_time_zone_utc_offset=-5 +County "NJ, Burlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400050.epw site_zip_code=08054 site_time_zone_utc_offset=-5 +County "NJ, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400070.epw site_zip_code=08021 site_time_zone_utc_offset=-5 +County "NJ, Cape May County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400090.epw site_zip_code=08260 site_time_zone_utc_offset=-5 +County "NJ, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400110.epw site_zip_code=08332 site_time_zone_utc_offset=-5 +County "NJ, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400130.epw site_zip_code=07111 site_time_zone_utc_offset=-5 +County "NJ, Gloucester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400150.epw site_zip_code=08096 site_time_zone_utc_offset=-5 +County "NJ, Hudson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400170.epw site_zip_code=07302 site_time_zone_utc_offset=-5 +County "NJ, Hunterdon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400190.epw site_zip_code=08822 site_time_zone_utc_offset=-5 +County "NJ, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400210.epw site_zip_code=08618 site_time_zone_utc_offset=-5 +County "NJ, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400230.epw site_zip_code=08831 site_time_zone_utc_offset=-5 +County "NJ, Monmouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400250.epw site_zip_code=07728 site_time_zone_utc_offset=-5 +County "NJ, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400270.epw site_zip_code=07960 site_time_zone_utc_offset=-5 +County "NJ, Ocean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400290.epw site_zip_code=08701 site_time_zone_utc_offset=-5 +County "NJ, Passaic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400310.epw site_zip_code=07055 site_time_zone_utc_offset=-5 +County "NJ, Salem County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400330.epw site_zip_code=08069 site_time_zone_utc_offset=-5 +County "NJ, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400350.epw site_zip_code=08873 site_time_zone_utc_offset=-5 +County "NJ, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400370.epw site_zip_code=07860 site_time_zone_utc_offset=-5 +County "NJ, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400390.epw site_zip_code=07083 site_time_zone_utc_offset=-5 +County "NJ, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400410.epw site_zip_code=08865 site_time_zone_utc_offset=-5 +County "NM, Bernalillo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500010.epw site_zip_code=87111 site_time_zone_utc_offset=-7 +County "NM, Catron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500030.epw site_zip_code=87829 site_time_zone_utc_offset=-7 +County "NM, Chaves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500050.epw site_zip_code=88203 site_time_zone_utc_offset=-7 +County "NM, Cibola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500060.epw site_zip_code=87020 site_time_zone_utc_offset=-7 +County "NM, Colfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500070.epw site_zip_code=87740 site_time_zone_utc_offset=-7 +County "NM, Curry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500090.epw site_zip_code=88101 site_time_zone_utc_offset=-7 +County "NM, De Baca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500110.epw site_zip_code=88119 site_time_zone_utc_offset=-7 +County "NM, Dona Ana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500130.epw site_zip_code=88001 site_time_zone_utc_offset=-7 +County "NM, Eddy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500150.epw site_zip_code=88220 site_time_zone_utc_offset=-7 +County "NM, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500170.epw site_zip_code=88061 site_time_zone_utc_offset=-7 +County "NM, Guadalupe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500190.epw site_zip_code=88435 site_time_zone_utc_offset=-7 +County "NM, Harding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500210.epw site_zip_code=87743 site_time_zone_utc_offset=-7 +County "NM, Hidalgo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500230.epw site_zip_code=88045 site_time_zone_utc_offset=-7 +County "NM, Lea County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500250.epw site_zip_code=88240 site_time_zone_utc_offset=-7 +County "NM, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500270.epw site_zip_code=88355 site_time_zone_utc_offset=-7 +County "NM, Los Alamos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500280.epw site_zip_code=87544 site_time_zone_utc_offset=-7 +County "NM, Luna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500290.epw site_zip_code=88030 site_time_zone_utc_offset=-7 +County "NM, McKinley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500310.epw site_zip_code=87301 site_time_zone_utc_offset=-7 +County "NM, Mora County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500330.epw site_zip_code=87722 site_time_zone_utc_offset=-7 +County "NM, Otero County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500350.epw site_zip_code=88310 site_time_zone_utc_offset=-7 +County "NM, Quay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500370.epw site_zip_code=88401 site_time_zone_utc_offset=-7 +County "NM, Rio Arriba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500390.epw site_zip_code=87532 site_time_zone_utc_offset=-7 +County "NM, Roosevelt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500410.epw site_zip_code=88130 site_time_zone_utc_offset=-7 +County "NM, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500450.epw site_zip_code=87401 site_time_zone_utc_offset=-7 +County "NM, San Miguel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500470.epw site_zip_code=87701 site_time_zone_utc_offset=-7 +County "NM, Sandoval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500430.epw site_zip_code=87124 site_time_zone_utc_offset=-7 +County "NM, Santa Fe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500490.epw site_zip_code=87507 site_time_zone_utc_offset=-7 +County "NM, Sierra County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500510.epw site_zip_code=87901 site_time_zone_utc_offset=-7 +County "NM, Socorro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500530.epw site_zip_code=87801 site_time_zone_utc_offset=-7 +County "NM, Taos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500550.epw site_zip_code=87571 site_time_zone_utc_offset=-7 +County "NM, Torrance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500570.epw site_zip_code=87035 site_time_zone_utc_offset=-7 +County "NM, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500590.epw site_zip_code=88415 site_time_zone_utc_offset=-7 +County "NM, Valencia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500610.epw site_zip_code=87031 site_time_zone_utc_offset=-7 +County "NV, Carson City" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3205100.epw site_zip_code=89701 site_time_zone_utc_offset=-8 +County "NV, Churchill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200010.epw site_zip_code=89406 site_time_zone_utc_offset=-8 +County "NV, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200030.epw site_zip_code=89052 site_time_zone_utc_offset=-8 +County "NV, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200050.epw site_zip_code=89460 site_time_zone_utc_offset=-8 +County "NV, Elko County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200070.epw site_zip_code=89801 site_time_zone_utc_offset=-8 +County "NV, Esmeralda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200090.epw site_zip_code=89010 site_time_zone_utc_offset=-8 +County "NV, Eureka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200110.epw site_zip_code=89316 site_time_zone_utc_offset=-8 +County "NV, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200130.epw site_zip_code=89445 site_time_zone_utc_offset=-8 +County "NV, Lander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200150.epw site_zip_code=89820 site_time_zone_utc_offset=-8 +County "NV, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200170.epw site_zip_code=89017 site_time_zone_utc_offset=-8 +County "NV, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200190.epw site_zip_code=89408 site_time_zone_utc_offset=-8 +County "NV, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200210.epw site_zip_code=89415 site_time_zone_utc_offset=-8 +County "NV, Nye County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200230.epw site_zip_code=89048 site_time_zone_utc_offset=-8 +County "NV, Pershing County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200270.epw site_zip_code=89419 site_time_zone_utc_offset=-8 +County "NV, Storey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200290.epw site_zip_code=89521 site_time_zone_utc_offset=-8 +County "NV, Washoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200310.epw site_zip_code=89502 site_time_zone_utc_offset=-8 +County "NV, White Pine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200330.epw site_zip_code=89301 site_time_zone_utc_offset=-8 +County "NY, Albany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600010.epw site_zip_code=12203 site_time_zone_utc_offset=-5 +County "NY, Allegany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600030.epw site_zip_code=14895 site_time_zone_utc_offset=-5 +County "NY, Bronx County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600050.epw site_zip_code=10467 site_time_zone_utc_offset=-5 +County "NY, Broome County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600070.epw site_zip_code=13760 site_time_zone_utc_offset=-5 +County "NY, Cattaraugus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600090.epw site_zip_code=14760 site_time_zone_utc_offset=-5 +County "NY, Cayuga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600110.epw site_zip_code=13021 site_time_zone_utc_offset=-5 +County "NY, Chautauqua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600130.epw site_zip_code=14701 site_time_zone_utc_offset=-5 +County "NY, Chemung County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600150.epw site_zip_code=14845 site_time_zone_utc_offset=-5 +County "NY, Chenango County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600170.epw site_zip_code=13815 site_time_zone_utc_offset=-5 +County "NY, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600190.epw site_zip_code=12901 site_time_zone_utc_offset=-5 +County "NY, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600210.epw site_zip_code=12534 site_time_zone_utc_offset=-5 +County "NY, Cortland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600230.epw site_zip_code=13045 site_time_zone_utc_offset=-5 +County "NY, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600250.epw site_zip_code=13856 site_time_zone_utc_offset=-5 +County "NY, Dutchess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600270.epw site_zip_code=12601 site_time_zone_utc_offset=-5 +County "NY, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600290.epw site_zip_code=14221 site_time_zone_utc_offset=-5 +County "NY, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600310.epw site_zip_code=12946 site_time_zone_utc_offset=-5 +County "NY, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600330.epw site_zip_code=12953 site_time_zone_utc_offset=-5 +County "NY, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600350.epw site_zip_code=12078 site_time_zone_utc_offset=-5 +County "NY, Genesee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600370.epw site_zip_code=14020 site_time_zone_utc_offset=-5 +County "NY, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600390.epw site_zip_code=12414 site_time_zone_utc_offset=-5 +County "NY, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600410.epw site_zip_code=12842 site_time_zone_utc_offset=-5 +County "NY, Herkimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600430.epw site_zip_code=13357 site_time_zone_utc_offset=-5 +County "NY, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600450.epw site_zip_code=13601 site_time_zone_utc_offset=-5 +County "NY, Kings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600470.epw site_zip_code=11226 site_time_zone_utc_offset=-5 +County "NY, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600490.epw site_zip_code=13367 site_time_zone_utc_offset=-5 +County "NY, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600510.epw site_zip_code=14454 site_time_zone_utc_offset=-5 +County "NY, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600530.epw site_zip_code=13032 site_time_zone_utc_offset=-5 +County "NY, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600550.epw site_zip_code=14580 site_time_zone_utc_offset=-5 +County "NY, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600570.epw site_zip_code=12010 site_time_zone_utc_offset=-5 +County "NY, Nassau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600590.epw site_zip_code=11758 site_time_zone_utc_offset=-5 +County "NY, New York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600610.epw site_zip_code=10025 site_time_zone_utc_offset=-5 +County "NY, Niagara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600630.epw site_zip_code=14094 site_time_zone_utc_offset=-5 +County "NY, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600650.epw site_zip_code=13440 site_time_zone_utc_offset=-5 +County "NY, Onondaga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600670.epw site_zip_code=13027 site_time_zone_utc_offset=-5 +County "NY, Ontario County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600690.epw site_zip_code=14424 site_time_zone_utc_offset=-5 +County "NY, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600710.epw site_zip_code=12550 site_time_zone_utc_offset=-5 +County "NY, Orleans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600730.epw site_zip_code=14411 site_time_zone_utc_offset=-5 +County "NY, Oswego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600750.epw site_zip_code=13126 site_time_zone_utc_offset=-5 +County "NY, Otsego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600770.epw site_zip_code=13820 site_time_zone_utc_offset=-5 +County "NY, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600790.epw site_zip_code=10512 site_time_zone_utc_offset=-5 +County "NY, Queens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600810.epw site_zip_code=11375 site_time_zone_utc_offset=-5 +County "NY, Rensselaer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600830.epw site_zip_code=12180 site_time_zone_utc_offset=-5 +County "NY, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600850.epw site_zip_code=10314 site_time_zone_utc_offset=-5 +County "NY, Rockland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600870.epw site_zip_code=10977 site_time_zone_utc_offset=-5 +County "NY, Saratoga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600910.epw site_zip_code=12866 site_time_zone_utc_offset=-5 +County "NY, Schenectady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600930.epw site_zip_code=12306 site_time_zone_utc_offset=-5 +County "NY, Schoharie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600950.epw site_zip_code=12043 site_time_zone_utc_offset=-5 +County "NY, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600970.epw site_zip_code=14891 site_time_zone_utc_offset=-5 +County "NY, Seneca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600990.epw site_zip_code=13148 site_time_zone_utc_offset=-5 +County "NY, St. Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600890.epw site_zip_code=13676 site_time_zone_utc_offset=-5 +County "NY, Steuben County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601010.epw site_zip_code=14830 site_time_zone_utc_offset=-5 +County "NY, Suffolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601030.epw site_zip_code=11746 site_time_zone_utc_offset=-5 +County "NY, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601050.epw site_zip_code=12701 site_time_zone_utc_offset=-5 +County "NY, Tioga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601070.epw site_zip_code=13827 site_time_zone_utc_offset=-5 +County "NY, Tompkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601090.epw site_zip_code=14850 site_time_zone_utc_offset=-5 +County "NY, Ulster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601110.epw site_zip_code=12401 site_time_zone_utc_offset=-5 +County "NY, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601130.epw site_zip_code=12804 site_time_zone_utc_offset=-5 +County "NY, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601150.epw site_zip_code=12839 site_time_zone_utc_offset=-5 +County "NY, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601170.epw site_zip_code=14513 site_time_zone_utc_offset=-5 +County "NY, Westchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601190.epw site_zip_code=10701 site_time_zone_utc_offset=-5 +County "NY, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601210.epw site_zip_code=14569 site_time_zone_utc_offset=-5 +County "NY, Yates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601230.epw site_zip_code=14527 site_time_zone_utc_offset=-5 +County "OH, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900010.epw site_zip_code=45693 site_time_zone_utc_offset=-5 +County "OH, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900030.epw site_zip_code=45805 site_time_zone_utc_offset=-5 +County "OH, Ashland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900050.epw site_zip_code=44805 site_time_zone_utc_offset=-5 +County "OH, Ashtabula County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900070.epw site_zip_code=44004 site_time_zone_utc_offset=-5 +County "OH, Athens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900090.epw site_zip_code=45701 site_time_zone_utc_offset=-5 +County "OH, Auglaize County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900110.epw site_zip_code=45895 site_time_zone_utc_offset=-5 +County "OH, Belmont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900130.epw site_zip_code=43950 site_time_zone_utc_offset=-5 +County "OH, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900150.epw site_zip_code=45121 site_time_zone_utc_offset=-5 +County "OH, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900170.epw site_zip_code=45011 site_time_zone_utc_offset=-5 +County "OH, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900190.epw site_zip_code=44615 site_time_zone_utc_offset=-5 +County "OH, Champaign County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900210.epw site_zip_code=43078 site_time_zone_utc_offset=-5 +County "OH, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900230.epw site_zip_code=45503 site_time_zone_utc_offset=-5 +County "OH, Clermont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900250.epw site_zip_code=45103 site_time_zone_utc_offset=-5 +County "OH, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900270.epw site_zip_code=45177 site_time_zone_utc_offset=-5 +County "OH, Columbiana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900290.epw site_zip_code=43920 site_time_zone_utc_offset=-5 +County "OH, Coshocton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900310.epw site_zip_code=43812 site_time_zone_utc_offset=-5 +County "OH, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900330.epw site_zip_code=44820 site_time_zone_utc_offset=-5 +County "OH, Cuyahoga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900350.epw site_zip_code=44107 site_time_zone_utc_offset=-5 +County "OH, Darke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900370.epw site_zip_code=45331 site_time_zone_utc_offset=-5 +County "OH, Defiance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900390.epw site_zip_code=43512 site_time_zone_utc_offset=-5 +County "OH, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900410.epw site_zip_code=43015 site_time_zone_utc_offset=-5 +County "OH, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900430.epw site_zip_code=44870 site_time_zone_utc_offset=-5 +County "OH, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900450.epw site_zip_code=43130 site_time_zone_utc_offset=-5 +County "OH, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900470.epw site_zip_code=43160 site_time_zone_utc_offset=-5 +County "OH, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900490.epw site_zip_code=43081 site_time_zone_utc_offset=-5 +County "OH, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900510.epw site_zip_code=43567 site_time_zone_utc_offset=-5 +County "OH, Gallia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900530.epw site_zip_code=45631 site_time_zone_utc_offset=-5 +County "OH, Geauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900550.epw site_zip_code=44024 site_time_zone_utc_offset=-5 +County "OH, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900570.epw site_zip_code=45324 site_time_zone_utc_offset=-5 +County "OH, Guernsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900590.epw site_zip_code=43725 site_time_zone_utc_offset=-5 +County "OH, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900610.epw site_zip_code=45238 site_time_zone_utc_offset=-5 +County "OH, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900630.epw site_zip_code=45840 site_time_zone_utc_offset=-5 +County "OH, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900650.epw site_zip_code=43326 site_time_zone_utc_offset=-5 +County "OH, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900670.epw site_zip_code=43907 site_time_zone_utc_offset=-5 +County "OH, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900690.epw site_zip_code=43545 site_time_zone_utc_offset=-5 +County "OH, Highland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900710.epw site_zip_code=45133 site_time_zone_utc_offset=-5 +County "OH, Hocking County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900730.epw site_zip_code=43138 site_time_zone_utc_offset=-5 +County "OH, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900750.epw site_zip_code=44654 site_time_zone_utc_offset=-5 +County "OH, Huron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900770.epw site_zip_code=44857 site_time_zone_utc_offset=-5 +County "OH, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900790.epw site_zip_code=45640 site_time_zone_utc_offset=-5 +County "OH, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900810.epw site_zip_code=43952 site_time_zone_utc_offset=-5 +County "OH, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900830.epw site_zip_code=43050 site_time_zone_utc_offset=-5 +County "OH, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900850.epw site_zip_code=44060 site_time_zone_utc_offset=-5 +County "OH, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900870.epw site_zip_code=45638 site_time_zone_utc_offset=-5 +County "OH, Licking County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900890.epw site_zip_code=43055 site_time_zone_utc_offset=-5 +County "OH, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900910.epw site_zip_code=43311 site_time_zone_utc_offset=-5 +County "OH, Lorain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900930.epw site_zip_code=44035 site_time_zone_utc_offset=-5 +County "OH, Lucas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900950.epw site_zip_code=43615 site_time_zone_utc_offset=-5 +County "OH, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900970.epw site_zip_code=43140 site_time_zone_utc_offset=-5 +County "OH, Mahoning County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900990.epw site_zip_code=44512 site_time_zone_utc_offset=-5 +County "OH, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901010.epw site_zip_code=43302 site_time_zone_utc_offset=-5 +County "OH, Medina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901030.epw site_zip_code=44256 site_time_zone_utc_offset=-5 +County "OH, Meigs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901050.epw site_zip_code=45769 site_time_zone_utc_offset=-5 +County "OH, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901070.epw site_zip_code=45822 site_time_zone_utc_offset=-5 +County "OH, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901090.epw site_zip_code=45373 site_time_zone_utc_offset=-5 +County "OH, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901110.epw site_zip_code=43793 site_time_zone_utc_offset=-5 +County "OH, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901130.epw site_zip_code=45424 site_time_zone_utc_offset=-5 +County "OH, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901150.epw site_zip_code=43756 site_time_zone_utc_offset=-5 +County "OH, Morrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901170.epw site_zip_code=43338 site_time_zone_utc_offset=-5 +County "OH, Muskingum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901190.epw site_zip_code=43701 site_time_zone_utc_offset=-5 +County "OH, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901210.epw site_zip_code=43724 site_time_zone_utc_offset=-5 +County "OH, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901230.epw site_zip_code=43452 site_time_zone_utc_offset=-5 +County "OH, Paulding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901250.epw site_zip_code=45879 site_time_zone_utc_offset=-5 +County "OH, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901270.epw site_zip_code=43764 site_time_zone_utc_offset=-5 +County "OH, Pickaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901290.epw site_zip_code=43113 site_time_zone_utc_offset=-5 +County "OH, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901310.epw site_zip_code=45690 site_time_zone_utc_offset=-5 +County "OH, Portage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901330.epw site_zip_code=44240 site_time_zone_utc_offset=-5 +County "OH, Preble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901350.epw site_zip_code=45320 site_time_zone_utc_offset=-5 +County "OH, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901370.epw site_zip_code=45875 site_time_zone_utc_offset=-5 +County "OH, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901390.epw site_zip_code=44903 site_time_zone_utc_offset=-5 +County "OH, Ross County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901410.epw site_zip_code=45601 site_time_zone_utc_offset=-5 +County "OH, Sandusky County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901430.epw site_zip_code=43420 site_time_zone_utc_offset=-5 +County "OH, Scioto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901450.epw site_zip_code=45662 site_time_zone_utc_offset=-5 +County "OH, Seneca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901470.epw site_zip_code=44883 site_time_zone_utc_offset=-5 +County "OH, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901490.epw site_zip_code=45365 site_time_zone_utc_offset=-5 +County "OH, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901510.epw site_zip_code=44646 site_time_zone_utc_offset=-5 +County "OH, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901530.epw site_zip_code=44224 site_time_zone_utc_offset=-5 +County "OH, Trumbull County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901550.epw site_zip_code=44483 site_time_zone_utc_offset=-5 +County "OH, Tuscarawas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901570.epw site_zip_code=44663 site_time_zone_utc_offset=-5 +County "OH, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901590.epw site_zip_code=43040 site_time_zone_utc_offset=-5 +County "OH, Van Wert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901610.epw site_zip_code=45891 site_time_zone_utc_offset=-5 +County "OH, Vinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901630.epw site_zip_code=45651 site_time_zone_utc_offset=-5 +County "OH, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901650.epw site_zip_code=45040 site_time_zone_utc_offset=-5 +County "OH, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901670.epw site_zip_code=45750 site_time_zone_utc_offset=-5 +County "OH, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901690.epw site_zip_code=44691 site_time_zone_utc_offset=-5 +County "OH, Williams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901710.epw site_zip_code=43506 site_time_zone_utc_offset=-5 +County "OH, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901730.epw site_zip_code=43551 site_time_zone_utc_offset=-5 +County "OH, Wyandot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901750.epw site_zip_code=43351 site_time_zone_utc_offset=-5 +County "OK, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000010.epw site_zip_code=74960 site_time_zone_utc_offset=-6 +County "OK, Alfalfa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000030.epw site_zip_code=73728 site_time_zone_utc_offset=-6 +County "OK, Atoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000050.epw site_zip_code=74525 site_time_zone_utc_offset=-6 +County "OK, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000070.epw site_zip_code=73932 site_time_zone_utc_offset=-6 +County "OK, Beckham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000090.epw site_zip_code=73644 site_time_zone_utc_offset=-6 +County "OK, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000110.epw site_zip_code=73772 site_time_zone_utc_offset=-6 +County "OK, Bryan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000130.epw site_zip_code=74701 site_time_zone_utc_offset=-6 +County "OK, Caddo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000150.epw site_zip_code=73005 site_time_zone_utc_offset=-6 +County "OK, Canadian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000170.epw site_zip_code=73099 site_time_zone_utc_offset=-6 +County "OK, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000190.epw site_zip_code=73401 site_time_zone_utc_offset=-6 +County "OK, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000210.epw site_zip_code=74464 site_time_zone_utc_offset=-6 +County "OK, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000230.epw site_zip_code=74743 site_time_zone_utc_offset=-6 +County "OK, Cimarron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000250.epw site_zip_code=73933 site_time_zone_utc_offset=-6 +County "OK, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000270.epw site_zip_code=73160 site_time_zone_utc_offset=-6 +County "OK, Coal County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000290.epw site_zip_code=74538 site_time_zone_utc_offset=-6 +County "OK, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000310.epw site_zip_code=73505 site_time_zone_utc_offset=-6 +County "OK, Cotton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000330.epw site_zip_code=73572 site_time_zone_utc_offset=-6 +County "OK, Craig County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000350.epw site_zip_code=74301 site_time_zone_utc_offset=-6 +County "OK, Creek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000370.epw site_zip_code=74066 site_time_zone_utc_offset=-6 +County "OK, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000390.epw site_zip_code=73096 site_time_zone_utc_offset=-6 +County "OK, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000410.epw site_zip_code=74344 site_time_zone_utc_offset=-6 +County "OK, Dewey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000430.epw site_zip_code=73859 site_time_zone_utc_offset=-6 +County "OK, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000450.epw site_zip_code=73858 site_time_zone_utc_offset=-6 +County "OK, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000470.epw site_zip_code=73703 site_time_zone_utc_offset=-6 +County "OK, Garvin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000490.epw site_zip_code=73075 site_time_zone_utc_offset=-6 +County "OK, Grady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000510.epw site_zip_code=73018 site_time_zone_utc_offset=-6 +County "OK, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000530.epw site_zip_code=73759 site_time_zone_utc_offset=-6 +County "OK, Greer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000550.epw site_zip_code=73554 site_time_zone_utc_offset=-6 +County "OK, Harmon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000570.epw site_zip_code=73550 site_time_zone_utc_offset=-6 +County "OK, Harper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000590.epw site_zip_code=73848 site_time_zone_utc_offset=-6 +County "OK, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000610.epw site_zip_code=74462 site_time_zone_utc_offset=-6 +County "OK, Hughes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000630.epw site_zip_code=74848 site_time_zone_utc_offset=-6 +County "OK, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000650.epw site_zip_code=73521 site_time_zone_utc_offset=-6 +County "OK, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000670.epw site_zip_code=73573 site_time_zone_utc_offset=-6 +County "OK, Johnston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000690.epw site_zip_code=73460 site_time_zone_utc_offset=-6 +County "OK, Kay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000710.epw site_zip_code=74601 site_time_zone_utc_offset=-6 +County "OK, Kingfisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000730.epw site_zip_code=73750 site_time_zone_utc_offset=-6 +County "OK, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000750.epw site_zip_code=73651 site_time_zone_utc_offset=-6 +County "OK, Latimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000770.epw site_zip_code=74578 site_time_zone_utc_offset=-6 +County "OK, Le Flore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000790.epw site_zip_code=74953 site_time_zone_utc_offset=-6 +County "OK, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000810.epw site_zip_code=74834 site_time_zone_utc_offset=-6 +County "OK, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000830.epw site_zip_code=73044 site_time_zone_utc_offset=-6 +County "OK, Love County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000850.epw site_zip_code=73448 site_time_zone_utc_offset=-6 +County "OK, Major County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000930.epw site_zip_code=73737 site_time_zone_utc_offset=-6 +County "OK, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000950.epw site_zip_code=73439 site_time_zone_utc_offset=-6 +County "OK, Mayes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000970.epw site_zip_code=74361 site_time_zone_utc_offset=-6 +County "OK, McClain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000870.epw site_zip_code=73080 site_time_zone_utc_offset=-6 +County "OK, McCurtain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000890.epw site_zip_code=74728 site_time_zone_utc_offset=-6 +County "OK, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000910.epw site_zip_code=74432 site_time_zone_utc_offset=-6 +County "OK, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000990.epw site_zip_code=73086 site_time_zone_utc_offset=-6 +County "OK, Muskogee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001010.epw site_zip_code=74403 site_time_zone_utc_offset=-6 +County "OK, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001030.epw site_zip_code=73077 site_time_zone_utc_offset=-6 +County "OK, Nowata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001050.epw site_zip_code=74048 site_time_zone_utc_offset=-6 +County "OK, Okfuskee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001070.epw site_zip_code=74859 site_time_zone_utc_offset=-6 +County "OK, Oklahoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001090.epw site_zip_code=73013 site_time_zone_utc_offset=-6 +County "OK, Okmulgee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001110.epw site_zip_code=74447 site_time_zone_utc_offset=-6 +County "OK, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001130.epw site_zip_code=74070 site_time_zone_utc_offset=-6 +County "OK, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001150.epw site_zip_code=74354 site_time_zone_utc_offset=-6 +County "OK, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001170.epw site_zip_code=74020 site_time_zone_utc_offset=-6 +County "OK, Payne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001190.epw site_zip_code=74074 site_time_zone_utc_offset=-6 +County "OK, Pittsburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001210.epw site_zip_code=74501 site_time_zone_utc_offset=-6 +County "OK, Pontotoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001230.epw site_zip_code=74820 site_time_zone_utc_offset=-6 +County "OK, Pottawatomie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001250.epw site_zip_code=74801 site_time_zone_utc_offset=-6 +County "OK, Pushmataha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001270.epw site_zip_code=74523 site_time_zone_utc_offset=-6 +County "OK, Roger Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001290.epw site_zip_code=73628 site_time_zone_utc_offset=-6 +County "OK, Rogers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001310.epw site_zip_code=74017 site_time_zone_utc_offset=-6 +County "OK, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001330.epw site_zip_code=74868 site_time_zone_utc_offset=-6 +County "OK, Sequoyah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001350.epw site_zip_code=74955 site_time_zone_utc_offset=-6 +County "OK, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001370.epw site_zip_code=73533 site_time_zone_utc_offset=-6 +County "OK, Texas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001390.epw site_zip_code=73942 site_time_zone_utc_offset=-6 +County "OK, Tillman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001410.epw site_zip_code=73542 site_time_zone_utc_offset=-6 +County "OK, Tulsa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001430.epw site_zip_code=74012 site_time_zone_utc_offset=-6 +County "OK, Wagoner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001450.epw site_zip_code=74014 site_time_zone_utc_offset=-6 +County "OK, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001470.epw site_zip_code=74006 site_time_zone_utc_offset=-6 +County "OK, Washita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001490.epw site_zip_code=73632 site_time_zone_utc_offset=-6 +County "OK, Woods County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001510.epw site_zip_code=73717 site_time_zone_utc_offset=-6 +County "OK, Woodward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001530.epw site_zip_code=73801 site_time_zone_utc_offset=-6 +County "OR, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100010.epw site_zip_code=97814 site_time_zone_utc_offset=-8 +County "OR, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100030.epw site_zip_code=97330 site_time_zone_utc_offset=-8 +County "OR, Clackamas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100050.epw site_zip_code=97045 site_time_zone_utc_offset=-8 +County "OR, Clatsop County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100070.epw site_zip_code=97103 site_time_zone_utc_offset=-8 +County "OR, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100090.epw site_zip_code=97051 site_time_zone_utc_offset=-8 +County "OR, Coos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100110.epw site_zip_code=97420 site_time_zone_utc_offset=-8 +County "OR, Crook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100130.epw site_zip_code=97754 site_time_zone_utc_offset=-8 +County "OR, Curry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100150.epw site_zip_code=97415 site_time_zone_utc_offset=-8 +County "OR, Deschutes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100170.epw site_zip_code=97702 site_time_zone_utc_offset=-8 +County "OR, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100190.epw site_zip_code=97471 site_time_zone_utc_offset=-8 +County "OR, Gilliam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100210.epw site_zip_code=97823 site_time_zone_utc_offset=-8 +County "OR, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100230.epw site_zip_code=97845 site_time_zone_utc_offset=-8 +County "OR, Harney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100250.epw site_zip_code=97720 site_time_zone_utc_offset=-8 +County "OR, Hood River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100270.epw site_zip_code=97031 site_time_zone_utc_offset=-8 +County "OR, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100290.epw site_zip_code=97504 site_time_zone_utc_offset=-8 +County "OR, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100310.epw site_zip_code=97741 site_time_zone_utc_offset=-8 +County "OR, Josephine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100330.epw site_zip_code=97526 site_time_zone_utc_offset=-8 +County "OR, Klamath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100350.epw site_zip_code=97603 site_time_zone_utc_offset=-8 +County "OR, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100370.epw site_zip_code=97630 site_time_zone_utc_offset=-8 +County "OR, Lane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100390.epw site_zip_code=97402 site_time_zone_utc_offset=-8 +County "OR, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100410.epw site_zip_code=97367 site_time_zone_utc_offset=-8 +County "OR, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100430.epw site_zip_code=97322 site_time_zone_utc_offset=-8 +County "OR, Malheur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100450.epw site_zip_code=97914 site_time_zone_utc_offset=-7 +County "OR, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100470.epw site_zip_code=97301 site_time_zone_utc_offset=-8 +County "OR, Morrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100490.epw site_zip_code=97818 site_time_zone_utc_offset=-8 +County "OR, Multnomah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100510.epw site_zip_code=97206 site_time_zone_utc_offset=-8 +County "OR, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100530.epw site_zip_code=97304 site_time_zone_utc_offset=-8 +County "OR, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100550.epw site_zip_code=97065 site_time_zone_utc_offset=-8 +County "OR, Tillamook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100570.epw site_zip_code=97141 site_time_zone_utc_offset=-8 +County "OR, Umatilla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100590.epw site_zip_code=97838 site_time_zone_utc_offset=-8 +County "OR, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100610.epw site_zip_code=97850 site_time_zone_utc_offset=-8 +County "OR, Wallowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100630.epw site_zip_code=97828 site_time_zone_utc_offset=-8 +County "OR, Wasco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100650.epw site_zip_code=97058 site_time_zone_utc_offset=-8 +County "OR, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100670.epw site_zip_code=97229 site_time_zone_utc_offset=-8 +County "OR, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100690.epw site_zip_code=97830 site_time_zone_utc_offset=-8 +County "OR, Yamhill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100710.epw site_zip_code=97128 site_time_zone_utc_offset=-8 +County "PA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200010.epw site_zip_code=17325 site_time_zone_utc_offset=-5 +County "PA, Allegheny County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200030.epw site_zip_code=15237 site_time_zone_utc_offset=-5 +County "PA, Armstrong County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200050.epw site_zip_code=16201 site_time_zone_utc_offset=-5 +County "PA, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200070.epw site_zip_code=15001 site_time_zone_utc_offset=-5 +County "PA, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200090.epw site_zip_code=15522 site_time_zone_utc_offset=-5 +County "PA, Berks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200110.epw site_zip_code=19606 site_time_zone_utc_offset=-5 +County "PA, Blair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200130.epw site_zip_code=16601 site_time_zone_utc_offset=-5 +County "PA, Bradford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200150.epw site_zip_code=18840 site_time_zone_utc_offset=-5 +County "PA, Bucks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200170.epw site_zip_code=19020 site_time_zone_utc_offset=-5 +County "PA, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200190.epw site_zip_code=16001 site_time_zone_utc_offset=-5 +County "PA, Cambria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200210.epw site_zip_code=15905 site_time_zone_utc_offset=-5 +County "PA, Cameron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200230.epw site_zip_code=15834 site_time_zone_utc_offset=-5 +County "PA, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200250.epw site_zip_code=18235 site_time_zone_utc_offset=-5 +County "PA, Centre County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200270.epw site_zip_code=16801 site_time_zone_utc_offset=-5 +County "PA, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200290.epw site_zip_code=19380 site_time_zone_utc_offset=-5 +County "PA, Clarion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200310.epw site_zip_code=16214 site_time_zone_utc_offset=-5 +County "PA, Clearfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200330.epw site_zip_code=15801 site_time_zone_utc_offset=-5 +County "PA, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200350.epw site_zip_code=17745 site_time_zone_utc_offset=-5 +County "PA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200370.epw site_zip_code=17815 site_time_zone_utc_offset=-5 +County "PA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200390.epw site_zip_code=16335 site_time_zone_utc_offset=-5 +County "PA, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200410.epw site_zip_code=17055 site_time_zone_utc_offset=-5 +County "PA, Dauphin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200430.epw site_zip_code=17112 site_time_zone_utc_offset=-5 +County "PA, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200450.epw site_zip_code=19063 site_time_zone_utc_offset=-5 +County "PA, Elk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200470.epw site_zip_code=15857 site_time_zone_utc_offset=-5 +County "PA, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200490.epw site_zip_code=16509 site_time_zone_utc_offset=-5 +County "PA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200510.epw site_zip_code=15401 site_time_zone_utc_offset=-5 +County "PA, Forest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200530.epw site_zip_code=16353 site_time_zone_utc_offset=-5 +County "PA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200550.epw site_zip_code=17268 site_time_zone_utc_offset=-5 +County "PA, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200570.epw site_zip_code=17233 site_time_zone_utc_offset=-5 +County "PA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200590.epw site_zip_code=15370 site_time_zone_utc_offset=-5 +County "PA, Huntingdon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200610.epw site_zip_code=16652 site_time_zone_utc_offset=-5 +County "PA, Indiana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200630.epw site_zip_code=15701 site_time_zone_utc_offset=-5 +County "PA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200650.epw site_zip_code=15767 site_time_zone_utc_offset=-5 +County "PA, Juniata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200670.epw site_zip_code=17059 site_time_zone_utc_offset=-5 +County "PA, Lackawanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200690.epw site_zip_code=18505 site_time_zone_utc_offset=-5 +County "PA, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200710.epw site_zip_code=17603 site_time_zone_utc_offset=-5 +County "PA, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200730.epw site_zip_code=16101 site_time_zone_utc_offset=-5 +County "PA, Lebanon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200750.epw site_zip_code=17042 site_time_zone_utc_offset=-5 +County "PA, Lehigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200770.epw site_zip_code=18103 site_time_zone_utc_offset=-5 +County "PA, Luzerne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200790.epw site_zip_code=18702 site_time_zone_utc_offset=-5 +County "PA, Lycoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200810.epw site_zip_code=17701 site_time_zone_utc_offset=-5 +County "PA, McKean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200830.epw site_zip_code=16701 site_time_zone_utc_offset=-5 +County "PA, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200850.epw site_zip_code=16148 site_time_zone_utc_offset=-5 +County "PA, Mifflin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200870.epw site_zip_code=17044 site_time_zone_utc_offset=-5 +County "PA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200890.epw site_zip_code=18301 site_time_zone_utc_offset=-5 +County "PA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200910.epw site_zip_code=19446 site_time_zone_utc_offset=-5 +County "PA, Montour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200930.epw site_zip_code=17821 site_time_zone_utc_offset=-5 +County "PA, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200950.epw site_zip_code=18042 site_time_zone_utc_offset=-5 +County "PA, Northumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200970.epw site_zip_code=17801 site_time_zone_utc_offset=-5 +County "PA, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200990.epw site_zip_code=17020 site_time_zone_utc_offset=-5 +County "PA, Philadelphia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201010.epw site_zip_code=19143 site_time_zone_utc_offset=-5 +County "PA, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201030.epw site_zip_code=18337 site_time_zone_utc_offset=-5 +County "PA, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201050.epw site_zip_code=16915 site_time_zone_utc_offset=-5 +County "PA, Schuylkill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201070.epw site_zip_code=17901 site_time_zone_utc_offset=-5 +County "PA, Snyder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201090.epw site_zip_code=17870 site_time_zone_utc_offset=-5 +County "PA, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201110.epw site_zip_code=15501 site_time_zone_utc_offset=-5 +County "PA, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201130.epw site_zip_code=18614 site_time_zone_utc_offset=-5 +County "PA, Susquehanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201150.epw site_zip_code=18801 site_time_zone_utc_offset=-5 +County "PA, Tioga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201170.epw site_zip_code=16901 site_time_zone_utc_offset=-5 +County "PA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201190.epw site_zip_code=17837 site_time_zone_utc_offset=-5 +County "PA, Venango County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201210.epw site_zip_code=16301 site_time_zone_utc_offset=-5 +County "PA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201230.epw site_zip_code=16365 site_time_zone_utc_offset=-5 +County "PA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201250.epw site_zip_code=15301 site_time_zone_utc_offset=-5 +County "PA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201270.epw site_zip_code=18431 site_time_zone_utc_offset=-5 +County "PA, Westmoreland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201290.epw site_zip_code=15601 site_time_zone_utc_offset=-5 +County "PA, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201310.epw site_zip_code=18657 site_time_zone_utc_offset=-5 +County "PA, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201330.epw site_zip_code=17331 site_time_zone_utc_offset=-5 +County "RI, Bristol County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400010.epw site_zip_code=02809 site_time_zone_utc_offset=-5 +County "RI, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400030.epw site_zip_code=02893 site_time_zone_utc_offset=-5 +County "RI, Newport County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400050.epw site_zip_code=02840 site_time_zone_utc_offset=-5 +County "RI, Providence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400070.epw site_zip_code=02860 site_time_zone_utc_offset=-5 +County "RI, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400090.epw site_zip_code=02891 site_time_zone_utc_offset=-5 +County "SC, Abbeville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500010.epw site_zip_code=29620 site_time_zone_utc_offset=-5 +County "SC, Aiken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500030.epw site_zip_code=29803 site_time_zone_utc_offset=-5 +County "SC, Allendale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500050.epw site_zip_code=29810 site_time_zone_utc_offset=-5 +County "SC, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500070.epw site_zip_code=29621 site_time_zone_utc_offset=-5 +County "SC, Bamberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500090.epw site_zip_code=29003 site_time_zone_utc_offset=-5 +County "SC, Barnwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500110.epw site_zip_code=29812 site_time_zone_utc_offset=-5 +County "SC, Beaufort County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500130.epw site_zip_code=29910 site_time_zone_utc_offset=-5 +County "SC, Berkeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500150.epw site_zip_code=29445 site_time_zone_utc_offset=-5 +County "SC, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500170.epw site_zip_code=29135 site_time_zone_utc_offset=-5 +County "SC, Charleston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500190.epw site_zip_code=29464 site_time_zone_utc_offset=-5 +County "SC, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500210.epw site_zip_code=29340 site_time_zone_utc_offset=-5 +County "SC, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500230.epw site_zip_code=29706 site_time_zone_utc_offset=-5 +County "SC, Chesterfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500250.epw site_zip_code=29520 site_time_zone_utc_offset=-5 +County "SC, Clarendon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500270.epw site_zip_code=29102 site_time_zone_utc_offset=-5 +County "SC, Colleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500290.epw site_zip_code=29488 site_time_zone_utc_offset=-5 +County "SC, Darlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500310.epw site_zip_code=29550 site_time_zone_utc_offset=-5 +County "SC, Dillon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500330.epw site_zip_code=29536 site_time_zone_utc_offset=-5 +County "SC, Dorchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500350.epw site_zip_code=29485 site_time_zone_utc_offset=-5 +County "SC, Edgefield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500370.epw site_zip_code=29860 site_time_zone_utc_offset=-5 +County "SC, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500390.epw site_zip_code=29180 site_time_zone_utc_offset=-5 +County "SC, Florence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500410.epw site_zip_code=29501 site_time_zone_utc_offset=-5 +County "SC, Georgetown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500430.epw site_zip_code=29440 site_time_zone_utc_offset=-5 +County "SC, Greenville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500450.epw site_zip_code=29681 site_time_zone_utc_offset=-5 +County "SC, Greenwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500470.epw site_zip_code=29649 site_time_zone_utc_offset=-5 +County "SC, Hampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500490.epw site_zip_code=29918 site_time_zone_utc_offset=-5 +County "SC, Horry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500510.epw site_zip_code=29579 site_time_zone_utc_offset=-5 +County "SC, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500530.epw site_zip_code=29936 site_time_zone_utc_offset=-5 +County "SC, Kershaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500550.epw site_zip_code=29020 site_time_zone_utc_offset=-5 +County "SC, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500570.epw site_zip_code=29720 site_time_zone_utc_offset=-5 +County "SC, Laurens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500590.epw site_zip_code=29360 site_time_zone_utc_offset=-5 +County "SC, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500610.epw site_zip_code=29010 site_time_zone_utc_offset=-5 +County "SC, Lexington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500630.epw site_zip_code=29072 site_time_zone_utc_offset=-5 +County "SC, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500670.epw site_zip_code=29571 site_time_zone_utc_offset=-5 +County "SC, Marlboro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500690.epw site_zip_code=29512 site_time_zone_utc_offset=-5 +County "SC, McCormick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500650.epw site_zip_code=29835 site_time_zone_utc_offset=-5 +County "SC, Newberry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500710.epw site_zip_code=29108 site_time_zone_utc_offset=-5 +County "SC, Oconee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500730.epw site_zip_code=29678 site_time_zone_utc_offset=-5 +County "SC, Orangeburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500750.epw site_zip_code=29115 site_time_zone_utc_offset=-5 +County "SC, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500770.epw site_zip_code=29640 site_time_zone_utc_offset=-5 +County "SC, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500790.epw site_zip_code=29223 site_time_zone_utc_offset=-5 +County "SC, Saluda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500810.epw site_zip_code=29138 site_time_zone_utc_offset=-5 +County "SC, Spartanburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500830.epw site_zip_code=29301 site_time_zone_utc_offset=-5 +County "SC, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500850.epw site_zip_code=29150 site_time_zone_utc_offset=-5 +County "SC, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500870.epw site_zip_code=29379 site_time_zone_utc_offset=-5 +County "SC, Williamsburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500890.epw site_zip_code=29556 site_time_zone_utc_offset=-5 +County "SC, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500910.epw site_zip_code=29732 site_time_zone_utc_offset=-5 +County "SD, Aurora County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600030.epw site_zip_code=57368 site_time_zone_utc_offset=-6 +County "SD, Beadle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600050.epw site_zip_code=57350 site_time_zone_utc_offset=-6 +County "SD, Bennett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600070.epw site_zip_code=57551 site_time_zone_utc_offset=-7 +County "SD, Bon Homme County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600090.epw site_zip_code=57066 site_time_zone_utc_offset=-6 +County "SD, Brookings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600110.epw site_zip_code=57006 site_time_zone_utc_offset=-6 +County "SD, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600130.epw site_zip_code=57401 site_time_zone_utc_offset=-6 +County "SD, Brule County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600150.epw site_zip_code=57325 site_time_zone_utc_offset=-6 +County "SD, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600170.epw site_zip_code=57341 site_time_zone_utc_offset=-6 +County "SD, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600190.epw site_zip_code=57717 site_time_zone_utc_offset=-7 +County "SD, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600210.epw site_zip_code=57632 site_time_zone_utc_offset=-6 +County "SD, Charles Mix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600230.epw site_zip_code=57380 site_time_zone_utc_offset=-6 +County "SD, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600250.epw site_zip_code=57225 site_time_zone_utc_offset=-6 +County "SD, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600270.epw site_zip_code=57069 site_time_zone_utc_offset=-6 +County "SD, Codington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600290.epw site_zip_code=57201 site_time_zone_utc_offset=-6 +County "SD, Corson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600310.epw site_zip_code=57642 site_time_zone_utc_offset=-7 +County "SD, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600330.epw site_zip_code=57730 site_time_zone_utc_offset=-7 +County "SD, Davison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600350.epw site_zip_code=57301 site_time_zone_utc_offset=-6 +County "SD, Day County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600370.epw site_zip_code=57274 site_time_zone_utc_offset=-6 +County "SD, Deuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600390.epw site_zip_code=57226 site_time_zone_utc_offset=-6 +County "SD, Dewey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600410.epw site_zip_code=57625 site_time_zone_utc_offset=-7 +County "SD, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600430.epw site_zip_code=57328 site_time_zone_utc_offset=-6 +County "SD, Edmunds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600450.epw site_zip_code=57451 site_time_zone_utc_offset=-6 +County "SD, Fall River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600470.epw site_zip_code=57747 site_time_zone_utc_offset=-7 +County "SD, Faulk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600490.epw site_zip_code=57438 site_time_zone_utc_offset=-6 +County "SD, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600510.epw site_zip_code=57252 site_time_zone_utc_offset=-6 +County "SD, Gregory County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600530.epw site_zip_code=57533 site_time_zone_utc_offset=-6 +County "SD, Haakon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600550.epw site_zip_code=57552 site_time_zone_utc_offset=-7 +County "SD, Hamlin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600570.epw site_zip_code=57223 site_time_zone_utc_offset=-6 +County "SD, Hand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600590.epw site_zip_code=57362 site_time_zone_utc_offset=-6 +County "SD, Hanson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600610.epw site_zip_code=57311 site_time_zone_utc_offset=-6 +County "SD, Harding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600630.epw site_zip_code=57720 site_time_zone_utc_offset=-7 +County "SD, Hughes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600650.epw site_zip_code=57501 site_time_zone_utc_offset=-6 +County "SD, Hutchinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600670.epw site_zip_code=57366 site_time_zone_utc_offset=-6 +County "SD, Hyde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600690.epw site_zip_code=57345 site_time_zone_utc_offset=-6 +County "SD, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600710.epw site_zip_code=57543 site_time_zone_utc_offset=-7 +County "SD, Jerauld County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600730.epw site_zip_code=57382 site_time_zone_utc_offset=-6 +County "SD, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600750.epw site_zip_code=57559 site_time_zone_utc_offset=-6 +County "SD, Kingsbury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600770.epw site_zip_code=57231 site_time_zone_utc_offset=-6 +County "SD, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600790.epw site_zip_code=57042 site_time_zone_utc_offset=-6 +County "SD, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600810.epw site_zip_code=57783 site_time_zone_utc_offset=-7 +County "SD, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600830.epw site_zip_code=57108 site_time_zone_utc_offset=-6 +County "SD, Lyman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600850.epw site_zip_code=57569 site_time_zone_utc_offset=-6 +County "SD, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600910.epw site_zip_code=57430 site_time_zone_utc_offset=-6 +County "SD, McCook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600870.epw site_zip_code=57058 site_time_zone_utc_offset=-6 +County "SD, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600890.epw site_zip_code=57437 site_time_zone_utc_offset=-6 +County "SD, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600930.epw site_zip_code=57785 site_time_zone_utc_offset=-7 +County "SD, Mellette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600950.epw site_zip_code=57579 site_time_zone_utc_offset=-6 +County "SD, Miner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600970.epw site_zip_code=57349 site_time_zone_utc_offset=-6 +County "SD, Minnehaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600990.epw site_zip_code=57106 site_time_zone_utc_offset=-6 +County "SD, Moody County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601010.epw site_zip_code=57028 site_time_zone_utc_offset=-6 +County "SD, Oglala Lakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601020.epw site_zip_code=57770 site_time_zone_utc_offset=-7 +County "SD, Pennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601030.epw site_zip_code=57701 site_time_zone_utc_offset=-7 +County "SD, Perkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601050.epw site_zip_code=57638 site_time_zone_utc_offset=-7 +County "SD, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601070.epw site_zip_code=57442 site_time_zone_utc_offset=-6 +County "SD, Roberts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601090.epw site_zip_code=57262 site_time_zone_utc_offset=-6 +County "SD, Sanborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601110.epw site_zip_code=57385 site_time_zone_utc_offset=-6 +County "SD, Spink County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601150.epw site_zip_code=57469 site_time_zone_utc_offset=-6 +County "SD, Stanley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601170.epw site_zip_code=57532 site_time_zone_utc_offset=-7 +County "SD, Sully County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601190.epw site_zip_code=57564 site_time_zone_utc_offset=-6 +County "SD, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601210.epw site_zip_code=57555 site_time_zone_utc_offset=-6 +County "SD, Tripp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601230.epw site_zip_code=57580 site_time_zone_utc_offset=-6 +County "SD, Turner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601250.epw site_zip_code=57053 site_time_zone_utc_offset=-6 +County "SD, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601270.epw site_zip_code=57049 site_time_zone_utc_offset=-6 +County "SD, Walworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601290.epw site_zip_code=57601 site_time_zone_utc_offset=-6 +County "SD, Yankton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601350.epw site_zip_code=57078 site_time_zone_utc_offset=-6 +County "SD, Ziebach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601370.epw site_zip_code=57623 site_time_zone_utc_offset=-7 +County "TN, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700010.epw site_zip_code=37830 site_time_zone_utc_offset=-5 +County "TN, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700030.epw site_zip_code=37160 site_time_zone_utc_offset=-6 +County "TN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700050.epw site_zip_code=38320 site_time_zone_utc_offset=-6 +County "TN, Bledsoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700070.epw site_zip_code=37367 site_time_zone_utc_offset=-6 +County "TN, Blount County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700090.epw site_zip_code=37803 site_time_zone_utc_offset=-5 +County "TN, Bradley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700110.epw site_zip_code=37312 site_time_zone_utc_offset=-5 +County "TN, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700130.epw site_zip_code=37766 site_time_zone_utc_offset=-5 +County "TN, Cannon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700150.epw site_zip_code=37190 site_time_zone_utc_offset=-6 +County "TN, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700170.epw site_zip_code=38344 site_time_zone_utc_offset=-6 +County "TN, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700190.epw site_zip_code=37643 site_time_zone_utc_offset=-5 +County "TN, Cheatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700210.epw site_zip_code=37015 site_time_zone_utc_offset=-6 +County "TN, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700230.epw site_zip_code=38340 site_time_zone_utc_offset=-6 +County "TN, Claiborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700250.epw site_zip_code=37879 site_time_zone_utc_offset=-5 +County "TN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700270.epw site_zip_code=38551 site_time_zone_utc_offset=-6 +County "TN, Cocke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700290.epw site_zip_code=37821 site_time_zone_utc_offset=-5 +County "TN, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700310.epw site_zip_code=37355 site_time_zone_utc_offset=-6 +County "TN, Crockett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700330.epw site_zip_code=38006 site_time_zone_utc_offset=-6 +County "TN, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700350.epw site_zip_code=38555 site_time_zone_utc_offset=-6 +County "TN, Davidson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700370.epw site_zip_code=37013 site_time_zone_utc_offset=-6 +County "TN, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700410.epw site_zip_code=37166 site_time_zone_utc_offset=-6 +County "TN, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700390.epw site_zip_code=38363 site_time_zone_utc_offset=-6 +County "TN, Dickson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700430.epw site_zip_code=37055 site_time_zone_utc_offset=-6 +County "TN, Dyer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700450.epw site_zip_code=38024 site_time_zone_utc_offset=-6 +County "TN, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700470.epw site_zip_code=38060 site_time_zone_utc_offset=-6 +County "TN, Fentress County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700490.epw site_zip_code=38556 site_time_zone_utc_offset=-6 +County "TN, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700510.epw site_zip_code=37398 site_time_zone_utc_offset=-6 +County "TN, Gibson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700530.epw site_zip_code=38343 site_time_zone_utc_offset=-6 +County "TN, Giles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700550.epw site_zip_code=38478 site_time_zone_utc_offset=-6 +County "TN, Grainger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700570.epw site_zip_code=37861 site_time_zone_utc_offset=-5 +County "TN, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700590.epw site_zip_code=37743 site_time_zone_utc_offset=-5 +County "TN, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700610.epw site_zip_code=37387 site_time_zone_utc_offset=-6 +County "TN, Hamblen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700630.epw site_zip_code=37814 site_time_zone_utc_offset=-5 +County "TN, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700650.epw site_zip_code=37421 site_time_zone_utc_offset=-5 +County "TN, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700670.epw site_zip_code=37869 site_time_zone_utc_offset=-5 +County "TN, Hardeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700690.epw site_zip_code=38008 site_time_zone_utc_offset=-6 +County "TN, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700710.epw site_zip_code=38372 site_time_zone_utc_offset=-6 +County "TN, Hawkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700730.epw site_zip_code=37857 site_time_zone_utc_offset=-5 +County "TN, Haywood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700750.epw site_zip_code=38012 site_time_zone_utc_offset=-6 +County "TN, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700770.epw site_zip_code=38351 site_time_zone_utc_offset=-6 +County "TN, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700790.epw site_zip_code=38242 site_time_zone_utc_offset=-6 +County "TN, Hickman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700810.epw site_zip_code=37033 site_time_zone_utc_offset=-6 +County "TN, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700830.epw site_zip_code=37061 site_time_zone_utc_offset=-6 +County "TN, Humphreys County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700850.epw site_zip_code=37185 site_time_zone_utc_offset=-6 +County "TN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700870.epw site_zip_code=38562 site_time_zone_utc_offset=-6 +County "TN, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700890.epw site_zip_code=37725 site_time_zone_utc_offset=-5 +County "TN, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700910.epw site_zip_code=37683 site_time_zone_utc_offset=-5 +County "TN, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700930.epw site_zip_code=37920 site_time_zone_utc_offset=-5 +County "TN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700950.epw site_zip_code=38079 site_time_zone_utc_offset=-6 +County "TN, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700970.epw site_zip_code=38063 site_time_zone_utc_offset=-6 +County "TN, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700990.epw site_zip_code=38464 site_time_zone_utc_offset=-6 +County "TN, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701010.epw site_zip_code=38462 site_time_zone_utc_offset=-6 +County "TN, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701030.epw site_zip_code=37334 site_time_zone_utc_offset=-6 +County "TN, Loudon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701050.epw site_zip_code=37774 site_time_zone_utc_offset=-5 +County "TN, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701110.epw site_zip_code=37083 site_time_zone_utc_offset=-6 +County "TN, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701130.epw site_zip_code=38305 site_time_zone_utc_offset=-6 +County "TN, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701150.epw site_zip_code=37397 site_time_zone_utc_offset=-6 +County "TN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701170.epw site_zip_code=37091 site_time_zone_utc_offset=-6 +County "TN, Maury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701190.epw site_zip_code=38401 site_time_zone_utc_offset=-6 +County "TN, McMinn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701070.epw site_zip_code=37303 site_time_zone_utc_offset=-5 +County "TN, McNairy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701090.epw site_zip_code=38375 site_time_zone_utc_offset=-6 +County "TN, Meigs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701210.epw site_zip_code=37322 site_time_zone_utc_offset=-5 +County "TN, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701230.epw site_zip_code=37354 site_time_zone_utc_offset=-5 +County "TN, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701250.epw site_zip_code=37042 site_time_zone_utc_offset=-6 +County "TN, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701270.epw site_zip_code=37352 site_time_zone_utc_offset=-6 +County "TN, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701290.epw site_zip_code=37887 site_time_zone_utc_offset=-5 +County "TN, Obion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701310.epw site_zip_code=38261 site_time_zone_utc_offset=-6 +County "TN, Overton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701330.epw site_zip_code=38570 site_time_zone_utc_offset=-6 +County "TN, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701350.epw site_zip_code=37096 site_time_zone_utc_offset=-6 +County "TN, Pickett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701370.epw site_zip_code=38549 site_time_zone_utc_offset=-6 +County "TN, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701390.epw site_zip_code=37307 site_time_zone_utc_offset=-5 +County "TN, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701410.epw site_zip_code=38501 site_time_zone_utc_offset=-6 +County "TN, Rhea County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701430.epw site_zip_code=37321 site_time_zone_utc_offset=-5 +County "TN, Roane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701450.epw site_zip_code=37748 site_time_zone_utc_offset=-5 +County "TN, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701470.epw site_zip_code=37172 site_time_zone_utc_offset=-6 +County "TN, Rutherford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701490.epw site_zip_code=37128 site_time_zone_utc_offset=-6 +County "TN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701510.epw site_zip_code=37841 site_time_zone_utc_offset=-5 +County "TN, Sequatchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701530.epw site_zip_code=37327 site_time_zone_utc_offset=-6 +County "TN, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701550.epw site_zip_code=37876 site_time_zone_utc_offset=-5 +County "TN, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701570.epw site_zip_code=38111 site_time_zone_utc_offset=-6 +County "TN, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701590.epw site_zip_code=37030 site_time_zone_utc_offset=-6 +County "TN, Stewart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701610.epw site_zip_code=37058 site_time_zone_utc_offset=-6 +County "TN, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701630.epw site_zip_code=37660 site_time_zone_utc_offset=-5 +County "TN, Sumner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701650.epw site_zip_code=37075 site_time_zone_utc_offset=-6 +County "TN, Tipton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701670.epw site_zip_code=38019 site_time_zone_utc_offset=-6 +County "TN, Trousdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701690.epw site_zip_code=37074 site_time_zone_utc_offset=-6 +County "TN, Unicoi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701710.epw site_zip_code=37650 site_time_zone_utc_offset=-5 +County "TN, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701730.epw site_zip_code=37807 site_time_zone_utc_offset=-5 +County "TN, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701750.epw site_zip_code=38585 site_time_zone_utc_offset=-6 +County "TN, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701770.epw site_zip_code=37110 site_time_zone_utc_offset=-6 +County "TN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701790.epw site_zip_code=37604 site_time_zone_utc_offset=-5 +County "TN, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701810.epw site_zip_code=38485 site_time_zone_utc_offset=-6 +County "TN, Weakley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701830.epw site_zip_code=38237 site_time_zone_utc_offset=-6 +County "TN, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701850.epw site_zip_code=38583 site_time_zone_utc_offset=-6 +County "TN, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701870.epw site_zip_code=37064 site_time_zone_utc_offset=-6 +County "TN, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701890.epw site_zip_code=37122 site_time_zone_utc_offset=-6 +County "TX, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800010.epw site_zip_code=75803 site_time_zone_utc_offset=-6 +County "TX, Andrews County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800030.epw site_zip_code=79714 site_time_zone_utc_offset=-6 +County "TX, Angelina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800050.epw site_zip_code=75904 site_time_zone_utc_offset=-6 +County "TX, Aransas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800070.epw site_zip_code=78382 site_time_zone_utc_offset=-6 +County "TX, Archer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800090.epw site_zip_code=76310 site_time_zone_utc_offset=-6 +County "TX, Armstrong County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800110.epw site_zip_code=79019 site_time_zone_utc_offset=-6 +County "TX, Atascosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800130.epw site_zip_code=78064 site_time_zone_utc_offset=-6 +County "TX, Austin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800150.epw site_zip_code=77474 site_time_zone_utc_offset=-6 +County "TX, Bailey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800170.epw site_zip_code=79347 site_time_zone_utc_offset=-6 +County "TX, Bandera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800190.epw site_zip_code=78003 site_time_zone_utc_offset=-6 +County "TX, Bastrop County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800210.epw site_zip_code=78602 site_time_zone_utc_offset=-6 +County "TX, Baylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800230.epw site_zip_code=76380 site_time_zone_utc_offset=-6 +County "TX, Bee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800250.epw site_zip_code=78102 site_time_zone_utc_offset=-6 +County "TX, Bell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800270.epw site_zip_code=76502 site_time_zone_utc_offset=-6 +County "TX, Bexar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800290.epw site_zip_code=78245 site_time_zone_utc_offset=-6 +County "TX, Blanco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800310.epw site_zip_code=78606 site_time_zone_utc_offset=-6 +County "TX, Borden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800330.epw site_zip_code=79351 site_time_zone_utc_offset=-6 +County "TX, Bosque County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800350.epw site_zip_code=76634 site_time_zone_utc_offset=-6 +County "TX, Bowie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800370.epw site_zip_code=75501 site_time_zone_utc_offset=-6 +County "TX, Brazoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800390.epw site_zip_code=77584 site_time_zone_utc_offset=-6 +County "TX, Brazos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800410.epw site_zip_code=77845 site_time_zone_utc_offset=-6 +County "TX, Brewster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800430.epw site_zip_code=79830 site_time_zone_utc_offset=-6 +County "TX, Briscoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800450.epw site_zip_code=79257 site_time_zone_utc_offset=-6 +County "TX, Brooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800470.epw site_zip_code=78355 site_time_zone_utc_offset=-6 +County "TX, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800490.epw site_zip_code=76801 site_time_zone_utc_offset=-6 +County "TX, Burleson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800510.epw site_zip_code=77836 site_time_zone_utc_offset=-6 +County "TX, Burnet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800530.epw site_zip_code=78654 site_time_zone_utc_offset=-6 +County "TX, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800550.epw site_zip_code=78644 site_time_zone_utc_offset=-6 +County "TX, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800570.epw site_zip_code=77979 site_time_zone_utc_offset=-6 +County "TX, Callahan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800590.epw site_zip_code=79510 site_time_zone_utc_offset=-6 +County "TX, Cameron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800610.epw site_zip_code=78521 site_time_zone_utc_offset=-6 +County "TX, Camp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800630.epw site_zip_code=75686 site_time_zone_utc_offset=-6 +County "TX, Carson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800650.epw site_zip_code=79068 site_time_zone_utc_offset=-6 +County "TX, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800670.epw site_zip_code=75551 site_time_zone_utc_offset=-6 +County "TX, Castro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800690.epw site_zip_code=79027 site_time_zone_utc_offset=-6 +County "TX, Chambers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800710.epw site_zip_code=77523 site_time_zone_utc_offset=-6 +County "TX, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800730.epw site_zip_code=75766 site_time_zone_utc_offset=-6 +County "TX, Childress County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800750.epw site_zip_code=79201 site_time_zone_utc_offset=-6 +County "TX, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800770.epw site_zip_code=76365 site_time_zone_utc_offset=-6 +County "TX, Cochran County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800790.epw site_zip_code=79346 site_time_zone_utc_offset=-6 +County "TX, Coke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800810.epw site_zip_code=76945 site_time_zone_utc_offset=-6 +County "TX, Coleman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800830.epw site_zip_code=76834 site_time_zone_utc_offset=-6 +County "TX, Collin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800850.epw site_zip_code=75035 site_time_zone_utc_offset=-6 +County "TX, Collingsworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800870.epw site_zip_code=79095 site_time_zone_utc_offset=-6 +County "TX, Colorado County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800890.epw site_zip_code=78934 site_time_zone_utc_offset=-6 +County "TX, Comal County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800910.epw site_zip_code=78130 site_time_zone_utc_offset=-6 +County "TX, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800930.epw site_zip_code=76442 site_time_zone_utc_offset=-6 +County "TX, Concho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800950.epw site_zip_code=76837 site_time_zone_utc_offset=-6 +County "TX, Cooke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800970.epw site_zip_code=76240 site_time_zone_utc_offset=-6 +County "TX, Coryell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800990.epw site_zip_code=76522 site_time_zone_utc_offset=-6 +County "TX, Cottle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801010.epw site_zip_code=79248 site_time_zone_utc_offset=-6 +County "TX, Crane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801030.epw site_zip_code=79731 site_time_zone_utc_offset=-6 +County "TX, Crockett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801050.epw site_zip_code=76943 site_time_zone_utc_offset=-6 +County "TX, Crosby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801070.epw site_zip_code=79322 site_time_zone_utc_offset=-6 +County "TX, Culberson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801090.epw site_zip_code=79847 site_time_zone_utc_offset=-6 +County "TX, Dallam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801110.epw site_zip_code=79022 site_time_zone_utc_offset=-6 +County "TX, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801130.epw site_zip_code=75243 site_time_zone_utc_offset=-6 +County "TX, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801150.epw site_zip_code=79331 site_time_zone_utc_offset=-6 +County "TX, DeWitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801230.epw site_zip_code=77954 site_time_zone_utc_offset=-6 +County "TX, Deaf Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801170.epw site_zip_code=79045 site_time_zone_utc_offset=-6 +County "TX, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801190.epw site_zip_code=75432 site_time_zone_utc_offset=-6 +County "TX, Denton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801210.epw site_zip_code=75056 site_time_zone_utc_offset=-6 +County "TX, Dickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801250.epw site_zip_code=79370 site_time_zone_utc_offset=-6 +County "TX, Dimmit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801270.epw site_zip_code=78834 site_time_zone_utc_offset=-6 +County "TX, Donley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801290.epw site_zip_code=79226 site_time_zone_utc_offset=-6 +County "TX, Duval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801310.epw site_zip_code=78384 site_time_zone_utc_offset=-6 +County "TX, Eastland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801330.epw site_zip_code=76437 site_time_zone_utc_offset=-6 +County "TX, Ector County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801350.epw site_zip_code=79762 site_time_zone_utc_offset=-6 +County "TX, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801370.epw site_zip_code=78880 site_time_zone_utc_offset=-6 +County "TX, El Paso County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801410.epw site_zip_code=79936 site_time_zone_utc_offset=-7 +County "TX, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801390.epw site_zip_code=75165 site_time_zone_utc_offset=-6 +County "TX, Erath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801430.epw site_zip_code=76401 site_time_zone_utc_offset=-6 +County "TX, Falls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801450.epw site_zip_code=76661 site_time_zone_utc_offset=-6 +County "TX, Fannin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801470.epw site_zip_code=75418 site_time_zone_utc_offset=-6 +County "TX, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801490.epw site_zip_code=78945 site_time_zone_utc_offset=-6 +County "TX, Fisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801510.epw site_zip_code=79546 site_time_zone_utc_offset=-6 +County "TX, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801530.epw site_zip_code=79235 site_time_zone_utc_offset=-6 +County "TX, Foard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801550.epw site_zip_code=79227 site_time_zone_utc_offset=-6 +County "TX, Fort Bend County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801570.epw site_zip_code=77494 site_time_zone_utc_offset=-6 +County "TX, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801590.epw site_zip_code=75457 site_time_zone_utc_offset=-6 +County "TX, Freestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801610.epw site_zip_code=75860 site_time_zone_utc_offset=-6 +County "TX, Frio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801630.epw site_zip_code=78061 site_time_zone_utc_offset=-6 +County "TX, Gaines County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801650.epw site_zip_code=79360 site_time_zone_utc_offset=-6 +County "TX, Galveston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801670.epw site_zip_code=77573 site_time_zone_utc_offset=-6 +County "TX, Garza County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801690.epw site_zip_code=79356 site_time_zone_utc_offset=-6 +County "TX, Gillespie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801710.epw site_zip_code=78624 site_time_zone_utc_offset=-6 +County "TX, Glasscock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801730.epw site_zip_code=79739 site_time_zone_utc_offset=-6 +County "TX, Goliad County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801750.epw site_zip_code=77963 site_time_zone_utc_offset=-6 +County "TX, Gonzales County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801770.epw site_zip_code=78629 site_time_zone_utc_offset=-6 +County "TX, Gray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801790.epw site_zip_code=79065 site_time_zone_utc_offset=-6 +County "TX, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801810.epw site_zip_code=75092 site_time_zone_utc_offset=-6 +County "TX, Gregg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801830.epw site_zip_code=75605 site_time_zone_utc_offset=-6 +County "TX, Grimes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801850.epw site_zip_code=77868 site_time_zone_utc_offset=-6 +County "TX, Guadalupe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801870.epw site_zip_code=78155 site_time_zone_utc_offset=-6 +County "TX, Hale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801890.epw site_zip_code=79072 site_time_zone_utc_offset=-6 +County "TX, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801910.epw site_zip_code=79245 site_time_zone_utc_offset=-6 +County "TX, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801930.epw site_zip_code=76531 site_time_zone_utc_offset=-6 +County "TX, Hansford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801950.epw site_zip_code=79081 site_time_zone_utc_offset=-6 +County "TX, Hardeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801970.epw site_zip_code=79252 site_time_zone_utc_offset=-6 +County "TX, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801990.epw site_zip_code=77657 site_time_zone_utc_offset=-6 +County "TX, Harris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802010.epw site_zip_code=77449 site_time_zone_utc_offset=-6 +County "TX, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802030.epw site_zip_code=75672 site_time_zone_utc_offset=-6 +County "TX, Hartley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802050.epw site_zip_code=79022 site_time_zone_utc_offset=-6 +County "TX, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802070.epw site_zip_code=79521 site_time_zone_utc_offset=-6 +County "TX, Hays County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802090.epw site_zip_code=78666 site_time_zone_utc_offset=-6 +County "TX, Hemphill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802110.epw site_zip_code=79014 site_time_zone_utc_offset=-6 +County "TX, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802130.epw site_zip_code=75156 site_time_zone_utc_offset=-6 +County "TX, Hidalgo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802150.epw site_zip_code=78572 site_time_zone_utc_offset=-6 +County "TX, Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802170.epw site_zip_code=76692 site_time_zone_utc_offset=-6 +County "TX, Hockley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802190.epw site_zip_code=79336 site_time_zone_utc_offset=-6 +County "TX, Hood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802210.epw site_zip_code=76048 site_time_zone_utc_offset=-6 +County "TX, Hopkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802230.epw site_zip_code=75482 site_time_zone_utc_offset=-6 +County "TX, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802250.epw site_zip_code=75835 site_time_zone_utc_offset=-6 +County "TX, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802270.epw site_zip_code=79720 site_time_zone_utc_offset=-6 +County "TX, Hudspeth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802290.epw site_zip_code=79839 site_time_zone_utc_offset=-7 +County "TX, Hunt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802310.epw site_zip_code=75401 site_time_zone_utc_offset=-6 +County "TX, Hutchinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802330.epw site_zip_code=79007 site_time_zone_utc_offset=-6 +County "TX, Irion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802350.epw site_zip_code=76941 site_time_zone_utc_offset=-6 +County "TX, Jack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802370.epw site_zip_code=76458 site_time_zone_utc_offset=-6 +County "TX, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802390.epw site_zip_code=77957 site_time_zone_utc_offset=-6 +County "TX, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802410.epw site_zip_code=75951 site_time_zone_utc_offset=-6 +County "TX, Jeff Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802430.epw site_zip_code=79734 site_time_zone_utc_offset=-6 +County "TX, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802450.epw site_zip_code=77642 site_time_zone_utc_offset=-6 +County "TX, Jim Hogg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802470.epw site_zip_code=78361 site_time_zone_utc_offset=-6 +County "TX, Jim Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802490.epw site_zip_code=78332 site_time_zone_utc_offset=-6 +County "TX, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802510.epw site_zip_code=76028 site_time_zone_utc_offset=-6 +County "TX, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802530.epw site_zip_code=79501 site_time_zone_utc_offset=-6 +County "TX, Karnes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802550.epw site_zip_code=78119 site_time_zone_utc_offset=-6 +County "TX, Kaufman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802570.epw site_zip_code=75126 site_time_zone_utc_offset=-6 +County "TX, Kendall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802590.epw site_zip_code=78006 site_time_zone_utc_offset=-6 +County "TX, Kenedy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802610.epw site_zip_code=78385 site_time_zone_utc_offset=-6 +County "TX, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802630.epw site_zip_code=79549 site_time_zone_utc_offset=-6 +County "TX, Kerr County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802650.epw site_zip_code=78028 site_time_zone_utc_offset=-6 +County "TX, Kimble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802670.epw site_zip_code=76849 site_time_zone_utc_offset=-6 +County "TX, King County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802690.epw site_zip_code=79248 site_time_zone_utc_offset=-6 +County "TX, Kinney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802710.epw site_zip_code=78832 site_time_zone_utc_offset=-6 +County "TX, Kleberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802730.epw site_zip_code=78363 site_time_zone_utc_offset=-6 +County "TX, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802750.epw site_zip_code=76371 site_time_zone_utc_offset=-6 +County "TX, La Salle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802830.epw site_zip_code=78014 site_time_zone_utc_offset=-6 +County "TX, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802770.epw site_zip_code=75460 site_time_zone_utc_offset=-6 +County "TX, Lamb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802790.epw site_zip_code=79339 site_time_zone_utc_offset=-6 +County "TX, Lampasas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802810.epw site_zip_code=76550 site_time_zone_utc_offset=-6 +County "TX, Lavaca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802850.epw site_zip_code=77964 site_time_zone_utc_offset=-6 +County "TX, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802870.epw site_zip_code=78942 site_time_zone_utc_offset=-6 +County "TX, Leon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802890.epw site_zip_code=75831 site_time_zone_utc_offset=-6 +County "TX, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802910.epw site_zip_code=77327 site_time_zone_utc_offset=-6 +County "TX, Limestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802930.epw site_zip_code=76667 site_time_zone_utc_offset=-6 +County "TX, Lipscomb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802950.epw site_zip_code=79005 site_time_zone_utc_offset=-6 +County "TX, Live Oak County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802970.epw site_zip_code=78022 site_time_zone_utc_offset=-6 +County "TX, Llano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802990.epw site_zip_code=78657 site_time_zone_utc_offset=-6 +County "TX, Loving County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803010.epw site_zip_code=79754 site_time_zone_utc_offset=-6 +County "TX, Lubbock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803030.epw site_zip_code=79424 site_time_zone_utc_offset=-6 +County "TX, Lynn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803050.epw site_zip_code=79373 site_time_zone_utc_offset=-6 +County "TX, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803130.epw site_zip_code=77864 site_time_zone_utc_offset=-6 +County "TX, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803150.epw site_zip_code=75657 site_time_zone_utc_offset=-6 +County "TX, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803170.epw site_zip_code=79782 site_time_zone_utc_offset=-6 +County "TX, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803190.epw site_zip_code=76856 site_time_zone_utc_offset=-6 +County "TX, Matagorda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803210.epw site_zip_code=77414 site_time_zone_utc_offset=-6 +County "TX, Maverick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803230.epw site_zip_code=78852 site_time_zone_utc_offset=-6 +County "TX, McCulloch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803070.epw site_zip_code=76825 site_time_zone_utc_offset=-6 +County "TX, McLennan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803090.epw site_zip_code=76706 site_time_zone_utc_offset=-6 +County "TX, McMullen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803110.epw site_zip_code=78072 site_time_zone_utc_offset=-6 +County "TX, Medina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803250.epw site_zip_code=78861 site_time_zone_utc_offset=-6 +County "TX, Menard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803270.epw site_zip_code=76859 site_time_zone_utc_offset=-6 +County "TX, Midland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803290.epw site_zip_code=79705 site_time_zone_utc_offset=-6 +County "TX, Milam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803310.epw site_zip_code=76567 site_time_zone_utc_offset=-6 +County "TX, Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803330.epw site_zip_code=76844 site_time_zone_utc_offset=-6 +County "TX, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803350.epw site_zip_code=79512 site_time_zone_utc_offset=-6 +County "TX, Montague County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803370.epw site_zip_code=76230 site_time_zone_utc_offset=-6 +County "TX, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803390.epw site_zip_code=77386 site_time_zone_utc_offset=-6 +County "TX, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803410.epw site_zip_code=79029 site_time_zone_utc_offset=-6 +County "TX, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803430.epw site_zip_code=75638 site_time_zone_utc_offset=-6 +County "TX, Motley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803450.epw site_zip_code=79234 site_time_zone_utc_offset=-6 +County "TX, Nacogdoches County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803470.epw site_zip_code=75964 site_time_zone_utc_offset=-6 +County "TX, Navarro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803490.epw site_zip_code=75110 site_time_zone_utc_offset=-6 +County "TX, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803510.epw site_zip_code=75966 site_time_zone_utc_offset=-6 +County "TX, Nolan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803530.epw site_zip_code=79556 site_time_zone_utc_offset=-6 +County "TX, Nueces County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803550.epw site_zip_code=78414 site_time_zone_utc_offset=-6 +County "TX, Ochiltree County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803570.epw site_zip_code=79070 site_time_zone_utc_offset=-6 +County "TX, Oldham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803590.epw site_zip_code=79092 site_time_zone_utc_offset=-6 +County "TX, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803610.epw site_zip_code=77630 site_time_zone_utc_offset=-6 +County "TX, Palo Pinto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803630.epw site_zip_code=76067 site_time_zone_utc_offset=-6 +County "TX, Panola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803650.epw site_zip_code=75633 site_time_zone_utc_offset=-6 +County "TX, Parker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803670.epw site_zip_code=76087 site_time_zone_utc_offset=-6 +County "TX, Parmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803690.epw site_zip_code=79035 site_time_zone_utc_offset=-6 +County "TX, Pecos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803710.epw site_zip_code=79735 site_time_zone_utc_offset=-6 +County "TX, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803730.epw site_zip_code=77351 site_time_zone_utc_offset=-6 +County "TX, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803750.epw site_zip_code=79107 site_time_zone_utc_offset=-6 +County "TX, Presidio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803770.epw site_zip_code=79845 site_time_zone_utc_offset=-6 +County "TX, Rains County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803790.epw site_zip_code=75440 site_time_zone_utc_offset=-6 +County "TX, Randall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803810.epw site_zip_code=79109 site_time_zone_utc_offset=-6 +County "TX, Reagan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803830.epw site_zip_code=76932 site_time_zone_utc_offset=-6 +County "TX, Real County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803850.epw site_zip_code=78873 site_time_zone_utc_offset=-6 +County "TX, Red River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803870.epw site_zip_code=75426 site_time_zone_utc_offset=-6 +County "TX, Reeves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803890.epw site_zip_code=79772 site_time_zone_utc_offset=-6 +County "TX, Refugio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803910.epw site_zip_code=78377 site_time_zone_utc_offset=-6 +County "TX, Roberts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803930.epw site_zip_code=79059 site_time_zone_utc_offset=-6 +County "TX, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803950.epw site_zip_code=77859 site_time_zone_utc_offset=-6 +County "TX, Rockwall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803970.epw site_zip_code=75087 site_time_zone_utc_offset=-6 +County "TX, Runnels County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803990.epw site_zip_code=76821 site_time_zone_utc_offset=-6 +County "TX, Rusk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804010.epw site_zip_code=75652 site_time_zone_utc_offset=-6 +County "TX, Sabine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804030.epw site_zip_code=75948 site_time_zone_utc_offset=-6 +County "TX, San Augustine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804050.epw site_zip_code=75972 site_time_zone_utc_offset=-6 +County "TX, San Jacinto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804070.epw site_zip_code=77331 site_time_zone_utc_offset=-6 +County "TX, San Patricio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804090.epw site_zip_code=78374 site_time_zone_utc_offset=-6 +County "TX, San Saba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804110.epw site_zip_code=76877 site_time_zone_utc_offset=-6 +County "TX, Schleicher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804130.epw site_zip_code=76936 site_time_zone_utc_offset=-6 +County "TX, Scurry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804150.epw site_zip_code=79549 site_time_zone_utc_offset=-6 +County "TX, Shackelford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804170.epw site_zip_code=76430 site_time_zone_utc_offset=-6 +County "TX, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804190.epw site_zip_code=75935 site_time_zone_utc_offset=-6 +County "TX, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804210.epw site_zip_code=79084 site_time_zone_utc_offset=-6 +County "TX, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804230.epw site_zip_code=75703 site_time_zone_utc_offset=-6 +County "TX, Somervell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804250.epw site_zip_code=76043 site_time_zone_utc_offset=-6 +County "TX, Starr County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804270.epw site_zip_code=78582 site_time_zone_utc_offset=-6 +County "TX, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804290.epw site_zip_code=76424 site_time_zone_utc_offset=-6 +County "TX, Sterling County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804310.epw site_zip_code=76951 site_time_zone_utc_offset=-6 +County "TX, Stonewall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804330.epw site_zip_code=79502 site_time_zone_utc_offset=-6 +County "TX, Sutton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804350.epw site_zip_code=76950 site_time_zone_utc_offset=-6 +County "TX, Swisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804370.epw site_zip_code=79088 site_time_zone_utc_offset=-6 +County "TX, Tarrant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804390.epw site_zip_code=76244 site_time_zone_utc_offset=-6 +County "TX, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804410.epw site_zip_code=79605 site_time_zone_utc_offset=-6 +County "TX, Terrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804430.epw site_zip_code=78851 site_time_zone_utc_offset=-6 +County "TX, Terry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804450.epw site_zip_code=79316 site_time_zone_utc_offset=-6 +County "TX, Throckmorton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804470.epw site_zip_code=76483 site_time_zone_utc_offset=-6 +County "TX, Titus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804490.epw site_zip_code=75455 site_time_zone_utc_offset=-6 +County "TX, Tom Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804510.epw site_zip_code=76904 site_time_zone_utc_offset=-6 +County "TX, Travis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804530.epw site_zip_code=78660 site_time_zone_utc_offset=-6 +County "TX, Trinity County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804550.epw site_zip_code=75862 site_time_zone_utc_offset=-6 +County "TX, Tyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804570.epw site_zip_code=75979 site_time_zone_utc_offset=-6 +County "TX, Upshur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804590.epw site_zip_code=75644 site_time_zone_utc_offset=-6 +County "TX, Upton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804610.epw site_zip_code=79778 site_time_zone_utc_offset=-6 +County "TX, Uvalde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804630.epw site_zip_code=78801 site_time_zone_utc_offset=-6 +County "TX, Val Verde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804650.epw site_zip_code=78840 site_time_zone_utc_offset=-6 +County "TX, Van Zandt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804670.epw site_zip_code=75103 site_time_zone_utc_offset=-6 +County "TX, Victoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804690.epw site_zip_code=77901 site_time_zone_utc_offset=-6 +County "TX, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804710.epw site_zip_code=77340 site_time_zone_utc_offset=-6 +County "TX, Waller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804730.epw site_zip_code=77423 site_time_zone_utc_offset=-6 +County "TX, Ward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804750.epw site_zip_code=79756 site_time_zone_utc_offset=-6 +County "TX, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804770.epw site_zip_code=77833 site_time_zone_utc_offset=-6 +County "TX, Webb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804790.epw site_zip_code=78045 site_time_zone_utc_offset=-6 +County "TX, Wharton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804810.epw site_zip_code=77437 site_time_zone_utc_offset=-6 +County "TX, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804830.epw site_zip_code=79079 site_time_zone_utc_offset=-6 +County "TX, Wichita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804850.epw site_zip_code=76311 site_time_zone_utc_offset=-6 +County "TX, Wilbarger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804870.epw site_zip_code=76384 site_time_zone_utc_offset=-6 +County "TX, Willacy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804890.epw site_zip_code=78580 site_time_zone_utc_offset=-6 +County "TX, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804910.epw site_zip_code=78641 site_time_zone_utc_offset=-6 +County "TX, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804930.epw site_zip_code=78114 site_time_zone_utc_offset=-6 +County "TX, Winkler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804950.epw site_zip_code=79745 site_time_zone_utc_offset=-6 +County "TX, Wise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804970.epw site_zip_code=76234 site_time_zone_utc_offset=-6 +County "TX, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804990.epw site_zip_code=75773 site_time_zone_utc_offset=-6 +County "TX, Yoakum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805010.epw site_zip_code=79323 site_time_zone_utc_offset=-6 +County "TX, Young County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805030.epw site_zip_code=76450 site_time_zone_utc_offset=-6 +County "TX, Zapata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805050.epw site_zip_code=78076 site_time_zone_utc_offset=-6 +County "TX, Zavala County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805070.epw site_zip_code=78839 site_time_zone_utc_offset=-6 +County "UT, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900010.epw site_zip_code=84713 site_time_zone_utc_offset=-7 +County "UT, Box Elder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900030.epw site_zip_code=84302 site_time_zone_utc_offset=-7 +County "UT, Cache County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900050.epw site_zip_code=84321 site_time_zone_utc_offset=-7 +County "UT, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900070.epw site_zip_code=84501 site_time_zone_utc_offset=-7 +County "UT, Daggett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900090.epw site_zip_code=84046 site_time_zone_utc_offset=-7 +County "UT, Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900110.epw site_zip_code=84015 site_time_zone_utc_offset=-7 +County "UT, Duchesne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900130.epw site_zip_code=84066 site_time_zone_utc_offset=-7 +County "UT, Emery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900150.epw site_zip_code=84528 site_time_zone_utc_offset=-7 +County "UT, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900170.epw site_zip_code=84726 site_time_zone_utc_offset=-7 +County "UT, Grand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900190.epw site_zip_code=84532 site_time_zone_utc_offset=-7 +County "UT, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900210.epw site_zip_code=84721 site_time_zone_utc_offset=-7 +County "UT, Juab County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900230.epw site_zip_code=84648 site_time_zone_utc_offset=-7 +County "UT, Kane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900250.epw site_zip_code=84741 site_time_zone_utc_offset=-7 +County "UT, Millard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900270.epw site_zip_code=84624 site_time_zone_utc_offset=-7 +County "UT, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900290.epw site_zip_code=84050 site_time_zone_utc_offset=-7 +County "UT, Piute County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900310.epw site_zip_code=84750 site_time_zone_utc_offset=-7 +County "UT, Rich County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900330.epw site_zip_code=84028 site_time_zone_utc_offset=-7 +County "UT, Salt Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900350.epw site_zip_code=84096 site_time_zone_utc_offset=-7 +County "UT, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900370.epw site_zip_code=84511 site_time_zone_utc_offset=-7 +County "UT, Sanpete County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900390.epw site_zip_code=84627 site_time_zone_utc_offset=-7 +County "UT, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900410.epw site_zip_code=84701 site_time_zone_utc_offset=-7 +County "UT, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900430.epw site_zip_code=84098 site_time_zone_utc_offset=-7 +County "UT, Tooele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900450.epw site_zip_code=84074 site_time_zone_utc_offset=-7 +County "UT, Uintah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900470.epw site_zip_code=84078 site_time_zone_utc_offset=-7 +County "UT, Utah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900490.epw site_zip_code=84043 site_time_zone_utc_offset=-7 +County "UT, Wasatch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900510.epw site_zip_code=84032 site_time_zone_utc_offset=-7 +County "UT, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900530.epw site_zip_code=84770 site_time_zone_utc_offset=-7 +County "UT, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900550.epw site_zip_code=84775 site_time_zone_utc_offset=-7 +County "UT, Weber County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900570.epw site_zip_code=84404 site_time_zone_utc_offset=-7 +County "VA, Accomack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100010.epw site_zip_code=23336 site_time_zone_utc_offset=-5 +County "VA, Albemarle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100030.epw site_zip_code=22901 site_time_zone_utc_offset=-5 +County "VA, Alexandria city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105100.epw site_zip_code=22304 site_time_zone_utc_offset=-5 +County "VA, Alleghany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100050.epw site_zip_code=24426 site_time_zone_utc_offset=-5 +County "VA, Amelia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100070.epw site_zip_code=23002 site_time_zone_utc_offset=-5 +County "VA, Amherst County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100090.epw site_zip_code=24572 site_time_zone_utc_offset=-5 +County "VA, Appomattox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100110.epw site_zip_code=24522 site_time_zone_utc_offset=-5 +County "VA, Arlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100130.epw site_zip_code=22204 site_time_zone_utc_offset=-5 +County "VA, Augusta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100150.epw site_zip_code=24401 site_time_zone_utc_offset=-5 +County "VA, Bath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100170.epw site_zip_code=24460 site_time_zone_utc_offset=-5 +County "VA, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100190.epw site_zip_code=24551 site_time_zone_utc_offset=-5 +County "VA, Bland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100210.epw site_zip_code=24315 site_time_zone_utc_offset=-5 +County "VA, Botetourt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100230.epw site_zip_code=24175 site_time_zone_utc_offset=-5 +County "VA, Bristol city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105200.epw site_zip_code=24201 site_time_zone_utc_offset=-5 +County "VA, Brunswick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100250.epw site_zip_code=23868 site_time_zone_utc_offset=-5 +County "VA, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100270.epw site_zip_code=24614 site_time_zone_utc_offset=-5 +County "VA, Buckingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100290.epw site_zip_code=23936 site_time_zone_utc_offset=-5 +County "VA, Buena Vista city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105300.epw site_zip_code=24416 site_time_zone_utc_offset=-5 +County "VA, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100310.epw site_zip_code=24502 site_time_zone_utc_offset=-5 +County "VA, Caroline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100330.epw site_zip_code=22546 site_time_zone_utc_offset=-5 +County "VA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100350.epw site_zip_code=24343 site_time_zone_utc_offset=-5 +County "VA, Charles City County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100360.epw site_zip_code=23030 site_time_zone_utc_offset=-5 +County "VA, Charlotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100370.epw site_zip_code=23923 site_time_zone_utc_offset=-5 +County "VA, Charlottesville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105400.epw site_zip_code=22903 site_time_zone_utc_offset=-5 +County "VA, Chesapeake city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105500.epw site_zip_code=23320 site_time_zone_utc_offset=-5 +County "VA, Chesterfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100410.epw site_zip_code=23112 site_time_zone_utc_offset=-5 +County "VA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100430.epw site_zip_code=22611 site_time_zone_utc_offset=-5 +County "VA, Colonial Heights city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105700.epw site_zip_code=23834 site_time_zone_utc_offset=-5 +County "VA, Covington city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105800.epw site_zip_code=24426 site_time_zone_utc_offset=-5 +County "VA, Craig County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100450.epw site_zip_code=24127 site_time_zone_utc_offset=-5 +County "VA, Culpeper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100470.epw site_zip_code=22701 site_time_zone_utc_offset=-5 +County "VA, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100490.epw site_zip_code=23040 site_time_zone_utc_offset=-5 +County "VA, Danville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105900.epw site_zip_code=24541 site_time_zone_utc_offset=-5 +County "VA, Dickenson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100510.epw site_zip_code=24228 site_time_zone_utc_offset=-5 +County "VA, Dinwiddie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100530.epw site_zip_code=23803 site_time_zone_utc_offset=-5 +County "VA, Emporia city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105950.epw site_zip_code=23847 site_time_zone_utc_offset=-5 +County "VA, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100570.epw site_zip_code=22560 site_time_zone_utc_offset=-5 +County "VA, Fairfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100590.epw site_zip_code=20171 site_time_zone_utc_offset=-5 +County "VA, Fairfax city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106000.epw site_zip_code=22030 site_time_zone_utc_offset=-5 +County "VA, Falls Church city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106100.epw site_zip_code=22046 site_time_zone_utc_offset=-5 +County "VA, Fauquier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100610.epw site_zip_code=20187 site_time_zone_utc_offset=-5 +County "VA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100630.epw site_zip_code=24091 site_time_zone_utc_offset=-5 +County "VA, Fluvanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100650.epw site_zip_code=22963 site_time_zone_utc_offset=-5 +County "VA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100670.epw site_zip_code=24151 site_time_zone_utc_offset=-5 +County "VA, Franklin city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106200.epw site_zip_code=23851 site_time_zone_utc_offset=-5 +County "VA, Frederick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100690.epw site_zip_code=22602 site_time_zone_utc_offset=-5 +County "VA, Fredericksburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106300.epw site_zip_code=22401 site_time_zone_utc_offset=-5 +County "VA, Galax city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106400.epw site_zip_code=24333 site_time_zone_utc_offset=-5 +County "VA, Giles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100710.epw site_zip_code=24134 site_time_zone_utc_offset=-5 +County "VA, Gloucester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100730.epw site_zip_code=23061 site_time_zone_utc_offset=-5 +County "VA, Goochland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100750.epw site_zip_code=23103 site_time_zone_utc_offset=-5 +County "VA, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100770.epw site_zip_code=24333 site_time_zone_utc_offset=-5 +County "VA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100790.epw site_zip_code=22968 site_time_zone_utc_offset=-5 +County "VA, Greensville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100810.epw site_zip_code=23847 site_time_zone_utc_offset=-5 +County "VA, Halifax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100830.epw site_zip_code=24592 site_time_zone_utc_offset=-5 +County "VA, Hampton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106500.epw site_zip_code=23666 site_time_zone_utc_offset=-5 +County "VA, Hanover County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100850.epw site_zip_code=23111 site_time_zone_utc_offset=-5 +County "VA, Harrisonburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106600.epw site_zip_code=22801 site_time_zone_utc_offset=-5 +County "VA, Henrico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100870.epw site_zip_code=23228 site_time_zone_utc_offset=-5 +County "VA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100890.epw site_zip_code=24112 site_time_zone_utc_offset=-5 +County "VA, Highland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100910.epw site_zip_code=24465 site_time_zone_utc_offset=-5 +County "VA, Hopewell city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106700.epw site_zip_code=23860 site_time_zone_utc_offset=-5 +County "VA, Isle of Wight County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100930.epw site_zip_code=23430 site_time_zone_utc_offset=-5 +County "VA, James City County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100950.epw site_zip_code=23188 site_time_zone_utc_offset=-5 +County "VA, King George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100990.epw site_zip_code=22485 site_time_zone_utc_offset=-5 +County "VA, King William County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101010.epw site_zip_code=23009 site_time_zone_utc_offset=-5 +County "VA, King and Queen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100970.epw site_zip_code=23156 site_time_zone_utc_offset=-5 +County "VA, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101030.epw site_zip_code=22503 site_time_zone_utc_offset=-5 +County "VA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101050.epw site_zip_code=24263 site_time_zone_utc_offset=-5 +County "VA, Lexington city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106780.epw site_zip_code=24450 site_time_zone_utc_offset=-5 +County "VA, Loudoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101070.epw site_zip_code=20189 site_time_zone_utc_offset=-5 +County "VA, Louisa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101090.epw site_zip_code=23093 site_time_zone_utc_offset=-5 +County "VA, Lunenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101110.epw site_zip_code=23974 site_time_zone_utc_offset=-5 +County "VA, Lynchburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106800.epw site_zip_code=24502 site_time_zone_utc_offset=-5 +County "VA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101130.epw site_zip_code=22727 site_time_zone_utc_offset=-5 +County "VA, Manassas Park city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106850.epw site_zip_code=20111 site_time_zone_utc_offset=-5 +County "VA, Manassas city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106830.epw site_zip_code=20110 site_time_zone_utc_offset=-5 +County "VA, Martinsville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106900.epw site_zip_code=24112 site_time_zone_utc_offset=-5 +County "VA, Mathews County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101150.epw site_zip_code=23109 site_time_zone_utc_offset=-5 +County "VA, Mecklenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101170.epw site_zip_code=23970 site_time_zone_utc_offset=-5 +County "VA, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101190.epw site_zip_code=23043 site_time_zone_utc_offset=-5 +County "VA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101210.epw site_zip_code=24060 site_time_zone_utc_offset=-5 +County "VA, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101250.epw site_zip_code=22967 site_time_zone_utc_offset=-5 +County "VA, New Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101270.epw site_zip_code=23141 site_time_zone_utc_offset=-5 +County "VA, Newport News city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107000.epw site_zip_code=23608 site_time_zone_utc_offset=-5 +County "VA, Norfolk city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107100.epw site_zip_code=23503 site_time_zone_utc_offset=-5 +County "VA, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101310.epw site_zip_code=23310 site_time_zone_utc_offset=-5 +County "VA, Northumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101330.epw site_zip_code=22473 site_time_zone_utc_offset=-5 +County "VA, Norton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107200.epw site_zip_code=24273 site_time_zone_utc_offset=-5 +County "VA, Nottoway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101350.epw site_zip_code=23824 site_time_zone_utc_offset=-5 +County "VA, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101370.epw site_zip_code=22508 site_time_zone_utc_offset=-5 +County "VA, Page County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101390.epw site_zip_code=22835 site_time_zone_utc_offset=-5 +County "VA, Patrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101410.epw site_zip_code=24171 site_time_zone_utc_offset=-5 +County "VA, Petersburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107300.epw site_zip_code=23803 site_time_zone_utc_offset=-5 +County "VA, Pittsylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101430.epw site_zip_code=24540 site_time_zone_utc_offset=-5 +County "VA, Poquoson city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107350.epw site_zip_code=23662 site_time_zone_utc_offset=-5 +County "VA, Portsmouth city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107400.epw site_zip_code=23703 site_time_zone_utc_offset=-5 +County "VA, Powhatan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101450.epw site_zip_code=23139 site_time_zone_utc_offset=-5 +County "VA, Prince Edward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101470.epw site_zip_code=23901 site_time_zone_utc_offset=-5 +County "VA, Prince George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101490.epw site_zip_code=23875 site_time_zone_utc_offset=-5 +County "VA, Prince William County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101530.epw site_zip_code=22191 site_time_zone_utc_offset=-5 +County "VA, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101550.epw site_zip_code=24301 site_time_zone_utc_offset=-5 +County "VA, Radford city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107500.epw site_zip_code=24141 site_time_zone_utc_offset=-5 +County "VA, Rappahannock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101570.epw site_zip_code=20106 site_time_zone_utc_offset=-5 +County "VA, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101590.epw site_zip_code=22572 site_time_zone_utc_offset=-5 +County "VA, Richmond city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107600.epw site_zip_code=23220 site_time_zone_utc_offset=-5 +County "VA, Roanoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101610.epw site_zip_code=24018 site_time_zone_utc_offset=-5 +County "VA, Roanoke city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107700.epw site_zip_code=24017 site_time_zone_utc_offset=-5 +County "VA, Rockbridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101630.epw site_zip_code=24450 site_time_zone_utc_offset=-5 +County "VA, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101650.epw site_zip_code=22801 site_time_zone_utc_offset=-5 +County "VA, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101670.epw site_zip_code=24266 site_time_zone_utc_offset=-5 +County "VA, Salem city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107750.epw site_zip_code=24153 site_time_zone_utc_offset=-5 +County "VA, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101690.epw site_zip_code=24251 site_time_zone_utc_offset=-5 +County "VA, Shenandoah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101710.epw site_zip_code=22657 site_time_zone_utc_offset=-5 +County "VA, Smyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101730.epw site_zip_code=24354 site_time_zone_utc_offset=-5 +County "VA, Southampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101750.epw site_zip_code=23851 site_time_zone_utc_offset=-5 +County "VA, Spotsylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101770.epw site_zip_code=22407 site_time_zone_utc_offset=-5 +County "VA, Stafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101790.epw site_zip_code=22554 site_time_zone_utc_offset=-5 +County "VA, Staunton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107900.epw site_zip_code=24401 site_time_zone_utc_offset=-5 +County "VA, Suffolk city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108000.epw site_zip_code=23434 site_time_zone_utc_offset=-5 +County "VA, Surry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101810.epw site_zip_code=23883 site_time_zone_utc_offset=-5 +County "VA, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101830.epw site_zip_code=23890 site_time_zone_utc_offset=-5 +County "VA, Tazewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101850.epw site_zip_code=24605 site_time_zone_utc_offset=-5 +County "VA, Virginia Beach city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108100.epw site_zip_code=23462 site_time_zone_utc_offset=-5 +County "VA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101870.epw site_zip_code=22630 site_time_zone_utc_offset=-5 +County "VA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101910.epw site_zip_code=24210 site_time_zone_utc_offset=-5 +County "VA, Waynesboro city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108200.epw site_zip_code=22980 site_time_zone_utc_offset=-5 +County "VA, Westmoreland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101930.epw site_zip_code=22443 site_time_zone_utc_offset=-5 +County "VA, Williamsburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108300.epw site_zip_code=23185 site_time_zone_utc_offset=-5 +County "VA, Winchester city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108400.epw site_zip_code=22601 site_time_zone_utc_offset=-5 +County "VA, Wise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101950.epw site_zip_code=24219 site_time_zone_utc_offset=-5 +County "VA, Wythe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101970.epw site_zip_code=24382 site_time_zone_utc_offset=-5 +County "VA, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101990.epw site_zip_code=23692 site_time_zone_utc_offset=-5 +County "VT, Addison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000010.epw site_zip_code=05753 site_time_zone_utc_offset=-5 +County "VT, Bennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000030.epw site_zip_code=05201 site_time_zone_utc_offset=-5 +County "VT, Caledonia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000050.epw site_zip_code=05819 site_time_zone_utc_offset=-5 +County "VT, Chittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000070.epw site_zip_code=05401 site_time_zone_utc_offset=-5 +County "VT, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000090.epw site_zip_code=05906 site_time_zone_utc_offset=-5 +County "VT, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000110.epw site_zip_code=05478 site_time_zone_utc_offset=-5 +County "VT, Grand Isle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000130.epw site_zip_code=05440 site_time_zone_utc_offset=-5 +County "VT, Lamoille County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000150.epw site_zip_code=05672 site_time_zone_utc_offset=-5 +County "VT, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000170.epw site_zip_code=05060 site_time_zone_utc_offset=-5 +County "VT, Orleans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000190.epw site_zip_code=05855 site_time_zone_utc_offset=-5 +County "VT, Rutland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000210.epw site_zip_code=05701 site_time_zone_utc_offset=-5 +County "VT, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000230.epw site_zip_code=05641 site_time_zone_utc_offset=-5 +County "VT, Windham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000250.epw site_zip_code=05301 site_time_zone_utc_offset=-5 +County "VT, Windsor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000270.epw site_zip_code=05156 site_time_zone_utc_offset=-5 +County "WA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300010.epw site_zip_code=99344 site_time_zone_utc_offset=-8 +County "WA, Asotin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300030.epw site_zip_code=99403 site_time_zone_utc_offset=-8 +County "WA, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300050.epw site_zip_code=99336 site_time_zone_utc_offset=-8 +County "WA, Chelan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300070.epw site_zip_code=98801 site_time_zone_utc_offset=-8 +County "WA, Clallam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300090.epw site_zip_code=98382 site_time_zone_utc_offset=-8 +County "WA, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300110.epw site_zip_code=98682 site_time_zone_utc_offset=-8 +County "WA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300130.epw site_zip_code=99328 site_time_zone_utc_offset=-8 +County "WA, Cowlitz County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300150.epw site_zip_code=98632 site_time_zone_utc_offset=-8 +County "WA, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300170.epw site_zip_code=98802 site_time_zone_utc_offset=-8 +County "WA, Ferry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300190.epw site_zip_code=99166 site_time_zone_utc_offset=-8 +County "WA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300210.epw site_zip_code=99301 site_time_zone_utc_offset=-8 +County "WA, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300230.epw site_zip_code=99347 site_time_zone_utc_offset=-8 +County "WA, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300250.epw site_zip_code=98837 site_time_zone_utc_offset=-8 +County "WA, Grays Harbor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300270.epw site_zip_code=98520 site_time_zone_utc_offset=-8 +County "WA, Island County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300290.epw site_zip_code=98277 site_time_zone_utc_offset=-8 +County "WA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300310.epw site_zip_code=98368 site_time_zone_utc_offset=-8 +County "WA, King County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300330.epw site_zip_code=98052 site_time_zone_utc_offset=-8 +County "WA, Kitsap County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300350.epw site_zip_code=98312 site_time_zone_utc_offset=-8 +County "WA, Kittitas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300370.epw site_zip_code=98926 site_time_zone_utc_offset=-8 +County "WA, Klickitat County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300390.epw site_zip_code=98672 site_time_zone_utc_offset=-8 +County "WA, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300410.epw site_zip_code=98531 site_time_zone_utc_offset=-8 +County "WA, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300430.epw site_zip_code=99122 site_time_zone_utc_offset=-8 +County "WA, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300450.epw site_zip_code=98584 site_time_zone_utc_offset=-8 +County "WA, Okanogan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300470.epw site_zip_code=98841 site_time_zone_utc_offset=-8 +County "WA, Pacific County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300490.epw site_zip_code=98640 site_time_zone_utc_offset=-8 +County "WA, Pend Oreille County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300510.epw site_zip_code=99156 site_time_zone_utc_offset=-8 +County "WA, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300530.epw site_zip_code=98391 site_time_zone_utc_offset=-8 +County "WA, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300550.epw site_zip_code=98250 site_time_zone_utc_offset=-8 +County "WA, Skagit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300570.epw site_zip_code=98273 site_time_zone_utc_offset=-8 +County "WA, Skamania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300590.epw site_zip_code=98648 site_time_zone_utc_offset=-8 +County "WA, Snohomish County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300610.epw site_zip_code=98012 site_time_zone_utc_offset=-8 +County "WA, Spokane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300630.epw site_zip_code=99208 site_time_zone_utc_offset=-8 +County "WA, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300650.epw site_zip_code=99114 site_time_zone_utc_offset=-8 +County "WA, Thurston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300670.epw site_zip_code=98501 site_time_zone_utc_offset=-8 +County "WA, Wahkiakum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300690.epw site_zip_code=98612 site_time_zone_utc_offset=-8 +County "WA, Walla Walla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300710.epw site_zip_code=99362 site_time_zone_utc_offset=-8 +County "WA, Whatcom County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300730.epw site_zip_code=98225 site_time_zone_utc_offset=-8 +County "WA, Whitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300750.epw site_zip_code=99163 site_time_zone_utc_offset=-8 +County "WA, Yakima County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300770.epw site_zip_code=98902 site_time_zone_utc_offset=-8 +County "WI, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500010.epw site_zip_code=53934 site_time_zone_utc_offset=-6 +County "WI, Ashland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500030.epw site_zip_code=54806 site_time_zone_utc_offset=-6 +County "WI, Barron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500050.epw site_zip_code=54868 site_time_zone_utc_offset=-6 +County "WI, Bayfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500070.epw site_zip_code=54891 site_time_zone_utc_offset=-6 +County "WI, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500090.epw site_zip_code=54115 site_time_zone_utc_offset=-6 +County "WI, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500110.epw site_zip_code=54755 site_time_zone_utc_offset=-6 +County "WI, Burnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500130.epw site_zip_code=54830 site_time_zone_utc_offset=-6 +County "WI, Calumet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500150.epw site_zip_code=54915 site_time_zone_utc_offset=-6 +County "WI, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500170.epw site_zip_code=54729 site_time_zone_utc_offset=-6 +County "WI, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500190.epw site_zip_code=54456 site_time_zone_utc_offset=-6 +County "WI, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500210.epw site_zip_code=53901 site_time_zone_utc_offset=-6 +County "WI, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500230.epw site_zip_code=53821 site_time_zone_utc_offset=-6 +County "WI, Dane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500250.epw site_zip_code=53711 site_time_zone_utc_offset=-6 +County "WI, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500270.epw site_zip_code=53916 site_time_zone_utc_offset=-6 +County "WI, Door County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500290.epw site_zip_code=54235 site_time_zone_utc_offset=-6 +County "WI, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500310.epw site_zip_code=54880 site_time_zone_utc_offset=-6 +County "WI, Dunn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500330.epw site_zip_code=54751 site_time_zone_utc_offset=-6 +County "WI, Eau Claire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500350.epw site_zip_code=54703 site_time_zone_utc_offset=-6 +County "WI, Florence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500370.epw site_zip_code=54121 site_time_zone_utc_offset=-6 +County "WI, Fond du Lac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500390.epw site_zip_code=54935 site_time_zone_utc_offset=-6 +County "WI, Forest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500410.epw site_zip_code=54520 site_time_zone_utc_offset=-6 +County "WI, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500430.epw site_zip_code=53818 site_time_zone_utc_offset=-6 +County "WI, Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500450.epw site_zip_code=53566 site_time_zone_utc_offset=-6 +County "WI, Green Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500470.epw site_zip_code=54923 site_time_zone_utc_offset=-6 +County "WI, Iowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500490.epw site_zip_code=53533 site_time_zone_utc_offset=-6 +County "WI, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500510.epw site_zip_code=54547 site_time_zone_utc_offset=-6 +County "WI, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500530.epw site_zip_code=54615 site_time_zone_utc_offset=-6 +County "WI, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500550.epw site_zip_code=53538 site_time_zone_utc_offset=-6 +County "WI, Juneau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500570.epw site_zip_code=53948 site_time_zone_utc_offset=-6 +County "WI, Kenosha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500590.epw site_zip_code=53142 site_time_zone_utc_offset=-6 +County "WI, Kewaunee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500610.epw site_zip_code=54216 site_time_zone_utc_offset=-6 +County "WI, La Crosse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500630.epw site_zip_code=54601 site_time_zone_utc_offset=-6 +County "WI, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500650.epw site_zip_code=53530 site_time_zone_utc_offset=-6 +County "WI, Langlade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500670.epw site_zip_code=54409 site_time_zone_utc_offset=-6 +County "WI, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500690.epw site_zip_code=54452 site_time_zone_utc_offset=-6 +County "WI, Manitowoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500710.epw site_zip_code=54220 site_time_zone_utc_offset=-6 +County "WI, Marathon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500730.epw site_zip_code=54401 site_time_zone_utc_offset=-6 +County "WI, Marinette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500750.epw site_zip_code=54143 site_time_zone_utc_offset=-6 +County "WI, Marquette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500770.epw site_zip_code=53949 site_time_zone_utc_offset=-6 +County "WI, Menominee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500780.epw site_zip_code=54135 site_time_zone_utc_offset=-6 +County "WI, Milwaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500790.epw site_zip_code=53209 site_time_zone_utc_offset=-6 +County "WI, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500810.epw site_zip_code=54656 site_time_zone_utc_offset=-6 +County "WI, Oconto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500830.epw site_zip_code=54153 site_time_zone_utc_offset=-6 +County "WI, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500850.epw site_zip_code=54501 site_time_zone_utc_offset=-6 +County "WI, Outagamie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500870.epw site_zip_code=54911 site_time_zone_utc_offset=-6 +County "WI, Ozaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500890.epw site_zip_code=53092 site_time_zone_utc_offset=-6 +County "WI, Pepin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500910.epw site_zip_code=54736 site_time_zone_utc_offset=-6 +County "WI, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500930.epw site_zip_code=54022 site_time_zone_utc_offset=-6 +County "WI, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500950.epw site_zip_code=54001 site_time_zone_utc_offset=-6 +County "WI, Portage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500970.epw site_zip_code=54481 site_time_zone_utc_offset=-6 +County "WI, Price County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500990.epw site_zip_code=54555 site_time_zone_utc_offset=-6 +County "WI, Racine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501010.epw site_zip_code=53402 site_time_zone_utc_offset=-6 +County "WI, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501030.epw site_zip_code=53581 site_time_zone_utc_offset=-6 +County "WI, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501050.epw site_zip_code=53511 site_time_zone_utc_offset=-6 +County "WI, Rusk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501070.epw site_zip_code=54848 site_time_zone_utc_offset=-6 +County "WI, Sauk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501110.epw site_zip_code=53913 site_time_zone_utc_offset=-6 +County "WI, Sawyer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501130.epw site_zip_code=54843 site_time_zone_utc_offset=-6 +County "WI, Shawano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501150.epw site_zip_code=54166 site_time_zone_utc_offset=-6 +County "WI, Sheboygan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501170.epw site_zip_code=53081 site_time_zone_utc_offset=-6 +County "WI, St. Croix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501090.epw site_zip_code=54016 site_time_zone_utc_offset=-6 +County "WI, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501190.epw site_zip_code=54451 site_time_zone_utc_offset=-6 +County "WI, Trempealeau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501210.epw site_zip_code=54612 site_time_zone_utc_offset=-6 +County "WI, Vernon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501230.epw site_zip_code=54665 site_time_zone_utc_offset=-6 +County "WI, Vilas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501250.epw site_zip_code=54521 site_time_zone_utc_offset=-6 +County "WI, Walworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501270.epw site_zip_code=53147 site_time_zone_utc_offset=-6 +County "WI, Washburn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501290.epw site_zip_code=54801 site_time_zone_utc_offset=-6 +County "WI, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501310.epw site_zip_code=53022 site_time_zone_utc_offset=-6 +County "WI, Waukesha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501330.epw site_zip_code=53051 site_time_zone_utc_offset=-6 +County "WI, Waupaca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501350.epw site_zip_code=54981 site_time_zone_utc_offset=-6 +County "WI, Waushara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501370.epw site_zip_code=54982 site_time_zone_utc_offset=-6 +County "WI, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501390.epw site_zip_code=54956 site_time_zone_utc_offset=-6 +County "WI, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501410.epw site_zip_code=54449 site_time_zone_utc_offset=-6 +County "WV, Barbour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400010.epw site_zip_code=26416 site_time_zone_utc_offset=-5 +County "WV, Berkeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400030.epw site_zip_code=25404 site_time_zone_utc_offset=-5 +County "WV, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400050.epw site_zip_code=25130 site_time_zone_utc_offset=-5 +County "WV, Braxton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400070.epw site_zip_code=26601 site_time_zone_utc_offset=-5 +County "WV, Brooke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400090.epw site_zip_code=26070 site_time_zone_utc_offset=-5 +County "WV, Cabell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400110.epw site_zip_code=25701 site_time_zone_utc_offset=-5 +County "WV, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400130.epw site_zip_code=26147 site_time_zone_utc_offset=-5 +County "WV, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400150.epw site_zip_code=25043 site_time_zone_utc_offset=-5 +County "WV, Doddridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400170.epw site_zip_code=26456 site_time_zone_utc_offset=-5 +County "WV, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400190.epw site_zip_code=25901 site_time_zone_utc_offset=-5 +County "WV, Gilmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400210.epw site_zip_code=26351 site_time_zone_utc_offset=-5 +County "WV, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400230.epw site_zip_code=26847 site_time_zone_utc_offset=-5 +County "WV, Greenbrier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400250.epw site_zip_code=24901 site_time_zone_utc_offset=-5 +County "WV, Hampshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400270.epw site_zip_code=26757 site_time_zone_utc_offset=-5 +County "WV, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400290.epw site_zip_code=26062 site_time_zone_utc_offset=-5 +County "WV, Hardy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400310.epw site_zip_code=26836 site_time_zone_utc_offset=-5 +County "WV, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400330.epw site_zip_code=26301 site_time_zone_utc_offset=-5 +County "WV, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400350.epw site_zip_code=25271 site_time_zone_utc_offset=-5 +County "WV, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400370.epw site_zip_code=25414 site_time_zone_utc_offset=-5 +County "WV, Kanawha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400390.epw site_zip_code=25177 site_time_zone_utc_offset=-5 +County "WV, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400410.epw site_zip_code=26452 site_time_zone_utc_offset=-5 +County "WV, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400430.epw site_zip_code=25506 site_time_zone_utc_offset=-5 +County "WV, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400450.epw site_zip_code=25601 site_time_zone_utc_offset=-5 +County "WV, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400490.epw site_zip_code=26554 site_time_zone_utc_offset=-5 +County "WV, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400510.epw site_zip_code=26041 site_time_zone_utc_offset=-5 +County "WV, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400530.epw site_zip_code=25550 site_time_zone_utc_offset=-5 +County "WV, McDowell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400470.epw site_zip_code=24801 site_time_zone_utc_offset=-5 +County "WV, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400550.epw site_zip_code=24701 site_time_zone_utc_offset=-5 +County "WV, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400570.epw site_zip_code=26726 site_time_zone_utc_offset=-5 +County "WV, Mingo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400590.epw site_zip_code=25661 site_time_zone_utc_offset=-5 +County "WV, Monongalia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400610.epw site_zip_code=26505 site_time_zone_utc_offset=-5 +County "WV, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400630.epw site_zip_code=24963 site_time_zone_utc_offset=-5 +County "WV, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400650.epw site_zip_code=25411 site_time_zone_utc_offset=-5 +County "WV, Nicholas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400670.epw site_zip_code=26651 site_time_zone_utc_offset=-5 +County "WV, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400690.epw site_zip_code=26003 site_time_zone_utc_offset=-5 +County "WV, Pendleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400710.epw site_zip_code=26807 site_time_zone_utc_offset=-5 +County "WV, Pleasants County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400730.epw site_zip_code=26170 site_time_zone_utc_offset=-5 +County "WV, Pocahontas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400750.epw site_zip_code=24954 site_time_zone_utc_offset=-5 +County "WV, Preston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400770.epw site_zip_code=26537 site_time_zone_utc_offset=-5 +County "WV, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400790.epw site_zip_code=25526 site_time_zone_utc_offset=-5 +County "WV, Raleigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400810.epw site_zip_code=25801 site_time_zone_utc_offset=-5 +County "WV, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400830.epw site_zip_code=26241 site_time_zone_utc_offset=-5 +County "WV, Ritchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400850.epw site_zip_code=26362 site_time_zone_utc_offset=-5 +County "WV, Roane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400870.epw site_zip_code=25276 site_time_zone_utc_offset=-5 +County "WV, Summers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400890.epw site_zip_code=25951 site_time_zone_utc_offset=-5 +County "WV, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400910.epw site_zip_code=26354 site_time_zone_utc_offset=-5 +County "WV, Tucker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400930.epw site_zip_code=26287 site_time_zone_utc_offset=-5 +County "WV, Tyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400950.epw site_zip_code=26175 site_time_zone_utc_offset=-5 +County "WV, Upshur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400970.epw site_zip_code=26201 site_time_zone_utc_offset=-5 +County "WV, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400990.epw site_zip_code=25704 site_time_zone_utc_offset=-5 +County "WV, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401010.epw site_zip_code=26288 site_time_zone_utc_offset=-5 +County "WV, Wetzel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401030.epw site_zip_code=26155 site_time_zone_utc_offset=-5 +County "WV, Wirt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401050.epw site_zip_code=26143 site_time_zone_utc_offset=-5 +County "WV, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401070.epw site_zip_code=26101 site_time_zone_utc_offset=-5 +County "WV, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401090.epw site_zip_code=25882 site_time_zone_utc_offset=-5 +County "WY, Albany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600010.epw site_zip_code=82070 site_time_zone_utc_offset=-7 +County "WY, Big Horn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600030.epw site_zip_code=82431 site_time_zone_utc_offset=-7 +County "WY, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600050.epw site_zip_code=82718 site_time_zone_utc_offset=-7 +County "WY, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600070.epw site_zip_code=82301 site_time_zone_utc_offset=-7 +County "WY, Converse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600090.epw site_zip_code=82633 site_time_zone_utc_offset=-7 +County "WY, Crook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600110.epw site_zip_code=82729 site_time_zone_utc_offset=-7 +County "WY, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600130.epw site_zip_code=82501 site_time_zone_utc_offset=-7 +County "WY, Goshen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600150.epw site_zip_code=82240 site_time_zone_utc_offset=-7 +County "WY, Hot Springs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600170.epw site_zip_code=82443 site_time_zone_utc_offset=-7 +County "WY, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600190.epw site_zip_code=82834 site_time_zone_utc_offset=-7 +County "WY, Laramie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600210.epw site_zip_code=82001 site_time_zone_utc_offset=-7 +County "WY, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600230.epw site_zip_code=83127 site_time_zone_utc_offset=-7 +County "WY, Natrona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600250.epw site_zip_code=82601 site_time_zone_utc_offset=-7 +County "WY, Niobrara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600270.epw site_zip_code=82225 site_time_zone_utc_offset=-7 +County "WY, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600290.epw site_zip_code=82414 site_time_zone_utc_offset=-7 +County "WY, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600310.epw site_zip_code=82201 site_time_zone_utc_offset=-7 +County "WY, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600330.epw site_zip_code=82801 site_time_zone_utc_offset=-7 +County "WY, Sublette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600350.epw site_zip_code=82941 site_time_zone_utc_offset=-7 +County "WY, Sweetwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600370.epw site_zip_code=82901 site_time_zone_utc_offset=-7 +County "WY, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600390.epw site_zip_code=83001 site_time_zone_utc_offset=-7 +County "WY, Uinta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600410.epw site_zip_code=82930 site_time_zone_utc_offset=-7 +County "WY, Washakie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600430.epw site_zip_code=82401 site_time_zone_utc_offset=-7 +County "WY, Weston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600450.epw site_zip_code=82701 site_time_zone_utc_offset=-7 +County Metro Status Metropolitan +County Metro Status Non-Metropolitan +County and PUMA "G0100010, G01002100" +County and PUMA "G0100030, G01002600" +County and PUMA "G0100050, G01002400" +County and PUMA "G0100070, G01001700" +County and PUMA "G0100090, G01000800" +County and PUMA "G0100110, G01002400" +County and PUMA "G0100130, G01002300" +County and PUMA "G0100150, G01001100" +County and PUMA "G0100170, G01001800" +County and PUMA "G0100190, G01001000" +County and PUMA "G0100210, G01001800" +County and PUMA "G0100230, G01002200" +County and PUMA "G0100250, G01002200" +County and PUMA "G0100270, G01001000" +County and PUMA "G0100290, G01001000" +County and PUMA "G0100310, G01002300" +County and PUMA "G0100330, G01000100" +County and PUMA "G0100350, G01002200" +County and PUMA "G0100370, G01001800" +County and PUMA "G0100390, G01002300" +County and PUMA "G0100410, G01002300" +County and PUMA "G0100430, G01000700" +County and PUMA "G0100450, G01002500" +County and PUMA "G0100470, G01001700" +County and PUMA "G0100490, G01000400" +County and PUMA "G0100510, G01002100" +County and PUMA "G0100530, G01002200" +County and PUMA "G0100550, G01000900" +County and PUMA "G0100570, G01001400" +County and PUMA "G0100590, G01000100" +County and PUMA "G0100610, G01002500" +County and PUMA "G0100630, G01001700" +County and PUMA "G0100650, G01001700" +County and PUMA "G0100670, G01002500" +County and PUMA "G0100690, G01002500" +County and PUMA "G0100710, G01000400" +County and PUMA "G0100730, G01001301" +County and PUMA "G0100730, G01001302" +County and PUMA "G0100730, G01001303" +County and PUMA "G0100730, G01001304" +County and PUMA "G0100730, G01001305" +County and PUMA "G0100750, G01001400" +County and PUMA "G0100770, G01000100" +County and PUMA "G0100790, G01000600" +County and PUMA "G0100810, G01001900" +County and PUMA "G0100830, G01000200" +County and PUMA "G0100850, G01002100" +County and PUMA "G0100870, G01002400" +County and PUMA "G0100890, G01000200" +County and PUMA "G0100890, G01000301" +County and PUMA "G0100890, G01000302" +County and PUMA "G0100890, G01000500" +County and PUMA "G0100910, G01001700" +County and PUMA "G0100930, G01000100" +County and PUMA "G0100930, G01001400" +County and PUMA "G0100950, G01000500" +County and PUMA "G0100970, G01002701" +County and PUMA "G0100970, G01002702" +County and PUMA "G0100970, G01002703" +County and PUMA "G0100990, G01002200" +County and PUMA "G0101010, G01002000" +County and PUMA "G0101010, G01002100" +County and PUMA "G0101030, G01000600" +County and PUMA "G0101050, G01001700" +County and PUMA "G0101070, G01001500" +County and PUMA "G0101090, G01002400" +County and PUMA "G0101110, G01001000" +County and PUMA "G0101130, G01002400" +County and PUMA "G0101150, G01000800" +County and PUMA "G0101170, G01001200" +County and PUMA "G0101190, G01001700" +County and PUMA "G0101210, G01001000" +County and PUMA "G0101230, G01001800" +County and PUMA "G0101250, G01001500" +County and PUMA "G0101250, G01001600" +County and PUMA "G0101270, G01001400" +County and PUMA "G0101290, G01002200" +County and PUMA "G0101310, G01002200" +County and PUMA "G0101330, G01000700" +County and PUMA "G0200130, G02000400" +County and PUMA "G0200160, G02000400" +County and PUMA "G0200200, G02000101" +County and PUMA "G0200200, G02000102" +County and PUMA "G0200500, G02000400" +County and PUMA "G0200600, G02000400" +County and PUMA "G0200680, G02000300" +County and PUMA "G0200700, G02000400" +County and PUMA "G0200900, G02000300" +County and PUMA "G0201000, G02000300" +County and PUMA "G0201050, G02000400" +County and PUMA "G0201100, G02000300" +County and PUMA "G0201220, G02000200" +County and PUMA "G0201300, G02000300" +County and PUMA "G0201500, G02000400" +County and PUMA "G0201580, G02000400" +County and PUMA "G0201640, G02000400" +County and PUMA "G0201700, G02000200" +County and PUMA "G0201800, G02000400" +County and PUMA "G0201850, G02000400" +County and PUMA "G0201880, G02000400" +County and PUMA "G0201950, G02000400" +County and PUMA "G0201980, G02000400" +County and PUMA "G0202200, G02000400" +County and PUMA "G0202300, G02000300" +County and PUMA "G0202400, G02000300" +County and PUMA "G0202610, G02000300" +County and PUMA "G0202750, G02000400" +County and PUMA "G0202820, G02000400" +County and PUMA "G0202900, G02000400" +County and PUMA "G0400010, G04000300" +County and PUMA "G0400030, G04000900" +County and PUMA "G0400050, G04000400" +County and PUMA "G0400070, G04000800" +County and PUMA "G0400090, G04000800" +County and PUMA "G0400110, G04000800" +County and PUMA "G0400120, G04000600" +County and PUMA "G0400130, G04000100" +County and PUMA "G0400130, G04000101" +County and PUMA "G0400130, G04000102" +County and PUMA "G0400130, G04000103" +County and PUMA "G0400130, G04000104" +County and PUMA "G0400130, G04000105" +County and PUMA "G0400130, G04000106" +County and PUMA "G0400130, G04000107" +County and PUMA "G0400130, G04000108" +County and PUMA "G0400130, G04000109" +County and PUMA "G0400130, G04000110" +County and PUMA "G0400130, G04000111" +County and PUMA "G0400130, G04000112" +County and PUMA "G0400130, G04000113" +County and PUMA "G0400130, G04000114" +County and PUMA "G0400130, G04000115" +County and PUMA "G0400130, G04000116" +County and PUMA "G0400130, G04000117" +County and PUMA "G0400130, G04000118" +County and PUMA "G0400130, G04000119" +County and PUMA "G0400130, G04000120" +County and PUMA "G0400130, G04000121" +County and PUMA "G0400130, G04000122" +County and PUMA "G0400130, G04000123" +County and PUMA "G0400130, G04000124" +County and PUMA "G0400130, G04000125" +County and PUMA "G0400130, G04000126" +County and PUMA "G0400130, G04000127" +County and PUMA "G0400130, G04000128" +County and PUMA "G0400130, G04000129" +County and PUMA "G0400130, G04000130" +County and PUMA "G0400130, G04000131" +County and PUMA "G0400130, G04000132" +County and PUMA "G0400130, G04000133" +County and PUMA "G0400130, G04000134" +County and PUMA "G0400150, G04000600" +County and PUMA "G0400170, G04000300" +County and PUMA "G0400190, G04000201" +County and PUMA "G0400190, G04000202" +County and PUMA "G0400190, G04000203" +County and PUMA "G0400190, G04000204" +County and PUMA "G0400190, G04000205" +County and PUMA "G0400190, G04000206" +County and PUMA "G0400190, G04000207" +County and PUMA "G0400190, G04000208" +County and PUMA "G0400190, G04000209" +County and PUMA "G0400210, G04000800" +County and PUMA "G0400210, G04000803" +County and PUMA "G0400210, G04000805" +County and PUMA "G0400210, G04000807" +County and PUMA "G0400230, G04000900" +County and PUMA "G0400250, G04000500" +County and PUMA "G0400270, G04000700" +County and PUMA "G0500010, G05001700" +County and PUMA "G0500010, G05001800" +County and PUMA "G0500030, G05001800" +County and PUMA "G0500050, G05000300" +County and PUMA "G0500070, G05000100" +County and PUMA "G0500090, G05000300" +County and PUMA "G0500110, G05001800" +County and PUMA "G0500130, G05001900" +County and PUMA "G0500150, G05000300" +County and PUMA "G0500170, G05001800" +County and PUMA "G0500190, G05001600" +County and PUMA "G0500210, G05000500" +County and PUMA "G0500230, G05000400" +County and PUMA "G0500250, G05001800" +County and PUMA "G0500270, G05001900" +County and PUMA "G0500290, G05001300" +County and PUMA "G0500310, G05000500" +County and PUMA "G0500310, G05000600" +County and PUMA "G0500330, G05001400" +County and PUMA "G0500350, G05000600" +County and PUMA "G0500370, G05000700" +County and PUMA "G0500390, G05001900" +County and PUMA "G0500410, G05001800" +County and PUMA "G0500430, G05001800" +County and PUMA "G0500450, G05001100" +County and PUMA "G0500470, G05001500" +County and PUMA "G0500490, G05000400" +County and PUMA "G0500510, G05001600" +County and PUMA "G0500530, G05001700" +County and PUMA "G0500550, G05000500" +County and PUMA "G0500570, G05002000" +County and PUMA "G0500590, G05001600" +County and PUMA "G0500610, G05001500" +County and PUMA "G0500630, G05000400" +County and PUMA "G0500650, G05000400" +County and PUMA "G0500670, G05000800" +County and PUMA "G0500690, G05001700" +County and PUMA "G0500710, G05001300" +County and PUMA "G0500730, G05002000" +County and PUMA "G0500750, G05000500" +County and PUMA "G0500770, G05000700" +County and PUMA "G0500790, G05001800" +County and PUMA "G0500810, G05002000" +County and PUMA "G0500830, G05001500" +County and PUMA "G0500850, G05001100" +County and PUMA "G0500870, G05000300" +County and PUMA "G0500890, G05000300" +County and PUMA "G0500910, G05002000" +County and PUMA "G0500930, G05000600" +County and PUMA "G0500950, G05000700" +County and PUMA "G0500970, G05001600" +County and PUMA "G0500990, G05002000" +County and PUMA "G0501010, G05000300" +County and PUMA "G0501030, G05001900" +County and PUMA "G0501050, G05001300" +County and PUMA "G0501070, G05000700" +County and PUMA "G0501090, G05002000" +County and PUMA "G0501110, G05000700" +County and PUMA "G0501130, G05001500" +County and PUMA "G0501150, G05001300" +County and PUMA "G0501170, G05000800" +County and PUMA "G0501190, G05000900" +County and PUMA "G0501190, G05001000" +County and PUMA "G0501210, G05000500" +County and PUMA "G0501230, G05000700" +County and PUMA "G0501250, G05001200" +County and PUMA "G0501270, G05001500" +County and PUMA "G0501290, G05000300" +County and PUMA "G0501310, G05001400" +County and PUMA "G0501330, G05001500" +County and PUMA "G0501350, G05000400" +County and PUMA "G0501370, G05000400" +County and PUMA "G0501390, G05001900" +County and PUMA "G0501410, G05000400" +County and PUMA "G0501430, G05000200" +County and PUMA "G0501450, G05000800" +County and PUMA "G0501470, G05000800" +County and PUMA "G0501490, G05001300" +County and PUMA "G0600010, G06000101" +County and PUMA "G0600010, G06000102" +County and PUMA "G0600010, G06000103" +County and PUMA "G0600010, G06000104" +County and PUMA "G0600010, G06000105" +County and PUMA "G0600010, G06000106" +County and PUMA "G0600010, G06000107" +County and PUMA "G0600010, G06000108" +County and PUMA "G0600010, G06000109" +County and PUMA "G0600010, G06000110" +County and PUMA "G0600030, G06000300" +County and PUMA "G0600050, G06000300" +County and PUMA "G0600070, G06000701" +County and PUMA "G0600070, G06000702" +County and PUMA "G0600090, G06000300" +County and PUMA "G0600110, G06001100" +County and PUMA "G0600130, G06001301" +County and PUMA "G0600130, G06001302" +County and PUMA "G0600130, G06001303" +County and PUMA "G0600130, G06001304" +County and PUMA "G0600130, G06001305" +County and PUMA "G0600130, G06001306" +County and PUMA "G0600130, G06001307" +County and PUMA "G0600130, G06001308" +County and PUMA "G0600130, G06001309" +County and PUMA "G0600150, G06001500" +County and PUMA "G0600170, G06001700" +County and PUMA "G0600190, G06001901" +County and PUMA "G0600190, G06001902" +County and PUMA "G0600190, G06001903" +County and PUMA "G0600190, G06001904" +County and PUMA "G0600190, G06001905" +County and PUMA "G0600190, G06001906" +County and PUMA "G0600190, G06001907" +County and PUMA "G0600210, G06001100" +County and PUMA "G0600230, G06002300" +County and PUMA "G0600250, G06002500" +County and PUMA "G0600270, G06000300" +County and PUMA "G0600290, G06002901" +County and PUMA "G0600290, G06002902" +County and PUMA "G0600290, G06002903" +County and PUMA "G0600290, G06002904" +County and PUMA "G0600290, G06002905" +County and PUMA "G0600310, G06003100" +County and PUMA "G0600330, G06003300" +County and PUMA "G0600350, G06001500" +County and PUMA "G0600370, G06003701" +County and PUMA "G0600370, G06003702" +County and PUMA "G0600370, G06003703" +County and PUMA "G0600370, G06003704" +County and PUMA "G0600370, G06003705" +County and PUMA "G0600370, G06003706" +County and PUMA "G0600370, G06003707" +County and PUMA "G0600370, G06003708" +County and PUMA "G0600370, G06003709" +County and PUMA "G0600370, G06003710" +County and PUMA "G0600370, G06003711" +County and PUMA "G0600370, G06003712" +County and PUMA "G0600370, G06003713" +County and PUMA "G0600370, G06003714" +County and PUMA "G0600370, G06003715" +County and PUMA "G0600370, G06003716" +County and PUMA "G0600370, G06003717" +County and PUMA "G0600370, G06003718" +County and PUMA "G0600370, G06003719" +County and PUMA "G0600370, G06003720" +County and PUMA "G0600370, G06003721" +County and PUMA "G0600370, G06003722" +County and PUMA "G0600370, G06003723" +County and PUMA "G0600370, G06003724" +County and PUMA "G0600370, G06003725" +County and PUMA "G0600370, G06003726" +County and PUMA "G0600370, G06003727" +County and PUMA "G0600370, G06003728" +County and PUMA "G0600370, G06003729" +County and PUMA "G0600370, G06003730" +County and PUMA "G0600370, G06003731" +County and PUMA "G0600370, G06003732" +County and PUMA "G0600370, G06003733" +County and PUMA "G0600370, G06003734" +County and PUMA "G0600370, G06003735" +County and PUMA "G0600370, G06003736" +County and PUMA "G0600370, G06003737" +County and PUMA "G0600370, G06003738" +County and PUMA "G0600370, G06003739" +County and PUMA "G0600370, G06003740" +County and PUMA "G0600370, G06003741" +County and PUMA "G0600370, G06003742" +County and PUMA "G0600370, G06003743" +County and PUMA "G0600370, G06003744" +County and PUMA "G0600370, G06003745" +County and PUMA "G0600370, G06003746" +County and PUMA "G0600370, G06003747" +County and PUMA "G0600370, G06003748" +County and PUMA "G0600370, G06003749" +County and PUMA "G0600370, G06003750" +County and PUMA "G0600370, G06003751" +County and PUMA "G0600370, G06003752" +County and PUMA "G0600370, G06003753" +County and PUMA "G0600370, G06003754" +County and PUMA "G0600370, G06003755" +County and PUMA "G0600370, G06003756" +County and PUMA "G0600370, G06003757" +County and PUMA "G0600370, G06003758" +County and PUMA "G0600370, G06003759" +County and PUMA "G0600370, G06003760" +County and PUMA "G0600370, G06003761" +County and PUMA "G0600370, G06003762" +County and PUMA "G0600370, G06003763" +County and PUMA "G0600370, G06003764" +County and PUMA "G0600370, G06003765" +County and PUMA "G0600370, G06003766" +County and PUMA "G0600370, G06003767" +County and PUMA "G0600370, G06003768" +County and PUMA "G0600370, G06003769" +County and PUMA "G0600390, G06003900" +County and PUMA "G0600410, G06004101" +County and PUMA "G0600410, G06004102" +County and PUMA "G0600430, G06000300" +County and PUMA "G0600450, G06003300" +County and PUMA "G0600470, G06004701" +County and PUMA "G0600470, G06004702" +County and PUMA "G0600490, G06001500" +County and PUMA "G0600510, G06000300" +County and PUMA "G0600530, G06005301" +County and PUMA "G0600530, G06005302" +County and PUMA "G0600530, G06005303" +County and PUMA "G0600550, G06005500" +County and PUMA "G0600570, G06005700" +County and PUMA "G0600590, G06005901" +County and PUMA "G0600590, G06005902" +County and PUMA "G0600590, G06005903" +County and PUMA "G0600590, G06005904" +County and PUMA "G0600590, G06005905" +County and PUMA "G0600590, G06005906" +County and PUMA "G0600590, G06005907" +County and PUMA "G0600590, G06005908" +County and PUMA "G0600590, G06005909" +County and PUMA "G0600590, G06005910" +County and PUMA "G0600590, G06005911" +County and PUMA "G0600590, G06005912" +County and PUMA "G0600590, G06005913" +County and PUMA "G0600590, G06005914" +County and PUMA "G0600590, G06005915" +County and PUMA "G0600590, G06005916" +County and PUMA "G0600590, G06005917" +County and PUMA "G0600590, G06005918" +County and PUMA "G0600610, G06006101" +County and PUMA "G0600610, G06006102" +County and PUMA "G0600610, G06006103" +County and PUMA "G0600630, G06001500" +County and PUMA "G0600650, G06006501" +County and PUMA "G0600650, G06006502" +County and PUMA "G0600650, G06006503" +County and PUMA "G0600650, G06006504" +County and PUMA "G0600650, G06006505" +County and PUMA "G0600650, G06006506" +County and PUMA "G0600650, G06006507" +County and PUMA "G0600650, G06006508" +County and PUMA "G0600650, G06006509" +County and PUMA "G0600650, G06006510" +County and PUMA "G0600650, G06006511" +County and PUMA "G0600650, G06006512" +County and PUMA "G0600650, G06006513" +County and PUMA "G0600650, G06006514" +County and PUMA "G0600650, G06006515" +County and PUMA "G0600670, G06006701" +County and PUMA "G0600670, G06006702" +County and PUMA "G0600670, G06006703" +County and PUMA "G0600670, G06006704" +County and PUMA "G0600670, G06006705" +County and PUMA "G0600670, G06006706" +County and PUMA "G0600670, G06006707" +County and PUMA "G0600670, G06006708" +County and PUMA "G0600670, G06006709" +County and PUMA "G0600670, G06006710" +County and PUMA "G0600670, G06006711" +County and PUMA "G0600670, G06006712" +County and PUMA "G0600690, G06005303" +County and PUMA "G0600710, G06007101" +County and PUMA "G0600710, G06007102" +County and PUMA "G0600710, G06007103" +County and PUMA "G0600710, G06007104" +County and PUMA "G0600710, G06007105" +County and PUMA "G0600710, G06007106" +County and PUMA "G0600710, G06007107" +County and PUMA "G0600710, G06007108" +County and PUMA "G0600710, G06007109" +County and PUMA "G0600710, G06007110" +County and PUMA "G0600710, G06007111" +County and PUMA "G0600710, G06007112" +County and PUMA "G0600710, G06007113" +County and PUMA "G0600710, G06007114" +County and PUMA "G0600710, G06007115" +County and PUMA "G0600730, G06007301" +County and PUMA "G0600730, G06007302" +County and PUMA "G0600730, G06007303" +County and PUMA "G0600730, G06007304" +County and PUMA "G0600730, G06007305" +County and PUMA "G0600730, G06007306" +County and PUMA "G0600730, G06007307" +County and PUMA "G0600730, G06007308" +County and PUMA "G0600730, G06007309" +County and PUMA "G0600730, G06007310" +County and PUMA "G0600730, G06007311" +County and PUMA "G0600730, G06007312" +County and PUMA "G0600730, G06007313" +County and PUMA "G0600730, G06007314" +County and PUMA "G0600730, G06007315" +County and PUMA "G0600730, G06007316" +County and PUMA "G0600730, G06007317" +County and PUMA "G0600730, G06007318" +County and PUMA "G0600730, G06007319" +County and PUMA "G0600730, G06007320" +County and PUMA "G0600730, G06007321" +County and PUMA "G0600730, G06007322" +County and PUMA "G0600750, G06007501" +County and PUMA "G0600750, G06007502" +County and PUMA "G0600750, G06007503" +County and PUMA "G0600750, G06007504" +County and PUMA "G0600750, G06007505" +County and PUMA "G0600750, G06007506" +County and PUMA "G0600750, G06007507" +County and PUMA "G0600770, G06007701" +County and PUMA "G0600770, G06007702" +County and PUMA "G0600770, G06007703" +County and PUMA "G0600770, G06007704" +County and PUMA "G0600790, G06007901" +County and PUMA "G0600790, G06007902" +County and PUMA "G0600810, G06008101" +County and PUMA "G0600810, G06008102" +County and PUMA "G0600810, G06008103" +County and PUMA "G0600810, G06008104" +County and PUMA "G0600810, G06008105" +County and PUMA "G0600810, G06008106" +County and PUMA "G0600830, G06008301" +County and PUMA "G0600830, G06008302" +County and PUMA "G0600830, G06008303" +County and PUMA "G0600850, G06008501" +County and PUMA "G0600850, G06008502" +County and PUMA "G0600850, G06008503" +County and PUMA "G0600850, G06008504" +County and PUMA "G0600850, G06008505" +County and PUMA "G0600850, G06008506" +County and PUMA "G0600850, G06008507" +County and PUMA "G0600850, G06008508" +County and PUMA "G0600850, G06008509" +County and PUMA "G0600850, G06008510" +County and PUMA "G0600850, G06008511" +County and PUMA "G0600850, G06008512" +County and PUMA "G0600850, G06008513" +County and PUMA "G0600850, G06008514" +County and PUMA "G0600870, G06008701" +County and PUMA "G0600870, G06008702" +County and PUMA "G0600890, G06008900" +County and PUMA "G0600910, G06005700" +County and PUMA "G0600930, G06001500" +County and PUMA "G0600950, G06009501" +County and PUMA "G0600950, G06009502" +County and PUMA "G0600950, G06009503" +County and PUMA "G0600970, G06009701" +County and PUMA "G0600970, G06009702" +County and PUMA "G0600970, G06009703" +County and PUMA "G0600990, G06009901" +County and PUMA "G0600990, G06009902" +County and PUMA "G0600990, G06009903" +County and PUMA "G0600990, G06009904" +County and PUMA "G0601010, G06010100" +County and PUMA "G0601030, G06001100" +County and PUMA "G0601050, G06001100" +County and PUMA "G0601070, G06010701" +County and PUMA "G0601070, G06010702" +County and PUMA "G0601070, G06010703" +County and PUMA "G0601090, G06000300" +County and PUMA "G0601110, G06011101" +County and PUMA "G0601110, G06011102" +County and PUMA "G0601110, G06011103" +County and PUMA "G0601110, G06011104" +County and PUMA "G0601110, G06011105" +County and PUMA "G0601110, G06011106" +County and PUMA "G0601130, G06011300" +County and PUMA "G0601150, G06010100" +County and PUMA "G0800010, G08000804" +County and PUMA "G0800010, G08000805" +County and PUMA "G0800010, G08000806" +County and PUMA "G0800010, G08000807" +County and PUMA "G0800010, G08000809" +County and PUMA "G0800010, G08000810" +County and PUMA "G0800010, G08000817" +County and PUMA "G0800010, G08000824" +County and PUMA "G0800030, G08000800" +County and PUMA "G0800050, G08000808" +County and PUMA "G0800050, G08000809" +County and PUMA "G0800050, G08000810" +County and PUMA "G0800050, G08000811" +County and PUMA "G0800050, G08000815" +County and PUMA "G0800050, G08000820" +County and PUMA "G0800050, G08000824" +County and PUMA "G0800070, G08000900" +County and PUMA "G0800090, G08000800" +County and PUMA "G0800110, G08000100" +County and PUMA "G0800130, G08000801" +County and PUMA "G0800130, G08000802" +County and PUMA "G0800130, G08000803" +County and PUMA "G0800130, G08000804" +County and PUMA "G0800140, G08000804" +County and PUMA "G0800140, G08000805" +County and PUMA "G0800150, G08000600" +County and PUMA "G0800170, G08000100" +County and PUMA "G0800190, G08000801" +County and PUMA "G0800210, G08000800" +County and PUMA "G0800230, G08000800" +County and PUMA "G0800250, G08000100" +County and PUMA "G0800270, G08000600" +County and PUMA "G0800290, G08001002" +County and PUMA "G0800310, G08000812" +County and PUMA "G0800310, G08000813" +County and PUMA "G0800310, G08000814" +County and PUMA "G0800310, G08000815" +County and PUMA "G0800310, G08000816" +County and PUMA "G0800330, G08000900" +County and PUMA "G0800350, G08000821" +County and PUMA "G0800350, G08000822" +County and PUMA "G0800350, G08000823" +County and PUMA "G0800370, G08000400" +County and PUMA "G0800390, G08000100" +County and PUMA "G0800390, G08000823" +County and PUMA "G0800410, G08004101" +County and PUMA "G0800410, G08004102" +County and PUMA "G0800410, G08004103" +County and PUMA "G0800410, G08004104" +County and PUMA "G0800410, G08004105" +County and PUMA "G0800410, G08004106" +County and PUMA "G0800430, G08000600" +County and PUMA "G0800450, G08000200" +County and PUMA "G0800470, G08000801" +County and PUMA "G0800490, G08000400" +County and PUMA "G0800510, G08000900" +County and PUMA "G0800530, G08000900" +County and PUMA "G0800550, G08000600" +County and PUMA "G0800570, G08000400" +County and PUMA "G0800590, G08000801" +County and PUMA "G0800590, G08000804" +County and PUMA "G0800590, G08000805" +County and PUMA "G0800590, G08000817" +County and PUMA "G0800590, G08000818" +County and PUMA "G0800590, G08000819" +County and PUMA "G0800590, G08000820" +County and PUMA "G0800590, G08000821" +County and PUMA "G0800610, G08000100" +County and PUMA "G0800630, G08000100" +County and PUMA "G0800650, G08000600" +County and PUMA "G0800670, G08000900" +County and PUMA "G0800690, G08000102" +County and PUMA "G0800690, G08000103" +County and PUMA "G0800710, G08000800" +County and PUMA "G0800730, G08000100" +County and PUMA "G0800750, G08000100" +County and PUMA "G0800770, G08001001" +County and PUMA "G0800770, G08001002" +County and PUMA "G0800790, G08000800" +County and PUMA "G0800810, G08000200" +County and PUMA "G0800830, G08000900" +County and PUMA "G0800850, G08001002" +County and PUMA "G0800870, G08000100" +County and PUMA "G0800890, G08000800" +County and PUMA "G0800910, G08001002" +County and PUMA "G0800930, G08000600" +County and PUMA "G0800950, G08000100" +County and PUMA "G0800970, G08000400" +County and PUMA "G0800990, G08000800" +County and PUMA "G0801010, G08000600" +County and PUMA "G0801010, G08000700" +County and PUMA "G0801010, G08000800" +County and PUMA "G0801030, G08000200" +County and PUMA "G0801050, G08000800" +County and PUMA "G0801070, G08000200" +County and PUMA "G0801090, G08000800" +County and PUMA "G0801110, G08000900" +County and PUMA "G0801130, G08001002" +County and PUMA "G0801150, G08000100" +County and PUMA "G0801170, G08000400" +County and PUMA "G0801190, G08004101" +County and PUMA "G0801210, G08000100" +County and PUMA "G0801230, G08000100" +County and PUMA "G0801230, G08000300" +County and PUMA "G0801230, G08000802" +County and PUMA "G0801230, G08000824" +County and PUMA "G0801250, G08000100" +County and PUMA "G0900010, G09000100" +County and PUMA "G0900010, G09000101" +County and PUMA "G0900010, G09000102" +County and PUMA "G0900010, G09000103" +County and PUMA "G0900010, G09000104" +County and PUMA "G0900010, G09000105" +County and PUMA "G0900030, G09000300" +County and PUMA "G0900030, G09000301" +County and PUMA "G0900030, G09000302" +County and PUMA "G0900030, G09000303" +County and PUMA "G0900030, G09000304" +County and PUMA "G0900030, G09000305" +County and PUMA "G0900030, G09000306" +County and PUMA "G0900050, G09000500" +County and PUMA "G0900070, G09000700" +County and PUMA "G0900090, G09000900" +County and PUMA "G0900090, G09000901" +County and PUMA "G0900090, G09000902" +County and PUMA "G0900090, G09000903" +County and PUMA "G0900090, G09000904" +County and PUMA "G0900090, G09000905" +County and PUMA "G0900090, G09000906" +County and PUMA "G0900110, G09001100" +County and PUMA "G0900110, G09001101" +County and PUMA "G0900130, G09001300" +County and PUMA "G0900150, G09001500" +County and PUMA "G1000010, G10000200" +County and PUMA "G1000030, G10000101" +County and PUMA "G1000030, G10000102" +County and PUMA "G1000030, G10000103" +County and PUMA "G1000030, G10000104" +County and PUMA "G1000050, G10000300" +County and PUMA "G1100010, G11000101" +County and PUMA "G1100010, G11000102" +County and PUMA "G1100010, G11000103" +County and PUMA "G1100010, G11000104" +County and PUMA "G1100010, G11000105" +County and PUMA "G1200010, G12000101" +County and PUMA "G1200010, G12000102" +County and PUMA "G1200030, G12008900" +County and PUMA "G1200050, G12000500" +County and PUMA "G1200070, G12002300" +County and PUMA "G1200090, G12000901" +County and PUMA "G1200090, G12000902" +County and PUMA "G1200090, G12000903" +County and PUMA "G1200090, G12000904" +County and PUMA "G1200110, G12001101" +County and PUMA "G1200110, G12001102" +County and PUMA "G1200110, G12001103" +County and PUMA "G1200110, G12001104" +County and PUMA "G1200110, G12001105" +County and PUMA "G1200110, G12001106" +County and PUMA "G1200110, G12001107" +County and PUMA "G1200110, G12001108" +County and PUMA "G1200110, G12001109" +County and PUMA "G1200110, G12001110" +County and PUMA "G1200110, G12001111" +County and PUMA "G1200110, G12001112" +County and PUMA "G1200110, G12001113" +County and PUMA "G1200110, G12001114" +County and PUMA "G1200130, G12006300" +County and PUMA "G1200150, G12001500" +County and PUMA "G1200170, G12001701" +County and PUMA "G1200190, G12001900" +County and PUMA "G1200210, G12002101" +County and PUMA "G1200210, G12002102" +County and PUMA "G1200210, G12002103" +County and PUMA "G1200230, G12002300" +County and PUMA "G1200270, G12002700" +County and PUMA "G1200290, G12002300" +County and PUMA "G1200310, G12003101" +County and PUMA "G1200310, G12003102" +County and PUMA "G1200310, G12003103" +County and PUMA "G1200310, G12003104" +County and PUMA "G1200310, G12003105" +County and PUMA "G1200310, G12003106" +County and PUMA "G1200310, G12003107" +County and PUMA "G1200330, G12003301" +County and PUMA "G1200330, G12003302" +County and PUMA "G1200350, G12003500" +County and PUMA "G1200370, G12006300" +County and PUMA "G1200390, G12006300" +County and PUMA "G1200410, G12002300" +County and PUMA "G1200430, G12009300" +County and PUMA "G1200450, G12006300" +County and PUMA "G1200470, G12012100" +County and PUMA "G1200490, G12002700" +County and PUMA "G1200510, G12009300" +County and PUMA "G1200530, G12005301" +County and PUMA "G1200550, G12002700" +County and PUMA "G1200550, G12009300" +County and PUMA "G1200570, G12005701" +County and PUMA "G1200570, G12005702" +County and PUMA "G1200570, G12005703" +County and PUMA "G1200570, G12005704" +County and PUMA "G1200570, G12005705" +County and PUMA "G1200570, G12005706" +County and PUMA "G1200570, G12005707" +County and PUMA "G1200570, G12005708" +County and PUMA "G1200590, G12000500" +County and PUMA "G1200610, G12006100" +County and PUMA "G1200630, G12006300" +County and PUMA "G1200650, G12006300" +County and PUMA "G1200670, G12012100" +County and PUMA "G1200690, G12006901" +County and PUMA "G1200690, G12006902" +County and PUMA "G1200690, G12006903" +County and PUMA "G1200710, G12007101" +County and PUMA "G1200710, G12007102" +County and PUMA "G1200710, G12007103" +County and PUMA "G1200710, G12007104" +County and PUMA "G1200710, G12007105" +County and PUMA "G1200730, G12007300" +County and PUMA "G1200730, G12007301" +County and PUMA "G1200750, G12002300" +County and PUMA "G1200770, G12006300" +County and PUMA "G1200790, G12012100" +County and PUMA "G1200810, G12008101" +County and PUMA "G1200810, G12008102" +County and PUMA "G1200810, G12008103" +County and PUMA "G1200830, G12008301" +County and PUMA "G1200830, G12008302" +County and PUMA "G1200830, G12008303" +County and PUMA "G1200850, G12008500" +County and PUMA "G1200860, G12008601" +County and PUMA "G1200860, G12008602" +County and PUMA "G1200860, G12008603" +County and PUMA "G1200860, G12008604" +County and PUMA "G1200860, G12008605" +County and PUMA "G1200860, G12008606" +County and PUMA "G1200860, G12008607" +County and PUMA "G1200860, G12008608" +County and PUMA "G1200860, G12008609" +County and PUMA "G1200860, G12008610" +County and PUMA "G1200860, G12008611" +County and PUMA "G1200860, G12008612" +County and PUMA "G1200860, G12008613" +County and PUMA "G1200860, G12008614" +County and PUMA "G1200860, G12008615" +County and PUMA "G1200860, G12008616" +County and PUMA "G1200860, G12008617" +County and PUMA "G1200860, G12008618" +County and PUMA "G1200860, G12008619" +County and PUMA "G1200860, G12008620" +County and PUMA "G1200860, G12008621" +County and PUMA "G1200860, G12008622" +County and PUMA "G1200860, G12008623" +County and PUMA "G1200860, G12008624" +County and PUMA "G1200860, G12008700" +County and PUMA "G1200870, G12008700" +County and PUMA "G1200890, G12008900" +County and PUMA "G1200910, G12009100" +County and PUMA "G1200930, G12009300" +County and PUMA "G1200950, G12009501" +County and PUMA "G1200950, G12009502" +County and PUMA "G1200950, G12009503" +County and PUMA "G1200950, G12009504" +County and PUMA "G1200950, G12009505" +County and PUMA "G1200950, G12009506" +County and PUMA "G1200950, G12009507" +County and PUMA "G1200950, G12009508" +County and PUMA "G1200950, G12009509" +County and PUMA "G1200950, G12009510" +County and PUMA "G1200970, G12009701" +County and PUMA "G1200970, G12009702" +County and PUMA "G1200990, G12009901" +County and PUMA "G1200990, G12009902" +County and PUMA "G1200990, G12009903" +County and PUMA "G1200990, G12009904" +County and PUMA "G1200990, G12009905" +County and PUMA "G1200990, G12009906" +County and PUMA "G1200990, G12009907" +County and PUMA "G1200990, G12009908" +County and PUMA "G1200990, G12009909" +County and PUMA "G1200990, G12009910" +County and PUMA "G1200990, G12009911" +County and PUMA "G1201010, G12010101" +County and PUMA "G1201010, G12010102" +County and PUMA "G1201010, G12010103" +County and PUMA "G1201010, G12010104" +County and PUMA "G1201030, G12010301" +County and PUMA "G1201030, G12010302" +County and PUMA "G1201030, G12010303" +County and PUMA "G1201030, G12010304" +County and PUMA "G1201030, G12010305" +County and PUMA "G1201030, G12010306" +County and PUMA "G1201030, G12010307" +County and PUMA "G1201030, G12010308" +County and PUMA "G1201050, G12010501" +County and PUMA "G1201050, G12010502" +County and PUMA "G1201050, G12010503" +County and PUMA "G1201050, G12010504" +County and PUMA "G1201070, G12010700" +County and PUMA "G1201090, G12010700" +County and PUMA "G1201090, G12010900" +County and PUMA "G1201110, G12011101" +County and PUMA "G1201110, G12011102" +County and PUMA "G1201130, G12011300" +County and PUMA "G1201150, G12011501" +County and PUMA "G1201150, G12011502" +County and PUMA "G1201150, G12011503" +County and PUMA "G1201170, G12011701" +County and PUMA "G1201170, G12011702" +County and PUMA "G1201170, G12011703" +County and PUMA "G1201170, G12011704" +County and PUMA "G1201190, G12006902" +County and PUMA "G1201190, G12006903" +County and PUMA "G1201210, G12012100" +County and PUMA "G1201230, G12012100" +County and PUMA "G1201250, G12002300" +County and PUMA "G1201270, G12003500" +County and PUMA "G1201270, G12012701" +County and PUMA "G1201270, G12012702" +County and PUMA "G1201270, G12012703" +County and PUMA "G1201270, G12012704" +County and PUMA "G1201290, G12006300" +County and PUMA "G1201310, G12000500" +County and PUMA "G1201330, G12000500" +County and PUMA "G1300010, G13001200" +County and PUMA "G1300030, G13000500" +County and PUMA "G1300050, G13000500" +County and PUMA "G1300070, G13001100" +County and PUMA "G1300090, G13001600" +County and PUMA "G1300110, G13003500" +County and PUMA "G1300130, G13003800" +County and PUMA "G1300150, G13002900" +County and PUMA "G1300170, G13000700" +County and PUMA "G1300190, G13000700" +County and PUMA "G1300210, G13001400" +County and PUMA "G1300230, G13001300" +County and PUMA "G1300250, G13000500" +County and PUMA "G1300270, G13000700" +County and PUMA "G1300290, G13000200" +County and PUMA "G1300310, G13000300" +County and PUMA "G1300330, G13004200" +County and PUMA "G1300350, G13001900" +County and PUMA "G1300370, G13001100" +County and PUMA "G1300390, G13000100" +County and PUMA "G1300430, G13001300" +County and PUMA "G1300450, G13002300" +County and PUMA "G1300470, G13002600" +County and PUMA "G1300490, G13000500" +County and PUMA "G1300510, G13000401" +County and PUMA "G1300510, G13000402" +County and PUMA "G1300530, G13001700" +County and PUMA "G1300550, G13002600" +County and PUMA "G1300570, G13003101" +County and PUMA "G1300570, G13003102" +County and PUMA "G1300590, G13003600" +County and PUMA "G1300610, G13001800" +County and PUMA "G1300630, G13005001" +County and PUMA "G1300630, G13005002" +County and PUMA "G1300650, G13000500" +County and PUMA "G1300670, G13003001" +County and PUMA "G1300670, G13003002" +County and PUMA "G1300670, G13003003" +County and PUMA "G1300670, G13003004" +County and PUMA "G1300670, G13003005" +County and PUMA "G1300690, G13000500" +County and PUMA "G1300710, G13000800" +County and PUMA "G1300730, G13004100" +County and PUMA "G1300750, G13000700" +County and PUMA "G1300770, G13002100" +County and PUMA "G1300790, G13001600" +County and PUMA "G1300810, G13001800" +County and PUMA "G1300830, G13002600" +County and PUMA "G1300850, G13003200" +County and PUMA "G1300870, G13001100" +County and PUMA "G1300890, G13001007" +County and PUMA "G1300890, G13001008" +County and PUMA "G1300890, G13002001" +County and PUMA "G1300890, G13002002" +County and PUMA "G1300890, G13002003" +County and PUMA "G1300890, G13002004" +County and PUMA "G1300910, G13001300" +County and PUMA "G1300930, G13001800" +County and PUMA "G1300950, G13000900" +County and PUMA "G1300970, G13004400" +County and PUMA "G1300990, G13001100" +County and PUMA "G1301010, G13000500" +County and PUMA "G1301030, G13000300" +County and PUMA "G1301050, G13003700" +County and PUMA "G1301070, G13001300" +County and PUMA "G1301090, G13001200" +County and PUMA "G1301110, G13002800" +County and PUMA "G1301130, G13002400" +County and PUMA "G1301150, G13002500" +County and PUMA "G1301170, G13003300" +County and PUMA "G1301190, G13003500" +County and PUMA "G1301210, G13001001" +County and PUMA "G1301210, G13001002" +County and PUMA "G1301210, G13001003" +County and PUMA "G1301210, G13001004" +County and PUMA "G1301210, G13001005" +County and PUMA "G1301210, G13001006" +County and PUMA "G1301210, G13001007" +County and PUMA "G1301210, G13004600" +County and PUMA "G1301230, G13002800" +County and PUMA "G1301250, G13004200" +County and PUMA "G1301270, G13000100" +County and PUMA "G1301290, G13002800" +County and PUMA "G1301310, G13001100" +County and PUMA "G1301330, G13003700" +County and PUMA "G1301350, G13004001" +County and PUMA "G1301350, G13004002" +County and PUMA "G1301350, G13004003" +County and PUMA "G1301350, G13004004" +County and PUMA "G1301350, G13004005" +County and PUMA "G1301350, G13004006" +County and PUMA "G1301370, G13003500" +County and PUMA "G1301390, G13003400" +County and PUMA "G1301410, G13004200" +County and PUMA "G1301430, G13002500" +County and PUMA "G1301450, G13001800" +County and PUMA "G1301470, G13003500" +County and PUMA "G1301490, G13002200" +County and PUMA "G1301510, G13006001" +County and PUMA "G1301510, G13006002" +County and PUMA "G1301530, G13001500" +County and PUMA "G1301550, G13000700" +County and PUMA "G1301570, G13003800" +County and PUMA "G1301590, G13003900" +County and PUMA "G1301610, G13001200" +County and PUMA "G1301630, G13004200" +County and PUMA "G1301650, G13004200" +County and PUMA "G1301670, G13001300" +County and PUMA "G1301690, G13001600" +County and PUMA "G1301710, G13001900" +County and PUMA "G1301730, G13000500" +County and PUMA "G1301750, G13001300" +County and PUMA "G1301770, G13000900" +County and PUMA "G1301790, G13000200" +County and PUMA "G1301810, G13004200" +County and PUMA "G1301830, G13000200" +County and PUMA "G1301850, G13000600" +County and PUMA "G1301870, G13003200" +County and PUMA "G1301890, G13004200" +County and PUMA "G1301910, G13000100" +County and PUMA "G1301930, G13001800" +County and PUMA "G1301950, G13003700" +County and PUMA "G1301970, G13001800" +County and PUMA "G1301990, G13002200" +County and PUMA "G1302010, G13001100" +County and PUMA "G1302050, G13001100" +County and PUMA "G1302070, G13001600" +County and PUMA "G1302090, G13001200" +County and PUMA "G1302110, G13003900" +County and PUMA "G1302130, G13002800" +County and PUMA "G1302150, G13001700" +County and PUMA "G1302170, G13004300" +County and PUMA "G1302190, G13003700" +County and PUMA "G1302210, G13003700" +County and PUMA "G1302230, G13004500" +County and PUMA "G1302250, G13001600" +County and PUMA "G1302270, G13002800" +County and PUMA "G1302290, G13000500" +County and PUMA "G1302310, G13001900" +County and PUMA "G1302330, G13002500" +County and PUMA "G1302350, G13001500" +County and PUMA "G1302370, G13001600" +County and PUMA "G1302390, G13001800" +County and PUMA "G1302410, G13003200" +County and PUMA "G1302430, G13001800" +County and PUMA "G1302450, G13004000" +County and PUMA "G1302470, G13004300" +County and PUMA "G1302490, G13001800" +County and PUMA "G1302510, G13000300" +County and PUMA "G1302530, G13001100" +County and PUMA "G1302550, G13001900" +County and PUMA "G1302570, G13003500" +County and PUMA "G1302590, G13001800" +County and PUMA "G1302610, G13001800" +County and PUMA "G1302630, G13001800" +County and PUMA "G1302650, G13004200" +County and PUMA "G1302670, G13001200" +County and PUMA "G1302690, G13001800" +County and PUMA "G1302710, G13001200" +County and PUMA "G1302730, G13001100" +County and PUMA "G1302750, G13000800" +County and PUMA "G1302770, G13000700" +County and PUMA "G1302790, G13001200" +County and PUMA "G1302810, G13003200" +County and PUMA "G1302830, G13001300" +County and PUMA "G1302850, G13002200" +County and PUMA "G1302870, G13000700" +County and PUMA "G1302890, G13001600" +County and PUMA "G1302910, G13003200" +County and PUMA "G1302930, G13001900" +County and PUMA "G1302950, G13002600" +County and PUMA "G1302970, G13003900" +County and PUMA "G1302990, G13000500" +County and PUMA "G1303010, G13004200" +County and PUMA "G1303030, G13004200" +County and PUMA "G1303050, G13001200" +County and PUMA "G1303070, G13001800" +County and PUMA "G1303090, G13001200" +County and PUMA "G1303110, G13003200" +County and PUMA "G1303130, G13002700" +County and PUMA "G1303150, G13001300" +County and PUMA "G1303170, G13004200" +County and PUMA "G1303190, G13001600" +County and PUMA "G1303210, G13000800" +County and PUMA "G1500010, G15000200" +County and PUMA "G1500030, G15000301" +County and PUMA "G1500030, G15000302" +County and PUMA "G1500030, G15000303" +County and PUMA "G1500030, G15000304" +County and PUMA "G1500030, G15000305" +County and PUMA "G1500030, G15000306" +County and PUMA "G1500030, G15000307" +County and PUMA "G1500030, G15000308" +County and PUMA "G1500050, G15000100" +County and PUMA "G1500070, G15000100" +County and PUMA "G1500090, G15000100" +County and PUMA "G1600010, G16000400" +County and PUMA "G1600010, G16000600" +County and PUMA "G1600010, G16000701" +County and PUMA "G1600010, G16000702" +County and PUMA "G1600010, G16000800" +County and PUMA "G1600030, G16000300" +County and PUMA "G1600050, G16001300" +County and PUMA "G1600070, G16001300" +County and PUMA "G1600090, G16000100" +County and PUMA "G1600110, G16001100" +County and PUMA "G1600110, G16001300" +County and PUMA "G1600130, G16001000" +County and PUMA "G1600150, G16000300" +County and PUMA "G1600170, G16000100" +County and PUMA "G1600190, G16001200" +County and PUMA "G1600210, G16000100" +County and PUMA "G1600230, G16000300" +County and PUMA "G1600250, G16001000" +County and PUMA "G1600270, G16000400" +County and PUMA "G1600270, G16000500" +County and PUMA "G1600270, G16000600" +County and PUMA "G1600290, G16001300" +County and PUMA "G1600310, G16000900" +County and PUMA "G1600330, G16000300" +County and PUMA "G1600350, G16000300" +County and PUMA "G1600370, G16000300" +County and PUMA "G1600390, G16001000" +County and PUMA "G1600410, G16001300" +County and PUMA "G1600430, G16001100" +County and PUMA "G1600450, G16000400" +County and PUMA "G1600470, G16001000" +County and PUMA "G1600490, G16000300" +County and PUMA "G1600510, G16001100" +County and PUMA "G1600530, G16001000" +County and PUMA "G1600550, G16000100" +County and PUMA "G1600550, G16000200" +County and PUMA "G1600570, G16000100" +County and PUMA "G1600590, G16000300" +County and PUMA "G1600610, G16000300" +County and PUMA "G1600630, G16001000" +County and PUMA "G1600650, G16001100" +County and PUMA "G1600670, G16001000" +County and PUMA "G1600690, G16000300" +County and PUMA "G1600710, G16001300" +County and PUMA "G1600730, G16000500" +County and PUMA "G1600750, G16000400" +County and PUMA "G1600770, G16001300" +County and PUMA "G1600790, G16000100" +County and PUMA "G1600810, G16001100" +County and PUMA "G1600830, G16000900" +County and PUMA "G1600850, G16000300" +County and PUMA "G1600870, G16000400" +County and PUMA "G1700010, G17000300" +County and PUMA "G1700030, G17000800" +County and PUMA "G1700050, G17000501" +County and PUMA "G1700070, G17002901" +County and PUMA "G1700090, G17000300" +County and PUMA "G1700110, G17002501" +County and PUMA "G1700130, G17000401" +County and PUMA "G1700150, G17000104" +County and PUMA "G1700170, G17000401" +County and PUMA "G1700190, G17002100" +County and PUMA "G1700210, G17001602" +County and PUMA "G1700230, G17000700" +County and PUMA "G1700250, G17000700" +County and PUMA "G1700270, G17000501" +County and PUMA "G1700290, G17000600" +County and PUMA "G1700310, G17003401" +County and PUMA "G1700310, G17003407" +County and PUMA "G1700310, G17003408" +County and PUMA "G1700310, G17003409" +County and PUMA "G1700310, G17003410" +County and PUMA "G1700310, G17003411" +County and PUMA "G1700310, G17003412" +County and PUMA "G1700310, G17003413" +County and PUMA "G1700310, G17003414" +County and PUMA "G1700310, G17003415" +County and PUMA "G1700310, G17003416" +County and PUMA "G1700310, G17003417" +County and PUMA "G1700310, G17003418" +County and PUMA "G1700310, G17003419" +County and PUMA "G1700310, G17003420" +County and PUMA "G1700310, G17003421" +County and PUMA "G1700310, G17003422" +County and PUMA "G1700310, G17003501" +County and PUMA "G1700310, G17003502" +County and PUMA "G1700310, G17003503" +County and PUMA "G1700310, G17003504" +County and PUMA "G1700310, G17003520" +County and PUMA "G1700310, G17003521" +County and PUMA "G1700310, G17003522" +County and PUMA "G1700310, G17003523" +County and PUMA "G1700310, G17003524" +County and PUMA "G1700310, G17003525" +County and PUMA "G1700310, G17003526" +County and PUMA "G1700310, G17003527" +County and PUMA "G1700310, G17003528" +County and PUMA "G1700310, G17003529" +County and PUMA "G1700310, G17003530" +County and PUMA "G1700310, G17003531" +County and PUMA "G1700310, G17003532" +County and PUMA "G1700330, G17000700" +County and PUMA "G1700350, G17000600" +County and PUMA "G1700370, G17002601" +County and PUMA "G1700390, G17001602" +County and PUMA "G1700410, G17000600" +County and PUMA "G1700430, G17003202" +County and PUMA "G1700430, G17003203" +County and PUMA "G1700430, G17003204" +County and PUMA "G1700430, G17003205" +County and PUMA "G1700430, G17003207" +County and PUMA "G1700430, G17003208" +County and PUMA "G1700430, G17003209" +County and PUMA "G1700450, G17000600" +County and PUMA "G1700470, G17000800" +County and PUMA "G1700490, G17000501" +County and PUMA "G1700510, G17000501" +County and PUMA "G1700530, G17002200" +County and PUMA "G1700550, G17000900" +County and PUMA "G1700570, G17000202" +County and PUMA "G1700590, G17000800" +County and PUMA "G1700610, G17000401" +County and PUMA "G1700630, G17003700" +County and PUMA "G1700650, G17000800" +County and PUMA "G1700670, G17000202" +County and PUMA "G1700690, G17000800" +County and PUMA "G1700710, G17000202" +County and PUMA "G1700730, G17000202" +County and PUMA "G1700750, G17002200" +County and PUMA "G1700770, G17000900" +County and PUMA "G1700790, G17000700" +County and PUMA "G1700810, G17001001" +County and PUMA "G1700830, G17000401" +County and PUMA "G1700850, G17000104" +County and PUMA "G1700870, G17000800" +County and PUMA "G1700890, G17003005" +County and PUMA "G1700890, G17003007" +County and PUMA "G1700890, G17003008" +County and PUMA "G1700890, G17003009" +County and PUMA "G1700910, G17002300" +County and PUMA "G1700930, G17003700" +County and PUMA "G1700950, G17002501" +County and PUMA "G1700970, G17003306" +County and PUMA "G1700970, G17003307" +County and PUMA "G1700970, G17003308" +County and PUMA "G1700970, G17003309" +County and PUMA "G1700970, G17003310" +County and PUMA "G1700990, G17002400" +County and PUMA "G1701010, G17000700" +County and PUMA "G1701030, G17000104" +County and PUMA "G1701050, G17002200" +County and PUMA "G1701070, G17001602" +County and PUMA "G1701090, G17000202" +County and PUMA "G1701110, G17003601" +County and PUMA "G1701110, G17003602" +County and PUMA "G1701130, G17002000" +County and PUMA "G1701150, G17001500" +County and PUMA "G1701170, G17000401" +County and PUMA "G1701190, G17001204" +County and PUMA "G1701190, G17001205" +County and PUMA "G1701210, G17001001" +County and PUMA "G1701230, G17002501" +County and PUMA "G1701250, G17000300" +County and PUMA "G1701270, G17000800" +County and PUMA "G1701290, G17001602" +County and PUMA "G1701310, G17000202" +County and PUMA "G1701330, G17001001" +County and PUMA "G1701350, G17000501" +County and PUMA "G1701370, G17000401" +County and PUMA "G1701390, G17001602" +County and PUMA "G1701410, G17002700" +County and PUMA "G1701430, G17001701" +County and PUMA "G1701450, G17000900" +County and PUMA "G1701470, G17001602" +County and PUMA "G1701490, G17000300" +County and PUMA "G1701510, G17000800" +County and PUMA "G1701530, G17000800" +County and PUMA "G1701550, G17002501" +County and PUMA "G1701570, G17001001" +County and PUMA "G1701590, G17000700" +County and PUMA "G1701610, G17000105" +County and PUMA "G1701630, G17001104" +County and PUMA "G1701630, G17001105" +County and PUMA "G1701650, G17000800" +County and PUMA "G1701670, G17001300" +County and PUMA "G1701690, G17000300" +County and PUMA "G1701710, G17000401" +County and PUMA "G1701730, G17001602" +County and PUMA "G1701750, G17002501" +County and PUMA "G1701770, G17002700" +County and PUMA "G1701790, G17001900" +County and PUMA "G1701810, G17000800" +County and PUMA "G1701830, G17002200" +County and PUMA "G1701850, G17000800" +County and PUMA "G1701870, G17000202" +County and PUMA "G1701890, G17001001" +County and PUMA "G1701910, G17000700" +County and PUMA "G1701930, G17000800" +County and PUMA "G1701950, G17000104" +County and PUMA "G1701970, G17003102" +County and PUMA "G1701970, G17003105" +County and PUMA "G1701970, G17003106" +County and PUMA "G1701970, G17003107" +County and PUMA "G1701970, G17003108" +County and PUMA "G1701990, G17000900" +County and PUMA "G1702010, G17002801" +County and PUMA "G1702010, G17002901" +County and PUMA "G1702030, G17002501" +County and PUMA "G1800010, G18000900" +County and PUMA "G1800030, G18001001" +County and PUMA "G1800030, G18001002" +County and PUMA "G1800030, G18001003" +County and PUMA "G1800050, G18002900" +County and PUMA "G1800070, G18001100" +County and PUMA "G1800090, G18001500" +County and PUMA "G1800110, G18001801" +County and PUMA "G1800130, G18002100" +County and PUMA "G1800150, G18001100" +County and PUMA "G1800170, G18001300" +County and PUMA "G1800190, G18003600" +County and PUMA "G1800210, G18001600" +County and PUMA "G1800230, G18001100" +County and PUMA "G1800250, G18003400" +County and PUMA "G1800270, G18002700" +County and PUMA "G1800290, G18003100" +County and PUMA "G1800310, G18003000" +County and PUMA "G1800330, G18000600" +County and PUMA "G1800350, G18002000" +County and PUMA "G1800370, G18003400" +County and PUMA "G1800390, G18000500" +County and PUMA "G1800410, G18002600" +County and PUMA "G1800430, G18003500" +County and PUMA "G1800450, G18001600" +County and PUMA "G1800470, G18003100" +County and PUMA "G1800490, G18000700" +County and PUMA "G1800510, G18003200" +County and PUMA "G1800530, G18001400" +County and PUMA "G1800550, G18002700" +County and PUMA "G1800570, G18001801" +County and PUMA "G1800570, G18001802" +County and PUMA "G1800570, G18001803" +County and PUMA "G1800590, G18002500" +County and PUMA "G1800610, G18003500" +County and PUMA "G1800630, G18002200" +County and PUMA "G1800650, G18001500" +County and PUMA "G1800670, G18001300" +County and PUMA "G1800690, G18000900" +County and PUMA "G1800710, G18002900" +County and PUMA "G1800730, G18000700" +County and PUMA "G1800750, G18001500" +County and PUMA "G1800770, G18003000" +County and PUMA "G1800790, G18003000" +County and PUMA "G1800810, G18002400" +County and PUMA "G1800830, G18003400" +County and PUMA "G1800850, G18000800" +County and PUMA "G1800870, G18000600" +County and PUMA "G1800890, G18000101" +County and PUMA "G1800890, G18000102" +County and PUMA "G1800890, G18000103" +County and PUMA "G1800890, G18000104" +County and PUMA "G1800910, G18000300" +County and PUMA "G1800930, G18002700" +County and PUMA "G1800950, G18001900" +County and PUMA "G1800970, G18002301" +County and PUMA "G1800970, G18002302" +County and PUMA "G1800970, G18002303" +County and PUMA "G1800970, G18002304" +County and PUMA "G1800970, G18002305" +County and PUMA "G1800970, G18002306" +County and PUMA "G1800970, G18002307" +County and PUMA "G1800990, G18000800" +County and PUMA "G1801010, G18002700" +County and PUMA "G1801030, G18001400" +County and PUMA "G1801050, G18002800" +County and PUMA "G1801070, G18001100" +County and PUMA "G1801090, G18002100" +County and PUMA "G1801110, G18000700" +County and PUMA "G1801130, G18000600" +County and PUMA "G1801150, G18003100" +County and PUMA "G1801170, G18002700" +County and PUMA "G1801190, G18002700" +County and PUMA "G1801210, G18001600" +County and PUMA "G1801230, G18003400" +County and PUMA "G1801250, G18003400" +County and PUMA "G1801270, G18000200" +County and PUMA "G1801290, G18003200" +County and PUMA "G1801310, G18000700" +County and PUMA "G1801330, G18002100" +County and PUMA "G1801350, G18001500" +County and PUMA "G1801370, G18003100" +County and PUMA "G1801390, G18002600" +County and PUMA "G1801410, G18000401" +County and PUMA "G1801410, G18000402" +County and PUMA "G1801430, G18003000" +County and PUMA "G1801450, G18002500" +County and PUMA "G1801470, G18003400" +County and PUMA "G1801490, G18000700" +County and PUMA "G1801510, G18000600" +County and PUMA "G1801530, G18001600" +County and PUMA "G1801550, G18003100" +County and PUMA "G1801570, G18001200" +County and PUMA "G1801590, G18001300" +County and PUMA "G1801610, G18002600" +County and PUMA "G1801630, G18003300" +County and PUMA "G1801650, G18001600" +County and PUMA "G1801670, G18001700" +County and PUMA "G1801690, G18001400" +County and PUMA "G1801710, G18001600" +County and PUMA "G1801730, G18003200" +County and PUMA "G1801750, G18003500" +County and PUMA "G1801770, G18002600" +County and PUMA "G1801790, G18000900" +County and PUMA "G1801810, G18001100" +County and PUMA "G1801830, G18000900" +County and PUMA "G1900010, G19001800" +County and PUMA "G1900030, G19001800" +County and PUMA "G1900050, G19000400" +County and PUMA "G1900070, G19001800" +County and PUMA "G1900090, G19001800" +County and PUMA "G1900110, G19001200" +County and PUMA "G1900130, G19000500" +County and PUMA "G1900150, G19001300" +County and PUMA "G1900170, G19000400" +County and PUMA "G1900190, G19000700" +County and PUMA "G1900210, G19001900" +County and PUMA "G1900230, G19000600" +County and PUMA "G1900250, G19001900" +County and PUMA "G1900270, G19001900" +County and PUMA "G1900290, G19002100" +County and PUMA "G1900310, G19000800" +County and PUMA "G1900330, G19000200" +County and PUMA "G1900350, G19001900" +County and PUMA "G1900370, G19000400" +County and PUMA "G1900390, G19001800" +County and PUMA "G1900410, G19000100" +County and PUMA "G1900430, G19000400" +County and PUMA "G1900450, G19000800" +County and PUMA "G1900470, G19001900" +County and PUMA "G1900490, G19001400" +County and PUMA "G1900490, G19001500" +County and PUMA "G1900510, G19002200" +County and PUMA "G1900530, G19001800" +County and PUMA "G1900550, G19000700" +County and PUMA "G1900570, G19002300" +County and PUMA "G1900590, G19000100" +County and PUMA "G1900610, G19000700" +County and PUMA "G1900630, G19000100" +County and PUMA "G1900650, G19000400" +County and PUMA "G1900670, G19000200" +County and PUMA "G1900690, G19000600" +County and PUMA "G1900710, G19002100" +County and PUMA "G1900730, G19001900" +County and PUMA "G1900750, G19000600" +County and PUMA "G1900770, G19001800" +County and PUMA "G1900790, G19000600" +County and PUMA "G1900810, G19000200" +County and PUMA "G1900830, G19000600" +County and PUMA "G1900850, G19002100" +County and PUMA "G1900870, G19002300" +County and PUMA "G1900890, G19000400" +County and PUMA "G1900910, G19000600" +County and PUMA "G1900930, G19001900" +County and PUMA "G1900950, G19001200" +County and PUMA "G1900970, G19000700" +County and PUMA "G1900990, G19001400" +County and PUMA "G1901010, G19002200" +County and PUMA "G1901030, G19001100" +County and PUMA "G1901050, G19000800" +County and PUMA "G1901070, G19002200" +County and PUMA "G1901090, G19000200" +County and PUMA "G1901110, G19002300" +County and PUMA "G1901130, G19001000" +County and PUMA "G1901150, G19002300" +County and PUMA "G1901170, G19001800" +County and PUMA "G1901190, G19000100" +County and PUMA "G1901210, G19001400" +County and PUMA "G1901230, G19002200" +County and PUMA "G1901250, G19001400" +County and PUMA "G1901270, G19001200" +County and PUMA "G1901290, G19002100" +County and PUMA "G1901310, G19000200" +County and PUMA "G1901330, G19001900" +County and PUMA "G1901350, G19001800" +County and PUMA "G1901370, G19002100" +County and PUMA "G1901390, G19000800" +County and PUMA "G1901410, G19000100" +County and PUMA "G1901430, G19000100" +County and PUMA "G1901450, G19002100" +County and PUMA "G1901470, G19000100" +County and PUMA "G1901490, G19002000" +County and PUMA "G1901510, G19001900" +County and PUMA "G1901530, G19001500" +County and PUMA "G1901530, G19001600" +County and PUMA "G1901530, G19001700" +County and PUMA "G1901550, G19002100" +County and PUMA "G1901570, G19001200" +County and PUMA "G1901590, G19001800" +County and PUMA "G1901610, G19001900" +County and PUMA "G1901630, G19000900" +County and PUMA "G1901650, G19002100" +County and PUMA "G1901670, G19000100" +County and PUMA "G1901690, G19001300" +County and PUMA "G1901710, G19001200" +County and PUMA "G1901730, G19001800" +County and PUMA "G1901750, G19001800" +County and PUMA "G1901770, G19002200" +County and PUMA "G1901790, G19002200" +County and PUMA "G1901810, G19001400" +County and PUMA "G1901830, G19002200" +County and PUMA "G1901850, G19001800" +County and PUMA "G1901870, G19000600" +County and PUMA "G1901890, G19000200" +County and PUMA "G1901910, G19000400" +County and PUMA "G1901930, G19002000" +County and PUMA "G1901950, G19000200" +County and PUMA "G1901970, G19000600" +County and PUMA "G2000010, G20001400" +County and PUMA "G2000030, G20001400" +County and PUMA "G2000050, G20000400" +County and PUMA "G2000070, G20001100" +County and PUMA "G2000090, G20001100" +County and PUMA "G2000110, G20001400" +County and PUMA "G2000130, G20000802" +County and PUMA "G2000150, G20001302" +County and PUMA "G2000150, G20001304" +County and PUMA "G2000170, G20000900" +County and PUMA "G2000190, G20000900" +County and PUMA "G2000210, G20001500" +County and PUMA "G2000230, G20000100" +County and PUMA "G2000250, G20001200" +County and PUMA "G2000270, G20000200" +County and PUMA "G2000290, G20000200" +County and PUMA "G2000310, G20000900" +County and PUMA "G2000330, G20001100" +County and PUMA "G2000350, G20000900" +County and PUMA "G2000350, G20001100" +County and PUMA "G2000370, G20001500" +County and PUMA "G2000390, G20000100" +County and PUMA "G2000410, G20000200" +County and PUMA "G2000430, G20000400" +County and PUMA "G2000450, G20000700" +County and PUMA "G2000470, G20001100" +County and PUMA "G2000490, G20000900" +County and PUMA "G2000510, G20000100" +County and PUMA "G2000530, G20000200" +County and PUMA "G2000550, G20001200" +County and PUMA "G2000570, G20001200" +County and PUMA "G2000590, G20001400" +County and PUMA "G2000610, G20000300" +County and PUMA "G2000630, G20000100" +County and PUMA "G2000650, G20000100" +County and PUMA "G2000670, G20001200" +County and PUMA "G2000690, G20001200" +County and PUMA "G2000710, G20000100" +County and PUMA "G2000730, G20000900" +County and PUMA "G2000750, G20001200" +County and PUMA "G2000770, G20001100" +County and PUMA "G2000790, G20001301" +County and PUMA "G2000810, G20001200" +County and PUMA "G2000830, G20001200" +County and PUMA "G2000850, G20000802" +County and PUMA "G2000870, G20000400" +County and PUMA "G2000890, G20000200" +County and PUMA "G2000910, G20000601" +County and PUMA "G2000910, G20000602" +County and PUMA "G2000910, G20000603" +County and PUMA "G2000910, G20000604" +County and PUMA "G2000930, G20001200" +County and PUMA "G2000950, G20001100" +County and PUMA "G2000970, G20001100" +County and PUMA "G2000990, G20001500" +County and PUMA "G2001010, G20000100" +County and PUMA "G2001030, G20000400" +County and PUMA "G2001050, G20000200" +County and PUMA "G2001070, G20001400" +County and PUMA "G2001090, G20000100" +County and PUMA "G2001110, G20000900" +County and PUMA "G2001130, G20001000" +County and PUMA "G2001150, G20000900" +County and PUMA "G2001170, G20000200" +County and PUMA "G2001190, G20001200" +County and PUMA "G2001210, G20001400" +County and PUMA "G2001230, G20000200" +County and PUMA "G2001250, G20001500" +County and PUMA "G2001270, G20000900" +County and PUMA "G2001290, G20001200" +County and PUMA "G2001310, G20000200" +County and PUMA "G2001330, G20001500" +County and PUMA "G2001350, G20000100" +County and PUMA "G2001370, G20000100" +County and PUMA "G2001390, G20000802" +County and PUMA "G2001410, G20000100" +County and PUMA "G2001430, G20000200" +County and PUMA "G2001450, G20001100" +County and PUMA "G2001470, G20000100" +County and PUMA "G2001490, G20000300" +County and PUMA "G2001510, G20001100" +County and PUMA "G2001530, G20000100" +County and PUMA "G2001550, G20001000" +County and PUMA "G2001570, G20000200" +County and PUMA "G2001590, G20001000" +County and PUMA "G2001610, G20000300" +County and PUMA "G2001630, G20000100" +County and PUMA "G2001650, G20001100" +County and PUMA "G2001670, G20000100" +County and PUMA "G2001690, G20000200" +County and PUMA "G2001710, G20000100" +County and PUMA "G2001730, G20001301" +County and PUMA "G2001730, G20001302" +County and PUMA "G2001730, G20001303" +County and PUMA "G2001730, G20001304" +County and PUMA "G2001750, G20001200" +County and PUMA "G2001770, G20000801" +County and PUMA "G2001770, G20000802" +County and PUMA "G2001790, G20000100" +County and PUMA "G2001810, G20000100" +County and PUMA "G2001830, G20000100" +County and PUMA "G2001850, G20001100" +County and PUMA "G2001870, G20001200" +County and PUMA "G2001890, G20001200" +County and PUMA "G2001910, G20001100" +County and PUMA "G2001930, G20000100" +County and PUMA "G2001950, G20000100" +County and PUMA "G2001970, G20000802" +County and PUMA "G2001990, G20000100" +County and PUMA "G2002010, G20000200" +County and PUMA "G2002030, G20000100" +County and PUMA "G2002050, G20000900" +County and PUMA "G2002070, G20000900" +County and PUMA "G2002090, G20000500" +County and PUMA "G2100010, G21000600" +County and PUMA "G2100030, G21000400" +County and PUMA "G2100050, G21002000" +County and PUMA "G2100070, G21000100" +County and PUMA "G2100090, G21000400" +County and PUMA "G2100110, G21002700" +County and PUMA "G2100130, G21000900" +County and PUMA "G2100150, G21002500" +County and PUMA "G2100170, G21002300" +County and PUMA "G2100190, G21002800" +County and PUMA "G2100210, G21002100" +County and PUMA "G2100230, G21002700" +County and PUMA "G2100250, G21001000" +County and PUMA "G2100270, G21001300" +County and PUMA "G2100290, G21001600" +County and PUMA "G2100310, G21000400" +County and PUMA "G2100330, G21000200" +County and PUMA "G2100350, G21000100" +County and PUMA "G2100370, G21002600" +County and PUMA "G2100390, G21000100" +County and PUMA "G2100410, G21002600" +County and PUMA "G2100430, G21002800" +County and PUMA "G2100450, G21000600" +County and PUMA "G2100470, G21000300" +County and PUMA "G2100490, G21002300" +County and PUMA "G2100510, G21000800" +County and PUMA "G2100530, G21000600" +County and PUMA "G2100550, G21000200" +County and PUMA "G2100570, G21000600" +County and PUMA "G2100590, G21001500" +County and PUMA "G2100610, G21000400" +County and PUMA "G2100630, G21002800" +County and PUMA "G2100650, G21002200" +County and PUMA "G2100670, G21001901" +County and PUMA "G2100670, G21001902" +County and PUMA "G2100690, G21002700" +County and PUMA "G2100710, G21001100" +County and PUMA "G2100730, G21002000" +County and PUMA "G2100750, G21000100" +County and PUMA "G2100770, G21002600" +County and PUMA "G2100790, G21002100" +County and PUMA "G2100810, G21002600" +County and PUMA "G2100830, G21000100" +County and PUMA "G2100850, G21001300" +County and PUMA "G2100870, G21000600" +County and PUMA "G2100890, G21002800" +County and PUMA "G2100910, G21001500" +County and PUMA "G2100930, G21001200" +County and PUMA "G2100930, G21001300" +County and PUMA "G2100950, G21000900" +County and PUMA "G2100970, G21002300" +County and PUMA "G2100990, G21000400" +County and PUMA "G2101010, G21001400" +County and PUMA "G2101030, G21001800" +County and PUMA "G2101050, G21000100" +County and PUMA "G2101070, G21000200" +County and PUMA "G2101090, G21000800" +County and PUMA "G2101110, G21001701" +County and PUMA "G2101110, G21001702" +County and PUMA "G2101110, G21001703" +County and PUMA "G2101110, G21001704" +County and PUMA "G2101110, G21001705" +County and PUMA "G2101110, G21001706" +County and PUMA "G2101130, G21002100" +County and PUMA "G2101150, G21001100" +County and PUMA "G2101170, G21002400" +County and PUMA "G2101190, G21001000" +County and PUMA "G2101210, G21000900" +County and PUMA "G2101230, G21001200" +County and PUMA "G2101250, G21000800" +County and PUMA "G2101270, G21002800" +County and PUMA "G2101290, G21001000" +County and PUMA "G2101310, G21001000" +County and PUMA "G2101330, G21001000" +County and PUMA "G2101350, G21002700" +County and PUMA "G2101370, G21002100" +County and PUMA "G2101390, G21000200" +County and PUMA "G2101410, G21000400" +County and PUMA "G2101430, G21000300" +County and PUMA "G2101450, G21000100" +County and PUMA "G2101470, G21000700" +County and PUMA "G2101490, G21001400" +County and PUMA "G2101510, G21002200" +County and PUMA "G2101530, G21001100" +County and PUMA "G2101550, G21001200" +County and PUMA "G2101570, G21000100" +County and PUMA "G2101590, G21001100" +County and PUMA "G2101610, G21002700" +County and PUMA "G2101630, G21001300" +County and PUMA "G2101650, G21002700" +County and PUMA "G2101670, G21002000" +County and PUMA "G2101690, G21000400" +County and PUMA "G2101710, G21000400" +County and PUMA "G2101730, G21002700" +County and PUMA "G2101750, G21002700" +County and PUMA "G2101770, G21000200" +County and PUMA "G2101790, G21001200" +County and PUMA "G2101810, G21002300" +County and PUMA "G2101830, G21001400" +County and PUMA "G2101850, G21001800" +County and PUMA "G2101870, G21002600" +County and PUMA "G2101890, G21001000" +County and PUMA "G2101910, G21002600" +County and PUMA "G2101930, G21001000" +County and PUMA "G2101950, G21001100" +County and PUMA "G2101970, G21002200" +County and PUMA "G2101990, G21000700" +County and PUMA "G2102010, G21002700" +County and PUMA "G2102030, G21000800" +County and PUMA "G2102050, G21002700" +County and PUMA "G2102070, G21000600" +County and PUMA "G2102090, G21002300" +County and PUMA "G2102110, G21001600" +County and PUMA "G2102110, G21001800" +County and PUMA "G2102130, G21000400" +County and PUMA "G2102150, G21001600" +County and PUMA "G2102170, G21000600" +County and PUMA "G2102190, G21000300" +County and PUMA "G2102210, G21000300" +County and PUMA "G2102230, G21001800" +County and PUMA "G2102250, G21001400" +County and PUMA "G2102270, G21000500" +County and PUMA "G2102290, G21001200" +County and PUMA "G2102310, G21000700" +County and PUMA "G2102330, G21001400" +County and PUMA "G2102350, G21000900" +County and PUMA "G2102370, G21001000" +County and PUMA "G2102390, G21002000" +County and PUMA "G2200010, G22001100" +County and PUMA "G2200030, G22000800" +County and PUMA "G2200050, G22001600" +County and PUMA "G2200070, G22002000" +County and PUMA "G2200090, G22000600" +County and PUMA "G2200110, G22000800" +County and PUMA "G2200130, G22000300" +County and PUMA "G2200150, G22000200" +County and PUMA "G2200170, G22000100" +County and PUMA "G2200170, G22000101" +County and PUMA "G2200190, G22000800" +County and PUMA "G2200190, G22000900" +County and PUMA "G2200210, G22000500" +County and PUMA "G2200230, G22000900" +County and PUMA "G2200250, G22000600" +County and PUMA "G2200270, G22000300" +County and PUMA "G2200290, G22000600" +County and PUMA "G2200310, G22000300" +County and PUMA "G2200330, G22001500" +County and PUMA "G2200330, G22001501" +County and PUMA "G2200330, G22001502" +County and PUMA "G2200350, G22000500" +County and PUMA "G2200370, G22001400" +County and PUMA "G2200390, G22001000" +County and PUMA "G2200410, G22000500" +County and PUMA "G2200430, G22000600" +County and PUMA "G2200450, G22001300" +County and PUMA "G2200470, G22001400" +County and PUMA "G2200490, G22000500" +County and PUMA "G2200510, G22002300" +County and PUMA "G2200510, G22002301" +County and PUMA "G2200510, G22002302" +County and PUMA "G2200510, G22002500" +County and PUMA "G2200530, G22000900" +County and PUMA "G2200550, G22001200" +County and PUMA "G2200550, G22001201" +County and PUMA "G2200570, G22002000" +County and PUMA "G2200590, G22000600" +County and PUMA "G2200610, G22000300" +County and PUMA "G2200630, G22001700" +County and PUMA "G2200650, G22000500" +County and PUMA "G2200670, G22000500" +County and PUMA "G2200690, G22000300" +County and PUMA "G2200710, G22002400" +County and PUMA "G2200710, G22002401" +County and PUMA "G2200710, G22002402" +County and PUMA "G2200730, G22000400" +County and PUMA "G2200750, G22002500" +County and PUMA "G2200770, G22001400" +County and PUMA "G2200790, G22000700" +County and PUMA "G2200810, G22000300" +County and PUMA "G2200830, G22000500" +County and PUMA "G2200850, G22000300" +County and PUMA "G2200870, G22002500" +County and PUMA "G2200890, G22001900" +County and PUMA "G2200910, G22001700" +County and PUMA "G2200930, G22001900" +County and PUMA "G2200950, G22001900" +County and PUMA "G2200970, G22001000" +County and PUMA "G2200990, G22001300" +County and PUMA "G2201010, G22001300" +County and PUMA "G2201030, G22002200" +County and PUMA "G2201030, G22002201" +County and PUMA "G2201050, G22001800" +County and PUMA "G2201070, G22000500" +County and PUMA "G2201090, G22002100" +County and PUMA "G2201110, G22000500" +County and PUMA "G2201130, G22001100" +County and PUMA "G2201150, G22000700" +County and PUMA "G2201170, G22001800" +County and PUMA "G2201190, G22000200" +County and PUMA "G2201210, G22001400" +County and PUMA "G2201230, G22000500" +County and PUMA "G2201250, G22001400" +County and PUMA "G2201270, G22000600" +County and PUMA "G2300010, G23000600" +County and PUMA "G2300030, G23000100" +County and PUMA "G2300050, G23000700" +County and PUMA "G2300050, G23000800" +County and PUMA "G2300050, G23000900" +County and PUMA "G2300050, G23001000" +County and PUMA "G2300070, G23000200" +County and PUMA "G2300090, G23000500" +County and PUMA "G2300110, G23000400" +County and PUMA "G2300130, G23000500" +County and PUMA "G2300150, G23000500" +County and PUMA "G2300170, G23000200" +County and PUMA "G2300190, G23000300" +County and PUMA "G2300210, G23000200" +County and PUMA "G2300230, G23000700" +County and PUMA "G2300250, G23000200" +County and PUMA "G2300270, G23000500" +County and PUMA "G2300290, G23000100" +County and PUMA "G2300310, G23000800" +County and PUMA "G2300310, G23000900" +County and PUMA "G2400010, G24000100" +County and PUMA "G2400030, G24001201" +County and PUMA "G2400030, G24001202" +County and PUMA "G2400030, G24001203" +County and PUMA "G2400030, G24001204" +County and PUMA "G2400050, G24000501" +County and PUMA "G2400050, G24000502" +County and PUMA "G2400050, G24000503" +County and PUMA "G2400050, G24000504" +County and PUMA "G2400050, G24000505" +County and PUMA "G2400050, G24000506" +County and PUMA "G2400050, G24000507" +County and PUMA "G2400090, G24001500" +County and PUMA "G2400110, G24001300" +County and PUMA "G2400130, G24000400" +County and PUMA "G2400150, G24000700" +County and PUMA "G2400170, G24001600" +County and PUMA "G2400190, G24001300" +County and PUMA "G2400210, G24000301" +County and PUMA "G2400210, G24000302" +County and PUMA "G2400230, G24000100" +County and PUMA "G2400250, G24000601" +County and PUMA "G2400250, G24000602" +County and PUMA "G2400270, G24000901" +County and PUMA "G2400270, G24000902" +County and PUMA "G2400290, G24001300" +County and PUMA "G2400310, G24001001" +County and PUMA "G2400310, G24001002" +County and PUMA "G2400310, G24001003" +County and PUMA "G2400310, G24001004" +County and PUMA "G2400310, G24001005" +County and PUMA "G2400310, G24001006" +County and PUMA "G2400310, G24001007" +County and PUMA "G2400330, G24001101" +County and PUMA "G2400330, G24001102" +County and PUMA "G2400330, G24001103" +County and PUMA "G2400330, G24001104" +County and PUMA "G2400330, G24001105" +County and PUMA "G2400330, G24001106" +County and PUMA "G2400330, G24001107" +County and PUMA "G2400350, G24001300" +County and PUMA "G2400370, G24001500" +County and PUMA "G2400390, G24001400" +County and PUMA "G2400410, G24001300" +County and PUMA "G2400430, G24000200" +County and PUMA "G2400450, G24001400" +County and PUMA "G2400470, G24001400" +County and PUMA "G2405100, G24000801" +County and PUMA "G2405100, G24000802" +County and PUMA "G2405100, G24000803" +County and PUMA "G2405100, G24000804" +County and PUMA "G2405100, G24000805" +County and PUMA "G2500010, G25004700" +County and PUMA "G2500010, G25004800" +County and PUMA "G2500030, G25000100" +County and PUMA "G2500050, G25004200" +County and PUMA "G2500050, G25004301" +County and PUMA "G2500050, G25004302" +County and PUMA "G2500050, G25004303" +County and PUMA "G2500050, G25004500" +County and PUMA "G2500050, G25004901" +County and PUMA "G2500070, G25004800" +County and PUMA "G2500090, G25000701" +County and PUMA "G2500090, G25000702" +County and PUMA "G2500090, G25000703" +County and PUMA "G2500090, G25000704" +County and PUMA "G2500090, G25001000" +County and PUMA "G2500090, G25001300" +County and PUMA "G2500090, G25002800" +County and PUMA "G2500110, G25000200" +County and PUMA "G2500130, G25001600" +County and PUMA "G2500130, G25001900" +County and PUMA "G2500130, G25001901" +County and PUMA "G2500130, G25001902" +County and PUMA "G2500150, G25000200" +County and PUMA "G2500150, G25001600" +County and PUMA "G2500170, G25000400" +County and PUMA "G2500170, G25000501" +County and PUMA "G2500170, G25000502" +County and PUMA "G2500170, G25000503" +County and PUMA "G2500170, G25000504" +County and PUMA "G2500170, G25000505" +County and PUMA "G2500170, G25000506" +County and PUMA "G2500170, G25000507" +County and PUMA "G2500170, G25000508" +County and PUMA "G2500170, G25001000" +County and PUMA "G2500170, G25001300" +County and PUMA "G2500170, G25001400" +County and PUMA "G2500170, G25002400" +County and PUMA "G2500170, G25002800" +County and PUMA "G2500170, G25003400" +County and PUMA "G2500170, G25003500" +County and PUMA "G2500190, G25004800" +County and PUMA "G2500210, G25002400" +County and PUMA "G2500210, G25003400" +County and PUMA "G2500210, G25003500" +County and PUMA "G2500210, G25003601" +County and PUMA "G2500210, G25003602" +County and PUMA "G2500210, G25003603" +County and PUMA "G2500210, G25003900" +County and PUMA "G2500210, G25004000" +County and PUMA "G2500210, G25004200" +County and PUMA "G2500230, G25003900" +County and PUMA "G2500230, G25004000" +County and PUMA "G2500230, G25004301" +County and PUMA "G2500230, G25004901" +County and PUMA "G2500230, G25004902" +County and PUMA "G2500230, G25004903" +County and PUMA "G2500250, G25003301" +County and PUMA "G2500250, G25003302" +County and PUMA "G2500250, G25003303" +County and PUMA "G2500250, G25003304" +County and PUMA "G2500250, G25003305" +County and PUMA "G2500250, G25003306" +County and PUMA "G2500270, G25000300" +County and PUMA "G2500270, G25000301" +County and PUMA "G2500270, G25000302" +County and PUMA "G2500270, G25000303" +County and PUMA "G2500270, G25000304" +County and PUMA "G2500270, G25000400" +County and PUMA "G2500270, G25001400" +County and PUMA "G2500270, G25002400" +County and PUMA "G2600010, G26000300" +County and PUMA "G2600030, G26000200" +County and PUMA "G2600050, G26000900" +County and PUMA "G2600070, G26000300" +County and PUMA "G2600090, G26000400" +County and PUMA "G2600110, G26001300" +County and PUMA "G2600130, G26000100" +County and PUMA "G2600150, G26002000" +County and PUMA "G2600170, G26001400" +County and PUMA "G2600190, G26000500" +County and PUMA "G2600210, G26002400" +County and PUMA "G2600230, G26002200" +County and PUMA "G2600250, G26002000" +County and PUMA "G2600270, G26002300" +County and PUMA "G2600290, G26000400" +County and PUMA "G2600310, G26000300" +County and PUMA "G2600330, G26000200" +County and PUMA "G2600350, G26001200" +County and PUMA "G2600370, G26001900" +County and PUMA "G2600390, G26000300" +County and PUMA "G2600410, G26000200" +County and PUMA "G2600430, G26000100" +County and PUMA "G2600450, G26001900" +County and PUMA "G2600470, G26000400" +County and PUMA "G2600490, G26001701" +County and PUMA "G2600490, G26001702" +County and PUMA "G2600490, G26001703" +County and PUMA "G2600490, G26001704" +County and PUMA "G2600510, G26001300" +County and PUMA "G2600530, G26000100" +County and PUMA "G2600550, G26000500" +County and PUMA "G2600570, G26001200" +County and PUMA "G2600590, G26002500" +County and PUMA "G2600610, G26000100" +County and PUMA "G2600630, G26001600" +County and PUMA "G2600650, G26001801" +County and PUMA "G2600650, G26001802" +County and PUMA "G2600670, G26001100" +County and PUMA "G2600690, G26001300" +County and PUMA "G2600710, G26000100" +County and PUMA "G2600730, G26001200" +County and PUMA "G2600750, G26002600" +County and PUMA "G2600770, G26002101" +County and PUMA "G2600770, G26002102" +County and PUMA "G2600790, G26000400" +County and PUMA "G2600810, G26001001" +County and PUMA "G2600810, G26001002" +County and PUMA "G2600810, G26001003" +County and PUMA "G2600810, G26001004" +County and PUMA "G2600830, G26000100" +County and PUMA "G2600850, G26000600" +County and PUMA "G2600870, G26001701" +County and PUMA "G2600890, G26000500" +County and PUMA "G2600910, G26002500" +County and PUMA "G2600930, G26002800" +County and PUMA "G2600950, G26000200" +County and PUMA "G2600970, G26000200" +County and PUMA "G2600990, G26003001" +County and PUMA "G2600990, G26003002" +County and PUMA "G2600990, G26003003" +County and PUMA "G2600990, G26003004" +County and PUMA "G2600990, G26003005" +County and PUMA "G2600990, G26003006" +County and PUMA "G2601010, G26000500" +County and PUMA "G2601030, G26000100" +County and PUMA "G2601050, G26000600" +County and PUMA "G2601070, G26001100" +County and PUMA "G2601090, G26000200" +County and PUMA "G2601110, G26001400" +County and PUMA "G2601130, G26000400" +County and PUMA "G2601150, G26003300" +County and PUMA "G2601170, G26001100" +County and PUMA "G2601190, G26000300" +County and PUMA "G2601210, G26000700" +County and PUMA "G2601230, G26000600" +County and PUMA "G2601250, G26002901" +County and PUMA "G2601250, G26002902" +County and PUMA "G2601250, G26002903" +County and PUMA "G2601250, G26002904" +County and PUMA "G2601250, G26002905" +County and PUMA "G2601250, G26002906" +County and PUMA "G2601250, G26002907" +County and PUMA "G2601250, G26002908" +County and PUMA "G2601270, G26000600" +County and PUMA "G2601290, G26001300" +County and PUMA "G2601310, G26000100" +County and PUMA "G2601330, G26001100" +County and PUMA "G2601350, G26000300" +County and PUMA "G2601370, G26000300" +County and PUMA "G2601390, G26000801" +County and PUMA "G2601390, G26000802" +County and PUMA "G2601410, G26000300" +County and PUMA "G2601430, G26001300" +County and PUMA "G2601450, G26001500" +County and PUMA "G2601470, G26003100" +County and PUMA "G2601490, G26002200" +County and PUMA "G2601510, G26001600" +County and PUMA "G2601530, G26000200" +County and PUMA "G2601550, G26001704" +County and PUMA "G2601570, G26001600" +County and PUMA "G2601590, G26002300" +County and PUMA "G2601610, G26002701" +County and PUMA "G2601610, G26002702" +County and PUMA "G2601610, G26002703" +County and PUMA "G2601630, G26003201" +County and PUMA "G2601630, G26003202" +County and PUMA "G2601630, G26003203" +County and PUMA "G2601630, G26003204" +County and PUMA "G2601630, G26003205" +County and PUMA "G2601630, G26003206" +County and PUMA "G2601630, G26003207" +County and PUMA "G2601630, G26003208" +County and PUMA "G2601630, G26003209" +County and PUMA "G2601630, G26003210" +County and PUMA "G2601630, G26003211" +County and PUMA "G2601630, G26003212" +County and PUMA "G2601630, G26003213" +County and PUMA "G2601650, G26000400" +County and PUMA "G2700010, G27000300" +County and PUMA "G2700030, G27001101" +County and PUMA "G2700030, G27001102" +County and PUMA "G2700030, G27001103" +County and PUMA "G2700050, G27000200" +County and PUMA "G2700070, G27000200" +County and PUMA "G2700090, G27001000" +County and PUMA "G2700110, G27000800" +County and PUMA "G2700130, G27002200" +County and PUMA "G2700150, G27002000" +County and PUMA "G2700170, G27000300" +County and PUMA "G2700170, G27000400" +County and PUMA "G2700190, G27001700" +County and PUMA "G2700210, G27000300" +County and PUMA "G2700230, G27002000" +County and PUMA "G2700250, G27000600" +County and PUMA "G2700270, G27000100" +County and PUMA "G2700290, G27000200" +County and PUMA "G2700310, G27000400" +County and PUMA "G2700330, G27002100" +County and PUMA "G2700350, G27000700" +County and PUMA "G2700370, G27001501" +County and PUMA "G2700370, G27001502" +County and PUMA "G2700370, G27001503" +County and PUMA "G2700390, G27002400" +County and PUMA "G2700410, G27000800" +County and PUMA "G2700430, G27002100" +County and PUMA "G2700450, G27002600" +County and PUMA "G2700470, G27002400" +County and PUMA "G2700490, G27002300" +County and PUMA "G2700510, G27000800" +County and PUMA "G2700530, G27001401" +County and PUMA "G2700530, G27001402" +County and PUMA "G2700530, G27001403" +County and PUMA "G2700530, G27001404" +County and PUMA "G2700530, G27001405" +County and PUMA "G2700530, G27001406" +County and PUMA "G2700530, G27001407" +County and PUMA "G2700530, G27001408" +County and PUMA "G2700530, G27001409" +County and PUMA "G2700530, G27001410" +County and PUMA "G2700550, G27002600" +County and PUMA "G2700570, G27000200" +County and PUMA "G2700590, G27000600" +County and PUMA "G2700610, G27000300" +County and PUMA "G2700630, G27002100" +County and PUMA "G2700650, G27000600" +County and PUMA "G2700670, G27001900" +County and PUMA "G2700690, G27000100" +County and PUMA "G2700710, G27000400" +County and PUMA "G2700730, G27002000" +County and PUMA "G2700750, G27000400" +County and PUMA "G2700770, G27000200" +County and PUMA "G2700790, G27002300" +County and PUMA "G2700810, G27002000" +County and PUMA "G2700830, G27002000" +County and PUMA "G2700850, G27001900" +County and PUMA "G2700870, G27000200" +County and PUMA "G2700890, G27000100" +County and PUMA "G2700910, G27002100" +County and PUMA "G2700930, G27001900" +County and PUMA "G2700950, G27000600" +County and PUMA "G2700970, G27000700" +County and PUMA "G2700990, G27002400" +County and PUMA "G2701010, G27002100" +County and PUMA "G2701030, G27002200" +County and PUMA "G2701050, G27002100" +County and PUMA "G2701070, G27000100" +County and PUMA "G2701090, G27002500" +County and PUMA "G2701110, G27000800" +County and PUMA "G2701130, G27000100" +County and PUMA "G2701150, G27000600" +County and PUMA "G2701170, G27002100" +County and PUMA "G2701190, G27000100" +County and PUMA "G2701210, G27000800" +County and PUMA "G2701230, G27001301" +County and PUMA "G2701230, G27001302" +County and PUMA "G2701230, G27001303" +County and PUMA "G2701230, G27001304" +County and PUMA "G2701250, G27000100" +County and PUMA "G2701270, G27002000" +County and PUMA "G2701290, G27001900" +County and PUMA "G2701310, G27002300" +County and PUMA "G2701330, G27002100" +County and PUMA "G2701350, G27000100" +County and PUMA "G2701370, G27000400" +County and PUMA "G2701370, G27000500" +County and PUMA "G2701390, G27001600" +County and PUMA "G2701390, G27001700" +County and PUMA "G2701410, G27001000" +County and PUMA "G2701430, G27001900" +County and PUMA "G2701450, G27000900" +County and PUMA "G2701470, G27002400" +County and PUMA "G2701490, G27000800" +County and PUMA "G2701510, G27000800" +County and PUMA "G2701530, G27000700" +County and PUMA "G2701550, G27000800" +County and PUMA "G2701570, G27002600" +County and PUMA "G2701590, G27000700" +County and PUMA "G2701610, G27002200" +County and PUMA "G2701630, G27001201" +County and PUMA "G2701630, G27001202" +County and PUMA "G2701650, G27002100" +County and PUMA "G2701670, G27000800" +County and PUMA "G2701690, G27002600" +County and PUMA "G2701710, G27001800" +County and PUMA "G2701730, G27002000" +County and PUMA "G2800010, G28001600" +County and PUMA "G2800030, G28000200" +County and PUMA "G2800050, G28001600" +County and PUMA "G2800070, G28000700" +County and PUMA "G2800090, G28000200" +County and PUMA "G2800110, G28000800" +County and PUMA "G2800130, G28000400" +County and PUMA "G2800150, G28000700" +County and PUMA "G2800170, G28000400" +County and PUMA "G2800190, G28000600" +County and PUMA "G2800210, G28001600" +County and PUMA "G2800230, G28001500" +County and PUMA "G2800250, G28000600" +County and PUMA "G2800270, G28000300" +County and PUMA "G2800290, G28001200" +County and PUMA "G2800310, G28001700" +County and PUMA "G2800330, G28000100" +County and PUMA "G2800350, G28001800" +County and PUMA "G2800370, G28001600" +County and PUMA "G2800390, G28001900" +County and PUMA "G2800410, G28001700" +County and PUMA "G2800430, G28000700" +County and PUMA "G2800450, G28001900" +County and PUMA "G2800470, G28002000" +County and PUMA "G2800490, G28001000" +County and PUMA "G2800490, G28001100" +County and PUMA "G2800490, G28001200" +County and PUMA "G2800510, G28000700" +County and PUMA "G2800530, G28000800" +County and PUMA "G2800550, G28000800" +County and PUMA "G2800570, G28000400" +County and PUMA "G2800590, G28002100" +County and PUMA "G2800610, G28001400" +County and PUMA "G2800630, G28001600" +County and PUMA "G2800650, G28001700" +County and PUMA "G2800670, G28001700" +County and PUMA "G2800690, G28001400" +County and PUMA "G2800710, G28000400" +County and PUMA "G2800730, G28001800" +County and PUMA "G2800750, G28001500" +County and PUMA "G2800770, G28001600" +County and PUMA "G2800790, G28001400" +County and PUMA "G2800810, G28000500" +County and PUMA "G2800830, G28000700" +County and PUMA "G2800850, G28001600" +County and PUMA "G2800870, G28000600" +County and PUMA "G2800890, G28000900" +County and PUMA "G2800890, G28001000" +County and PUMA "G2800910, G28001800" +County and PUMA "G2800930, G28000200" +County and PUMA "G2800950, G28000400" +County and PUMA "G2800970, G28000700" +County and PUMA "G2800990, G28001400" +County and PUMA "G2801010, G28001500" +County and PUMA "G2801030, G28000600" +County and PUMA "G2801050, G28000600" +County and PUMA "G2801070, G28000300" +County and PUMA "G2801090, G28001900" +County and PUMA "G2801110, G28001800" +County and PUMA "G2801130, G28001600" +County and PUMA "G2801150, G28000500" +County and PUMA "G2801170, G28000200" +County and PUMA "G2801190, G28000300" +County and PUMA "G2801210, G28001300" +County and PUMA "G2801230, G28001400" +County and PUMA "G2801250, G28000800" +County and PUMA "G2801270, G28001300" +County and PUMA "G2801290, G28001400" +County and PUMA "G2801310, G28001900" +County and PUMA "G2801330, G28000800" +County and PUMA "G2801350, G28000300" +County and PUMA "G2801370, G28000300" +County and PUMA "G2801390, G28000200" +County and PUMA "G2801410, G28000200" +County and PUMA "G2801430, G28000300" +County and PUMA "G2801450, G28000500" +County and PUMA "G2801470, G28001600" +County and PUMA "G2801490, G28001200" +County and PUMA "G2801510, G28000800" +County and PUMA "G2801530, G28001700" +County and PUMA "G2801550, G28000600" +County and PUMA "G2801570, G28001600" +County and PUMA "G2801590, G28000600" +County and PUMA "G2801610, G28000700" +County and PUMA "G2801630, G28000900" +County and PUMA "G2900010, G29000300" +County and PUMA "G2900030, G29000200" +County and PUMA "G2900050, G29000100" +County and PUMA "G2900070, G29000400" +County and PUMA "G2900090, G29002700" +County and PUMA "G2900110, G29001200" +County and PUMA "G2900130, G29001100" +County and PUMA "G2900150, G29001300" +County and PUMA "G2900170, G29002200" +County and PUMA "G2900190, G29000600" +County and PUMA "G2900210, G29000200" +County and PUMA "G2900230, G29002400" +County and PUMA "G2900250, G29000800" +County and PUMA "G2900270, G29000500" +County and PUMA "G2900290, G29001400" +County and PUMA "G2900310, G29002200" +County and PUMA "G2900330, G29000700" +County and PUMA "G2900350, G29002400" +County and PUMA "G2900370, G29001100" +County and PUMA "G2900390, G29001200" +County and PUMA "G2900410, G29000700" +County and PUMA "G2900430, G29002601" +County and PUMA "G2900450, G29000300" +County and PUMA "G2900470, G29000901" +County and PUMA "G2900470, G29000902" +County and PUMA "G2900470, G29000903" +County and PUMA "G2900490, G29000800" +County and PUMA "G2900510, G29000500" +County and PUMA "G2900530, G29000700" +County and PUMA "G2900550, G29001500" +County and PUMA "G2900570, G29001200" +County and PUMA "G2900590, G29001300" +County and PUMA "G2900610, G29000100" +County and PUMA "G2900630, G29000200" +County and PUMA "G2900650, G29001500" +County and PUMA "G2900670, G29002500" +County and PUMA "G2900690, G29002300" +County and PUMA "G2900710, G29001600" +County and PUMA "G2900730, G29001500" +County and PUMA "G2900750, G29000100" +County and PUMA "G2900770, G29002601" +County and PUMA "G2900770, G29002602" +County and PUMA "G2900770, G29002603" +County and PUMA "G2900790, G29000100" +County and PUMA "G2900810, G29000100" +County and PUMA "G2900830, G29001200" +County and PUMA "G2900850, G29001300" +County and PUMA "G2900870, G29000100" +County and PUMA "G2900890, G29000700" +County and PUMA "G2900910, G29002500" +County and PUMA "G2900930, G29002400" +County and PUMA "G2900950, G29001001" +County and PUMA "G2900950, G29001002" +County and PUMA "G2900950, G29001003" +County and PUMA "G2900950, G29001004" +County and PUMA "G2900950, G29001005" +County and PUMA "G2900970, G29002800" +County and PUMA "G2900990, G29002001" +County and PUMA "G2900990, G29002002" +County and PUMA "G2901010, G29000800" +County and PUMA "G2901030, G29000300" +County and PUMA "G2901050, G29001300" +County and PUMA "G2901070, G29000800" +County and PUMA "G2901090, G29001200" +County and PUMA "G2901110, G29000300" +County and PUMA "G2901130, G29000400" +County and PUMA "G2901150, G29000100" +County and PUMA "G2901170, G29000100" +County and PUMA "G2901190, G29002700" +County and PUMA "G2901210, G29000300" +County and PUMA "G2901230, G29002400" +County and PUMA "G2901250, G29001500" +County and PUMA "G2901270, G29000300" +County and PUMA "G2901290, G29000100" +County and PUMA "G2901310, G29001400" +County and PUMA "G2901330, G29002300" +County and PUMA "G2901350, G29000500" +County and PUMA "G2901370, G29000300" +County and PUMA "G2901390, G29000400" +County and PUMA "G2901410, G29001400" +County and PUMA "G2901430, G29002300" +County and PUMA "G2901450, G29002800" +County and PUMA "G2901470, G29000100" +County and PUMA "G2901490, G29002500" +County and PUMA "G2901510, G29000500" +County and PUMA "G2901530, G29002500" +County and PUMA "G2901550, G29002300" +County and PUMA "G2901570, G29002100" +County and PUMA "G2901590, G29000700" +County and PUMA "G2901610, G29001500" +County and PUMA "G2901630, G29000400" +County and PUMA "G2901650, G29000903" +County and PUMA "G2901670, G29001300" +County and PUMA "G2901690, G29001400" +County and PUMA "G2901710, G29000100" +County and PUMA "G2901730, G29000300" +County and PUMA "G2901750, G29000700" +County and PUMA "G2901770, G29000800" +County and PUMA "G2901790, G29002400" +County and PUMA "G2901810, G29002400" +County and PUMA "G2901830, G29001701" +County and PUMA "G2901830, G29001702" +County and PUMA "G2901830, G29001703" +County and PUMA "G2901850, G29001200" +County and PUMA "G2901860, G29002100" +County and PUMA "G2901870, G29002100" +County and PUMA "G2901890, G29001801" +County and PUMA "G2901890, G29001802" +County and PUMA "G2901890, G29001803" +County and PUMA "G2901890, G29001804" +County and PUMA "G2901890, G29001805" +County and PUMA "G2901890, G29001806" +County and PUMA "G2901890, G29001807" +County and PUMA "G2901890, G29001808" +County and PUMA "G2901950, G29000700" +County and PUMA "G2901970, G29000300" +County and PUMA "G2901990, G29000300" +County and PUMA "G2902010, G29002200" +County and PUMA "G2902030, G29002500" +County and PUMA "G2902050, G29000300" +County and PUMA "G2902070, G29002300" +County and PUMA "G2902090, G29002700" +County and PUMA "G2902110, G29000100" +County and PUMA "G2902130, G29002700" +County and PUMA "G2902150, G29002500" +County and PUMA "G2902170, G29001200" +County and PUMA "G2902190, G29000400" +County and PUMA "G2902210, G29002100" +County and PUMA "G2902230, G29002400" +County and PUMA "G2902250, G29002601" +County and PUMA "G2902270, G29000100" +County and PUMA "G2902290, G29002500" +County and PUMA "G2905100, G29001901" +County and PUMA "G2905100, G29001902" +County and PUMA "G3000010, G30000300" +County and PUMA "G3000030, G30000600" +County and PUMA "G3000050, G30000400" +County and PUMA "G3000070, G30000300" +County and PUMA "G3000090, G30000500" +County and PUMA "G3000110, G30000600" +County and PUMA "G3000130, G30000400" +County and PUMA "G3000150, G30000400" +County and PUMA "G3000170, G30000600" +County and PUMA "G3000190, G30000600" +County and PUMA "G3000210, G30000600" +County and PUMA "G3000230, G30000300" +County and PUMA "G3000250, G30000600" +County and PUMA "G3000270, G30000400" +County and PUMA "G3000290, G30000100" +County and PUMA "G3000310, G30000500" +County and PUMA "G3000330, G30000600" +County and PUMA "G3000350, G30000100" +County and PUMA "G3000370, G30000600" +County and PUMA "G3000390, G30000300" +County and PUMA "G3000410, G30000400" +County and PUMA "G3000430, G30000300" +County and PUMA "G3000450, G30000400" +County and PUMA "G3000470, G30000200" +County and PUMA "G3000490, G30000300" +County and PUMA "G3000510, G30000400" +County and PUMA "G3000530, G30000100" +County and PUMA "G3000550, G30000600" +County and PUMA "G3000570, G30000300" +County and PUMA "G3000590, G30000400" +County and PUMA "G3000610, G30000200" +County and PUMA "G3000630, G30000200" +County and PUMA "G3000650, G30000600" +County and PUMA "G3000670, G30000500" +County and PUMA "G3000690, G30000400" +County and PUMA "G3000710, G30000600" +County and PUMA "G3000730, G30000400" +County and PUMA "G3000750, G30000600" +County and PUMA "G3000770, G30000300" +County and PUMA "G3000790, G30000600" +County and PUMA "G3000810, G30000200" +County and PUMA "G3000830, G30000600" +County and PUMA "G3000850, G30000600" +County and PUMA "G3000870, G30000600" +County and PUMA "G3000890, G30000200" +County and PUMA "G3000910, G30000600" +County and PUMA "G3000930, G30000300" +County and PUMA "G3000950, G30000500" +County and PUMA "G3000970, G30000500" +County and PUMA "G3000990, G30000400" +County and PUMA "G3001010, G30000400" +County and PUMA "G3001030, G30000600" +County and PUMA "G3001050, G30000600" +County and PUMA "G3001070, G30000400" +County and PUMA "G3001090, G30000600" +County and PUMA "G3001110, G30000600" +County and PUMA "G3001110, G30000700" +County and PUMA "G3100010, G31000500" +County and PUMA "G3100030, G31000200" +County and PUMA "G3100050, G31000400" +County and PUMA "G3100070, G31000100" +County and PUMA "G3100090, G31000300" +County and PUMA "G3100110, G31000200" +County and PUMA "G3100130, G31000100" +County and PUMA "G3100150, G31000100" +County and PUMA "G3100170, G31000100" +County and PUMA "G3100190, G31000500" +County and PUMA "G3100210, G31000200" +County and PUMA "G3100230, G31000600" +County and PUMA "G3100250, G31000701" +County and PUMA "G3100270, G31000200" +County and PUMA "G3100290, G31000400" +County and PUMA "G3100310, G31000100" +County and PUMA "G3100330, G31000100" +County and PUMA "G3100350, G31000500" +County and PUMA "G3100370, G31000200" +County and PUMA "G3100390, G31000200" +County and PUMA "G3100410, G31000300" +County and PUMA "G3100430, G31000200" +County and PUMA "G3100450, G31000100" +County and PUMA "G3100470, G31000400" +County and PUMA "G3100490, G31000100" +County and PUMA "G3100510, G31000200" +County and PUMA "G3100530, G31000701" +County and PUMA "G3100550, G31000901" +County and PUMA "G3100550, G31000902" +County and PUMA "G3100550, G31000903" +County and PUMA "G3100550, G31000904" +County and PUMA "G3100570, G31000400" +County and PUMA "G3100590, G31000600" +County and PUMA "G3100610, G31000500" +County and PUMA "G3100630, G31000400" +County and PUMA "G3100650, G31000400" +County and PUMA "G3100670, G31000600" +County and PUMA "G3100690, G31000100" +County and PUMA "G3100710, G31000300" +County and PUMA "G3100730, G31000400" +County and PUMA "G3100750, G31000400" +County and PUMA "G3100770, G31000300" +County and PUMA "G3100790, G31000300" +County and PUMA "G3100810, G31000300" +County and PUMA "G3100830, G31000500" +County and PUMA "G3100850, G31000400" +County and PUMA "G3100870, G31000400" +County and PUMA "G3100890, G31000100" +County and PUMA "G3100910, G31000400" +County and PUMA "G3100930, G31000300" +County and PUMA "G3100950, G31000600" +County and PUMA "G3100970, G31000600" +County and PUMA "G3100990, G31000500" +County and PUMA "G3101010, G31000400" +County and PUMA "G3101030, G31000100" +County and PUMA "G3101050, G31000100" +County and PUMA "G3101070, G31000200" +County and PUMA "G3101090, G31000801" +County and PUMA "G3101090, G31000802" +County and PUMA "G3101110, G31000400" +County and PUMA "G3101130, G31000400" +County and PUMA "G3101150, G31000300" +County and PUMA "G3101170, G31000400" +County and PUMA "G3101190, G31000200" +County and PUMA "G3101210, G31000300" +County and PUMA "G3101230, G31000100" +County and PUMA "G3101250, G31000200" +County and PUMA "G3101270, G31000600" +County and PUMA "G3101290, G31000500" +County and PUMA "G3101310, G31000600" +County and PUMA "G3101330, G31000600" +County and PUMA "G3101350, G31000400" +County and PUMA "G3101370, G31000500" +County and PUMA "G3101390, G31000200" +County and PUMA "G3101410, G31000200" +County and PUMA "G3101430, G31000600" +County and PUMA "G3101450, G31000400" +County and PUMA "G3101470, G31000600" +County and PUMA "G3101490, G31000100" +County and PUMA "G3101510, G31000600" +County and PUMA "G3101530, G31000702" +County and PUMA "G3101550, G31000701" +County and PUMA "G3101570, G31000100" +County and PUMA "G3101590, G31000600" +County and PUMA "G3101610, G31000100" +County and PUMA "G3101630, G31000300" +County and PUMA "G3101650, G31000100" +County and PUMA "G3101670, G31000200" +County and PUMA "G3101690, G31000600" +County and PUMA "G3101710, G31000400" +County and PUMA "G3101730, G31000200" +County and PUMA "G3101750, G31000300" +County and PUMA "G3101770, G31000701" +County and PUMA "G3101790, G31000200" +County and PUMA "G3101810, G31000500" +County and PUMA "G3101830, G31000300" +County and PUMA "G3101850, G31000600" +County and PUMA "G3200010, G32000300" +County and PUMA "G3200030, G32000401" +County and PUMA "G3200030, G32000402" +County and PUMA "G3200030, G32000403" +County and PUMA "G3200030, G32000404" +County and PUMA "G3200030, G32000405" +County and PUMA "G3200030, G32000406" +County and PUMA "G3200030, G32000407" +County and PUMA "G3200030, G32000408" +County and PUMA "G3200030, G32000409" +County and PUMA "G3200030, G32000410" +County and PUMA "G3200030, G32000411" +County and PUMA "G3200030, G32000412" +County and PUMA "G3200030, G32000413" +County and PUMA "G3200050, G32000200" +County and PUMA "G3200070, G32000300" +County and PUMA "G3200090, G32000300" +County and PUMA "G3200110, G32000300" +County and PUMA "G3200130, G32000300" +County and PUMA "G3200150, G32000300" +County and PUMA "G3200170, G32000300" +County and PUMA "G3200190, G32000200" +County and PUMA "G3200210, G32000300" +County and PUMA "G3200230, G32000300" +County and PUMA "G3200270, G32000300" +County and PUMA "G3200290, G32000200" +County and PUMA "G3200310, G32000101" +County and PUMA "G3200310, G32000102" +County and PUMA "G3200310, G32000103" +County and PUMA "G3200330, G32000300" +County and PUMA "G3205100, G32000200" +County and PUMA "G3300010, G33000200" +County and PUMA "G3300030, G33000200" +County and PUMA "G3300030, G33000300" +County and PUMA "G3300050, G33000500" +County and PUMA "G3300070, G33000100" +County and PUMA "G3300090, G33000100" +County and PUMA "G3300110, G33000600" +County and PUMA "G3300110, G33000700" +County and PUMA "G3300110, G33000800" +County and PUMA "G3300110, G33000900" +County and PUMA "G3300130, G33000200" +County and PUMA "G3300130, G33000400" +County and PUMA "G3300130, G33000700" +County and PUMA "G3300150, G33000300" +County and PUMA "G3300150, G33000700" +County and PUMA "G3300150, G33001000" +County and PUMA "G3300170, G33000300" +County and PUMA "G3300190, G33000500" +County and PUMA "G3400010, G34000101" +County and PUMA "G3400010, G34000102" +County and PUMA "G3400010, G34002600" +County and PUMA "G3400030, G34000301" +County and PUMA "G3400030, G34000302" +County and PUMA "G3400030, G34000303" +County and PUMA "G3400030, G34000304" +County and PUMA "G3400030, G34000305" +County and PUMA "G3400030, G34000306" +County and PUMA "G3400030, G34000307" +County and PUMA "G3400030, G34000308" +County and PUMA "G3400050, G34002001" +County and PUMA "G3400050, G34002002" +County and PUMA "G3400050, G34002003" +County and PUMA "G3400070, G34002101" +County and PUMA "G3400070, G34002102" +County and PUMA "G3400070, G34002103" +County and PUMA "G3400070, G34002104" +County and PUMA "G3400090, G34002600" +County and PUMA "G3400110, G34002400" +County and PUMA "G3400110, G34002500" +County and PUMA "G3400130, G34001301" +County and PUMA "G3400130, G34001302" +County and PUMA "G3400130, G34001401" +County and PUMA "G3400130, G34001402" +County and PUMA "G3400130, G34001403" +County and PUMA "G3400130, G34001404" +County and PUMA "G3400150, G34002201" +County and PUMA "G3400150, G34002202" +County and PUMA "G3400170, G34000601" +County and PUMA "G3400170, G34000602" +County and PUMA "G3400170, G34000701" +County and PUMA "G3400170, G34000702" +County and PUMA "G3400170, G34000703" +County and PUMA "G3400190, G34000800" +County and PUMA "G3400210, G34002301" +County and PUMA "G3400210, G34002302" +County and PUMA "G3400210, G34002303" +County and PUMA "G3400230, G34000901" +County and PUMA "G3400230, G34000902" +County and PUMA "G3400230, G34000903" +County and PUMA "G3400230, G34000904" +County and PUMA "G3400230, G34000905" +County and PUMA "G3400230, G34000906" +County and PUMA "G3400230, G34000907" +County and PUMA "G3400250, G34001101" +County and PUMA "G3400250, G34001102" +County and PUMA "G3400250, G34001103" +County and PUMA "G3400250, G34001104" +County and PUMA "G3400250, G34001105" +County and PUMA "G3400250, G34001106" +County and PUMA "G3400270, G34001501" +County and PUMA "G3400270, G34001502" +County and PUMA "G3400270, G34001503" +County and PUMA "G3400270, G34001504" +County and PUMA "G3400290, G34001201" +County and PUMA "G3400290, G34001202" +County and PUMA "G3400290, G34001203" +County and PUMA "G3400290, G34001204" +County and PUMA "G3400290, G34001205" +County and PUMA "G3400310, G34000400" +County and PUMA "G3400310, G34000501" +County and PUMA "G3400310, G34000502" +County and PUMA "G3400310, G34000503" +County and PUMA "G3400330, G34002500" +County and PUMA "G3400350, G34001001" +County and PUMA "G3400350, G34001002" +County and PUMA "G3400350, G34001003" +County and PUMA "G3400370, G34001600" +County and PUMA "G3400390, G34001800" +County and PUMA "G3400390, G34001901" +County and PUMA "G3400390, G34001902" +County and PUMA "G3400390, G34001903" +County and PUMA "G3400390, G34001904" +County and PUMA "G3400410, G34001700" +County and PUMA "G3500010, G35000700" +County and PUMA "G3500010, G35000801" +County and PUMA "G3500010, G35000802" +County and PUMA "G3500010, G35000803" +County and PUMA "G3500010, G35000804" +County and PUMA "G3500010, G35000805" +County and PUMA "G3500010, G35000806" +County and PUMA "G3500030, G35000900" +County and PUMA "G3500050, G35001100" +County and PUMA "G3500060, G35000100" +County and PUMA "G3500070, G35000400" +County and PUMA "G3500090, G35000400" +County and PUMA "G3500110, G35000400" +County and PUMA "G3500130, G35001001" +County and PUMA "G3500130, G35001002" +County and PUMA "G3500150, G35001200" +County and PUMA "G3500170, G35000900" +County and PUMA "G3500190, G35000400" +County and PUMA "G3500210, G35000400" +County and PUMA "G3500230, G35000900" +County and PUMA "G3500250, G35001200" +County and PUMA "G3500270, G35001100" +County and PUMA "G3500280, G35000300" +County and PUMA "G3500290, G35000900" +County and PUMA "G3500310, G35000100" +County and PUMA "G3500330, G35000300" +County and PUMA "G3500350, G35001100" +County and PUMA "G3500370, G35000400" +County and PUMA "G3500390, G35000300" +County and PUMA "G3500410, G35000400" +County and PUMA "G3500430, G35000600" +County and PUMA "G3500450, G35000100" +County and PUMA "G3500450, G35000200" +County and PUMA "G3500470, G35000300" +County and PUMA "G3500490, G35000500" +County and PUMA "G3500510, G35000900" +County and PUMA "G3500530, G35000900" +County and PUMA "G3500550, G35000300" +County and PUMA "G3500570, G35000900" +County and PUMA "G3500590, G35000400" +County and PUMA "G3500610, G35000700" +County and PUMA "G3600010, G36002001" +County and PUMA "G3600010, G36002002" +County and PUMA "G3600030, G36002500" +County and PUMA "G3600050, G36003701" +County and PUMA "G3600050, G36003702" +County and PUMA "G3600050, G36003703" +County and PUMA "G3600050, G36003704" +County and PUMA "G3600050, G36003705" +County and PUMA "G3600050, G36003706" +County and PUMA "G3600050, G36003707" +County and PUMA "G3600050, G36003708" +County and PUMA "G3600050, G36003709" +County and PUMA "G3600050, G36003710" +County and PUMA "G3600070, G36002201" +County and PUMA "G3600070, G36002202" +County and PUMA "G3600070, G36002203" +County and PUMA "G3600090, G36002500" +County and PUMA "G3600110, G36000704" +County and PUMA "G3600130, G36002600" +County and PUMA "G3600150, G36002401" +County and PUMA "G3600150, G36002402" +County and PUMA "G3600170, G36002203" +County and PUMA "G3600190, G36000200" +County and PUMA "G3600210, G36002100" +County and PUMA "G3600230, G36001500" +County and PUMA "G3600250, G36002203" +County and PUMA "G3600270, G36002801" +County and PUMA "G3600270, G36002802" +County and PUMA "G3600290, G36001201" +County and PUMA "G3600290, G36001202" +County and PUMA "G3600290, G36001203" +County and PUMA "G3600290, G36001204" +County and PUMA "G3600290, G36001205" +County and PUMA "G3600290, G36001206" +County and PUMA "G3600290, G36001207" +County and PUMA "G3600310, G36000200" +County and PUMA "G3600330, G36000200" +County and PUMA "G3600350, G36001600" +County and PUMA "G3600370, G36001000" +County and PUMA "G3600390, G36002100" +County and PUMA "G3600410, G36000200" +County and PUMA "G3600430, G36000401" +County and PUMA "G3600430, G36000403" +County and PUMA "G3600450, G36000500" +County and PUMA "G3600470, G36004001" +County and PUMA "G3600470, G36004002" +County and PUMA "G3600470, G36004003" +County and PUMA "G3600470, G36004004" +County and PUMA "G3600470, G36004005" +County and PUMA "G3600470, G36004006" +County and PUMA "G3600470, G36004007" +County and PUMA "G3600470, G36004008" +County and PUMA "G3600470, G36004009" +County and PUMA "G3600470, G36004010" +County and PUMA "G3600470, G36004011" +County and PUMA "G3600470, G36004012" +County and PUMA "G3600470, G36004013" +County and PUMA "G3600470, G36004014" +County and PUMA "G3600470, G36004015" +County and PUMA "G3600470, G36004016" +County and PUMA "G3600470, G36004017" +County and PUMA "G3600470, G36004018" +County and PUMA "G3600490, G36000500" +County and PUMA "G3600510, G36001300" +County and PUMA "G3600530, G36001500" +County and PUMA "G3600550, G36000901" +County and PUMA "G3600550, G36000902" +County and PUMA "G3600550, G36000903" +County and PUMA "G3600550, G36000904" +County and PUMA "G3600550, G36000905" +County and PUMA "G3600550, G36000906" +County and PUMA "G3600570, G36001600" +County and PUMA "G3600590, G36003201" +County and PUMA "G3600590, G36003202" +County and PUMA "G3600590, G36003203" +County and PUMA "G3600590, G36003204" +County and PUMA "G3600590, G36003205" +County and PUMA "G3600590, G36003206" +County and PUMA "G3600590, G36003207" +County and PUMA "G3600590, G36003208" +County and PUMA "G3600590, G36003209" +County and PUMA "G3600590, G36003210" +County and PUMA "G3600590, G36003211" +County and PUMA "G3600590, G36003212" +County and PUMA "G3600610, G36003801" +County and PUMA "G3600610, G36003802" +County and PUMA "G3600610, G36003803" +County and PUMA "G3600610, G36003804" +County and PUMA "G3600610, G36003805" +County and PUMA "G3600610, G36003806" +County and PUMA "G3600610, G36003807" +County and PUMA "G3600610, G36003808" +County and PUMA "G3600610, G36003809" +County and PUMA "G3600610, G36003810" +County and PUMA "G3600630, G36001101" +County and PUMA "G3600630, G36001102" +County and PUMA "G3600650, G36000401" +County and PUMA "G3600650, G36000402" +County and PUMA "G3600650, G36000403" +County and PUMA "G3600670, G36000701" +County and PUMA "G3600670, G36000702" +County and PUMA "G3600670, G36000703" +County and PUMA "G3600670, G36000704" +County and PUMA "G3600690, G36001400" +County and PUMA "G3600710, G36002901" +County and PUMA "G3600710, G36002902" +County and PUMA "G3600710, G36002903" +County and PUMA "G3600730, G36001000" +County and PUMA "G3600750, G36000600" +County and PUMA "G3600770, G36000403" +County and PUMA "G3600790, G36003101" +County and PUMA "G3600810, G36004101" +County and PUMA "G3600810, G36004102" +County and PUMA "G3600810, G36004103" +County and PUMA "G3600810, G36004104" +County and PUMA "G3600810, G36004105" +County and PUMA "G3600810, G36004106" +County and PUMA "G3600810, G36004107" +County and PUMA "G3600810, G36004108" +County and PUMA "G3600810, G36004109" +County and PUMA "G3600810, G36004110" +County and PUMA "G3600810, G36004111" +County and PUMA "G3600810, G36004112" +County and PUMA "G3600810, G36004113" +County and PUMA "G3600810, G36004114" +County and PUMA "G3600830, G36001900" +County and PUMA "G3600850, G36003901" +County and PUMA "G3600850, G36003902" +County and PUMA "G3600850, G36003903" +County and PUMA "G3600870, G36003001" +County and PUMA "G3600870, G36003002" +County and PUMA "G3600870, G36003003" +County and PUMA "G3600890, G36000100" +County and PUMA "G3600910, G36001801" +County and PUMA "G3600910, G36001802" +County and PUMA "G3600930, G36001700" +County and PUMA "G3600950, G36000403" +County and PUMA "G3600970, G36002402" +County and PUMA "G3600990, G36000800" +County and PUMA "G3601010, G36002401" +County and PUMA "G3601010, G36002402" +County and PUMA "G3601030, G36003301" +County and PUMA "G3601030, G36003302" +County and PUMA "G3601030, G36003303" +County and PUMA "G3601030, G36003304" +County and PUMA "G3601030, G36003305" +County and PUMA "G3601030, G36003306" +County and PUMA "G3601030, G36003307" +County and PUMA "G3601030, G36003308" +County and PUMA "G3601030, G36003309" +County and PUMA "G3601030, G36003310" +County and PUMA "G3601030, G36003311" +County and PUMA "G3601030, G36003312" +County and PUMA "G3601030, G36003313" +County and PUMA "G3601050, G36002701" +County and PUMA "G3601070, G36002202" +County and PUMA "G3601090, G36002300" +County and PUMA "G3601110, G36002701" +County and PUMA "G3601110, G36002702" +County and PUMA "G3601130, G36000300" +County and PUMA "G3601150, G36000300" +County and PUMA "G3601170, G36000800" +County and PUMA "G3601190, G36003101" +County and PUMA "G3601190, G36003102" +County and PUMA "G3601190, G36003103" +County and PUMA "G3601190, G36003104" +County and PUMA "G3601190, G36003105" +County and PUMA "G3601190, G36003106" +County and PUMA "G3601190, G36003107" +County and PUMA "G3601210, G36001300" +County and PUMA "G3601230, G36001400" +County and PUMA "G3700010, G37001600" +County and PUMA "G3700030, G37002000" +County and PUMA "G3700050, G37000200" +County and PUMA "G3700070, G37005300" +County and PUMA "G3700090, G37000100" +County and PUMA "G3700110, G37000100" +County and PUMA "G3700130, G37004400" +County and PUMA "G3700150, G37000800" +County and PUMA "G3700170, G37004900" +County and PUMA "G3700190, G37004800" +County and PUMA "G3700210, G37002201" +County and PUMA "G3700210, G37002202" +County and PUMA "G3700230, G37002100" +County and PUMA "G3700250, G37003200" +County and PUMA "G3700250, G37003300" +County and PUMA "G3700270, G37002000" +County and PUMA "G3700290, G37000700" +County and PUMA "G3700310, G37004400" +County and PUMA "G3700330, G37000400" +County and PUMA "G3700350, G37002800" +County and PUMA "G3700370, G37001500" +County and PUMA "G3700390, G37002400" +County and PUMA "G3700410, G37000700" +County and PUMA "G3700430, G37002400" +County and PUMA "G3700450, G37002600" +County and PUMA "G3700450, G37002700" +County and PUMA "G3700470, G37004900" +County and PUMA "G3700490, G37004300" +County and PUMA "G3700510, G37005001" +County and PUMA "G3700510, G37005002" +County and PUMA "G3700510, G37005003" +County and PUMA "G3700530, G37000700" +County and PUMA "G3700550, G37000800" +County and PUMA "G3700570, G37003500" +County and PUMA "G3700590, G37001900" +County and PUMA "G3700610, G37003900" +County and PUMA "G3700630, G37001301" +County and PUMA "G3700630, G37001302" +County and PUMA "G3700650, G37000900" +County and PUMA "G3700670, G37001801" +County and PUMA "G3700670, G37001802" +County and PUMA "G3700670, G37001803" +County and PUMA "G3700690, G37000500" +County and PUMA "G3700710, G37003001" +County and PUMA "G3700710, G37003002" +County and PUMA "G3700730, G37000700" +County and PUMA "G3700750, G37002300" +County and PUMA "G3700770, G37000400" +County and PUMA "G3700790, G37001000" +County and PUMA "G3700810, G37001701" +County and PUMA "G3700810, G37001702" +County and PUMA "G3700810, G37001703" +County and PUMA "G3700810, G37001704" +County and PUMA "G3700830, G37000600" +County and PUMA "G3700850, G37003800" +County and PUMA "G3700870, G37002300" +County and PUMA "G3700890, G37002500" +County and PUMA "G3700910, G37000600" +County and PUMA "G3700930, G37005200" +County and PUMA "G3700950, G37000800" +County and PUMA "G3700970, G37001900" +County and PUMA "G3700970, G37002900" +County and PUMA "G3700990, G37002300" +County and PUMA "G3700990, G37002400" +County and PUMA "G3701010, G37001100" +County and PUMA "G3701030, G37004100" +County and PUMA "G3701050, G37001500" +County and PUMA "G3701070, G37004100" +County and PUMA "G3701090, G37002700" +County and PUMA "G3701110, G37002100" +County and PUMA "G3701130, G37002400" +County and PUMA "G3701150, G37002300" +County and PUMA "G3701170, G37000800" +County and PUMA "G3701190, G37003101" +County and PUMA "G3701190, G37003102" +County and PUMA "G3701190, G37003103" +County and PUMA "G3701190, G37003104" +County and PUMA "G3701190, G37003105" +County and PUMA "G3701190, G37003106" +County and PUMA "G3701190, G37003107" +County and PUMA "G3701190, G37003108" +County and PUMA "G3701210, G37000100" +County and PUMA "G3701230, G37003700" +County and PUMA "G3701250, G37003700" +County and PUMA "G3701270, G37000900" +County and PUMA "G3701290, G37004600" +County and PUMA "G3701290, G37004700" +County and PUMA "G3701310, G37000600" +County and PUMA "G3701330, G37004100" +County and PUMA "G3701330, G37004500" +County and PUMA "G3701350, G37001400" +County and PUMA "G3701370, G37004400" +County and PUMA "G3701390, G37000700" +County and PUMA "G3701410, G37004600" +County and PUMA "G3701430, G37000700" +County and PUMA "G3701450, G37000400" +County and PUMA "G3701470, G37004200" +County and PUMA "G3701490, G37002600" +County and PUMA "G3701510, G37003600" +County and PUMA "G3701530, G37005200" +County and PUMA "G3701550, G37004900" +County and PUMA "G3701550, G37005100" +County and PUMA "G3701570, G37000300" +County and PUMA "G3701590, G37003400" +County and PUMA "G3701610, G37002600" +County and PUMA "G3701630, G37003900" +County and PUMA "G3701650, G37005200" +County and PUMA "G3701670, G37003300" +County and PUMA "G3701690, G37000300" +County and PUMA "G3701710, G37000200" +County and PUMA "G3701730, G37002300" +County and PUMA "G3701750, G37002500" +County and PUMA "G3701770, G37000800" +County and PUMA "G3701790, G37005300" +County and PUMA "G3701790, G37005400" +County and PUMA "G3701810, G37000500" +County and PUMA "G3701830, G37001201" +County and PUMA "G3701830, G37001202" +County and PUMA "G3701830, G37001203" +County and PUMA "G3701830, G37001204" +County and PUMA "G3701830, G37001205" +County and PUMA "G3701830, G37001206" +County and PUMA "G3701830, G37001207" +County and PUMA "G3701830, G37001208" +County and PUMA "G3701850, G37000500" +County and PUMA "G3701850, G37000600" +County and PUMA "G3701870, G37000800" +County and PUMA "G3701890, G37000100" +County and PUMA "G3701910, G37004000" +County and PUMA "G3701930, G37000200" +County and PUMA "G3701950, G37001000" +County and PUMA "G3701970, G37001900" +County and PUMA "G3701990, G37000100" +County and PUMA "G3800010, G38000100" +County and PUMA "G3800030, G38000200" +County and PUMA "G3800050, G38000200" +County and PUMA "G3800070, G38000100" +County and PUMA "G3800090, G38000200" +County and PUMA "G3800110, G38000100" +County and PUMA "G3800130, G38000100" +County and PUMA "G3800150, G38000300" +County and PUMA "G3800170, G38000500" +County and PUMA "G3800190, G38000400" +County and PUMA "G3800210, G38000200" +County and PUMA "G3800230, G38000100" +County and PUMA "G3800250, G38000100" +County and PUMA "G3800270, G38000200" +County and PUMA "G3800290, G38000300" +County and PUMA "G3800310, G38000200" +County and PUMA "G3800330, G38000100" +County and PUMA "G3800350, G38000400" +County and PUMA "G3800370, G38000100" +County and PUMA "G3800390, G38000400" +County and PUMA "G3800410, G38000100" +County and PUMA "G3800430, G38000300" +County and PUMA "G3800450, G38000200" +County and PUMA "G3800470, G38000300" +County and PUMA "G3800490, G38000100" +County and PUMA "G3800510, G38000300" +County and PUMA "G3800530, G38000100" +County and PUMA "G3800550, G38000100" +County and PUMA "G3800570, G38000100" +County and PUMA "G3800590, G38000300" +County and PUMA "G3800610, G38000100" +County and PUMA "G3800630, G38000200" +County and PUMA "G3800650, G38000100" +County and PUMA "G3800670, G38000400" +County and PUMA "G3800690, G38000200" +County and PUMA "G3800710, G38000200" +County and PUMA "G3800730, G38000200" +County and PUMA "G3800750, G38000100" +County and PUMA "G3800770, G38000200" +County and PUMA "G3800790, G38000200" +County and PUMA "G3800810, G38000200" +County and PUMA "G3800830, G38000200" +County and PUMA "G3800850, G38000100" +County and PUMA "G3800870, G38000100" +County and PUMA "G3800890, G38000100" +County and PUMA "G3800910, G38000400" +County and PUMA "G3800930, G38000200" +County and PUMA "G3800950, G38000400" +County and PUMA "G3800970, G38000400" +County and PUMA "G3800990, G38000400" +County and PUMA "G3801010, G38000100" +County and PUMA "G3801030, G38000200" +County and PUMA "G3801050, G38000100" +County and PUMA "G3900010, G39005200" +County and PUMA "G3900030, G39002500" +County and PUMA "G3900050, G39002100" +County and PUMA "G3900070, G39001300" +County and PUMA "G3900090, G39005000" +County and PUMA "G3900110, G39002600" +County and PUMA "G3900130, G39003500" +County and PUMA "G3900150, G39005700" +County and PUMA "G3900170, G39005401" +County and PUMA "G3900170, G39005402" +County and PUMA "G3900170, G39005403" +County and PUMA "G3900190, G39003300" +County and PUMA "G3900210, G39002700" +County and PUMA "G3900230, G39004300" +County and PUMA "G3900250, G39005600" +County and PUMA "G3900250, G39005700" +County and PUMA "G3900270, G39005200" +County and PUMA "G3900290, G39003400" +County and PUMA "G3900310, G39002900" +County and PUMA "G3900330, G39002300" +County and PUMA "G3900350, G39000901" +County and PUMA "G3900350, G39000902" +County and PUMA "G3900350, G39000903" +County and PUMA "G3900350, G39000904" +County and PUMA "G3900350, G39000905" +County and PUMA "G3900350, G39000906" +County and PUMA "G3900350, G39000907" +County and PUMA "G3900350, G39000908" +County and PUMA "G3900350, G39000909" +County and PUMA "G3900350, G39000910" +County and PUMA "G3900370, G39004500" +County and PUMA "G3900390, G39000100" +County and PUMA "G3900410, G39004000" +County and PUMA "G3900430, G39000700" +County and PUMA "G3900450, G39003900" +County and PUMA "G3900470, G39004800" +County and PUMA "G3900490, G39004101" +County and PUMA "G3900490, G39004102" +County and PUMA "G3900490, G39004103" +County and PUMA "G3900490, G39004104" +County and PUMA "G3900490, G39004105" +County and PUMA "G3900490, G39004106" +County and PUMA "G3900490, G39004107" +County and PUMA "G3900490, G39004108" +County and PUMA "G3900490, G39004109" +County and PUMA "G3900490, G39004110" +County and PUMA "G3900490, G39004111" +County and PUMA "G3900510, G39000200" +County and PUMA "G3900530, G39005000" +County and PUMA "G3900550, G39001200" +County and PUMA "G3900570, G39004700" +County and PUMA "G3900590, G39002900" +County and PUMA "G3900610, G39005501" +County and PUMA "G3900610, G39005502" +County and PUMA "G3900610, G39005503" +County and PUMA "G3900610, G39005504" +County and PUMA "G3900610, G39005505" +County and PUMA "G3900610, G39005506" +County and PUMA "G3900610, G39005507" +County and PUMA "G3900630, G39002400" +County and PUMA "G3900650, G39002700" +County and PUMA "G3900670, G39003000" +County and PUMA "G3900690, G39000100" +County and PUMA "G3900710, G39005200" +County and PUMA "G3900730, G39004900" +County and PUMA "G3900750, G39002900" +County and PUMA "G3900770, G39002100" +County and PUMA "G3900790, G39004900" +County and PUMA "G3900810, G39003500" +County and PUMA "G3900830, G39002800" +County and PUMA "G3900850, G39001000" +County and PUMA "G3900850, G39001100" +County and PUMA "G3900850, G39001200" +County and PUMA "G3900870, G39005100" +County and PUMA "G3900890, G39003800" +County and PUMA "G3900910, G39002700" +County and PUMA "G3900930, G39000801" +County and PUMA "G3900930, G39000802" +County and PUMA "G3900950, G39000200" +County and PUMA "G3900950, G39000300" +County and PUMA "G3900950, G39000400" +County and PUMA "G3900950, G39000500" +County and PUMA "G3900950, G39000600" +County and PUMA "G3900970, G39004200" +County and PUMA "G3900990, G39001400" +County and PUMA "G3900990, G39001500" +County and PUMA "G3901010, G39002800" +County and PUMA "G3901030, G39001900" +County and PUMA "G3901050, G39005000" +County and PUMA "G3901070, G39002600" +County and PUMA "G3901090, G39004400" +County and PUMA "G3901110, G39003600" +County and PUMA "G3901130, G39004601" +County and PUMA "G3901130, G39004602" +County and PUMA "G3901130, G39004603" +County and PUMA "G3901130, G39004604" +County and PUMA "G3901150, G39003600" +County and PUMA "G3901170, G39002800" +County and PUMA "G3901190, G39003700" +County and PUMA "G3901210, G39003600" +County and PUMA "G3901230, G39000600" +County and PUMA "G3901250, G39000100" +County and PUMA "G3901270, G39003700" +County and PUMA "G3901290, G39004200" +County and PUMA "G3901310, G39004900" +County and PUMA "G3901330, G39001700" +County and PUMA "G3901350, G39004500" +County and PUMA "G3901370, G39002400" +County and PUMA "G3901390, G39002200" +County and PUMA "G3901410, G39004800" +County and PUMA "G3901430, G39000700" +County and PUMA "G3901450, G39005100" +County and PUMA "G3901470, G39002300" +County and PUMA "G3901490, G39004500" +County and PUMA "G3901510, G39003100" +County and PUMA "G3901510, G39003200" +County and PUMA "G3901510, G39003300" +County and PUMA "G3901530, G39001801" +County and PUMA "G3901530, G39001802" +County and PUMA "G3901530, G39001803" +County and PUMA "G3901530, G39001804" +County and PUMA "G3901530, G39001805" +County and PUMA "G3901550, G39001400" +County and PUMA "G3901550, G39001600" +County and PUMA "G3901570, G39003000" +County and PUMA "G3901590, G39004200" +County and PUMA "G3901610, G39002600" +County and PUMA "G3901630, G39004900" +County and PUMA "G3901650, G39005301" +County and PUMA "G3901650, G39005302" +County and PUMA "G3901670, G39003600" +County and PUMA "G3901690, G39002000" +County and PUMA "G3901710, G39000100" +County and PUMA "G3901730, G39000200" +County and PUMA "G3901730, G39000300" +County and PUMA "G3901730, G39000600" +County and PUMA "G3901750, G39002300" +County and PUMA "G4000010, G40000200" +County and PUMA "G4000030, G40000500" +County and PUMA "G4000050, G40000702" +County and PUMA "G4000070, G40000500" +County and PUMA "G4000090, G40000400" +County and PUMA "G4000110, G40000500" +County and PUMA "G4000130, G40000702" +County and PUMA "G4000150, G40000602" +County and PUMA "G4000170, G40000800" +County and PUMA "G4000190, G40000701" +County and PUMA "G4000210, G40000200" +County and PUMA "G4000230, G40000300" +County and PUMA "G4000250, G40000500" +County and PUMA "G4000270, G40000900" +County and PUMA "G4000290, G40000702" +County and PUMA "G4000310, G40000601" +County and PUMA "G4000310, G40000602" +County and PUMA "G4000330, G40000602" +County and PUMA "G4000350, G40000100" +County and PUMA "G4000370, G40001204" +County and PUMA "G4000370, G40001501" +County and PUMA "G4000370, G40001601" +County and PUMA "G4000390, G40000400" +County and PUMA "G4000410, G40000100" +County and PUMA "G4000430, G40000500" +County and PUMA "G4000450, G40000500" +County and PUMA "G4000470, G40001400" +County and PUMA "G4000490, G40000701" +County and PUMA "G4000510, G40001101" +County and PUMA "G4000530, G40000500" +County and PUMA "G4000550, G40000400" +County and PUMA "G4000570, G40000400" +County and PUMA "G4000590, G40000500" +County and PUMA "G4000610, G40000300" +County and PUMA "G4000630, G40001501" +County and PUMA "G4000650, G40000400" +County and PUMA "G4000670, G40000602" +County and PUMA "G4000690, G40000702" +County and PUMA "G4000710, G40001400" +County and PUMA "G4000730, G40000500" +County and PUMA "G4000750, G40000400" +County and PUMA "G4000770, G40000300" +County and PUMA "G4000790, G40000300" +County and PUMA "G4000810, G40001102" +County and PUMA "G4000830, G40001102" +County and PUMA "G4000850, G40000701" +County and PUMA "G4000870, G40001101" +County and PUMA "G4000890, G40000300" +County and PUMA "G4000910, G40001302" +County and PUMA "G4000930, G40000500" +County and PUMA "G4000950, G40000702" +County and PUMA "G4000970, G40000100" +County and PUMA "G4000990, G40000701" +County and PUMA "G4001010, G40001302" +County and PUMA "G4001030, G40001400" +County and PUMA "G4001050, G40000100" +County and PUMA "G4001070, G40001501" +County and PUMA "G4001090, G40001001" +County and PUMA "G4001090, G40001002" +County and PUMA "G4001090, G40001003" +County and PUMA "G4001090, G40001004" +County and PUMA "G4001090, G40001005" +County and PUMA "G4001090, G40001006" +County and PUMA "G4001110, G40001302" +County and PUMA "G4001130, G40001204" +County and PUMA "G4001130, G40001601" +County and PUMA "G4001150, G40000100" +County and PUMA "G4001170, G40001601" +County and PUMA "G4001190, G40001501" +County and PUMA "G4001210, G40000300" +County and PUMA "G4001230, G40000701" +County and PUMA "G4001230, G40000702" +County and PUMA "G4001250, G40001101" +County and PUMA "G4001250, G40001102" +County and PUMA "G4001270, G40000300" +County and PUMA "G4001290, G40000400" +County and PUMA "G4001310, G40000100" +County and PUMA "G4001310, G40001301" +County and PUMA "G4001330, G40001501" +County and PUMA "G4001350, G40000200" +County and PUMA "G4001370, G40000602" +County and PUMA "G4001390, G40000500" +County and PUMA "G4001410, G40000602" +County and PUMA "G4001430, G40001201" +County and PUMA "G4001430, G40001202" +County and PUMA "G4001430, G40001203" +County and PUMA "G4001430, G40001204" +County and PUMA "G4001450, G40001301" +County and PUMA "G4001450, G40001302" +County and PUMA "G4001470, G40001601" +County and PUMA "G4001490, G40000400" +County and PUMA "G4001510, G40000500" +County and PUMA "G4001530, G40000500" +County and PUMA "G4100010, G41000100" +County and PUMA "G4100030, G41000600" +County and PUMA "G4100050, G41001317" +County and PUMA "G4100050, G41001318" +County and PUMA "G4100050, G41001319" +County and PUMA "G4100070, G41000500" +County and PUMA "G4100090, G41000500" +County and PUMA "G4100110, G41000800" +County and PUMA "G4100130, G41000200" +County and PUMA "G4100150, G41000800" +County and PUMA "G4100170, G41000400" +County and PUMA "G4100190, G41001000" +County and PUMA "G4100210, G41000200" +County and PUMA "G4100230, G41000200" +County and PUMA "G4100250, G41000300" +County and PUMA "G4100270, G41000200" +County and PUMA "G4100290, G41000901" +County and PUMA "G4100290, G41000902" +County and PUMA "G4100310, G41000200" +County and PUMA "G4100330, G41000800" +County and PUMA "G4100350, G41000300" +County and PUMA "G4100370, G41000300" +County and PUMA "G4100390, G41000703" +County and PUMA "G4100390, G41000704" +County and PUMA "G4100390, G41000705" +County and PUMA "G4100410, G41000500" +County and PUMA "G4100430, G41000600" +County and PUMA "G4100450, G41000300" +County and PUMA "G4100470, G41001103" +County and PUMA "G4100470, G41001104" +County and PUMA "G4100470, G41001105" +County and PUMA "G4100490, G41000200" +County and PUMA "G4100510, G41001301" +County and PUMA "G4100510, G41001302" +County and PUMA "G4100510, G41001303" +County and PUMA "G4100510, G41001305" +County and PUMA "G4100510, G41001314" +County and PUMA "G4100510, G41001316" +County and PUMA "G4100530, G41001200" +County and PUMA "G4100550, G41000200" +County and PUMA "G4100570, G41000500" +County and PUMA "G4100590, G41000100" +County and PUMA "G4100610, G41000100" +County and PUMA "G4100630, G41000100" +County and PUMA "G4100650, G41000200" +County and PUMA "G4100670, G41001320" +County and PUMA "G4100670, G41001321" +County and PUMA "G4100670, G41001322" +County and PUMA "G4100670, G41001323" +County and PUMA "G4100670, G41001324" +County and PUMA "G4100690, G41000200" +County and PUMA "G4100710, G41001200" +County and PUMA "G4200010, G42003701" +County and PUMA "G4200030, G42001701" +County and PUMA "G4200030, G42001702" +County and PUMA "G4200030, G42001801" +County and PUMA "G4200030, G42001802" +County and PUMA "G4200030, G42001803" +County and PUMA "G4200030, G42001804" +County and PUMA "G4200030, G42001805" +County and PUMA "G4200030, G42001806" +County and PUMA "G4200030, G42001807" +County and PUMA "G4200050, G42001900" +County and PUMA "G4200070, G42001501" +County and PUMA "G4200070, G42001502" +County and PUMA "G4200090, G42003800" +County and PUMA "G4200110, G42002701" +County and PUMA "G4200110, G42002702" +County and PUMA "G4200110, G42002703" +County and PUMA "G4200130, G42002200" +County and PUMA "G4200150, G42000400" +County and PUMA "G4200170, G42003001" +County and PUMA "G4200170, G42003002" +County and PUMA "G4200170, G42003003" +County and PUMA "G4200170, G42003004" +County and PUMA "G4200190, G42001600" +County and PUMA "G4200210, G42002100" +County and PUMA "G4200230, G42000300" +County and PUMA "G4200250, G42002801" +County and PUMA "G4200270, G42001200" +County and PUMA "G4200290, G42003401" +County and PUMA "G4200290, G42003402" +County and PUMA "G4200290, G42003403" +County and PUMA "G4200290, G42003404" +County and PUMA "G4200310, G42001300" +County and PUMA "G4200330, G42000300" +County and PUMA "G4200350, G42000900" +County and PUMA "G4200370, G42000803" +County and PUMA "G4200390, G42000200" +County and PUMA "G4200410, G42002301" +County and PUMA "G4200410, G42002302" +County and PUMA "G4200430, G42002401" +County and PUMA "G4200430, G42002402" +County and PUMA "G4200450, G42003301" +County and PUMA "G4200450, G42003302" +County and PUMA "G4200450, G42003303" +County and PUMA "G4200450, G42003304" +County and PUMA "G4200470, G42000300" +County and PUMA "G4200490, G42000101" +County and PUMA "G4200490, G42000102" +County and PUMA "G4200510, G42003900" +County and PUMA "G4200530, G42001300" +County and PUMA "G4200550, G42003701" +County and PUMA "G4200550, G42003702" +County and PUMA "G4200570, G42003800" +County and PUMA "G4200590, G42004002" +County and PUMA "G4200610, G42002200" +County and PUMA "G4200630, G42001900" +County and PUMA "G4200650, G42001300" +County and PUMA "G4200670, G42001100" +County and PUMA "G4200690, G42000701" +County and PUMA "G4200690, G42000702" +County and PUMA "G4200710, G42003501" +County and PUMA "G4200710, G42003502" +County and PUMA "G4200710, G42003503" +County and PUMA "G4200710, G42003504" +County and PUMA "G4200730, G42001501" +County and PUMA "G4200750, G42002500" +County and PUMA "G4200770, G42002801" +County and PUMA "G4200770, G42002802" +County and PUMA "G4200770, G42002803" +County and PUMA "G4200770, G42002901" +County and PUMA "G4200790, G42000801" +County and PUMA "G4200790, G42000802" +County and PUMA "G4200790, G42000803" +County and PUMA "G4200810, G42000900" +County and PUMA "G4200830, G42000300" +County and PUMA "G4200850, G42001400" +County and PUMA "G4200870, G42001100" +County and PUMA "G4200890, G42000600" +County and PUMA "G4200910, G42003101" +County and PUMA "G4200910, G42003102" +County and PUMA "G4200910, G42003103" +County and PUMA "G4200910, G42003104" +County and PUMA "G4200910, G42003105" +County and PUMA "G4200910, G42003106" +County and PUMA "G4200930, G42001000" +County and PUMA "G4200950, G42002901" +County and PUMA "G4200950, G42002902" +County and PUMA "G4200970, G42001000" +County and PUMA "G4200990, G42002301" +County and PUMA "G4201010, G42003201" +County and PUMA "G4201010, G42003202" +County and PUMA "G4201010, G42003203" +County and PUMA "G4201010, G42003204" +County and PUMA "G4201010, G42003205" +County and PUMA "G4201010, G42003206" +County and PUMA "G4201010, G42003207" +County and PUMA "G4201010, G42003208" +County and PUMA "G4201010, G42003209" +County and PUMA "G4201010, G42003210" +County and PUMA "G4201010, G42003211" +County and PUMA "G4201030, G42000500" +County and PUMA "G4201050, G42000300" +County and PUMA "G4201070, G42002600" +County and PUMA "G4201090, G42001100" +County and PUMA "G4201110, G42003800" +County and PUMA "G4201130, G42000400" +County and PUMA "G4201150, G42000500" +County and PUMA "G4201170, G42000400" +County and PUMA "G4201190, G42001100" +County and PUMA "G4201210, G42001300" +County and PUMA "G4201230, G42000200" +County and PUMA "G4201250, G42004001" +County and PUMA "G4201250, G42004002" +County and PUMA "G4201270, G42000500" +County and PUMA "G4201290, G42002001" +County and PUMA "G4201290, G42002002" +County and PUMA "G4201290, G42002003" +County and PUMA "G4201310, G42000702" +County and PUMA "G4201330, G42003601" +County and PUMA "G4201330, G42003602" +County and PUMA "G4201330, G42003603" +County and PUMA "G4400010, G44000300" +County and PUMA "G4400030, G44000201" +County and PUMA "G4400050, G44000300" +County and PUMA "G4400070, G44000101" +County and PUMA "G4400070, G44000102" +County and PUMA "G4400070, G44000103" +County and PUMA "G4400070, G44000104" +County and PUMA "G4400090, G44000400" +County and PUMA "G4500010, G45001600" +County and PUMA "G4500030, G45001500" +County and PUMA "G4500050, G45001300" +County and PUMA "G4500070, G45000200" +County and PUMA "G4500090, G45001300" +County and PUMA "G4500110, G45001300" +County and PUMA "G4500130, G45001400" +County and PUMA "G4500150, G45001201" +County and PUMA "G4500150, G45001202" +County and PUMA "G4500150, G45001203" +County and PUMA "G4500150, G45001204" +County and PUMA "G4500170, G45000605" +County and PUMA "G4500190, G45001201" +County and PUMA "G4500190, G45001202" +County and PUMA "G4500190, G45001203" +County and PUMA "G4500190, G45001204" +County and PUMA "G4500210, G45000400" +County and PUMA "G4500230, G45000400" +County and PUMA "G4500250, G45000700" +County and PUMA "G4500270, G45000800" +County and PUMA "G4500290, G45001300" +County and PUMA "G4500310, G45000900" +County and PUMA "G4500330, G45001000" +County and PUMA "G4500350, G45001201" +County and PUMA "G4500350, G45001204" +County and PUMA "G4500370, G45001500" +County and PUMA "G4500390, G45000603" +County and PUMA "G4500410, G45000900" +County and PUMA "G4500430, G45001000" +County and PUMA "G4500450, G45000102" +County and PUMA "G4500450, G45000103" +County and PUMA "G4500450, G45000104" +County and PUMA "G4500450, G45000105" +County and PUMA "G4500470, G45001600" +County and PUMA "G4500490, G45001300" +County and PUMA "G4500510, G45001101" +County and PUMA "G4500510, G45001102" +County and PUMA "G4500530, G45001400" +County and PUMA "G4500550, G45000605" +County and PUMA "G4500570, G45000700" +County and PUMA "G4500590, G45000105" +County and PUMA "G4500610, G45000800" +County and PUMA "G4500630, G45000601" +County and PUMA "G4500630, G45000602" +County and PUMA "G4500650, G45001600" +County and PUMA "G4500670, G45001000" +County and PUMA "G4500690, G45000700" +County and PUMA "G4500710, G45000400" +County and PUMA "G4500730, G45000101" +County and PUMA "G4500750, G45001300" +County and PUMA "G4500770, G45000101" +County and PUMA "G4500790, G45000603" +County and PUMA "G4500790, G45000604" +County and PUMA "G4500790, G45000605" +County and PUMA "G4500810, G45000601" +County and PUMA "G4500830, G45000301" +County and PUMA "G4500830, G45000302" +County and PUMA "G4500850, G45000800" +County and PUMA "G4500870, G45000400" +County and PUMA "G4500890, G45000800" +County and PUMA "G4500910, G45000501" +County and PUMA "G4500910, G45000502" +County and PUMA "G4600030, G46000400" +County and PUMA "G4600050, G46000400" +County and PUMA "G4600070, G46000200" +County and PUMA "G4600090, G46000400" +County and PUMA "G4600110, G46000400" +County and PUMA "G4600130, G46000300" +County and PUMA "G4600150, G46000400" +County and PUMA "G4600170, G46000200" +County and PUMA "G4600190, G46000100" +County and PUMA "G4600210, G46000300" +County and PUMA "G4600230, G46000200" +County and PUMA "G4600250, G46000300" +County and PUMA "G4600270, G46000500" +County and PUMA "G4600290, G46000300" +County and PUMA "G4600310, G46000200" +County and PUMA "G4600330, G46000100" +County and PUMA "G4600350, G46000400" +County and PUMA "G4600370, G46000300" +County and PUMA "G4600390, G46000300" +County and PUMA "G4600410, G46000200" +County and PUMA "G4600430, G46000400" +County and PUMA "G4600450, G46000300" +County and PUMA "G4600470, G46000200" +County and PUMA "G4600490, G46000300" +County and PUMA "G4600510, G46000300" +County and PUMA "G4600530, G46000200" +County and PUMA "G4600550, G46000200" +County and PUMA "G4600570, G46000300" +County and PUMA "G4600590, G46000400" +County and PUMA "G4600610, G46000400" +County and PUMA "G4600630, G46000100" +County and PUMA "G4600650, G46000200" +County and PUMA "G4600670, G46000400" +County and PUMA "G4600690, G46000200" +County and PUMA "G4600710, G46000200" +County and PUMA "G4600730, G46000400" +County and PUMA "G4600750, G46000200" +County and PUMA "G4600770, G46000400" +County and PUMA "G4600790, G46000400" +County and PUMA "G4600810, G46000100" +County and PUMA "G4600830, G46000500" +County and PUMA "G4600830, G46000600" +County and PUMA "G4600850, G46000200" +County and PUMA "G4600870, G46000500" +County and PUMA "G4600890, G46000300" +County and PUMA "G4600910, G46000300" +County and PUMA "G4600930, G46000100" +County and PUMA "G4600950, G46000200" +County and PUMA "G4600970, G46000400" +County and PUMA "G4600990, G46000500" +County and PUMA "G4600990, G46000600" +County and PUMA "G4601010, G46000400" +County and PUMA "G4601020, G46000200" +County and PUMA "G4601030, G46000100" +County and PUMA "G4601050, G46000100" +County and PUMA "G4601070, G46000300" +County and PUMA "G4601090, G46000300" +County and PUMA "G4601110, G46000400" +County and PUMA "G4601150, G46000300" +County and PUMA "G4601170, G46000200" +County and PUMA "G4601190, G46000200" +County and PUMA "G4601210, G46000200" +County and PUMA "G4601230, G46000200" +County and PUMA "G4601250, G46000500" +County and PUMA "G4601270, G46000500" +County and PUMA "G4601290, G46000300" +County and PUMA "G4601350, G46000500" +County and PUMA "G4601370, G46000200" +County and PUMA "G4700010, G47001601" +County and PUMA "G4700030, G47002700" +County and PUMA "G4700050, G47000200" +County and PUMA "G4700070, G47002100" +County and PUMA "G4700090, G47001700" +County and PUMA "G4700110, G47001900" +County and PUMA "G4700130, G47000900" +County and PUMA "G4700150, G47000600" +County and PUMA "G4700170, G47000200" +County and PUMA "G4700190, G47001200" +County and PUMA "G4700210, G47000400" +County and PUMA "G4700230, G47003000" +County and PUMA "G4700250, G47000900" +County and PUMA "G4700270, G47000700" +County and PUMA "G4700290, G47001400" +County and PUMA "G4700310, G47002200" +County and PUMA "G4700330, G47000100" +County and PUMA "G4700350, G47000800" +County and PUMA "G4700370, G47002501" +County and PUMA "G4700370, G47002502" +County and PUMA "G4700370, G47002503" +County and PUMA "G4700370, G47002504" +County and PUMA "G4700370, G47002505" +County and PUMA "G4700390, G47002900" +County and PUMA "G4700410, G47000600" +County and PUMA "G4700430, G47000400" +County and PUMA "G4700450, G47000100" +County and PUMA "G4700470, G47003100" +County and PUMA "G4700490, G47000800" +County and PUMA "G4700510, G47002200" +County and PUMA "G4700530, G47000100" +County and PUMA "G4700550, G47002800" +County and PUMA "G4700570, G47001400" +County and PUMA "G4700590, G47001200" +County and PUMA "G4700610, G47002100" +County and PUMA "G4700630, G47001400" +County and PUMA "G4700650, G47002001" +County and PUMA "G4700650, G47002002" +County and PUMA "G4700650, G47002003" +County and PUMA "G4700670, G47000900" +County and PUMA "G4700690, G47002900" +County and PUMA "G4700710, G47002900" +County and PUMA "G4700730, G47001000" +County and PUMA "G4700750, G47002900" +County and PUMA "G4700770, G47002900" +County and PUMA "G4700790, G47000200" +County and PUMA "G4700810, G47000400" +County and PUMA "G4700830, G47000200" +County and PUMA "G4700850, G47000200" +County and PUMA "G4700870, G47000700" +County and PUMA "G4700890, G47001500" +County and PUMA "G4700910, G47001200" +County and PUMA "G4700930, G47001601" +County and PUMA "G4700930, G47001602" +County and PUMA "G4700930, G47001603" +County and PUMA "G4700930, G47001604" +County and PUMA "G4700950, G47000100" +County and PUMA "G4700970, G47003100" +County and PUMA "G4700990, G47002800" +County and PUMA "G4701010, G47002800" +County and PUMA "G4701030, G47002200" +County and PUMA "G4701050, G47001800" +County and PUMA "G4701070, G47001900" +County and PUMA "G4701090, G47002900" +County and PUMA "G4701110, G47000600" +County and PUMA "G4701130, G47003000" +County and PUMA "G4701150, G47002100" +County and PUMA "G4701170, G47002700" +County and PUMA "G4701190, G47002700" +County and PUMA "G4701210, G47002100" +County and PUMA "G4701230, G47001800" +County and PUMA "G4701250, G47000300" +County and PUMA "G4701270, G47002200" +County and PUMA "G4701290, G47000900" +County and PUMA "G4701310, G47000100" +County and PUMA "G4701330, G47000700" +County and PUMA "G4701350, G47002800" +County and PUMA "G4701370, G47000700" +County and PUMA "G4701390, G47001900" +County and PUMA "G4701410, G47000700" +County and PUMA "G4701430, G47002100" +County and PUMA "G4701450, G47001800" +County and PUMA "G4701470, G47000400" +County and PUMA "G4701490, G47002401" +County and PUMA "G4701490, G47002402" +County and PUMA "G4701510, G47000900" +County and PUMA "G4701530, G47002100" +County and PUMA "G4701550, G47001500" +County and PUMA "G4701570, G47003201" +County and PUMA "G4701570, G47003202" +County and PUMA "G4701570, G47003203" +County and PUMA "G4701570, G47003204" +County and PUMA "G4701570, G47003205" +County and PUMA "G4701570, G47003206" +County and PUMA "G4701570, G47003207" +County and PUMA "G4701570, G47003208" +County and PUMA "G4701590, G47000600" +County and PUMA "G4701610, G47000300" +County and PUMA "G4701630, G47001000" +County and PUMA "G4701630, G47001100" +County and PUMA "G4701650, G47000500" +County and PUMA "G4701670, G47003100" +County and PUMA "G4701690, G47000600" +County and PUMA "G4701710, G47001200" +County and PUMA "G4701730, G47001601" +County and PUMA "G4701750, G47000800" +County and PUMA "G4701770, G47000600" +County and PUMA "G4701790, G47001300" +County and PUMA "G4701810, G47002800" +County and PUMA "G4701830, G47000200" +County and PUMA "G4701850, G47000800" +County and PUMA "G4701870, G47002600" +County and PUMA "G4701890, G47002300" +County and PUMA "G4800010, G48001800" +County and PUMA "G4800030, G48003200" +County and PUMA "G4800050, G48004000" +County and PUMA "G4800070, G48006500" +County and PUMA "G4800090, G48000600" +County and PUMA "G4800110, G48000100" +County and PUMA "G4800130, G48006100" +County and PUMA "G4800150, G48005000" +County and PUMA "G4800170, G48000400" +County and PUMA "G4800190, G48006100" +County and PUMA "G4800210, G48005100" +County and PUMA "G4800230, G48000600" +County and PUMA "G4800250, G48006500" +County and PUMA "G4800270, G48003501" +County and PUMA "G4800270, G48003502" +County and PUMA "G4800290, G48005901" +County and PUMA "G4800290, G48005902" +County and PUMA "G4800290, G48005903" +County and PUMA "G4800290, G48005904" +County and PUMA "G4800290, G48005905" +County and PUMA "G4800290, G48005906" +County and PUMA "G4800290, G48005907" +County and PUMA "G4800290, G48005908" +County and PUMA "G4800290, G48005909" +County and PUMA "G4800290, G48005910" +County and PUMA "G4800290, G48005911" +County and PUMA "G4800290, G48005912" +County and PUMA "G4800290, G48005913" +County and PUMA "G4800290, G48005914" +County and PUMA "G4800290, G48005915" +County and PUMA "G4800290, G48005916" +County and PUMA "G4800310, G48006000" +County and PUMA "G4800330, G48002800" +County and PUMA "G4800350, G48003700" +County and PUMA "G4800370, G48001100" +County and PUMA "G4800390, G48004801" +County and PUMA "G4800390, G48004802" +County and PUMA "G4800390, G48004803" +County and PUMA "G4800410, G48003602" +County and PUMA "G4800430, G48003200" +County and PUMA "G4800450, G48000100" +County and PUMA "G4800470, G48006900" +County and PUMA "G4800490, G48002600" +County and PUMA "G4800510, G48003601" +County and PUMA "G4800530, G48003400" +County and PUMA "G4800550, G48005100" +County and PUMA "G4800570, G48005600" +County and PUMA "G4800590, G48002600" +County and PUMA "G4800610, G48006701" +County and PUMA "G4800610, G48006702" +County and PUMA "G4800610, G48006703" +County and PUMA "G4800630, G48001300" +County and PUMA "G4800650, G48000100" +County and PUMA "G4800670, G48001100" +County and PUMA "G4800690, G48000100" +County and PUMA "G4800710, G48004400" +County and PUMA "G4800730, G48001700" +County and PUMA "G4800750, G48000100" +County and PUMA "G4800770, G48000600" +County and PUMA "G4800790, G48000400" +County and PUMA "G4800810, G48002800" +County and PUMA "G4800830, G48002600" +County and PUMA "G4800850, G48001901" +County and PUMA "G4800850, G48001902" +County and PUMA "G4800850, G48001903" +County and PUMA "G4800850, G48001904" +County and PUMA "G4800850, G48001905" +County and PUMA "G4800850, G48001906" +County and PUMA "G4800850, G48001907" +County and PUMA "G4800870, G48000100" +County and PUMA "G4800890, G48005000" +County and PUMA "G4800910, G48005800" +County and PUMA "G4800930, G48002600" +County and PUMA "G4800950, G48002800" +County and PUMA "G4800970, G48000800" +County and PUMA "G4800990, G48003400" +County and PUMA "G4801010, G48000600" +County and PUMA "G4801030, G48003200" +County and PUMA "G4801050, G48002800" +County and PUMA "G4801070, G48000400" +County and PUMA "G4801090, G48003200" +County and PUMA "G4801110, G48000100" +County and PUMA "G4801130, G48002301" +County and PUMA "G4801130, G48002302" +County and PUMA "G4801130, G48002303" +County and PUMA "G4801130, G48002304" +County and PUMA "G4801130, G48002305" +County and PUMA "G4801130, G48002306" +County and PUMA "G4801130, G48002307" +County and PUMA "G4801130, G48002308" +County and PUMA "G4801130, G48002309" +County and PUMA "G4801130, G48002310" +County and PUMA "G4801130, G48002311" +County and PUMA "G4801130, G48002312" +County and PUMA "G4801130, G48002313" +County and PUMA "G4801130, G48002314" +County and PUMA "G4801130, G48002315" +County and PUMA "G4801130, G48002316" +County and PUMA "G4801130, G48002317" +County and PUMA "G4801130, G48002318" +County and PUMA "G4801130, G48002319" +County and PUMA "G4801130, G48002320" +County and PUMA "G4801130, G48002321" +County and PUMA "G4801130, G48002322" +County and PUMA "G4801150, G48002800" +County and PUMA "G4801170, G48000100" +County and PUMA "G4801190, G48001000" +County and PUMA "G4801210, G48002001" +County and PUMA "G4801210, G48002002" +County and PUMA "G4801210, G48002003" +County and PUMA "G4801210, G48002004" +County and PUMA "G4801210, G48002005" +County and PUMA "G4801210, G48002006" +County and PUMA "G4801230, G48005500" +County and PUMA "G4801250, G48000400" +County and PUMA "G4801270, G48006200" +County and PUMA "G4801290, G48000100" +County and PUMA "G4801310, G48006400" +County and PUMA "G4801330, G48002600" +County and PUMA "G4801350, G48003100" +County and PUMA "G4801370, G48006200" +County and PUMA "G4801390, G48002101" +County and PUMA "G4801410, G48003301" +County and PUMA "G4801410, G48003302" +County and PUMA "G4801410, G48003303" +County and PUMA "G4801410, G48003304" +County and PUMA "G4801410, G48003305" +County and PUMA "G4801410, G48003306" +County and PUMA "G4801430, G48002200" +County and PUMA "G4801450, G48003700" +County and PUMA "G4801470, G48000800" +County and PUMA "G4801490, G48005100" +County and PUMA "G4801510, G48002600" +County and PUMA "G4801530, G48000400" +County and PUMA "G4801550, G48000600" +County and PUMA "G4801570, G48004901" +County and PUMA "G4801570, G48004902" +County and PUMA "G4801570, G48004903" +County and PUMA "G4801570, G48004904" +County and PUMA "G4801570, G48004905" +County and PUMA "G4801590, G48001000" +County and PUMA "G4801610, G48003700" +County and PUMA "G4801630, G48006100" +County and PUMA "G4801650, G48003200" +County and PUMA "G4801670, G48004701" +County and PUMA "G4801670, G48004702" +County and PUMA "G4801690, G48000400" +County and PUMA "G4801710, G48006000" +County and PUMA "G4801730, G48002800" +County and PUMA "G4801750, G48005500" +County and PUMA "G4801770, G48005500" +County and PUMA "G4801790, G48000100" +County and PUMA "G4801810, G48000800" +County and PUMA "G4801830, G48001600" +County and PUMA "G4801850, G48003601" +County and PUMA "G4801870, G48005700" +County and PUMA "G4801890, G48000400" +County and PUMA "G4801910, G48000100" +County and PUMA "G4801930, G48003400" +County and PUMA "G4801950, G48000100" +County and PUMA "G4801970, G48000600" +County and PUMA "G4801990, G48004200" +County and PUMA "G4802010, G48004601" +County and PUMA "G4802010, G48004602" +County and PUMA "G4802010, G48004603" +County and PUMA "G4802010, G48004604" +County and PUMA "G4802010, G48004605" +County and PUMA "G4802010, G48004606" +County and PUMA "G4802010, G48004607" +County and PUMA "G4802010, G48004608" +County and PUMA "G4802010, G48004609" +County and PUMA "G4802010, G48004610" +County and PUMA "G4802010, G48004611" +County and PUMA "G4802010, G48004612" +County and PUMA "G4802010, G48004613" +County and PUMA "G4802010, G48004614" +County and PUMA "G4802010, G48004615" +County and PUMA "G4802010, G48004616" +County and PUMA "G4802010, G48004617" +County and PUMA "G4802010, G48004618" +County and PUMA "G4802010, G48004619" +County and PUMA "G4802010, G48004620" +County and PUMA "G4802010, G48004621" +County and PUMA "G4802010, G48004622" +County and PUMA "G4802010, G48004623" +County and PUMA "G4802010, G48004624" +County and PUMA "G4802010, G48004625" +County and PUMA "G4802010, G48004626" +County and PUMA "G4802010, G48004627" +County and PUMA "G4802010, G48004628" +County and PUMA "G4802010, G48004629" +County and PUMA "G4802010, G48004630" +County and PUMA "G4802010, G48004631" +County and PUMA "G4802010, G48004632" +County and PUMA "G4802010, G48004633" +County and PUMA "G4802010, G48004634" +County and PUMA "G4802010, G48004635" +County and PUMA "G4802010, G48004636" +County and PUMA "G4802010, G48004637" +County and PUMA "G4802010, G48004638" +County and PUMA "G4802030, G48001200" +County and PUMA "G4802050, G48000100" +County and PUMA "G4802070, G48002600" +County and PUMA "G4802090, G48005400" +County and PUMA "G4802110, G48000100" +County and PUMA "G4802130, G48001800" +County and PUMA "G4802150, G48006801" +County and PUMA "G4802150, G48006802" +County and PUMA "G4802150, G48006803" +County and PUMA "G4802150, G48006804" +County and PUMA "G4802150, G48006805" +County and PUMA "G4802150, G48006806" +County and PUMA "G4802150, G48006807" +County and PUMA "G4802170, G48003700" +County and PUMA "G4802190, G48000400" +County and PUMA "G4802210, G48002200" +County and PUMA "G4802230, G48001000" +County and PUMA "G4802250, G48003900" +County and PUMA "G4802270, G48002800" +County and PUMA "G4802290, G48003200" +County and PUMA "G4802310, G48000900" +County and PUMA "G4802330, G48000100" +County and PUMA "G4802350, G48002800" +County and PUMA "G4802370, G48000600" +County and PUMA "G4802390, G48005500" +County and PUMA "G4802410, G48004100" +County and PUMA "G4802430, G48003200" +County and PUMA "G4802450, G48004301" +County and PUMA "G4802450, G48004302" +County and PUMA "G4802470, G48006400" +County and PUMA "G4802490, G48006900" +County and PUMA "G4802510, G48002102" +County and PUMA "G4802530, G48002600" +County and PUMA "G4802550, G48005500" +County and PUMA "G4802570, G48001400" +County and PUMA "G4802590, G48006000" +County and PUMA "G4802610, G48006900" +County and PUMA "G4802630, G48002600" +County and PUMA "G4802650, G48006000" +County and PUMA "G4802670, G48002800" +County and PUMA "G4802690, G48000400" +County and PUMA "G4802710, G48006200" +County and PUMA "G4802730, G48006900" +County and PUMA "G4802750, G48002600" +County and PUMA "G4802770, G48001000" +County and PUMA "G4802790, G48000400" +County and PUMA "G4802810, G48003400" +County and PUMA "G4802830, G48006200" +County and PUMA "G4802850, G48005500" +County and PUMA "G4802870, G48005100" +County and PUMA "G4802890, G48003601" +County and PUMA "G4802910, G48004400" +County and PUMA "G4802930, G48003700" +County and PUMA "G4802950, G48000100" +County and PUMA "G4802970, G48006400" +County and PUMA "G4802990, G48003400" +County and PUMA "G4803010, G48003200" +County and PUMA "G4803030, G48000501" +County and PUMA "G4803030, G48000502" +County and PUMA "G4803050, G48000400" +County and PUMA "G4803070, G48002800" +County and PUMA "G4803090, G48003801" +County and PUMA "G4803090, G48003802" +County and PUMA "G4803110, G48006400" +County and PUMA "G4803130, G48003601" +County and PUMA "G4803150, G48001200" +County and PUMA "G4803170, G48002800" +County and PUMA "G4803190, G48002800" +County and PUMA "G4803210, G48005000" +County and PUMA "G4803230, G48006200" +County and PUMA "G4803250, G48006100" +County and PUMA "G4803270, G48002800" +County and PUMA "G4803290, G48003000" +County and PUMA "G4803310, G48003601" +County and PUMA "G4803330, G48003400" +County and PUMA "G4803350, G48002600" +County and PUMA "G4803370, G48000600" +County and PUMA "G4803390, G48004501" +County and PUMA "G4803390, G48004502" +County and PUMA "G4803390, G48004503" +County and PUMA "G4803390, G48004504" +County and PUMA "G4803410, G48000100" +County and PUMA "G4803430, G48001000" +County and PUMA "G4803450, G48000400" +County and PUMA "G4803470, G48004000" +County and PUMA "G4803490, G48003700" +County and PUMA "G4803510, G48004100" +County and PUMA "G4803530, G48002600" +County and PUMA "G4803550, G48006601" +County and PUMA "G4803550, G48006602" +County and PUMA "G4803550, G48006603" +County and PUMA "G4803570, G48000100" +County and PUMA "G4803590, G48000100" +County and PUMA "G4803610, G48004200" +County and PUMA "G4803630, G48002200" +County and PUMA "G4803650, G48001700" +County and PUMA "G4803670, G48002400" +County and PUMA "G4803690, G48000100" +County and PUMA "G4803710, G48003200" +County and PUMA "G4803730, G48003900" +County and PUMA "G4803750, G48000200" +County and PUMA "G4803770, G48003200" +County and PUMA "G4803790, G48001300" +County and PUMA "G4803810, G48000300" +County and PUMA "G4803830, G48002800" +County and PUMA "G4803850, G48006200" +County and PUMA "G4803870, G48001000" +County and PUMA "G4803890, G48003200" +County and PUMA "G4803910, G48006500" +County and PUMA "G4803930, G48000100" +County and PUMA "G4803950, G48003601" +County and PUMA "G4803970, G48000900" +County and PUMA "G4803990, G48002600" +County and PUMA "G4804010, G48001700" +County and PUMA "G4804030, G48004100" +County and PUMA "G4804050, G48004100" +County and PUMA "G4804070, G48003900" +County and PUMA "G4804090, G48006500" +County and PUMA "G4804110, G48003400" +County and PUMA "G4804130, G48002800" +County and PUMA "G4804150, G48002600" +County and PUMA "G4804170, G48002600" +County and PUMA "G4804190, G48004100" +County and PUMA "G4804210, G48000100" +County and PUMA "G4804230, G48001501" +County and PUMA "G4804230, G48001502" +County and PUMA "G4804250, G48002200" +County and PUMA "G4804270, G48006400" +County and PUMA "G4804290, G48002600" +County and PUMA "G4804310, G48002800" +County and PUMA "G4804330, G48002600" +County and PUMA "G4804350, G48002800" +County and PUMA "G4804370, G48000100" +County and PUMA "G4804390, G48002501" +County and PUMA "G4804390, G48002502" +County and PUMA "G4804390, G48002503" +County and PUMA "G4804390, G48002504" +County and PUMA "G4804390, G48002505" +County and PUMA "G4804390, G48002506" +County and PUMA "G4804390, G48002507" +County and PUMA "G4804390, G48002508" +County and PUMA "G4804390, G48002509" +County and PUMA "G4804390, G48002510" +County and PUMA "G4804390, G48002511" +County and PUMA "G4804390, G48002512" +County and PUMA "G4804390, G48002513" +County and PUMA "G4804390, G48002514" +County and PUMA "G4804390, G48002515" +County and PUMA "G4804390, G48002516" +County and PUMA "G4804410, G48002700" +County and PUMA "G4804430, G48003200" +County and PUMA "G4804450, G48000400" +County and PUMA "G4804470, G48002600" +County and PUMA "G4804490, G48001000" +County and PUMA "G4804510, G48002900" +County and PUMA "G4804530, G48005301" +County and PUMA "G4804530, G48005302" +County and PUMA "G4804530, G48005303" +County and PUMA "G4804530, G48005304" +County and PUMA "G4804530, G48005305" +County and PUMA "G4804530, G48005306" +County and PUMA "G4804530, G48005307" +County and PUMA "G4804530, G48005308" +County and PUMA "G4804530, G48005309" +County and PUMA "G4804550, G48003900" +County and PUMA "G4804570, G48004100" +County and PUMA "G4804590, G48001200" +County and PUMA "G4804610, G48002800" +County and PUMA "G4804630, G48006200" +County and PUMA "G4804650, G48006200" +County and PUMA "G4804670, G48001300" +County and PUMA "G4804690, G48005600" +County and PUMA "G4804710, G48003900" +County and PUMA "G4804730, G48005000" +County and PUMA "G4804750, G48003200" +County and PUMA "G4804770, G48003601" +County and PUMA "G4804790, G48006301" +County and PUMA "G4804790, G48006302" +County and PUMA "G4804810, G48005000" +County and PUMA "G4804830, G48000100" +County and PUMA "G4804850, G48000700" +County and PUMA "G4804870, G48000600" +County and PUMA "G4804890, G48006900" +County and PUMA "G4804910, G48005201" +County and PUMA "G4804910, G48005202" +County and PUMA "G4804910, G48005203" +County and PUMA "G4804910, G48005204" +County and PUMA "G4804930, G48005500" +County and PUMA "G4804950, G48003200" +County and PUMA "G4804970, G48000600" +County and PUMA "G4804990, G48001300" +County and PUMA "G4805010, G48000400" +County and PUMA "G4805030, G48000600" +County and PUMA "G4805050, G48006400" +County and PUMA "G4805070, G48006200" +County and PUMA "G4900010, G49021001" +County and PUMA "G4900030, G49003001" +County and PUMA "G4900050, G49005001" +County and PUMA "G4900070, G49013001" +County and PUMA "G4900090, G49013001" +County and PUMA "G4900110, G49011001" +County and PUMA "G4900110, G49011002" +County and PUMA "G4900130, G49013001" +County and PUMA "G4900150, G49013001" +County and PUMA "G4900170, G49021001" +County and PUMA "G4900190, G49013001" +County and PUMA "G4900210, G49021001" +County and PUMA "G4900230, G49021001" +County and PUMA "G4900250, G49021001" +County and PUMA "G4900270, G49021001" +County and PUMA "G4900290, G49005001" +County and PUMA "G4900310, G49021001" +County and PUMA "G4900330, G49005001" +County and PUMA "G4900350, G49035001" +County and PUMA "G4900350, G49035002" +County and PUMA "G4900350, G49035003" +County and PUMA "G4900350, G49035004" +County and PUMA "G4900350, G49035005" +County and PUMA "G4900350, G49035006" +County and PUMA "G4900350, G49035007" +County and PUMA "G4900350, G49035008" +County and PUMA "G4900350, G49035009" +County and PUMA "G4900370, G49013001" +County and PUMA "G4900390, G49021001" +County and PUMA "G4900410, G49021001" +County and PUMA "G4900430, G49005001" +County and PUMA "G4900450, G49003001" +County and PUMA "G4900470, G49013001" +County and PUMA "G4900490, G49049001" +County and PUMA "G4900490, G49049002" +County and PUMA "G4900490, G49049003" +County and PUMA "G4900490, G49049004" +County and PUMA "G4900510, G49013001" +County and PUMA "G4900530, G49053001" +County and PUMA "G4900550, G49021001" +County and PUMA "G4900570, G49057001" +County and PUMA "G4900570, G49057002" +County and PUMA "G5000010, G50000400" +County and PUMA "G5000030, G50000400" +County and PUMA "G5000050, G50000200" +County and PUMA "G5000070, G50000100" +County and PUMA "G5000090, G50000200" +County and PUMA "G5000110, G50000100" +County and PUMA "G5000130, G50000100" +County and PUMA "G5000150, G50000200" +County and PUMA "G5000170, G50000300" +County and PUMA "G5000190, G50000200" +County and PUMA "G5000210, G50000400" +County and PUMA "G5000230, G50000200" +County and PUMA "G5000250, G50000300" +County and PUMA "G5000270, G50000300" +County and PUMA "G5100010, G51051125" +County and PUMA "G5100030, G51051089" +County and PUMA "G5100030, G51051090" +County and PUMA "G5100050, G51051045" +County and PUMA "G5100070, G51051105" +County and PUMA "G5100090, G51051095" +County and PUMA "G5100110, G51051095" +County and PUMA "G5100130, G51001301" +County and PUMA "G5100130, G51001302" +County and PUMA "G5100150, G51051080" +County and PUMA "G5100170, G51051080" +County and PUMA "G5100190, G51051095" +County and PUMA "G5100210, G51051020" +County and PUMA "G5100230, G51051045" +County and PUMA "G5100250, G51051105" +County and PUMA "G5100270, G51051010" +County and PUMA "G5100290, G51051105" +County and PUMA "G5100310, G51051096" +County and PUMA "G5100330, G51051120" +County and PUMA "G5100350, G51051020" +County and PUMA "G5100360, G51051215" +County and PUMA "G5100370, G51051105" +County and PUMA "G5100410, G51004101" +County and PUMA "G5100410, G51004102" +County and PUMA "G5100410, G51004103" +County and PUMA "G5100430, G51051084" +County and PUMA "G5100450, G51051045" +County and PUMA "G5100470, G51051087" +County and PUMA "G5100490, G51051105" +County and PUMA "G5100510, G51051010" +County and PUMA "G5100530, G51051135" +County and PUMA "G5100570, G51051125" +County and PUMA "G5100590, G51059301" +County and PUMA "G5100590, G51059302" +County and PUMA "G5100590, G51059303" +County and PUMA "G5100590, G51059304" +County and PUMA "G5100590, G51059305" +County and PUMA "G5100590, G51059306" +County and PUMA "G5100590, G51059307" +County and PUMA "G5100590, G51059308" +County and PUMA "G5100590, G51059309" +County and PUMA "G5100610, G51051087" +County and PUMA "G5100630, G51051040" +County and PUMA "G5100650, G51051089" +County and PUMA "G5100670, G51051045" +County and PUMA "G5100690, G51051084" +County and PUMA "G5100710, G51051040" +County and PUMA "G5100730, G51051125" +County and PUMA "G5100750, G51051215" +County and PUMA "G5100770, G51051020" +County and PUMA "G5100790, G51051090" +County and PUMA "G5100810, G51051135" +County and PUMA "G5100830, G51051105" +County and PUMA "G5100850, G51051215" +County and PUMA "G5100870, G51051224" +County and PUMA "G5100870, G51051225" +County and PUMA "G5100890, G51051097" +County and PUMA "G5100910, G51051080" +County and PUMA "G5100930, G51051145" +County and PUMA "G5100950, G51051206" +County and PUMA "G5100970, G51051125" +County and PUMA "G5100990, G51051120" +County and PUMA "G5101010, G51051215" +County and PUMA "G5101030, G51051125" +County and PUMA "G5101050, G51051010" +County and PUMA "G5101070, G51010701" +County and PUMA "G5101070, G51010702" +County and PUMA "G5101070, G51010703" +County and PUMA "G5101090, G51051089" +County and PUMA "G5101110, G51051105" +County and PUMA "G5101130, G51051087" +County and PUMA "G5101150, G51051125" +County and PUMA "G5101170, G51051105" +County and PUMA "G5101190, G51051125" +County and PUMA "G5101210, G51051040" +County and PUMA "G5101250, G51051089" +County and PUMA "G5101270, G51051215" +County and PUMA "G5101310, G51051125" +County and PUMA "G5101330, G51051125" +County and PUMA "G5101350, G51051105" +County and PUMA "G5101370, G51051087" +County and PUMA "G5101390, G51051085" +County and PUMA "G5101410, G51051097" +County and PUMA "G5101430, G51051097" +County and PUMA "G5101450, G51051215" +County and PUMA "G5101470, G51051105" +County and PUMA "G5101490, G51051135" +County and PUMA "G5101530, G51051244" +County and PUMA "G5101530, G51051245" +County and PUMA "G5101530, G51051246" +County and PUMA "G5101550, G51051040" +County and PUMA "G5101570, G51051087" +County and PUMA "G5101590, G51051125" +County and PUMA "G5101610, G51051044" +County and PUMA "G5101610, G51051045" +County and PUMA "G5101630, G51051080" +County and PUMA "G5101650, G51051110" +County and PUMA "G5101670, G51051010" +County and PUMA "G5101690, G51051010" +County and PUMA "G5101710, G51051085" +County and PUMA "G5101730, G51051020" +County and PUMA "G5101750, G51051145" +County and PUMA "G5101770, G51051120" +County and PUMA "G5101790, G51051115" +County and PUMA "G5101810, G51051135" +County and PUMA "G5101830, G51051135" +County and PUMA "G5101850, G51051010" +County and PUMA "G5101870, G51051085" +County and PUMA "G5101910, G51051020" +County and PUMA "G5101930, G51051125" +County and PUMA "G5101950, G51051010" +County and PUMA "G5101970, G51051020" +County and PUMA "G5101990, G51051206" +County and PUMA "G5105100, G51051255" +County and PUMA "G5105200, G51051020" +County and PUMA "G5105300, G51051080" +County and PUMA "G5105400, G51051090" +County and PUMA "G5105500, G51055001" +County and PUMA "G5105500, G51055002" +County and PUMA "G5105700, G51051135" +County and PUMA "G5105800, G51051045" +County and PUMA "G5105900, G51051097" +County and PUMA "G5105950, G51051135" +County and PUMA "G5106000, G51059303" +County and PUMA "G5106100, G51059308" +County and PUMA "G5106200, G51051145" +County and PUMA "G5106300, G51051115" +County and PUMA "G5106400, G51051020" +County and PUMA "G5106500, G51051186" +County and PUMA "G5106600, G51051110" +County and PUMA "G5106700, G51051135" +County and PUMA "G5106780, G51051080" +County and PUMA "G5106800, G51051096" +County and PUMA "G5106830, G51051245" +County and PUMA "G5106850, G51051245" +County and PUMA "G5106900, G51051097" +County and PUMA "G5107000, G51051175" +County and PUMA "G5107100, G51051154" +County and PUMA "G5107100, G51051155" +County and PUMA "G5107200, G51051010" +County and PUMA "G5107300, G51051135" +County and PUMA "G5107350, G51051206" +County and PUMA "G5107400, G51051155" +County and PUMA "G5107500, G51051040" +County and PUMA "G5107600, G51051235" +County and PUMA "G5107700, G51051044" +County and PUMA "G5107750, G51051044" +County and PUMA "G5107900, G51051080" +County and PUMA "G5108000, G51051145" +County and PUMA "G5108100, G51051164" +County and PUMA "G5108100, G51051165" +County and PUMA "G5108100, G51051167" +County and PUMA "G5108200, G51051080" +County and PUMA "G5108300, G51051206" +County and PUMA "G5108400, G51051084" +County and PUMA "G5300010, G53010600" +County and PUMA "G5300030, G53010600" +County and PUMA "G5300050, G53010701" +County and PUMA "G5300050, G53010702" +County and PUMA "G5300050, G53010703" +County and PUMA "G5300070, G53010300" +County and PUMA "G5300090, G53011900" +County and PUMA "G5300110, G53011101" +County and PUMA "G5300110, G53011102" +County and PUMA "G5300110, G53011103" +County and PUMA "G5300110, G53011104" +County and PUMA "G5300130, G53010600" +County and PUMA "G5300150, G53011200" +County and PUMA "G5300170, G53010300" +County and PUMA "G5300190, G53010400" +County and PUMA "G5300210, G53010701" +County and PUMA "G5300210, G53010703" +County and PUMA "G5300230, G53010600" +County and PUMA "G5300250, G53010800" +County and PUMA "G5300270, G53011300" +County and PUMA "G5300290, G53010200" +County and PUMA "G5300310, G53011900" +County and PUMA "G5300330, G53011601" +County and PUMA "G5300330, G53011602" +County and PUMA "G5300330, G53011603" +County and PUMA "G5300330, G53011604" +County and PUMA "G5300330, G53011605" +County and PUMA "G5300330, G53011606" +County and PUMA "G5300330, G53011607" +County and PUMA "G5300330, G53011608" +County and PUMA "G5300330, G53011609" +County and PUMA "G5300330, G53011610" +County and PUMA "G5300330, G53011611" +County and PUMA "G5300330, G53011612" +County and PUMA "G5300330, G53011613" +County and PUMA "G5300330, G53011614" +County and PUMA "G5300330, G53011615" +County and PUMA "G5300330, G53011616" +County and PUMA "G5300350, G53011801" +County and PUMA "G5300350, G53011802" +County and PUMA "G5300370, G53010800" +County and PUMA "G5300390, G53011000" +County and PUMA "G5300410, G53011000" +County and PUMA "G5300430, G53010600" +County and PUMA "G5300450, G53011300" +County and PUMA "G5300470, G53010400" +County and PUMA "G5300490, G53011200" +County and PUMA "G5300510, G53010400" +County and PUMA "G5300530, G53011501" +County and PUMA "G5300530, G53011502" +County and PUMA "G5300530, G53011503" +County and PUMA "G5300530, G53011504" +County and PUMA "G5300530, G53011505" +County and PUMA "G5300530, G53011506" +County and PUMA "G5300530, G53011507" +County and PUMA "G5300550, G53010200" +County and PUMA "G5300570, G53010200" +County and PUMA "G5300590, G53011000" +County and PUMA "G5300610, G53011701" +County and PUMA "G5300610, G53011702" +County and PUMA "G5300610, G53011703" +County and PUMA "G5300610, G53011704" +County and PUMA "G5300610, G53011705" +County and PUMA "G5300610, G53011706" +County and PUMA "G5300630, G53010501" +County and PUMA "G5300630, G53010502" +County and PUMA "G5300630, G53010503" +County and PUMA "G5300630, G53010504" +County and PUMA "G5300650, G53010400" +County and PUMA "G5300670, G53011401" +County and PUMA "G5300670, G53011402" +County and PUMA "G5300690, G53011200" +County and PUMA "G5300710, G53010703" +County and PUMA "G5300730, G53010100" +County and PUMA "G5300750, G53010600" +County and PUMA "G5300770, G53010901" +County and PUMA "G5300770, G53010902" +County and PUMA "G5400010, G54000500" +County and PUMA "G5400030, G54000400" +County and PUMA "G5400050, G54000900" +County and PUMA "G5400070, G54000600" +County and PUMA "G5400090, G54000100" +County and PUMA "G5400110, G54000800" +County and PUMA "G5400130, G54000600" +County and PUMA "G5400150, G54001000" +County and PUMA "G5400170, G54000200" +County and PUMA "G5400190, G54001200" +County and PUMA "G5400210, G54000600" +County and PUMA "G5400230, G54000500" +County and PUMA "G5400250, G54001100" +County and PUMA "G5400270, G54000400" +County and PUMA "G5400290, G54000100" +County and PUMA "G5400310, G54000500" +County and PUMA "G5400330, G54000200" +County and PUMA "G5400350, G54000600" +County and PUMA "G5400370, G54000400" +County and PUMA "G5400390, G54001000" +County and PUMA "G5400410, G54000500" +County and PUMA "G5400430, G54000900" +County and PUMA "G5400450, G54001300" +County and PUMA "G5400470, G54001300" +County and PUMA "G5400490, G54000200" +County and PUMA "G5400510, G54000100" +County and PUMA "G5400530, G54000800" +County and PUMA "G5400550, G54001200" +County and PUMA "G5400570, G54000400" +County and PUMA "G5400590, G54001300" +County and PUMA "G5400610, G54000300" +County and PUMA "G5400630, G54001100" +County and PUMA "G5400650, G54000400" +County and PUMA "G5400670, G54001100" +County and PUMA "G5400690, G54000100" +County and PUMA "G5400710, G54000500" +County and PUMA "G5400730, G54000700" +County and PUMA "G5400750, G54001100" +County and PUMA "G5400770, G54000300" +County and PUMA "G5400790, G54000900" +County and PUMA "G5400810, G54001200" +County and PUMA "G5400830, G54000500" +County and PUMA "G5400850, G54000600" +County and PUMA "G5400870, G54000600" +County and PUMA "G5400890, G54001100" +County and PUMA "G5400910, G54000200" +County and PUMA "G5400930, G54000500" +County and PUMA "G5400950, G54000600" +County and PUMA "G5400970, G54000500" +County and PUMA "G5400990, G54000800" +County and PUMA "G5401010, G54001100" +County and PUMA "G5401030, G54000600" +County and PUMA "G5401050, G54000700" +County and PUMA "G5401070, G54000700" +County and PUMA "G5401090, G54001300" +County and PUMA "G5500010, G55001601" +County and PUMA "G5500030, G55000100" +County and PUMA "G5500050, G55055101" +County and PUMA "G5500070, G55000100" +County and PUMA "G5500090, G55000200" +County and PUMA "G5500090, G55000300" +County and PUMA "G5500110, G55000700" +County and PUMA "G5500130, G55000100" +County and PUMA "G5500150, G55001401" +County and PUMA "G5500170, G55055101" +County and PUMA "G5500170, G55055103" +County and PUMA "G5500190, G55055101" +County and PUMA "G5500210, G55001000" +County and PUMA "G5500230, G55000700" +County and PUMA "G5500250, G55000101" +County and PUMA "G5500250, G55000102" +County and PUMA "G5500250, G55000103" +County and PUMA "G5500270, G55001001" +County and PUMA "G5500290, G55001300" +County and PUMA "G5500310, G55000100" +County and PUMA "G5500330, G55055102" +County and PUMA "G5500350, G55055103" +County and PUMA "G5500370, G55001300" +County and PUMA "G5500390, G55001401" +County and PUMA "G5500410, G55000600" +County and PUMA "G5500430, G55000800" +County and PUMA "G5500450, G55000800" +County and PUMA "G5500470, G55001400" +County and PUMA "G5500490, G55000800" +County and PUMA "G5500510, G55000100" +County and PUMA "G5500530, G55000700" +County and PUMA "G5500550, G55001001" +County and PUMA "G5500570, G55001601" +County and PUMA "G5500590, G55010000" +County and PUMA "G5500610, G55001301" +County and PUMA "G5500630, G55000900" +County and PUMA "G5500650, G55000800" +County and PUMA "G5500670, G55000600" +County and PUMA "G5500690, G55000600" +County and PUMA "G5500710, G55001301" +County and PUMA "G5500730, G55001600" +County and PUMA "G5500750, G55001300" +County and PUMA "G5500770, G55001400" +County and PUMA "G5500780, G55001400" +County and PUMA "G5500790, G55040101" +County and PUMA "G5500790, G55040301" +County and PUMA "G5500790, G55040701" +County and PUMA "G5500790, G55041001" +County and PUMA "G5500790, G55041002" +County and PUMA "G5500790, G55041003" +County and PUMA "G5500790, G55041004" +County and PUMA "G5500790, G55041005" +County and PUMA "G5500810, G55000700" +County and PUMA "G5500830, G55001300" +County and PUMA "G5500850, G55000600" +County and PUMA "G5500870, G55001500" +County and PUMA "G5500890, G55020000" +County and PUMA "G5500910, G55000700" +County and PUMA "G5500930, G55000700" +County and PUMA "G5500950, G55055101" +County and PUMA "G5500970, G55001601" +County and PUMA "G5500990, G55000100" +County and PUMA "G5501010, G55030000" +County and PUMA "G5501030, G55000800" +County and PUMA "G5501050, G55002400" +County and PUMA "G5501070, G55000100" +County and PUMA "G5501090, G55055102" +County and PUMA "G5501110, G55001000" +County and PUMA "G5501130, G55000100" +County and PUMA "G5501150, G55001400" +County and PUMA "G5501170, G55002500" +County and PUMA "G5501190, G55000100" +County and PUMA "G5501210, G55000700" +County and PUMA "G5501230, G55000700" +County and PUMA "G5501250, G55000600" +County and PUMA "G5501270, G55050000" +County and PUMA "G5501290, G55000100" +County and PUMA "G5501310, G55020000" +County and PUMA "G5501330, G55070101" +County and PUMA "G5501330, G55070201" +County and PUMA "G5501330, G55070301" +County and PUMA "G5501350, G55001400" +County and PUMA "G5501370, G55001400" +County and PUMA "G5501390, G55001501" +County and PUMA "G5501410, G55001601" +County and PUMA "G5600010, G56000300" +County and PUMA "G5600030, G56000100" +County and PUMA "G5600050, G56000200" +County and PUMA "G5600070, G56000400" +County and PUMA "G5600090, G56000400" +County and PUMA "G5600110, G56000200" +County and PUMA "G5600130, G56000500" +County and PUMA "G5600150, G56000200" +County and PUMA "G5600170, G56000500" +County and PUMA "G5600190, G56000200" +County and PUMA "G5600210, G56000300" +County and PUMA "G5600230, G56000100" +County and PUMA "G5600250, G56000400" +County and PUMA "G5600270, G56000200" +County and PUMA "G5600290, G56000100" +County and PUMA "G5600310, G56000200" +County and PUMA "G5600330, G56000100" +County and PUMA "G5600350, G56000500" +County and PUMA "G5600370, G56000500" +County and PUMA "G5600390, G56000100" +County and PUMA "G5600410, G56000500" +County and PUMA "G5600430, G56000200" +County and PUMA "G5600450, G56000200" +County and PUMA "G7200010, G72000401" +County and PUMA "G7200030, G72000101" +County and PUMA "G7200050, G72000102" +County and PUMA "G7200070, G72000602" +County and PUMA "G7200090, G72000602" +County and PUMA "G7200110, G72000101" +County and PUMA "G7200130, G72000301" +County and PUMA "G7200150, G72000701" +County and PUMA "G7200170, G72000301" +County and PUMA "G7200190, G72000601" +County and PUMA "G7200210, G72000801" +County and PUMA "G7200210, G72000802" +County and PUMA "G7200230, G72000201" +County and PUMA "G7200250, G72001001" +County and PUMA "G7200270, G72000302" +County and PUMA "G7200290, G72000902" +County and PUMA "G7200310, G72000901" +County and PUMA "G7200310, G72000902" +County and PUMA "G7200330, G72000803" +County and PUMA "G7200350, G72000602" +County and PUMA "G7200370, G72001101" +County and PUMA "G7200390, G72000501" +County and PUMA "G7200410, G72000602" +County and PUMA "G7200430, G72000403" +County and PUMA "G7200450, G72000601" +County and PUMA "G7200470, G72000601" +County and PUMA "G7200490, G72001101" +County and PUMA "G7200510, G72000502" +County and PUMA "G7200530, G72001101" +County and PUMA "G7200540, G72000301" +County and PUMA "G7200550, G72000401" +County and PUMA "G7200570, G72000701" +County and PUMA "G7200590, G72000401" +County and PUMA "G7200610, G72000803" +County and PUMA "G7200630, G72001002" +County and PUMA "G7200650, G72000302" +County and PUMA "G7200670, G72000202" +County and PUMA "G7200690, G72001102" +County and PUMA "G7200710, G72000102" +County and PUMA "G7200730, G72000402" +County and PUMA "G7200750, G72000403" +County and PUMA "G7200770, G72001002" +County and PUMA "G7200790, G72000201" +County and PUMA "G7200810, G72000302" +County and PUMA "G7200830, G72000202" +County and PUMA "G7200850, G72001002" +County and PUMA "G7200870, G72000902" +County and PUMA "G7200890, G72001101" +County and PUMA "G7200910, G72000501" +County and PUMA "G7200930, G72000202" +County and PUMA "G7200950, G72000701" +County and PUMA "G7200970, G72000202" +County and PUMA "G7200990, G72000101" +County and PUMA "G7201010, G72000501" +County and PUMA "G7201030, G72001102" +County and PUMA "G7201050, G72000601" +County and PUMA "G7201070, G72000601" +County and PUMA "G7201090, G72000701" +County and PUMA "G7201110, G72000401" +County and PUMA "G7201130, G72000402" +County and PUMA "G7201150, G72000102" +County and PUMA "G7201170, G72000101" +County and PUMA "G7201190, G72001101" +County and PUMA "G7201210, G72000201" +County and PUMA "G7201230, G72000701" +County and PUMA "G7201250, G72000201" +County and PUMA "G7201270, G72000804" +County and PUMA "G7201270, G72000805" +County and PUMA "G7201270, G72000806" +County and PUMA "G7201290, G72001002" +County and PUMA "G7201310, G72000101" +County and PUMA "G7201330, G72000403" +County and PUMA "G7201350, G72000503" +County and PUMA "G7201370, G72000502" +County and PUMA "G7201390, G72000902" +County and PUMA "G7201410, G72000302" +County and PUMA "G7201430, G72000503" +County and PUMA "G7201450, G72000501" +County and PUMA "G7201470, G72001101" +County and PUMA "G7201490, G72000403" +County and PUMA "G7201510, G72001102" +County and PUMA "G7201530, G72000401" +Custom State AK +Custom State Others +Dehumidifier "65 pints/day, 50% RH" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=1.8 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 +Dehumidifier "65 pints/day, 50% RH, 2.0 EF" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=2 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 +Dehumidifier "65 pints/day, 60% RH" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=1.8 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.6 dehumidifier_fraction_dehumidification_load_served=1 +Dehumidifier None ResStockArguments dehumidifier_type=none dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=0 dehumidifier_capacity=40 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 +Dishwasher 144 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=144 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=13 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 199 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=199 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=18 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 220 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=220 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=19 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 255 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=255 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=21 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 270 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=270 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=22 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 290 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=290 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=23 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 318 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=318 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=25 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher None ResStockArguments dishwasher_present=false dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=0 dishwasher_label_electric_rate=0 dishwasher_label_gas_rate=0 dishwasher_label_annual_gas_cost=0 dishwasher_label_usage=0 dishwasher_place_setting_capacity=0 +Dishwasher Void +Dishwasher Usage Level 100% Usage ResStockArguments dishwasher_usage_multiplier=1.0 +Dishwasher Usage Level 120% Usage ResStockArguments dishwasher_usage_multiplier=1.2 +Dishwasher Usage Level 80% Usage ResStockArguments dishwasher_usage_multiplier=0.8 +Door Area 20 ft^2 ResStockArguments door_area=20 +Door Area 30 ft^2 ResStockArguments door_area=30 +Door Area 40 ft^2 ResStockArguments door_area=40 +Doors Fiberglass ResStockArguments door_rvalue=5 +Doors Steel ResStockArguments door_rvalue=5 +Doors Wood ResStockArguments door_rvalue=2.1 +Duct Leakage and Insulation "0% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0 ducts_return_leakage_to_outside_value=0 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "10% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "10% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "10% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "10% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "14% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "14% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "14% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "14% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "15% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "15% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "15% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "15% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "20% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "20% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "20% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "20% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "22.5% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "22.5% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "22.5% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "22.5% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "24% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "24% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "24% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "24% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "30% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "30% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "30% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "30% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "34% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "34% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "34% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "34% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "53% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "53% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "53% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "53% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "6% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "6% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "6% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "6% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "7.5% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "7.5% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "7.5% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "7.5% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "85% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "85% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "85% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "85% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation None ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0 ducts_return_leakage_to_outside_value=0 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Location Attic ResStockArguments ducts_supply_location=attic ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=attic ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location Crawlspace ResStockArguments ducts_supply_location=crawlspace ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=crawlspace ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location Garage ResStockArguments ducts_supply_location=garage ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=garage ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location Heated Basement ResStockArguments ducts_supply_location=basement - conditioned ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=basement - conditioned ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location Living Space ResStockArguments ducts_supply_location=conditioned space ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=conditioned space ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location None ResStockArguments ducts_supply_location=conditioned space ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=conditioned space ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=0 +Duct Location Unheated Basement ResStockArguments ducts_supply_location=basement - unconditioned ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=basement - unconditioned ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Eaves 1 ft ResStockArguments geometry_eaves_depth=1 +Eaves 2 ft ResStockArguments geometry_eaves_depth=2 +Eaves 3 ft ResStockArguments geometry_eaves_depth=3 +Eaves None ResStockArguments geometry_eaves_depth=0 +Electric Vehicle "EV, 4000 miles, 0.3 kWh/mi" ResStockArguments misc_plug_loads_vehicle_present=true misc_plug_loads_vehicle_annual_kwh=1481 misc_plug_loads_vehicle_usage_multiplier=1.0 misc_plug_loads_vehicle_2_usage_multiplier=1.0 +Electric Vehicle "EV, 5000 miles, 0.3 kWh/mi" ResStockArguments misc_plug_loads_vehicle_present=true misc_plug_loads_vehicle_annual_kwh=1852 misc_plug_loads_vehicle_usage_multiplier=1.0 misc_plug_loads_vehicle_2_usage_multiplier=1.0 +Electric Vehicle None ResStockArguments misc_plug_loads_vehicle_present=false misc_plug_loads_vehicle_annual_kwh=0 misc_plug_loads_vehicle_usage_multiplier=0 misc_plug_loads_vehicle_2_usage_multiplier=0 +Energystar Climate Zone 2023 North-Central +Energystar Climate Zone 2023 Northern +Energystar Climate Zone 2023 South-Central +Energystar Climate Zone 2023 Southern +Energystar Climate Zone 2023 Void +Federal Poverty Level 0-100% +Federal Poverty Level 100-150% +Federal Poverty Level 150-200% +Federal Poverty Level 200-300% +Federal Poverty Level 300-400% +Federal Poverty Level 400%+ +Federal Poverty Level Not Available +Generation And Emissions Assessment Region AZNMc +Generation And Emissions Assessment Region CAMXc +Generation And Emissions Assessment Region ERCTc +Generation And Emissions Assessment Region FRCCc +Generation And Emissions Assessment Region MROEc +Generation And Emissions Assessment Region MROWc +Generation And Emissions Assessment Region NEWEc +Generation And Emissions Assessment Region NWPPc +Generation And Emissions Assessment Region NYSTc +Generation And Emissions Assessment Region None +Generation And Emissions Assessment Region RFCEc +Generation And Emissions Assessment Region RFCMc +Generation And Emissions Assessment Region RFCWc +Generation And Emissions Assessment Region RMPAc +Generation And Emissions Assessment Region SPNOc +Generation And Emissions Assessment Region SPSOc +Generation And Emissions Assessment Region SRMVc +Generation And Emissions Assessment Region SRMWc +Generation And Emissions Assessment Region SRSOc +Generation And Emissions Assessment Region SRTVc +Generation And Emissions Assessment Region SRVCc +Geometry Attic Type Finished Attic or Cathedral Ceilings ResStockArguments geometry_attic_type=ConditionedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 +Geometry Attic Type None ResStockArguments geometry_attic_type=FlatRoof geometry_roof_type=gable geometry_roof_pitch=6:12 +Geometry Attic Type Unvented Attic ResStockArguments geometry_attic_type=UnventedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 +Geometry Attic Type Vented Attic ResStockArguments geometry_attic_type=VentedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 +Geometry Building Horizontal Location MF Left ResStockArguments geometry_unit_horizontal_location=Left +Geometry Building Horizontal Location MF Middle ResStockArguments geometry_unit_horizontal_location=Middle +Geometry Building Horizontal Location MF None +Geometry Building Horizontal Location MF Not Applicable ResStockArguments geometry_unit_horizontal_location=None +Geometry Building Horizontal Location MF Right ResStockArguments geometry_unit_horizontal_location=Right +Geometry Building Horizontal Location SFA Left ResStockArguments geometry_unit_horizontal_location=Left +Geometry Building Horizontal Location SFA Middle ResStockArguments geometry_unit_horizontal_location=Middle +Geometry Building Horizontal Location SFA None +Geometry Building Horizontal Location SFA Right ResStockArguments geometry_unit_horizontal_location=Right +Geometry Building Level MF Bottom ResStockArguments geometry_unit_level=Bottom +Geometry Building Level MF Middle ResStockArguments geometry_unit_level=Middle +Geometry Building Level MF None +Geometry Building Level MF Top ResStockArguments geometry_unit_level=Top +Geometry Building Number Units MF 10 ResStockArguments geometry_building_num_units=10 +Geometry Building Number Units MF 102 ResStockArguments geometry_building_num_units=102 +Geometry Building Number Units MF 11 ResStockArguments geometry_building_num_units=11 +Geometry Building Number Units MF 116 ResStockArguments geometry_building_num_units=116 +Geometry Building Number Units MF 12 ResStockArguments geometry_building_num_units=12 +Geometry Building Number Units MF 13 ResStockArguments geometry_building_num_units=13 +Geometry Building Number Units MF 14 ResStockArguments geometry_building_num_units=14 +Geometry Building Number Units MF 15 ResStockArguments geometry_building_num_units=15 +Geometry Building Number Units MF 16 ResStockArguments geometry_building_num_units=16 +Geometry Building Number Units MF 17 ResStockArguments geometry_building_num_units=17 +Geometry Building Number Units MF 18 ResStockArguments geometry_building_num_units=18 +Geometry Building Number Units MF 183 ResStockArguments geometry_building_num_units=183 +Geometry Building Number Units MF 19 ResStockArguments geometry_building_num_units=19 +Geometry Building Number Units MF 2 ResStockArguments geometry_building_num_units=2 +Geometry Building Number Units MF 20 ResStockArguments geometry_building_num_units=20 +Geometry Building Number Units MF 21 ResStockArguments geometry_building_num_units=21 +Geometry Building Number Units MF 24 ResStockArguments geometry_building_num_units=24 +Geometry Building Number Units MF 3 ResStockArguments geometry_building_num_units=3 +Geometry Building Number Units MF 30 ResStockArguments geometry_building_num_units=30 +Geometry Building Number Units MF 323 ResStockArguments geometry_building_num_units=323 +Geometry Building Number Units MF 326 ResStockArguments geometry_building_num_units=326 +Geometry Building Number Units MF 36 ResStockArguments geometry_building_num_units=36 +Geometry Building Number Units MF 4 ResStockArguments geometry_building_num_units=4 +Geometry Building Number Units MF 43 ResStockArguments geometry_building_num_units=43 +Geometry Building Number Units MF 5 ResStockArguments geometry_building_num_units=5 +Geometry Building Number Units MF 6 ResStockArguments geometry_building_num_units=6 +Geometry Building Number Units MF 67 ResStockArguments geometry_building_num_units=67 +Geometry Building Number Units MF 7 ResStockArguments geometry_building_num_units=7 +Geometry Building Number Units MF 8 ResStockArguments geometry_building_num_units=8 +Geometry Building Number Units MF 9 ResStockArguments geometry_building_num_units=9 +Geometry Building Number Units MF None +Geometry Building Number Units SFA 10 ResStockArguments geometry_building_num_units=10 +Geometry Building Number Units SFA 12 ResStockArguments geometry_building_num_units=12 +Geometry Building Number Units SFA 144 ResStockArguments geometry_building_num_units=144 +Geometry Building Number Units SFA 15 ResStockArguments geometry_building_num_units=15 +Geometry Building Number Units SFA 16 ResStockArguments geometry_building_num_units=16 +Geometry Building Number Units SFA 2 ResStockArguments geometry_building_num_units=2 +Geometry Building Number Units SFA 20 ResStockArguments geometry_building_num_units=20 +Geometry Building Number Units SFA 24 ResStockArguments geometry_building_num_units=24 +Geometry Building Number Units SFA 3 ResStockArguments geometry_building_num_units=3 +Geometry Building Number Units SFA 30 ResStockArguments geometry_building_num_units=30 +Geometry Building Number Units SFA 36 ResStockArguments geometry_building_num_units=36 +Geometry Building Number Units SFA 4 ResStockArguments geometry_building_num_units=4 +Geometry Building Number Units SFA 5 ResStockArguments geometry_building_num_units=5 +Geometry Building Number Units SFA 50 ResStockArguments geometry_building_num_units=50 +Geometry Building Number Units SFA 6 ResStockArguments geometry_building_num_units=6 +Geometry Building Number Units SFA 60 ResStockArguments geometry_building_num_units=60 +Geometry Building Number Units SFA 7 ResStockArguments geometry_building_num_units=7 +Geometry Building Number Units SFA 8 ResStockArguments geometry_building_num_units=8 +Geometry Building Number Units SFA 9 ResStockArguments geometry_building_num_units=9 +Geometry Building Number Units SFA 90 ResStockArguments geometry_building_num_units=90 +Geometry Building Number Units SFA None +Geometry Building Type ACS 10 to 19 Unit +Geometry Building Type ACS 2 Unit +Geometry Building Type ACS 20 to 49 Unit +Geometry Building Type ACS 3 or 4 Unit +Geometry Building Type ACS 5 to 9 Unit +Geometry Building Type ACS 50 or more Unit +Geometry Building Type ACS Mobile Home +Geometry Building Type ACS Single-Family Attached +Geometry Building Type ACS Single-Family Detached +Geometry Building Type Height "Multifamily with 5+ units, 1-3 stories" +Geometry Building Type Height "Multifamily with 5+ units, 4-7 stories" +Geometry Building Type Height "Multifamily with 5+ units, 8+ stories" +Geometry Building Type Height Mobile Home +Geometry Building Type Height Multifamily with 2-4 Units +Geometry Building Type Height Single-Family Attached +Geometry Building Type Height Single-Family Detached +Geometry Building Type RECS Mobile Home ResStockArguments geometry_unit_type=single-family detached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=1.8 +Geometry Building Type RECS Multi-Family with 2 - 4 Units ResStockArguments geometry_unit_type=apartment unit geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 +Geometry Building Type RECS Multi-Family with 5+ Units ResStockArguments geometry_unit_type=apartment unit geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 +Geometry Building Type RECS Single-Family Attached ResStockArguments geometry_unit_type=single-family attached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 +Geometry Building Type RECS Single-Family Detached ResStockArguments geometry_unit_type=single-family detached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=1.8 +Geometry Floor Area 0-499 ResStockArguments geometry_unit_cfa_bin=0-499 geometry_unit_cfa=auto geometry_garage_protrusion=0.75 +Geometry Floor Area 1000-1499 ResStockArguments geometry_unit_cfa_bin=1000-1499 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 1500-1999 ResStockArguments geometry_unit_cfa_bin=1500-1999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 2000-2499 ResStockArguments geometry_unit_cfa_bin=2000-2499 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 2500-2999 ResStockArguments geometry_unit_cfa_bin=2500-2999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 3000-3999 ResStockArguments geometry_unit_cfa_bin=3000-3999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 4000+ ResStockArguments geometry_unit_cfa_bin=4000+ geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 500-749 ResStockArguments geometry_unit_cfa_bin=500-749 geometry_unit_cfa=auto geometry_garage_protrusion=0.75 +Geometry Floor Area 750-999 ResStockArguments geometry_unit_cfa_bin=750-999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area Bin 0-1499 +Geometry Floor Area Bin 1500-2499 +Geometry Floor Area Bin 2500-3999 +Geometry Floor Area Bin 4000+ +Geometry Foundation Type Ambient ResStockArguments geometry_foundation_type=Ambient geometry_foundation_height=4 geometry_foundation_height_above_grade=4 geometry_rim_joist_height=0 +Geometry Foundation Type Conditioned Crawlspace ResStockArguments geometry_foundation_type=ConditionedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Foundation Type Heated Basement ResStockArguments geometry_foundation_type=ConditionedBasement geometry_foundation_height=8 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Foundation Type Slab ResStockArguments geometry_foundation_type=SlabOnGrade geometry_foundation_height=0 geometry_foundation_height_above_grade=0 geometry_rim_joist_height=0 +Geometry Foundation Type Unheated Basement ResStockArguments geometry_foundation_type=UnconditionedBasement geometry_foundation_height=8 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Foundation Type Unvented Crawlspace ResStockArguments geometry_foundation_type=UnventedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Foundation Type Vented Crawlspace ResStockArguments geometry_foundation_type=VentedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Garage 1 Car ResStockArguments geometry_garage_width=12 geometry_garage_depth=24 geometry_garage_position=Right +Geometry Garage 2 Car ResStockArguments geometry_garage_width=24 geometry_garage_depth=24 geometry_garage_position=Right +Geometry Garage 3 Car ResStockArguments geometry_garage_width=36 geometry_garage_depth=24 geometry_garage_position=Right +Geometry Garage None ResStockArguments geometry_garage_width=0 geometry_garage_depth=24 geometry_garage_position=Right +Geometry Heated Basement No +Geometry Heated Basement Yes +Geometry Number Units ACS bins 10 to 19 Units +Geometry Number Units ACS bins 20 to 49 Units +Geometry Number Units ACS bins 5 to 9 Units +Geometry Number Units ACS bins 50 or more +Geometry Number Units ACS bins <5 +Geometry Space Combination "Mobile Home, Ambient, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Slab, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Slab, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage" +Geometry Space Combination Void +Geometry Stories 1 ResStockArguments geometry_num_floors_above_grade=1 +Geometry Stories 10 ResStockArguments geometry_num_floors_above_grade=10 +Geometry Stories 11 ResStockArguments geometry_num_floors_above_grade=11 +Geometry Stories 12 ResStockArguments geometry_num_floors_above_grade=12 +Geometry Stories 13 ResStockArguments geometry_num_floors_above_grade=13 +Geometry Stories 14 ResStockArguments geometry_num_floors_above_grade=14 +Geometry Stories 15 ResStockArguments geometry_num_floors_above_grade=15 +Geometry Stories 2 ResStockArguments geometry_num_floors_above_grade=2 +Geometry Stories 20 ResStockArguments geometry_num_floors_above_grade=20 +Geometry Stories 21 ResStockArguments geometry_num_floors_above_grade=21 +Geometry Stories 3 ResStockArguments geometry_num_floors_above_grade=3 +Geometry Stories 35 ResStockArguments geometry_num_floors_above_grade=35 +Geometry Stories 4 ResStockArguments geometry_num_floors_above_grade=4 +Geometry Stories 5 ResStockArguments geometry_num_floors_above_grade=5 +Geometry Stories 6 ResStockArguments geometry_num_floors_above_grade=6 +Geometry Stories 7 ResStockArguments geometry_num_floors_above_grade=7 +Geometry Stories 8 ResStockArguments geometry_num_floors_above_grade=8 +Geometry Stories 9 ResStockArguments geometry_num_floors_above_grade=9 +Geometry Stories Low Rise 1 +Geometry Stories Low Rise 2 +Geometry Stories Low Rise 3 +Geometry Stories Low Rise 4+ +Geometry Story Bin 8+ +Geometry Story Bin <8 +Geometry Wall Exterior Finish "Aluminum, Light" ResStockArguments wall_siding_type=aluminum siding wall_color=light exterior_finish_r=0.6 +Geometry Wall Exterior Finish "Brick, Light" ResStockArguments wall_siding_type=brick veneer wall_color=light exterior_finish_r=0.7 +Geometry Wall Exterior Finish "Brick, Medium/Dark" ResStockArguments wall_siding_type=brick veneer wall_color=medium dark exterior_finish_r=0.7 +Geometry Wall Exterior Finish "Fiber-Cement, Light" ResStockArguments wall_siding_type=fiber cement siding wall_color=light exterior_finish_r=0.2 +Geometry Wall Exterior Finish "Shingle, Asbestos, Medium" ResStockArguments wall_siding_type=asbestos siding wall_color=medium exterior_finish_r=0.6 +Geometry Wall Exterior Finish "Shingle, Composition, Medium" ResStockArguments wall_siding_type=composite shingle siding wall_color=medium exterior_finish_r=0.6 +Geometry Wall Exterior Finish "Stucco, Light" ResStockArguments wall_siding_type=stucco wall_color=light exterior_finish_r=0.2 +Geometry Wall Exterior Finish "Stucco, Medium/Dark" ResStockArguments wall_siding_type=stucco wall_color=medium dark exterior_finish_r=0.2 +Geometry Wall Exterior Finish "Vinyl, Light" ResStockArguments wall_siding_type=vinyl siding wall_color=light exterior_finish_r=0.6 +Geometry Wall Exterior Finish "Wood, Medium/Dark" ResStockArguments wall_siding_type=wood siding wall_color=medium dark exterior_finish_r=1.4 +Geometry Wall Exterior Finish None ResStockArguments wall_siding_type=none wall_color=medium exterior_finish_r=0 +Geometry Wall Type Brick +Geometry Wall Type Concrete +Geometry Wall Type Steel Frame +Geometry Wall Type Void +Geometry Wall Type Wood Frame +Ground Thermal Conductivity 0.5 ResStockArguments site_ground_conductivity=0.5 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 0.8 ResStockArguments site_ground_conductivity=0.8 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 1.1 ResStockArguments site_ground_conductivity=1.1 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 1.4 ResStockArguments site_ground_conductivity=1.4 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 1.7 ResStockArguments site_ground_conductivity=1.7 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 2 ResStockArguments site_ground_conductivity=2.0 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 2.3 ResStockArguments site_ground_conductivity=2.3 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +Ground Thermal Conductivity 2.6 ResStockArguments site_ground_conductivity=2.6 site_ground_diffusivity=auto site_soil_and_moisture_type=auto +HVAC Cooling Autosizing Factor 40% Oversized ResStockArguments cooling_system_cooling_autosizing_factor=1.4 heat_pump_cooling_autosizing_factor=auto +HVAC Cooling Autosizing Factor None +HVAC Cooling Efficiency "AC, SEER 10" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=10 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 13" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 14" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=14 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 15" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=15 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 18" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=18 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 24.5" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=24.5 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 8" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=8 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "Room AC, EER 10.7" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=10.7 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "Room AC, EER 12.0" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=12 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "Room AC, EER 8.5" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=8.5 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "Room AC, EER 9.8" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=9.8 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency Ducted Heat Pump ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency Evaporative Cooler ResStockArguments cooling_system_type=evaporative cooler cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency Non-Ducted Heat Pump ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency None ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency Shared Cooling +HVAC Cooling Partial Space Conditioning 100% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=1 +HVAC Cooling Partial Space Conditioning 20% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.2 +HVAC Cooling Partial Space Conditioning 40% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.4 +HVAC Cooling Partial Space Conditioning 60% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.6 +HVAC Cooling Partial Space Conditioning 80% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.8 +HVAC Cooling Partial Space Conditioning <10% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.1 +HVAC Cooling Partial Space Conditioning None ResStockArguments cooling_system_fraction_cool_load_served=0 +HVAC Cooling Partial Space Conditioning Void +HVAC Cooling Type Central AC +HVAC Cooling Type Ducted Heat Pump +HVAC Cooling Type Evaporative or Swamp Cooler +HVAC Cooling Type Non-Ducted Heat Pump +HVAC Cooling Type None +HVAC Cooling Type Room AC +HVAC Detailed Performance Data Default ResStockArguments hvac_perf_data_capacity_type=auto hvac_perf_data_heating_outdoor_temperatures=auto hvac_perf_data_heating_min_speed_capacities=auto hvac_perf_data_heating_max_speed_capacities=auto hvac_perf_data_heating_min_speed_cops=auto hvac_perf_data_heating_max_speed_cops=auto hvac_perf_data_cooling_outdoor_temperatures=auto hvac_perf_data_cooling_min_speed_capacities=auto hvac_perf_data_cooling_max_speed_capacities=auto hvac_perf_data_cooling_min_speed_cops=auto hvac_perf_data_cooling_max_speed_cops=auto +HVAC Has Ducts No +HVAC Has Ducts Void +HVAC Has Ducts Yes +HVAC Has Shared System Cooling Only +HVAC Has Shared System Heating Only +HVAC Has Shared System Heating and Cooling +HVAC Has Shared System None +HVAC Has Shared System Void +HVAC Has Zonal Electric Heating No +HVAC Has Zonal Electric Heating Yes +HVAC Heating Autosizing Factor 40% Oversized ResStockArguments heating_system_heating_autosizing_factor=1.4 heating_system_2_heating_autosizing_factor=auto heat_pump_heating_autosizing_factor=auto heat_pump_backup_heating_autosizing_factor=auto +HVAC Heating Autosizing Factor None +HVAC Heating Efficiency "ASHP, SEER 10, 6.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=6.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 10.3, 7.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 11.5, 7.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=11.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 13, 7.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=13 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 13, 8.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=13 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 14, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 14.3, 8.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 15, 8.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 15, 9.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 16, 9.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 17, 8.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 18, 9.3 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 22, 10 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=10 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=22 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 14, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Electric Baseboard, 100% Efficiency" ResStockArguments heating_system_type=ElectricResistance heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Electric Boiler, 100% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Electric Furnace, 100% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Electric Wall Furnace, 100% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 72% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.72 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.76 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.8 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 82% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.82 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 85% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.85 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.9 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 95% AFUE, OAT Reset" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.95 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 96% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.96 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 60% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.6 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 68% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.68 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 72% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.72 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 76% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.76 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 80% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.8 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 85% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.85 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 90% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.9 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 92.5% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.925 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 96% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.96 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Wall/Floor Furnace, 60% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=0.6 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Wall/Floor Furnace, 68% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=0.68 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "GSHP, EER 16.6, COP 3.6" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=3.6 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=16.6 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=vertical geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "GSHP, EER 20.2, COP 4.2" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=4.2 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=20.2 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=vertical geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 14.5, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 14.5, 8.2 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 17, 9.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 17, 9.5 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 18.0, 9.6 HSPF, 60% Conditioned" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.6 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=0.6 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=0.6 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 18.0, 9.6 HSPF, 60% Conditioned, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.6 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=0.6 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=0.6 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 25, 12.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=12.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=25.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 25, 12.7 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=12.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=25.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 29.3, 14 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=14 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=29.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 29.3, 14 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=14 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=29.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 33, 13.3 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=13.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=33.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 33, 13.3 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=13.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=33.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency None ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=6.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency Shared Heating +HVAC Heating Efficiency Void +HVAC Heating Type Ducted Heat Pump +HVAC Heating Type Ducted Heating +HVAC Heating Type Non-Ducted Heat Pump +HVAC Heating Type Non-Ducted Heating +HVAC Heating Type None +HVAC Heating Type And Fuel Electricity ASHP +HVAC Heating Type And Fuel Electricity Baseboard +HVAC Heating Type And Fuel Electricity Electric Boiler +HVAC Heating Type And Fuel Electricity Electric Furnace +HVAC Heating Type And Fuel Electricity Electric Wall Furnace +HVAC Heating Type And Fuel Electricity MSHP +HVAC Heating Type And Fuel Electricity Other +HVAC Heating Type And Fuel Electricity Shared Heating +HVAC Heating Type And Fuel Fuel Oil Fuel Boiler +HVAC Heating Type And Fuel Fuel Oil Fuel Furnace +HVAC Heating Type And Fuel Fuel Oil Fuel Wall/Floor Furnace +HVAC Heating Type And Fuel Fuel Oil Shared Heating +HVAC Heating Type And Fuel Natural Gas Fuel Boiler +HVAC Heating Type And Fuel Natural Gas Fuel Furnace +HVAC Heating Type And Fuel Natural Gas Fuel Wall/Floor Furnace +HVAC Heating Type And Fuel Natural Gas Shared Heating +HVAC Heating Type And Fuel None +HVAC Heating Type And Fuel Other Fuel Fuel Boiler +HVAC Heating Type And Fuel Other Fuel Fuel Furnace +HVAC Heating Type And Fuel Other Fuel Fuel Wall/Floor Furnace +HVAC Heating Type And Fuel Other Fuel Shared Heating +HVAC Heating Type And Fuel Propane Fuel Boiler +HVAC Heating Type And Fuel Propane Fuel Furnace +HVAC Heating Type And Fuel Propane Fuel Wall/Floor Furnace +HVAC Heating Type And Fuel Propane Shared Heating +HVAC Heating Type And Fuel Void +HVAC Secondary Heating Efficiency "Electric Baseboard, 100% Efficiency" ResStockArguments heating_system_2_type=ElectricResistance heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Electric Portable Heater, 100% Efficiency" ResStockArguments heating_system_2_type=SpaceHeater heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 60% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.76 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.8 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.90 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 92.5% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.925 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Fireplace, 60% AFUE" ResStockArguments heating_system_2_type=Fireplace heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Furnace, 60% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Furnace, 76% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.76 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Furnace, 80% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.8 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Furnace, 92.5% AFUE" ResStockArguments heating_system_2_type=Furnace heating_system_2_heating_efficiency=0.925 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency None ResStockArguments heating_system_2_type=none heating_system_2_heating_efficiency=0 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency Shared Heating ResStockArguments heating_system_2_type=none heating_system_2_heating_efficiency=0 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Fuel Electricity ResStockArguments heating_system_2_fuel=electricity +HVAC Secondary Heating Fuel Fuel Oil ResStockArguments heating_system_2_fuel=fuel oil +HVAC Secondary Heating Fuel Natural Gas ResStockArguments heating_system_2_fuel=natural gas +HVAC Secondary Heating Fuel None ResStockArguments heating_system_2_fuel=electricity +HVAC Secondary Heating Fuel Other Fuel ResStockArguments heating_system_2_fuel=wood +HVAC Secondary Heating Fuel Propane ResStockArguments heating_system_2_fuel=propane +HVAC Secondary Heating Fuel Wood ResStockArguments heating_system_2_fuel=wood +HVAC Secondary Heating Partial Space Conditioning 0% ResStockArguments heating_system_2_fraction_heat_load_served=0 +HVAC Secondary Heating Partial Space Conditioning 10% ResStockArguments heating_system_2_fraction_heat_load_served=0.1 +HVAC Secondary Heating Partial Space Conditioning 20% ResStockArguments heating_system_2_fraction_heat_load_served=0.2 +HVAC Secondary Heating Partial Space Conditioning 30% ResStockArguments heating_system_2_fraction_heat_load_served=0.3 +HVAC Secondary Heating Partial Space Conditioning 40% ResStockArguments heating_system_2_fraction_heat_load_served=0.4 +HVAC Secondary Heating Partial Space Conditioning 49% ResStockArguments heating_system_2_fraction_heat_load_served=0.49 +HVAC Secondary Heating Partial Space Conditioning None ResStockArguments heating_system_2_fraction_heat_load_served=0 +HVAC Secondary Heating Type Ducted Heating +HVAC Secondary Heating Type Non-Ducted Heating +HVAC Secondary Heating Type None +HVAC Shared Efficiencies "Boiler Baseboards Heating Only, Electricity" ResStockArguments heating_system_type=Shared Boiler w/ Baseboard heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Shared Efficiencies "Boiler Baseboards Heating Only, Fuel" ResStockArguments heating_system_type=Shared Boiler w/ Baseboard heating_system_heating_efficiency=0.78 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Shared Efficiencies "Fan Coil Heating and Cooling, Electricity" ResStockArguments heating_system_type=Shared Boiler w/ Ductless Fan Coil heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Shared Efficiencies "Fan Coil Heating and Cooling, Fuel" ResStockArguments heating_system_type=Shared Boiler w/ Ductless Fan Coil heating_system_heating_efficiency=0.78 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Shared Efficiencies Fan Coil Cooling Only ResStockArguments cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false +HVAC Shared Efficiencies None +HVAC System Is Faulted No +HVAC System Is Faulted Yes +HVAC System Is Scaled No +HVAC System Is Scaled Yes +HVAC System Single Speed AC Airflow 154.8 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=154.8 +HVAC System Single Speed AC Airflow 204.4 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=204.4 +HVAC System Single Speed AC Airflow 254.0 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=254.0 +HVAC System Single Speed AC Airflow 303.5 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=303.5 +HVAC System Single Speed AC Airflow 353.1 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=353.1 +HVAC System Single Speed AC Airflow 402.7 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=402.7 +HVAC System Single Speed AC Airflow 452.3 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=452.3 +HVAC System Single Speed AC Airflow 501.9 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=501.9 +HVAC System Single Speed AC Airflow 551.5 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=551.5 +HVAC System Single Speed AC Airflow 601.0 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=601.0 +HVAC System Single Speed AC Airflow 650.6 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=650.6 +HVAC System Single Speed AC Airflow 700.2 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=700.2 +HVAC System Single Speed AC Airflow None +HVAC System Single Speed AC Charge 0.570 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.570 +HVAC System Single Speed AC Charge 0.709 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.709 +HVAC System Single Speed AC Charge 0.848 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.848 +HVAC System Single Speed AC Charge 0.988 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.988 +HVAC System Single Speed AC Charge 1.127 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.127 +HVAC System Single Speed AC Charge 1.266 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.266 +HVAC System Single Speed AC Charge 1.405 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.405 +HVAC System Single Speed AC Charge None +HVAC System Single Speed ASHP Airflow 154.8 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=154.8 +HVAC System Single Speed ASHP Airflow 204.4 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=204.4 +HVAC System Single Speed ASHP Airflow 254.0 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=254.0 +HVAC System Single Speed ASHP Airflow 303.5 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=303.5 +HVAC System Single Speed ASHP Airflow 353.1 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=353.1 +HVAC System Single Speed ASHP Airflow 402.7 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=402.7 +HVAC System Single Speed ASHP Airflow 452.3 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=452.3 +HVAC System Single Speed ASHP Airflow 501.9 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=501.9 +HVAC System Single Speed ASHP Airflow 551.5 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=551.5 +HVAC System Single Speed ASHP Airflow 601.0 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=601.0 +HVAC System Single Speed ASHP Airflow 650.6 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=650.6 +HVAC System Single Speed ASHP Airflow 700.2 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=700.2 +HVAC System Single Speed ASHP Airflow None +HVAC System Single Speed ASHP Charge 0.570 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.570 +HVAC System Single Speed ASHP Charge 0.709 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.709 +HVAC System Single Speed ASHP Charge 0.848 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.848 +HVAC System Single Speed ASHP Charge 0.988 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.988 +HVAC System Single Speed ASHP Charge 1.127 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.127 +HVAC System Single Speed ASHP Charge 1.266 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.266 +HVAC System Single Speed ASHP Charge 1.405 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.405 +HVAC System Single Speed ASHP Charge None +Has PV No +Has PV Yes +Heat Pump Backup Use Existing System ResStockArguments heat_pump_backup_use_existing_system=true +Heating Fuel Electricity ResStockArguments heating_system_fuel=electricity +Heating Fuel Fuel Oil ResStockArguments heating_system_fuel=fuel oil +Heating Fuel Natural Gas ResStockArguments heating_system_fuel=natural gas +Heating Fuel None ResStockArguments heating_system_fuel=natural gas +Heating Fuel Other Fuel ResStockArguments heating_system_fuel=wood +Heating Fuel Propane ResStockArguments heating_system_fuel=propane +Heating Fuel Wood ResStockArguments heating_system_fuel=wood +Heating Setpoint 55F ResStockArguments hvac_control_heating_weekday_setpoint_temp=55 hvac_control_heating_weekend_setpoint_temp=55 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 60F ResStockArguments hvac_control_heating_weekday_setpoint_temp=60 hvac_control_heating_weekend_setpoint_temp=60 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 62F ResStockArguments hvac_control_heating_weekday_setpoint_temp=62 hvac_control_heating_weekend_setpoint_temp=62 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 63F ResStockArguments hvac_control_heating_weekday_setpoint_temp=63 hvac_control_heating_weekend_setpoint_temp=63 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 64F ResStockArguments hvac_control_heating_weekday_setpoint_temp=64 hvac_control_heating_weekend_setpoint_temp=64 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 65F ResStockArguments hvac_control_heating_weekday_setpoint_temp=65 hvac_control_heating_weekend_setpoint_temp=65 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 66F ResStockArguments hvac_control_heating_weekday_setpoint_temp=66 hvac_control_heating_weekend_setpoint_temp=66 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 67F ResStockArguments hvac_control_heating_weekday_setpoint_temp=67 hvac_control_heating_weekend_setpoint_temp=67 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 68F ResStockArguments hvac_control_heating_weekday_setpoint_temp=68 hvac_control_heating_weekend_setpoint_temp=68 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 69F ResStockArguments hvac_control_heating_weekday_setpoint_temp=69 hvac_control_heating_weekend_setpoint_temp=69 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 70F ResStockArguments hvac_control_heating_weekday_setpoint_temp=70 hvac_control_heating_weekend_setpoint_temp=70 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 71F ResStockArguments hvac_control_heating_weekday_setpoint_temp=71 hvac_control_heating_weekend_setpoint_temp=71 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 71F w/ Building America season ResStockArguments hvac_control_heating_weekday_setpoint_temp=71 hvac_control_heating_weekend_setpoint_temp=71 use_auto_heating_season=true hvac_control_heating_season_period=auto +Heating Setpoint 72F ResStockArguments hvac_control_heating_weekday_setpoint_temp=72 hvac_control_heating_weekend_setpoint_temp=72 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 73F ResStockArguments hvac_control_heating_weekday_setpoint_temp=73 hvac_control_heating_weekend_setpoint_temp=73 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 74F ResStockArguments hvac_control_heating_weekday_setpoint_temp=74 hvac_control_heating_weekend_setpoint_temp=74 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 75F ResStockArguments hvac_control_heating_weekday_setpoint_temp=75 hvac_control_heating_weekend_setpoint_temp=75 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 76F ResStockArguments hvac_control_heating_weekday_setpoint_temp=76 hvac_control_heating_weekend_setpoint_temp=76 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 78F ResStockArguments hvac_control_heating_weekday_setpoint_temp=78 hvac_control_heating_weekend_setpoint_temp=78 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 80F ResStockArguments hvac_control_heating_weekday_setpoint_temp=80 hvac_control_heating_weekend_setpoint_temp=80 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint Has Offset No +Heating Setpoint Has Offset Yes +Heating Setpoint Offset Magnitude 0F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=0 hvac_control_heating_weekend_setpoint_offset_magnitude=0 +Heating Setpoint Offset Magnitude 12F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=12 hvac_control_heating_weekend_setpoint_offset_magnitude=12 +Heating Setpoint Offset Magnitude 3F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=3 hvac_control_heating_weekend_setpoint_offset_magnitude=3 +Heating Setpoint Offset Magnitude 6F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=6 hvac_control_heating_weekend_setpoint_offset_magnitude=6 +Heating Setpoint Offset Period Day ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day and Night ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1" +Heating Setpoint Offset Period Day and Night +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1" +Heating Setpoint Offset Period Day and Night +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Heating Setpoint Offset Period Day and Night +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Heating Setpoint Offset Period Day and Night +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0" +Heating Setpoint Offset Period Day and Night +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0" +Heating Setpoint Offset Period Day and Night -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1" +Heating Setpoint Offset Period Day and Night -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1" +Heating Setpoint Offset Period Day and Night -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1" +Heating Setpoint Offset Period Day and Night -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1" +Heating Setpoint Offset Period Day and Night -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" +Heating Setpoint Offset Period Night ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" +Heating Setpoint Offset Period Night +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" +Heating Setpoint Offset Period Night +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Night +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Night +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Night +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Night -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" +Heating Setpoint Offset Period Night -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" +Heating Setpoint Offset Period Night -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" +Heating Setpoint Offset Period Night -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" +Heating Setpoint Offset Period Night -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" +Heating Setpoint Offset Period None ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Holiday Lighting No Exterior Use ResStockArguments holiday_lighting_present=false holiday_lighting_daily_kwh=0 holiday_lighting_period=auto +Holiday Lighting None ResStockArguments holiday_lighting_present=false holiday_lighting_daily_kwh=0 holiday_lighting_period=auto +Hot Water Distribution "R-2, Demand" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=presence sensor demand control hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Distribution "R-2, Timer" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=timer hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Distribution "R-5, Timer" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=timer hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=5 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Distribution R-2 ResStockArguments hot_water_distribution_system_type=Standard hot_water_distribution_standard_piping_length=auto hot_water_distribution_recirc_control_type=no control hot_water_distribution_recirc_piping_length=0 hot_water_distribution_recirc_branch_piping_length=0 hot_water_distribution_recirc_pump_power=0 hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Distribution Uninsulated ResStockArguments hot_water_distribution_system_type=Standard hot_water_distribution_standard_piping_length=auto hot_water_distribution_recirc_control_type=no control hot_water_distribution_recirc_piping_length=0 hot_water_distribution_recirc_branch_piping_length=0 hot_water_distribution_recirc_pump_power=0 hot_water_distribution_pipe_r=0 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Fixtures "100% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=1.31 +Hot Water Fixtures "200% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=2.62 +Hot Water Fixtures "50% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=0.65 +Hot Water Fixtures 100% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.31 +Hot Water Fixtures 110% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.44 +Hot Water Fixtures 120% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.57 +Hot Water Fixtures 130% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.70 +Hot Water Fixtures 140% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.83 +Hot Water Fixtures 150% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.96 +Hot Water Fixtures 160% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=2.09 +Hot Water Fixtures 170% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=2.22 +Hot Water Fixtures 180% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=2.35 +Hot Water Fixtures 190% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=2.49 +Hot Water Fixtures 200% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=2.62 +Hot Water Fixtures 40% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.52 +Hot Water Fixtures 50% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.65 +Hot Water Fixtures 60% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.78 +Hot Water Fixtures 70% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.92 +Hot Water Fixtures 80% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.05 +Hot Water Fixtures 90% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.18 +Household Has Tribal Persons No +Household Has Tribal Persons Not Available +Household Has Tribal Persons Yes +ISO RTO Region CAISO +ISO RTO Region ERCOT +ISO RTO Region MISO +ISO RTO Region NEISO +ISO RTO Region NYISO +ISO RTO Region None +ISO RTO Region PJM +ISO RTO Region SPP +Income 10000-14999 +Income 100000-119999 +Income 120000-139999 +Income 140000-159999 +Income 15000-19999 +Income 160000-179999 +Income 180000-199999 +Income 20000-24999 +Income 200000+ +Income 25000-29999 +Income 30000-34999 +Income 35000-39999 +Income 40000-44999 +Income 45000-49999 +Income 50000-59999 +Income 60000-69999 +Income 70000-79999 +Income 80000-99999 +Income <10000 +Income Not Available +Income RECS2015 100000-119999 +Income RECS2015 120000-139999 +Income RECS2015 140000+ +Income RECS2015 20000-39999 +Income RECS2015 40000-59999 +Income RECS2015 60000-79999 +Income RECS2015 80000-99999 +Income RECS2015 <20000 +Income RECS2015 Not Available +Income RECS2020 100000-149999 +Income RECS2020 150000+ +Income RECS2020 20000-39999 +Income RECS2020 40000-59999 +Income RECS2020 60000-99999 +Income RECS2020 <20000 +Income RECS2020 Not Available +Infiltration "7 ACH50, 0.5 Shelter Coefficient" ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 0.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 0.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 0.75 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.75 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 1 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=1 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 1.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=1.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 10 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=10 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 11.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=11.25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 15 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=15 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 18.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=18.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 2 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=2 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 2.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=2.25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 20 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=20 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 3 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=3 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 3.75 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=3.75 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 30 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=30 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 4 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=4 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 4.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=4.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 40 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=40 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 5.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=5.25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 50 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=50 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 6 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=6 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 7 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 7.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 8 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=8 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration Reduction 15% ResStockArguments air_leakage_percent_reduction=15 +Infiltration Reduction 20% ResStockArguments air_leakage_percent_reduction=20 +Infiltration Reduction 25% ResStockArguments air_leakage_percent_reduction=25 +Insulation Ceiling None ResStockArguments ceiling_assembly_r=0 ceiling_insulation_r=0 +Insulation Ceiling R-13 ResStockArguments ceiling_assembly_r=14.6 ceiling_insulation_r=13 +Insulation Ceiling R-19 ResStockArguments ceiling_assembly_r=20.6 ceiling_insulation_r=19 +Insulation Ceiling R-30 ResStockArguments ceiling_assembly_r=31.6 ceiling_insulation_r=30 +Insulation Ceiling R-38 ResStockArguments ceiling_assembly_r=39.6 ceiling_insulation_r=38 +Insulation Ceiling R-49 ResStockArguments ceiling_assembly_r=50.6 ceiling_insulation_r=49 +Insulation Ceiling R-60 ResStockArguments ceiling_assembly_r=61.6 ceiling_insulation_r=60 +Insulation Ceiling R-7 ResStockArguments ceiling_assembly_r=8.7 ceiling_insulation_r=7 +Insulation Ceiling Uninsulated ResStockArguments ceiling_assembly_r=2.1 ceiling_insulation_r=0 +Insulation Floor Ceiling R-13 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=17.8 floor_over_garage_assembly_r=17.8 +Insulation Floor Ceiling R-19 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=22.6 floor_over_garage_assembly_r=22.6 +Insulation Floor Ceiling R-30 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=30.3 floor_over_garage_assembly_r=30.3 +Insulation Floor Ceiling R-38 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=35.1 floor_over_garage_assembly_r=35.1 +Insulation Floor None ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=0 floor_over_garage_assembly_r=5.3 +Insulation Floor Uninsulated ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=5.3 floor_over_garage_assembly_r=5.3 +Insulation Foundation Wall "Wall R-10, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=10 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto +Insulation Foundation Wall "Wall R-13, Interior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=13 foundation_wall_insulation_location=interior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto +Insulation Foundation Wall "Wall R-15, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=15 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto +Insulation Foundation Wall "Wall R-5, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=5 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto +Insulation Foundation Wall None ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=0 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=0 foundation_wall_assembly_r=auto +Insulation Foundation Wall Uninsulated ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=0 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=0 foundation_wall_assembly_r=auto +Insulation Rim Joist "R-10, Exterior" ResStockArguments rim_joist_continuous_exterior_r=10 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Rim Joist "R-13, Interior" ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=13 rim_joist_assembly_interior_r=10.4 rim_joist_assembly_r=auto +Insulation Rim Joist "R-15, Exterior" ResStockArguments rim_joist_continuous_exterior_r=15 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Rim Joist "R-5, Exterior" ResStockArguments rim_joist_continuous_exterior_r=5 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Rim Joist None ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Rim Joist Uninsulated ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Roof "Finished, R-13" ResStockArguments roof_assembly_r=14.3 +Insulation Roof "Finished, R-19" ResStockArguments roof_assembly_r=21.2 +Insulation Roof "Finished, R-30" ResStockArguments roof_assembly_r=29.7 +Insulation Roof "Finished, R-38" ResStockArguments roof_assembly_r=36.5 +Insulation Roof "Finished, R-49" ResStockArguments roof_assembly_r=47.0 +Insulation Roof "Finished, R-7" ResStockArguments roof_assembly_r=10.2 +Insulation Roof "Finished, Uninsulated" ResStockArguments roof_assembly_r=3.7 +Insulation Roof "Unfinished, Uninsulated" ResStockArguments roof_assembly_r=2.3 +Insulation Sheathing R-10 ResStockArguments wall_continuous_exterior_r=10 +Insulation Sheathing R-15 ResStockArguments wall_continuous_exterior_r=15 +Insulation Sheathing R-5 ResStockArguments wall_continuous_exterior_r=5 +Insulation Slab "2ft R10 Perimeter, Vertical" ResStockArguments slab_perimeter_insulation_r=10 slab_perimeter_depth=2 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "2ft R10 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=10 slab_under_width=2 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "2ft R5 Perimeter, Vertical" ResStockArguments slab_perimeter_insulation_r=5 slab_perimeter_depth=2 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "2ft R5 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=5 slab_under_width=2 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "4ft R5 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=5 slab_under_width=4 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "R10 Whole Slab, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=10 slab_under_width=999 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab None ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab Uninsulated ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Wall "Brick, 12-in, 3-wythe, R-11" ResStockArguments wall_type=StructuralBrick wall_assembly_r=13.3 +Insulation Wall "Brick, 12-in, 3-wythe, R-15" ResStockArguments wall_type=StructuralBrick wall_assembly_r=15.9 +Insulation Wall "Brick, 12-in, 3-wythe, R-19" ResStockArguments wall_type=StructuralBrick wall_assembly_r=18.3 +Insulation Wall "Brick, 12-in, 3-wythe, R-7" ResStockArguments wall_type=StructuralBrick wall_assembly_r=10.3 +Insulation Wall "Brick, 12-in, 3-wythe, Uninsulated" ResStockArguments wall_type=StructuralBrick wall_assembly_r=4.9 +Insulation Wall "CMU, 12-in Hollow" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=4.9 +Insulation Wall "CMU, 12-in Hollow, R-10" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=12.9 +Insulation Wall "CMU, 6-in Concrete Filled" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=3.7 +Insulation Wall "CMU, 6-in Concrete-Filled, R-10" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=11.4 +Insulation Wall "CMU, 6-in Hollow, R-11" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=12.4 +Insulation Wall "CMU, 6-in Hollow, R-15" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=15 +Insulation Wall "CMU, 6-in Hollow, R-19" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=17.4 +Insulation Wall "CMU, 6-in Hollow, R-7" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=9.4 +Insulation Wall "CMU, 6-in Hollow, Uninsulated" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=4 +Insulation Wall "Double Wood Stud, R-33" ResStockArguments wall_type=DoubleWoodStud wall_assembly_r=28.1 +Insulation Wall "Double Wood Stud, R-45, Grade 3" ResStockArguments wall_type=DoubleWoodStud wall_assembly_r=25.1 +Insulation Wall "Generic, 10-in Grid ICF" ResStockArguments wall_type=WoodStud wall_assembly_r=12.4 +Insulation Wall "Generic, T-Mass Wall w/Metal Ties" ResStockArguments wall_type=WoodStud wall_assembly_r=9 +Insulation Wall "ICF, 2-in EPS, 12-in Concrete, 2-in EPS" ResStockArguments wall_type=InsulatedConcreteForms wall_assembly_r=22.5 +Insulation Wall "ICF, 2-in EPS, 4-in Concrete, 2-in EPS" ResStockArguments wall_type=InsulatedConcreteForms wall_assembly_r=20.4 +Insulation Wall "SIP, 3.6 in EPS Core, OSB int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=15.5 +Insulation Wall "SIP, 9.4 in EPS Core, Gypsum int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=35.8 +Insulation Wall "SIP, 9.4 in EPS Core, OSB int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=36 +Insulation Wall "Steel Stud, R-13" ResStockArguments wall_type=SteelFrame wall_assembly_r=7.9 +Insulation Wall "Steel Stud, R-25, Grade 3" ResStockArguments wall_type=SteelFrame wall_assembly_r=10.4 +Insulation Wall "Steel Stud, Uninsulated" ResStockArguments wall_type=SteelFrame wall_assembly_r=3 +Insulation Wall "Wood Stud, R-11" ResStockArguments wall_type=WoodStud wall_assembly_r=10.3 +Insulation Wall "Wood Stud, R-11, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=15.3 +Insulation Wall "Wood Stud, R-13" ResStockArguments wall_type=WoodStud wall_assembly_r=11.3 +Insulation Wall "Wood Stud, R-13, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=16.3 +Insulation Wall "Wood Stud, R-15" ResStockArguments wall_type=WoodStud wall_assembly_r=12.1 +Insulation Wall "Wood Stud, R-15, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=17.1 +Insulation Wall "Wood Stud, R-19" ResStockArguments wall_type=WoodStud wall_assembly_r=15.4 +Insulation Wall "Wood Stud, R-19, Grade 2" ResStockArguments wall_type=WoodStud wall_assembly_r=14.5 +Insulation Wall "Wood Stud, R-19, Grade 2, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=19.5 +Insulation Wall "Wood Stud, R-19, Grade 3" ResStockArguments wall_type=WoodStud wall_assembly_r=13.4 +Insulation Wall "Wood Stud, R-19, Grade 3, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=18.4 +Insulation Wall "Wood Stud, R-19, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=20.4 +Insulation Wall "Wood Stud, R-23 Closed Cell Spray Foam, 2x4, 16 in o.c." ResStockArguments wall_type=WoodStud wall_assembly_r=14.7 +Insulation Wall "Wood Stud, R-23 Closed Cell Spray Foam, 2x4, 16 in o.c., R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=19.7 +Insulation Wall "Wood Stud, R-36" ResStockArguments wall_type=WoodStud wall_assembly_r=22.3 +Insulation Wall "Wood Stud, R-36, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=27.3 +Insulation Wall "Wood Stud, R-7" ResStockArguments wall_type=WoodStud wall_assembly_r=8.7 +Insulation Wall "Wood Stud, R-7, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=13.7 +Insulation Wall "Wood Stud, Uninsulated" ResStockArguments wall_type=WoodStud wall_assembly_r=3.4 +Insulation Wall "Wood Stud, Uninsulated, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=8.4 +Insulation Wall Void +Interior Shading "Summer = 0.5, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.5 window_interior_shading_winter=0.7 +Interior Shading "Summer = 0.5, Winter = 0.95" ResStockArguments window_interior_shading_summer=0.5 window_interior_shading_winter=0.95 +Interior Shading "Summer = 0.6, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.6 window_interior_shading_winter=0.7 +Interior Shading "Summer = 0.7, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.7 +Interior Shading "Summer = 0.7, Winter = 0.85" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.85 +Interior Shading "Summer = 0.7, Winter = 0.95" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.95 +Lighting 100% CFL ResStockArguments lighting_present=true lighting_interior_fraction_cfl=1 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=1 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=1 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 +Lighting 100% Incandescent ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 +Lighting 100% LED ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=1 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=1 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=1 +Lighting 20% LED ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0.2 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0.2 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0.2 +Lighting 60% CFL ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0.6 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0.6 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0.6 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 +Lighting None ResStockArguments lighting_present=false lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 +Lighting Interior Use 100% Usage ResStockArguments lighting_interior_usage_multiplier=1.0 +Lighting Interior Use 95% Usage ResStockArguments lighting_interior_usage_multiplier=0.95 +Lighting Interior Use None ResStockArguments lighting_interior_usage_multiplier=0.0 +Lighting Other Use 100% Usage ResStockArguments lighting_exterior_usage_multiplier=1.0 lighting_garage_usage_multiplier=1.0 +Lighting Other Use 95% Usage ResStockArguments lighting_exterior_usage_multiplier=0.95 lighting_garage_usage_multiplier=0.95 +Lighting Other Use None ResStockArguments lighting_exterior_usage_multiplier=0.0 lighting_garage_usage_multiplier=0.0 +Location Region CR02 +Location Region CR03 +Location Region CR04 +Location Region CR05 +Location Region CR06 +Location Region CR07 +Location Region CR08 +Location Region CR09 +Location Region CR10 +Location Region CR11 +Location Region CRAK +Location Region CRHI +Mechanical Ventilation "ERV, 72%" ResStockArguments mech_vent_fan_type=energy recovery ventilator mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0.48 mech_vent_sensible_recovery_efficiency=0.72 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Mechanical Ventilation "HRV, 60%" ResStockArguments mech_vent_fan_type=heat recovery ventilator mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0.6 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Mechanical Ventilation Exhaust ResStockArguments mech_vent_fan_type=exhaust only mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Mechanical Ventilation None ResStockArguments mech_vent_fan_type=none mech_vent_flow_rate=0 mech_vent_hours_in_operation=0 mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=0 mech_vent_num_units_served=0 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Mechanical Ventilation Supply ResStockArguments mech_vent_fan_type=supply only mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Metropolitan and Micropolitan Statistical Area "Aberdeen, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Aberdeen, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Abilene, TX MSA" +Metropolitan and Micropolitan Statistical Area "Ada, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Adrian, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Akron, OH MSA" +Metropolitan and Micropolitan Statistical Area "Alamogordo, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Albany, GA MSA" +Metropolitan and Micropolitan Statistical Area "Albany, OR MSA" +Metropolitan and Micropolitan Statistical Area "Albany-Schenectady-Troy, NY MSA" +Metropolitan and Micropolitan Statistical Area "Albemarle, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Albert Lea, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Albertville, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Albuquerque, NM MSA" +Metropolitan and Micropolitan Statistical Area "Alexandria, LA MSA" +Metropolitan and Micropolitan Statistical Area "Alexandria, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Alice, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Allentown-Bethlehem-Easton, PA-NJ MSA" +Metropolitan and Micropolitan Statistical Area "Alma, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Alpena, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Altoona, PA MSA" +Metropolitan and Micropolitan Statistical Area "Altus, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Amarillo, TX MSA" +Metropolitan and Micropolitan Statistical Area "Americus, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Ames, IA MSA" +Metropolitan and Micropolitan Statistical Area "Amsterdam, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Anchorage, AK MSA" +Metropolitan and Micropolitan Statistical Area "Andrews, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Angola, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Ann Arbor, MI MSA" +Metropolitan and Micropolitan Statistical Area "Anniston-Oxford-Jacksonville, AL MSA" +Metropolitan and Micropolitan Statistical Area "Appleton, WI MSA" +Metropolitan and Micropolitan Statistical Area "Arcadia, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Ardmore, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Arkadelphia, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Arkansas City-Winfield, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Asheville, NC MSA" +Metropolitan and Micropolitan Statistical Area "Ashland, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Ashtabula, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Astoria, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Atchison, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Athens, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Athens, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Athens, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Athens-Clarke County, GA MSA" +Metropolitan and Micropolitan Statistical Area "Atlanta-Sandy Springs-Roswell, GA MSA" +Metropolitan and Micropolitan Statistical Area "Atlantic City-Hammonton, NJ MSA" +Metropolitan and Micropolitan Statistical Area "Auburn, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Auburn, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Auburn-Opelika, AL MSA" +Metropolitan and Micropolitan Statistical Area "Augusta-Richmond County, GA-SC MSA" +Metropolitan and Micropolitan Statistical Area "Augusta-Waterville, ME MicroSA" +Metropolitan and Micropolitan Statistical Area "Austin, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Austin-Round Rock, TX MSA" +Metropolitan and Micropolitan Statistical Area "Bainbridge, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Bakersfield, CA MSA" +Metropolitan and Micropolitan Statistical Area "Baltimore-Columbia-Towson, MD MSA" +Metropolitan and Micropolitan Statistical Area "Bangor, ME MSA" +Metropolitan and Micropolitan Statistical Area "Baraboo, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Bardstown, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Barnstable Town, MA MSA" +Metropolitan and Micropolitan Statistical Area "Barre, VT MicroSA" +Metropolitan and Micropolitan Statistical Area "Bartlesville, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Bastrop, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Batavia, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Batesville, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Baton Rouge, LA MSA" +Metropolitan and Micropolitan Statistical Area "Battle Creek, MI MSA" +Metropolitan and Micropolitan Statistical Area "Bay City, MI MSA" +Metropolitan and Micropolitan Statistical Area "Bay City, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Beatrice, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Beaumont-Port Arthur, TX MSA" +Metropolitan and Micropolitan Statistical Area "Beaver Dam, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Beckley, WV MSA" +Metropolitan and Micropolitan Statistical Area "Bedford, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Beeville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Bellefontaine, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Bellingham, WA MSA" +Metropolitan and Micropolitan Statistical Area "Bemidji, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Bend-Redmond, OR MSA" +Metropolitan and Micropolitan Statistical Area "Bennettsville, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Bennington, VT MicroSA" +Metropolitan and Micropolitan Statistical Area "Berlin, NH-VT MicroSA" +Metropolitan and Micropolitan Statistical Area "Big Rapids, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Big Spring, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Big Stone Gap, VA MicroSA" +Metropolitan and Micropolitan Statistical Area "Billings, MT MSA" +Metropolitan and Micropolitan Statistical Area "Binghamton, NY MSA" +Metropolitan and Micropolitan Statistical Area "Birmingham-Hoover, AL MSA" +Metropolitan and Micropolitan Statistical Area "Bismarck, ND MSA" +Metropolitan and Micropolitan Statistical Area "Blackfoot, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Blacksburg-Christiansburg-Radford, VA MSA" +Metropolitan and Micropolitan Statistical Area "Bloomington, IL MSA" +Metropolitan and Micropolitan Statistical Area "Bloomington, IN MSA" +Metropolitan and Micropolitan Statistical Area "Bloomsburg-Berwick, PA MSA" +Metropolitan and Micropolitan Statistical Area "Bluefield, WV-VA MicroSA" +Metropolitan and Micropolitan Statistical Area "Blytheville, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Bogalusa, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Boise City, ID MSA" +Metropolitan and Micropolitan Statistical Area "Boone, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Boone, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Borger, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Boston-Cambridge-Newton, MA-NH MSA" +Metropolitan and Micropolitan Statistical Area "Boulder, CO MSA" +Metropolitan and Micropolitan Statistical Area "Bowling Green, KY MSA" +Metropolitan and Micropolitan Statistical Area "Bozeman, MT MicroSA" +Metropolitan and Micropolitan Statistical Area "Bradford, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Brainerd, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Branson, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Breckenridge, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Bremerton-Silverdale, WA MSA" +Metropolitan and Micropolitan Statistical Area "Brenham, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Brevard, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Bridgeport-Stamford-Norwalk, CT MSA" +Metropolitan and Micropolitan Statistical Area "Brookhaven, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Brookings, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Brookings, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Brownsville-Harlingen, TX MSA" +Metropolitan and Micropolitan Statistical Area "Brownwood, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Brunswick, GA MSA" +Metropolitan and Micropolitan Statistical Area "Bucyrus, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Buffalo-Cheektowaga-Niagara Falls, NY MSA" +Metropolitan and Micropolitan Statistical Area "Burley, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Burlington, IA-IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Burlington, NC MSA" +Metropolitan and Micropolitan Statistical Area "Burlington-South Burlington, VT MSA" +Metropolitan and Micropolitan Statistical Area "Butte-Silver Bow, MT MicroSA" +Metropolitan and Micropolitan Statistical Area "Cadillac, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Calhoun, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "California-Lexington Park, MD MSA" +Metropolitan and Micropolitan Statistical Area "Cambridge, MD MicroSA" +Metropolitan and Micropolitan Statistical Area "Cambridge, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Camden, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Campbellsville, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Canon City, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Canton, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Canton-Massillon, OH MSA" +Metropolitan and Micropolitan Statistical Area "Cape Coral-Fort Myers, FL MSA" +Metropolitan and Micropolitan Statistical Area "Cape Girardeau, MO-IL MSA" +Metropolitan and Micropolitan Statistical Area "Carbondale-Marion, IL MSA" +Metropolitan and Micropolitan Statistical Area "Carlsbad-Artesia, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Carson City, NV MSA" +Metropolitan and Micropolitan Statistical Area "Casper, WY MSA" +Metropolitan and Micropolitan Statistical Area "Cedar City, UT MicroSA" +Metropolitan and Micropolitan Statistical Area "Cedar Rapids, IA MSA" +Metropolitan and Micropolitan Statistical Area "Cedartown, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Celina, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Centralia, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Centralia, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Chambersburg-Waynesboro, PA MSA" +Metropolitan and Micropolitan Statistical Area "Champaign-Urbana, IL MSA" +Metropolitan and Micropolitan Statistical Area "Charleston, WV MSA" +Metropolitan and Micropolitan Statistical Area "Charleston-Mattoon, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Charleston-North Charleston, SC MSA" +Metropolitan and Micropolitan Statistical Area "Charlotte-Concord-Gastonia, NC-SC MSA" +Metropolitan and Micropolitan Statistical Area "Charlottesville, VA MSA" +Metropolitan and Micropolitan Statistical Area "Chattanooga, TN-GA MSA" +Metropolitan and Micropolitan Statistical Area "Cheyenne, WY MSA" +Metropolitan and Micropolitan Statistical Area "Chicago-Naperville-Elgin, IL-IN-WI MSA" +Metropolitan and Micropolitan Statistical Area "Chico, CA MSA" +Metropolitan and Micropolitan Statistical Area "Chillicothe, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Cincinnati, OH-KY-IN MSA" +Metropolitan and Micropolitan Statistical Area "Claremont-Lebanon, NH-VT MicroSA" +Metropolitan and Micropolitan Statistical Area "Clarksburg, WV MicroSA" +Metropolitan and Micropolitan Statistical Area "Clarksdale, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Clarksville, TN-KY MSA" +Metropolitan and Micropolitan Statistical Area "Clearlake, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Cleveland, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Cleveland, TN MSA" +Metropolitan and Micropolitan Statistical Area "Cleveland-Elyria, OH MSA" +Metropolitan and Micropolitan Statistical Area "Clewiston, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Clinton, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Clovis, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Coeur d'Alene, ID MSA" +Metropolitan and Micropolitan Statistical Area "Coffeyville, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Coldwater, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "College Station-Bryan, TX MSA" +Metropolitan and Micropolitan Statistical Area "Colorado Springs, CO MSA" +Metropolitan and Micropolitan Statistical Area "Columbia, MO MSA" +Metropolitan and Micropolitan Statistical Area "Columbia, SC MSA" +Metropolitan and Micropolitan Statistical Area "Columbus, GA-AL MSA" +Metropolitan and Micropolitan Statistical Area "Columbus, IN MSA" +Metropolitan and Micropolitan Statistical Area "Columbus, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Columbus, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Columbus, OH MSA" +Metropolitan and Micropolitan Statistical Area "Concord, NH MicroSA" +Metropolitan and Micropolitan Statistical Area "Connersville, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Cookeville, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Coos Bay, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Cordele, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Corinth, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Cornelia, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Corning, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Corpus Christi, TX MSA" +Metropolitan and Micropolitan Statistical Area "Corsicana, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Cortland, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Corvallis, OR MSA" +Metropolitan and Micropolitan Statistical Area "Coshocton, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Craig, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Crawfordsville, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Crescent City, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Crestview-Fort Walton Beach-Destin, FL MSA" +Metropolitan and Micropolitan Statistical Area "Crossville, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Cullman, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Cullowhee, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Cumberland, MD-WV MSA" +Metropolitan and Micropolitan Statistical Area "Dallas-Fort Worth-Arlington, TX MSA" +Metropolitan and Micropolitan Statistical Area "Dalton, GA MSA" +Metropolitan and Micropolitan Statistical Area "Danville, IL MSA" +Metropolitan and Micropolitan Statistical Area "Danville, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Danville, VA MicroSA" +Metropolitan and Micropolitan Statistical Area "Daphne-Fairhope-Foley, AL MSA" +Metropolitan and Micropolitan Statistical Area "Davenport-Moline-Rock Island, IA-IL MSA" +Metropolitan and Micropolitan Statistical Area "Dayton, OH MSA" +Metropolitan and Micropolitan Statistical Area "Dayton, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "DeRidder, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Decatur, AL MSA" +Metropolitan and Micropolitan Statistical Area "Decatur, IL MSA" +Metropolitan and Micropolitan Statistical Area "Decatur, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Defiance, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Del Rio, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Deltona-Daytona Beach-Ormond Beach, FL MSA" +Metropolitan and Micropolitan Statistical Area "Deming, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Denver-Aurora-Lakewood, CO MSA" +Metropolitan and Micropolitan Statistical Area "Des Moines-West Des Moines, IA MSA" +Metropolitan and Micropolitan Statistical Area "Detroit-Warren-Dearborn, MI MSA" +Metropolitan and Micropolitan Statistical Area "Dickinson, ND MicroSA" +Metropolitan and Micropolitan Statistical Area "Dixon, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Dodge City, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Dothan, AL MSA" +Metropolitan and Micropolitan Statistical Area "Douglas, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Dover, DE MSA" +Metropolitan and Micropolitan Statistical Area "DuBois, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Dublin, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Dubuque, IA MSA" +Metropolitan and Micropolitan Statistical Area "Duluth, MN-WI MSA" +Metropolitan and Micropolitan Statistical Area "Dumas, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Duncan, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Dunn, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Durango, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Durant, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Durham-Chapel Hill, NC MSA" +Metropolitan and Micropolitan Statistical Area "Dyersburg, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Eagle Pass, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "East Stroudsburg, PA MSA" +Metropolitan and Micropolitan Statistical Area "Easton, MD MicroSA" +Metropolitan and Micropolitan Statistical Area "Eau Claire, WI MSA" +Metropolitan and Micropolitan Statistical Area "Edwards, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Effingham, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "El Campo, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "El Centro, CA MSA" +Metropolitan and Micropolitan Statistical Area "El Dorado, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "El Paso, TX MSA" +Metropolitan and Micropolitan Statistical Area "Elizabeth City, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Elizabethtown-Fort Knox, KY MSA" +Metropolitan and Micropolitan Statistical Area "Elk City, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Elkhart-Goshen, IN MSA" +Metropolitan and Micropolitan Statistical Area "Elkins, WV MicroSA" +Metropolitan and Micropolitan Statistical Area "Elko, NV MicroSA" +Metropolitan and Micropolitan Statistical Area "Ellensburg, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Elmira, NY MSA" +Metropolitan and Micropolitan Statistical Area "Emporia, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Enid, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Enterprise, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Erie, PA MSA" +Metropolitan and Micropolitan Statistical Area "Escanaba, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Espanola, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Eugene, OR MSA" +Metropolitan and Micropolitan Statistical Area "Eureka-Arcata-Fortuna, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Evanston, WY MicroSA" +Metropolitan and Micropolitan Statistical Area "Evansville, IN-KY MSA" +Metropolitan and Micropolitan Statistical Area "Fairbanks, AK MSA" +Metropolitan and Micropolitan Statistical Area "Fairfield, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Fairmont, WV MicroSA" +Metropolitan and Micropolitan Statistical Area "Fallon, NV MicroSA" +Metropolitan and Micropolitan Statistical Area "Fargo, ND-MN MSA" +Metropolitan and Micropolitan Statistical Area "Faribault-Northfield, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Farmington, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Farmington, NM MSA" +Metropolitan and Micropolitan Statistical Area "Fayetteville, NC MSA" +Metropolitan and Micropolitan Statistical Area "Fayetteville-Springdale-Rogers, AR-MO MSA" +Metropolitan and Micropolitan Statistical Area "Fergus Falls, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Fernley, NV MicroSA" +Metropolitan and Micropolitan Statistical Area "Findlay, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Fitzgerald, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Flagstaff, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Flint, MI MSA" +Metropolitan and Micropolitan Statistical Area "Florence, SC MSA" +Metropolitan and Micropolitan Statistical Area "Florence-Muscle Shoals, AL MSA" +Metropolitan and Micropolitan Statistical Area "Fond du Lac, WI MSA" +Metropolitan and Micropolitan Statistical Area "Forest City, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Forrest City, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Fort Collins, CO MSA" +Metropolitan and Micropolitan Statistical Area "Fort Dodge, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Fort Leonard Wood, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Fort Madison-Keokuk, IA-IL-MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Fort Morgan, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Fort Polk South, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Fort Smith, AR-OK MSA" +Metropolitan and Micropolitan Statistical Area "Fort Wayne, IN MSA" +Metropolitan and Micropolitan Statistical Area "Frankfort, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Frankfort, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Fredericksburg, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Freeport, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Fremont, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Fremont, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Fresno, CA MSA" +Metropolitan and Micropolitan Statistical Area "Gadsden, AL MSA" +Metropolitan and Micropolitan Statistical Area "Gaffney, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Gainesville, FL MSA" +Metropolitan and Micropolitan Statistical Area "Gainesville, GA MSA" +Metropolitan and Micropolitan Statistical Area "Gainesville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Galesburg, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Gallup, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Garden City, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Gardnerville Ranchos, NV MicroSA" +Metropolitan and Micropolitan Statistical Area "Georgetown, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Gettysburg, PA MSA" +Metropolitan and Micropolitan Statistical Area "Gillette, WY MicroSA" +Metropolitan and Micropolitan Statistical Area "Glasgow, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Glens Falls, NY MSA" +Metropolitan and Micropolitan Statistical Area "Glenwood Springs, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Gloversville, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Goldsboro, NC MSA" +Metropolitan and Micropolitan Statistical Area "Grand Forks, ND-MN MSA" +Metropolitan and Micropolitan Statistical Area "Grand Island, NE MSA" +Metropolitan and Micropolitan Statistical Area "Grand Junction, CO MSA" +Metropolitan and Micropolitan Statistical Area "Grand Rapids-Wyoming, MI MSA" +Metropolitan and Micropolitan Statistical Area "Grants Pass, OR MSA" +Metropolitan and Micropolitan Statistical Area "Grants, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Great Bend, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Great Falls, MT MSA" +Metropolitan and Micropolitan Statistical Area "Greeley, CO MSA" +Metropolitan and Micropolitan Statistical Area "Green Bay, WI MSA" +Metropolitan and Micropolitan Statistical Area "Greeneville, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Greenfield Town, MA MicroSA" +Metropolitan and Micropolitan Statistical Area "Greensboro-High Point, NC MSA" +Metropolitan and Micropolitan Statistical Area "Greensburg, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Greenville, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Greenville, NC MSA" +Metropolitan and Micropolitan Statistical Area "Greenville, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Greenville-Anderson-Mauldin, SC MSA" +Metropolitan and Micropolitan Statistical Area "Greenwood, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Greenwood, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Grenada, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Gulfport-Biloxi-Pascagoula, MS MSA" +Metropolitan and Micropolitan Statistical Area "Guymon, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Hagerstown-Martinsburg, MD-WV MSA" +Metropolitan and Micropolitan Statistical Area "Hailey, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Hammond, LA MSA" +Metropolitan and Micropolitan Statistical Area "Hanford-Corcoran, CA MSA" +Metropolitan and Micropolitan Statistical Area "Hannibal, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Harrisburg-Carlisle, PA MSA" +Metropolitan and Micropolitan Statistical Area "Harrison, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Harrisonburg, VA MSA" +Metropolitan and Micropolitan Statistical Area "Hartford-West Hartford-East Hartford, CT MSA" +Metropolitan and Micropolitan Statistical Area "Hastings, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Hattiesburg, MS MSA" +Metropolitan and Micropolitan Statistical Area "Hays, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Heber, UT MicroSA" +Metropolitan and Micropolitan Statistical Area "Helena, MT MicroSA" +Metropolitan and Micropolitan Statistical Area "Helena-West Helena, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Henderson, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Hereford, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Hermiston-Pendleton, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Hickory-Lenoir-Morganton, NC MSA" +Metropolitan and Micropolitan Statistical Area "Hillsdale, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Hilo, HI MicroSA" +Metropolitan and Micropolitan Statistical Area "Hilton Head Island-Bluffton-Beaufort, SC MSA" +Metropolitan and Micropolitan Statistical Area "Hinesville, GA MSA" +Metropolitan and Micropolitan Statistical Area "Hobbs, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Holland, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Homosassa Springs, FL MSA" +Metropolitan and Micropolitan Statistical Area "Hood River, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Hot Springs, AR MSA" +Metropolitan and Micropolitan Statistical Area "Houghton, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Houma-Thibodaux, LA MSA" +Metropolitan and Micropolitan Statistical Area "Houston-The Woodlands-Sugar Land, TX MSA" +Metropolitan and Micropolitan Statistical Area "Hudson, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Huntingdon, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Huntington, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Huntington-Ashland, WV-KY-OH MSA" +Metropolitan and Micropolitan Statistical Area "Huntsville, AL MSA" +Metropolitan and Micropolitan Statistical Area "Huntsville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Huron, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Hutchinson, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Hutchinson, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Idaho Falls, ID MSA" +Metropolitan and Micropolitan Statistical Area "Indiana, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Indianapolis-Carmel-Anderson, IN MSA" +Metropolitan and Micropolitan Statistical Area "Indianola, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Ionia, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Iowa City, IA MSA" +Metropolitan and Micropolitan Statistical Area "Iron Mountain, MI-WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Ithaca, NY MSA" +Metropolitan and Micropolitan Statistical Area "Jackson, MI MSA" +Metropolitan and Micropolitan Statistical Area "Jackson, MS MSA" +Metropolitan and Micropolitan Statistical Area "Jackson, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Jackson, TN MSA" +Metropolitan and Micropolitan Statistical Area "Jackson, WY-ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Jacksonville, FL MSA" +Metropolitan and Micropolitan Statistical Area "Jacksonville, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Jacksonville, NC MSA" +Metropolitan and Micropolitan Statistical Area "Jacksonville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Jamestown, ND MicroSA" +Metropolitan and Micropolitan Statistical Area "Jamestown-Dunkirk-Fredonia, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Janesville-Beloit, WI MSA" +Metropolitan and Micropolitan Statistical Area "Jasper, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Jefferson City, MO MSA" +Metropolitan and Micropolitan Statistical Area "Jefferson, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Jesup, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Johnson City, TN MSA" +Metropolitan and Micropolitan Statistical Area "Johnstown, PA MSA" +Metropolitan and Micropolitan Statistical Area "Jonesboro, AR MSA" +Metropolitan and Micropolitan Statistical Area "Joplin, MO MSA" +Metropolitan and Micropolitan Statistical Area "Junction City, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Juneau, AK MicroSA" +Metropolitan and Micropolitan Statistical Area "Kahului-Wailuku-Lahaina, HI MSA" +Metropolitan and Micropolitan Statistical Area "Kalamazoo-Portage, MI MSA" +Metropolitan and Micropolitan Statistical Area "Kalispell, MT MicroSA" +Metropolitan and Micropolitan Statistical Area "Kankakee, IL MSA" +Metropolitan and Micropolitan Statistical Area "Kansas City, MO-KS MSA" +Metropolitan and Micropolitan Statistical Area "Kapaa, HI MicroSA" +Metropolitan and Micropolitan Statistical Area "Kearney, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Keene, NH MicroSA" +Metropolitan and Micropolitan Statistical Area "Kendallville, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Kennett, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Kennewick-Richland, WA MSA" +Metropolitan and Micropolitan Statistical Area "Kerrville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Ketchikan, AK MicroSA" +Metropolitan and Micropolitan Statistical Area "Key West, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Kill Devil Hills, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Killeen-Temple, TX MSA" +Metropolitan and Micropolitan Statistical Area "Kingsport-Bristol-Bristol, TN-VA MSA" +Metropolitan and Micropolitan Statistical Area "Kingston, NY MSA" +Metropolitan and Micropolitan Statistical Area "Kingsville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Kinston, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Kirksville, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Klamath Falls, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Knoxville, TN MSA" +Metropolitan and Micropolitan Statistical Area "Kokomo, IN MSA" +Metropolitan and Micropolitan Statistical Area "La Crosse-Onalaska, WI-MN MSA" +Metropolitan and Micropolitan Statistical Area "La Grande, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "LaGrange, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Laconia, NH MicroSA" +Metropolitan and Micropolitan Statistical Area "Lafayette, LA MSA" +Metropolitan and Micropolitan Statistical Area "Lafayette-West Lafayette, IN MSA" +Metropolitan and Micropolitan Statistical Area "Lake Charles, LA MSA" +Metropolitan and Micropolitan Statistical Area "Lake City, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Lake Havasu City-Kingman, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Lakeland-Winter Haven, FL MSA" +Metropolitan and Micropolitan Statistical Area "Lamesa, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Lancaster, PA MSA" +Metropolitan and Micropolitan Statistical Area "Lansing-East Lansing, MI MSA" +Metropolitan and Micropolitan Statistical Area "Laramie, WY MicroSA" +Metropolitan and Micropolitan Statistical Area "Laredo, TX MSA" +Metropolitan and Micropolitan Statistical Area "Las Cruces, NM MSA" +Metropolitan and Micropolitan Statistical Area "Las Vegas, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Las Vegas-Henderson-Paradise, NV MSA" +Metropolitan and Micropolitan Statistical Area "Laurel, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Laurinburg, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Lawrence, KS MSA" +Metropolitan and Micropolitan Statistical Area "Lawrenceburg, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Lawton, OK MSA" +Metropolitan and Micropolitan Statistical Area "Lebanon, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Lebanon, PA MSA" +Metropolitan and Micropolitan Statistical Area "Levelland, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Lewisburg, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Lewisburg, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Lewiston, ID-WA MSA" +Metropolitan and Micropolitan Statistical Area "Lewiston-Auburn, ME MSA" +Metropolitan and Micropolitan Statistical Area "Lewistown, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Lexington, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Lexington-Fayette, KY MSA" +Metropolitan and Micropolitan Statistical Area "Liberal, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Lima, OH MSA" +Metropolitan and Micropolitan Statistical Area "Lincoln, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Lincoln, NE MSA" +Metropolitan and Micropolitan Statistical Area "Little Rock-North Little Rock-Conway, AR MSA" +Metropolitan and Micropolitan Statistical Area "Lock Haven, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Logan, UT-ID MSA" +Metropolitan and Micropolitan Statistical Area "Logan, WV MicroSA" +Metropolitan and Micropolitan Statistical Area "Logansport, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "London, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Longview, TX MSA" +Metropolitan and Micropolitan Statistical Area "Longview, WA MSA" +Metropolitan and Micropolitan Statistical Area "Los Alamos, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Los Angeles-Long Beach-Anaheim, CA MSA" +Metropolitan and Micropolitan Statistical Area "Louisville/Jefferson County, KY-IN MSA" +Metropolitan and Micropolitan Statistical Area "Lubbock, TX MSA" +Metropolitan and Micropolitan Statistical Area "Ludington, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Lufkin, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Lumberton, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Lynchburg, VA MSA" +Metropolitan and Micropolitan Statistical Area "Macomb, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Macon, GA MSA" +Metropolitan and Micropolitan Statistical Area "Madera, CA MSA" +Metropolitan and Micropolitan Statistical Area "Madison, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Madison, WI MSA" +Metropolitan and Micropolitan Statistical Area "Madisonville, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Magnolia, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Malone, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Malvern, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Manchester-Nashua, NH MSA" +Metropolitan and Micropolitan Statistical Area "Manhattan, KS MSA" +Metropolitan and Micropolitan Statistical Area "Manitowoc, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Mankato-North Mankato, MN MSA" +Metropolitan and Micropolitan Statistical Area "Mansfield, OH MSA" +Metropolitan and Micropolitan Statistical Area "Marietta, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Marinette, WI-MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Marion, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Marion, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Marion, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Marquette, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Marshall, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Marshall, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Marshall, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Marshalltown, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Martin, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Martinsville, VA MicroSA" +Metropolitan and Micropolitan Statistical Area "Maryville, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Mason City, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Mayfield, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Maysville, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "McAlester, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "McAllen-Edinburg-Mission, TX MSA" +Metropolitan and Micropolitan Statistical Area "McComb, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "McMinnville, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "McPherson, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Meadville, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Medford, OR MSA" +Metropolitan and Micropolitan Statistical Area "Memphis, TN-MS-AR MSA" +Metropolitan and Micropolitan Statistical Area "Menomonie, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Merced, CA MSA" +Metropolitan and Micropolitan Statistical Area "Meridian, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Merrill, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Mexico, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Miami, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Miami-Fort Lauderdale-West Palm Beach, FL MSA" +Metropolitan and Micropolitan Statistical Area "Michigan City-La Porte, IN MSA" +Metropolitan and Micropolitan Statistical Area "Middlesborough, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Midland, MI MSA" +Metropolitan and Micropolitan Statistical Area "Midland, TX MSA" +Metropolitan and Micropolitan Statistical Area "Milledgeville, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Milwaukee-Waukesha-West Allis, WI MSA" +Metropolitan and Micropolitan Statistical Area "Mineral Wells, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Minneapolis-St. Paul-Bloomington, MN-WI MSA" +Metropolitan and Micropolitan Statistical Area "Minot, ND MicroSA" +Metropolitan and Micropolitan Statistical Area "Missoula, MT MSA" +Metropolitan and Micropolitan Statistical Area "Mitchell, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Moberly, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Mobile, AL MSA" +Metropolitan and Micropolitan Statistical Area "Modesto, CA MSA" +Metropolitan and Micropolitan Statistical Area "Monroe, LA MSA" +Metropolitan and Micropolitan Statistical Area "Monroe, MI MSA" +Metropolitan and Micropolitan Statistical Area "Montgomery, AL MSA" +Metropolitan and Micropolitan Statistical Area "Montrose, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Morehead City, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Morgan City, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Morgantown, WV MSA" +Metropolitan and Micropolitan Statistical Area "Morristown, TN MSA" +Metropolitan and Micropolitan Statistical Area "Moscow, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Moses Lake, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Moultrie, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Airy, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Pleasant, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Pleasant, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Sterling, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Vernon, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Vernon, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Mount Vernon-Anacortes, WA MSA" +Metropolitan and Micropolitan Statistical Area "Mountain Home, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Mountain Home, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Muncie, IN MSA" +Metropolitan and Micropolitan Statistical Area "Murray, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Muscatine, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Muskegon, MI MSA" +Metropolitan and Micropolitan Statistical Area "Muskogee, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Myrtle Beach-Conway-North Myrtle Beach, SC-NC MSA" +Metropolitan and Micropolitan Statistical Area "Nacogdoches, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Napa, CA MSA" +Metropolitan and Micropolitan Statistical Area "Naples-Immokalee-Marco Island, FL MSA" +Metropolitan and Micropolitan Statistical Area "Nashville-Davidson--Murfreesboro--Franklin, TN MSA" +Metropolitan and Micropolitan Statistical Area "Natchez, MS-LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Natchitoches, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "New Bern, NC MSA" +Metropolitan and Micropolitan Statistical Area "New Castle, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "New Castle, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "New Haven-Milford, CT MSA" +Metropolitan and Micropolitan Statistical Area "New Orleans-Metairie, LA MSA" +Metropolitan and Micropolitan Statistical Area "New Philadelphia-Dover, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "New Ulm, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "New York-Newark-Jersey City, NY-NJ-PA MSA" +Metropolitan and Micropolitan Statistical Area "Newberry, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Newport, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Newport, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Newton, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Niles-Benton Harbor, MI MSA" +Metropolitan and Micropolitan Statistical Area "Nogales, AZ MicroSA" +Metropolitan and Micropolitan Statistical Area "Norfolk, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "North Platte, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "North Port-Sarasota-Bradenton, FL MSA" +Metropolitan and Micropolitan Statistical Area "North Vernon, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "North Wilkesboro, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Norwalk, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Norwich-New London, CT MSA" +Metropolitan and Micropolitan Statistical Area "Oak Harbor, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Ocala, FL MSA" +Metropolitan and Micropolitan Statistical Area "Ocean City, NJ MSA" +Metropolitan and Micropolitan Statistical Area "Odessa, TX MSA" +Metropolitan and Micropolitan Statistical Area "Ogden-Clearfield, UT MSA" +Metropolitan and Micropolitan Statistical Area "Ogdensburg-Massena, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Oil City, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Okeechobee, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Oklahoma City, OK MSA" +Metropolitan and Micropolitan Statistical Area "Olean, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Olympia-Tumwater, WA MSA" +Metropolitan and Micropolitan Statistical Area "Omaha-Council Bluffs, NE-IA MSA" +Metropolitan and Micropolitan Statistical Area "Oneonta, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Ontario, OR-ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Opelousas, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Orangeburg, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Orlando-Kissimmee-Sanford, FL MSA" +Metropolitan and Micropolitan Statistical Area "Oshkosh-Neenah, WI MSA" +Metropolitan and Micropolitan Statistical Area "Oskaloosa, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Othello, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Ottawa, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Ottawa-Peru, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Ottumwa, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Owatonna, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Owensboro, KY MSA" +Metropolitan and Micropolitan Statistical Area "Owosso, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Oxford, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Oxford, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Oxnard-Thousand Oaks-Ventura, CA MSA" +Metropolitan and Micropolitan Statistical Area "Ozark, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Paducah, KY-IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Pahrump, NV MicroSA" +Metropolitan and Micropolitan Statistical Area "Palatka, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Palestine, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Palm Bay-Melbourne-Titusville, FL MSA" +Metropolitan and Micropolitan Statistical Area "Pampa, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Panama City, FL MSA" +Metropolitan and Micropolitan Statistical Area "Paragould, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Paris, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Paris, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Parkersburg-Vienna, WV MSA" +Metropolitan and Micropolitan Statistical Area "Parsons, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Payson, AZ MicroSA" +Metropolitan and Micropolitan Statistical Area "Pecos, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Pensacola-Ferry Pass-Brent, FL MSA" +Metropolitan and Micropolitan Statistical Area "Peoria, IL MSA" +Metropolitan and Micropolitan Statistical Area "Peru, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Philadelphia-Camden-Wilmington, PA-NJ-DE-MD MSA" +Metropolitan and Micropolitan Statistical Area "Phoenix-Mesa-Scottsdale, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Picayune, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Pierre, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Pine Bluff, AR MSA" +Metropolitan and Micropolitan Statistical Area "Pinehurst-Southern Pines, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Pittsburg, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Pittsburgh, PA MSA" +Metropolitan and Micropolitan Statistical Area "Pittsfield, MA MSA" +Metropolitan and Micropolitan Statistical Area "Plainview, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Platteville, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Plattsburgh, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Plymouth, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Pocatello, ID MSA" +Metropolitan and Micropolitan Statistical Area "Point Pleasant, WV-OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Ponca City, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Pontiac, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Poplar Bluff, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Port Angeles, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Port Clinton, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Port Lavaca, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Port St. Lucie, FL MSA" +Metropolitan and Micropolitan Statistical Area "Portales, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Portland-South Portland, ME MSA" +Metropolitan and Micropolitan Statistical Area "Portland-Vancouver-Hillsboro, OR-WA MSA" +Metropolitan and Micropolitan Statistical Area "Portsmouth, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Pottsville, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Prescott, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Price, UT MicroSA" +Metropolitan and Micropolitan Statistical Area "Prineville, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Providence-Warwick, RI-MA MSA" +Metropolitan and Micropolitan Statistical Area "Provo-Orem, UT MSA" +Metropolitan and Micropolitan Statistical Area "Pueblo, CO MSA" +Metropolitan and Micropolitan Statistical Area "Pullman, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Punta Gorda, FL MSA" +Metropolitan and Micropolitan Statistical Area "Quincy, IL-MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Racine, WI MSA" +Metropolitan and Micropolitan Statistical Area "Raleigh, NC MSA" +Metropolitan and Micropolitan Statistical Area "Rapid City, SD MSA" +Metropolitan and Micropolitan Statistical Area "Raymondville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Reading, PA MSA" +Metropolitan and Micropolitan Statistical Area "Red Bluff, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Red Wing, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Redding, CA MSA" +Metropolitan and Micropolitan Statistical Area "Reno, NV MSA" +Metropolitan and Micropolitan Statistical Area "Rexburg, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Richmond, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Richmond, VA MSA" +Metropolitan and Micropolitan Statistical Area "Richmond-Berea, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Rio Grande City, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Riverside-San Bernardino-Ontario, CA MSA" +Metropolitan and Micropolitan Statistical Area "Riverton, WY MicroSA" +Metropolitan and Micropolitan Statistical Area "Roanoke Rapids, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Roanoke, VA MSA" +Metropolitan and Micropolitan Statistical Area "Rochelle, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Rochester, MN MSA" +Metropolitan and Micropolitan Statistical Area "Rochester, NY MSA" +Metropolitan and Micropolitan Statistical Area "Rock Springs, WY MicroSA" +Metropolitan and Micropolitan Statistical Area "Rockford, IL MSA" +Metropolitan and Micropolitan Statistical Area "Rockingham, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Rocky Mount, NC MSA" +Metropolitan and Micropolitan Statistical Area "Rolla, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Rome, GA MSA" +Metropolitan and Micropolitan Statistical Area "Roseburg, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "Roswell, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Russellville, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Ruston, LA MicroSA" +Metropolitan and Micropolitan Statistical Area "Rutland, VT MicroSA" +Metropolitan and Micropolitan Statistical Area "Sacramento--Roseville--Arden-Arcade, CA MSA" +Metropolitan and Micropolitan Statistical Area "Safford, AZ MicroSA" +Metropolitan and Micropolitan Statistical Area "Saginaw, MI MSA" +Metropolitan and Micropolitan Statistical Area "Salem, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Salem, OR MSA" +Metropolitan and Micropolitan Statistical Area "Salina, KS MicroSA" +Metropolitan and Micropolitan Statistical Area "Salinas, CA MSA" +Metropolitan and Micropolitan Statistical Area "Salisbury, MD-DE MSA" +Metropolitan and Micropolitan Statistical Area "Salt Lake City, UT MSA" +Metropolitan and Micropolitan Statistical Area "San Angelo, TX MSA" +Metropolitan and Micropolitan Statistical Area "San Antonio-New Braunfels, TX MSA" +Metropolitan and Micropolitan Statistical Area "San Diego-Carlsbad, CA MSA" +Metropolitan and Micropolitan Statistical Area "San Francisco-Oakland-Hayward, CA MSA" +Metropolitan and Micropolitan Statistical Area "San Jose-Sunnyvale-Santa Clara, CA MSA" +Metropolitan and Micropolitan Statistical Area "San Luis Obispo-Paso Robles-Arroyo Grande, CA MSA" +Metropolitan and Micropolitan Statistical Area "Sandpoint, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Sandusky, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Sanford, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Santa Cruz-Watsonville, CA MSA" +Metropolitan and Micropolitan Statistical Area "Santa Fe, NM MSA" +Metropolitan and Micropolitan Statistical Area "Santa Maria-Santa Barbara, CA MSA" +Metropolitan and Micropolitan Statistical Area "Santa Rosa, CA MSA" +Metropolitan and Micropolitan Statistical Area "Sault Ste. Marie, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Savannah, GA MSA" +Metropolitan and Micropolitan Statistical Area "Sayre, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Scottsbluff, NE MicroSA" +Metropolitan and Micropolitan Statistical Area "Scottsboro, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Scranton--Wilkes-Barre--Hazleton, PA MSA" +Metropolitan and Micropolitan Statistical Area "Searcy, AR MicroSA" +Metropolitan and Micropolitan Statistical Area "Seattle-Tacoma-Bellevue, WA MSA" +Metropolitan and Micropolitan Statistical Area "Sebastian-Vero Beach, FL MSA" +Metropolitan and Micropolitan Statistical Area "Sebring, FL MSA" +Metropolitan and Micropolitan Statistical Area "Sedalia, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Selinsgrove, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Selma, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Seneca Falls, NY MicroSA" +Metropolitan and Micropolitan Statistical Area "Seneca, SC MicroSA" +Metropolitan and Micropolitan Statistical Area "Sevierville, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Seymour, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Shawano, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Shawnee, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Sheboygan, WI MSA" +Metropolitan and Micropolitan Statistical Area "Shelby, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Shelbyville, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Shelton, WA MicroSA" +Metropolitan and Micropolitan Statistical Area "Sheridan, WY MicroSA" +Metropolitan and Micropolitan Statistical Area "Sherman-Denison, TX MSA" +Metropolitan and Micropolitan Statistical Area "Show Low, AZ MicroSA" +Metropolitan and Micropolitan Statistical Area "Shreveport-Bossier City, LA MSA" +Metropolitan and Micropolitan Statistical Area "Sidney, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Sierra Vista-Douglas, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Sikeston, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Silver City, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Sioux City, IA-NE-SD MSA" +Metropolitan and Micropolitan Statistical Area "Sioux Falls, SD MSA" +Metropolitan and Micropolitan Statistical Area "Snyder, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Somerset, KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Somerset, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Sonora, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "South Bend-Mishawaka, IN-MI MSA" +Metropolitan and Micropolitan Statistical Area "Spartanburg, SC MSA" +Metropolitan and Micropolitan Statistical Area "Spearfish, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Spencer, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Spirit Lake, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Spokane-Spokane Valley, WA MSA" +Metropolitan and Micropolitan Statistical Area "Springfield, IL MSA" +Metropolitan and Micropolitan Statistical Area "Springfield, MA MSA" +Metropolitan and Micropolitan Statistical Area "Springfield, MO MSA" +Metropolitan and Micropolitan Statistical Area "Springfield, OH MSA" +Metropolitan and Micropolitan Statistical Area "St. Cloud, MN MSA" +Metropolitan and Micropolitan Statistical Area "St. George, UT MSA" +Metropolitan and Micropolitan Statistical Area "St. Joseph, MO-KS MSA" +Metropolitan and Micropolitan Statistical Area "St. Louis, MO-IL MSA" +Metropolitan and Micropolitan Statistical Area "St. Marys, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Starkville, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "State College, PA MSA" +Metropolitan and Micropolitan Statistical Area "Statesboro, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Staunton-Waynesboro, VA MSA" +Metropolitan and Micropolitan Statistical Area "Steamboat Springs, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Stephenville, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Sterling, CO MicroSA" +Metropolitan and Micropolitan Statistical Area "Sterling, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Stevens Point, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Stillwater, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Stockton-Lodi, CA MSA" +Metropolitan and Micropolitan Statistical Area "Storm Lake, IA MicroSA" +Metropolitan and Micropolitan Statistical Area "Sturgis, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Sulphur Springs, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Summerville, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Summit Park, UT MicroSA" +Metropolitan and Micropolitan Statistical Area "Sumter, SC MSA" +Metropolitan and Micropolitan Statistical Area "Sunbury, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Susanville, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Sweetwater, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Syracuse, NY MSA" +Metropolitan and Micropolitan Statistical Area "Tahlequah, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Talladega-Sylacauga, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Tallahassee, FL MSA" +Metropolitan and Micropolitan Statistical Area "Tampa-St. Petersburg-Clearwater, FL MSA" +Metropolitan and Micropolitan Statistical Area "Taos, NM MicroSA" +Metropolitan and Micropolitan Statistical Area "Taylorville, IL MicroSA" +Metropolitan and Micropolitan Statistical Area "Terre Haute, IN MSA" +Metropolitan and Micropolitan Statistical Area "Texarkana, TX-AR MSA" +Metropolitan and Micropolitan Statistical Area "The Dalles, OR MicroSA" +Metropolitan and Micropolitan Statistical Area "The Villages, FL MSA" +Metropolitan and Micropolitan Statistical Area "Thomaston, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Thomasville, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Tiffin, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Tifton, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Toccoa, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Toledo, OH MSA" +Metropolitan and Micropolitan Statistical Area "Topeka, KS MSA" +Metropolitan and Micropolitan Statistical Area "Torrington, CT MicroSA" +Metropolitan and Micropolitan Statistical Area "Traverse City, MI MicroSA" +Metropolitan and Micropolitan Statistical Area "Trenton, NJ MSA" +Metropolitan and Micropolitan Statistical Area "Troy, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Truckee-Grass Valley, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Tucson, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Tullahoma-Manchester, TN MicroSA" +Metropolitan and Micropolitan Statistical Area "Tulsa, OK MSA" +Metropolitan and Micropolitan Statistical Area "Tupelo, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Tuscaloosa, AL MSA" +Metropolitan and Micropolitan Statistical Area "Twin Falls, ID MicroSA" +Metropolitan and Micropolitan Statistical Area "Tyler, TX MSA" +Metropolitan and Micropolitan Statistical Area "Ukiah, CA MicroSA" +Metropolitan and Micropolitan Statistical Area "Union City, TN-KY MicroSA" +Metropolitan and Micropolitan Statistical Area "Urban Honolulu, HI MSA" +Metropolitan and Micropolitan Statistical Area "Urbana, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Utica-Rome, NY MSA" +Metropolitan and Micropolitan Statistical Area "Uvalde, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Valdosta, GA MSA" +Metropolitan and Micropolitan Statistical Area "Vallejo-Fairfield, CA MSA" +Metropolitan and Micropolitan Statistical Area "Valley, AL MicroSA" +Metropolitan and Micropolitan Statistical Area "Van Wert, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Vermillion, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Vernal, UT MicroSA" +Metropolitan and Micropolitan Statistical Area "Vernon, TX MicroSA" +Metropolitan and Micropolitan Statistical Area "Vicksburg, MS MicroSA" +Metropolitan and Micropolitan Statistical Area "Victoria, TX MSA" +Metropolitan and Micropolitan Statistical Area "Vidalia, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Vincennes, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Vineland-Bridgeton, NJ MSA" +Metropolitan and Micropolitan Statistical Area "Vineyard Haven, MA MicroSA" +Metropolitan and Micropolitan Statistical Area "Virginia Beach-Norfolk-Newport News, VA-NC MSA" +Metropolitan and Micropolitan Statistical Area "Visalia-Porterville, CA MSA" +Metropolitan and Micropolitan Statistical Area "Wabash, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Waco, TX MSA" +Metropolitan and Micropolitan Statistical Area "Wahpeton, ND-MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Walla Walla, WA MSA" +Metropolitan and Micropolitan Statistical Area "Wapakoneta, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Warner Robins, GA MSA" +Metropolitan and Micropolitan Statistical Area "Warren, PA MicroSA" +Metropolitan and Micropolitan Statistical Area "Warrensburg, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Warsaw, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Washington Court House, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Washington, IN MicroSA" +Metropolitan and Micropolitan Statistical Area "Washington, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Washington-Arlington-Alexandria, DC-VA-MD-WV MSA" +Metropolitan and Micropolitan Statistical Area "Waterloo-Cedar Falls, IA MSA" +Metropolitan and Micropolitan Statistical Area "Watertown, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "Watertown-Fort Atkinson, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Watertown-Fort Drum, NY MSA" +Metropolitan and Micropolitan Statistical Area "Wauchula, FL MicroSA" +Metropolitan and Micropolitan Statistical Area "Wausau, WI MSA" +Metropolitan and Micropolitan Statistical Area "Waycross, GA MicroSA" +Metropolitan and Micropolitan Statistical Area "Weatherford, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Weirton-Steubenville, WV-OH MSA" +Metropolitan and Micropolitan Statistical Area "Wenatchee, WA MSA" +Metropolitan and Micropolitan Statistical Area "West Plains, MO MicroSA" +Metropolitan and Micropolitan Statistical Area "Wheeling, WV-OH MSA" +Metropolitan and Micropolitan Statistical Area "Whitewater-Elkhorn, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Wichita Falls, TX MSA" +Metropolitan and Micropolitan Statistical Area "Wichita, KS MSA" +Metropolitan and Micropolitan Statistical Area "Williamsport, PA MSA" +Metropolitan and Micropolitan Statistical Area "Williston, ND MicroSA" +Metropolitan and Micropolitan Statistical Area "Willmar, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Wilmington, NC MSA" +Metropolitan and Micropolitan Statistical Area "Wilmington, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Wilson, NC MicroSA" +Metropolitan and Micropolitan Statistical Area "Winchester, VA-WV MSA" +Metropolitan and Micropolitan Statistical Area "Winnemucca, NV MicroSA" +Metropolitan and Micropolitan Statistical Area "Winona, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Winston-Salem, NC MSA" +Metropolitan and Micropolitan Statistical Area "Wisconsin Rapids-Marshfield, WI MicroSA" +Metropolitan and Micropolitan Statistical Area "Woodward, OK MicroSA" +Metropolitan and Micropolitan Statistical Area "Wooster, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Worcester, MA-CT MSA" +Metropolitan and Micropolitan Statistical Area "Worthington, MN MicroSA" +Metropolitan and Micropolitan Statistical Area "Yakima, WA MSA" +Metropolitan and Micropolitan Statistical Area "Yankton, SD MicroSA" +Metropolitan and Micropolitan Statistical Area "York-Hanover, PA MSA" +Metropolitan and Micropolitan Statistical Area "Youngstown-Warren-Boardman, OH-PA MSA" +Metropolitan and Micropolitan Statistical Area "Yuba City, CA MSA" +Metropolitan and Micropolitan Statistical Area "Yuma, AZ MSA" +Metropolitan and Micropolitan Statistical Area "Zanesville, OH MicroSA" +Metropolitan and Micropolitan Statistical Area "Zapata, TX MicroSA" +Metropolitan and Micropolitan Statistical Area None +Misc Extra Refrigerator "EF 15.9, Fed Standard, bottom freezer-reference fridge" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=573 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator "EF 19.8, bottom freezer" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=458 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator "EF 6.9, Average Installed" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1102 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator "EF 6.9, National Average" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1102 extra_refrigerator_usage_multiplier=0.221 +Misc Extra Refrigerator EF 10.2 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=748 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 10.5 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=727 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 15.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=480 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 17.6 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=433 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 19.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=383 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 21.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=348 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 6.7 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1139 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator None ResStockArguments extra_refrigerator_present=false extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=0 extra_refrigerator_usage_multiplier=0 +Misc Extra Refrigerator Void +Misc Freezer "EF 12, Average Installed" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=935 freezer_usage_multiplier=1.0 +Misc Freezer "EF 12, National Average" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=935 freezer_usage_multiplier=0.342 +Misc Freezer "EF 16, 2001 Fed Standard-reference freezer" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=712 freezer_usage_multiplier=1.0 +Misc Freezer "EF 18, 2008 Energy Star" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=641 freezer_usage_multiplier=1.0 +Misc Freezer "EF 20, 2008 Energy Star Most Efficient" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=568 freezer_usage_multiplier=1.0 +Misc Freezer None ResStockArguments freezer_present=false freezer_location=auto freezer_rated_annual_kwh=0 freezer_usage_multiplier=0 +Misc Freezer Void +Misc Gas Fireplace Gas Fireplace ResStockArguments misc_fuel_loads_fireplace_present=true misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=auto misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=1.0 +Misc Gas Fireplace National Average ResStockArguments misc_fuel_loads_fireplace_present=true misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=auto misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=0.032 +Misc Gas Fireplace None ResStockArguments misc_fuel_loads_fireplace_present=false misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=0 misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=0 +Misc Gas Grill Gas Grill ResStockArguments misc_fuel_loads_grill_present=true misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=auto misc_fuel_loads_grill_usage_multiplier=1.0 +Misc Gas Grill National Average ResStockArguments misc_fuel_loads_grill_present=true misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=auto misc_fuel_loads_grill_usage_multiplier=0.029 +Misc Gas Grill None ResStockArguments misc_fuel_loads_grill_present=false misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=0 misc_fuel_loads_grill_usage_multiplier=0 +Misc Gas Lighting Gas Lighting ResStockArguments misc_fuel_loads_lighting_present=true misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=auto misc_fuel_loads_lighting_usage_multiplier=1.0 +Misc Gas Lighting National Average ResStockArguments misc_fuel_loads_lighting_present=true misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=auto misc_fuel_loads_lighting_usage_multiplier=0.012 +Misc Gas Lighting None ResStockArguments misc_fuel_loads_lighting_present=false misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=0 misc_fuel_loads_lighting_usage_multiplier=0 +Misc Hot Tub Spa Electricity ResStockArguments permanent_spa_present=true permanent_spa_pump_annual_kwh=auto permanent_spa_pump_usage_multiplier=1.0 permanent_spa_heater_type=electric resistance permanent_spa_heater_annual_kwh=auto permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=1.0 +Misc Hot Tub Spa Natural Gas ResStockArguments permanent_spa_present=true permanent_spa_pump_annual_kwh=auto permanent_spa_pump_usage_multiplier=1.0 permanent_spa_heater_type=gas fired permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=auto permanent_spa_heater_usage_multiplier=1.0 +Misc Hot Tub Spa None ResStockArguments permanent_spa_present=false permanent_spa_pump_annual_kwh=0 permanent_spa_pump_usage_multiplier=0 permanent_spa_heater_type=none permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=0 +Misc Hot Tub Spa Other Fuel ResStockArguments permanent_spa_present=false permanent_spa_pump_annual_kwh=0 permanent_spa_pump_usage_multiplier=0 permanent_spa_heater_type=none permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=0 +Misc Hot Tub Spa Void +Misc Pool Has Pool ResStockArguments pool_present=true +Misc Pool None ResStockArguments pool_present=false +Misc Pool Void +Misc Pool Heater "Electric, 78F" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.8 +Misc Pool Heater "Electric, Covered" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.3 +Misc Pool Heater "Electric, Covered, 78F" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.2 +Misc Pool Heater "Gas, 78F" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.8 +Misc Pool Heater "Gas, Covered" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.3 +Misc Pool Heater "Gas, Covered, 78F" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.2 +Misc Pool Heater Electricity ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=1.0 +Misc Pool Heater Natural Gas ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=1.0 +Misc Pool Heater None ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 +Misc Pool Heater Other Fuel ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 +Misc Pool Heater Solar ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 +Misc Pool Heater Unheated ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 +Misc Pool Pump 0.75 HP Pump ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=0.75 +Misc Pool Pump 1.0 HP Pump ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=1.0 +Misc Pool Pump National Average ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=0.075 +Misc Pool Pump None ResStockArguments pool_pump_annual_kwh=0 pool_pump_usage_multiplier=0 +Misc Well Pump High Efficiency ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=0.67 misc_plug_loads_well_pump_2_usage_multiplier=1.0 +Misc Well Pump National Average ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=0.127 misc_plug_loads_well_pump_2_usage_multiplier=1.0 +Misc Well Pump None ResStockArguments misc_plug_loads_well_pump_present=false misc_plug_loads_well_pump_annual_kwh=0 misc_plug_loads_well_pump_usage_multiplier=0 misc_plug_loads_well_pump_2_usage_multiplier=0 +Misc Well Pump Typical Efficiency ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=1.0 misc_plug_loads_well_pump_2_usage_multiplier=1.0 +Natural Ventilation "Cooling Season, 7 days/wk" ResStockArguments window_fraction_operable=0.67 +Natural Ventilation None ResStockArguments window_fraction_operable=0 +Neighbors "Left/Right at 15ft, Front/Back at 80ft" ResStockArguments neighbor_front_distance=80 neighbor_back_distance=80 neighbor_left_distance=15 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 12 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=12 neighbor_right_distance=12 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 2 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=2 neighbor_right_distance=2 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 27 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=27 neighbor_right_distance=27 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 4 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=4 neighbor_right_distance=4 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 7 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=7 neighbor_right_distance=7 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Back at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=15 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Front at 15ft ResStockArguments neighbor_front_distance=15 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Left at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=15 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Left/Right at 10ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=10 neighbor_right_distance=10 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Left/Right at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=15 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Left/Right at 20ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=20 neighbor_right_distance=20 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors None ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Right at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Occupants 0 ResStockArguments geometry_unit_num_occupants=0 general_water_use_usage_multiplier=auto +Occupants 1 ResStockArguments geometry_unit_num_occupants=1 general_water_use_usage_multiplier=auto +Occupants 10+ ResStockArguments geometry_unit_num_occupants=11 general_water_use_usage_multiplier=auto +Occupants 2 ResStockArguments geometry_unit_num_occupants=2 general_water_use_usage_multiplier=auto +Occupants 3 ResStockArguments geometry_unit_num_occupants=3 general_water_use_usage_multiplier=auto +Occupants 4 ResStockArguments geometry_unit_num_occupants=4 general_water_use_usage_multiplier=auto +Occupants 5 ResStockArguments geometry_unit_num_occupants=5 general_water_use_usage_multiplier=auto +Occupants 6 ResStockArguments geometry_unit_num_occupants=6 general_water_use_usage_multiplier=auto +Occupants 7 ResStockArguments geometry_unit_num_occupants=7 general_water_use_usage_multiplier=auto +Occupants 8 ResStockArguments geometry_unit_num_occupants=8 general_water_use_usage_multiplier=auto +Occupants 9 ResStockArguments geometry_unit_num_occupants=9 general_water_use_usage_multiplier=auto +Orientation ENE ResStockArguments geometry_unit_orientation=68 +Orientation ESE ResStockArguments geometry_unit_orientation=113 +Orientation East ResStockArguments geometry_unit_orientation=90 +Orientation NNE ResStockArguments geometry_unit_orientation=23 +Orientation NNW ResStockArguments geometry_unit_orientation=338 +Orientation North ResStockArguments geometry_unit_orientation=0 +Orientation Northeast ResStockArguments geometry_unit_orientation=45 +Orientation Northwest ResStockArguments geometry_unit_orientation=315 +Orientation SSE ResStockArguments geometry_unit_orientation=158 +Orientation SSW ResStockArguments geometry_unit_orientation=203 +Orientation South ResStockArguments geometry_unit_orientation=180 +Orientation Southeast ResStockArguments geometry_unit_orientation=135 +Orientation Southwest ResStockArguments geometry_unit_orientation=225 +Orientation WNW ResStockArguments geometry_unit_orientation=293 +Orientation WSW ResStockArguments geometry_unit_orientation=248 +Orientation West ResStockArguments geometry_unit_orientation=270 +Overhangs "2ft, All Windows" ResStockArguments overhangs_front_depth=2 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=2 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=2 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=2 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs "2ft, Back Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=2 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs "2ft, Front Windows" ResStockArguments overhangs_front_depth=2 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs "2ft, Left Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=2 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs "2ft, Right Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=2 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs None ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +PUMA "AK, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AK, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AK, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AK, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AK, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AL, 02703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AR, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00115" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00116" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00117" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00118" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00119" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00120" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00121" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00122" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00123" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00124" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00125" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00126" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00127" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00128" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00129" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00130" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00131" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00132" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00133" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00134" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "AZ, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 01907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 02905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03709" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03710" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03711" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03712" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03713" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03714" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03715" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03716" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03717" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03718" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03719" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03720" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03721" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03722" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03723" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03724" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03725" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03726" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03727" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03728" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03729" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03730" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03731" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03732" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03733" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03734" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03735" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03736" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03737" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03738" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03739" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03740" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03741" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03742" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03743" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03744" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03745" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03746" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03747" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03748" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03749" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03750" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03751" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03752" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03753" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03754" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03755" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03756" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03757" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03758" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03759" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03760" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03761" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03762" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03763" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03764" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03765" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03766" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03767" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03768" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03769" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 04701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 04702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05911" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05912" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05913" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05914" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05915" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05916" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05917" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 05918" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06511" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06512" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06513" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06514" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06515" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06709" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06710" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06711" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 06712" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07115" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07311" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07312" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07313" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07314" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07315" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07316" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07317" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07318" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07319" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07320" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07321" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07322" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 07902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08511" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08512" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08513" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08514" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 08900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 09904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 10100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 10701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 10702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 10703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CA, 11300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00808" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00809" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00810" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00811" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00812" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00813" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00814" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00815" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00816" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00817" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00818" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00819" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00820" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00821" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00822" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00823" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00824" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 04104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 04105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CO, 04106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "CT, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DC, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DC, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DC, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DC, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DC, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DE, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DE, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DE, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DE, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DE, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "DE, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 02103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 05708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 06100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 06300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 06901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 06902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 06903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 07301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08606" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08607" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08608" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08609" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08610" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08611" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08612" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08613" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08614" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08615" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08616" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08617" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08618" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08619" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08620" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08621" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08622" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08623" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08624" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 08900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 09911" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 10900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 11704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 12100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 12701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 12702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 12703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "FL, 12704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 04600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 05001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 05002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 06001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "GA, 06002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "HI, 00308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ID, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03009" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03407" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03408" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03409" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03410" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03411" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03412" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03413" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03414" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03415" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03416" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03417" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03418" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03419" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03420" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03421" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03422" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03520" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03521" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03522" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03523" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03524" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03525" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03526" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03527" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03528" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03529" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03530" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03531" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03532" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IL, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "IN, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KS, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "KY, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "LA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 00704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MA, 04903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MD, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ME, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 02908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03210" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03211" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03212" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03213" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MI, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01405" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01406" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01407" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01408" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01409" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01410" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MN, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01808" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MO, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MS, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "MT, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 04900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NC, 05400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ND, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ND, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ND, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ND, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "ND, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NE, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NH, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 00907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 01904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NJ, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NM, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00405" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00406" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00407" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00408" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00409" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00410" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00411" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00412" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NV, 00413" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 02903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03210" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03211" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03212" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03311" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03312" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03313" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03707" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03708" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03709" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03710" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03808" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03809" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03810" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 03903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04009" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04010" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04011" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04012" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04013" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04014" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04015" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04016" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04017" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04018" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04112" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04113" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "NY, 04114" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 00910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04107" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04108" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04109" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04111" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 04900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OH, 05700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OK, 01601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 00902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01314" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01316" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01317" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01318" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01319" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01320" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01321" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01322" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01323" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "OR, 01324" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 02902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03106" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03209" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03210" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03211" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03403" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03404" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 04001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "PA, 04002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "RI, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SC, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SD, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SD, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SD, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SD, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SD, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "SD, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 01900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03205" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03207" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TN, 03208" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 01907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02310" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02311" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02312" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02313" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02314" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02315" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02316" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02317" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02318" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02319" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02320" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02321" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02322" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02508" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02509" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02510" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02511" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02512" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02513" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02514" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02515" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02516" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 02900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 03900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04606" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04607" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04608" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04609" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04610" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04611" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04612" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04613" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04614" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04615" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04616" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04617" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04618" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04619" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04620" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04621" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04622" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04623" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04624" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04625" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04626" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04627" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04628" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04629" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04630" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04631" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04632" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04633" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04634" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04635" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04636" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04637" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04638" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 04905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05202" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05203" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05204" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05903" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05904" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05905" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05906" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05907" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05908" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05909" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05910" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05911" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05912" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05913" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05914" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05915" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 05916" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06803" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06804" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06805" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06806" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06807" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "TX, 06900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 03001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 05001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 11001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 11002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 13001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 21001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35006" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35007" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35008" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 35009" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 49001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 49002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 49003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 49004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 53001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 57001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "UT, 57002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 01302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 04101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 04102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 04103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 10701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 10702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 10703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51010" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51020" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51040" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51044" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51045" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51080" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51084" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51085" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51087" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51089" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51090" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51095" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51096" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51097" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51105" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51110" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51115" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51120" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51125" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51135" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51145" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51154" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51155" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51164" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51165" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51167" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51175" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51186" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51206" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51215" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51224" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51225" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51235" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51244" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51245" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51246" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 51255" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 55001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 55002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59302" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59303" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59304" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59305" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59306" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59307" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59308" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VA, 59309" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VT, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VT, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VT, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "VT, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10901" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 10902" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11104" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11402" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11502" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11503" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11504" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11505" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11506" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11507" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11602" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11603" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11604" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11605" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11606" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11607" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11608" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11609" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11610" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11611" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11612" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11613" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11614" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11615" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11616" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11702" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11703" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11704" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11705" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11706" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11801" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11802" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WA, 11900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01401" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01501" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 01601" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 02400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 02500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 10000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 20000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 30000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 40101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 40301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 40701" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 41001" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 41002" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 41003" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 41004" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 41005" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 50000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 55101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 55102" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 55103" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 70101" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 70201" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WI, 70301" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00600" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00700" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00800" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 00900" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 01000" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 01100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 01200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WV, 01300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WY, 00100" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WY, 00200" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WY, 00300" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WY, 00400" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA "WY, 00500" ResStockArguments site_elevation=auto site_latitude=auto site_longitude=auto +PUMA Metro Status "In metro area, not/partially in principal city" +PUMA Metro Status "In metro area, principal city" +PUMA Metro Status Not/partially in metro area +PV Orientation East ResStockArguments pv_system_array_azimuth=90 pv_system_2_array_azimuth=0 +PV Orientation None ResStockArguments pv_system_array_azimuth=180 pv_system_2_array_azimuth=0 +PV Orientation North ResStockArguments pv_system_array_azimuth=0 pv_system_2_array_azimuth=0 +PV Orientation Northeast ResStockArguments pv_system_array_azimuth=45 pv_system_2_array_azimuth=0 +PV Orientation Northwest ResStockArguments pv_system_array_azimuth=315 pv_system_2_array_azimuth=0 +PV Orientation South ResStockArguments pv_system_array_azimuth=180 pv_system_2_array_azimuth=0 +PV Orientation Southeast ResStockArguments pv_system_array_azimuth=135 pv_system_2_array_azimuth=0 +PV Orientation Southwest ResStockArguments pv_system_array_azimuth=225 pv_system_2_array_azimuth=0 +PV Orientation West ResStockArguments pv_system_array_azimuth=270 pv_system_2_array_azimuth=0 +PV System Size 1.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=1000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 11.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=11000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 13.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=13000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 3.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=3000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 5.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=5000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 7.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=7000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 9.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=9000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size None ResStockArguments pv_system_present=false pv_system_module_type=auto pv_system_max_power_output=0 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +Plug Load Diversity 100% ResStockArguments misc_plug_loads_other_2_usage_multiplier=1.0 +Plug Load Diversity 150% ResStockArguments misc_plug_loads_other_2_usage_multiplier=1.5 +Plug Load Diversity 200% ResStockArguments misc_plug_loads_other_2_usage_multiplier=2.0 +Plug Load Diversity 25% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.25 +Plug Load Diversity 400% ResStockArguments misc_plug_loads_other_2_usage_multiplier=4.0 +Plug Load Diversity 50% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.5 +Plug Load Diversity 75% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.75 +Plug Loads 100% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.0 misc_plug_loads_television_present=false +Plug Loads 101% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.01 misc_plug_loads_television_present=false +Plug Loads 102% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.02 misc_plug_loads_television_present=false +Plug Loads 103% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.03 misc_plug_loads_television_present=false +Plug Loads 104% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.04 misc_plug_loads_television_present=false +Plug Loads 105% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.05 misc_plug_loads_television_present=false +Plug Loads 106% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.06 misc_plug_loads_television_present=false +Plug Loads 108% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.08 misc_plug_loads_television_present=false +Plug Loads 110% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.1 misc_plug_loads_television_present=false +Plug Loads 113% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.13 misc_plug_loads_television_present=false +Plug Loads 119% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.19 misc_plug_loads_television_present=false +Plug Loads 121% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.21 misc_plug_loads_television_present=false +Plug Loads 123% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.23 misc_plug_loads_television_present=false +Plug Loads 134% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.34 misc_plug_loads_television_present=false +Plug Loads 137% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.37 misc_plug_loads_television_present=false +Plug Loads 140% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.4 misc_plug_loads_television_present=false +Plug Loads 144% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.44 misc_plug_loads_television_present=false +Plug Loads 166% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.66 misc_plug_loads_television_present=false +Plug Loads 78% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.78 misc_plug_loads_television_present=false +Plug Loads 79% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.79 misc_plug_loads_television_present=false +Plug Loads 82% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.82 misc_plug_loads_television_present=false +Plug Loads 84% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.84 misc_plug_loads_television_present=false +Plug Loads 85% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.85 misc_plug_loads_television_present=false +Plug Loads 86% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.86 misc_plug_loads_television_present=false +Plug Loads 89% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.89 misc_plug_loads_television_present=false +Plug Loads 91% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.91 misc_plug_loads_television_present=false +Plug Loads 93% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.93 misc_plug_loads_television_present=false +Plug Loads 94% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.94 misc_plug_loads_television_present=false +Plug Loads 95% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.95 misc_plug_loads_television_present=false +Plug Loads 96% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.96 misc_plug_loads_television_present=false +Plug Loads 97% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.97 misc_plug_loads_television_present=false +Plug Loads 99% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.99 misc_plug_loads_television_present=false +Power Outage Summer ResStockArguments schedules_power_outage_periods=Jul 1 5 - Jul 31 14 schedules_power_outage_periods_window_natvent_availability=always available +REEDS Balancing Area 1 +REEDS Balancing Area 10 +REEDS Balancing Area 100 +REEDS Balancing Area 101 +REEDS Balancing Area 102 +REEDS Balancing Area 103 +REEDS Balancing Area 104 +REEDS Balancing Area 105 +REEDS Balancing Area 106 +REEDS Balancing Area 107 +REEDS Balancing Area 108 +REEDS Balancing Area 109 +REEDS Balancing Area 11 +REEDS Balancing Area 110 +REEDS Balancing Area 111 +REEDS Balancing Area 112 +REEDS Balancing Area 113 +REEDS Balancing Area 114 +REEDS Balancing Area 115 +REEDS Balancing Area 116 +REEDS Balancing Area 117 +REEDS Balancing Area 118 +REEDS Balancing Area 119 +REEDS Balancing Area 12 +REEDS Balancing Area 120 +REEDS Balancing Area 121 +REEDS Balancing Area 122 +REEDS Balancing Area 123 +REEDS Balancing Area 124 +REEDS Balancing Area 125 +REEDS Balancing Area 126 +REEDS Balancing Area 127 +REEDS Balancing Area 128 +REEDS Balancing Area 129 +REEDS Balancing Area 13 +REEDS Balancing Area 130 +REEDS Balancing Area 131 +REEDS Balancing Area 132 +REEDS Balancing Area 133 +REEDS Balancing Area 134 +REEDS Balancing Area 14 +REEDS Balancing Area 15 +REEDS Balancing Area 16 +REEDS Balancing Area 17 +REEDS Balancing Area 18 +REEDS Balancing Area 19 +REEDS Balancing Area 2 +REEDS Balancing Area 20 +REEDS Balancing Area 21 +REEDS Balancing Area 22 +REEDS Balancing Area 23 +REEDS Balancing Area 24 +REEDS Balancing Area 25 +REEDS Balancing Area 26 +REEDS Balancing Area 27 +REEDS Balancing Area 28 +REEDS Balancing Area 29 +REEDS Balancing Area 3 +REEDS Balancing Area 30 +REEDS Balancing Area 31 +REEDS Balancing Area 32 +REEDS Balancing Area 33 +REEDS Balancing Area 34 +REEDS Balancing Area 35 +REEDS Balancing Area 36 +REEDS Balancing Area 37 +REEDS Balancing Area 38 +REEDS Balancing Area 39 +REEDS Balancing Area 4 +REEDS Balancing Area 40 +REEDS Balancing Area 41 +REEDS Balancing Area 42 +REEDS Balancing Area 43 +REEDS Balancing Area 44 +REEDS Balancing Area 45 +REEDS Balancing Area 46 +REEDS Balancing Area 47 +REEDS Balancing Area 48 +REEDS Balancing Area 49 +REEDS Balancing Area 5 +REEDS Balancing Area 50 +REEDS Balancing Area 51 +REEDS Balancing Area 52 +REEDS Balancing Area 53 +REEDS Balancing Area 54 +REEDS Balancing Area 55 +REEDS Balancing Area 56 +REEDS Balancing Area 57 +REEDS Balancing Area 58 +REEDS Balancing Area 59 +REEDS Balancing Area 6 +REEDS Balancing Area 60 +REEDS Balancing Area 61 +REEDS Balancing Area 62 +REEDS Balancing Area 63 +REEDS Balancing Area 64 +REEDS Balancing Area 65 +REEDS Balancing Area 66 +REEDS Balancing Area 67 +REEDS Balancing Area 68 +REEDS Balancing Area 69 +REEDS Balancing Area 7 +REEDS Balancing Area 70 +REEDS Balancing Area 71 +REEDS Balancing Area 72 +REEDS Balancing Area 73 +REEDS Balancing Area 74 +REEDS Balancing Area 75 +REEDS Balancing Area 76 +REEDS Balancing Area 77 +REEDS Balancing Area 78 +REEDS Balancing Area 79 +REEDS Balancing Area 8 +REEDS Balancing Area 80 +REEDS Balancing Area 81 +REEDS Balancing Area 82 +REEDS Balancing Area 83 +REEDS Balancing Area 84 +REEDS Balancing Area 85 +REEDS Balancing Area 86 +REEDS Balancing Area 87 +REEDS Balancing Area 88 +REEDS Balancing Area 89 +REEDS Balancing Area 9 +REEDS Balancing Area 90 +REEDS Balancing Area 91 +REEDS Balancing Area 92 +REEDS Balancing Area 93 +REEDS Balancing Area 94 +REEDS Balancing Area 95 +REEDS Balancing Area 96 +REEDS Balancing Area 97 +REEDS Balancing Area 98 +REEDS Balancing Area 99 +REEDS Balancing Area None +Radiant Barrier No ResStockArguments radiant_barrier_attic_location=none radiant_barrier_grade=1 +Radiant Barrier None ResStockArguments radiant_barrier_attic_location=none radiant_barrier_grade=1 +Radiant Barrier Yes ResStockArguments radiant_barrier_attic_location=Attic roof only radiant_barrier_grade=1 +Range Spot Vent Hour Hour0 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=0 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour1 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=1 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour10 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=10 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour11 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=11 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour12 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=12 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour13 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=13 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour14 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=14 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour15 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=15 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour16 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=16 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour17 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=17 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour18 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=18 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour19 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=19 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour2 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=2 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour20 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=20 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour21 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=21 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour22 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=22 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour23 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=23 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour3 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=3 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour4 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=4 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour5 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=5 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour6 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=6 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour7 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=7 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour8 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=8 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour9 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=9 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Refrigerator EF 10.2 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=748 +Refrigerator EF 10.5 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=727 +Refrigerator EF 15.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=480 +Refrigerator EF 17.6 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=433 +Refrigerator EF 19.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=383 +Refrigerator EF 21.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=348 +Refrigerator EF 6.7 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=1139 +Refrigerator None ResStockArguments refrigerator_present=false refrigerator_location=auto refrigerator_rated_annual_kwh=0 +Refrigerator Void +Refrigerator Usage Level 100% Usage ResStockArguments refrigerator_usage_multiplier=1.0 +Refrigerator Usage Level 105% Usage ResStockArguments refrigerator_usage_multiplier=1.05 +Refrigerator Usage Level 95% Usage ResStockArguments refrigerator_usage_multiplier=0.95 +Roof Material "Asphalt Shingles, Dark" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=dark +Roof Material "Asphalt Shingles, Light" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=light +Roof Material "Asphalt Shingles, Medium" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=medium +Roof Material "Asphalt Shingles, White or cool colors" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=reflective +Roof Material "Composition Shingles, White or Cool Colors" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=reflective +Roof Material "Metal, Cool Colors" ResStockArguments roof_material_type=metal surfacing roof_color=reflective +Roof Material "Metal, Dark" ResStockArguments roof_material_type=metal surfacing roof_color=dark +Roof Material "Metal, Light" ResStockArguments roof_material_type=metal surfacing roof_color=light +Roof Material "Metal, Medium" ResStockArguments roof_material_type=metal surfacing roof_color=medium +Roof Material "Metal, White" ResStockArguments roof_material_type=metal surfacing roof_color=reflective +Roof Material "Tile, Clay or Ceramic" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium +Roof Material "Tile, Clay or Ceramic, White or Cool Colors" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective +Roof Material "Tile, Concrete" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium +Roof Material "Tile, Concrete, White or Cool Colors" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective +Roof Material "Tile, Dark" ResStockArguments roof_material_type=slate or tile shingles roof_color=dark +Roof Material "Tile, Light" ResStockArguments roof_material_type=slate or tile shingles roof_color=light +Roof Material "Tile, Medium" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium +Roof Material "Tile, White" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective +Roof Material Composition Shingles ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=medium +Roof Material Galvanized Steel ResStockArguments roof_material_type=metal surfacing roof_color=medium +Roof Material Slate ResStockArguments roof_material_type=slate or tile shingles roof_color=medium +Roof Material Wood Shingles ResStockArguments roof_material_type=wood shingles or shakes roof_color=medium +Solar Hot Water "40 sqft, South, 10 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=10 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, South, Latitude - 15 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=latitude-15 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, South, Roof Pitch" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, West, 70 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=70 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, West, Latitude + 15 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=latitude+15 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, West, Roof Pitch" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water None ResStockArguments solar_thermal_system_type=none solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +State AK ResStockArguments site_state_code=AK +State AL ResStockArguments site_state_code=AL +State AR ResStockArguments site_state_code=AR +State AZ ResStockArguments site_state_code=AZ +State CA ResStockArguments site_state_code=CA +State CO ResStockArguments site_state_code=CO +State CT ResStockArguments site_state_code=CT +State DC ResStockArguments site_state_code=DC +State DE ResStockArguments site_state_code=DE +State FL ResStockArguments site_state_code=FL +State GA ResStockArguments site_state_code=GA +State HI ResStockArguments site_state_code=HI +State IA ResStockArguments site_state_code=IA +State ID ResStockArguments site_state_code=ID +State IL ResStockArguments site_state_code=IL +State IN ResStockArguments site_state_code=IN +State KS ResStockArguments site_state_code=KS +State KY ResStockArguments site_state_code=KY +State LA ResStockArguments site_state_code=LA +State MA ResStockArguments site_state_code=MA +State MD ResStockArguments site_state_code=MD +State ME ResStockArguments site_state_code=ME +State MI ResStockArguments site_state_code=MI +State MN ResStockArguments site_state_code=MN +State MO ResStockArguments site_state_code=MO +State MS ResStockArguments site_state_code=MS +State MT ResStockArguments site_state_code=MT +State NC ResStockArguments site_state_code=NC +State ND ResStockArguments site_state_code=ND +State NE ResStockArguments site_state_code=NE +State NH ResStockArguments site_state_code=NH +State NJ ResStockArguments site_state_code=NJ +State NM ResStockArguments site_state_code=NM +State NV ResStockArguments site_state_code=NV +State NY ResStockArguments site_state_code=NY +State OH ResStockArguments site_state_code=OH +State OK ResStockArguments site_state_code=OK +State OR ResStockArguments site_state_code=OR +State PA ResStockArguments site_state_code=PA +State RI ResStockArguments site_state_code=RI +State SC ResStockArguments site_state_code=SC +State SD ResStockArguments site_state_code=SD +State TN ResStockArguments site_state_code=TN +State TX ResStockArguments site_state_code=TX +State UT ResStockArguments site_state_code=UT +State VA ResStockArguments site_state_code=VA +State VT ResStockArguments site_state_code=VT +State WA ResStockArguments site_state_code=WA +State WI ResStockArguments site_state_code=WI +State WV ResStockArguments site_state_code=WV +State WY ResStockArguments site_state_code=WY +State Metro Median Income 0-30% +State Metro Median Income 100-120% +State Metro Median Income 120-150% +State Metro Median Income 150%+ +State Metro Median Income 30-60% +State Metro Median Income 60-80% +State Metro Median Income 80-100% +State Metro Median Income Not Available +Storm Windows Clear ResStockArguments window_storm_type=clear +Storm Windows Low-E ResStockArguments window_storm_type=low-e +Tenure Not Available +Tenure Owner +Tenure Renter +Usage Level Average +Usage Level High +Usage Level Low +Usage Level Medium +Vacancy Status Occupied +Vacancy Status Vacant ResStockArguments schedules_vacancy_periods=Jan 1 - Dec 31 +Vintage 1940s ResStockArguments vintage=1940s year_built=auto +Vintage 1950s ResStockArguments vintage=1950s year_built=auto +Vintage 1960s ResStockArguments vintage=1960s year_built=auto +Vintage 1970s ResStockArguments vintage=1970s year_built=auto +Vintage 1980s ResStockArguments vintage=1980s year_built=auto +Vintage 1990s ResStockArguments vintage=1990s year_built=auto +Vintage 2000s ResStockArguments vintage=2000s year_built=auto +Vintage 2010s ResStockArguments vintage=2010s year_built=auto +Vintage <1940 ResStockArguments vintage=<1940 year_built=auto +Vintage <1950 ResStockArguments vintage=<1950 year_built=auto +Vintage ACS 1940-59 +Vintage ACS 1960-79 +Vintage ACS 1980-99 +Vintage ACS 2000-09 +Vintage ACS 2010s +Vintage ACS <1940 +Water Heater Efficiency "Electric Heat Pump, 50 gal, 120 V Shared" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=4.9 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 65 gal, 120 V Shared" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=65 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=4.9 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 80 gal, 120 V Shared" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=80 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=4.9 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 50 gal, 3.45 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 50 gal, 3.45 UEF, 140F" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=140 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 66 gal, 3.35 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=66 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.35 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 80 gal, 3.45 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=80 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Natural Gas Premium, Condensing" ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Natural Gas Tankless, Condensing" ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=natural gas water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.96 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Propane Premium, Condensing" ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Electric Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=electricity water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.95 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Electric Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=electricity water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.92 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Electric Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=electricity water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.99 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency FIXME Fuel Oil Indirect ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.62 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Fuel Oil Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.68 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Fuel Oil Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.62 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Natural Gas Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.67 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Natural Gas Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Natural Gas Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=natural gas water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Other Fuel ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=wood water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Propane Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.67 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Propane Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Propane Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=propane water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_bedrooms_served=auto water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Fuel Electricity +Water Heater Fuel Fuel Oil +Water Heater Fuel Natural Gas +Water Heater Fuel Other Fuel +Water Heater Fuel Propane +Water Heater In Unit No +Water Heater In Unit Yes +Water Heater Location Attic ResStockArguments water_heater_location=attic +Water Heater Location Conditioned Mechanical Room ResStockArguments water_heater_location=other heated space +Water Heater Location Crawlspace ResStockArguments water_heater_location=crawlspace +Water Heater Location Garage ResStockArguments water_heater_location=garage +Water Heater Location Heated Basement ResStockArguments water_heater_location=basement - conditioned +Water Heater Location Living Space ResStockArguments water_heater_location=conditioned space +Water Heater Location Outside ResStockArguments water_heater_location=other exterior +Water Heater Location Unheated Basement ResStockArguments water_heater_location=basement - unconditioned +Window Areas F10 B30 L10 R10 ResStockArguments window_front_wwr=0.1 window_back_wwr=0.3 window_left_wwr=0.1 window_right_wwr=0.1 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F12 B12 L12 R12 ResStockArguments window_front_wwr=0.12 window_back_wwr=0.12 window_left_wwr=0.12 window_right_wwr=0.12 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F15 B15 L0 R0 ResStockArguments window_front_wwr=0.15 window_back_wwr=0.15 window_left_wwr=0 window_right_wwr=0 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F15 B15 L15 R15 ResStockArguments window_front_wwr=0.15 window_back_wwr=0.15 window_left_wwr=0.15 window_right_wwr=0.15 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F18 B18 L18 R18 ResStockArguments window_front_wwr=0.18 window_back_wwr=0.18 window_left_wwr=0.18 window_right_wwr=0.18 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F30 B30 L30 R30 ResStockArguments window_front_wwr=0.30 window_back_wwr=0.30 window_left_wwr=0.30 window_right_wwr=0.30 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F6 B6 L6 R6 ResStockArguments window_front_wwr=0.06 window_back_wwr=0.06 window_left_wwr=0.06 window_right_wwr=0.06 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F9 B9 L9 R9 ResStockArguments window_front_wwr=0.09 window_back_wwr=0.09 window_left_wwr=0.09 window_right_wwr=0.09 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas None ResStockArguments window_front_wwr=0.0 window_back_wwr=0.0 window_left_wwr=0.0 window_right_wwr=0.0 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Windows "Double, Clear, Metal, Air" ResStockArguments window_ufactor=0.76 window_shgc=0.67 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Metal, Air, Exterior Clear Storm" ResStockArguments window_ufactor=0.55 window_shgc=0.51 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.49 window_shgc=0.44 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Non-metal, Air" ResStockArguments window_ufactor=0.49 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Non-metal, Air, Exterior Clear Storm" ResStockArguments window_ufactor=0.34 window_shgc=0.49 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Non-metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.28 window_shgc=0.42 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Thermal-Break, Air" ResStockArguments window_ufactor=0.63 window_shgc=0.62 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Low-E, H-Gain" ResStockArguments window_ufactor=0.29 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Low-E, L-Gain" ResStockArguments window_ufactor=0.26 window_shgc=0.31 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Low-E, Non-metal, Air, L-Gain" ResStockArguments window_ufactor=0.37 window_shgc=0.3 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Low-E, Non-metal, Air, M-Gain" ResStockArguments window_ufactor=0.38 window_shgc=0.44 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Metal" ResStockArguments window_ufactor=1.16 window_shgc=0.76 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Metal, Exterior Clear Storm" ResStockArguments window_ufactor=0.67 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.57 window_shgc=0.47 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Non-metal" ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Non-metal, Exterior Clear Storm" ResStockArguments window_ufactor=0.47 window_shgc=0.54 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Non-metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.36 window_shgc=0.46 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Triple, Low-E, Insulated, Argon, H-Gain" ResStockArguments window_ufactor=0.18 window_shgc=0.40 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Triple, Low-E, Insulated, Argon, L-Gain" ResStockArguments window_ufactor=0.17 window_shgc=0.27 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Triple, Low-E, Non-metal, Air, L-Gain" ResStockArguments window_ufactor=0.29 window_shgc=0.26 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows No Windows ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows Void +Infiltration Reduction 30% ResStockArguments air_leakage_percent_reduction=30 +HVAC Secondary Heating Fuel Other Fuel ResStockArguments heating_system_2_fuel=wood +HVAC Heating Efficiency "ASHP, SEER 15.05, 8.82 HSPF, HERS, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "MSHP, SEER 14.5, 8.33 HSPF, HERS, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.33 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "ASHP, SEER 20, 11 HSPF, CCHP, Max Load, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=11 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=20 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.9 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-15 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_is_ducted=true heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "MSHP, SEER 20, 11 HSPF, CCHP, Max Load, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=11 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=20 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.9 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "ASHP, SEER 15.05, 8.82 HSPF, Separate Backup, HERS, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=separate heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=0.0 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_is_ducted=true heat_pump_backup_sizing_methodology=supplemental +HVAC Secondary Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.76 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.80 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.90 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Wall/Floor Furnace, 60% AFUE" ResStockArguments heating_system_2_type=WallFurnace heating_system_2_heating_efficiency=0.60 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Wall/Floor Furnace, 68% AFUE" ResStockArguments heating_system_2_type=WallFurnace heating_system_2_heating_efficiency=0.68 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Electric Boiler, 100% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Electric Wall Furnace, 100% AFUE" ResStockArguments heating_system_2_type=WallFurnace heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 60% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 60% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 60% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 60% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=wood heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 76% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 76% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 76% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 76% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=wood heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 80% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 80% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 80% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 80% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=wood heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 92.5% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 92.5% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 92.5% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, HERS, Supplemental Backup Sizing, 92.5% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=wood heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "MSHP, SEER 14.5, 8.33 HSPF, Separate Backup, HERS, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.33 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=separate heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=0.0 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental From fbad4bdf237a235880c8a0382657c25c4b501f50 Mon Sep 17 00:00:00 2001 From: Rajendra Adhikari Date: Wed, 14 Aug 2024 11:23:00 -0500 Subject: [PATCH 16/21] Some refactoring --- measures/LoadFlexibility/measure.py | 29 +++- .../LoadFlexibility/resources/input_helper.py | 9 +- .../LoadFlexibility/resources/setpoint.py | 148 ++++++++++-------- .../resources/setpoint_helper.py | 1 + .../tests/test_load_flexibility.py | 16 +- .../LoadFlexibility/tests/test_setpoint.py | 39 ++--- 6 files changed, 134 insertions(+), 108 deletions(-) diff --git a/measures/LoadFlexibility/measure.py b/measures/LoadFlexibility/measure.py index 7683d0a3f2..9dcebc6d1d 100644 --- a/measures/LoadFlexibility/measure.py +++ b/measures/LoadFlexibility/measure.py @@ -13,7 +13,7 @@ import dataclasses import xml.etree.ElementTree as ET import sys - +from dataclasses import fields if os.environ.get('DEBUGPY', '') == 'true': import debugpy @@ -23,8 +23,8 @@ RESOURCES_DIR = Path(__file__).parent / "resources" sys.path.insert(0, str(RESOURCES_DIR)) -from setpoint import modify_all_setpoints -from input_helper import OffsetType, RelativeOffsetData, AbsoluteOffsetData, ALL_MEASURE_ARGS +from setpoint import HVACSetpoints +from input_helper import OffsetType, RelativeOffsetData, AbsoluteOffsetData, OffsetTimingData, ALL_MEASURE_ARGS from xml_helper import HPXML from setpoint_helper import HVACSetpointVals, BuildingInfo sys.path.pop(0) @@ -79,10 +79,10 @@ def get_hpxml_path(self, runner: openstudio.measure.OSRunner): if 'HPXMLtoOpenStudio' in step['measure_dir_name']][0] return hpxml_path - def get_setpoint_csv(self, setpoint: HVACSetpointVals): + def get_setpoint_csv(self, setpoint: HVACSetpoints): header = 'heating_setpoint,cooling_setpoint' vals = '\n'.join([','.join([str(v) for v in val_pair]) - for val_pair in zip(setpoint.heating_setpoint, setpoint.cooling_setpoint)]) + for val_pair in zip(setpoint.heating_setpoints, setpoint.cooling_setpoints)]) return f"{header}\n{vals}" def process_arguments(self, runner, arg_dict: dict, passed_arg: set): @@ -100,6 +100,11 @@ def process_arguments(self, runner, arg_dict: dict, passed_arg: set): for arg in ALL_MEASURE_ARGS: arg.set_val(arg_dict[arg.name]) + # apply random shift to the start and end times to avoid coincident peaks + for f in fields(OffsetTimingData): + value = getattr(OffsetTimingData, f.name) + value = self._time_shift(value) + def run( self, model: openstudio.model.Model, @@ -123,13 +128,21 @@ def run( result = subprocess.run(["openstudio", f"{RESOURCES_DIR}/create_setpoint_schedules.rb", hpxml_path, osw_path], capture_output=True) - setpoints = [HVACSetpointVals(**setpoint) for setpoint in json.loads(result.stdout) + building_info = BuildingInfo() + + setpoints = [HVACSetpoints(os_runner=runner, + building_info=building_info, + heating_setpoints=setpoint['heating setpoint'], + cooling_setpoints=setpoint['cooling setpoint']) + for setpoint in json.loads(result.stdout) ] # [{"heating setpoint": [], "cooling setpoint": []}] if result.returncode != 0: runner.registerError(f"Failed to run create_setpoint_schedules.rb : {result.stderr}") return False - building_info = BuildingInfo() - modify_all_setpoints(runner, setpoints, building_info) + + for setpoint in setpoints: + setpoint._modify_setpoint() + hpxml = HPXML(hpxml_path) doc_buildings = hpxml.findall("Building") for (indx, building) in enumerate(doc_buildings): diff --git a/measures/LoadFlexibility/resources/input_helper.py b/measures/LoadFlexibility/resources/input_helper.py index c5887218d0..18862f4ae3 100644 --- a/measures/LoadFlexibility/resources/input_helper.py +++ b/measures/LoadFlexibility/resources/input_helper.py @@ -1,5 +1,5 @@ from dataclasses import dataclass, field -#import openstudio +import openstudio from typing import Optional from typing import TypeVar, Generic, List T = TypeVar('T') @@ -218,6 +218,13 @@ class __OffsetTimingData: displayname="Cooling On-Peak Duration (hours)", description="The duration of the on-peak period in hours." ) + timing_shift_hr: Argument[float] = Argument( + name='random_timing_shift', + type=bool, + default=1.0, + displayname="Random Timing Shift", + description="Random shift to the start and end times in hour to avoid coincident peaks. If the value is 1, start and end time will be shifted by a maximum of +- 1 hour." + ) # Create an instance of the class. diff --git a/measures/LoadFlexibility/resources/setpoint.py b/measures/LoadFlexibility/resources/setpoint.py index b305003dec..71e1341b86 100644 --- a/measures/LoadFlexibility/resources/setpoint.py +++ b/measures/LoadFlexibility/resources/setpoint.py @@ -22,20 +22,19 @@ class PeakTimeDefaults: class HVACSetpoints: def __init__(self, os_runner: openstudio.measure.OSRunner, - sim_year: int, building_info: BuildingInfo, cooling_setpoints: List[int], heating_setpoints: List[int]): self.runner = os_runner - self.sim_year = sim_year + self.sim_year = building_info.sim_year self.building_info = building_info self.cooling_setpoints = cooling_setpoints self.heating_setpoints = heating_setpoints self.total_indices = len(cooling_setpoints) assert len(cooling_setpoints) == len(heating_setpoints) self.num_timsteps_per_hour = self.total_indices // 8760 - self.shift = np.random.randint(-self.num_timsteps_per_hour, self.num_timsteps_per_hour, 1)[0] + self.shift = self._get_random_shift_amount() current_dir = os.path.dirname(os.path.realpath(__file__)) # csv file is generated from on_peak_hour_generation.py @@ -45,7 +44,12 @@ def __init__(self, os_runner: openstudio.measure.OSRunner, self.on_peak_hour_weekday_dict = on_peak_hour_weekday.set_index('month').transpose().to_dict() self.on_peak_hour_weekend_dict = on_peak_hour_weekend.set_index('month').transpose().to_dict() self.log_input() - self._modify_setpoint() + + def _get_random_shift_amount(self): + assert OffsetTimingData.timing_shift_hr.val is not None, "Timing shift not set" + min_shift = round(-self.num_timsteps_per_hour * OffsetTimingData.timing_shift_hr.val) + max_shift = round(self.num_timsteps_per_hour * OffsetTimingData.timing_shift_hr.val) + return np.random.randint(min_shift, max_shift, 1)[0] def _get_month_day(self, indx) -> Tuple[int, str]: """ @@ -54,8 +58,7 @@ def _get_month_day(self, indx) -> Tuple[int, str]: the year number need to modify if the simulation year is not 2007. """ - num_timsteps_per_hour = self.total_indices / 8760 - hour_num = indx // num_timsteps_per_hour + hour_num = indx // self.num_timsteps_per_hour day_num = int(hour_num // 24 + 1) month = int(datetime.strptime(str(self.sim_year) + "-" + str(day_num), "%Y-%j").strftime("%m")) @@ -67,7 +70,7 @@ def _get_month_day(self, indx) -> Tuple[int, str]: day_type = 'weekend' return month, day_type - def _get_prepeak_and_peak_start_end(self, index, setpoint_type): + def _get_offset_time(self, index, setpoint_type): """ determine the prepeak start time, on peak start and end time, in the unit of hour @@ -103,22 +106,36 @@ def _get_prepeak_and_peak_start_end(self, index, setpoint_type): on_peak_end_index = len(row_morning) - row_morning[::-1].index(1) - 1 on_peak_mid_index = math.ceil((on_peak_start_index + on_peak_end_index) / 2) offset_time.peak_start_morning = math.ceil(on_peak_mid_index - on_peak_duration / 2) - offset_time.peak_end_morning = math.ceil(on_peak_mid_index + on_peak_duration / 2)-1 + offset_time.peak_end_morning = math.ceil(on_peak_mid_index + on_peak_duration / 2) - 1 offset_time.pre_peak_start_morning = offset_time.peak_start_morning - pre_peak_duration if 1 in row_afternoon: on_peak_start_index = row_afternoon.index(1) + 11 on_peak_end_index = len(row_afternoon) - row_afternoon[::-1].index(1) - 1 + 11 on_peak_mid_index = math.ceil((on_peak_start_index + on_peak_end_index)/2) offset_time.peak_start_afternoon = math.ceil(on_peak_mid_index - on_peak_duration / 2) - offset_time.peak_end_afternoon = math.ceil(on_peak_mid_index + on_peak_duration / 2) - 1 + offset_time.peak_end_afternoon = math.ceil(on_peak_mid_index + on_peak_duration / 2) - 1 offset_time.pre_peak_start_afternoon = offset_time.peak_start_afternoon - pre_peak_duration + offset_time = self._shift_offsettime(offset_time) + return offset_time + + def _shift_offsettime(self, offset_time: PeakTimeDefaults): + offset_time.pre_peak_start_morning = self._time_shift(offset_time.pre_peak_start_morning) + offset_time.peak_start_morning = self._time_shift(offset_time.peak_start_morning) + offset_time.peak_end_morning = self._time_shift(offset_time.peak_end_morning) + offset_time.pre_peak_start_afternoon = self._time_shift(offset_time.pre_peak_start_afternoon) + offset_time.peak_start_afternoon = self._time_shift(offset_time.peak_start_afternoon) + offset_time.peak_end_afternoon = self._time_shift(offset_time.peak_end_afternoon) return offset_time - def _time_shift(self, time): - time_shift = time * self.num_timsteps_per_hour + self.shift - return time_shift + def _time_shift(self, indx_in_day): + indx_in_day = indx_in_day + self.shift + if indx_in_day > self.num_timsteps_per_hour * 24: + indx_in_day = self.num_timsteps_per_hour * 24 + if indx_in_day < 0: + indx_in_day = 0 + return indx_in_day - def _get_setpoint_offset(self, index, setpoint_type) -> int: + def _get_setpoint_offset(self, index_in_year, setpoint_type) -> int: """ offset the setpoint to a certain value given by user inputs, the defalut offset value for heating is: @@ -127,39 +144,33 @@ def _get_setpoint_offset(self, index, setpoint_type) -> int: decrease 4F during prepeak time, increase 4F during on peak time """ - offset_time = self._get_prepeak_and_peak_start_end(index, setpoint_type) - - # To avoid coincidence response, randomly shift the demand response from - 1hour to 1 hour - for f in fields(offset_time): - value = getattr(offset_time, f.name) - value = self._time_shift(value) - if isinstance(value, (int, float)): - setattr(offset_time, f.name, value) + offset_time = self._get_offset_time(index_in_year, setpoint_type) if setpoint_type == 'heating': - pre_peak_offset = RelativeOffsetData.heating_pre_peak_offset - on_peak_offset = RelativeOffsetData.heating_on_peak_offset + pre_peak_offset = RelativeOffsetData.heating_pre_peak_offset.val + on_peak_offset = RelativeOffsetData.heating_on_peak_offset.val elif setpoint_type == 'cooling': - pre_peak_offset = RelativeOffsetData.cooling_pre_peak_offset - on_peak_offset = RelativeOffsetData.cooling_on_peak_offset + pre_peak_offset = RelativeOffsetData.cooling_pre_peak_offset.val + on_peak_offset = RelativeOffsetData.cooling_on_peak_offset.val else: raise ValueError(f"setpoint type {setpoint_type} is not supported") - day_index = int(year_index % (24 * num_timsteps_per_hour)) - if (offset_time.pre_peak_start_morning <= day_index < offset_time.peak_start_morning)\ - or (offset_time.pre_peak_start_afternoon <= day_index < offset_time.peak_start_afternoon): + assert pre_peak_offset is not None, "Pre-peak offset not set" + assert on_peak_offset is not None, "On-peak offset not set" + + index_in_day = int(index_in_year % (24 * self.num_timsteps_per_hour)) + if (offset_time.pre_peak_start_morning <= index_in_day < offset_time.peak_start_morning)\ + or (offset_time.pre_peak_start_afternoon <= index_in_day < offset_time.peak_start_afternoon): setpoint_offset = pre_peak_offset - elif (offset_time.peak_start_morning <= day_index <= offset_time.peak_end_morning)\ - or (offset_time.peak_start_afternoon <= day_index <= offset_time.peak_end_afternoon): + elif (offset_time.peak_start_morning <= index_in_day <= offset_time.peak_end_morning)\ + or (offset_time.peak_start_afternoon <= index_in_day <= offset_time.peak_end_afternoon): setpoint_offset = on_peak_offset else: setpoint_offset = 0 return setpoint_offset - - def _get_setpoint_absolute_value(self, year_index, total_indices, on_peak_hour_weekday_dict, on_peak_hour_weekend_dict, shift, - setpoint_type, setpoint_default): + def _get_setpoint_absolute_value(self, year_index, setpoint_type, existing_setpoint): """ set the setpoint to a fixed value given by user inputs the default setpoint for heating is: @@ -167,16 +178,7 @@ def _get_setpoint_absolute_value(self, year_index, total_indices, on_peak_hour_w the defalut setpoint for cooling is: 60F during prepeak time, 80F during on peak time """ - num_timsteps_per_hour = total_indices / 8760 - offset_time = get_prepeak_and_peak_start_end( - year_index, total_indices, on_peak_hour_weekday_dict, on_peak_hour_weekend_dict, setpoint_type) - - # To avoid coincidence response, randomly shift the demand response from - 1hour to 1 hour - for f in fields(offset_time): - value = getattr(offset_time, f.name) - value = time_shift(value, num_timsteps_per_hour, shift) - if isinstance(value, (int, float)): - setattr(offset_time, f.name, value) + offset_time = self._get_offset_time(year_index, setpoint_type) if setpoint_type == 'heating': pre_peak_setpoint = AbsoluteOffsetData.heating_pre_peak_setpoint.val @@ -187,20 +189,22 @@ def _get_setpoint_absolute_value(self, year_index, total_indices, on_peak_hour_w else: raise ValueError(f"setpoint type {setpoint_type} is not supported") - day_index = int(year_index % (24 * num_timsteps_per_hour)) - if (offset_time.pre_peak_start_morning <= day_index < offset_time.peak_start_morning)\ - or (offset_time.pre_peak_start_afternoon <= day_index < offset_time.peak_start_afternoon): + assert pre_peak_setpoint is not None, "Pre-peak offset not set" + assert on_peak_setpoint is not None, "On-peak offset not set" + + index_in_day = int(year_index % (24 * self.num_timsteps_per_hour)) + if (offset_time.pre_peak_start_morning <= index_in_day < offset_time.peak_start_morning)\ + or (offset_time.pre_peak_start_afternoon <= index_in_day < offset_time.peak_start_afternoon): setpoint_reponse = pre_peak_setpoint - elif (offset_time.peak_start_morning <= day_index <= offset_time.peak_end_morning)\ - or (offset_time.peak_start_afternoon <= day_index <= offset_time.peak_end_afternoon): + elif (offset_time.peak_start_morning <= index_in_day <= offset_time.peak_end_morning)\ + or (offset_time.peak_start_afternoon <= index_in_day <= offset_time.peak_end_afternoon): setpoint_reponse = on_peak_setpoint else: - setpoint_reponse = setpoint_default + setpoint_reponse = existing_setpoint return setpoint_reponse - - def _clip_setpoints(self, setpoint, setpoint_type): + def _clip_setpoints(self, setpoint: int, setpoint_type): """ control the range of setpoint given by user inputs the default range for heating is: 55-80F @@ -208,32 +212,42 @@ def _clip_setpoints(self, setpoint, setpoint_type): """ if setpoint_type == 'heating': - setpoint_max = RelativeOffsetData.heating_max - setpoint_min = RelativeOffsetData.heating_min + setpoint_max = RelativeOffsetData.heating_max.val + setpoint_min = RelativeOffsetData.heating_min.val elif setpoint_type == 'cooling': - setpoint_max = RelativeOffsetData.cooling_max - setpoint_min = RelativeOffsetData.cooling_min + setpoint_max = RelativeOffsetData.cooling_max.val + setpoint_min = RelativeOffsetData.cooling_min.val + else: + raise ValueError(f"setpoint type {setpoint_type} is not supported") + assert setpoint_max is not None, "Max setpoint not set" + assert setpoint_min is not None, "Min setpoint not set" if setpoint > setpoint_max: setpoint = setpoint_max elif setpoint < setpoint_min: setpoint = setpoint_min + else: + setpoint = setpoint return setpoint + def _get_updated_setpoint(self, index_in_year, setpoint_type): + if setpoint_type == 'heating': + existing_setpoint = self.heating_setpoints[index_in_year] + else: + existing_setpoint = self.cooling_setpoints[index_in_year] + if OffsetTypeData.offset_type == OffsetType.relative: # make a setpoint offset compared with the default setpoint + new_setpoint = existing_setpoint + self._get_setpoint_offset(index_in_year, setpoint_type) + elif OffsetTypeData.offset_type == OffsetType.absolute: # set the setpoint to a fixed value + new_setpoint = self._get_setpoint_absolute_value(index_in_year, setpoint_type, existing_setpoint) + else: + raise ValueError(f"offset type {OffsetTypeData.offset_type} is not supported") + new_setpoint = self._clip_setpoints(new_setpoint, setpoint_type) + return new_setpoint def _modify_setpoint(self): for index in range(self.total_indices): - if OffsetTypeData.offset_type == OffsetType.relative: # make a setpoint offset compared with the default setpoint - self.heating_setpoints[index] += self._get_setpoint_offset(index, 'heating') - self.cooling_setpoints[index] += self._get_setpoint_offset(index, 'cooling') - # elif OffsetTypeData.offset_type == OffsetType.absolute: # set the setpoint to a fixed value - # setpoints.heating_setpoint[index] = get_setpoint_absolute_value( - # index, total_indices, on_peak_hour_weekday_dict, on_peak_hour_weekend_dict, shift, 'heating', setpoints.heating_setpoint) - # setpoints.cooling_setpoint[index] = get_setpoint_absolute_value( - # index, total_indices, on_peak_hour_weekday_dict, on_peak_hour_weekend_dict, shift, 'cooling', setpoints.cooling_setpoint) - - # setpoints.heating_setpoint = clip_setpoints(setpoints.heating_setpoint, 'heating') - # setpoints.cooling_setpoint = clip_setpoints(setpoints.cooling_setpoint, 'cooling') + self.heating_setpoints[index] = self._get_updated_setpoint(index, 'heating') + self.cooling_setpoints[index] = self._get_updated_setpoint(index, 'cooling') def log_input(self): """Modify setpoints based on user arguments.""" @@ -264,4 +278,4 @@ def log_input(self): f"{AbsoluteOffsetData.heating_on_peak_setpoint.val}") self.runner.registerInfo(f"{AbsoluteOffsetData.heating_pre_peak_setpoint.name}=" f"{AbsoluteOffsetData.heating_pre_peak_setpoint.val}") - self.runner.registerInfo(f"state={building_info.state}") + self.runner.registerInfo(f"state={self.building_info.state}") diff --git a/measures/LoadFlexibility/resources/setpoint_helper.py b/measures/LoadFlexibility/resources/setpoint_helper.py index 87b2dbb387..909e9cbad4 100644 --- a/measures/LoadFlexibility/resources/setpoint_helper.py +++ b/measures/LoadFlexibility/resources/setpoint_helper.py @@ -10,3 +10,4 @@ class HVACSetpointVals: @dataclass(frozen=True) class BuildingInfo: state: str = "CO" + sim_year: int = 2019 diff --git a/measures/LoadFlexibility/tests/test_load_flexibility.py b/measures/LoadFlexibility/tests/test_load_flexibility.py index c7f2b0312b..440a31907a 100644 --- a/measures/LoadFlexibility/tests/test_load_flexibility.py +++ b/measures/LoadFlexibility/tests/test_load_flexibility.py @@ -12,7 +12,7 @@ import dataclasses from measure import LoadFlexibility from resources.input_helper import OffsetTypeData, AbsoluteOffsetData, OffsetTimingData, RelativeOffsetData -from resources import setpoint +from resources.setpoint import HVACSetpoints sys.path.pop(0) # del sys.modules['measure'] @@ -38,13 +38,13 @@ def test_number_of_arguments_and_argument_names(self): actual_all_args = sorted([arg.name() for arg in arguments]) assert actual_all_args == expected_all_args - def test_setpoint_get_month_day(self): - year_index = 8759 - total_indices = 8760 - year = 2020 - month, day = setpoint.get_month_day(year_index, total_indices, year) - assert month == 12 - assert day == 31 + # def test_setpoint_get_month_day(self): + # year_index = 8759 + # total_indices = 8760 + # year = 2020 + # month, day = HVACSetpoints._get_month_day(year_index, total_indices, year) + # assert month == 12 + # assert day == 31 # def test_valid_argument_values(self): diff --git a/measures/LoadFlexibility/tests/test_setpoint.py b/measures/LoadFlexibility/tests/test_setpoint.py index d62a7bd707..4f14566605 100644 --- a/measures/LoadFlexibility/tests/test_setpoint.py +++ b/measures/LoadFlexibility/tests/test_setpoint.py @@ -3,37 +3,28 @@ from dataclasses import fields from pathlib import Path import sys +import pytest # update python path to include parent folder CURRENT_DIR_PATH = Path(__file__).parent.absolute() -sys.path.insert(0, str(CURRENT_DIR_PATH.parent)+'/resources') -import setpoint +sys.path.insert(0, str(CURRENT_DIR_PATH.parent / 'resources')) +from setpoint import HVACSetpoints +sys.path.pop(0) class Testsetpoint(unittest.TestCase): - @classmethod - def setUpClass(cls): - print('setUpClass') - - @classmethod - def tearDownClass(cls): - print('tearDownClass') - - def setUp(self): + def setup_method(self, method): print('setUp') state = 'CO' - on_peak_hour_weekday = pd.read_csv(f"on_peak_hour/{state}_weekday_on_peak.csv") - on_peak_hour_weekend = pd.read_csv(f"on_peak_hour/{state}_weekend_on_peak.csv") + on_peak_hour_weekday = pd.read_csv( CURRENT_DIR_PATH / f"on_peak_hour/{state}_weekday_on_peak.csv") + on_peak_hour_weekend = pd.read_csv(CURRENT_DIR_PATH / f"on_peak_hour/{state}_weekend_on_peak.csv") self.on_peak_hour_weekday_dict = on_peak_hour_weekday.set_index('month').transpose().to_dict() self.on_peak_hour_weekend_dict = on_peak_hour_weekend.set_index('month').transpose().to_dict() - def tearDown(self): - print('tearDown') - def test_get_month_day(self): print('test_get_month_day') self.assertEqual(setpoint.get_month_day(8755, 8760), (12, 'weekday')) self.assertEqual(setpoint.get_month_day(2, 8760), (1, 'weekday')) - + def test_get_prepeak_and_peak_start_end_winter(self): print('test_get_prepeak_and_peak_start_end_winter') offset_time = setpoint.get_prepeak_and_peak_start_end(2, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 'heating') @@ -43,14 +34,14 @@ def test_get_prepeak_and_peak_start_end_winter(self): self.assertEqual(offset_time.pre_peak_start_afternoon, 13) self.assertEqual(offset_time.peak_start_afternoon, 17) self.assertEqual(offset_time.peak_end_afternoon, 20) - + def test_get_prepeak_and_peak_start_end_summer(self): print('test_get_prepeak_and_peak_start_end_summer') offset_time = setpoint.get_prepeak_and_peak_start_end(5000, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 'cooling') self.assertEqual(offset_time.pre_peak_start_afternoon, 11) self.assertEqual(offset_time.peak_start_afternoon, 15) self.assertEqual(offset_time.peak_end_afternoon, 18) - + def test_time_shift(self): print('test_time_shift') offset_time = setpoint.get_prepeak_and_peak_start_end(2, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 'heating') @@ -65,21 +56,21 @@ def test_time_shift(self): self.assertEqual(offset_time.pre_peak_start_afternoon, 14) self.assertEqual(offset_time.peak_start_afternoon, 18) self.assertEqual(offset_time.peak_end_afternoon, 21) - + def test_get_setpoint_offset_heating(self): print('test_get_setpoint_offset_heating') setpoint_offset = setpoint.get_setpoint_offset(3, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating') self.assertEqual(setpoint_offset, 4) setpoint_offset = setpoint.get_setpoint_offset(7, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating') self.assertEqual(setpoint_offset, -4) - + def test_get_setpoint_offset_cooling(self): print('test_get_setpoint_offset_cooling') setpoint_offset = setpoint.get_setpoint_offset(2916, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling') self.assertEqual(setpoint_offset, -4) setpoint_offset = setpoint.get_setpoint_offset(2920, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling') self.assertEqual(setpoint_offset, 4) - + def test_get_setpoint_absolute_value_heating(self): print('test_get_setpoint_absolute_value_heating') setpoint_reponse = setpoint.get_setpoint_absolute_value(3, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating', 70) @@ -88,7 +79,7 @@ def test_get_setpoint_absolute_value_heating(self): self.assertEqual(setpoint_reponse, 55) setpoint_reponse = setpoint.get_setpoint_absolute_value(10, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating', 70) self.assertEqual(setpoint_reponse, 70) - + def test_get_setpoint_absolute_value_cooling(self): print('test_get_setpoint_absolute_value_cooling') setpoint_reponse = setpoint.get_setpoint_absolute_value(2916, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling', 70) @@ -97,7 +88,7 @@ def test_get_setpoint_absolute_value_cooling(self): self.assertEqual(setpoint_reponse, 80) setpoint_reponse = setpoint.get_setpoint_absolute_value(2924, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling', 70) self.assertEqual(setpoint_reponse, 70) - + def test_clip_setpoints(self): print('test_clip_setpoints') self.assertEqual(setpoint.clip_setpoints(90, 'heating'), 80) From 8401818a755833a798a9c608357621dc5cf85f07 Mon Sep 17 00:00:00 2001 From: Rajendra Adhikari Date: Fri, 16 Aug 2024 17:34:44 -0500 Subject: [PATCH 17/21] Some refactoring --- measures/LoadFlexibility/measure.py | 47 +-- .../resources/create_setpoint_schedules.rb | 16 +- .../LoadFlexibility/resources/input_helper.py | 182 ++++++------ .../on_peak_hour/AL_weekday_on_peak.csv | 13 - .../on_peak_hour/AL_weekend_on_peak.csv | 13 - .../on_peak_hour/AR_weekday_on_peak.csv | 13 - .../on_peak_hour/AR_weekend_on_peak.csv | 13 - .../on_peak_hour/AZ_weekday_on_peak.csv | 13 - .../on_peak_hour/AZ_weekend_on_peak.csv | 13 - .../on_peak_hour/CA_weekday_on_peak.csv | 13 - .../on_peak_hour/CA_weekend_on_peak.csv | 13 - .../on_peak_hour/CO_weekday_on_peak.csv | 13 - .../on_peak_hour/CO_weekend_on_peak.csv | 13 - .../on_peak_hour/CT_weekday_on_peak.csv | 13 - .../on_peak_hour/CT_weekend_on_peak.csv | 13 - .../on_peak_hour/DC_weekday_on_peak.csv | 13 - .../on_peak_hour/DC_weekend_on_peak.csv | 13 - .../on_peak_hour/DE_weekday_on_peak.csv | 13 - .../on_peak_hour/DE_weekend_on_peak.csv | 13 - .../on_peak_hour/FL_weekday_on_peak.csv | 13 - .../on_peak_hour/FL_weekend_on_peak.csv | 13 - .../on_peak_hour/GA_weekday_on_peak.csv | 13 - .../on_peak_hour/GA_weekend_on_peak.csv | 13 - .../on_peak_hour/IA_weekday_on_peak.csv | 13 - .../on_peak_hour/IA_weekend_on_peak.csv | 13 - .../on_peak_hour/ID_weekday_on_peak.csv | 13 - .../on_peak_hour/ID_weekend_on_peak.csv | 13 - .../on_peak_hour/IL_weekday_on_peak.csv | 13 - .../on_peak_hour/IL_weekend_on_peak.csv | 13 - .../on_peak_hour/IN_weekday_on_peak.csv | 13 - .../on_peak_hour/IN_weekend_on_peak.csv | 13 - .../on_peak_hour/KS_weekday_on_peak.csv | 13 - .../on_peak_hour/KS_weekend_on_peak.csv | 13 - .../on_peak_hour/KY_weekday_on_peak.csv | 13 - .../on_peak_hour/KY_weekend_on_peak.csv | 13 - .../on_peak_hour/LA_weekday_on_peak.csv | 13 - .../on_peak_hour/LA_weekend_on_peak.csv | 13 - .../on_peak_hour/MA_weekday_on_peak.csv | 13 - .../on_peak_hour/MA_weekend_on_peak.csv | 13 - .../on_peak_hour/MD_weekday_on_peak.csv | 13 - .../on_peak_hour/MD_weekend_on_peak.csv | 13 - .../on_peak_hour/ME_weekday_on_peak.csv | 13 - .../on_peak_hour/ME_weekend_on_peak.csv | 13 - .../on_peak_hour/MI_weekday_on_peak.csv | 13 - .../on_peak_hour/MI_weekend_on_peak.csv | 13 - .../on_peak_hour/MN_weekday_on_peak.csv | 13 - .../on_peak_hour/MN_weekend_on_peak.csv | 13 - .../on_peak_hour/MO_weekday_on_peak.csv | 13 - .../on_peak_hour/MO_weekend_on_peak.csv | 13 - .../on_peak_hour/MS_weekday_on_peak.csv | 13 - .../on_peak_hour/MS_weekend_on_peak.csv | 13 - .../on_peak_hour/MT_weekday_on_peak.csv | 13 - .../on_peak_hour/MT_weekend_on_peak.csv | 13 - .../on_peak_hour/NC_weekday_on_peak.csv | 13 - .../on_peak_hour/NC_weekend_on_peak.csv | 13 - .../on_peak_hour/ND_weekday_on_peak.csv | 13 - .../on_peak_hour/ND_weekend_on_peak.csv | 13 - .../on_peak_hour/NE_weekday_on_peak.csv | 13 - .../on_peak_hour/NE_weekend_on_peak.csv | 13 - .../on_peak_hour/NH_weekday_on_peak.csv | 13 - .../on_peak_hour/NH_weekend_on_peak.csv | 13 - .../on_peak_hour/NJ_weekday_on_peak.csv | 13 - .../on_peak_hour/NJ_weekend_on_peak.csv | 13 - .../on_peak_hour/NM_weekday_on_peak.csv | 13 - .../on_peak_hour/NM_weekend_on_peak.csv | 13 - .../on_peak_hour/NV_weekday_on_peak.csv | 13 - .../on_peak_hour/NV_weekend_on_peak.csv | 13 - .../on_peak_hour/NY_weekday_on_peak.csv | 13 - .../on_peak_hour/NY_weekend_on_peak.csv | 13 - .../on_peak_hour/OH_weekday_on_peak.csv | 13 - .../on_peak_hour/OH_weekend_on_peak.csv | 13 - .../on_peak_hour/OK_weekday_on_peak.csv | 13 - .../on_peak_hour/OK_weekend_on_peak.csv | 13 - .../on_peak_hour/OR_weekday_on_peak.csv | 13 - .../on_peak_hour/OR_weekend_on_peak.csv | 13 - .../on_peak_hour/PA_weekday_on_peak.csv | 13 - .../on_peak_hour/PA_weekend_on_peak.csv | 13 - .../on_peak_hour/RI_weekday_on_peak.csv | 13 - .../on_peak_hour/RI_weekend_on_peak.csv | 13 - .../on_peak_hour/SC_weekday_on_peak.csv | 13 - .../on_peak_hour/SC_weekend_on_peak.csv | 13 - .../on_peak_hour/SD_weekday_on_peak.csv | 13 - .../on_peak_hour/SD_weekend_on_peak.csv | 13 - .../on_peak_hour/TN_weekday_on_peak.csv | 13 - .../on_peak_hour/TN_weekend_on_peak.csv | 13 - .../on_peak_hour/TX_weekday_on_peak.csv | 13 - .../on_peak_hour/TX_weekend_on_peak.csv | 13 - .../on_peak_hour/UT_weekday_on_peak.csv | 13 - .../on_peak_hour/UT_weekend_on_peak.csv | 13 - .../on_peak_hour/VA_weekday_on_peak.csv | 13 - .../on_peak_hour/VA_weekend_on_peak.csv | 13 - .../on_peak_hour/VT_weekday_on_peak.csv | 13 - .../on_peak_hour/VT_weekend_on_peak.csv | 13 - .../on_peak_hour/WA_weekday_on_peak.csv | 13 - .../on_peak_hour/WA_weekend_on_peak.csv | 13 - .../on_peak_hour/WI_weekday_on_peak.csv | 13 - .../on_peak_hour/WI_weekend_on_peak.csv | 13 - .../on_peak_hour/WV_weekday_on_peak.csv | 13 - .../on_peak_hour/WV_weekend_on_peak.csv | 13 - .../on_peak_hour/WY_weekday_on_peak.csv | 13 - .../on_peak_hour/WY_weekend_on_peak.csv | 13 - .../LoadFlexibility/resources/setpoint.py | 273 +++++++++--------- .../resources/setpoint_helper.py | 13 - .../tests/on_peak_hour/CO_weekday_on_peak.csv | 13 - .../tests/on_peak_hour/CO_weekend_on_peak.csv | 13 - .../tests/test_load_flexibility.py | 14 +- .../LoadFlexibility/tests/test_setpoint.py | 198 ++++++++----- .../HPXMLtoOpenStudio/resources/schedules.rb | 4 +- 108 files changed, 375 insertions(+), 1672 deletions(-) delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/AL_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/AL_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/AR_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/AR_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/AZ_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/AZ_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/CA_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/CA_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/CO_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/CO_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/CT_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/CT_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/DC_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/DC_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/DE_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/DE_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/FL_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/FL_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/GA_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/GA_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/IA_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/IA_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/ID_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/ID_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/IL_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/IL_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/IN_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/IN_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/KS_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/KS_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/KY_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/KY_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/LA_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/LA_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/MA_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/MA_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/MD_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/MD_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/ME_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/ME_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/MI_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/MI_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/MN_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/MN_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/MO_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/MO_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/MS_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/MS_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/MT_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/MT_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/NC_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/NC_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/ND_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/ND_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/NE_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/NE_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/NH_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/NH_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/NJ_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/NJ_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/NM_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/NM_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/NV_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/NV_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/NY_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/NY_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/OH_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/OH_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/OK_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/OK_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/OR_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/OR_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/PA_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/PA_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/RI_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/RI_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/SC_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/SC_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/SD_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/SD_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/TN_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/TN_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/TX_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/TX_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/UT_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/UT_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/VA_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/VA_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/VT_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/VT_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/WA_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/WA_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/WI_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/WI_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/WV_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/WV_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/WY_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/resources/on_peak_hour/WY_weekend_on_peak.csv delete mode 100644 measures/LoadFlexibility/tests/on_peak_hour/CO_weekday_on_peak.csv delete mode 100644 measures/LoadFlexibility/tests/on_peak_hour/CO_weekend_on_peak.csv diff --git a/measures/LoadFlexibility/measure.py b/measures/LoadFlexibility/measure.py index 9dcebc6d1d..c392cdca29 100644 --- a/measures/LoadFlexibility/measure.py +++ b/measures/LoadFlexibility/measure.py @@ -13,6 +13,7 @@ import dataclasses import xml.etree.ElementTree as ET import sys +from typing import List, Dict from dataclasses import fields if os.environ.get('DEBUGPY', '') == 'true': @@ -24,9 +25,8 @@ RESOURCES_DIR = Path(__file__).parent / "resources" sys.path.insert(0, str(RESOURCES_DIR)) from setpoint import HVACSetpoints -from input_helper import OffsetType, RelativeOffsetData, AbsoluteOffsetData, OffsetTimingData, ALL_MEASURE_ARGS +from input_helper import OffsetType, RelativeOffsetData, AbsoluteOffsetData, OffsetTimingData, BuildingInfo, Inputs, Argument, get_input_from_dict from xml_helper import HPXML -from setpoint_helper import HVACSetpointVals, BuildingInfo sys.path.pop(0) @@ -68,9 +68,15 @@ def arguments(self, model: typing.Optional[openstudio.model.Model] = None): Measure arguments define which -- if any -- input parameters the user may set before running the measure. """ args = openstudio.measure.OSArgumentVector() - for arg in ALL_MEASURE_ARGS: + inputs = Inputs() + args.append(inputs.upgrade_name.getOSArgument()) + args.append(inputs.offset_type.getOSArgument()) + for arg in inputs.relative_offset.__dict__.values(): + args.append(arg.getOSArgument()) + for arg in inputs.absolute_offset.__dict__.values(): + args.append(arg.getOSArgument()) + for arg in inputs.offset_timing.__dict__.values(): args.append(arg.getOSArgument()) - return args def get_hpxml_path(self, runner: openstudio.measure.OSRunner): @@ -79,31 +85,25 @@ def get_hpxml_path(self, runner: openstudio.measure.OSRunner): if 'HPXMLtoOpenStudio' in step['measure_dir_name']][0] return hpxml_path - def get_setpoint_csv(self, setpoint: HVACSetpoints): + def get_setpoint_csv(self, setpoint_dict: Dict[str, List[int]]): header = 'heating_setpoint,cooling_setpoint' vals = '\n'.join([','.join([str(v) for v in val_pair]) - for val_pair in zip(setpoint.heating_setpoints, setpoint.cooling_setpoints)]) + for val_pair in zip(setpoint_dict['heating_setpoints'], + setpoint_dict['cooling_setpoints'])]) return f"{header}\n{vals}" def process_arguments(self, runner, arg_dict: dict, passed_arg: set): if arg_dict['offset_type'] == OffsetType.absolute: relative_offset_fields = set(f.name for f in dataclasses.fields(RelativeOffsetData)) if intersect_args := passed_arg & relative_offset_fields: - runner.registerWargning(f"These inputs are ignored ({intersect_args}) since offset type is absolute.") - return False + runner.registerWarning(f"These inputs are ignored ({intersect_args}) since offset type is absolute.") + if arg_dict['offset_type'] == OffsetType.relative: absolute_offset_fields = set(f.name for f in dataclasses.fields(AbsoluteOffsetData)) if intersect_args := passed_arg & absolute_offset_fields: runner.registerError(f"These inputs are ignored ({intersect_args}) since offset type is relative.") - return False - - for arg in ALL_MEASURE_ARGS: - arg.set_val(arg_dict[arg.name]) - # apply random shift to the start and end times to avoid coincident peaks - for f in fields(OffsetTimingData): - value = getattr(OffsetTimingData, f.name) - value = self._time_shift(value) + return get_input_from_dict(arg_dict) def run( self, @@ -120,8 +120,7 @@ def run( runner.registerInfo("Starting LoadFlexibility") arg_dict = runner.getArgumentValues(self.arguments(model), user_arguments) passed_args = {arg_name for arg_name, arg_value in dict(user_arguments).items() if arg_value.hasValue()} - self.process_arguments(runner, arg_dict, passed_args) # sets the values of the arguments in the dataclasses - + inputs = self.process_arguments(runner, arg_dict, passed_args) # Returns Inputs object osw_path = str(runner.workflow().oswPath().get()) hpxml_path = self.get_hpxml_path(runner) @@ -132,16 +131,18 @@ def run( setpoints = [HVACSetpoints(os_runner=runner, building_info=building_info, - heating_setpoints=setpoint['heating setpoint'], - cooling_setpoints=setpoint['cooling setpoint']) + inputs=inputs, + heating_setpoints=setpoint['heating_setpoints'], + cooling_setpoints=setpoint['cooling_setpoints']) for setpoint in json.loads(result.stdout) - ] # [{"heating setpoint": [], "cooling setpoint": []}] + ] # [{"heating_setpoint": [], "cooling_setpoint": []}] if result.returncode != 0: runner.registerError(f"Failed to run create_setpoint_schedules.rb : {result.stderr}") return False + new_setpoints: List[Dict[str, List[int]]] = [] for setpoint in setpoints: - setpoint._modify_setpoint() + new_setpoints.append(setpoint._get_modified_setpoints(inputs=inputs)) hpxml = HPXML(hpxml_path) doc_buildings = hpxml.findall("Building") @@ -149,7 +150,7 @@ def run( doc_building_id = building.find("ns:BuildingID", hpxml.ns).get('id') output_csv_name = f"hvac_setpoint_schedule_{doc_building_id}.csv" output_csv_path = Path(hpxml_path).parent / output_csv_name - setpoint_dict = setpoints[indx] + setpoint_dict = new_setpoints[indx] with open(output_csv_path, 'w', newline='') as f: f.write(self.get_setpoint_csv(setpoint_dict)) extension = hpxml.create_elements_as_needed(building, ['BuildingDetails', 'BuildingSummary', 'extension']) diff --git a/measures/LoadFlexibility/resources/create_setpoint_schedules.rb b/measures/LoadFlexibility/resources/create_setpoint_schedules.rb index 83138c562b..128406395c 100644 --- a/measures/LoadFlexibility/resources/create_setpoint_schedules.rb +++ b/measures/LoadFlexibility/resources/create_setpoint_schedules.rb @@ -21,13 +21,12 @@ def initialize(hpxml, hpxml_path, workflow_path, building_index) @hpxml = hpxml @hpxml_bldg = @hpxml.buildings[building_index] @epw_path = Location.get_epw_path(@hpxml_bldg, @hpxml_path) - @epw_file = OpenStudio::EpwFile.new(@epw_path) - @sim_year = Location.get_sim_calendar_year(@hpxml.header.sim_calendar_year, @epw_file) - @total_days_in_year = Constants.NumDaysInYear(@sim_year) - @sim_start_day = DateTime.new(@sim_year, 1, 1) @workflow_json = OpenStudio::WorkflowJSON.new(workflow_path) @runner = OpenStudio::Measure::OSRunner.new(@workflow_json) - @weather = WeatherProcess.new(epw_path: @epw_path, runner: @runner, hpxml: @hpxml) + @weather = WeatherFile.new(epw_path: @epw_path, runner: @runner, hpxml: @hpxml) + @sim_year = Location.get_sim_calendar_year(@hpxml.header.sim_calendar_year, @weather) + @total_days_in_year = Constants.NumDaysInYear(@sim_year) + @sim_start_day = DateTime.new(@sim_year, 1, 1) @minutes_per_step = @hpxml.header.timestep @steps_in_day = 24 * 60 / @minutes_per_step end @@ -56,7 +55,7 @@ def get_heating_cooling_setpoint_schedule() cooling_setpoints << cooling_setpoint_sch[day][hour] end end - return {"heating_setpoint": heating_setpoints, "cooling_setpoint": cooling_setpoints} + return {"heating_setpoints": heating_setpoints, "cooling_setpoints": cooling_setpoints} end def c2f(setpoint_sch) @@ -68,8 +67,9 @@ def get_heating_cooling_weekday_weekend_setpoints has_ceiling_fan = (@hpxml_bldg.ceiling_fans.size > 0) cooling_days, heating_days = get_heating_cooling_days(hvac_control) hvac_control = @hpxml_bldg.hvac_controls[0] - htg_weekday_setpoints, htg_weekend_setpoints = HVAC.get_heating_setpoints(hvac_control, @sim_year) - clg_weekday_setpoints, clg_weekend_setpoints = HVAC.get_cooling_setpoints(hvac_control, has_ceiling_fan, @sim_year, @weather) + onoff_thermostat_ddb = @hpxml.header.hvac_onoff_thermostat_deadband.to_f + htg_weekday_setpoints, htg_weekend_setpoints = HVAC.get_heating_setpoints(hvac_control, @sim_year, onoff_thermostat_ddb) + clg_weekday_setpoints, clg_weekend_setpoints = HVAC.get_cooling_setpoints(hvac_control, has_ceiling_fan, @sim_year, @weather, onoff_thermostat_ddb) htg_weekday_setpoints, htg_weekend_setpoints, clg_weekday_setpoints, clg_weekend_setpoints = HVAC.create_setpoint_schedules(@runner, heating_days, cooling_days, htg_weekday_setpoints, htg_weekend_setpoints, clg_weekday_setpoints, clg_weekend_setpoints, @sim_year) return c2f(clg_weekday_setpoints), c2f(clg_weekend_setpoints), c2f(htg_weekday_setpoints), c2f(htg_weekend_setpoints) diff --git a/measures/LoadFlexibility/resources/input_helper.py b/measures/LoadFlexibility/resources/input_helper.py index 18862f4ae3..ca52018538 100644 --- a/measures/LoadFlexibility/resources/input_helper.py +++ b/measures/LoadFlexibility/resources/input_helper.py @@ -2,6 +2,7 @@ import openstudio from typing import Optional from typing import TypeVar, Generic, List +import dataclasses T = TypeVar('T') @@ -10,6 +11,12 @@ class OffsetType: absolute: str = 'absolute' +@dataclass(frozen=True) +class BuildingInfo: + state: str = "CO" + sim_year: int = 2019 + + @dataclass(frozen=True) class Argument(Generic[T]): """ @@ -62,201 +69,176 @@ def set_val(self, val): @dataclass(frozen=True) -class __OffsetTypeData: - offset_type: Argument[str] = Argument( - name='offset_type', - type=tuple, - displayname="Setpoint offset type", - description="Whether to apply the demand response setpoints relative to the default setpoints" - " or as absolute values.", - required=True, - choices=(OffsetType.relative, OffsetType.absolute), - default=OffsetType.relative - ) - - -# Create an instance of the class. -# This is the only instance that should be created and is used everywhere the module is imported. -OffsetTypeData = __OffsetTypeData() - - -@dataclass(frozen=True) -class __RelativeOffsetData: - heating_pre_peak_offset: Argument[int] = Argument( +class RelativeOffsetData: + heating_pre_peak_offset: Argument[int] = field(default_factory=lambda: Argument( name='heating_pre_peak_offset', type=int, default=4, displayname="Heating Pre-Peak Offset (deg F)", description="How much increase offset to apply to the heating schedule in degree fahrenheit before the peak. Only used" " if offset type is relative." - ) - heating_on_peak_offset: Argument[int] = Argument( + )) + heating_on_peak_offset: Argument[int] = field(default_factory=lambda: Argument( name='heating_on_peak_offset', type=int, default=4, displayname="Heating On-Peak Offset (deg F)", description="How much decrease offset to apply to the heating schedule in degree fahrenheit on the peak. Only used" " if offset type is relative." - ) - heating_max: Argument[int] = Argument( + )) + heating_max: Argument[int] = field(default_factory=lambda: Argument( name='heating_max', type=int, default=80, displayname="Heating Max Setpoint (deg F)", description="The maximum heating setpoint in degree fahrenheit offsets should honor. Only used if offset" " type is relative." - ) - heating_min: Argument[int] = Argument( + )) + heating_min: Argument[int] = field(default_factory=lambda: Argument( name='heating_min', type=int, default=55, displayname="Heating Min Setpoint (deg F)", description="The minimum heating setpoint in degree fahrenheit that offsets should honor. Only used if" " offset type is relative." - ) - cooling_pre_peak_offset: Argument[int] = Argument( + )) + cooling_pre_peak_offset: Argument[int] = field(default_factory=lambda: Argument( name='cooling_pre_peak_offset', type=int, default=4, displayname="Cooling Pre-Peak Offset (deg F)", description="How much decrease offset to apply to the cooling schedule in degree fahrenheit before the peak." " Only used if offset type is relative." - ) - cooling_on_peak_offset: Argument[int] = Argument( + )) + cooling_on_peak_offset: Argument[int] = field(default_factory=lambda: Argument( name='cooling_on_peak_offset', type=int, default=4, displayname="Cooling On-Peak Offset (deg F)", description="How much increase offset to apply to the cooling schedule in degree fahrenheit on the peak." " Only used if offset type is relative." - ) - cooling_max: Argument[int] = Argument( + )) + cooling_max: Argument[int] = field(default_factory=lambda: Argument( name='cooling_max', type=int, default=80, displayname="Cooling Max Setpoint (deg F)", description="The maximum cooling setpoint in degree fahrenheit offsets should honor. Only used" " if offset type is relative." - ) - cooling_min: Argument[int] = Argument( + )) + cooling_min: Argument[int] = field(default_factory=lambda: Argument( name='cooling_min', type=int, default=60, displayname="Cooling Min Setpoint (deg F)", description="The minimum cooling setpoint in degree fahrenheit that offsets should honor." " Only used if offset type is relative." - ) - - -# Create an instance of the class. -# This is the only instance that should be created and is used everywhere the module is imported. -RelativeOffsetData = __RelativeOffsetData() + )) @dataclass(frozen=True) -class __AbsoluteOffsetData: - heating_on_peak_setpoint: Argument[int] = Argument( +class AbsoluteOffsetData: + heating_on_peak_setpoint: Argument[int] = field(default_factory=lambda: Argument( name='heating_on_peak_setpoint', type=int, default=55, displayname="Heating On-Peak Setpoint (deg F)", description="The heating setpoint in degree fahrenheit on the peak. Only used if offset type is absolute." - ) - heating_pre_peak_setpoint: Argument[int] = Argument( + )) + heating_pre_peak_setpoint: Argument[int] = field(default_factory=lambda: Argument( name='heating_pre_peak_setpoint', type=int, default=80, displayname="Heating Pre-Peak Setpoint (deg F)", description="The heating setpoint in degree fahrenheit before the peak. Only used if offset type is absolute." - ) - cooling_on_peak_setpoint: Argument[int] = Argument( + )) + cooling_on_peak_setpoint: Argument[int] = field(default_factory=lambda: Argument( name='cooling_on_peak_setpoint', type=int, default=80, displayname="Cooling On-Peak Setpoint (deg F)", description="The cooling setpoint in degree fahrenheit on the peak. Only used if offset type is absolute." - ) - cooling_pre_peak_setpoint: Argument[int] = Argument( + )) + cooling_pre_peak_setpoint: Argument[int] = field(default_factory=lambda: Argument( name='cooling_pre_peak_setpoint', type=int, default=60, displayname="Cooling Pre-Peak Setpoint (deg F)", description="The cooling setpoint in degree fahrenheit before the peak. Only used if offset type is absolute." - ) - - -AbsoluteOffsetData = __AbsoluteOffsetData() + )) @dataclass(frozen=True) -class __OffsetTimingData: - heating_pre_peak_duration: Argument[int] = Argument( +class OffsetTimingData: + heating_pre_peak_duration: Argument[int] = field(default_factory=lambda: Argument( name='heating_pre_peak_duration', type=int, default=4, displayname="Heating Pre-Peak Duration (hours)", description="The duration of the pre-peak period in hours." - ) - cooling_pre_peak_duration: Argument[int] = Argument( + )) + cooling_pre_peak_duration: Argument[int] = field(default_factory=lambda: Argument( name='cooling_pre_peak_duration', type=int, default=4, displayname="Cooling Pre-Peak Duration (hours)", description="The duration of the pre-peak period in hours." - ) - heating_on_peak_duration: Argument[int] = Argument( + )) + heating_on_peak_duration: Argument[int] = field(default_factory=lambda: Argument( name='heating_on_peak_duration', type=int, default=4, displayname="Heating On-Peak Duration (hours)", description="The duration of the on-peak period in hours." - ) - cooling_on_peak_duration: Argument[int] = Argument( + )) + cooling_on_peak_duration: Argument[int] = field(default_factory=lambda: Argument( name='cooling_on_peak_duration', type=int, default=4, displayname="Cooling On-Peak Duration (hours)", description="The duration of the on-peak period in hours." - ) - timing_shift_hr: Argument[float] = Argument( + )) + random_timing_shift: Argument[float] = field(default_factory=lambda: Argument( name='random_timing_shift', - type=bool, + type=float, default=1.0, displayname="Random Timing Shift", description="Random shift to the start and end times in hour to avoid coincident peaks. If the value is 1, start and end time will be shifted by a maximum of +- 1 hour." - ) - - -# Create an instance of the class. -# This is the only instance that should be created and is used everywhere the module is imported. -OffsetTimingData = __OffsetTimingData() - - -upgrade_name_arg = Argument(name='upgrade_name', - type=str, - required=False, - displayname='Upgrade Name', default="", - description='The name of the upgrade when used as a part of upgrade measure') - - -def _get_args(data_obj) -> List[Argument]: - """ - Returns a list of Argument instances defined in the dataclass. - For a dataclass defined as: - @dataclass - class MyClass: - arg1: Argument[int] = Argument(name='arg1', type=int, default=1) - arg2: Argument[str] = Argument(name='arg2', type=str, default='a') - - MyClass().__dataclass_fields__.values() will return [Field(name='arg1', ...), Field(name='arg2', ...)] - And Field(name='arg1', ...).default will return Argument(name='arg1', type=int, default=1) - This function returns [Argument(name='arg1', type=int, default=1), Argument(name='arg2', type=str, default='a')] - """ - return [field.default for field in data_obj.__dataclass_fields__.values()] - - -ALL_MEASURE_ARGS = [upgrade_name_arg] -ALL_MEASURE_ARGS += _get_args(OffsetTypeData) -ALL_MEASURE_ARGS += _get_args(RelativeOffsetData) -ALL_MEASURE_ARGS += _get_args(AbsoluteOffsetData) -ALL_MEASURE_ARGS += _get_args(OffsetTimingData) + )) + + +@dataclass +class Inputs: + upgrade_name: Argument[str] = field(default_factory=lambda: Argument( + name='upgrade_name', + type=str, + default="None", + displayname='Upgrade Name', + description='The name of the upgrade when used as a part of upgrade measure' + )) + offset_type: Argument[str] = field(default_factory=lambda: Argument( + name='offset_type', + type=tuple, + displayname="Setpoint offset type", + description="Whether to apply the demand response setpoints relative to the default setpoints" + " or as absolute values.", + required=True, + choices=(OffsetType.relative, OffsetType.absolute), + default=OffsetType.relative + )) + relative_offset: RelativeOffsetData = field(default_factory=lambda: RelativeOffsetData()) + absolute_offset: AbsoluteOffsetData = field(default_factory=lambda: AbsoluteOffsetData()) + offset_timing: OffsetTimingData = field(default_factory=lambda: OffsetTimingData()) + + +def get_input_from_dict(arg_dict) -> Inputs: + inputs = Inputs() + inputs.upgrade_name.set_val(arg_dict.get('upgrade_name')) + inputs.offset_type.set_val(arg_dict.get('offset_type')) + input_args = [] + input_args += inputs.relative_offset.__dict__.values() + input_args += inputs.absolute_offset.__dict__.values() + input_args += inputs.offset_timing.__dict__.values() + for input_field in input_args: + input_field.set_val(arg_dict[input_field.name]) + return inputs diff --git a/measures/LoadFlexibility/resources/on_peak_hour/AL_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/AL_weekday_on_peak.csv deleted file mode 100644 index 08a1d9ca89..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/AL_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -02,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -03,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -11,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -12,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/AL_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/AL_weekend_on_peak.csv deleted file mode 100644 index 08a1d9ca89..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/AL_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -02,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -03,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -11,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -12,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/AR_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/AR_weekday_on_peak.csv deleted file mode 100644 index b08e82c594..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/AR_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/AR_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/AR_weekend_on_peak.csv deleted file mode 100644 index b08e82c594..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/AR_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/AZ_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/AZ_weekday_on_peak.csv deleted file mode 100644 index cd3404f9a2..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/AZ_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/AZ_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/AZ_weekend_on_peak.csv deleted file mode 100644 index cd3404f9a2..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/AZ_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/CA_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/CA_weekday_on_peak.csv deleted file mode 100644 index ee5c369dea..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/CA_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/CA_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/CA_weekend_on_peak.csv deleted file mode 100644 index ee5c369dea..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/CA_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/CO_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/CO_weekday_on_peak.csv deleted file mode 100644 index ac4721f3b9..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/CO_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/CO_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/CO_weekend_on_peak.csv deleted file mode 100644 index ac4721f3b9..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/CO_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/CT_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/CT_weekday_on_peak.csv deleted file mode 100644 index 9eb4973df9..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/CT_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/CT_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/CT_weekend_on_peak.csv deleted file mode 100644 index 9eb4973df9..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/CT_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/DC_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/DC_weekday_on_peak.csv deleted file mode 100644 index 6ea2924577..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/DC_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/DC_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/DC_weekend_on_peak.csv deleted file mode 100644 index 6ea2924577..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/DC_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/DE_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/DE_weekday_on_peak.csv deleted file mode 100644 index 6ea2924577..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/DE_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/DE_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/DE_weekend_on_peak.csv deleted file mode 100644 index 6ea2924577..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/DE_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/FL_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/FL_weekday_on_peak.csv deleted file mode 100644 index 5f0b726e20..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/FL_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/FL_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/FL_weekend_on_peak.csv deleted file mode 100644 index 5f0b726e20..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/FL_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/GA_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/GA_weekday_on_peak.csv deleted file mode 100644 index d1dc34daed..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/GA_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/GA_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/GA_weekend_on_peak.csv deleted file mode 100644 index d1dc34daed..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/GA_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/IA_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/IA_weekday_on_peak.csv deleted file mode 100644 index ac4721f3b9..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/IA_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/IA_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/IA_weekend_on_peak.csv deleted file mode 100644 index ac4721f3b9..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/IA_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/ID_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/ID_weekday_on_peak.csv deleted file mode 100644 index ac4721f3b9..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/ID_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/ID_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/ID_weekend_on_peak.csv deleted file mode 100644 index ac4721f3b9..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/ID_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/IL_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/IL_weekday_on_peak.csv deleted file mode 100644 index 9eb4973df9..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/IL_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/IL_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/IL_weekend_on_peak.csv deleted file mode 100644 index 9eb4973df9..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/IL_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/IN_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/IN_weekday_on_peak.csv deleted file mode 100644 index 7ea22ed035..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/IN_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/IN_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/IN_weekend_on_peak.csv deleted file mode 100644 index 7ea22ed035..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/IN_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/KS_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/KS_weekday_on_peak.csv deleted file mode 100644 index ff27754897..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/KS_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/KS_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/KS_weekend_on_peak.csv deleted file mode 100644 index ff27754897..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/KS_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/KY_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/KY_weekday_on_peak.csv deleted file mode 100644 index a0998d1680..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/KY_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/KY_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/KY_weekend_on_peak.csv deleted file mode 100644 index a0998d1680..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/KY_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/LA_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/LA_weekday_on_peak.csv deleted file mode 100644 index ee6bc0218c..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/LA_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/LA_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/LA_weekend_on_peak.csv deleted file mode 100644 index ee6bc0218c..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/LA_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/MA_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/MA_weekday_on_peak.csv deleted file mode 100644 index f8db21f6db..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/MA_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/MA_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/MA_weekend_on_peak.csv deleted file mode 100644 index f8db21f6db..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/MA_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/MD_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/MD_weekday_on_peak.csv deleted file mode 100644 index 6ea2924577..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/MD_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/MD_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/MD_weekend_on_peak.csv deleted file mode 100644 index 6ea2924577..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/MD_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/ME_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/ME_weekday_on_peak.csv deleted file mode 100644 index 289245402b..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/ME_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/ME_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/ME_weekend_on_peak.csv deleted file mode 100644 index 289245402b..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/ME_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/MI_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/MI_weekday_on_peak.csv deleted file mode 100644 index f8db21f6db..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/MI_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/MI_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/MI_weekend_on_peak.csv deleted file mode 100644 index f8db21f6db..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/MI_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/MN_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/MN_weekday_on_peak.csv deleted file mode 100644 index ac4721f3b9..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/MN_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/MN_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/MN_weekend_on_peak.csv deleted file mode 100644 index ac4721f3b9..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/MN_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/MO_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/MO_weekday_on_peak.csv deleted file mode 100644 index ff27754897..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/MO_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/MO_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/MO_weekend_on_peak.csv deleted file mode 100644 index ff27754897..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/MO_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/MS_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/MS_weekday_on_peak.csv deleted file mode 100644 index 876b0e9895..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/MS_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/MS_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/MS_weekend_on_peak.csv deleted file mode 100644 index 876b0e9895..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/MS_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/MT_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/MT_weekday_on_peak.csv deleted file mode 100644 index bc3091a1a8..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/MT_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/MT_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/MT_weekend_on_peak.csv deleted file mode 100644 index bc3091a1a8..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/MT_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/NC_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/NC_weekday_on_peak.csv deleted file mode 100644 index baba00690b..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/NC_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/NC_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/NC_weekend_on_peak.csv deleted file mode 100644 index baba00690b..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/NC_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/ND_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/ND_weekday_on_peak.csv deleted file mode 100644 index b417a15646..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/ND_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 -10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/ND_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/ND_weekend_on_peak.csv deleted file mode 100644 index b417a15646..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/ND_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 -10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/NE_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/NE_weekday_on_peak.csv deleted file mode 100644 index 09c6d98440..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/NE_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/NE_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/NE_weekend_on_peak.csv deleted file mode 100644 index 09c6d98440..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/NE_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/NH_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/NH_weekday_on_peak.csv deleted file mode 100644 index 9eb4973df9..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/NH_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/NH_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/NH_weekend_on_peak.csv deleted file mode 100644 index 9eb4973df9..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/NH_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/NJ_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/NJ_weekday_on_peak.csv deleted file mode 100644 index 9eb4973df9..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/NJ_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/NJ_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/NJ_weekend_on_peak.csv deleted file mode 100644 index 9eb4973df9..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/NJ_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/NM_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/NM_weekday_on_peak.csv deleted file mode 100644 index 9b38bff7aa..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/NM_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/NM_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/NM_weekend_on_peak.csv deleted file mode 100644 index 9b38bff7aa..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/NM_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/NV_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/NV_weekday_on_peak.csv deleted file mode 100644 index 975718d8b5..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/NV_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/NV_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/NV_weekend_on_peak.csv deleted file mode 100644 index 975718d8b5..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/NV_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/NY_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/NY_weekday_on_peak.csv deleted file mode 100644 index f8db21f6db..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/NY_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/NY_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/NY_weekend_on_peak.csv deleted file mode 100644 index f8db21f6db..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/NY_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/OH_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/OH_weekday_on_peak.csv deleted file mode 100644 index 5d90775774..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/OH_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/OH_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/OH_weekend_on_peak.csv deleted file mode 100644 index 5d90775774..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/OH_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/OK_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/OK_weekday_on_peak.csv deleted file mode 100644 index baba00690b..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/OK_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/OK_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/OK_weekend_on_peak.csv deleted file mode 100644 index baba00690b..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/OK_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/OR_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/OR_weekday_on_peak.csv deleted file mode 100644 index ac4721f3b9..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/OR_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/OR_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/OR_weekend_on_peak.csv deleted file mode 100644 index ac4721f3b9..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/OR_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/PA_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/PA_weekday_on_peak.csv deleted file mode 100644 index 7ea22ed035..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/PA_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/PA_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/PA_weekend_on_peak.csv deleted file mode 100644 index 7ea22ed035..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/PA_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/RI_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/RI_weekday_on_peak.csv deleted file mode 100644 index 9eb4973df9..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/RI_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/RI_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/RI_weekend_on_peak.csv deleted file mode 100644 index 9eb4973df9..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/RI_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/SC_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/SC_weekday_on_peak.csv deleted file mode 100644 index d1dc34daed..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/SC_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/SC_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/SC_weekend_on_peak.csv deleted file mode 100644 index d1dc34daed..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/SC_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/SD_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/SD_weekday_on_peak.csv deleted file mode 100644 index ac4721f3b9..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/SD_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/SD_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/SD_weekend_on_peak.csv deleted file mode 100644 index ac4721f3b9..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/SD_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/TN_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/TN_weekday_on_peak.csv deleted file mode 100644 index baba00690b..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/TN_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/TN_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/TN_weekend_on_peak.csv deleted file mode 100644 index baba00690b..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/TN_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/TX_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/TX_weekday_on_peak.csv deleted file mode 100644 index a69ba74711..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/TX_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/TX_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/TX_weekend_on_peak.csv deleted file mode 100644 index a69ba74711..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/TX_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/UT_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/UT_weekday_on_peak.csv deleted file mode 100644 index f8db21f6db..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/UT_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/UT_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/UT_weekend_on_peak.csv deleted file mode 100644 index f8db21f6db..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/UT_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/VA_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/VA_weekday_on_peak.csv deleted file mode 100644 index a0998d1680..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/VA_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/VA_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/VA_weekend_on_peak.csv deleted file mode 100644 index a0998d1680..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/VA_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/VT_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/VT_weekday_on_peak.csv deleted file mode 100644 index 878d670d83..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/VT_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/VT_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/VT_weekend_on_peak.csv deleted file mode 100644 index 878d670d83..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/VT_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 -12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/WA_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/WA_weekday_on_peak.csv deleted file mode 100644 index ac4721f3b9..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/WA_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/WA_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/WA_weekend_on_peak.csv deleted file mode 100644 index ac4721f3b9..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/WA_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/WI_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/WI_weekday_on_peak.csv deleted file mode 100644 index f8db21f6db..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/WI_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/WI_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/WI_weekend_on_peak.csv deleted file mode 100644 index f8db21f6db..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/WI_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/WV_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/WV_weekday_on_peak.csv deleted file mode 100644 index ac4721f3b9..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/WV_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/WV_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/WV_weekend_on_peak.csv deleted file mode 100644 index ac4721f3b9..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/WV_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/WY_weekday_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/WY_weekday_on_peak.csv deleted file mode 100644 index a78492260e..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/WY_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/on_peak_hour/WY_weekend_on_peak.csv b/measures/LoadFlexibility/resources/on_peak_hour/WY_weekend_on_peak.csv deleted file mode 100644 index a78492260e..0000000000 --- a/measures/LoadFlexibility/resources/on_peak_hour/WY_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/resources/setpoint.py b/measures/LoadFlexibility/resources/setpoint.py index 71e1341b86..7633cc85ae 100644 --- a/measures/LoadFlexibility/resources/setpoint.py +++ b/measures/LoadFlexibility/resources/setpoint.py @@ -1,27 +1,29 @@ -from input_helper import OffsetTypeData, OffsetTimingData, RelativeOffsetData, AbsoluteOffsetData, OffsetType -from typing import List, Tuple -from setpoint_helper import HVACSetpointVals, BuildingInfo +from input_helper import OffsetType, BuildingInfo, Inputs +from typing import List, Tuple, TypedDict, Dict import pandas as pd import numpy as np +import random import math -from datetime import datetime +from datetime import datetime, timedelta from dataclasses import dataclass, fields import os import openstudio -@dataclass -class PeakTimeDefaults: - pre_peak_start_morning: int = 0 - peak_start_morning: int = 0 - peak_end_morning: int = 0 - pre_peak_start_afternoon: int = 0 - peak_start_afternoon: int = 0 - peak_end_afternoon: int = 0 +class PeakTimes(TypedDict): + pre_peak_start: float + peak_start: float + peak_end: float + + +class PeakHours(TypedDict): + weekday_peak_hr: Dict[int, float] + weekend_peak_hr: Dict[int, float] class HVACSetpoints: def __init__(self, os_runner: openstudio.measure.OSRunner, + inputs: Inputs, building_info: BuildingInfo, cooling_setpoints: List[int], heating_setpoints: List[int]): @@ -34,22 +36,24 @@ def __init__(self, os_runner: openstudio.measure.OSRunner, self.total_indices = len(cooling_setpoints) assert len(cooling_setpoints) == len(heating_setpoints) self.num_timsteps_per_hour = self.total_indices // 8760 - self.shift = self._get_random_shift_amount() + self.shift = self._get_random_shift_amount(inputs=inputs) + self.peak_hours_dict: PeakHours = self.get_peak_periods(building_info) + self.log_inputs(inputs=inputs) + def get_peak_periods(self, building_info): current_dir = os.path.dirname(os.path.realpath(__file__)) - # csv file is generated from on_peak_hour_generation.py - on_peak_hour_weekday = pd.read_csv(f"{current_dir}/on_peak_hour/{building_info.state}_weekday_on_peak.csv") - # csv file is generated from on_peak_hour_generation.py - on_peak_hour_weekend = pd.read_csv(f"{current_dir}/on_peak_hour/{building_info.state}_weekend_on_peak.csv") - self.on_peak_hour_weekday_dict = on_peak_hour_weekday.set_index('month').transpose().to_dict() - self.on_peak_hour_weekend_dict = on_peak_hour_weekend.set_index('month').transpose().to_dict() - self.log_input() - - def _get_random_shift_amount(self): - assert OffsetTimingData.timing_shift_hr.val is not None, "Timing shift not set" - min_shift = round(-self.num_timsteps_per_hour * OffsetTimingData.timing_shift_hr.val) - max_shift = round(self.num_timsteps_per_hour * OffsetTimingData.timing_shift_hr.val) - return np.random.randint(min_shift, max_shift, 1)[0] + peak_hours_df = pd.read_csv(f"{current_dir}/peak_hours/peak_hours.csv") + peak_hours_df = peak_hours_df[peak_hours_df['state'] == building_info.state] + if len(peak_hours_df) != 12: + raise ValueError(f"No data from {building_info.state}") + peak_hours_df = peak_hours_df.set_index('month').drop(columns=['state']) + return peak_hours_df.to_dict() + + def _get_random_shift_amount(self, inputs: Inputs): + assert inputs.offset_timing.random_timing_shift.val is not None, "Timing shift not set" + min_shift = round(-self.num_timsteps_per_hour * inputs.offset_timing.random_timing_shift.val) + max_shift = round(self.num_timsteps_per_hour * inputs.offset_timing.random_timing_shift.val) + return random.randint(min_shift, max_shift) def _get_month_day(self, indx) -> Tuple[int, str]: """ @@ -58,19 +62,15 @@ def _get_month_day(self, indx) -> Tuple[int, str]: the year number need to modify if the simulation year is not 2007. """ - hour_num = indx // self.num_timsteps_per_hour - day_num = int(hour_num // 24 + 1) - month = int(datetime.strptime(str(self.sim_year) + "-" + str(day_num), "%Y-%j").strftime("%m")) - - # need to modify based on the simulation year what the first day is - # the first day in 2007 is Monday - if day_num % 7 < 5: + start_of_year = datetime(self.sim_year, 1, 1) + indx_datetime = start_of_year + timedelta(hours=indx / self.num_timsteps_per_hour) + if indx_datetime.weekday() < 5: day_type = 'weekday' else: day_type = 'weekend' - return month, day_type + return indx_datetime.month, day_type - def _get_offset_time(self, index, setpoint_type): + def _get_offset_time(self, inputs: Inputs, index, setpoint_type): """ determine the prepeak start time, on peak start and end time, in the unit of hour @@ -79,63 +79,43 @@ def _get_offset_time(self, index, setpoint_type): month, day_type = self._get_month_day(index) if setpoint_type == 'heating': - pre_peak_duration = OffsetTimingData.heating_pre_peak_duration.val - on_peak_duration = OffsetTimingData.heating_on_peak_duration.val + pre_peak_duration_hr = inputs.offset_timing.heating_pre_peak_duration.val + on_peak_duration_hr = inputs.offset_timing.heating_on_peak_duration.val elif setpoint_type == 'cooling': - pre_peak_duration = OffsetTimingData.cooling_pre_peak_duration.val - on_peak_duration = OffsetTimingData.cooling_on_peak_duration.val + pre_peak_duration_hr = inputs.offset_timing.cooling_pre_peak_duration.val + on_peak_duration_hr = inputs.offset_timing.cooling_on_peak_duration.val else: raise ValueError(f"setpoint type {setpoint_type} is not supported") if day_type == 'weekday': - row = self.on_peak_hour_weekday_dict[month] + peak_indx = round(self.peak_hours_dict['weekday_peak_hr'][month] * self.num_timsteps_per_hour) elif day_type == 'weekend': - row = self.on_peak_hour_weekend_dict[month] + peak_indx = round(self.peak_hours_dict['weekend_peak_hr'][month] * self.num_timsteps_per_hour) else: raise ValueError(f"day type {day_type} is not supported") - assert pre_peak_duration is not None, "Pre-peak duration not set" - assert on_peak_duration is not None, "On-peak duration not set" - - row_morning = list(row.values())[:15] - row_afternoon = list(row.values())[11:] - - offset_time = PeakTimeDefaults() - if 1 in row_morning: - on_peak_start_index = row_morning.index(1) - on_peak_end_index = len(row_morning) - row_morning[::-1].index(1) - 1 - on_peak_mid_index = math.ceil((on_peak_start_index + on_peak_end_index) / 2) - offset_time.peak_start_morning = math.ceil(on_peak_mid_index - on_peak_duration / 2) - offset_time.peak_end_morning = math.ceil(on_peak_mid_index + on_peak_duration / 2) - 1 - offset_time.pre_peak_start_morning = offset_time.peak_start_morning - pre_peak_duration - if 1 in row_afternoon: - on_peak_start_index = row_afternoon.index(1) + 11 - on_peak_end_index = len(row_afternoon) - row_afternoon[::-1].index(1) - 1 + 11 - on_peak_mid_index = math.ceil((on_peak_start_index + on_peak_end_index)/2) - offset_time.peak_start_afternoon = math.ceil(on_peak_mid_index - on_peak_duration / 2) - offset_time.peak_end_afternoon = math.ceil(on_peak_mid_index + on_peak_duration / 2) - 1 - offset_time.pre_peak_start_afternoon = offset_time.peak_start_afternoon - pre_peak_duration - offset_time = self._shift_offsettime(offset_time) - return offset_time - - def _shift_offsettime(self, offset_time: PeakTimeDefaults): - offset_time.pre_peak_start_morning = self._time_shift(offset_time.pre_peak_start_morning) - offset_time.peak_start_morning = self._time_shift(offset_time.peak_start_morning) - offset_time.peak_end_morning = self._time_shift(offset_time.peak_end_morning) - offset_time.pre_peak_start_afternoon = self._time_shift(offset_time.pre_peak_start_afternoon) - offset_time.peak_start_afternoon = self._time_shift(offset_time.peak_start_afternoon) - offset_time.peak_end_afternoon = self._time_shift(offset_time.peak_end_afternoon) - return offset_time - - def _time_shift(self, indx_in_day): - indx_in_day = indx_in_day + self.shift - if indx_in_day > self.num_timsteps_per_hour * 24: - indx_in_day = self.num_timsteps_per_hour * 24 - if indx_in_day < 0: - indx_in_day = 0 - return indx_in_day - - def _get_setpoint_offset(self, index_in_year, setpoint_type) -> int: + assert pre_peak_duration_hr is not None, "Pre-peak duration not set" + assert on_peak_duration_hr is not None, "On-peak duration not set" + + peak_times: PeakTimes = { + 'peak_start': peak_indx, + 'peak_end': peak_indx + round(on_peak_duration_hr * self.num_timsteps_per_hour), + 'pre_peak_start': peak_indx - round(pre_peak_duration_hr * self.num_timsteps_per_hour) + } + peak_times['peak_end'] = peak_times['peak_end'] % (self.num_timsteps_per_hour * 24) + peak_times['pre_peak_start'] = peak_times['pre_peak_start'] % (self.num_timsteps_per_hour * 24) + return peak_times + + def _shift_peak_times(self, peak_times: PeakTimes, shift: int): + peak_times['peak_start'] = self._time_shift(peak_times['peak_start'], shift) + peak_times['peak_end'] = self._time_shift(peak_times['peak_end'], shift) + peak_times['pre_peak_start'] = self._time_shift(peak_times['pre_peak_start'], shift) + return peak_times + + def _time_shift(self, indx_in_day, shift): + return (indx_in_day + shift) % (self.num_timsteps_per_hour * 24) + + def _get_setpoint_offset(self, inputs: Inputs, index_in_year, setpoint_type) -> int: """ offset the setpoint to a certain value given by user inputs, the defalut offset value for heating is: @@ -144,14 +124,15 @@ def _get_setpoint_offset(self, index_in_year, setpoint_type) -> int: decrease 4F during prepeak time, increase 4F during on peak time """ - offset_time = self._get_offset_time(index_in_year, setpoint_type) + offset_time = self._get_offset_time(inputs, index_in_year, setpoint_type) + offset_time = self._shift_peak_times(offset_time, self.shift) if setpoint_type == 'heating': - pre_peak_offset = RelativeOffsetData.heating_pre_peak_offset.val - on_peak_offset = RelativeOffsetData.heating_on_peak_offset.val + pre_peak_offset = inputs.relative_offset.heating_pre_peak_offset.val + on_peak_offset = inputs.relative_offset.heating_on_peak_offset.val elif setpoint_type == 'cooling': - pre_peak_offset = RelativeOffsetData.cooling_pre_peak_offset.val - on_peak_offset = RelativeOffsetData.cooling_on_peak_offset.val + pre_peak_offset = inputs.relative_offset.cooling_pre_peak_offset.val + on_peak_offset = inputs.relative_offset.cooling_on_peak_offset.val else: raise ValueError(f"setpoint type {setpoint_type} is not supported") @@ -159,18 +140,16 @@ def _get_setpoint_offset(self, index_in_year, setpoint_type) -> int: assert on_peak_offset is not None, "On-peak offset not set" index_in_day = int(index_in_year % (24 * self.num_timsteps_per_hour)) - if (offset_time.pre_peak_start_morning <= index_in_day < offset_time.peak_start_morning)\ - or (offset_time.pre_peak_start_afternoon <= index_in_day < offset_time.peak_start_afternoon): + if offset_time['pre_peak_start'] <= index_in_day < offset_time['peak_start']: setpoint_offset = pre_peak_offset - elif (offset_time.peak_start_morning <= index_in_day <= offset_time.peak_end_morning)\ - or (offset_time.peak_start_afternoon <= index_in_day <= offset_time.peak_end_afternoon): + elif offset_time['peak_start'] <= index_in_day < offset_time['peak_end']: setpoint_offset = on_peak_offset else: setpoint_offset = 0 return setpoint_offset - def _get_setpoint_absolute_value(self, year_index, setpoint_type, existing_setpoint): + def _get_setpoint_absolute_value(self, inputs: Inputs, index_in_year, setpoint_type, existing_setpoint): """ set the setpoint to a fixed value given by user inputs the default setpoint for heating is: @@ -178,33 +157,31 @@ def _get_setpoint_absolute_value(self, year_index, setpoint_type, existing_setpo the defalut setpoint for cooling is: 60F during prepeak time, 80F during on peak time """ - offset_time = self._get_offset_time(year_index, setpoint_type) + offset_time = self._get_offset_time(inputs, index_in_year, setpoint_type) if setpoint_type == 'heating': - pre_peak_setpoint = AbsoluteOffsetData.heating_pre_peak_setpoint.val - on_peak_setpoint = AbsoluteOffsetData.heating_on_peak_setpoint.val + pre_peak_setpoint = inputs.absolute_offset.heating_pre_peak_setpoint.val + on_peak_setpoint = inputs.absolute_offset.heating_on_peak_setpoint.val elif setpoint_type == 'cooling': - pre_peak_setpoint = AbsoluteOffsetData.cooling_pre_peak_setpoint.val - on_peak_setpoint = AbsoluteOffsetData.cooling_on_peak_setpoint.val + pre_peak_setpoint = inputs.absolute_offset.cooling_pre_peak_setpoint.val + on_peak_setpoint = inputs.absolute_offset.cooling_on_peak_setpoint.val else: raise ValueError(f"setpoint type {setpoint_type} is not supported") assert pre_peak_setpoint is not None, "Pre-peak offset not set" assert on_peak_setpoint is not None, "On-peak offset not set" - index_in_day = int(year_index % (24 * self.num_timsteps_per_hour)) - if (offset_time.pre_peak_start_morning <= index_in_day < offset_time.peak_start_morning)\ - or (offset_time.pre_peak_start_afternoon <= index_in_day < offset_time.peak_start_afternoon): + index_in_day = int(index_in_year % (24 * self.num_timsteps_per_hour)) + if offset_time['pre_peak_start'] <= index_in_day < offset_time['peak_start']: setpoint_reponse = pre_peak_setpoint - elif (offset_time.peak_start_morning <= index_in_day <= offset_time.peak_end_morning)\ - or (offset_time.peak_start_afternoon <= index_in_day <= offset_time.peak_end_afternoon): + elif offset_time['peak_start'] <= index_in_day < offset_time['peak_end']: setpoint_reponse = on_peak_setpoint else: setpoint_reponse = existing_setpoint return setpoint_reponse - def _clip_setpoints(self, setpoint: int, setpoint_type): + def _clip_setpoints(self, inputs: Inputs, setpoint: int, setpoint_type): """ control the range of setpoint given by user inputs the default range for heating is: 55-80F @@ -212,70 +189,78 @@ def _clip_setpoints(self, setpoint: int, setpoint_type): """ if setpoint_type == 'heating': - setpoint_max = RelativeOffsetData.heating_max.val - setpoint_min = RelativeOffsetData.heating_min.val + setpoint_max = inputs.relative_offset.heating_max.val + setpoint_min = inputs.relative_offset.heating_min.val elif setpoint_type == 'cooling': - setpoint_max = RelativeOffsetData.cooling_max.val - setpoint_min = RelativeOffsetData.cooling_min.val + setpoint_max = inputs.relative_offset.cooling_max.val + setpoint_min = inputs.relative_offset.cooling_min.val else: raise ValueError(f"setpoint type {setpoint_type} is not supported") assert setpoint_max is not None, "Max setpoint not set" assert setpoint_min is not None, "Min setpoint not set" if setpoint > setpoint_max: + self.runner.registerWarning(f"Setpoint {setpoint} is greater than max setpoint {setpoint_max}") setpoint = setpoint_max elif setpoint < setpoint_min: + self.runner.registerWarning(f"Setpoint {setpoint} is less than min setpoint {setpoint_min}") setpoint = setpoint_min else: setpoint = setpoint return setpoint - def _get_updated_setpoint(self, index_in_year, setpoint_type): + def _get_updated_setpoint(self, inputs: Inputs, index_in_year, setpoint_type): if setpoint_type == 'heating': existing_setpoint = self.heating_setpoints[index_in_year] else: existing_setpoint = self.cooling_setpoints[index_in_year] - if OffsetTypeData.offset_type == OffsetType.relative: # make a setpoint offset compared with the default setpoint - new_setpoint = existing_setpoint + self._get_setpoint_offset(index_in_year, setpoint_type) - elif OffsetTypeData.offset_type == OffsetType.absolute: # set the setpoint to a fixed value - new_setpoint = self._get_setpoint_absolute_value(index_in_year, setpoint_type, existing_setpoint) + if inputs.offset_type.val == OffsetType.relative: # make a setpoint offset compared with the default setpoint + new_setpoint = existing_setpoint + self._get_setpoint_offset(inputs, index_in_year, setpoint_type) + elif inputs.offset_type.val == OffsetType.absolute: # set the setpoint to a fixed value + self.runner.registerWarning(f"Existing heating setpoint: {existing_setpoint}") + new_setpoint = self._get_setpoint_absolute_value(inputs, index_in_year, setpoint_type, existing_setpoint) else: - raise ValueError(f"offset type {OffsetTypeData.offset_type} is not supported") - new_setpoint = self._clip_setpoints(new_setpoint, setpoint_type) + raise ValueError(f"offset type {inputs.offset_type.val} is not supported") + new_setpoint = self._clip_setpoints(inputs, new_setpoint, setpoint_type) return new_setpoint - def _modify_setpoint(self): + def _get_modified_setpoints(self, inputs: Inputs): + heating_setpoints = self.heating_setpoints.copy() + cooling_setpoints = self.cooling_setpoints.copy() for index in range(self.total_indices): - self.heating_setpoints[index] = self._get_updated_setpoint(index, 'heating') - self.cooling_setpoints[index] = self._get_updated_setpoint(index, 'cooling') + heating_setpoints[index] = self._get_updated_setpoint(inputs, index, 'heating') + cooling_setpoints[index] = self._get_updated_setpoint(inputs, index, 'cooling') + return {'heating_setpoints': heating_setpoints, 'cooling_setpoints': cooling_setpoints} - def log_input(self): + def log_inputs(self, inputs: Inputs): """Modify setpoints based on user arguments.""" + if not self.runner: + return self.runner.registerInfo("Modifying setpoints ...") self.runner.registerInfo("Values got are") - self.runner.registerInfo(f"{OffsetTypeData.offset_type.name}={OffsetTypeData.offset_type.val}") - self.runner.registerInfo(f"{RelativeOffsetData.heating_on_peak_offset.name}=" - f"{RelativeOffsetData.heating_on_peak_offset.val}") - self.runner.registerInfo(f"{RelativeOffsetData.cooling_on_peak_offset.name}=" - f"{RelativeOffsetData.cooling_on_peak_offset.val}") - self.runner.registerInfo(f"{RelativeOffsetData.heating_pre_peak_offset.name}=" - f"{RelativeOffsetData.heating_pre_peak_offset.val}") - self.runner.registerInfo(f"{RelativeOffsetData.cooling_pre_peak_offset.name}=" - f"{RelativeOffsetData.cooling_pre_peak_offset.val}") - self.runner.registerInfo(f"{OffsetTimingData.heating_on_peak_duration.name}=" - f"{OffsetTimingData.heating_on_peak_duration.val}") - self.runner.registerInfo(f"{OffsetTimingData.cooling_on_peak_duration.name}=" - f"{OffsetTimingData.cooling_on_peak_duration.val}") - self.runner.registerInfo(f"{OffsetTimingData.heating_pre_peak_duration.name}=" - f"{OffsetTimingData.heating_pre_peak_duration.val}") - self.runner.registerInfo(f"{OffsetTimingData.cooling_pre_peak_duration.name}=" - f"{OffsetTimingData.cooling_pre_peak_duration.val}") - self.runner.registerInfo(f"{AbsoluteOffsetData.cooling_on_peak_setpoint.name}=" - f"{AbsoluteOffsetData.cooling_on_peak_setpoint.val}") - self.runner.registerInfo(f"{AbsoluteOffsetData.cooling_pre_peak_setpoint.name}=" - f"{AbsoluteOffsetData.cooling_pre_peak_setpoint.val}") - self.runner.registerInfo(f"{AbsoluteOffsetData.heating_on_peak_setpoint.name}=" - f"{AbsoluteOffsetData.heating_on_peak_setpoint.val}") - self.runner.registerInfo(f"{AbsoluteOffsetData.heating_pre_peak_setpoint.name}=" - f"{AbsoluteOffsetData.heating_pre_peak_setpoint.val}") + self.runner.registerInfo(f"{inputs.offset_type.name}={inputs.offset_type.val}") + self.runner.registerInfo(f"{inputs.relative_offset.heating_on_peak_offset.name}=" + f"{inputs.relative_offset.heating_on_peak_offset.val}") + self.runner.registerInfo(f"{inputs.relative_offset.cooling_on_peak_offset.name}=" + f"{inputs.relative_offset.cooling_on_peak_offset.val}") + self.runner.registerInfo(f"{inputs.relative_offset.heating_pre_peak_offset.name}=" + f"{inputs.relative_offset.heating_pre_peak_offset.val}") + self.runner.registerInfo(f"{inputs.relative_offset.cooling_pre_peak_offset.name}=" + f"{inputs.relative_offset.cooling_pre_peak_offset.val}") + self.runner.registerInfo(f"{inputs.offset_timing.heating_on_peak_duration.name}=" + f"{inputs.offset_timing.heating_on_peak_duration.val}") + self.runner.registerInfo(f"{inputs.offset_timing.cooling_on_peak_duration.name}=" + f"{inputs.offset_timing.cooling_on_peak_duration.val}") + self.runner.registerInfo(f"{inputs.offset_timing.heating_pre_peak_duration.name}=" + f"{inputs.offset_timing.heating_pre_peak_duration.val}") + self.runner.registerInfo(f"{inputs.offset_timing.cooling_pre_peak_duration.name}=" + f"{inputs.offset_timing.cooling_pre_peak_duration.val}") + self.runner.registerInfo(f"{inputs.absolute_offset.cooling_on_peak_setpoint.name}=" + f"{inputs.absolute_offset.cooling_on_peak_setpoint.val}") + self.runner.registerInfo(f"{inputs.absolute_offset.cooling_pre_peak_setpoint.name}=" + f"{inputs.absolute_offset.cooling_pre_peak_setpoint.val}") + self.runner.registerInfo(f"{inputs.absolute_offset.heating_on_peak_setpoint.name}=" + f"{inputs.absolute_offset.heating_on_peak_setpoint.val}") + self.runner.registerInfo(f"{inputs.absolute_offset.heating_pre_peak_setpoint.name}=" + f"{inputs.absolute_offset.heating_pre_peak_setpoint.val}") self.runner.registerInfo(f"state={self.building_info.state}") diff --git a/measures/LoadFlexibility/resources/setpoint_helper.py b/measures/LoadFlexibility/resources/setpoint_helper.py index 909e9cbad4..e69de29bb2 100644 --- a/measures/LoadFlexibility/resources/setpoint_helper.py +++ b/measures/LoadFlexibility/resources/setpoint_helper.py @@ -1,13 +0,0 @@ -from typing import List -from dataclasses import dataclass - - -@dataclass(frozen=True) -class HVACSetpointVals: - heating_setpoint: List[float] - cooling_setpoint: List[float] - -@dataclass(frozen=True) -class BuildingInfo: - state: str = "CO" - sim_year: int = 2019 diff --git a/measures/LoadFlexibility/tests/on_peak_hour/CO_weekday_on_peak.csv b/measures/LoadFlexibility/tests/on_peak_hour/CO_weekday_on_peak.csv deleted file mode 100644 index ac4721f3b9..0000000000 --- a/measures/LoadFlexibility/tests/on_peak_hour/CO_weekday_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/tests/on_peak_hour/CO_weekend_on_peak.csv b/measures/LoadFlexibility/tests/on_peak_hour/CO_weekend_on_peak.csv deleted file mode 100644 index ac4721f3b9..0000000000 --- a/measures/LoadFlexibility/tests/on_peak_hour/CO_weekend_on_peak.csv +++ /dev/null @@ -1,13 +0,0 @@ -month,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -01,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -02,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -03,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -04,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0 -10,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -11,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 -12,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0 diff --git a/measures/LoadFlexibility/tests/test_load_flexibility.py b/measures/LoadFlexibility/tests/test_load_flexibility.py index 440a31907a..e76293a781 100644 --- a/measures/LoadFlexibility/tests/test_load_flexibility.py +++ b/measures/LoadFlexibility/tests/test_load_flexibility.py @@ -11,7 +11,7 @@ sys.path.insert(0, str(CURRENT_DIR_PATH.parent)) import dataclasses from measure import LoadFlexibility -from resources.input_helper import OffsetTypeData, AbsoluteOffsetData, OffsetTimingData, RelativeOffsetData +from resources.input_helper import Inputs, AbsoluteOffsetData, OffsetTimingData, RelativeOffsetData from resources.setpoint import HVACSetpoints sys.path.pop(0) # del sys.modules['measure'] @@ -27,14 +27,14 @@ def test_number_of_arguments_and_argument_names(self): # make an empty model model = openstudio.model.Model() - + example_inputs = Inputs() # get arguments and test that they are what we are expecting arguments = measure.arguments(model) - offset_type_fields = [f.name for f in dataclasses.fields(OffsetTypeData)] - absolute_fields = [f.name for f in dataclasses.fields(AbsoluteOffsetData)] - relative_fields = [f.name for f in dataclasses.fields(RelativeOffsetData)] - offset_timing_fields = [f.name for f in dataclasses.fields(OffsetTimingData)] - expected_all_args = sorted(offset_type_fields + absolute_fields + relative_fields + offset_timing_fields) + single_fields = [example_inputs.upgrade_name.name, example_inputs.offset_type.name] + absolute_fields = [f.name for f in example_inputs.absolute_offset.__dict__.values()] + relative_fields = [f.name for f in example_inputs.relative_offset.__dict__.values()] + offset_timing_fields = [f.name for f in example_inputs.offset_timing.__dict__.values()] + expected_all_args = sorted(single_fields + absolute_fields + relative_fields + offset_timing_fields) actual_all_args = sorted([arg.name() for arg in arguments]) assert actual_all_args == expected_all_args diff --git a/measures/LoadFlexibility/tests/test_setpoint.py b/measures/LoadFlexibility/tests/test_setpoint.py index 4f14566605..a113ec9eb7 100644 --- a/measures/LoadFlexibility/tests/test_setpoint.py +++ b/measures/LoadFlexibility/tests/test_setpoint.py @@ -8,95 +8,143 @@ CURRENT_DIR_PATH = Path(__file__).parent.absolute() sys.path.insert(0, str(CURRENT_DIR_PATH.parent / 'resources')) from setpoint import HVACSetpoints +from input_helper import BuildingInfo, OffsetTimingData, get_input_from_dict sys.path.pop(0) -class Testsetpoint(unittest.TestCase): +DEFAULT_ARGS = {'cooling_max': 80, + 'cooling_min': 60, + 'cooling_on_peak_duration': 4, + 'cooling_on_peak_offset': 4, + 'cooling_on_peak_setpoint': 80, + 'cooling_pre_peak_duration': 4, + 'cooling_pre_peak_offset': 4, + 'cooling_pre_peak_setpoint': 60, + 'heating_max': 80, + 'heating_min': 55, + 'heating_on_peak_duration': 4, + 'heating_on_peak_offset': 4, + 'heating_on_peak_setpoint': 55, + 'heating_pre_peak_duration': 4, + 'heating_pre_peak_offset': 4, + 'heating_pre_peak_setpoint': 80, + 'offset_type': 'relative', + 'random_timing_shift': 1.0, + 'upgrade_name': 'None'} + +class Testsetpoint: def setup_method(self, method): print('setUp') - state = 'CO' - on_peak_hour_weekday = pd.read_csv( CURRENT_DIR_PATH / f"on_peak_hour/{state}_weekday_on_peak.csv") - on_peak_hour_weekend = pd.read_csv(CURRENT_DIR_PATH / f"on_peak_hour/{state}_weekend_on_peak.csv") - self.on_peak_hour_weekday_dict = on_peak_hour_weekday.set_index('month').transpose().to_dict() - self.on_peak_hour_weekend_dict = on_peak_hour_weekend.set_index('month').transpose().to_dict() + self.peak_hours = pd.read_csv(CURRENT_DIR_PATH / "peak_hours.csv") + example_setpoints = pd.read_csv(CURRENT_DIR_PATH / 'example_setpoints.csv') + inputs = get_input_from_dict(DEFAULT_ARGS) + self.hvac_setpoints = HVACSetpoints(os_runner=None, + building_info=BuildingInfo(sim_year=2025, state='CO'), + inputs=inputs, + heating_setpoints=example_setpoints['heating_setpoints'].tolist(), + cooling_setpoints=example_setpoints['cooling_setpoints'].tolist()) def test_get_month_day(self): print('test_get_month_day') - self.assertEqual(setpoint.get_month_day(8755, 8760), (12, 'weekday')) - self.assertEqual(setpoint.get_month_day(2, 8760), (1, 'weekday')) + assert self.hvac_setpoints._get_month_day(0) == (1, 'weekday') + # 2025 Jan 1 is wednesday. 3 * 24 + 1 should be saturday + assert self.hvac_setpoints._get_month_day(3 * 24 + 1) == (1, 'weekend') + assert self.hvac_setpoints._get_month_day(8755) == (12, 'weekday') + assert self.hvac_setpoints._get_month_day(8755) == (12, 'weekday') + + @pytest.mark.parametrize("max_shift_amount", [0.25, 0.5, 1, 2]) + def test_random_shift(self, max_shift_amount): + new_args = DEFAULT_ARGS.copy() + # shift_amount = 0.25 + new_args['random_timing_shift'] = max_shift_amount + inputs = get_input_from_dict(new_args) + max_shift = float('-inf') + min_shift = float('inf') + for i in range(20): + shift_amount = self.hvac_setpoints._get_random_shift_amount(inputs) + assert round(-max_shift_amount) <= shift_amount <= round(max_shift_amount) + max_shift = max(max_shift, shift_amount) + min_shift = min(min_shift, shift_amount) + assert max_shift == round(max_shift_amount) + assert min_shift == round(-max_shift_amount) - def test_get_prepeak_and_peak_start_end_winter(self): - print('test_get_prepeak_and_peak_start_end_winter') - offset_time = setpoint.get_prepeak_and_peak_start_end(2, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 'heating') - self.assertEqual(offset_time.pre_peak_start_morning, 1) - self.assertEqual(offset_time.peak_start_morning, 5) - self.assertEqual(offset_time.peak_end_morning, 8) - self.assertEqual(offset_time.pre_peak_start_afternoon, 13) - self.assertEqual(offset_time.peak_start_afternoon, 17) - self.assertEqual(offset_time.peak_end_afternoon, 20) + @pytest.mark.parametrize("setpoint_type", ['heating', 'cooling']) + def test_get_offset_time(self, setpoint_type): + print('test_get_offset_time') + new_args = DEFAULT_ARGS.copy() + inputs = get_input_from_dict(new_args) + peak_times = self.hvac_setpoints._get_offset_time(inputs, 1, setpoint_type=setpoint_type) + assert peak_times['peak_start'] == 19 + assert peak_times['peak_end'] == 23 + assert peak_times['pre_peak_start'] == 15 - def test_get_prepeak_and_peak_start_end_summer(self): - print('test_get_prepeak_and_peak_start_end_summer') - offset_time = setpoint.get_prepeak_and_peak_start_end(5000, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 'cooling') - self.assertEqual(offset_time.pre_peak_start_afternoon, 11) - self.assertEqual(offset_time.peak_start_afternoon, 15) - self.assertEqual(offset_time.peak_end_afternoon, 18) + new_args[f'{setpoint_type}_on_peak_duration'] = 5 + new_args[f'{setpoint_type}_pre_peak_duration'] = 5 + inputs = get_input_from_dict(new_args) + peak_times = self.hvac_setpoints._get_offset_time(inputs, 1, setpoint_type=setpoint_type) + assert peak_times['peak_start'] == 19 + assert peak_times['peak_end'] == 0 + assert peak_times['pre_peak_start'] == 14 - def test_time_shift(self): - print('test_time_shift') - offset_time = setpoint.get_prepeak_and_peak_start_end(2, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 'heating') - for f in fields(offset_time): - value = getattr(offset_time, f.name) - value = setpoint.time_shift(value, 1, 1) - if isinstance(value, (int, float)): - setattr(offset_time, f.name, value) - self.assertEqual(offset_time.pre_peak_start_morning, 2) - self.assertEqual(offset_time.peak_start_morning, 6) - self.assertEqual(offset_time.peak_end_morning, 9) - self.assertEqual(offset_time.pre_peak_start_afternoon, 14) - self.assertEqual(offset_time.peak_start_afternoon, 18) - self.assertEqual(offset_time.peak_end_afternoon, 21) + # def test_get_prepeak_and_peak_start_end_summer(self): + # print('test_get_prepeak_and_peak_start_end_summer') + # offset_time = setpoint.get_prepeak_and_peak_start_end(5000, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 'cooling') + # self.assertEqual(offset_time.pre_peak_start_afternoon, 11) + # self.assertEqual(offset_time.peak_start_afternoon, 15) + # self.assertEqual(offset_time.peak_end_afternoon, 18) - def test_get_setpoint_offset_heating(self): - print('test_get_setpoint_offset_heating') - setpoint_offset = setpoint.get_setpoint_offset(3, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating') - self.assertEqual(setpoint_offset, 4) - setpoint_offset = setpoint.get_setpoint_offset(7, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating') - self.assertEqual(setpoint_offset, -4) + # def test_time_shift(self): + # print('test_time_shift') + # offset_time = setpoint.get_prepeak_and_peak_start_end(2, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 'heating') + # for f in fields(offset_time): + # value = getattr(offset_time, f.name) + # value = setpoint.time_shift(value, 1, 1) + # if isinstance(value, (int, float)): + # setattr(offset_time, f.name, value) + # self.assertEqual(offset_time.pre_peak_start_morning, 2) + # self.assertEqual(offset_time.peak_start_morning, 6) + # self.assertEqual(offset_time.peak_end_morning, 9) + # self.assertEqual(offset_time.pre_peak_start_afternoon, 14) + # self.assertEqual(offset_time.peak_start_afternoon, 18) + # self.assertEqual(offset_time.peak_end_afternoon, 21) - def test_get_setpoint_offset_cooling(self): - print('test_get_setpoint_offset_cooling') - setpoint_offset = setpoint.get_setpoint_offset(2916, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling') - self.assertEqual(setpoint_offset, -4) - setpoint_offset = setpoint.get_setpoint_offset(2920, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling') - self.assertEqual(setpoint_offset, 4) + # def test_get_setpoint_offset_heating(self): + # print('test_get_setpoint_offset_heating') + # setpoint_offset = setpoint.get_setpoint_offset(3, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating') + # self.assertEqual(setpoint_offset, 4) + # setpoint_offset = setpoint.get_setpoint_offset(7, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating') + # self.assertEqual(setpoint_offset, -4) - def test_get_setpoint_absolute_value_heating(self): - print('test_get_setpoint_absolute_value_heating') - setpoint_reponse = setpoint.get_setpoint_absolute_value(3, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating', 70) - self.assertEqual(setpoint_reponse, 80) - setpoint_reponse = setpoint.get_setpoint_absolute_value(7, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating', 70) - self.assertEqual(setpoint_reponse, 55) - setpoint_reponse = setpoint.get_setpoint_absolute_value(10, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating', 70) - self.assertEqual(setpoint_reponse, 70) + # def test_get_setpoint_offset_cooling(self): + # print('test_get_setpoint_offset_cooling') + # setpoint_offset = setpoint.get_setpoint_offset(2916, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling') + # self.assertEqual(setpoint_offset, -4) + # setpoint_offset = setpoint.get_setpoint_offset(2920, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling') + # self.assertEqual(setpoint_offset, 4) - def test_get_setpoint_absolute_value_cooling(self): - print('test_get_setpoint_absolute_value_cooling') - setpoint_reponse = setpoint.get_setpoint_absolute_value(2916, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling', 70) - self.assertEqual(setpoint_reponse, 60) - setpoint_reponse = setpoint.get_setpoint_absolute_value(2920, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling', 70) - self.assertEqual(setpoint_reponse, 80) - setpoint_reponse = setpoint.get_setpoint_absolute_value(2924, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling', 70) - self.assertEqual(setpoint_reponse, 70) + # def test_get_setpoint_absolute_value_heating(self): + # print('test_get_setpoint_absolute_value_heating') + # setpoint_reponse = setpoint.get_setpoint_absolute_value(3, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating', 70) + # self.assertEqual(setpoint_reponse, 80) + # setpoint_reponse = setpoint.get_setpoint_absolute_value(7, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating', 70) + # self.assertEqual(setpoint_reponse, 55) + # setpoint_reponse = setpoint.get_setpoint_absolute_value(10, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating', 70) + # self.assertEqual(setpoint_reponse, 70) - def test_clip_setpoints(self): - print('test_clip_setpoints') - self.assertEqual(setpoint.clip_setpoints(90, 'heating'), 80) - self.assertEqual(setpoint.clip_setpoints(70, 'heating'), 70) - self.assertEqual(setpoint.clip_setpoints(40, 'heating'), 55) - self.assertEqual(setpoint.clip_setpoints(90, 'cooling'), 80) - self.assertEqual(setpoint.clip_setpoints(70, 'cooling'), 70) - self.assertEqual(setpoint.clip_setpoints(40, 'cooling'), 60) + # def test_get_setpoint_absolute_value_cooling(self): + # print('test_get_setpoint_absolute_value_cooling') + # setpoint_reponse = setpoint.get_setpoint_absolute_value(2916, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling', 70) + # self.assertEqual(setpoint_reponse, 60) + # setpoint_reponse = setpoint.get_setpoint_absolute_value(2920, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling', 70) + # self.assertEqual(setpoint_reponse, 80) + # setpoint_reponse = setpoint.get_setpoint_absolute_value(2924, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling', 70) + # self.assertEqual(setpoint_reponse, 70) -if __name__ == '__main__': - unittest.main() \ No newline at end of file + # def test_clip_setpoints(self): + # print('test_clip_setpoints') + # self.assertEqual(setpoint.clip_setpoints(90, 'heating'), 80) + # self.assertEqual(setpoint.clip_setpoints(70, 'heating'), 70) + # self.assertEqual(setpoint.clip_setpoints(40, 'heating'), 55) + # self.assertEqual(setpoint.clip_setpoints(90, 'cooling'), 80) + # self.assertEqual(setpoint.clip_setpoints(70, 'cooling'), 70) + # self.assertEqual(setpoint.clip_setpoints(40, 'cooling'), 60) \ No newline at end of file diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb index 33ac32fbcb..0f27eca137 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb @@ -1919,7 +1919,7 @@ def initialize(runner: nil, output_path:, offset_db: nil) return if schedules_paths.empty? - + @runner = runner @year = year import(schedules_paths) create_battery_charging_discharging_schedules @@ -2032,7 +2032,7 @@ def export() csv << row end end - + @runner.registerInfo("Exported detailed schedules to #{@output_schedules_path}") return true end From 1c724c09ccb0964a0dc04b106246ef28665e0e53 Mon Sep 17 00:00:00 2001 From: Rajendra Adhikari Date: Fri, 16 Aug 2024 17:36:08 -0500 Subject: [PATCH 18/21] Some missing files --- .../resources/peak_hours/peak_hours.csv | 13 + .../tests/example_setpoints.csv | 8761 +++++++++++++++++ measures/LoadFlexibility/tests/peak_hours.csv | 13 + 3 files changed, 8787 insertions(+) create mode 100644 measures/LoadFlexibility/resources/peak_hours/peak_hours.csv create mode 100644 measures/LoadFlexibility/tests/example_setpoints.csv create mode 100644 measures/LoadFlexibility/tests/peak_hours.csv diff --git a/measures/LoadFlexibility/resources/peak_hours/peak_hours.csv b/measures/LoadFlexibility/resources/peak_hours/peak_hours.csv new file mode 100644 index 0000000000..24e5fce44f --- /dev/null +++ b/measures/LoadFlexibility/resources/peak_hours/peak_hours.csv @@ -0,0 +1,13 @@ +state,month,weekday_peak_hr,weekend_peak_hr +CO,1,19,19 +CO,2,19,19 +CO,3,19,19 +CO,4,19,19 +CO,5,17,17 +CO,6,17,17 +CO,7,17,17 +CO,8,17,17 +CO,9,17,17 +CO,10,19,19 +CO,11,19,19 +CO,12,19,19 \ No newline at end of file diff --git a/measures/LoadFlexibility/tests/example_setpoints.csv b/measures/LoadFlexibility/tests/example_setpoints.csv new file mode 100644 index 0000000000..b210eadf6e --- /dev/null +++ b/measures/LoadFlexibility/tests/example_setpoints.csv @@ -0,0 +1,8761 @@ +heating_setpoints,cooling_setpoints +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 +79.0,79.0 diff --git a/measures/LoadFlexibility/tests/peak_hours.csv b/measures/LoadFlexibility/tests/peak_hours.csv new file mode 100644 index 0000000000..24e5fce44f --- /dev/null +++ b/measures/LoadFlexibility/tests/peak_hours.csv @@ -0,0 +1,13 @@ +state,month,weekday_peak_hr,weekend_peak_hr +CO,1,19,19 +CO,2,19,19 +CO,3,19,19 +CO,4,19,19 +CO,5,17,17 +CO,6,17,17 +CO,7,17,17 +CO,8,17,17 +CO,9,17,17 +CO,10,19,19 +CO,11,19,19 +CO,12,19,19 \ No newline at end of file From 1ae7ef14e1627c7ea7dc404de2a07dd076d9d659 Mon Sep 17 00:00:00 2001 From: Yingli Date: Fri, 30 Aug 2024 18:07:35 -0600 Subject: [PATCH 19/21] unit test --- .../LoadFlexibility/resources/setpoint.py | 4 +- .../LoadFlexibility/tests/test_setpoint.py | 78 +++++++++++++++++-- 2 files changed, 74 insertions(+), 8 deletions(-) diff --git a/measures/LoadFlexibility/resources/setpoint.py b/measures/LoadFlexibility/resources/setpoint.py index 7633cc85ae..5ca33f9e98 100644 --- a/measures/LoadFlexibility/resources/setpoint.py +++ b/measures/LoadFlexibility/resources/setpoint.py @@ -200,10 +200,10 @@ def _clip_setpoints(self, inputs: Inputs, setpoint: int, setpoint_type): assert setpoint_min is not None, "Min setpoint not set" if setpoint > setpoint_max: - self.runner.registerWarning(f"Setpoint {setpoint} is greater than max setpoint {setpoint_max}") + #self.runner.registerWarning(f"Setpoint {setpoint} is greater than max setpoint {setpoint_max}") setpoint = setpoint_max elif setpoint < setpoint_min: - self.runner.registerWarning(f"Setpoint {setpoint} is less than min setpoint {setpoint_min}") + #self.runner.registerWarning(f"Setpoint {setpoint} is less than min setpoint {setpoint_min}") setpoint = setpoint_min else: setpoint = setpoint diff --git a/measures/LoadFlexibility/tests/test_setpoint.py b/measures/LoadFlexibility/tests/test_setpoint.py index a113ec9eb7..4d84f51cf9 100644 --- a/measures/LoadFlexibility/tests/test_setpoint.py +++ b/measures/LoadFlexibility/tests/test_setpoint.py @@ -86,12 +86,78 @@ def test_get_offset_time(self, setpoint_type): assert peak_times['peak_end'] == 0 assert peak_times['pre_peak_start'] == 14 - # def test_get_prepeak_and_peak_start_end_summer(self): - # print('test_get_prepeak_and_peak_start_end_summer') - # offset_time = setpoint.get_prepeak_and_peak_start_end(5000, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 'cooling') - # self.assertEqual(offset_time.pre_peak_start_afternoon, 11) - # self.assertEqual(offset_time.peak_start_afternoon, 15) - # self.assertEqual(offset_time.peak_end_afternoon, 18) + @pytest.mark.parametrize("setpoint_type", ['heating']) + def test_get_setpoint_offset(self, setpoint_type): + print('test_get_setpoint_offset_heating') + new_args = DEFAULT_ARGS.copy() + inputs = get_input_from_dict(new_args) + print('no_offset') + setpoint_offset = self.hvac_setpoints._get_setpoint_offset(inputs, 1, setpoint_type=setpoint_type) + assert setpoint_offset == 0 + print('pre_peak_offset') + setpoint_offset = self.hvac_setpoints._get_setpoint_offset(inputs, 16, setpoint_type=setpoint_type) + assert setpoint_offset == new_args['heating_pre_peak_offset'] + print('peak_offset') + setpoint_offset = self.hvac_setpoints._get_setpoint_offset(inputs, 19, setpoint_type=setpoint_type) + assert setpoint_offset == new_args['heating_on_peak_offset'] + + @pytest.mark.parametrize("setpoint_type", ['cooling']) + def test_get_setpoint_offset(self, setpoint_type): + print('test_get_setpoint_offset_cooling') + new_args = DEFAULT_ARGS.copy() + inputs = get_input_from_dict(new_args) + print('no_offset') + setpoint_offset = self.hvac_setpoints._get_setpoint_offset(inputs, 1, setpoint_type=setpoint_type) + assert setpoint_offset == 0 + print('pre_peak_offset') + setpoint_offset = self.hvac_setpoints._get_setpoint_offset(inputs, 16, setpoint_type=setpoint_type) + assert setpoint_offset == new_args['cooling_pre_peak_offset'] + print('peak_offset') + setpoint_offset = self.hvac_setpoints._get_setpoint_offset(inputs, 19, setpoint_type=setpoint_type) + assert setpoint_offset == new_args['cooling_on_peak_offset'] + + + #@pytest.mark.parametrize("setpoint_type", ['heating']) + #def test_get_setpoint_absolute_value(self, setpoint_type): + # print('test_get_setpoint_absolute_value') + # new_args = DEFAULT_ARGS.copy() + # inputs = get_input_from_dict(new_args) + # print('no_offset') + # setpoint_reponse = self.hvac_setpoints._get_setpoint_absolute_value(inputs, 1, setpoint_type=setpoint_type, 72) + # assert setpoint_reponse == 72 + + @pytest.mark.parametrize("setpoint_type", ['heating']) + def test_clip_setpoints(self, setpoint_type): + print('test_clip_setpoints_heating') + new_args = DEFAULT_ARGS.copy() + inputs = get_input_from_dict(new_args) + print('within range') + setpoint = self.hvac_setpoints._clip_setpoints(inputs, 70, setpoint_type=setpoint_type) + assert setpoint == 70 + print('Setpoint is less than min setpoint') + setpoint = self.hvac_setpoints._clip_setpoints(inputs, 40, setpoint_type=setpoint_type) + assert setpoint == new_args['heating_min'] + print('Setpoint is greater than max setpoint') + setpoint = self.hvac_setpoints._clip_setpoints(inputs, 90, setpoint_type=setpoint_type) + assert setpoint == new_args['heating_max'] + + @pytest.mark.parametrize("setpoint_type", ['cooling']) + def test_clip_setpoints(self, setpoint_type): + print('test_clip_setpoints_cooling') + new_args = DEFAULT_ARGS.copy() + inputs = get_input_from_dict(new_args) + print('within range') + setpoint = self.hvac_setpoints._clip_setpoints(inputs, 70, setpoint_type=setpoint_type) + assert setpoint == 70 + print('Setpoint is less than min setpoint') + setpoint = self.hvac_setpoints._clip_setpoints(inputs, 40, setpoint_type=setpoint_type) + assert setpoint == new_args['cooling_min'] + print('Setpoint is greater than max setpoint') + setpoint = self.hvac_setpoints._clip_setpoints(inputs, 90, setpoint_type=setpoint_type) + assert setpoint == new_args['cooling_max'] + + + # def test_time_shift(self): # print('test_time_shift') From c189cfe666ffc5e1f23624fb3416925d98f7d48b Mon Sep 17 00:00:00 2001 From: Yingli Date: Thu, 5 Sep 2024 16:01:26 -0600 Subject: [PATCH 20/21] unit test --- .../LoadFlexibility/resources/setpoint.py | 1 + .../LoadFlexibility/tests/test_setpoint.py | 108 +++++++----------- 2 files changed, 42 insertions(+), 67 deletions(-) diff --git a/measures/LoadFlexibility/resources/setpoint.py b/measures/LoadFlexibility/resources/setpoint.py index 5ca33f9e98..774da641ba 100644 --- a/measures/LoadFlexibility/resources/setpoint.py +++ b/measures/LoadFlexibility/resources/setpoint.py @@ -110,6 +110,7 @@ def _shift_peak_times(self, peak_times: PeakTimes, shift: int): peak_times['peak_start'] = self._time_shift(peak_times['peak_start'], shift) peak_times['peak_end'] = self._time_shift(peak_times['peak_end'], shift) peak_times['pre_peak_start'] = self._time_shift(peak_times['pre_peak_start'], shift) + print('test') return peak_times def _time_shift(self, indx_in_day, shift): diff --git a/measures/LoadFlexibility/tests/test_setpoint.py b/measures/LoadFlexibility/tests/test_setpoint.py index 4d84f51cf9..b455349217 100644 --- a/measures/LoadFlexibility/tests/test_setpoint.py +++ b/measures/LoadFlexibility/tests/test_setpoint.py @@ -51,6 +51,18 @@ def test_get_month_day(self): assert self.hvac_setpoints._get_month_day(3 * 24 + 1) == (1, 'weekend') assert self.hvac_setpoints._get_month_day(8755) == (12, 'weekday') assert self.hvac_setpoints._get_month_day(8755) == (12, 'weekday') + + def test_shift_peak_times(self): + print('test_shift_peak_times') + peak_times = { + 'peak_start': 19, + 'peak_end': 22, + 'pre_peak_start': 15 + } + peak_times_shift = self.hvac_setpoints._shift_peak_times(peak_times, 2) + assert peak_times_shift['peak_start'] == 21 + assert peak_times_shift['peak_end'] == 0 + assert peak_times_shift['pre_peak_start'] == 17 @pytest.mark.parametrize("max_shift_amount", [0.25, 0.5, 1, 2]) def test_random_shift(self, max_shift_amount): @@ -117,14 +129,35 @@ def test_get_setpoint_offset(self, setpoint_type): assert setpoint_offset == new_args['cooling_on_peak_offset'] - #@pytest.mark.parametrize("setpoint_type", ['heating']) - #def test_get_setpoint_absolute_value(self, setpoint_type): - # print('test_get_setpoint_absolute_value') - # new_args = DEFAULT_ARGS.copy() - # inputs = get_input_from_dict(new_args) - # print('no_offset') - # setpoint_reponse = self.hvac_setpoints._get_setpoint_absolute_value(inputs, 1, setpoint_type=setpoint_type, 72) - # assert setpoint_reponse == 72 + @pytest.mark.parametrize("setpoint_type", ['heating']) + def test_get_setpoint_absolute_value(self, setpoint_type): + print('test_get_setpoint_absolute_value_heating') + new_args = DEFAULT_ARGS.copy() + inputs = get_input_from_dict(new_args) + print('no_offset') + setpoint_reponse = self.hvac_setpoints._get_setpoint_absolute_value(inputs, 1, setpoint_type=setpoint_type, existing_setpoint=72) + assert setpoint_reponse == 72 + print('pre_peak_setpoint') + setpoint_reponse = self.hvac_setpoints._get_setpoint_absolute_value(inputs, 16, setpoint_type=setpoint_type, existing_setpoint=72) + assert setpoint_reponse == 80 + print('peak_setpoint') + setpoint_reponse = self.hvac_setpoints._get_setpoint_absolute_value(inputs, 19, setpoint_type=setpoint_type, existing_setpoint=72) + assert setpoint_reponse == 55 + + @pytest.mark.parametrize("setpoint_type", ['cooling']) + def test_get_setpoint_absolute_value(self, setpoint_type): + print('test_get_setpoint_absolute_value_cooling') + new_args = DEFAULT_ARGS.copy() + inputs = get_input_from_dict(new_args) + print('no_offset') + setpoint_reponse = self.hvac_setpoints._get_setpoint_absolute_value(inputs, 1, setpoint_type=setpoint_type, existing_setpoint=72) + assert setpoint_reponse == 72 + print('pre_peak_setpoint') + setpoint_reponse = self.hvac_setpoints._get_setpoint_absolute_value(inputs, 16, setpoint_type=setpoint_type, existing_setpoint=72) + assert setpoint_reponse == 60 + print('peak_setpoint') + setpoint_reponse = self.hvac_setpoints._get_setpoint_absolute_value(inputs, 19, setpoint_type=setpoint_type, existing_setpoint=72) + assert setpoint_reponse == 80 @pytest.mark.parametrize("setpoint_type", ['heating']) def test_clip_setpoints(self, setpoint_type): @@ -155,62 +188,3 @@ def test_clip_setpoints(self, setpoint_type): print('Setpoint is greater than max setpoint') setpoint = self.hvac_setpoints._clip_setpoints(inputs, 90, setpoint_type=setpoint_type) assert setpoint == new_args['cooling_max'] - - - - - # def test_time_shift(self): - # print('test_time_shift') - # offset_time = setpoint.get_prepeak_and_peak_start_end(2, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 'heating') - # for f in fields(offset_time): - # value = getattr(offset_time, f.name) - # value = setpoint.time_shift(value, 1, 1) - # if isinstance(value, (int, float)): - # setattr(offset_time, f.name, value) - # self.assertEqual(offset_time.pre_peak_start_morning, 2) - # self.assertEqual(offset_time.peak_start_morning, 6) - # self.assertEqual(offset_time.peak_end_morning, 9) - # self.assertEqual(offset_time.pre_peak_start_afternoon, 14) - # self.assertEqual(offset_time.peak_start_afternoon, 18) - # self.assertEqual(offset_time.peak_end_afternoon, 21) - - # def test_get_setpoint_offset_heating(self): - # print('test_get_setpoint_offset_heating') - # setpoint_offset = setpoint.get_setpoint_offset(3, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating') - # self.assertEqual(setpoint_offset, 4) - # setpoint_offset = setpoint.get_setpoint_offset(7, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating') - # self.assertEqual(setpoint_offset, -4) - - # def test_get_setpoint_offset_cooling(self): - # print('test_get_setpoint_offset_cooling') - # setpoint_offset = setpoint.get_setpoint_offset(2916, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling') - # self.assertEqual(setpoint_offset, -4) - # setpoint_offset = setpoint.get_setpoint_offset(2920, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling') - # self.assertEqual(setpoint_offset, 4) - - # def test_get_setpoint_absolute_value_heating(self): - # print('test_get_setpoint_absolute_value_heating') - # setpoint_reponse = setpoint.get_setpoint_absolute_value(3, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating', 70) - # self.assertEqual(setpoint_reponse, 80) - # setpoint_reponse = setpoint.get_setpoint_absolute_value(7, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating', 70) - # self.assertEqual(setpoint_reponse, 55) - # setpoint_reponse = setpoint.get_setpoint_absolute_value(10, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'heating', 70) - # self.assertEqual(setpoint_reponse, 70) - - # def test_get_setpoint_absolute_value_cooling(self): - # print('test_get_setpoint_absolute_value_cooling') - # setpoint_reponse = setpoint.get_setpoint_absolute_value(2916, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling', 70) - # self.assertEqual(setpoint_reponse, 60) - # setpoint_reponse = setpoint.get_setpoint_absolute_value(2920, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling', 70) - # self.assertEqual(setpoint_reponse, 80) - # setpoint_reponse = setpoint.get_setpoint_absolute_value(2924, 8760, self.on_peak_hour_weekday_dict, self.on_peak_hour_weekend_dict, 0, 'cooling', 70) - # self.assertEqual(setpoint_reponse, 70) - - # def test_clip_setpoints(self): - # print('test_clip_setpoints') - # self.assertEqual(setpoint.clip_setpoints(90, 'heating'), 80) - # self.assertEqual(setpoint.clip_setpoints(70, 'heating'), 70) - # self.assertEqual(setpoint.clip_setpoints(40, 'heating'), 55) - # self.assertEqual(setpoint.clip_setpoints(90, 'cooling'), 80) - # self.assertEqual(setpoint.clip_setpoints(70, 'cooling'), 70) - # self.assertEqual(setpoint.clip_setpoints(40, 'cooling'), 60) \ No newline at end of file From 6bd3241d59784316256121bbc53248d859cc5dbb Mon Sep 17 00:00:00 2001 From: Yingli Date: Thu, 5 Sep 2024 16:02:01 -0600 Subject: [PATCH 21/21] unit test --- measures/LoadFlexibility/resources/setpoint.py | 1 - 1 file changed, 1 deletion(-) diff --git a/measures/LoadFlexibility/resources/setpoint.py b/measures/LoadFlexibility/resources/setpoint.py index 774da641ba..5ca33f9e98 100644 --- a/measures/LoadFlexibility/resources/setpoint.py +++ b/measures/LoadFlexibility/resources/setpoint.py @@ -110,7 +110,6 @@ def _shift_peak_times(self, peak_times: PeakTimes, shift: int): peak_times['peak_start'] = self._time_shift(peak_times['peak_start'], shift) peak_times['peak_end'] = self._time_shift(peak_times['peak_end'], shift) peak_times['pre_peak_start'] = self._time_shift(peak_times['pre_peak_start'], shift) - print('test') return peak_times def _time_shift(self, indx_in_day, shift):